predicates.md (general_gr_operand): New predicate.
[gcc.git] / gcc / ChangeLog
1 2016-12-06 Uros Bizjak <ubizjak@gmail.com>
2
3 * config/i386/predicates.md (general_gr_operand): New predicate.
4 * config/i386/i386.md (TImode and DImode push_operand splitter):
5 Use general_gr_operand. Macroize using DWI mode macro.
6 (TImode and DImode nonimmediate_operand splitter): Use
7 nonimmediate_gr_operand and general_gr_operand. Macroize using
8 DWI mode macro.
9 (TF/XF/DFmode push_operand splitter): Use general_gr_operand.
10 (TFmode nonimmediate_operand splitter): Use nonimmediate_gr_operand
11 and general_gr_operand.
12 (XFmode nonimmediate_operand splitter): Ditto.
13 (DFmode nonimmediate_operand splitter): Ditto.
14 * config/i386/mmx.md (MMXMODE nonimmediate_operand splitter): Ditto.
15
16 2016-12-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17
18 * config/arm/arm-cores.def (cortex-m23, cortex-m33): Move into
19 alphabetical order with respect to other ARMv8 processors.
20 * config/arm/arm-tables.opt: Regenerate.
21 * config/arm/arm-tune.md: Likewise.
22
23 2016-12-06 Robert Suchanek <robert.suchanek@imgtec.com>
24
25 * config/mips/mips.c (mips_expand_builtin_insn): Check input
26 ranges of literal integer arguments.
27
28 2016-12-06 Aldy Hernandez <aldyh@redhat.com>
29
30 PR middle-end/78548
31 * tree-ssa-uninit.c (simplify_preds_4): Call release() instead of
32 destroy_predicate_vecs.
33 (uninit_uses_cannot_happen): Make uninit_preds a scalar.
34
35 2016-12-06 Aldy Hernandez <aldyh@redhat.com>
36
37 PR middle-end/78566
38 * tree-ssa-uninit.c (can_one_predicate_be_invalidated_p): Change
39 argument type to a pred_chain.
40 (can_chain_union_be_invalidated_p): Use pred_chain instead of a
41 worklist.
42 (flatten_out_predicate_chains): Remove.
43 (uninit_uses_cannot_happen): Rename from
44 uninit_ops_invalidate_phi_use.
45 Change logic so that we are checking that the PHI use will
46 invalidate _ALL_ possibly uninitialized operands.
47 (is_use_properly_guarded): Rename call to
48 uninit_ops_invalidate_phi_use into uninit_uses_cannot_happen.
49
50 2016-12-06 Tamar Christina <tamar.christina@arm.com>
51
52 * gcc/config/aarch64/arm_neon.h
53 (vreinterpretq_p8_p128, vreinterpretq_p16_p128): Added.
54 (vreinterpret_p64_p16, vreinterpretq_p64_p128): Likewise.
55 (vreinterpretq_p64_p16, vreinterpretq_p128_p8): Likewise.
56 (vreinterpretq_p128_p16, vreinterpretq_p128_f16): Likewise.
57 (vreinterpretq_p128_f32, vreinterpretq_p128_p64): Likewise.
58 (vreinterpretq_p128_s64, vreinterpretq_p128_u64): Likewise.
59 (vreinterpretq_p128_s8, vreinterpretq_p128_s16): Likewise.
60 (vreinterpretq_p128_s32, vreinterpretq_p128_u8): Likewise.
61 (vreinterpretq_p128_u16, vreinterpretq_p128_u32): Likewise.
62 (vreinterpretq_f16_p128, vreinterpretq_f32_p128): Likewise.
63 (vreinterpretq_s64_p128, vreinterpretq_u64_p128): Likewise.
64 (vreinterpretq_s8_p128, vreinterpretq_s16_p128): Likewise.
65 (vreinterpretq_s32_p128, vreinterpretq_u8_p128): Likewise.
66 (vreinterpretq_u16_p128, vreinterpretq_u32_p128): Likewise.
67
68 2016-12-06 Jakub Jelinek <jakub@redhat.com>
69
70 PR c++/71537
71 * fold-const.c (fold_comparison): Assume CONSTANT_CLASS_P (base0)
72 plus offset is non-zero. For maybe_nonzero_address decl base0,
73 require indirect_base0.
74
75 PR c++/71537
76 * fold-const-call.c (fold_const_call_1): Remove memchr handling here.
77 (fold_const_call) <case CFN_BUILT_IN_STRNCMP,
78 case CFN_BUILT_IN_STRNCASECMP>: Formatting improvements.
79 (fold_const_call) <case CFN_BUILT_IN_MEMCMP>: Likewise. If s2 is 0
80 and arguments have no side-effects, return 0.
81 (fold_const_call): Handle CFN_BUILT_IN_MEMCHR.
82
83 PR c++/71537
84 * fold-const-call.c (fold_const_call): Handle
85 CFN_BUILT_IN_{INDEX,STRCHR,RINDEX,STRRCHR}.
86
87 PR tree-optimization/78675
88 * tree-vect-loop.c (vectorizable_live_operation): For
89 VECTOR_BOOLEAN_TYPE_P vectype use integral type with bitsize precision
90 instead of TREE_TYPE (vectype) for the BIT_FIELD_REF.
91
92 2016-12-06 Eric Botcazou <ebotcazou@adacore.com>
93
94 PR middle-end/78642
95 * emit-rtl.c (verify_rtx_sharing) <CLOBBER>: Relax condition.
96 (copy_rtx_if_shared_1) <CLOBBER>: Likewise.
97 (copy_insn_1) <CLOBBER>: Likewise.
98
99 2016-12-05 Michael Meissner <meissner@linux.vnet.ibm.com>
100
101 PR target/78688
102 * config/rs6000/rs6000.h (FUNCTION_VALUE_REGNO_P): Use IN_RANGE
103 instead of ((N) >= (X) && (N) <= (Y-X)) to silence warnings about
104 comparing signed to unsigned values.
105 (FUNCTION_ARG_REGNO_P): Likewise.
106
107 2016-12-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
108 Stefan Freudenberger <stefan@reservoir.com>
109
110 PR tree-optimization/78646
111 * gimple-ssa-strength-reduction.c (replace_ref): The pointer
112 addition used for the memory base expression should have the type
113 of the candidate.
114
115 2016-12-05 Waldemar Brodkorb <wbx@openadk.org>
116
117 PR target/71721
118 * config.gcc (*-*-uclinux*): Enable posix threads.
119
120 2016-12-05 Andrew Senkevich <andrew.senkevich@intel.com>
121
122 * config/i386/avx512bwintrin.h: Add new k-mask intrinsics.
123 * config/i386/avx512dqintrin.h: Ditto.
124 * config/i386/avx512fintrin.h: Ditto.
125 * config/i386/i386-builtin-types.def (UCHAR_FTYPE_UQI_UQI_PUCHAR,
126 UCHAR_FTYPE_UHI_UHI_PUCHAR, UCHAR_FTYPE_USI_USI_PUCHAR,
127 UCHAR_FTYPE_UDI_UDI_PUCHAR, UCHAR_FTYPE_UQI_UQI, UCHAR_FTYPE_UHI_UHI,
128 UCHAR_FTYPE_USI_USI, UCHAR_FTYPE_UDI_UDI, UQI_FTYPE_UQI_INT,
129 UHI_FTYPE_UHI_INT, USI_FTYPE_USI_INT, UDI_FTYPE_UDI_INT,
130 UQI_FTYPE_UQI, USI_FTYPE_USI, UDI_FTYPE_UDI, UQI_FTYPE_UQI_UQI): New
131 function types.
132 * config/i386/i386-builtin.def (__builtin_ia32_knotqi,
133 __builtin_ia32_knotsi, __builtin_ia32_knotdi,
134 __builtin_ia32_korqi, __builtin_ia32_korsi, __builtin_ia32_kordi,
135 __builtin_ia32_kxnorqi, __builtin_ia32_kxnorsi,
136 __builtin_ia32_kxnordi, __builtin_ia32_kxorqi, __builtin_ia32_kxorsi,
137 __builtin_ia32_kxordi, __builtin_ia32_kandqi,
138 __builtin_ia32_kandsi, __builtin_ia32_kanddi, __builtin_ia32_kandnqi,
139 __builtin_ia32_kandnsi, __builtin_ia32_kandndi): New.
140 * config/i386/i386.c (ix86_expand_args_builtin): Handle new types.
141
142 2016-12-05 Segher Boessenkool <segher@kernel.crashing.org>
143
144 * combine.c: Revert r243162.
145
146 2016-12-05 Paolo Bonzini <bonzini@gnu.org>
147
148 * match.pd: Simplify X ? C : 0 where C is a power of 2 and
149 X tests a single bit.
150
151 2016-12-05 Nathan Sidwell <nathan@acm.org>
152
153 * diagnostic.c (diagnostic_check_max_errors): New, broken out of ...
154 (diagnostic_action_after_output): ... here.
155 (diagnostic_report_diagnostic): Call it for non-notes.
156 * diagnostic.h (struct diagnostic_context): Make max_errors signed int.
157 (diagnostic_check_max_errors): Declare.
158
159 2016-12-05 Cupertino Miranda <cmiranda@synopsys.com>
160
161 * config/arc/arc.h (STARTFILE_SPEC): Use default linux specs.
162 (ENDFILE_SPEC): Likewise.
163
164 2016-12-05 Claudiu Zissulescu <claziss@synopsys.com>
165
166 * config/arc/arc-protos.h (insn_is_tls_gd_dispatch): Remove.
167 * config/arc/arc.c (arc_unspec_offset): New function.
168 (arc_finalize_pic): Change.
169 (arc_emit_call_tls_get_addr): Likewise.
170 (arc_legitimize_tls_address): Likewise.
171 (arc_legitimize_pic_address): Likewise.
172 (insn_is_tls_gd_dispatch): Remove.
173 * config/arc/arc.h (INSN_REFERENCES_ARE_DELAYED): Change.
174 * config/arc/arc.md (ls_gd_load): Remove unused pattern.
175 (tls_gd_dispatch): Likewise.
176
177 2016-12-05 Andre Vieira <andre.simoesdiasvieira@arm.com>
178
179 * config/arm/arm.c (TARGET_ASM_INIT_SECTIONS): Fix wrong undef
180 location.
181
182 2016-12-05 Eric Botcazou <ebotcazou@adacore.com>
183
184 * config/sparc/sparc-protos.h (sparc_splitdi_legitimate): Rename to...
185 (sparc_split_reg_mem_legitimate): ...this.
186 (sparc_split_reg_mem): Declare.
187 (sparc_split_mem_reg): Likewise.
188 (sparc_split_regreg_legitimate): Rename to...
189 (sparc_split_reg_reg_legitimate): ...this.
190 * config/sparc/sparc.c (sparc_splitdi_legitimate): Rename to...
191 (sparc_split_reg_mem_legitimate): ...this.
192 (sparc_split_reg_mem): New function.
193 (sparc_split_mem_reg): Likewise.
194 (sparc_split_regreg_legitimate): Rename to...
195 (sparc_split_reg_reg_legitimate): ...this.
196 (sparc_split_reg_reg): New function.
197 * config/sparc/sparc.md (lra): Remove "none" value.
198 (enabled): Adjust to above change.
199 (*movdi_insn_sp32): Remove new (r,T) alternative and reorder others.
200 (DImode splitters): Adjust to above renamings and use new functions.
201 (*movdf_insn_sp32): Remove new (r,T) alternative and reorder others.
202 (DFmode splitters): Adjust to above renamings and use new functions.
203 (*mov<VM64:mode>_insn_sp64): Replace C with Z constraint and use W
204 constraint in conjunction with e.
205 (*mov<VM64:mode>_insn_sp32): Remove new (r,T) alternative, add (o,Y)
206 alternative and reorder others.
207 (VM64:mode splitters): Adjust to above renamings and use new functions.
208
209 2016-12-04 Martin Sebor <msebor@redhat.com>
210
211 PR c/78668
212 * builtin-attrs.def (ATTR_ALLOC_SIZE, ATTR_RETURNS_NONNULL): New
213 identifier tree nodes.
214 (ATTR_ALLOCA_SIZE_1_NOTHROW_LEAF_LIST): New attribute list.
215 (ATTR_MALLOC_SIZE_1_NOTHROW_LIST): Same.
216 (ATTR_MALLOC_SIZE_1_NOTHROW_LEAF_LIST): Same.
217 (ATTR_MALLOC_SIZE_1_2_NOTHROW_LEAF_LIST): Same.
218 (ATTR_ALLOC_SIZE_2_NOTHROW_LEAF_LIST): Same.
219 * builtins.def (aligned_alloc, calloc, malloc, realloc):
220 Add attribute alloc_size.
221 (alloca): Add attribute alloc_size and returns_nonnull.
222
223 2016-12-04 Uros Bizjak <ubizjak@gmail.com>
224
225 PR target/70322
226 * config/i386/i386.c (dimode_scalar_to_vector_candidate_p): Handle NEG.
227 (dimode_scalar_chain::compute_convert_gain): Ditto.
228 (dimode_scalar_chain::convert_insn): Ditto.
229
230 2016-12-03 Eric Botcazou <ebotcazou@adacore.com>
231
232 * lra-constraints.c (emit_spill_move): Use gen_lowpart_SUBREG in all
233 cases to build a lowpart SUBREG.
234
235 2016-12-03 Eric Botcazou <ebotcazou@adacore.com>
236 David S. Miller <davem@davemloft.net>
237
238 * config/sparc/constraints.md (U): Adjust comment.
239 * config/sparc/sparc.md (lra): New attribute.
240 (enabled): For base instructions, if the lra attribute is set,
241 return 1 if it is in keeping with TARGET_LRA.
242 (*movdi_insn_sp32): Add lra attribute for alternatives mentioning U
243 constraint and duplicate them with U replaced by r.
244 (*movdf_insn_sp32): Likewise.
245 (*mov<VM64:mode>_insn_sp32): Likewise.
246 (*movtf_insn_sp32): Remove alternatives mentioning U constraint.
247
248 2016-12-02 Jeff Law <law@redhat.com>
249
250 * config/arm/arm.c (arm_handle_cmse_nonsecure_call): Remove unused
251 variable main_variant.
252
253 2016-12-02 Michael Meissner <meissner@linux.vnet.ibm.com>
254
255 * config.gcc (powerpc*-*-linux*): Set gnu-indirect-function by
256 default on PowerPC linux systems.
257
258 2016-12-02 Segher Boessenkool <segher@kernel.crashing.org>
259
260 * simplify-rtx.c (simplify_truncation): M2 is not mode, it is
261 GET_MODE (op). Fix this.
262
263 2016-12-02 David Malcolm <dmalcolm@redhat.com>
264
265 PR bootstrap/78616
266 * selftest.c (selftest::assert_strndup_eq): Rename to...
267 (selftest::assert_xstrndup_eq): ...this, and remove call to
268 strndup.
269 (selftest::test_strndup): Rename to...
270 (selftest::test_xstrndup): ...this, updating for above renaming.
271 (selftest::test_libiberty): Update for renaming.
272
273 2016-12-02 Michael Meissner <meissner@linux.vnet.ibm.com>
274
275 PR target/78639
276 * config/rs6000/rs6000.md (movdi_internal64): Fix typo in
277 subversion id 242679 that causes the wrong store instruction to be
278 generated if a DImode is in an Altivec register using REG+REG
279 addressing.
280
281 2016-12-02 Uros Bizjak <ubizjak@gmail.com>
282
283 PR target/70322
284 * config/i386/i386.md (*andndi3_doubleword): Add non-BMI alternative
285 and corresponding post-reload splitter.
286
287 2016-12-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
288
289 * config/aarch64/aarch64.h (machine_function): Add
290 reg_is_wrapped_separately field.
291 * config/aarch64/aarch64.md (LAST_SAVED_REGNUM): Define new constant.
292 * config/aarch64/aarch64.c (emit_set_insn): Change return type to
293 rtx_insn *.
294 (aarch64_save_callee_saves): Don't save registers that are wrapped
295 separately.
296 (aarch64_restore_callee_saves): Don't restore registers that are
297 wrapped separately.
298 (offset_9bit_signed_unscaled_p, offset_12bit_unsigned_scaled_p,
299 aarch64_offset_7bit_signed_scaled_p): Move earlier in the file.
300 (aarch64_get_separate_components): New function.
301 (aarch64_get_next_set_bit): Likewise.
302 (aarch64_components_for_bb): Likewise.
303 (aarch64_disqualify_components): Likewise.
304 (aarch64_emit_prologue_components): Likewise.
305 (aarch64_emit_epilogue_components): Likewise.
306 (aarch64_set_handled_components): Likewise.
307 (aarch64_process_components): Likewise.
308 (TARGET_SHRINK_WRAP_GET_SEPARATE_COMPONENTS,
309 TARGET_SHRINK_WRAP_COMPONENTS_FOR_BB,
310 TARGET_SHRINK_WRAP_DISQUALIFY_COMPONENTS,
311 TARGET_SHRINK_WRAP_EMIT_PROLOGUE_COMPONENTS,
312 TARGET_SHRINK_WRAP_EMIT_EPILOGUE_COMPONENTS,
313 TARGET_SHRINK_WRAP_SET_HANDLED_COMPONENTS): Define.
314
315 2016-12-02 Martin Jambor <mjambor@suse.cz>
316
317 * passes.def: Move pass_rebuild_cgraph_edges to the end of
318 pass_build_ssa_passes.
319
320 2016-12-02 Uros Bizjak <ubizjak@gmail.com>
321
322 * config/alpha/alpha.md (exception_receiver): Copy
323 alpha_gp_ave_rtx return value.
324
325 2016-12-02 Tadek Kijkowski <tkijkowski@gmail.com>
326
327 * Makefile.in (PREPROCESSOR_DEFINES): Add a level of indirection
328 for several include directories that may be relative to sysroot.
329 * config/i386/x-mingw32 (gplus_includedir): Define.
330 (gplus_tool_includedir, gplus_backward_include_dir): Likewise.
331 (native_system_includedir): Likewise.
332 * config/i386/mingw32.h (STANDARD_STARTFILE_PREFIX_1): Do not
333 override if TARGET_SYSTEM_ROOT is defined.
334 (NATIVE_SYSTEM_HEADER_DIR): Likewise.
335
336 2016-12-02 Jakub Jelinek <jakub@redhat.com>
337
338 PR target/70322
339 * config/i386/i386.c (dimode_scalar_to_vector_candidate_p): Handle NOT.
340 (dimode_scalar_chain::compute_convert_gain): Likewise.
341 (dimode_scalar_chain::convert_insn): Likewise.
342 * config/i386/i386.md (*one_cmpldi2_doubleword): New
343 define_insn_and_split.
344 (one_cmpl<mode>2): Use SWIM1248x iterator instead of SWIM.
345
346 PR target/78614
347 * rtl.c (copy_rtx): Don't clear used flag here.
348 (shallow_copy_rtx_stat): Clear used flag here unless code the rtx
349 is shareable.
350 * simplify-rtx.c (simplify_replace_fn_rtx): When copying rtx with
351 'E' in format, copy all vectors.
352 * emit-rtl.c (copy_insn_1): Don't clear used flag here.
353 * valtrack.c (cleanup_auto_inc_dec): Likewise.
354 * config/rs6000/rs6000.c (rs6000_frame_related): Likewise.
355
356 2016-12-02 Andre Vieira <andre.simoesdiasvieira@arm.com>
357 Thomas Preud'homme <thomas.preudhomme@arm.com>
358
359 * config/arm/arm-builtins.c (arm_builtins): Define
360 ARM_BUILTIN_CMSE_NONSECURE_CALLER.
361 (bdesc_2arg): Add line for cmse_nonsecure_caller.
362 (arm_init_builtins): Handle cmse_nonsecure_caller.
363 (arm_expand_builtin): Likewise.
364 * config/arm/arm_cmse.h (cmse_nonsecure_caller): New.
365
366 2016-12-02 Andre Vieira <andre.simoesdiasvieira@arm.com>
367 Thomas Preud'homme <thomas.preudhomme@arm.com>
368
369 * config/arm/arm.c (detect_cmse_nonsecure_call): New.
370 (cmse_nonsecure_call_clear_caller_saved): New.
371 (arm_reorg): Use cmse_nonsecure_call_clear_caller_saved.
372 (arm_function_ok_for_sibcall): Disable sibcalls for
373 cmse_nonsecure_call.
374 * config/arm/arm-protos.h (detect_cmse_nonsecure_call): New.
375 * config/arm/arm.md (call): Handle cmse_nonsecure_entry.
376 (call_value): Likewise.
377 (nonsecure_call_internal): New.
378 (nonsecure_call_value_internal): New.
379 * config/arm/thumb1.md (*nonsecure_call_reg_thumb1_v5): New.
380 (*nonsecure_call_value_reg_thumb1_v5): New.
381 * config/arm/thumb2.md (*nonsecure_call_reg_thumb2): New.
382 (*nonsecure_call_value_reg_thumb2): New.
383 * config/arm/unspecs.md (UNSPEC_NONSECURE_MEM): New.
384
385 2016-12-02 Andre Vieira <andre.simoesdiasvieira@arm.com>
386 Thomas Preud'homme <thomas.preudhomme@arm.com>
387
388 * config/arm/arm.c (gimplify.h): New include.
389 (arm_handle_cmse_nonsecure_call): New.
390 (arm_attribute_table): Added cmse_nonsecure_call.
391 (arm_comp_type_attributes): Deny compatibility of function types
392 with without the cmse_nonsecure_call attribute.
393 * doc/extend.texi (ARM ARMv8-M Security Extensions): New attribute.
394
395 2016-12-02 Andre Vieira <andre.simoesdiasvieira@arm.com>
396 Thomas Preud'homme <thomas.preudhomme@arm.com>
397
398 * config/arm/arm.c (output_return_instruction): Clear
399 registers.
400 (thumb2_expand_return): Likewise.
401 (thumb1_expand_epilogue): Likewise.
402 (thumb_exit): Likewise.
403 (arm_expand_epilogue): Likewise.
404 (cmse_nonsecure_entry_clear_before_return): New.
405 (comp_not_to_clear_mask_str_un): New.
406 (compute_not_to_clear_mask): New.
407 * config/arm/thumb1.md (*epilogue_insns): Change length attribute.
408 * config/arm/thumb2.md (*thumb2_return): Disable for
409 cmse_nonsecure_entry functions.
410 (*thumb2_cmse_entry_return): Duplicate thumb2_return pattern for
411 cmse_nonsecure_entry functions.
412
413 2016-12-02 Andre Vieira <andre.simoesdiasvieira@arm.com>
414 Thomas Preud'homme <thomas.preudhomme@arm.com>
415
416 * config/arm/arm.c (use_return_insn): Change to return with bxns
417 when cmse_nonsecure_entry.
418 (output_return_instruction): Likewise.
419 (arm_output_function_prologue): Likewise.
420 (thumb_pop): Likewise.
421 (thumb_exit): Likewise.
422 (thumb2_expand_return): Assert that entry functions always have simple
423 returns.
424 (arm_expand_epilogue): Handle entry functions.
425 (arm_function_ok_for_sibcall): Disable sibcall for entry functions.
426 (arm_asm_declare_function_name): New.
427 * config/arm/arm-protos.h (arm_asm_declare_function_name): New.
428 * config/arm/elf.h (ASM_DECLARE_FUNCTION_NAME): Redefine to
429 use arm_asm_declare_function_name.
430
431 2016-12-02 Andre Vieira <andre.simoesdiasvieira@arm.com>
432 Thomas Preud'homme <thomas.preudhomme@arm.com>
433
434 * config/arm/arm.c (arm_handle_cmse_nonsecure_entry): New.
435 (arm_attribute_table): Added cmse_nonsecure_entry
436 (arm_compute_func_type): Handle cmse_nonsecure_entry.
437 (cmse_func_args_or_return_in_stack): New.
438 (arm_handle_cmse_nonsecure_entry): New.
439 * config/arm/arm.h (ARM_FT_CMSE_ENTRY): New macro define.
440 (IS_CMSE_ENTRY): Likewise.
441 * doc/extend.texi (ARM ARMv8-M Security Extensions): New attribute.
442
443 2016-12-02 Andre Vieira <andre.simoesdiasvieira@arm.com>
444 Thomas Preud'homme <thomas.preudhomme@arm.com>
445
446 * config.gcc (extra_headers): Added arm_cmse.h.
447 * config/arm/arm-arches.def (ARM_ARCH):
448 (armv8-m): Add FL2_CMSE.
449 (armv8-m.main): Likewise.
450 (armv8-m.main+dsp): Likewise.
451 * config/arm/arm-c.c
452 (arm_cpu_builtins): Added __ARM_FEATURE_CMSE macro.
453 * config/arm/arm-flags.h: Define FL2_CMSE.
454 * config/arm.c (arm_arch_cmse): New.
455 (arm_option_override): New error for unsupported cmse target.
456 * config/arm/arm.h (arm_arch_cmse): New.
457 * config/arm/arm.opt (mcmse): New.
458 * config/arm/arm_cmse.h: New file.
459 * doc/invoke.texi (ARM Options): Add -mcmse.
460 * doc/sourcebuild.texi (arm_cmse_ok): Add new effective target.
461 * doc/extend.texi: Add ARMv8-M Security Extensions entry.
462
463 2016-12-02 Georg-Johann Lay <avr@gjlay.de>
464
465 * config/avr/avr.c: Fix coding rule glitches.
466
467 2016-12-02 Martin Jambor <mjambor@suse.cz>
468
469 * hsa.c (hsa_callable_function_p): Return false for artificial
470 functions.
471
472 2016-12-02 James Greenhalgh <james.greenhalgh@arm.com>
473
474 PR rtl-optimization/78561
475 * varasm.c (recompute_pool_offsets): New.
476 (output_constant_pool): Call it.
477
478 2016-12-02 James Greenhalgh <james.greenhalgh@arm.com>
479
480 PR rtl-optimization/78561
481 * config/rs6000/rs6000.c (rs6000_reg_live_or_pic_offset_p) Rename
482 get_pool_size to get_pool_size_upper_bound.
483 (rs6000_stack_info): Likewise.
484 (rs6000_emit_prologue): Likewise.
485 (rs6000_elf_declare_function_name): Likewise.
486 (rs6000_set_up_by_prologue): Likewise.
487 (rs6000_can_eliminate): Likewise, reformat spaces to tabs.
488 * output.h (get_pool_size): Rename to...
489 (get_pool_size_upper_bound): ...This.
490 * varasm.c (get_pool_size): Rename to...
491 (get_pool_size_upper_bound): ...This.
492
493 2016-12-02 Bin Cheng <bin.cheng@arm.com>
494
495 * match.pd: Add new pattern:
496 (cond (cmp (convert? x) c1) (op x c2) c3) -> (op (minmax x c1) c2).
497
498 2016-12-02 Nathan Sidwell <nathan@acm.org>
499
500 * diagnostic.c (diagnostic_report_diagnostic): Remove extraneous
501 braces.
502
503 2016-12-02 Aldy Hernandez <aldyh@redhat.com>
504
505 PR middle-end/78328
506 * gimple-ssa-warn-alloca.c (alloca_call_type): Handle
507 VR_ANTI_RANGE.
508
509 2016-12-02 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
510
511 * config/s390/s390.c (s390_save_gprs_to_fprs): Fix RTL sharing
512 problem.
513
514 2016-12-02 Georg-Johann Lay <avr@gjlay.de>
515
516 * config/avr/avr-arch.h (avr_mcu_t) [n_flash]: Remove field.
517 * config/avr/avr-devices.c (AVR_MCU): Remove N_FLASH macro argument.
518 * config/avr/avr-mcus.def (AVR_MCU): Remove initializer for n_flash.
519 * config/avr/avr.c (avr_set_core_architecture) [avr_n_flash]: Use
520 avr_mcu_types.flash_size to compute default value.
521 * config/avr/gen-avr-mmcu-specs.c (print_mcu) [cc1_n_flash]: Use
522 mcu->flash_size to compute value for spec.
523
524 2016-12-02 Georg-Johann Lay <avr@gjlay.de>
525
526 * doc/invoke.texi (AVR Options) [-mabsdata]: Point to absdata.
527 * doc/extend.texi (AVR Variable Attributes) [progmem]: Hint
528 about linker description to avoid progmem altogether.
529 [absdata]: Point to -mabsdata option.
530
531 2016-12-02 Jakub Jelinek <jakub@redhat.com>
532
533 PR rtl-optimization/78547
534 * emit-rtl.c (unshare_all_rtl): Make sure DECL_RTL and
535 DECL_INCOMING_RTL is not shared.
536 * config/i386/i386.c (convert_scalars_to_vectors): If any
537 insns have been converted, adjust all parameter's DEC_RTL and
538 DECL_INCOMING_RTL back from V1TImode to TImode if the parameters have
539 TImode.
540
541 PR rtl-optimization/78575
542 * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses): Use
543 DF infrastructure to wrap all V1TImode reg uses into TImode subreg
544 if not already wrapped in a subreg. Make sure df_insn_rescan does not
545 affect further iterations.
546
547 2016-12-02 Martin Liska <mliska@suse.cz>
548
549 PR ipa/78555
550 * sreal.c (sreal::to_int): Make absolute value before shifting.
551 (sreal::operator/): Likewise.
552 (sreal_verify_negative_division): New test.
553 (void sreal_c_tests): Call the new test.
554 * sreal.h (sreal::normalize_up): Use new SREAL_ABS and
555 SREAL_SIGN macros.
556 (sreal::normalize_down): Likewise.
557
558 2016-12-02 Dominik Vogt <vogt@linux.vnet.ibm.com>
559
560 * combine.c (combine_simplify_rtx): Suppress replacement of
561 "(and (reg) (const_int bit))" with "if_then_else".
562
563 2016-12-02 Dominik Vogt <vogt@linux.vnet.ibm.com>
564
565 PR target/77822
566 * config/s390/s390.md ("extzv")
567 ("*extzv<mode><clobbercc_or_nocc>")
568 ("*extzvdi<clobbercc_or_nocc>_lshiftrt")
569 ("*<risbg_n>_ior_and_sr_ze")
570 ("*extract1bitdi<clobbercc_or_nocc>")
571 ("*insv<mode><clobbercc_or_nocc>", "*insv_rnsbg_noshift")
572 ("*insv_rnsbg_srl", "*insv<mode>_mem_reg")
573 ("*insvdi_mem_reghigh", "*insvdi_reg_imm"): Use EXTRACT_ARGS_IN_RANGE
574 to validate the arguments of zero_extract and sign_extract.
575
576 2016-12-02 Dominik Vogt <vogt@linux.vnet.ibm.com>
577
578 PR target/77822
579 * rtl.h (EXTRACT_ARGS_IN_RANGE): New.
580
581 2016-12-02 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
582
583 * gcc/config/s390/s390.c (s390_builtin_vectorization_cost): New
584 function.
585 (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST): Define target
586 macro.
587
588 2016-12-02 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
589
590 * config/s390/vector.md (vec_halfhalf): New mode iterator.
591 ("vec_pack_trunc_<mode>", "vec_pack_ssat_<mode>")
592 ("vec_pack_usat_<mode>", "vec_unpacks_hi_v16qi")
593 ("vec_unpacks_low_v16qi", "vec_unpacku_hi_v16qi")
594 ("vec_unpacku_low_v16qi", "vec_unpacks_hi_v8hi")
595 ("vec_unpacks_lo_v8hi", "vec_unpacku_hi_v8hi")
596 ("vec_unpacku_lo_v8hi", "vec_unpacks_hi_v4si")
597 ("vec_unpacks_lo_v4si", "vec_unpacku_hi_v4si")
598 ("vec_unpacku_lo_v4si"): New pattern definitions.
599 * config/s390/vx-builtins.md: Move VI_HW_HSD mode iterator to
600 vector.md.
601
602 2016-12-02 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
603
604 * config/s390/s390-protos.h (s390_reverse_condition): New
605 prototype.
606 * config/s390/s390.c (s390_canonicalize_comparison): Fold compares
607 of CC mode values.
608 (s390_reverse_condition): New function.
609 * config/s390/s390.h (REVERSE_CC_MODE, REVERSE_CONDITION): Define
610 target macros.
611
612 2016-12-02 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
613
614 * config/s390/s390-modes.def (CCVEQANY, CCVH, CCVHANY, CCVHU)
615 (CCVHUANY): Remove modes.
616 (CCVIH, CCVIHU, CCVIALL, CCVIANY, CCVFALL, CCVFANY): Add modes and
617 documentation.
618 * config/s390/s390.c (s390_match_ccmode_set): Rename cc modes.
619 (s390_expand_vec_compare_scalar): Pick one of the cc consumer
620 modes.
621 (s390_branch_condition_mask): Adjust to use the new cc consumer
622 modes. The new modes allow for proper reversal in the middle-end.
623 (s390_expand_vec_compare_cc): Determine the proper cc producer and
624 consumer modes for a comparison.
625 * config/s390/s390.md: Rename CCVH to CCVIH and CCVHU to CCVIHU
626 throughout the file.
627 * config/s390/vx-builtins.md: Likewise.
628
629 2016-12-02 Maxim Ostapenko <m.ostapenko@samsung.com>
630
631 * asan.c (asan_global_struct): Refactor.
632 (create_odr_indicator): New function.
633 (asan_needs_odr_indicator_p): Likewise.
634 (is_odr_indicator): Likewise.
635 (asan_add_global): Introduce odr_indicator_ptr. Pass it into global's
636 constructor.
637 (asan_protect_global): Do not protect odr indicators.
638
639 2016-12-01 Jeff Law <law@redhat.com>
640
641 * tree-ssa-threadedge.c
642 (record_temporary_equivalences_from_stmts_at_dest): Avoid temporary
643 propagation of operands if there are no operands.
644
645 2016-12-02 Jakub Jelinek <jakub@redhat.com>
646
647 PR tree-optimization/78586
648 * gimple-ssa-sprintf.c (format_integer): Don't handle NOP_EXPR,
649 CONVERT_EXPR or COMPONENT_REF here. Formatting fix. For
650 SSA_NAME_DEF_STMT with NOP_EXPR only change argtype if the rhs1's
651 type is INTEGER_TYPE or POINTER_TYPE.
652
653 2016-12-01 Kelvin Nilsen <kelvin@gcc.gnu.org>
654
655 PR target/78577
656 * config/rs6000/vsx.md (vextuhlx): Revise mode of operand 2.
657 (vextuhrx): Likewise.
658 (vextuwlx): Likewise.
659 (vextuwrx): Likewise.
660
661 2016-12-01 David Malcolm <dmalcolm@redhat.com>
662
663 * dwarf2out.c (dwarf2out_c_finalize): Reset early_dwarf and
664 early_dwarf_finished.
665
666 2016-12-01 Eric Botcazou <ebotcazou@adacore.com>
667 David S. Miller <davem@davemloft.net>
668
669 * config/sparc/sparc.opt (mlra): New target option.
670 * config/sparc/sparc.c (TARGET_LRA_P): Define to...
671 (sparc_lra_p): ...this. New function.
672 (D_MODES, DF_MODES): Add missing cast.
673 * config/sparc/sparc.md (*movsi_lo_sum, *movsi_high): Do not
674 provide these insns when flag_pic.
675 (sethi_di_medlow, losum_di_medlow, seth44, setm44, setl44, sethh,
676 setlm, sethm, setlo, embmedany_sethi, embmedany_losum,
677 embmedany_brsum, embmedany_textuhi, embmedany_texthi,
678 embmedany_textulo, embmedany_textlo): Likewise.
679 (sethi_di_medlow_embmedany_pic): Provide it only with flag_pic.
680
681 2016-12-01 David Edelsohn <dje.gcc@gmail.com>
682
683 PR debug/66419
684 PR c++/78235
685 * dbxout.c (dbxout_type_fields): Skip TEMPLATE_DECLs.
686
687 2016-12-01 Richard Biener <rguenther@suse.de>
688 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
689
690 * vec.h (vec<T, A, vl_embed>::quick_grow_cleared): Guard call to
691 memset if len-oldlen != 0.
692 (vec<T, va_heap, vl_ptr>::safe_grow_cleared): Likewise.
693
694 2016-12-01 Uros Bizjak <ubizjak@gmail.com>
695
696 * config/i386/i386.md (*andndi3_doubleword): Depend on TARGET_SSE2.
697
698 2016-12-01 Georg-Johann Lay <avr@gjlay.de>
699
700 * config/avr/avr.c: Fix coding rule glitches.
701
702 2016-12-01 Markus Trippelsdorf <markus@trippelsdorf.de>
703
704 PR tree-optimization/78598
705 * tree-ssa-loop-prefetch.c (ddown): Cast to signed to avoid
706 overflows.
707
708 2016-12-01 Markus Trippelsdorf <markus@trippelsdorf.de>
709
710 PR rtl-optimization/78596
711 * combine.c (simplify_comparison): Cast to unsigned to avoid
712 left shifting of negative value.
713
714 2016-12-01 Matthias Klose <doko@ubuntu.com>
715
716 * doc/install.texi: Don't use pkg-config to check for bdw-gc.
717
718 2016-12-01 Richard Biener <rguenther@suse.de>
719
720 * tree-ssa-alias.c (indirect_refs_may_alias_p): Do not
721 treat arrays with same type as objects that cannot overlap.
722
723 2016-12-01 Georg-Johann Lay <avr@gjlay.de>
724
725 * config/avr/avr.c (avr_print_operand): Use SYMBOL_REF_P if possible.
726 (avr_handle_addr_attribute, avr_asm_output_aligned_decl_common)
727 (avr_asm_asm_output_aligned_bss, avr_addr_space_convert): Dito.
728
729 2016-12-01 Jakub Jelinek <jakub@redhat.com>
730
731 PR debug/78587
732 * dwarf2out.c (loc_descr_plus_const): For negative offset use
733 uint_loc_descriptor instead of int_loc_descriptor and perform negation
734 in unsigned HOST_WIDE_INT type.
735 (scompare_loc_descriptor): Shift UINTVAL left instead of INTVAL.
736
737 PR target/78614
738 * config/rs6000/rs6000.c (rs6000_frame_related): Call
739 set_used_flags (pat) before any simplifications. Clear used flag on
740 PARALLEL copy. Don't guard add_reg_note call. Call
741 copy_rtx_if_shared on pat before storing it into
742 REG_FRAME_RELATED_EXPR.
743
744 2016-12-01 Alan Modra <amodra@gmail.com>
745
746 * gcc/config/rs6000/rs6000.c (insn_is_swappable_p): Properly
747 look inside UNSPEC_VSX_XXSPLTW vec.
748
749 2016-12-01 Segher Boessenkool <segher@kernel.crashing.org>
750
751 PR rtl-optimization/78607
752 * combine.c (try_combine): Emit a barrier after a unconditional trap.
753
754 2016-11-30 Michael Meissner <meissner@linux.vnet.ibm.com>
755
756 PR target/78602
757 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): If the
758 element is not a constant or in a register, force it to a
759 register.
760
761 PR target/78560
762 * config/rs6000/rs6000.c (rs6000_expand_vector_set): Force value
763 that will be set to a vector element to be in a register.
764 * config/rs6000/vsx.md (vsx_set_<mode>_p9): Fix thinko that used
765 the wrong multiplier to convert the element number to a byte
766 offset.
767
768 2016-11-30 Vladimir Makarov <vmakarov@redhat.com>
769
770 PR tree-optimization/77856
771 * lra-constraints.c (inherit_in_ebb): Check original regno for
772 invalid invariant regs too. Set only clobbered hard regs for the
773 invalid invariant regs.
774
775 2016-11-30 Pitchumani Sivanupandi <pitchumani.sivanupandi@microchip.com>
776
777 Commit files forgotten in r242966.
778
779 * config/avr/avr-arch.h (avr_mcu_t) [flash_size]: New member.
780 * config/avr/avr-devices.c (avr_mcu_types): Add flash size info.
781 * config/avr/gen-avr-mmcu-specs.c (print_mcu): Remove hard-coded
782 prefix check to find wrap-around value, instead use MCU flash size.
783 For 8k flash devices, update link_pmem_wrap spec string to
784 add --pmem-wrap-around=8k.
785 * config/avr/specs.h (LINK_RELAX_SPEC): Move link_pmem_wrap from
786 here...
787 (LINK_SPEC): ...to here.
788
789 2016-11-30 David Malcolm <dmalcolm@redhat.com>
790
791 PR c/78498
792 * selftest.c (selftest::assert_strndup_eq): New function.
793 (selftest::test_strndup): New function.
794 (selftest::test_libiberty): New function.
795 (selftest::selftest_c_tests): Call test_libiberty.
796
797 2016-11-30 Segher Boessenkool <segher@kernel.crashing.org>
798
799 PR rtl-optimization/78610
800 * ira.c (combine_and_move_insns): Don't substitute into TRAP_IF
801 instructions.
802
803 2016-11-30 Bin Cheng <bin.cheng@arm.com>
804
805 PR tree-optimization/78574
806 * tree-ssa-loop-ivopts.c (find_deriving_biv_for_expr): Skip loop
807 header PHI that doesn't define biv.
808
809 2016-11-30 Jakub Jelinek <jakub@redhat.com>
810
811 * emit-rtl.c (verify_insn_sharing): Call verify_rtx_sharing instead of
812 reset_used_flags.
813
814 * config/i386/i386.c (dimode_scalar_chain::convert_op): Avoid
815 sharing the SUBREG rtx between move and following insn.
816
817 * ira.c (ira_update_equiv_info_by_shuffle_insn): Use copy_rtx
818 for REG_EQUIV argument.
819
820 2016-11-30 Thomas Preud'homme <thomas.preudhomme@arm.com>
821
822 * config/arm/t-rmprofile: Add mappings for Cortex-M23 and Cortex-M33.
823
824 2016-11-30 Markus Trippelsdorf <markus@trippelsdorf.de>
825
826 PR ipa/78555
827 * real.c (real_hash): Add cast to avoid left
828 shifting of negative values.
829
830 2016-11-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
831
832 PR target/78362
833 * config/aarch64/aarch64.md (add<mode>3): Extract inner expression
834 from a subreg in operands[1] and don't call REGNO on a non-reg
835 expression when deciding to force operands[2] into a reg.
836
837 2016-11-30 Claudiu Zissulescu <claziss@synopsys.com>
838 Andrew Burgess <andrew.burgess@embecosm.com>
839
840 * config/arc/arc-protos.h (arc_store_addr_hazard_p): Declare.
841 * config/arc/arc.c (arc_store_addr_hazard_p): New function.
842 (workaround_arc_anomaly): Call arc_store_addr_hazard_p for ARC700.
843 * config/arc/arc700.md: Add define_bypass for store/load.
844
845 2016-11-30 Martin Liska <mliska@suse.cz>
846
847 * cgraph.c (symbol_table::initialize): Initialize
848 ipa_clones_dump_file.
849 (cgraph_node::remove): Report to ipa_clones_dump_file.
850 * cgraph.h: Add new argument (suffix) to cloning methods.
851 * cgraphclones.c (dump_callgraph_transformation): New function.
852 (cgraph_node::create_clone): New argument.
853 (cgraph_node::create_virtual_clone): Likewise.
854 (cgraph_node::create_version_clone): Likewise.
855 * dumpfile.c: Add .ipa-clones dump file.
856 * dumpfile.h (enum tree_dump_index): Add TDI_clones
857 * ipa-inline-transform.c (clone_inlined_nodes): Report operation
858 to dump_callgraph_transformation.
859
860 2016-11-30 Martin Liska <mliska@suse.cz>
861
862 PR sanitizer/78541
863 * asan.c (asan_expand_mark_ifn): Properly
864 select a VAR_DECL from FRAME.* component reference.
865
866 2016-11-30 Segher Boessenkool <segher@kernel.crashing.org>
867
868 PR rtl-optimization/78583
869 * simplify-rtx.c (simplify_truncation): Add check missing from the
870 previous commit.
871
872 2016-11-30 Segher Boessenkool <segher@kernel.crashing.org>
873
874 PR rtl-optimization/78590
875 * combine.c (change_zero_ext): Transform zero_extend of subregs only
876 if the subreg_reg is a scalar integer mode.
877
878 2016-11-30 Jakub Jelinek <jakub@redhat.com>
879
880 PR tree-optimization/78586
881 * gimple-ssa-sprintf.c (format_integer): Use TYPE_MAX_VALUE or
882 TYPE_MIN_VALUE or build_all_ones_cst instead of folding LSHIFT_EXPR.
883 Don't build_int_cst min/max twice. Formatting fix.
884
885 2016-11-30 Markus Trippelsdorf <markus@trippelsdorf.de>
886
887 PR rtl-optimization/78588
888 * combine.c (if_then_else_cond): Also guard against BLKmode.
889 * rtlanal.c (num_sign_bit_copies1): Add assert.
890
891 2016-11-29 Jeff Law <law@redhat.com>
892
893 * common/config/arc/arc-common.c (arc_handle_option): Remove unused
894 variables.
895
896 * lra-constraints.c (check_and_process_move): Constrain the
897 range of DCLASS and SCLASS to avoid false positive out of bounds
898 array index warning.
899
900 2016-11-29 David Malcolm <dmalcolm@redhat.com>
901
902 * doc/install.texi (--with-target-bdw-gc): Remove stray '@'.
903
904 2016-11-29 David Malcolm <dmalcolm@redhat.com>
905
906 PR preprocessor/78569
907 * input.c (get_substring_ranges_for_loc): Fail gracefully if
908 line directives were present.
909
910 2016-11-30 Matthias Klose <doko@ubuntu.com>
911
912 * doc/install.texi: Document configure options --enable-objc-gc
913 and --with-target-bdw-gc.
914
915 2016-11-29 Michael Meissner <meissner@linux.vnet.ibm.com>
916
917 PR target/78594
918 * config/rs6000/rs6000.md (mov<mode>_internal, QHI iterator): Add
919 'x' to stxsi<wd>x print pattern, so that QImode and HImode values
920 residing in traditional altivec registers can be stored
921 correctly.
922
923 2016-11-29 Max Filippov <jcmvbkbc@gmail.com>
924
925 PR target/78603
926 * config/xtensa/xtensa.c (hwloop_optimize): Don't emit zero
927 overhead loop start between a call and its CALL_ARG_LOCATION
928 note.
929
930 2016-11-29 Waldemar Brodkorb <wbx@openadk.org>
931
932 * config/bfin/linux.h (CPP_SPEC): Define.
933
934 2016-11-29 Martin Sebor <msebor@redhat.com>
935
936 PR tree-optimization/78512
937 * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Remove.
938 * config/rs6000/linux.h: Same.
939 * config/rs6000/linux64.h: Same.
940 * config/sol2.h: Same.
941 * config/sol2.c (solaris_printf_pointer_format): Remove.
942 * doc/tm.texi.in (TARGET_PRINTF_POINTER_FORMAT): Remove.
943 * doc/tm.texi: Regenerate.
944 * gimple-ssa-sprintf.c (format_pointer): Rempove.
945 (pass_sprintf_length::compute_format_length): Return bool.
946 (pass_sprintf_length::handle_gimple_call): Adjust.
947 * target.def (printf_pointer_format): Remove.
948 * targhooks.c (default_printf_pointer_format): Remove.
949 (linux_printf_pointer_format): Same.
950 * targhooks.h (default_printf_pointer_format): Remove.
951 (linux_printf_pointer_format, solaris_printf_pointer_format): Same.
952
953 2016-11-29 Uros Bizjak <ubizjak@gmail.com>
954
955 * config/i386/sse.md (UNSPEC_MASKOP): Move from i386.md.
956 (mshift): Ditto.
957 (SWI1248_AVX512BWDQ): Ditto.
958 (SWI1248_AVX512BW): Ditto.
959 (k<any_logic:code><mode>): Ditto.
960 (kandn<mode>): Ditto.
961 (kxnor<mode>): Ditto.
962 (knot<mode>): Ditto.
963 (*k<any_lshift:code><mode>): Ditto.
964 (kortestzhi, kortestchi): Ditto.
965 (kunpckhi, kunpcksi, kunpckdi): Ditto.
966
967 2016-11-29 Andrew Pinski <apinski@cavium.com>
968
969 * tree-vrp.c (simplify_stmt_using_ranges): Use boolean_type_node
970 for the EQ_EXPR.
971
972 2016-11-29 Chen Gang <gang.chen.5i5j@gmail.com>
973
974 PR target/71331
975 * config/tilegx/tilegx.c (tilegx_function_profiler): Save r10
976 to stack before call mcount.
977 (tilegx_can_use_return_insn_p): Clean up code.
978
979 2016-11-29 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
980
981 * config/avr/avr-mcu.def: (avr_mcu_types): Add flash size info.
982
983 2016-11-29 David Malcolm <dmalcolm@redhat.com>
984
985 PR c++/72774
986 PR c++/72786
987 PR c++/77922
988 PR c++/78313
989 * spellcheck.c (selftest::test_find_closest_string): Verify that
990 we don't offer the goal string as a suggestion.
991 * spellcheck.h (best_match::get_best_meaningful_candidate): Don't
992 offer the goal string as a suggestion.
993
994
995 2016-11-29 Claudiu Zissulescu <claziss@synopsys.com>
996
997 * config/arc/arc.c (arc_override_options): Avoid selection of
998 compact casesi for ARCv2.
999
1000 2016-11-29 Richard Biener <rguenther@suse.de>
1001
1002 * tree-cfg.c (lower_phi_internal_fn): Do not look for further
1003 PHIs after a regular stmt.
1004 (stmt_starts_bb_p): PHIs not preceeded by a PHI or a label
1005 start a new BB.
1006
1007 2016-11-29 Martin Liska <mliska@suse.cz>
1008
1009 PR gcov-profile/78582
1010 * tree-profile.c (gimple_gen_time_profiler): Make one extra BB
1011 to prevent PHI argument clash.
1012
1013 2016-11-29 Claudiu Zissulescu <claziss@synopsys.com>
1014
1015 * config/arc/arc.opt (marclinux): Fix typo.
1016 (marclinux_prof): Likewise.
1017
1018 2016-11-29 Jiong Wang <jiong.wang@arm.com>
1019
1020 * target.def (stack_protect_runtime_enabled_p): New.
1021 * function.c (expand_function_end): Guard stack_protect_epilogue with
1022 targetm.stack_protect_runtime_enabled_p.
1023 * cfgexpand.c (pass_expand::execute): Likewise.
1024 * calls.c (expand_call): Likewise.
1025 * doc/tm.texi.in (TARGET_STACK_PROTECT_RUNTIME_ENABLED_P): Add it.
1026 * doc/tm.texi: Regenerate.
1027
1028 2016-11-29 Richard Biener <rguenther@suse.de>
1029
1030 PR middle-end/78546
1031 * match.pd: Add CST1 - (CST2 - A) -> CST3 + A missing case.
1032
1033 2016-11-29 Janus Weil <janus@gcc.gnu.org>
1034
1035 * doc/contrib.texi: Add a few missing gfortran contributors.
1036
1037 2016-11-29 Segher Boessenkool <segher@kernel.crashing.org>
1038
1039 * combine.c (change_zero_ext): Also handle extends from a subreg
1040 to a mode bigger than that of the operand of the subreg.
1041
1042 2016-11-29 Segher Boessenkool <segher@kernel.crashing.org>
1043
1044 PR target/77687
1045 * config/rs6000/rs6000.c (rs6000_emit_stack_reset): Emit the
1046 stack_restore_tie insn instead of stack_tie, for the SVR4 and
1047 SPE ABIs.
1048 * config/rs6000/rs6000.md (stack_restore_tie): New define_insn.
1049
1050 2016-11-28 Segher Boessenkool <segher@kernel.crashing.org>
1051
1052 * shrink-wrap.c (init_separate_shrink_wrap): Do not clear
1053 head_components and tail_components.
1054 (spread_components): New algorithm.
1055 (emit_common_tails_for_components): Clear head_components and
1056 tail_components.
1057 (insert_prologue_epilogue_for_components): Write extra output to the
1058 dump file for sibcalls and abnormal exits.
1059
1060 2016-11-28 Segher Boessenkool <segher@kernel.crashing.org>
1061
1062 PR rtl-optimization/78342
1063 * combine.c: Include "cfghooks.h".
1064 (try_combine): If we create an unconditional trap, break the basic
1065 block in two just after it, and remove the edge between; also, set
1066 the *new_direct_jump_p flag so that cleanup_cfg is run.
1067
1068 2016-11-28 Segher Boessenkool <segher@kernel.crashing.org>
1069
1070 * simplify-rtx.c (simplify_truncation): Handle truncate of zero_extract
1071 and sign_extract.
1072
1073 2016-11-28 Uros Bizjak <ubizjak@gmail.com>
1074
1075 * config/i386/i386.md (*and<mode>_1): Merge insn pattern from
1076 *andsi_1 and *andhi_1 using SWI24 mode iterator. Use multi-line
1077 output template string.
1078 (*anddi_1): Use multi-line output template string.
1079 (*andqi_1): Ditto.
1080
1081 2016-11-28 Jakub Jelinek <jakub@redhat.com>
1082
1083 PR middle-end/78540
1084 * rtl.h (remove_reg_equal_equiv_notes): Return bool instead of void.
1085 * rtlanal.c (remove_reg_equal_equiv_notes): Return true if any
1086 note has been removed.
1087 * postreload.c (reload_combine_recognize_pattern): If
1088 remove_reg_equal_equiv_notes returns true, call df_notes_rescan.
1089
1090 2016-11-28 Martin Sebor <msebor@redhat.com>
1091
1092 PR middle-end/78520
1093 * gimple-ssa-sprintf.c (target_max_value): Remove.
1094 (target_int_max, target_size_max): Use TYPE_MAX_VALUE.
1095 (get_width_and_precision): New function.
1096 (format_integer, format_floating, get_string_length, format_string):
1097 Correct handling of width and precision with unknown value.
1098 (format_directive): Add warning.
1099 (pass_sprintf_length::compute_format_length): Allow for precision
1100 to consist of a sole period with no asterisk or digits after it.
1101
1102 2016-11-28 Jakub Jelinek <jakub@redhat.com>
1103
1104 PR rtl-optimization/78546
1105 * simplify-rtx.c (neg_const_int): When negating most negative
1106 number in mode wider than HOST_BITS_PER_WIDE_INT, use
1107 simplify_const_unary_operation to produce CONST_DOUBLE or
1108 CONST_WIDE_INT.
1109 (simplify_plus_minus): Handle the case where neg_const_int
1110 doesn't return a CONST_INT.
1111
1112 2016-11-28 Markus Trippelsdorf <markus@trippelsdorf.de>
1113
1114 PR target/78556
1115 * config/rs6000/rs6000.c (vspltis_constant): Add casts to avoid
1116 left shifting of negative values.
1117
1118 2016-11-28 Jakub Jelinek <jakub@redhat.com>
1119
1120 PR fortran/78298
1121 * tree-nested.c (convert_local_reference_stmt): After adding
1122 shared (FRAME.NN) clause to omp parallel, task or target,
1123 add it also to all outer omp parallel, task or target constructs.
1124
1125 2016-11-28 Uros Bizjak <ubizjak@gmail.com>
1126
1127 * config/i386/i386.md (UNSPEC_KMASKOP): New.
1128 (UNSPEC_KMOV): Remove.
1129 (kmovw): Expand to plain HImode move.
1130 (k<any_logic:code><mode>): Rename from *k<logic><mode>. Use
1131 register_operand predicates. Tag pattern with UNSPEC_KMASKOP.
1132 Remove corresponding clobber-removing splitter.
1133 (*anddi_1): Remove mask register alternatives.
1134 (*andsi_1): Ditto.
1135 (*andhi_1): Ditto.
1136 (*andqi_1): Ditto.
1137 (*<any_or:code><mode>_1): Ditto.
1138 (*<any_or:code>qi_1): Ditto.
1139 (kandn<mode>): Use SWI1248_AVX512BW mode iterator. Remove
1140 general register alternatives. Tag pattern with UNSPEC_KMASKOP.
1141 Remove corresponding splitter to operation with general registers.
1142 (*andn<SWI38:mode>): Rename from *bmi_andn_<mode>.
1143 (*andn<SWI12:mode>): New pattern.
1144 (*kxnor<mode>): Remove general register alternatives. Tag pattern
1145 with UNSPEC_KMASKOP. Remove corresponding splitter to operation
1146 with general registers.
1147 (knot<mode>): New insn pattern.
1148 (*one_cmpl<mode>2_1): Remove mask register alternatives.
1149 (one_cmplqi2_1): Ditto.
1150 (*k<any_lshift:code><mode>): Rename from *k<mshift><mode>3.
1151 Tag pattern with UNSPEC_KMASKOP. Add mode attribute.
1152 * config/i386/predicates.md (mask_reg_operand): Remove predicate.
1153 * config/i386/sse.md (vec_unpacks_hi_hi): Update pattern
1154 to generate kmaskop shift.
1155 (vec_unpacks_hi_<mode>): Ditto.
1156 * config/i386/i386-builtin.def (__builtin_ia32_kandhi):
1157 Use CODE_FOR_kandhi.
1158 (__builtin_ia32_knothi): Use CODE_FOR_knothi.
1159 (__builtin_ia32_korhi): Use CODE_FOR_kiorhi.
1160 (__builtin_ia32_kxorhi): Use CODE_FOR_kxorhi.
1161
1162 2016-11-28 Richard Biener <rguenther@suse.de>
1163
1164 * tree-vrp.c (vrp_visit_assignment_or_call): Handle simplifications
1165 to SSA names via extract_range_from_ssa_name if allowed.
1166
1167 2016-11-28 Richard Biener <rguenther@suse.de>
1168
1169 PR tree-optimization/78542
1170 * tree-ssa-ccp.c (evaluate_stmt): Only valueize simplification
1171 if allowed.
1172
1173 2016-11-28 Paolo Bonzini <bonzini@gnu.org>
1174
1175 * combine.c (simplify_if_then_else): Simplify IF_THEN_ELSE that
1176 isolates a single bit, even if the condition involves subregs.
1177
1178 2016-11-28 Tamar Christina <tamar.christina@arm.com>
1179
1180 * config/aarch64/aarch64-simd-builtins.def
1181 (BSL_P): Added di and v2di mode.
1182 * config/aarch64/arm_neon.h
1183 (vsriq_n_p64, vsri_n_p64): Added poly type.
1184 (vextq_p64, vext_p64): Likewise.
1185 (vceq_p64, vbslq_p64, vbsl_p64): Likewise.
1186
1187 2016-11-28 Tamar Christina <tamar.christina@arm.com>
1188
1189 * config/aarch64/aarch64-builtins.c (TYPES_SETREGP): Added poly type.
1190 (TYPES_GETREGP): Likewise.
1191 (TYPES_SHIFTINSERTP): Likewise.
1192 (TYPES_COMBINEP): Likewise.
1193 (TYPES_STORE1P): Likewise.
1194 * config/aarch64/aarch64-simd-builtins.def
1195 (combine): Added poly generator.
1196 (get_dregoi): Likewise.
1197 (get_dregci): Likewise.
1198 (get_dregxi): Likewise.
1199 (ssli_n): Likewise.
1200 (ld1): Likewise.
1201 (st1): Likewise.
1202 * config/aarch64/arm_neon.h
1203 (poly64x1x2_t, poly64x1x3_t): New.
1204 (poly64x1x4_t, poly64x2x2_t): Likewise.
1205 (poly64x2x3_t, poly64x2x4_t): Likewise.
1206 (poly64x1_t): Likewise.
1207 (vcreate_p64, vcombine_p64): Likewise.
1208 (vdup_n_p64, vdupq_n_p64): Likewise.
1209 (vld2_p64, vld2q_p64): Likewise.
1210 (vld3_p64, vld3q_p64): Likewise.
1211 (vld4_p64, vld4q_p64): Likewise.
1212 (vld2_dup_p64, vld3_dup_p64): Likewise.
1213 (vld4_dup_p64, vsli_n_p64): Likewise.
1214 (vsliq_n_p64, vst1_p64): Likewise.
1215 (vst1q_p64, vst2_p64): Likewise.
1216 (vst3_p64, vst4_p64): Likewise.
1217 (__aarch64_vdup_lane_p64, __aarch64_vdup_laneq_p64): Likewise.
1218 (__aarch64_vdupq_lane_p64, __aarch64_vdupq_laneq_p64): Likewise.
1219 (vget_lane_p64, vgetq_lane_p64): Likewise.
1220 (vreinterpret_p8_p64, vreinterpretq_p8_p64): Likewise.
1221 (vreinterpret_p16_p64, vreinterpretq_p16_p64): Likewise.
1222 (vreinterpret_p64_f16, vreinterpret_p64_f64): Likewise.
1223 (vreinterpret_p64_s8, vreinterpret_p64_s16): Likewise.
1224 (vreinterpret_p64_s32, vreinterpret_p64_s64): Likewise.
1225 (vreinterpret_p64_f32, vreinterpret_p64_u8): Likewise.
1226 (vreinterpret_p64_u16, vreinterpret_p64_u32): Likewise.
1227 (vreinterpret_p64_u64, vreinterpret_p64_p8): Likewise.
1228 (vreinterpretq_p64_f64, vreinterpretq_p64_s8): Likewise.
1229 (vreinterpretq_p64_s16, vreinterpretq_p64_s32): Likewise.
1230 (vreinterpretq_p64_s64, vreinterpretq_p64_f16): Likewise.
1231 (vreinterpretq_p64_f32, vreinterpretq_p64_u8): Likewise.
1232 (vreinterpretq_p64_u16, vreinterpretq_p64_u32): Likewise.
1233 (vreinterpretq_p64_u64, vreinterpretq_p64_p8): Likewise.
1234 (vreinterpret_f16_p64, vreinterpretq_f16_p64): Likewise.
1235 (vreinterpret_f32_p64, vreinterpretq_f32_p64): Likewise.
1236 (vreinterpret_f64_p64, vreinterpretq_f64_p64): Likewise.
1237 (vreinterpret_s64_p64, vreinterpretq_s64_p64): Likewise.
1238 (vreinterpret_u64_p64, vreinterpretq_u64_p64): Likewise.
1239 (vreinterpret_s8_p64, vreinterpretq_s8_p64): Likewise.
1240 (vreinterpret_s16_p64, vreinterpret_s32_p64): Likewise.
1241 (vreinterpretq_s32_p64, vreinterpret_u8_p64): Likewise.
1242 (vreinterpret_u16_p64, vreinterpretq_u16_p64): Likewise.
1243 (vreinterpret_u32_p64, vreinterpretq_u32_p64): Likewise.
1244 (vset_lane_p64, vsetq_lane_p64): Likewise.
1245 (vget_low_p64, vget_high_p64): Likewise.
1246 (vcombine_p64, vst2_lane_p64): Likewise.
1247 (vst3_lane_p64, vst4_lane_p64): Likewise.
1248 (vst2q_lane_p64, vst3q_lane_p64): Likewise.
1249 (vst4q_lane_p64, vget_lane_p64): Likewise.
1250 (vget_laneq_p64, vset_lane_p64): Likewise.
1251 (vset_laneq_p64, vcopy_lane_p64): Likewise.
1252 (vcopy_laneq_p64, vdup_n_p64): Likewise.
1253 (vdupq_n_p64, vdup_lane_p64): Likewise.
1254 (vdup_laneq_p64, vld1_p64): Likewise.
1255 (vld1q_p64, vld1_dup_p64): Likewise.
1256 (vld1q_dup_p64, vld1q_dup_p64): Likewise.
1257 (vmov_n_p64, vmovq_n_p64): Likewise.
1258 (vst3q_p64, vst4q_p64): Likewise.
1259 (vld1_lane_p64, vld1q_lane_p64): Likewise.
1260 (vst1_lane_p64, vst1q_lane_p64): Likewise.
1261 (vcopy_laneq_p64, vcopyq_laneq_p64): Likewise.
1262 (vdupq_laneq_p64): Likewise.
1263
1264 2016-11-28 Tamar Christina <tamar.christina@arm.com>
1265
1266 * config/arm/arm_neon.h (vget_lane_p64): New.
1267
1268 2016-11-28 Iain Sandoe <iain@codesourcery.com>
1269
1270 PR target/71767
1271 * configure.ac (with_ld64): Use portable method to extract the
1272 major part of the version number.
1273 * configure: Regenerated.
1274
1275 2016-11-28 Jakub Jelinek <jakub@redhat.com>
1276
1277 * gimple-ssa-sprintf.c (build_intmax_type_nodes): Look at
1278 UINTMAX_TYPE rather than SIZE_TYPE. Add gcc_unreachable if
1279 intmax_t couldn't be determined.
1280 (format_integer): Make {,u}intmax_type_node no longer static,
1281 initialize them only when needed. For z and t use
1282 signed_or_unsigned_type_for instead of assuming size_t and
1283 ptrdiff_t have the same precision.
1284
1285 PR lto/78211
1286 * ipa-icf.h (sem_item_optimizer): Add m_classes_vec member.
1287 * ipa-icf.c (sem_item_optimizer::sem_item_optimizer): Initialize it.
1288 (sem_item_optimizer::~sem_item_optimizer): Traverse m_classes_vec
1289 vector instead of traversing m_classes hash table. Release
1290 m_classes_vec.
1291 (sem_item_optimizer::read_section, sem_item_optimizer::add_class):
1292 Formatting fixes.
1293 (sem_item_optimizer::get_group_by_hash): When inserting a new group,
1294 add it also to m_classes_vec vector.
1295 (sem_item_optimizer::remove_symtab_node,
1296 sem_item_optimizer::build_hash_based_classes,
1297 sem_item_optimizer::parse_nonsingleton_classes): Formatting fixes.
1298 (sem_item_optimizer::subdivide_classes_by_equality,
1299 sem_item_optimizer::subdivide_classes_by_sensitive_refs,
1300 sem_item_optimizer::verify_classes): Traverse m_classes_vec vector
1301 instead of traversing m_classes hash table. Formatting fixes.
1302 (sem_item_optimizer::traverse_congruence_split,
1303 sem_item_optimizer::do_congruence_step_for_index,
1304 sem_item_optimizer::do_congruence_step): Formatting fixes.
1305 (sem_item_optimizer::process_cong_reduction): Traverse m_classes_vec
1306 vector instead of traversing m_classes hash table.
1307 (sem_item_optimizer::dump_cong_classes): Likewise. Formatting fixes.
1308 (sem_item_optimizer::merge_classes): Traverse m_classes_vec vector
1309 instead of traversing m_classes hash table.
1310
1311 2016-11-28 Georg-Johann Lay <avr@gjlay.de>
1312
1313 * config/avr/avr.c (out_movhi_r_mr) [REG_X + PLUS]: Only SBIW if
1314 X is not unused after.
1315
1316 2016-11-28 Bernd Schmidt <bschmidt@redhat.com>
1317
1318 PR rtl-optimization/78120
1319 * rtlanal.c (insn_rtx_cost): Revert previous change.
1320
1321 2016-11-28 Georg-Johann Lay <avr@gjlay.de>
1322
1323 PR 41076
1324 * config/avr/avr.md (SPLIT34): New mode iterator.
1325 (bitop): New code iterator.
1326 (*iorhi3.ashift8-*). New insn-and-split patterns.
1327 (*movhi): Post-reload split reg = 0.
1328 [!MOVW]: Post-reload split reg = reg.
1329 (*mov<mode>) [SI,SF,PSI,SQ,USQ,SA,USA]: Post-reload split reg = reg.
1330 (andhi3, andpsi3, andsi3): Post-reload split reg-reg operations.
1331 (iorhi3, iorpsi3, iorsi3): Same.
1332 (xorhi3, xorpsi3, xorsi3): Same.
1333 * config/avr/avr.c (avr_rtx_costs_1) [IOR && HImode]: Adjust rtx
1334 costs to *iorhi3.ashift8-* patterns.
1335
1336 2016-11-27 Iain Sandoe <iain@codesourcery.com>
1337 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1338
1339 PR target/67710
1340 * config.in: Regenerate
1341 * config/darwin-driver.c (darwin_driver_init): Emit a version string
1342 for the assembler.
1343 * config/darwin.h(ASM_MMACOSX_VERSION_MIN_SPEC): New, new tests.
1344 * config/darwin.opt(asm_macosx_version_min): New.
1345 * config/i386/darwin.h: Handle ASM_MMACOSX_VERSION_MIN_SPEC.
1346 * configure: Regenerate
1347 * configure.ac: Check for mmacosx-version-min handling.
1348
1349 2016-11-27 Iain Sandoe <iain@codesourcery.com>
1350
1351 PR target/57438
1352 * config/i386/i386.c (ix86_code_end): Note that we emitted code
1353 where the function might otherwise appear empty for picbase thunks.
1354 (ix86_output_function_epilogue): If we find a zero-sized function
1355 assume that reaching it is UB and trap. If we find a trailing label
1356 append a nop.
1357 * config/rs6000/rs6000.c (rs6000_output_function_epilogue): If we
1358 find a zero-sized function assume that reaching it is UB and trap.
1359 If we find a trailing label, append a nop.
1360
1361 2016-11-27 Iain Sandoe <iain@codesourcery.com>
1362
1363 PR target/71767
1364 * config/darwin-sections.def (picbase_thunk_section): New.
1365 * config/darwin.c (darwin_init_sections): Set up picbase thunk
1366 section. (darwin_rodata_section, darwin_objc2_section,
1367 machopic_select_section, darwin_asm_declare_constant_name,
1368 darwin_emit_weak_or_comdat, darwin_function_section): Don’t use
1369 coalesced with newer linkers.
1370 (darwin_override_options): Decide on usage of coalesed sections
1371 on the basis of the target linker version.
1372 * config/darwin.h (MIN_LD64_NO_COAL_SECTS): New.
1373 * config/darwin.opt (mtarget-linker): New.
1374 * config/i386/i386.c (ix86_code_end): Do not force the thunks into
1375 a coalesced section, instead use a thunks section.
1376
1377 2016-11-27 Iain Sandoe <iain@codesourcery.com>
1378
1379 PR target/71767
1380 * configure.ac (with-ld64): New var, set for Darwin, set on
1381 detection of ld64, gcc_cv_ld64_export_dynamic: New, New test.
1382 * config/darwin.h: Use LD64_HAS_DYNAMIC export. DEF_LD64: New, define.
1383 * config/darwin10.h(DEF_LD64): Update for this target version.
1384 * config/darwin12.h(LINK_GCC_C_SEQUENCE_SPEC): Remove rdynamic test.
1385 (DEF_LD64): Update for this target version.
1386 * configure: Regenerated.
1387 * config.in: Regenerated.
1388
1389 2016-11-27 Iain Sandoe <iain@codesourcery.com>
1390
1391 PR target/71767
1392 * config/darwin.c (imachopic_indirection_name): Make data
1393 section indirections linker-visible.
1394 * config/darwin.h (ASM_GENERATE_INTERNAL_LABEL): Make local
1395 constant labels linker-visible.
1396
1397 2016-11-26 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
1398
1399 * tree.c (build_common_tree_nodes): Initialize ptrdiff_type_node.
1400 (free_lang_data): Remove assignment to ptrdiff_type_node.
1401
1402 2016-11-25 Jakub Jelinek <jakub@redhat.com>
1403
1404 PR rtl-optimization/78526
1405 * simplify-rtx.c (simplify_immed_subreg): Don't use wi::extract_uhwi
1406 beyond val's precision.
1407
1408 PR rtl-optimization/78527
1409 * combine.c (make_compound_operation_int): Ignore LSHIFTRT with
1410 out of bounds shift count.
1411
1412 2016-11-25 Martin Liska <mliska@suse.cz>
1413
1414 PR web/71666
1415 * doc/invoke.texi (-fprofile-use): Fix reference to a section
1416 where -fprofile-generate is documented.
1417
1418 2016-11-25 Martin Liska <mliska@suse.cz>
1419
1420 PR gcov-profile/78086
1421 * coverage.c (build_init_ctor): Don't use priority {cd}tors if
1422 not supported by a target. Set priority to 100 if possible.
1423 (build_gcov_exit_decl): Likewise.
1424
1425 2016-11-25 Richard Biener <rguenther@suse.de>
1426
1427 PR ipa/78515
1428 * ipa-prop.c (compute_complex_assign_jump_func): Properly identify
1429 unary, binary and single RHSs.
1430 * tree.def (BIT_INSERT_EXPR): Adjust tree code name.
1431
1432 2016-11-25 Bin Cheng <bin.cheng@arm.com>
1433
1434 PR middle-end/78507
1435 PR middle-end/78510
1436 PR middle-end/78517
1437 * match.pd ((cond (cmp (convert1? @1) @3) (convert2? @1) @2)): Use
1438 cmp directly, rather than cmp_code. Initialize code to ERROR_MARK
1439 and set it to result code if transformation is valid. Use code EQ
1440 directly in last simplification case.
1441
1442 2016-11-25 Richard Biener <rguenther@suse.de>
1443
1444 * gimple-fold.c (fold_stmt_1): Check may_propagate_copy
1445 before valueizing return stmts.
1446
1447 2016-11-24 Richard Biener <rguenther@suse.de>
1448
1449 PR tree-optimization/78343
1450 * passes.def: Add CD-DCE pass after loop splitting.
1451 * tree-ssa-dce.c (find_obviously_necessary_stmts): Move
1452 SCEV init/finalize ...
1453 (perform_tree_ssa_dce): ... here. Deal with being
1454 executed inside the loop pipeline in aggressive mode.
1455
1456 2016-11-25 Thomas Preud'homme <thomas.preudhomme@arm.com>
1457
1458 * tree-ssa-math-opts.c (struct symbolic_number): Improve comment.
1459
1460 2016-11-25 Thomas Preud'homme <thomas.preudhomme@arm.com>
1461
1462 PR tree-optimization/77673
1463 * tree-ssa-math-opts.c (struct symbolic_number): Add new src field.
1464 (init_symbolic_number): Initialize src field from src parameter.
1465 (perform_symbolic_merge): Select most dominated statement as the
1466 source statement. Set src field of resulting n structure from the
1467 input src with the lowest address.
1468 (find_bswap_or_nop): Rename source_stmt into ins_stmt.
1469 (bswap_replace): Rename src_stmt into ins_stmt. Initially get source
1470 of load from src field rather than insertion statement. Cancel
1471 optimization if statement analyzed is not dominated by the insertion
1472 statement.
1473 (pass_optimize_bswap::execute): Rename src_stmt to ins_stmt. Compute
1474 dominance information.
1475
1476 2016-11-25 Eric Botcazou <ebotcazou@adacore.com>
1477
1478 PR ada/67205
1479 * config/mips/mips.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Define.
1480
1481 2016-11-25 Martin Jambor <mjambor@suse.cz>
1482
1483 PR tree-optimization/70965
1484 * passes.def (pass_build_ssa_passes): Add pass_rebuild_cgraph_edges.
1485
1486 2016-11-24 James Greenahlgh <james.greenhalgh@arm.com>
1487
1488 PR target/78509
1489 * config/i386/i386.c (i386_excess_precision): Do not return
1490 FLT_EVAL_METHOD_UNPREDICTABLE when "type" is
1491 EXCESS_PRECISION_TYPE_STANDARD.
1492 * target.def (excess_precision): Document that targets should
1493 not return FLT_EVAL_METHOD_UNPREDICTABLE when "type" is
1494 EXCESS_PRECISION_TYPE_STANDARD or EXCESS_PRECISION_TYPE_FAST.
1495 Fix typo in first sentence.
1496 * doc/tm.texi: Regenerate.
1497
1498 2016-11-25 Richard Biener <rguenther@suse.de>
1499
1500 PR tree-optimization/78396
1501 * tree-vectorizer.c (vectorize_loops): When the if-converted
1502 body contains masked loads or stores do not attempt to
1503 basic-block-vectorize it.
1504
1505 2016-11-25 Richard Sandiford <richard.sandiford@arm.com>
1506 Alan Hayward <alan.hayward@arm.com>
1507 David Sherwood <david.sherwood@arm.com>
1508
1509 * function.h (spill_slot_alignment): Declare.
1510 * function.c (spill_slot_alignment): New function.
1511 * lra-spills.c (slot): Add align and size fields.
1512 (assign_mem_slot): Use them in the call to assign_stack_local.
1513 (add_pseudo_to_slot): Update the fields.
1514 (assign_stack_slot_num_and_sort_pseudos): Initialise the fields.
1515
1516 2016-11-25 Richard Sandiford <richard.sandiford@arm.com>
1517 Alan Hayward <alan.hayward@arm.com>
1518 David Sherwood <david.sherwood@arm.com>
1519
1520 * stor-layout.c (layout_type): Allow the caller to set the mode of
1521 a float type. Only choose one here if the mode is still VOIDmode.
1522 * tree.c (build_common_tree_nodes): Set the type mode of decimal
1523 floats before calling layout_type.
1524 * config/rs6000/rs6000.c (rs6000_init_builtins): Likewise.
1525
1526 2016-11-25 Richard Sandiford <richard.sandiford@arm.com>
1527
1528 * tree-tailcall.c (find_tail_calls): Allow calls to reference
1529 local variables if all references are known to be direct.
1530
1531 2016-11-25 Jakub Jelinek <jakub@redhat.com>
1532 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
1533
1534 PR middle-end/78501
1535 * tree-vrp.c (extract_range_basic): Check for ptrdiff_type_node to be
1536 non null and it's precision matches precision of lhs's type.
1537
1538 2016-11-24 Martin Sebor <msebor@redhat.com>
1539
1540 PR tree-optimization/78476
1541 * gimple-ssa-sprintf.c (struct pass_sprintf_length::call_info):
1542 Add a member.
1543 (handle_gimple_call): Adjust signature.
1544 (try_substitute_return_value): Remove calls to bounded functions
1545 with zero buffer size whose result is known.
1546 (pass_sprintf_length::execute): Adjust call to handle_gimple_call.
1547
1548 2016-11-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1549
1550 * varasm.c (assemble_start_function): Wrap align_log definition in
1551 ASM_OUTPUT_MAX_SKIP_ALIGN.
1552
1553 2016-11-24 Uros Bizjak <ubizjak@gmail.com>
1554
1555 * config/i386/i386.md (wide AND insn to QImode splitter): Use
1556 explicit mode macros.
1557 (wide OR insn to QImode splitter): Ditto.
1558
1559 2016-11-24 Vladimir Makarov <vmakarov@redhat.com>
1560
1561 PR rtl-optimization/77541
1562 * lra-constraints.c (struct input_reload): Add field match_p.
1563 (get_reload_reg): Check modes of input reloads to generate unique
1564 value reload pseudo.
1565 (match_reload): Add input reload pseudo for the current insn.
1566
1567 2016-11-24 James Greenhalgh <james.greenhalgh@arm.com>
1568
1569 * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins): Update
1570 __FLT_EVAL_METHOD__ and __FLT_EVAL_METHOD_C99__ when we switch
1571 architecture levels.
1572 * config/aarch64/aarch64.c (aarch64_promoted_type): Only promote
1573 the aarch64_fp16_type_node, not all HFmode types.
1574 (aarch64_libgcc_floating_mode_supported_p): Support HFmode.
1575 (aarch64_scalar_mode_supported_p): Likewise.
1576 (aarch64_excess_precision): New.
1577 (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Define.
1578 (TARGET_SCALAR_MODE_SUPPORTED_P): Likewise.
1579 (TARGET_C_EXCESS_PRECISION): Likewise.
1580
1581 2016-11-24 James Greenhalgh <james.greenhalgh@arm.com>
1582
1583 * config/aarch64/aarch64-c.c (aarch64_scalar_mode_supported_p): New.
1584 (TARGET_SCALAR_MODE_SUPPORTED_P): Define.
1585
1586 2016-11-24 James Greenhalgh <james.greenhalgh@arm.com>
1587
1588 * config/aarch64/aarch64.md (<optab>sihf2): Convert to expand.
1589 (<optab>dihf2): Likewise.
1590 (aarch64_fp16_<optab><mode>hf2): New.
1591
1592 2016-11-24 Alexander Monakov <amonakov@ispras.ru>
1593
1594 PR target/67822
1595 * config/nvptx/mkoffload.c (main): Allow -fopenmp.
1596
1597 2016-11-24 Eric Botcazou <ebotcazou@adacore.com>
1598
1599 * common/config/sparc/sparc-common.c (sparc_option_optimization_table):
1600 Enable REE at -O2 and higher.
1601 * config/sparc/sparc.c (sparc_option_override): Disable it by default
1602 in 32-bit mode.
1603
1604 2016-11-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1605
1606 PR target/48863
1607 PR inline-asm/70184
1608 * tree-ssa-ter.c (temp_expr_table): Add reg_vars_cnt field.
1609 (new_temp_expr_table): Initialise reg_vars_cnt.
1610 (free_temp_expr_table): Release reg_vars_cnt.
1611 (process_replaceable): Add reg_vars_cnt argument, set reg_vars_cnt
1612 field of TAB.
1613 (find_replaceable_in_bb): Use the above to record register variable
1614 write occurrences and cancel replacement across them.
1615
1616 2016-11-24 Eric Botcazou <ebotcazou@adacore.com>
1617
1618 PR rtl-optimization/78437
1619 * ree.c (get_uses): New function.
1620 (combine_reaching_defs): When a copy is needed, return false if any
1621 reaching use of the source register reads it in a mode larger than
1622 the mode it is set in and WORD_REGISTER_OPERATIONS is true.
1623
1624 2016-11-24 Martin Liska <mliska@suse.cz>
1625
1626 * gimple-pretty-print.c (dump_edge_probability): New function.
1627 (dump_gimple_switch): Dump label edge probabilities.
1628 (dump_gimple_cond): Likewise.
1629 (dump_gimple_label): Dump
1630 (dump_gimple_bb_header): Dump basic block frequency.
1631 (pp_cfg_jump): Replace e->dest argument with e.
1632 (dump_implicit_edges): Likewise.
1633 * tree-ssa-loop-ivopts.c (get_scaled_computation_cost_at):
1634 Use gimple_bb (at) instead of at->bb.
1635
1636 2016-11-24 Bernd Schmidt <bschmidt@redhat.com>
1637
1638 * common.opt (flimit-function-alignment): New.
1639 * doc/invoke.texi (-flimit-function-alignment): Document.
1640 * emit-rtl.h (struct rtl_data): Add max_insn_address field.
1641 * final.c (shorten_branches): Set it.
1642 * varasm.c (assemble_start_function): Limit alignment if
1643 requested.
1644
1645 2016-11-24 Richard Biener <rguenther@suse.de>
1646
1647 PR tree-optimization/71595
1648 * cfgloopmanip.h (remove_path): Add irred_invalidated and
1649 loop_closed_ssa_invalidated parameters, defaulted to NULL.
1650 * cfgloopmanip.c (remove_path): Likewise, pass them along to
1651 called functions. Only fix irred flags if the caller didn't
1652 request state.
1653 * tree-ssa-loop-ivcanon.c (unloop_loops): Use add_bb_to_loop.
1654 (unloop_loops): Pass irred_invalidated and loop_closed_ssa_invalidated
1655 to remove_path.
1656
1657 2016-11-24 Bernd Schmidt <bschmidt@redhat.com>
1658
1659 PR rtl-optimization/78120
1660 * ifcvt.c (noce_conversion_profitable_p): Check original cost in all
1661 cases, and additionally test against max_seq_cost for speed
1662 optimization.
1663 (noce_process_if_block): Compute an estimate for the original cost when
1664 optimizing for speed, using the minimum of then and else block costs.
1665
1666 PR rtl-optimization/78120
1667 * rtlanal.c (insn_rtx_cost): Use set_rtx_cost.
1668
1669 PR rtl-optimization/78120
1670 * config/i386/i386.c (ix86_rtx_costs): Fully handle SETs.
1671
1672 2016-11-24 Bin Cheng <bin.cheng@arm.com>
1673
1674 * match.pd: Refine type conversion in result expr for below pattern:
1675 (cond (cmp (convert1? x) c1) (convert2? x) c2) -> (minmax (x c)).
1676
1677 2016-11-24 Eric Botcazou <ebotcazou@adacore.com>
1678
1679 PR middle-end/78429
1680 * tree.h (wi::fits_to_boolean_p): New predicate.
1681 (wi::fits_to_tree_p): Use it for boolean types.
1682 * tree.c (int_fits_type_p): Likewise.
1683
1684 2016-11-24 Martin Liska <mliska@suse.cz>
1685
1686 * print-tree.c (struct bucket): Remove.
1687 (print_node): Add new argument which drives whether a tree node
1688 is printed briefly or not.
1689 (debug_tree): Replace a custom hash table with hash_set<T>.
1690 * print-tree.h (print_node): Add the argument.
1691
1692 2016-11-24 Chung-Lin Tang <cltang@codesourcery.com>
1693
1694 * config/nios2/nios2.c (nios2_init_libfuncs): Add ATTRIBUTE_UNUSED.
1695
1696 2016-11-23 Peter Bergner <bergner@vnet.ibm.com>
1697
1698 PR target/78458
1699 * config/rs6000/rs6000.h (HARD_REGNO_CALLER_SAVE_MODE): Return MODE
1700 if it is at least NREGS wide.
1701
1702 2016-11-23 Joseph Myers <joseph@codesourcery.com>
1703
1704 * config/rs6000/rs6000.c (rs6000_legitimate_offset_address_p): For
1705 TARGET_E500_DOUBLE. handle TDmode, TImode and PTImode the same as
1706 TFmode, IFmode and KFmode.
1707
1708 2016-11-23 Joseph Myers <joseph@codesourcery.com>
1709
1710 * config/rs6000/spe.md (*frob_<SPE64:mode>_ti_8): New insn
1711 pattern.
1712
1713 2016-11-23 Segher Boessenkool <segher@kernel.crashing.org>
1714
1715 * combine.c (change_zero_ext): Only change the mode of a hard register
1716 destination if can_change_dest_mode holds for that.
1717
1718 2016-11-23 Jeff Law <law@redhat.com>
1719
1720 * varasm.c (assemble_name): Increase buffer size for name.
1721
1722 * config/spu/spu.md (floatunsdidf2): Remove unused local variable.
1723
1724 2016-11-23 Jakub Kicinski <jakub.kicinski@netronome.com>
1725
1726 * doc/extend.texi: Constify first argument to __builtin_object_size.
1727
1728 2016-11-23 Bernd Edlinger <bernd.edlinger@hotmail.de>
1729
1730 * opth-gen.awk: Use unsigned shifts for bit masks. Allow all bits
1731 to be used. Add brackets around macro argument.
1732
1733 2016-11-23 Uros Bizjak <ubizjak@gmail.com>
1734
1735 * config/i386/i386.md (*<any_or:code>hi_1): Fix operand 2 constraints.
1736
1737 2016-11-23 Jakub Jelinek <jakub@redhat.com>
1738
1739 PR sanitizer/69278
1740 * opts.c (parse_sanitizer_options): For -fsanitize=undefined,
1741 restore enabling also SANITIZE_UNREACHABLE and SANITIZE_RETURN.
1742
1743 2016-11-23 Jakub Jelinek <jakub@redhat.com>
1744
1745 PR middle-end/69183
1746 * omp-low.c (build_outer_var_ref): Change lastprivate argument
1747 to code, pass it recursively, adjust uses. For OMP_CLAUSE_PRIVATE
1748 on worksharing constructs, treat it like clauses on simd construct.
1749 Formatting fix.
1750 (lower_rec_input_clauses): For OMP_CLAUSE_PRIVATE_OUTER_REF pass
1751 OMP_CLAUSE_PRIVATE as last argument to build_outer_var_ref.
1752 (lower_lastprivate_clauses): Pass OMP_CLAUSE_LASTPRIVATE instead
1753 of true as last argument to build_outer_var_ref.
1754
1755 2016-11-23 Uros Bizjak <ubizjak@gmail.com>
1756
1757 * config/i386/i386.md (*movqi_internal): Calculate mode
1758 attribute of alternatives 7,8,9 depending on TARGET_AVX512DQ.
1759 <TYPE_MSKMOV>: Emit kmovw for MODE_HI insn mode attribute.
1760 (*k<logic><mode>): Calculate mode attribute depending on
1761 TARGET_AVX512DQ. Emit k<logic>w for MODE_HI insn mode attribute.
1762 (*andqi_1): Calculate mode attribute of alternative 3 depending
1763 on TARGET_AVX512DQ. Emit kandw for MODE_HI insn mode attribute.
1764 (kandn<mode>): Calculate mode attribute of alternative 2 depending
1765 on TARGET_AVX512DQ. Emit kandnw for MODE_HI insn mode attribute.
1766 (kxnor<mode>): Merge insn patterns using SWI1248_AVX512BW mode
1767 iterator. Calculate mode attribute of alternative 1 depending
1768 on TARGET_AVX512DQ. Emit kxnorw for MODE_HI insn mode attribute.
1769 (*one_cmplqi2_1): Calculate mode attribute of alternative 2 depending
1770 on TARGET_AVX512DQ. Emit knotw for MODE_HI insn mode attribute.
1771
1772 2016-11-23 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
1773
1774 PR middle-end/78153
1775 * gimple-fold.c (fold_stmt_1): Handle case for GIMPLE_RETURN.
1776 * tree-vrp.c (extract_range_basic): Handle case for
1777 CFN_BUILT_IN_STRLEN.
1778
1779 2016-11-23 Jeff Law <law@redhat.com>
1780
1781 * config/mcore/mcore.c (emit_new_cond_insn): Fix prototype.
1782
1783 * config/iq2000/iq2000.c (iq2000_rtx_costs): Avoid multiplication
1784 in boolean context warning.
1785
1786 * config/ia64/ia64.c (ia64_emit_insn_before): Fix prototype.
1787
1788 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
1789
1790 PR target/63250
1791 * config/arm/arm-builtins.c (arm_simd_floatHF_type_node): Rename to...
1792 (arm_fp16_type_node): ...This, make visibile.
1793 (arm_simd_builtin_std_type): Rename arm_simd_floatHF_type_node to
1794 arm_fp16_type_node.
1795 (arm_init_simd_builtin_types): Likewise.
1796 (arm_init_fp16_builtins): Likewise.
1797 * config/arm/arm.c (arm_excess_precision): New.
1798 (arm_floatn_mode): Likewise.
1799 (TARGET_C_EXCESS_PRECISION): Likewise.
1800 (TARGET_FLOATN_MODE): Likewise.
1801 (arm_promoted_type): Only promote arm_fp16_type_node.
1802 * config/arm/arm.h (arm_fp16_type_node): Declare.
1803
1804 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
1805
1806 * config/arm/arm.c (arm_convert_to_type): Delete.
1807 (TARGET_CONVERT_TO_TYPE): Delete.
1808 (arm_init_libfuncs): Enable trunc_optab from DFmode to HFmode.
1809 (arm_libcall_uses_aapcs_base): Add trunc_optab from DF- to HFmode.
1810 * config/arm/arm.h (TARGET_FP16_TO_DOUBLE): New.
1811 * config/arm/arm.md (truncdfhf2): Only convert through SFmode if we
1812 are in fast math mode, and have no single step hardware instruction.
1813 (extendhfdf2): Only expand through SFmode if we don't have a
1814 single-step hardware instruction.
1815 * config/arm/vfp.md (*truncdfhf2): New.
1816 (extendhfdf2): Likewise.
1817
1818 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
1819
1820 * targhooks.c (default_floatn_mode): Enable _Float16 if a target
1821 provides HFmode.
1822
1823 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
1824
1825 * config/s390/s390.h (TARGET_FLT_EVAL_METHOD): Delete.
1826 * config/m68k/m68k.h (TARGET_FLT_EVAL_METHOD): Delete.
1827 * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Delete.
1828 * defaults.h (TARGET_FLT_EVAL_METHOD): Delete.
1829 * doc/tm.texi.in (TARGET_FLT_EVAL_METHOD): Delete.
1830 * doc/tm.texi: Regenerate.
1831 * system.h (TARGET_FLT_EVAL_METHOD): Poison.
1832
1833 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
1834
1835 * toplev.c (init_excess_precision): Delete most logic.
1836 * tree.c (excess_precision_type): Rewrite to use
1837 TARGET_EXCESS_PRECISION.
1838 * doc/invoke.texi (-fexcess-precision): Document behaviour in a
1839 more generic fashion.
1840 * ginclude/float.h: Wrap definition of FLT_EVAL_METHOD in
1841 __STDC_WANT_IEC_60559_TYPES_EXT__.
1842
1843 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
1844
1845 * common.opt (fpermitted-flt-eval-methods): New.
1846 * doc/invoke.texi (-fpermitted-flt-eval-methods): Document it.
1847 * flag_types.h (permitted_flt_eval_methods): New.
1848
1849 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
1850
1851 * config/m68k/m68k.c (m68k_excess_precision): New.
1852 (TARGET_C_EXCESS_PRECISION): Define.
1853
1854 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
1855
1856 * config/s390/s390.c (s390_excess_precision): New.
1857 (TARGET_C_EXCESS_PRECISION): Define.
1858
1859 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
1860
1861 * config/i386/i386.c (ix86_excess_precision): New.
1862 (TARGET_C_EXCESS_PRECISION): Define.
1863
1864 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
1865
1866 * target.def (excess_precision): New hook.
1867 * target.h (flt_eval_method): New.
1868 (excess_precision_type): Likewise.
1869 * targhooks.c (default_excess_precision): New.
1870 * targhooks.h (default_excess_precision): New.
1871 * doc/tm.texi.in (TARGET_C_EXCESS_PRECISION): New.
1872 * doc/tm.texi: Regenerate.
1873
1874 2016-11-23 Martin Sebor <msebor@redhat.com>
1875
1876 PR middle-end/78461
1877 * gimple-ssa-sprintf.c (format_string): Correct the maxima and
1878 set the minimum number of bytes for an unknown string to zero.
1879
1880 2016-11-23 Martin Jambor <mjambor@suse.cz>
1881 Martin Liska <mliska@suse.cz>
1882
1883 * hsa-builtins.def: New file.
1884 * Makefile.in (BUILTINS_DEF): Add hsa-builtins.def dependency.
1885 * builtins.def: Include hsa-builtins.def.
1886 (DEF_HSA_BUILTIN): New macro.
1887 * dumpfile.h (OPTGROUP_OPENMP): Define.
1888 * dumpfile.c (optgroup_options): Added OPTGROUP_OPENMP.
1889 * gimple.h (gf_mask): Added elements GF_OMP_FOR_GRID_INTRA_GROUP and
1890 GF_OMP_FOR_GRID_GROUP_ITER.
1891 (gimple_omp_for_grid_phony): Added checking assert.
1892 (gimple_omp_for_set_grid_phony): Likewise.
1893 (gimple_omp_for_grid_intra_group): New function.
1894 (gimple_omp_for_set_grid_intra_group): Likewise.
1895 (gimple_omp_for_grid_group_iter): Likewise.
1896 (gimple_omp_for_set_grid_group_iter): Likewise.
1897 * omp-low.c (check_omp_nesting_restrictions): Allow GRID loop where
1898 previosuly only distribute loop was permitted.
1899 (lower_lastprivate_clauses): Allow non tcc_comparison predicates.
1900 (grid_get_kernel_launch_attributes): Support multiple HSA grid
1901 dimensions.
1902 (grid_expand_omp_for_loop): Likewise and also support standalone
1903 distribute constructs. New parameter INTRA_GROUP, updated both users.
1904 (grid_expand_target_grid_body): Support standalone distribute
1905 constructs.
1906 (pass_data_expand_omp): Changed optinfo_flags to OPTGROUP_OPENMP.
1907 (pass_data_expand_omp_ssa): Likewise.
1908 (pass_data_omp_device_lower): Likewsie.
1909 (pass_data_lower_omp): Likewise.
1910 (pass_data_diagnose_omp_blocks): Likewise.
1911 (pass_data_oacc_device_lower): Likewise.
1912 (pass_data_omp_target_link): Likewise.
1913 (grid_lastprivate_predicate): New function.
1914 (lower_omp_for_lastprivate): Call grid_lastprivate_predicate for
1915 gridified loops.
1916 (lower_omp_for): Support standalone distribute constructs.
1917 (grid_prop): New type.
1918 (grid_safe_assignment_p): Check for assignments to group_sizes, new
1919 parameter GRID.
1920 (grid_seq_only_contains_local_assignments): New parameter GRID, pass
1921 it to callee.
1922 (grid_find_single_omp_among_assignments_1): Likewise, improve missed
1923 optimization info messages.
1924 (grid_find_single_omp_among_assignments): Likewise.
1925 (grid_find_ungridifiable_statement): Do not bail out for SIMDs.
1926 (grid_parallel_clauses_gridifiable): New function.
1927 (grid_inner_loop_gridifiable_p): Likewise.
1928 (grid_dist_follows_simple_pattern): Likewise.
1929 (grid_gfor_follows_tiling_pattern): Likewise.
1930 (grid_call_permissible_in_distribute_p): Likewise.
1931 (grid_handle_call_in_distribute): Likewise.
1932 (grid_dist_follows_tiling_pattern): Likewise.
1933 (grid_target_follows_gridifiable_pattern): Support standalone
1934 distribute constructs.
1935 (grid_var_segment): New enum.
1936 (grid_mark_variable_segment): New function.
1937 (grid_copy_leading_local_assignments): Call grid_mark_variable_segment
1938 if a new argument says so.
1939 (grid_process_grid_body): New function.
1940 (grid_eliminate_combined_simd_part): Likewise.
1941 (grid_mark_tiling_loops): Likewise.
1942 (grid_mark_tiling_parallels_and_loops): Likewise.
1943 (grid_process_kernel_body_copy): Support standalone distribute
1944 constructs.
1945 (grid_attempt_target_gridification): New grid variable holding overall
1946 gridification state. Support standalone distribute constructs and
1947 collapse clauses.
1948 * doc/optinfo.texi (Optimization groups): Document OPTGROUP_OPENMP.
1949 * hsa.h (hsa_bb): Add method method append_phi.
1950 (hsa_insn_br): Renamed to hsa_insn_cbr, renamed all
1951 occurences in all files too.
1952 (hsa_insn_br): New class, now the ancestor of hsa_incn_cbr.
1953 (is_a_helper <hsa_insn_br *>::test): New function.
1954 (is_a_helper <hsa_insn_cbr *>::test): Adjust to only cover conditional
1955 branch instructions.
1956 (hsa_insn_signal): Make a direct descendant of
1957 hsa_insn_basic. Add memorder constructor parameter and
1958 m_memory_order and m_signalop member variables.
1959 (hsa_insn_queue): Changed constructor parameters to common form.
1960 Added m_segment and m_memory_order member variables.
1961 (hsa_summary_t): Add private member function
1962 process_gpu_implementation_attributes.
1963 (hsa_function_summary): Rename m_binded_function to
1964 m_bound_function.
1965 (hsa_insn_basic_p): Remove typedef.
1966 (hsa_op_with_type): Change hsa_insn_basic_p into plain pointers.
1967 (hsa_op_reg_p): Remove typedef.
1968 (hsa_function_representation): Change hsa_op_reg_p into plain
1969 pointers.
1970 (hsa_insn_phi): Removed new and delete operators.
1971 (hsa_insn_br): Likewise.
1972 (hsa_insn_cbr): Likewise.
1973 (hsa_insn_sbr): Likewise.
1974 (hsa_insn_cmp): Likewise.
1975 (hsa_insn_mem): Likewise.
1976 (hsa_insn_atomic): Likewise.
1977 (hsa_insn_signal): Likewise.
1978 (hsa_insn_seg): Likewise.
1979 (hsa_insn_call): Likewise.
1980 (hsa_insn_arg_block): Likewise.
1981 (hsa_insn_comment): Likewise.
1982 (hsa_insn_srctype): Likewise.
1983 (hsa_insn_packed): Likewise.
1984 (hsa_insn_cvt): Likewise.
1985 (hsa_insn_alloca): Likewise.
1986 * hsa.c (hsa_destroy_insn): Also handle instances of hsa_insn_br.
1987 (process_gpu_implementation_attributes): New function.
1988 (link_functions): Move some functionality into it. Adjust after
1989 renaming m_binded_functions to m_bound_functions.
1990 (hsa_insn_basic::op_output_p): Add BRIG_OPCODE_DEBUGTRAP
1991 to the list of instructions with no output registers.
1992 (get_in_type): Return this if it is a register of
1993 matching size.
1994 (hsa_get_declaration_name): Moved to...
1995 * hsa-gen.c (hsa_get_declaration_name): ...here. Allocate
1996 temporary string on an obstack instead from ggc.
1997 (query_hsa_grid): Renamed to query_hsa_grid_dim, reimplemented, cut
1998 down to two overloads.
1999 (hsa_allocp_operand_address): Removed.
2000 (hsa_allocp_operand_immed): Likewise.
2001 (hsa_allocp_operand_reg): Likewise.
2002 (hsa_allocp_operand_code_list): Likewise.
2003 (hsa_allocp_operand_operand_list): Likewise.
2004 (hsa_allocp_inst_basic): Likewise.
2005 (hsa_allocp_inst_phi): Likewise.
2006 (hsa_allocp_inst_mem): Likewise.
2007 (hsa_allocp_inst_atomic): Likewise.
2008 (hsa_allocp_inst_signal): Likewise.
2009 (hsa_allocp_inst_seg): Likewise.
2010 (hsa_allocp_inst_cmp): Likewise.
2011 (hsa_allocp_inst_br): Likewise.
2012 (hsa_allocp_inst_sbr): Likewise.
2013 (hsa_allocp_inst_call): Likewise.
2014 (hsa_allocp_inst_arg_block): Likewise.
2015 (hsa_allocp_inst_comment): Likewise.
2016 (hsa_allocp_inst_queue): Likewise.
2017 (hsa_allocp_inst_srctype): Likewise.
2018 (hsa_allocp_inst_packed): Likewise.
2019 (hsa_allocp_inst_cvt): Likewise.
2020 (hsa_allocp_inst_alloca): Likewise.
2021 (hsa_allocp_bb): Likewise.
2022 (hsa_obstack): New.
2023 (hsa_init_data_for_cfun): Initialize obstack.
2024 (hsa_deinit_data_for_cfun): Release memory of the obstack.
2025 (hsa_op_immed::operator new): Use obstack instead of object_allocator.
2026 (hsa_op_reg::operator new): Likewise.
2027 (hsa_op_address::operator new): Likewise.
2028 (hsa_op_code_list::operator new): Likewise.
2029 (hsa_op_operand_list::operator new): Likewise.
2030 (hsa_insn_basic::operator new): Likewise.
2031 (hsa_insn_phi::operator new): Likewise.
2032 (hsa_insn_br::operator new): Likewise.
2033 (hsa_insn_sbr::operator new): Likewise.
2034 (hsa_insn_cmp::operator new): Likewise.
2035 (hsa_insn_mem::operator new): Likewise.
2036 (hsa_insn_atomic::operator new): Likewise.
2037 (hsa_insn_signal::operator new): Likewise.
2038 (hsa_insn_seg::operator new): Likewise.
2039 (hsa_insn_call::operator new): Likewise.
2040 (hsa_insn_arg_block::operator new): Likewise.
2041 (hsa_insn_comment::operator new): Likewise.
2042 (hsa_insn_srctype::operator new): Likewise.
2043 (hsa_insn_packed::operator new): Likewise.
2044 (hsa_insn_cvt::operator new): Likewise.
2045 (hsa_insn_alloca::operator new): Likewise.
2046 (hsa_init_new_bb): Likewise.
2047 (hsa_bb::append_phi): New function.
2048 (gen_hsa_phi_from_gimple_phi): Use it.
2049 (get_symbol_for_decl): Fix dinstinguishing between
2050 global and local functions. Put local variables into a segment
2051 according to their attribute or static flag, if there is one.
2052 (hsa_insn_br::hsa_insn_br): New.
2053 (hsa_insn_br::operator new): Likewise.
2054 (hsa_insn_cbr::hsa_insn_cbr): Set width via ancestor constructor.
2055 (query_hsa_grid_nodim): New function.
2056 (multiply_grid_dim_characteristics): Likewise.
2057 (gen_get_num_threads): Likewise.
2058 (gen_get_num_teams): Reimplemented.
2059 (gen_get_team_num): Likewise.
2060 (gen_hsa_insns_for_known_library_call): Updated calls to the above
2061 helper functions.
2062 (get_memory_order_name): Removed.
2063 (get_memory_order): Likewise.
2064 (hsa_memorder_from_tree): New function.
2065 (gen_hsa_ternary_atomic_for_builtin): Renamed to
2066 gen_hsa_atomic_for_builtin, can also create signals.
2067 (gen_hsa_insns_for_call): Handle many new builtins. Adjust to use
2068 hsa_memory_order_from_tree and gen_hsa_atomic_for_builtin.
2069 (hsa_insn_atomic): Fix function comment.
2070 (hsa_insn_signal::hsa_insn_signal): Fix comment. Update call to
2071 ancestor constructor and initialization of new member variables.
2072 (hsa_insn_queue::hsa_insn_queue): Added initialization of new
2073 member variables.
2074 (hsa_get_host_function): Handle functions with no bound CPU
2075 implementation. Fix binded to bound.
2076 (get_brig_function_name): Likewise.
2077 (HSA_SORRY_ATV): Remove semicolon after macro.
2078 (HSA_SORRY_AT): Likewise.
2079 (omp_simple_builtin::generate): Add missing semicolons.
2080 (hsa_insn_phi::operator new): Removed.
2081 (hsa_insn_br::operator new): Likewise.
2082 (hsa_insn_cbr::operator new): Likewise.
2083 (hsa_insn_sbr::operator new): Likewise.
2084 (hsa_insn_cmp::operator new): Likewise.
2085 (hsa_insn_mem::operator new): Likewise.
2086 (hsa_insn_atomic::operator new): Likewise.
2087 (hsa_insn_signal::operator new): Likewise.
2088 (hsa_insn_seg::operator new): Likewise.
2089 (hsa_insn_call::operator new): Likewise.
2090 (hsa_insn_arg_block::operator new): Likewise.
2091 (hsa_insn_comment::operator new): Likewise.
2092 (hsa_insn_srctype::operator new): Likewise.
2093 (hsa_insn_packed::operator new): Likewise.
2094 (hsa_insn_cvt::operator new): Likewise.
2095 (hsa_insn_alloca::operator new): Likewise.
2096 (get_symbol_for_decl): Accept CONST_DECLs, put them to
2097 readonly segment.
2098 (gen_hsa_addr): Also process CONST_DECLs.
2099 (gen_hsa_addr_insns): Process CONST_DECLs by creating private
2100 copies.
2101 (gen_hsa_unary_operation): Make sure the function does
2102 not use bittype source type for firstbit and lastbit operations.
2103 (gen_hsa_popcount_to_dest): Make sure the function uses a bittype
2104 source type.
2105 * hsa-brig.c (emit_insn_operands): Cope with zero operands in an
2106 instruction.
2107 (emit_branch_insn): Renamed to emit_cond_branch_insn.
2108 Emit the width stored in the class.
2109 (emit_generic_branch_insn): New function.
2110 (emit_insn): Call emit_generic_branch_insn.
2111 (emit_signal_insn): Remove obsolete comment. Update
2112 member variable name, pick a type according to profile.
2113 (emit_alloca_insn): Remove obsolete comment.
2114 (emit_atomic_insn): Likewise.
2115 (emit_queue_insn): Get segment and memory order from the IR object.
2116 (hsa_brig_section): Make allocate_new_chunk, chunks
2117 and cur_chunk provate, add a default NULL parameter to add method.
2118 (hsa_brig_section::add): Added a new parameter, store pointer to
2119 output data there if it is non-NULL.
2120 (emit_function_directives): Use this new parameter instead of
2121 calculating the pointer itself, fix function comment.
2122 (hsa_brig_emit_function): Add forgotten endian conversion.
2123 (hsa_output_kernels): Remove unnecessary building of
2124 kernel_dependencies_vector_type.
2125 (emit_immediate_operand): Declare.
2126 (emit_directive_variable): Also emit initializers of CONST_DECLs.
2127 (gen_hsa_insn_for_internal_fn_call): Also handle IFN_RSQRT.
2128 (verify_function_arguments): Properly detect variadic
2129 arguments.
2130 * hsa-dump.c (hsa_width_specifier_name): New function.
2131 (dump_hsa_insn_1): Dump generic branch instructions, update signal
2132 member variable name. Special dumping for queue objects.
2133 * ipa-hsa.c (process_hsa_functions): Adjust after renaming
2134 m_binded_functions to m_bound_functions. Copy externally visible flag
2135 to the node.
2136 (ipa_hsa_write_summary): Likewise.
2137 (ipa_hsa_read_section): Likewise.
2138
2139 2016-11-23 Richard Biener <rguenther@suse.de>
2140
2141 PR tree-optimization/78396
2142 * tree-vectorizer.c (vectorize_loops): If an innermost loop didn't
2143 vectorize try vectorizing an if-converted body using BB vectorization.
2144
2145 2016-11-23 Richard Sandiford <richard.sandiford@arm.com>
2146 Alan Hayward <alan.hayward@arm.com>
2147 David Sherwood <david.sherwood@arm.com>
2148
2149 * rtlanal.c (subreg_get_info): Use more local variables.
2150 Remark that for HARD_REGNO_NREGS_HAS_PADDING, each scalar unit
2151 occupies at least one register. Assume that full hard registers
2152 have consistent endianness. Share previously-duplicated if block.
2153 Rework the main handling so that it operates on independently-
2154 addressable YMODE-sized blocks. Use subreg_size_lowpart_offset
2155 to check lowpart offsets, without trying to find an equivalent
2156 integer mode first. Handle WORDS_BIG_ENDIAN != REG_WORDS_BIG_ENDIAN
2157 as a final register-endianness correction.
2158
2159 2016-11-23 Segher Boessenkool <segher@kernel.crashing.org>
2160
2161 PR target/77881
2162 PR bootstrap/78390
2163 PR target/78438
2164 PR bootstrap/78477
2165 * combine.c (make_compound_operation_int): Do not convert a subreg of
2166 a non-constant logical shift right to a zero_extract. Handle the case
2167 where some zero bits have been shifted into the range covered by that
2168 subreg.
2169
2170 2016-11-23 Richard Sandiford <richard.sandiford@arm.com>
2171 Alan Hayward <alan.hayward@arm.com>
2172 David Sherwood <david.sherwood@arm.com>
2173
2174 * rtl.h (subreg_size_offset_from_lsb): Declare.
2175 (subreg_offset_from_lsb): New function.
2176 (subreg_size_lowpart_offset): Declare.
2177 (subreg_lowpart_offset): Turn into an inline function.
2178 (subreg_size_highpart_offset): Declare.
2179 (subreg_highpart_offset): Turn into an inline function.
2180 * emit-rtl.c (subreg_size_lowpart_offset): New function.
2181 (subreg_size_highpart_offset): Likewise
2182 * rtlanal.c (subreg_size_offset_from_lsb): Likewise.
2183
2184 2016-11-23 Richard Biener <rguenther@suse.de>
2185
2186 PR tree-optimization/78482
2187 * tree-cfgcleanup.c: Include tree-ssa-loop-niter.h.
2188 (remove_forwarder_block_with_phi): When merging with a loop
2189 header creates a new latch reset number of iteration information
2190 of the loop.
2191
2192 2016-11-23 Eric Botcazou <ebotcazou@adacore.com>
2193
2194 * config/sparc/sparc.md (*ashrsi3_extend): Rename to...
2195 (*ashrsi3_extend0): ...this. Accept constant integers.
2196 (*ashrsi3_extend2): Rename to...
2197 (*ashrsi3_extend1): ...this.
2198 (*ashrsi3_extend2): New pattern.
2199 (*lshrsi3_extend1): Accept constant integers.
2200 (*lshrsi3_extend2): Fix condition on operand 2.
2201
2202 2016-11-23 Martin Liska <mliska@suse.cz>
2203
2204 * config/i386/i386.c: Initialize function pointer to NULL.
2205
2206 2016-11-23 Bin Cheng <bin.cheng@arm.com>
2207
2208 * fold-const.c (fold_cond_expr_with_comparison): Move simplification
2209 for A == C1 ? A : C2 to below.
2210 * match.pd: Move from above to here:
2211 (cond (eq (convert1? x) c1) (convert2? x) c2)
2212 -> (cond (eq x c1) c1 c2).
2213
2214 2016-11-23 Bin Cheng <bin.cheng@arm.com>
2215
2216 * fold-const.c (fold_cond_expr_with_comparison): Move simplification
2217 for A cmp C1 ? A : C2 to below, also simplify remaining code.
2218 * match.pd: Move and extend simplification from above to here:
2219 (cond (cmp (convert1? x) c1) (convert2? x) c2) -> (minmax (x c)).
2220 * tree-if-conv.c (ifcvt_follow_ssa_use_edges): New func.
2221 (predicate_scalar_phi): Call fold_stmt using the new valueize func.
2222
2223 2016-11-23 Martin Liska <mliska@suse.cz>
2224 Martin Jambor <mjambor@suse.cz>
2225
2226 * doc/install.texi: Remove entry about --with-hsa-kmt-lib.
2227
2228 2016-11-23 Aldy Hernandez <aldyh@redhat.com>
2229
2230 PR target/78213
2231 * opts.c (finish_options): Set -fsyntax-only if running self tests.
2232
2233 2016-11-23 Richard Biener <rguenther@suse.de>
2234
2235 PR middle-end/71762
2236 * match.pd ((~X & Y) -> X < Y, (X & ~Y) -> Y < X,
2237 (~X | Y) -> X <= Y, (X | ~Y) -> Y <= X): Remove.
2238
2239 2016-11-23 Richard Biener <rguenther@suse.de>
2240
2241 PR lto/78472
2242 * tree.c (gimple_canonical_types_compatible_p): Ignore zero-sized
2243 fields.
2244
2245 2016-11-23 Richard Biener <rguenther@suse.de>
2246 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.rog>
2247
2248 PR tree-optimization/78154
2249 * tree-vrp.c (gimple_stmt_nonzero_warnv_p): Return true if function
2250 returns it's argument and the argument is nonnull.
2251 * builtin-attrs.def: Define ATTR_RETURNS_NONNULL,
2252 ATT_RETNONNULL_NOTHROW_LEAF.
2253 * builtins.def (BUILT_IN_MEMPCPY): Change attribute to
2254 ATTR_RETNONNULL_NOTHROW_LEAF.
2255 (BUILT_IN_STPCPY): Likewise.
2256 (BUILT_IN_STPNCPY): Likewise.
2257 (BUILT_IN_MEMPCPY_CHK): Likewise.
2258 (BUILT_IN_STPCPY_CHK): Likewise.
2259 (BUILT_IN_STPNCPY_CHK): Likewise.
2260 (BUILT_IN_STRCAT): Change attribute to ATTR_RET1_NOTHROW_NONNULL_LEAF.
2261 (BUILT_IN_STRNCAT): Likewise.
2262 (BUILT_IN_STRNCPY): Likewise.
2263 (BUILT_IN_MEMSET_CHK): Likewise.
2264 (BUILT_IN_STRCAT_CHK): Likewise.
2265 (BUILT_IN_STRCPY_CHK): Likewise.
2266 (BUILT_IN_STRNCAT_CHK): Likewise.
2267 (BUILT_IN_STRNCPY_CHK): Likewise.
2268
2269 2016-11-23 Naveen H.S <Naveen.Hurugalawadi@caviumnetworks.com>
2270
2271 * fold-const.c (tree_expr_nonzero_p) : Make non-static.
2272 * fold-const.h (tree_expr_nonzero_p) : Declare.
2273 * match.pd (cmp (mult:c @0 @1) (mult:c @2 @1) : New Pattern.
2274
2275 2016-11-23 Paolo Bonzini <bonzini@gnu.org>
2276
2277 * system.h (HAVE_DESIGNATED_INITIALIZERS,
2278 HAVE_DESIGNATED_UNION_INITIALIZERS): Do not use
2279 "defined" in macros.
2280 * doc/cpp.texi (Defined): Mention -Wexpansion-to-defined.
2281 * doc/cppopts.texi (Invocation): Document -Wexpansion-to-defined.
2282 * doc/invoke.texi (Warning Options): Document -Wexpansion-to-defined.
2283
2284 2016-11-23 Georg-Johann Lay <avr@gjlay.de>
2285
2286 PR target/60300
2287 * config/avr/constraints.md (Csp): Widen range to [-11..6].
2288 * config/avr/avr.c (avr_prologue_setup_frame): Limit number
2289 of RCALLs in prologue to 3.
2290
2291 2016-11-22 Michael Collison <michael.collison@arm.com>
2292
2293 * config/aarch64/aarch64-protos.h
2294 (aarch64_and_split_imm1, aarch64_and_split_imm2)
2295 (aarch64_and_bitmask_imm): New prototypes
2296 * config/aarch64/aarch64.c (aarch64_and_split_imm1):
2297 New overloaded function to create bit mask covering the
2298 lowest to highest bits set.
2299 (aarch64_and_split_imm2): New overloaded functions to create bit
2300 mask of zeros between first and last bit set.
2301 (aarch64_and_bitmask_imm): New function to determine if a integer
2302 is a valid two instruction "and" operation.
2303 * config/aarch64/aarch64.md:(and<mode>3): New define_insn and _split
2304 allowing wider range of constants with "and" operations.
2305 * (ior<mode>3, xor<mode>3): Use new LOGICAL2 iterator to prevent
2306 "and" operator from matching restricted constant range used for
2307 ior and xor operators.
2308 * config/aarch64/constraints.md (UsO constraint): New SImode constraint
2309 for constants in "and" operantions.
2310 (UsP constraint): New DImode constraint for constants
2311 in "and" operations.
2312 * config/aarch64/iterators.md (lconst2): New mode iterator.
2313 (LOGICAL2): New code iterator.
2314 * config/aarch64/predicates.md (aarch64_logical_and_immediate): New
2315 predicate.
2316 (aarch64_logical_and_operand): New predicate allowing extended
2317 constants for "and" operations.
2318
2319 2016-11-22 Walter Lee <walt@tilera.com>
2320
2321 * config/tilegx/tilegx.md (trap): New pattern.
2322 * config/tilepro/tilepro.md (trap): Likewise.
2323
2324 2016-11-22 Walter Lee <walt@tilera.com>
2325
2326 * config/tilegx/tilegx.md (*zero_extract): Use
2327 define_insn_and_split instead of define_insn; Handle pos + size >
2328 64.
2329 (*sign_extract): Likewise.
2330
2331 2016-11-22 Marek Polacek <polacek@redhat.com>
2332
2333 PR tree-optimization/78455
2334 * tree-ssa-uninit.c (can_chain_union_be_invalidated_p): Fix typo.
2335
2336 2016-11-22 Ian Lance Taylor <iant@golang.org>
2337
2338 PR go/78431
2339 PR go/78432
2340 * godump.c (go_format_type): Always pass alignment as 1 when
2341 calling go_append_padding at end of struct/union.
2342
2343 2016-11-22 Jakub Jelinek <jakub@redhat.com>
2344
2345 PR target/78451
2346 * config/i386/avx512bwintrin.h (_mm512_setzero_qi,
2347 _mm512_setzero_hi): Removed.
2348 (_mm512_maskz_mov_epi16, _mm512_maskz_loadu_epi16,
2349 _mm512_maskz_mov_epi8, _mm512_maskz_loadu_epi8,
2350 _mm512_maskz_broadcastb_epi8, _mm512_maskz_set1_epi8,
2351 _mm512_maskz_broadcastw_epi16, _mm512_maskz_set1_epi16,
2352 _mm512_mulhrs_epi16, _mm512_maskz_mulhrs_epi16, _mm512_mulhi_epi16,
2353 _mm512_maskz_mulhi_epi16, _mm512_mulhi_epu16,
2354 _mm512_maskz_mulhi_epu16, _mm512_maskz_mullo_epi16,
2355 _mm512_cvtepi8_epi16, _mm512_maskz_cvtepi8_epi16, _mm512_cvtepu8_epi16,
2356 _mm512_maskz_cvtepu8_epi16, _mm512_permutexvar_epi16,
2357 _mm512_maskz_permutexvar_epi16, _mm512_avg_epu8, _mm512_maskz_avg_epu8,
2358 _mm512_maskz_add_epi8, _mm512_maskz_sub_epi8, _mm512_avg_epu16,
2359 _mm512_maskz_avg_epu16, _mm512_subs_epi8, _mm512_maskz_subs_epi8,
2360 _mm512_subs_epu8, _mm512_maskz_subs_epu8, _mm512_adds_epi8,
2361 _mm512_maskz_adds_epi8, _mm512_adds_epu8, _mm512_maskz_adds_epu8,
2362 _mm512_maskz_sub_epi16, _mm512_subs_epi16, _mm512_maskz_subs_epi16,
2363 _mm512_subs_epu16, _mm512_maskz_subs_epu16, _mm512_maskz_add_epi16,
2364 _mm512_adds_epi16, _mm512_maskz_adds_epi16, _mm512_adds_epu16,
2365 _mm512_maskz_adds_epu16, _mm512_srl_epi16, _mm512_maskz_srl_epi16,
2366 _mm512_packs_epi16, _mm512_sll_epi16, _mm512_maskz_sll_epi16,
2367 _mm512_maddubs_epi16, _mm512_maskz_maddubs_epi16, _mm512_unpackhi_epi8,
2368 _mm512_maskz_unpackhi_epi8, _mm512_unpackhi_epi16,
2369 _mm512_maskz_unpackhi_epi16, _mm512_unpacklo_epi8,
2370 _mm512_maskz_unpacklo_epi8, _mm512_unpacklo_epi16,
2371 _mm512_maskz_unpacklo_epi16, _mm512_shuffle_epi8,
2372 _mm512_maskz_shuffle_epi8, _mm512_min_epu16, _mm512_maskz_min_epu16,
2373 _mm512_min_epi16, _mm512_maskz_min_epi16, _mm512_max_epu8,
2374 _mm512_maskz_max_epu8, _mm512_max_epi8, _mm512_maskz_max_epi8,
2375 _mm512_min_epu8, _mm512_maskz_min_epu8, _mm512_min_epi8,
2376 _mm512_maskz_min_epi8, _mm512_max_epi16, _mm512_maskz_max_epi16,
2377 _mm512_max_epu16, _mm512_maskz_max_epu16, _mm512_sra_epi16,
2378 _mm512_maskz_sra_epi16, _mm512_srav_epi16, _mm512_maskz_srav_epi16,
2379 _mm512_srlv_epi16, _mm512_maskz_srlv_epi16, _mm512_sllv_epi16,
2380 _mm512_maskz_sllv_epi16, _mm512_maskz_packs_epi16, _mm512_packus_epi16,
2381 _mm512_maskz_packus_epi16, _mm512_abs_epi8, _mm512_maskz_abs_epi8,
2382 _mm512_abs_epi16, _mm512_maskz_abs_epi16, _mm512_dbsad_epu8,
2383 _mm512_maskz_dbsad_epu8, _mm512_srli_epi16, _mm512_maskz_srli_epi16,
2384 _mm512_slli_epi16, _mm512_maskz_slli_epi16, _mm512_shufflehi_epi16,
2385 _mm512_maskz_shufflehi_epi16, _mm512_shufflelo_epi16,
2386 _mm512_maskz_shufflelo_epi16, _mm512_srai_epi16,
2387 _mm512_maskz_srai_epi16, _mm512_packs_epi32,
2388 _mm512_maskz_packs_epi32, _mm512_packus_epi32,
2389 _mm512_maskz_packus_epi32): Use _mm512_setzero_si512 instead of
2390 _mm512_setzero_qi or _mm512_setzero_hi.
2391 (_mm512_maskz_alignr_epi8, _mm512_dbsad_epu8,
2392 _mm512_maskz_dbsad_epu8): Formatting fixes.
2393 (_mm512_srli_epi16, _mm512_maskz_srli_epi16, _mm512_slli_epi16,
2394 _mm512_maskz_slli_epi16, _mm512_shufflehi_epi16,
2395 _mm512_maskz_shufflehi_epi16, _mm512_shufflelo_epi16,
2396 _mm512_maskz_shufflelo_epi16, _mm512_srai_epi16,
2397 _mm512_maskz_srai_epi16): Use _mm512_setzero_si512 instead of
2398 _mm512_setzero_qi or _mm512_setzero_hi.
2399
2400 2016-11-22 Nathan Sidwell <nathan@acm.org>
2401
2402 * gcc-ar.c (main): Fix indentation.
2403 * gcov-io.c (gcov_write_summary): Remove extraneous {...}
2404 * ggc-page.c (move_ptes_to_front): Fix formatting.
2405 * hsa-dump.c (dump_has_cfun): Fix indentation.
2406 * sel-sched-ir.h: Remove trailing blank lines.
2407
2408 2016-11-22 Jakub Jelinek <jakub@redhat.com>
2409 Alexander Monakov <amonakov@ispras.ru>
2410
2411 * internal-fn.c (expand_GOMP_USE_SIMT): New function.
2412 * tree.c (omp_clause_num_ops): OMP_CLAUSE__SIMT_ has 0 operands.
2413 (omp_clause_code_name): Add _simt_ name.
2414 (walk_tree_1): Handle OMP_CLAUSE__SIMT_.
2415 * tree-core.h (enum omp_clause_code): Add OMP_CLAUSE__SIMT_.
2416 * omp-low.c (scan_sharing_clauses): Handle OMP_CLAUSE__SIMT_.
2417 (scan_omp_simd): New function.
2418 (scan_omp_1_stmt): Use it in target regions if needed.
2419 (omp_max_vf): Don't max with omp_max_simt_vf.
2420 (lower_rec_simd_input_clauses): Use omp_max_simt_vf if
2421 OMP_CLAUSE__SIMT_ is present.
2422 (lower_rec_input_clauses): Compute maybe_simt from presence of
2423 OMP_CLAUSE__SIMT_.
2424 (lower_lastprivate_clauses): Likewise.
2425 (expand_omp_simd): Likewise. Remove explicit offloaded region check.
2426 (execute_omp_device_lower): Lower IFN_GOMP_USE_SIMT.
2427 * internal-fn.def (GOMP_USE_SIMT): New internal function.
2428 * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE__SIMT_.
2429
2430 2016-11-22 Alexander Monakov <amonakov@ispras.ru>
2431
2432 * internal-fn.c (expand_GOMP_SIMT_LANE): New.
2433 (expand_GOMP_SIMT_VF): New.
2434 (expand_GOMP_SIMT_LAST_LANE): New.
2435 (expand_GOMP_SIMT_ORDERED_PRED): New.
2436 (expand_GOMP_SIMT_VOTE_ANY): New.
2437 (expand_GOMP_SIMT_XCHG_BFLY): New.
2438 (expand_GOMP_SIMT_XCHG_IDX): New.
2439 * internal-fn.def (GOMP_SIMT_LANE): New.
2440 (GOMP_SIMT_VF): New.
2441 (GOMP_SIMT_LAST_LANE): New.
2442 (GOMP_SIMT_ORDERED_PRED): New.
2443 (GOMP_SIMT_VOTE_ANY): New.
2444 (GOMP_SIMT_XCHG_BFLY): New.
2445 (GOMP_SIMT_XCHG_IDX): New.
2446 * omp-low.c (omp_maybe_offloaded_ctx): New, outlined from...
2447 (create_omp_child_function): ...here. Set "omp target entrypoint"
2448 or "omp declare target" attribute based on is_gimple_omp_offloaded.
2449 (omp_max_simt_vf): New. Use it...
2450 (omp_max_vf): ...here.
2451 (lower_rec_input_clauses): Add reduction lowering for SIMT execution.
2452 (lower_lastprivate_clauses): Likewise, for "lastprivate" lowering.
2453 (lower_omp_ordered): Likewise, for "ordered" lowering.
2454 (expand_omp_simd): Add SIMT transforms.
2455 (pass_data_lower_omp): Add PROP_gimple_lomp_dev.
2456 (execute_omp_device_lower): New.
2457 (pass_data_omp_device_lower): New.
2458 (pass_omp_device_lower): New pass.
2459 (make_pass_omp_device_lower): New.
2460 * passes.def (pass_omp_device_lower): Position new pass.
2461 * tree-pass.h (PROP_gimple_lomp_dev): Define.
2462 (make_pass_omp_device_lower): Declare.
2463
2464 2016-11-22 Jakub Jelinek <jakub@redhat.com>
2465
2466 PR target/78451
2467 * config/i386/avx512vlintrin.h (_mm_setzero_di): Removed.
2468 (_mm_maskz_mov_epi64): Use _mm_setzero_si128 instead of
2469 _mm_setzero_di.
2470 (_mm_maskz_load_epi64): Likewise.
2471 (_mm_setzero_hi): Removed.
2472 (_mm_maskz_loadu_epi64): Use _mm_setzero_si128 instead of
2473 _mm_setzero_di.
2474 (_mm_abs_epi64, _mm_maskz_abs_epi64, _mm_maskz_srl_epi64,
2475 _mm_maskz_unpackhi_epi64, _mm_maskz_unpacklo_epi64,
2476 _mm_maskz_compress_epi64, _mm_srav_epi64, _mm_maskz_srav_epi64,
2477 _mm_maskz_sllv_epi64, _mm_maskz_srlv_epi64, _mm_rolv_epi64,
2478 _mm_maskz_rolv_epi64, _mm_rorv_epi64, _mm_maskz_rorv_epi64,
2479 _mm_min_epi64, _mm_max_epi64, _mm_max_epu64, _mm_min_epu64,
2480 _mm_lzcnt_epi64, _mm_maskz_lzcnt_epi64, _mm_conflict_epi64,
2481 _mm_maskz_conflict_epi64, _mm_sra_epi64, _mm_maskz_sra_epi64,
2482 _mm_maskz_sll_epi64, _mm_rol_epi64, _mm_maskz_rol_epi64,
2483 _mm_ror_epi64, _mm_maskz_ror_epi64, _mm_alignr_epi64,
2484 _mm_maskz_alignr_epi64, _mm_srai_epi64, _mm_maskz_slli_epi64):
2485 Likewise.
2486 (_mm_cvtepi32_epi8, _mm256_cvtepi32_epi8, _mm_cvtsepi32_epi8,
2487 _mm256_cvtsepi32_epi8, _mm_cvtusepi32_epi8, _mm256_cvtusepi32_epi8,
2488 _mm_cvtepi32_epi16, _mm256_cvtepi32_epi16, _mm_cvtsepi32_epi16,
2489 _mm256_cvtsepi32_epi16, _mm_cvtusepi32_epi16, _mm256_cvtusepi32_epi16,
2490 _mm_cvtepi64_epi8, _mm256_cvtepi64_epi8, _mm_cvtsepi64_epi8,
2491 _mm256_cvtsepi64_epi8, _mm_cvtusepi64_epi8, _mm256_cvtusepi64_epi8,
2492 _mm_cvtepi64_epi16, _mm256_cvtepi64_epi16, _mm_cvtsepi64_epi16,
2493 _mm256_cvtsepi64_epi16, _mm_cvtusepi64_epi16, _mm256_cvtusepi64_epi16,
2494 _mm_cvtepi64_epi32, _mm256_cvtepi64_epi32, _mm_cvtsepi64_epi32,
2495 _mm256_cvtsepi64_epi32, _mm_cvtusepi64_epi32, _mm256_cvtusepi64_epi32,
2496 _mm_maskz_set1_epi32, _mm_maskz_set1_epi64): Formatting fixes.
2497 (_mm_maskz_cvtps_ph, _mm256_maskz_cvtps_ph): Use _mm_setzero_si128
2498 instead of _mm_setzero_hi.
2499 (_mm256_permutex_pd, _mm256_maskz_permutex_epi64, _mm256_insertf32x4,
2500 _mm256_maskz_insertf32x4, _mm256_inserti32x4, _mm256_maskz_inserti32x4,
2501 _mm256_extractf32x4_ps, _mm256_maskz_extractf32x4_ps,
2502 _mm256_shuffle_i32x4, _mm256_maskz_shuffle_i32x4, _mm256_shuffle_f64x2,
2503 _mm256_maskz_shuffle_f64x2, _mm256_shuffle_f32x4,
2504 _mm256_maskz_shuffle_f32x4, _mm256_maskz_shuffle_pd,
2505 _mm_maskz_shuffle_pd, _mm256_maskz_shuffle_ps, _mm_maskz_shuffle_ps,
2506 _mm256_maskz_srli_epi32, _mm_maskz_srli_epi32, _mm_maskz_srli_epi64,
2507 _mm256_mask_slli_epi32, _mm256_maskz_slli_epi32, _mm256_mask_slli_epi64,
2508 _mm256_maskz_slli_epi64, _mm256_roundscale_ps,
2509 _mm256_maskz_roundscale_ps, _mm256_roundscale_pd,
2510 _mm256_maskz_roundscale_pd, _mm_roundscale_ps, _mm_maskz_roundscale_ps,
2511 _mm_roundscale_pd, _mm_maskz_roundscale_pd, _mm256_getmant_ps,
2512 _mm256_maskz_getmant_ps, _mm_getmant_ps, _mm_maskz_getmant_ps,
2513 _mm256_getmant_pd, _mm256_maskz_getmant_pd, _mm_getmant_pd,
2514 _mm_maskz_getmant_pd, _mm256_maskz_shuffle_epi32,
2515 _mm_maskz_shuffle_epi32, _mm256_rol_epi32, _mm256_maskz_rol_epi32,
2516 _mm_rol_epi32, _mm_maskz_rol_epi32, _mm256_ror_epi32,
2517 _mm256_maskz_ror_epi32, _mm_ror_epi32, _mm_maskz_ror_epi32,
2518 _mm_maskz_alignr_epi32, _mm_maskz_alignr_epi64,
2519 _mm256_maskz_srai_epi32, _mm_maskz_srai_epi32, _mm_srai_epi64,
2520 _mm_maskz_srai_epi64, _mm256_maskz_permutex_pd,
2521 _mm256_maskz_permute_pd, _mm256_maskz_permute_ps, _mm_maskz_permute_pd,
2522 _mm_maskz_permute_ps, _mm256_permutexvar_ps): Formatting fixes.
2523 (_mm_maskz_slli_epi64, _mm_rol_epi64, _mm_maskz_rol_epi64,
2524 _mm_ror_epi64, _mm_maskz_ror_epi64): Use _mm_setzero_si128 instead of
2525 _mm_setzero_di.
2526 (_mm_maskz_cvtps_ph, _mm256_maskz_cvtps_ph): Use _mm_setzero_si128
2527 instead of _mm_setzero_hi.
2528 * config/i386/avx512dqintrin.h (_mm512_broadcast_f64x2,
2529 _mm512_broadcast_i64x2, _mm512_broadcast_f32x2, _mm512_broadcast_i32x2,
2530 _mm512_broadcast_f32x8, _mm512_broadcast_i32x8): Formatting fixes.
2531 (_mm512_extracti64x2_epi64, _mm512_maskz_extracti64x2_epi64): Use
2532 _mm_setzero_si128 instead of _mm_setzero_di.
2533 (_mm512_cvtt_roundpd_epi64, _mm512_mask_cvtt_roundpd_epi64,
2534 _mm512_maskz_cvtt_roundpd_epi64, _mm512_cvtt_roundpd_epu64,
2535 _mm512_mask_cvtt_roundpd_epu64, _mm512_maskz_cvtt_roundpd_epu64,
2536 _mm512_cvtt_roundps_epi64, _mm512_mask_cvtt_roundps_epi64,
2537 _mm512_maskz_cvtt_roundps_epi64, _mm512_cvtt_roundps_epu64,
2538 _mm512_mask_cvtt_roundps_epu64, _mm512_maskz_cvtt_roundps_epu64,
2539 _mm512_cvt_roundpd_epi64, _mm512_mask_cvt_roundpd_epi64,
2540 _mm512_maskz_cvt_roundpd_epi64, _mm512_cvt_roundpd_epu64,
2541 _mm512_mask_cvt_roundpd_epu64, _mm512_maskz_cvt_roundpd_epu64,
2542 _mm512_cvt_roundps_epi64, _mm512_mask_cvt_roundps_epi64,
2543 _mm512_maskz_cvt_roundps_epi64, _mm512_cvt_roundps_epu64,
2544 _mm512_mask_cvt_roundps_epu64, _mm512_maskz_cvt_roundps_epu64,
2545 _mm512_cvt_roundepi64_ps, _mm512_mask_cvt_roundepi64_ps,
2546 _mm512_maskz_cvt_roundepi64_ps, _mm512_cvt_roundepu64_ps,
2547 _mm512_mask_cvt_roundepu64_ps, _mm512_maskz_cvt_roundepu64_ps,
2548 _mm512_cvt_roundepi64_pd, _mm512_mask_cvt_roundepi64_pd,
2549 _mm512_maskz_cvt_roundepi64_pd, _mm512_cvt_roundepu64_pd,
2550 _mm512_mask_cvt_roundepu64_pd, _mm512_maskz_cvt_roundepu64_pd,
2551 _mm512_reduce_pd, _mm512_maskz_reduce_pd, _mm512_reduce_ps,
2552 _mm512_maskz_reduce_ps, _mm512_extractf32x8_ps,
2553 _mm512_maskz_extractf32x8_ps, _mm512_extractf64x2_pd,
2554 _mm512_maskz_extractf64x2_pd, _mm512_extracti32x8_epi32,
2555 _mm512_maskz_extracti32x8_epi32, _mm512_range_pd,
2556 _mm512_maskz_range_pd, _mm512_range_ps, _mm512_maskz_range_ps,
2557 _mm512_range_round_pd, _mm512_maskz_range_round_pd,
2558 _mm512_range_round_ps, _mm512_maskz_range_round_ps,
2559 _mm512_maskz_insertf64x2, _mm512_insertf32x8,
2560 _mm512_maskz_insertf32x8): Formatting fixes.
2561 (_mm512_extracti64x2_epi64, _mm512_maskz_extracti64x2_epi64): Use
2562 _mm_setzero_si128 instead of _mm_setzero_di.
2563 * config/i386/avx512vldqintrin.h (_mm_cvttpd_epi64,
2564 _mm_cvttpd_epu64, _mm_cvtpd_epi64, _mm_cvtpd_epu64,
2565 _mm_cvttps_epi64, _mm_maskz_cvttps_epi64, _mm_cvttps_epu64,
2566 _mm_maskz_cvttps_epu64, _mm_maskz_mullo_epi64, _mm_cvtps_epi64,
2567 _mm_maskz_cvtps_epi64, _mm_cvtps_epu64, _mm_maskz_cvtps_epu64,
2568 _mm256_extracti64x2_epi64, _mm256_maskz_extracti64x2_epi64): Use
2569 _mm_setzero_si128 instead of _mm_setzero_di.
2570 (_mm256_extracti64x2_epi64, _mm256_maskz_extracti64x2_epi64):
2571 Likewise in macros.
2572 * config/i386/avx512vlbwintrin.h (_mm_maskz_mov_epi8,
2573 _mm_maskz_loadu_epi16, _mm_maskz_mov_epi16, _mm_maskz_loadu_epi8,
2574 _mm_permutexvar_epi16, _mm_maskz_maddubs_epi16): Use
2575 _mm_setzero_si128 instead of _mm_setzero_hi.
2576 (_mm_maskz_min_epu16, _mm_maskz_max_epu8, _mm_maskz_max_epi8,
2577 _mm_maskz_min_epu8, _mm_maskz_min_epi8, _mm_maskz_max_epi16,
2578 _mm_maskz_max_epu16, _mm_maskz_min_epi16): Use _mm_setzero_si128
2579 instead of _mm_setzero_di.
2580 (_mm_dbsad_epu8, _mm_maskz_shufflehi_epi16,
2581 _mm_maskz_shufflelo_epi16): Use _mm_setzero_si128 instead of
2582 _mm_setzero_hi.
2583 (_mm_maskz_shufflehi_epi16, _mm_maskz_shufflelo_epi16,
2584 _mm_maskz_slli_epi16): Use _mm_setzero_si128 instead of
2585 _mm_setzero_hi.
2586 (_mm_maskz_alignr_epi8): Use _mm_setzero_si128 instead of
2587 _mm_setzero_di.
2588 (_mm_maskz_mulhi_epi16, _mm_maskz_mulhi_epu16, _mm_maskz_mulhrs_epi16,
2589 _mm_maskz_mullo_epi16, _mm_srav_epi16, _mm_srlv_epi16,
2590 _mm_sllv_epi16): Use _mm_setzero_si128 instead of _mm_setzero_hi.
2591
2592 2016-11-22 Carl Love <cel@us.ibm.com>
2593
2594 * config/rs6000/rs6000-c.c: Add built-in support for vector compare
2595 equal and vector compare not equal. The vector compares take two
2596 arguments of type vector bool char, vector bool short, vector bool int,
2597 vector bool long long with the same return type.
2598 * doc/extend.texi: Update built-in documentation file for the new
2599 powerpc built-ins.
2600
2601 2016-11-22 Uros Bizjak <ubizjak@gmail.com>
2602
2603 * Makefile.in ($(lang_checks_parallelized)): Fix detection
2604 of -j argument.
2605
2606 2016-11-22 Thomas Preud'homme <thomas.preudhomme@arm.com>
2607
2608 * config.gcc: Allow new rmprofile value for configure option
2609 --with-multilib-list.
2610 * config/arm/t-rmprofile: New file.
2611 * doc/install.texi (--with-multilib-list): Document new rmprofile value
2612 for ARM.
2613
2614 2016-11-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2615
2616 PR target/78439
2617 * config/arm/vfp.md (*movdi_vfp_cortexa8): Use 'q' constraints for the
2618 register operand in alternatives 4,5,6.
2619
2620 2016-11-22 Thomas Preud'homme <thomas.preudhomme@arm.com>
2621
2622 PR target/77904
2623 * config/arm/arm.c (thumb1_compute_save_reg_mask): Mark frame pointer
2624 in save register mask if it is needed.
2625
2626 2016-11-22 Jakub Jelinek <jakub@redhat.com>
2627
2628 PR tree-optimization/78436
2629 * gimple-ssa-store-merging.c (zero_char_buf): Removed.
2630 (shift_bytes_in_array, shift_bytes_in_array_right,
2631 merged_store_group::apply_stores): Formatting fixes.
2632 (clear_bit_region): Likewise. Use memset.
2633 (encode_tree_to_bitpos): Formatting fixes. Fix comment typos - EPXR
2634 instead of EXPR and inerted instead of inserted. Use memset instead
2635 of zero_char_buf. For !BYTES_BIG_ENDIAN decrease byte_size by 1
2636 if shift_amnt is 0.
2637
2638 PR middle-end/78416
2639 * expmed.c (expand_divmod): Use wide_int for computation of
2640 op1_is_pow2. Don't set it if op1 is 0. Formatting fixes.
2641 Use size <= HOST_BITS_PER_WIDE_INT instead of
2642 HOST_BITS_PER_WIDE_INT >= size.
2643
2644 PR tree-optimization/78445
2645 * tree-if-conv.c (tree_if_conversion): If any_pred_load_store or
2646 any_complicated_phi, version loop even if flag_tree_loop_if_convert
2647 is 1. Formatting fix.
2648
2649 2016-11-22 Martin Liska <mliska@suse.cz>
2650
2651 PR ipa/78309
2652 * ipa-icf.c (void sem_item::set_hash): Update m_hash_set.
2653 (sem_function::get_hash): Use the new field.
2654 (sem_function::parse): Remove an argument from ctor.
2655 (sem_variable::parse): Likewise.
2656 (sem_variable::get_hash): Use the new field.
2657 (sem_item_optimizer::read_section): Use new ctor and set hash.
2658 * ipa-icf.h: _hash is removed from sem_item::sem_item,
2659 sem_variable::sem_variable, sem_function::sem_function.
2660
2661 2016-11-21 Jeff Law <law@redhat.com>
2662
2663 PR target/68538
2664 * config/cris/cris.md: Don't call copy_to_mode_reg unless
2665 can_create_pseudo_p is true.
2666
2667 2016-11-21 Segher Boessenkool <segher@kernel.crashing.org>
2668
2669 PR target/68803
2670 * config/rs6000/rs6000.md (*rotlsi3_insert_5, *rotldi3_insert_6,
2671 *rotldi3_insert_7): New define_insns.
2672
2673 2016-11-21 Michael Meissner <meissner@linux.vnet.ibm.com>
2674
2675 * config/rs6000/rs6000.md (movdi_internal32): Change constraints
2676 so that DImode can be allocated to FP/vector registers in more
2677 cases, and we can avoid direct move operations. If the register
2678 needs reloading, prefer GPRs over FP/vector registers. In the
2679 case of FPR vs. Altivec registers, prefer FPR registers unless we
2680 have the ISA 3.0 reg+offset scalar instructions.
2681 (movdi_internal64): Likewise.
2682
2683 2016-11-21 Jakub Jelinek <jakub@redhat.com>
2684
2685 PR middle-end/67335
2686 * omp-simd-clone.c (simd_clone_adjust_argument_types): Use NULL prefix
2687 for tmp simd array if DECL_NAME (parm) is NULL.
2688
2689 2016-11-20 Jeff Law <law@redhat.com>
2690
2691 PR target/25128
2692 * config/m68k/predicates.md (swap_peephole_relational_operator): New
2693 predicate.
2694 * config/m68k/m68k.md (relational tests against 65535/65536): New
2695 peephole2.
2696
2697 2016-11-21 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2698
2699 * tree-ssa-loop-prefetch.c: Delete FIXME after the includes.
2700
2701 2016-11-21 Martin Sebor <msebor@redhat.com>
2702
2703 * doc/invoke.texi (-fprintf-return-value): Document that option
2704 is enabled by default.
2705
2706 2016-11-21 Georg-Johann Lay <avr@gjlay.de>
2707
2708 * config/avr/avr-c.c (avr_register_target_pragmas): Use C++
2709 for-loop declaration of loop variable.
2710 (avr_register_target_pragmas, avr_cpu_cpp_builtins): Same.
2711 * config/avr/avr.c (avr_popcount_each_byte)
2712 (avr_init_expanders, avr_regs_to_save, sequent_regs_live)
2713 (get_sequence_length, avr_prologue_setup_frame, avr_map_metric)
2714 (avr_expand_epilogue, avr_function_arg_advance)
2715 (avr_out_compare, avr_out_plus_1, avr_out_bitop, avr_out_fract)
2716 (avr_rotate_bytes, _reg_unused_after, avr_assemble_integer)
2717 (avr_adjust_reg_alloc_order, output_reload_in_const)
2718 (avr_conditional_register_usage, avr_find_unused_d_reg)
2719 (avr_map_decompose, avr_fold_builtin): Same.
2720
2721 2016-11-21 Georg-Johann Lay <avr@gjlay.de>
2722
2723 * config/avr/avr.c (avr_popcount): Remove static function.
2724 (avr_popcount_each_byte, avr_out_bitop): Use popcount_hwi instead.
2725
2726 2016-11-21 Richard Earnshaw <rearnsha@arm.com>
2727
2728 * arm.opt (mapcs-float): Delete option.
2729 * arm.c (arm_option_override): Remove hunk relating to
2730 TARGET_APCS_FLOAT.
2731 * doc/invoke.texi (arm options): Remove documentation for -mapcs-float.
2732
2733 2016-11-21 Richard Sandiford <richard.sandiford@arm.com>
2734
2735 * tree-tailcall.c (process_assignment): Simplify the check for
2736 a valid copy, allowing the source to be a local variable as
2737 well as an SSA name.
2738 (find_tail_calls): Allow copies between local variables to follow
2739 the call. Allow the result to be stored in any local variable,
2740 even if it's an aggregate.
2741 (eliminate_tail_call): Check whether the result is an SSA name
2742 before updating its SSA_NAME_DEF_STMT.
2743
2744 2016-11-21 David Malcolm <dmalcolm@redhat.com>
2745
2746 PR preprocessor/78324
2747 * input.c (get_substring_ranges_for_loc): Fail gracefully if
2748 -ftrack-macro-expansion has a value other than 2.
2749
2750 2016-11-21 Segher Boessenkool <segher@kernel.crashing.org>
2751
2752 PR rtl-optimization/78400
2753 * shrink-wrap.c (try_shrink_wrapping_separate): Call
2754 df_update_entry_exit_and_calls instead of df_update_entry_block_defs
2755 and df_update_exit_block_uses.
2756
2757 2016-11-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
2758
2759 PR c++/71973
2760 * doc/invoke.texi (-Wno-builtin-declaration-mismatch): Document the
2761 new default-enabled warning..
2762 * builtin-types.def (BT_CONST_TM_PTR): New primitive type.
2763 (BT_PTR_CONST_STRING): Updated.
2764 (BT_FN_SIZE_STRING_SIZE_CONST_STRING_CONST_PTR): Removed.
2765 (BT_FN_SIZE_STRING_SIZE_CONST_STRING_CONST_TM_PTR): New function type.
2766 * builtins.def (DEF_TM_BUILTIN): Disable BOTH_P for TM builtins.
2767 (strftime): Update builtin function.
2768 * tree-core.h (TI_CONST_TM_PTR_TYPE): New enum value.
2769 * tree.h (const_tm_ptr_type_node): New type node.
2770 * tree.c (free_lang_data, build_common_tree_nodes): Initialize
2771 const_tm_ptr_type_node.
2772
2773 2016-11-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
2774
2775 PR tree-optimization/78413
2776 * tree-if-conv.c (versionable_outer_loop_p): Require that both
2777 inner and outer loop latches have single predecessors.
2778
2779 2016-11-21 Georg-Johann Lay <avr@gjlay.de>
2780
2781 PR target/78093
2782 * config/avr/avr.c (avr_decl_maybe_lds_p): New static function.
2783 (avr_encode_section_info) [TARGET_ABSDATA && AVR_TINY]: Use it.
2784
2785 2016-11-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2786
2787 * rtl.h: Adjust prototype.
2788 * rtlanal.c (dead_or_set_p): Change argument type to rtx_insn *.
2789 (dead_or_set_regno_p): Likewise.
2790
2791 2016-11-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2792
2793 * rtl.h: Adjust prototype.
2794 * rtlanal.c (add_int_reg_note): Change argument type to rtx_insn *.
2795
2796 2016-11-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2797
2798 * function.c (contains): Change argument type to rtx_insn *.
2799 (prologue_contains): Likewise.
2800 (epilogue_contains): Likewise.
2801 (prologue_epilogue_contains): Likewise.
2802 * function.h: Adjust prototype.
2803
2804 2016-11-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2805
2806 * optabs.c (emit_libcall_block): Change argument type to
2807 rtx_insn *.
2808 * optabs.h: Adjust prototype.
2809
2810 2016-11-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2811
2812 * cfgrtl.c (delete_insn): Change argument type to rtx_insn *.
2813 (fixup_reorder_chain): Adjust.
2814 * cfgrtl.h: Adjust prototype.
2815
2816 2016-11-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2817
2818 * rtl.h: Adjust prototype.
2819 * rtlanal.c (replace_label_in_insn): Change argument type to
2820 rtx_insn *.
2821
2822 2016-11-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2823
2824 * config/v850/v850.c (expand_prologue): Adjust.
2825 (expand_epilogue): Likewise.
2826 * expr.c (init_expr_target): Likewise.
2827 * genrecog.c (print_subroutine): Always make the argument type
2828 rtx_insn *.
2829 * recog.h: Adjust prototype.
2830
2831 2016-11-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2832
2833 * config/aarch64/aarch64.c (aarch64_emit_unlikely_jump): split
2834 up variables to make some rtx_insn *.
2835 * config/alpha/alpha.c (emit_unlikely_jump): Likewise.
2836 * config/arc/arc.c: Likewise.
2837 * config/arm/arm.c: Likewise.
2838 * config/mn10300/mn10300.c (mn10300_legitimize_pic_address): Likewise.
2839 * config/rs6000/rs6000.c (rs6000_expand_split_stack_prologue):
2840 Likewise.
2841 * config/spu/spu.c (spu_emit_branch_hint): Likewise.
2842
2843 2016-11-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2844
2845 * config/arm/arm.c (legitimize_pic_address): Change to use
2846 rtx_insn * as the type of variables.
2847 (arm_pic_static_addr): Likewise.
2848 (arm_emit_movpair): Likewise.
2849 * config/c6x/c6x.c (reorg_split_calls): Likewise.
2850 * config/darwin.c (machopic_legitimize_pic_address): Likewise.
2851 * config/frv/frv.c (frv_optimize_membar_local): Likewise.
2852 * config/frv/frv.md: Likewise.
2853 * config/i386/i386-protos.h: Likewise.
2854 * config/i386/i386.c (ix86_expand_split_stack_prologue): Likewise.
2855 (ix86_split_fp_branch): Likewise.
2856 (predict_jump): Likewise.
2857 * config/ia64/ia64.c: Likewise.
2858 * config/mcore/mcore.c: Likewise.
2859 * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Likewise.
2860 * config/s390/s390.c: Likewise.
2861 * config/s390/s390.md: Likewise.
2862 * config/spu/spu.md: Likewise.
2863 * config/tilegx/tilegx.c (tilegx_legitimize_tls_address): Likewise.
2864 * lower-subreg.c (resolve_simple_move): Likewise.
2865
2866 2016-11-20 Jeff Law <law@redhat.com>
2867
2868 PR target/48551
2869 * reload.h (struct target_reload): Make x_double_reg_address_ok
2870 be per-mode rather.
2871 * reload.c (find_reloads_address): Check if double_reg_address_ok
2872 is true for the mode of the memory reference.
2873 * reload1.c (init_reload): Initialize double_reg_address_ok for
2874 each mode.
2875
2876 2016-11-20 Aldy Hernandez <aldyh@redhat.com>
2877
2878 PR middle-end/61409
2879 * tree-ssa-uninit.c: Define new global max_phi_args.
2880 (compute_uninit_opnds_pos): Use max_phi_args.
2881 (prune_uninit_phi_opnds): Same.
2882 (use_pred_not_overlap_with_undef_path_pred): Remove reference to
2883 missing NUM_PREDS in function comment.
2884 (can_one_predicate_be_invalidated_p): New.
2885 (can_chain_union_be_invalidated_p): New.
2886 (flatten_out_predicate_chains): New.
2887 (uninit_ops_invalidate_phi_use): New.
2888 (is_use_properly_guarded): Call uninit_ops_invalidate_phi_use.
2889
2890 2016-11-20 Marc Glisse <marc.glisse@inria.fr>
2891
2892 * fold-const.c (fold_comparison): Ignore EXACT_DIV_EXPR.
2893 * match.pd (A /[ex] B CMP C): New simplifications.
2894
2895 2016-11-20 Marc Glisse <marc.glisse@inria.fr>
2896
2897 * match.pd (0 / X, X / X, X % X): New simplifications.
2898
2899 2016-11-19 Jakub Jelinek <jakub@redhat.com>
2900
2901 * config/i386/i386.c (ix86_can_inline_p): Use || instead of &
2902 when checking if callee's isa flags are subset of caller's isa flags.
2903 Fix comment wording.
2904
2905 * config/i386/i386.c (ix86_valid_target_attribute_tree): Don't
2906 clear opts->x_ix86_isa_flags, clear opts->x_ix86_isa_flags2
2907 instead and using = 0 instead of &= 0.
2908
2909 * config/i386/i386.c (def_builtin, def_builtin2, def_builtin_const2,
2910 ix86_add_new_builtins): Formatting fixes.
2911 (ix86_expand_builtin): Use || instead of && for isa vs. isa2.
2912 (ix86_get_builtin): Likewise.
2913
2914 * config/i386/i386.c (ix86_expand_builtin): Remove msk_mov variable,
2915 don't initialize it, don't use it for the case where it isn't
2916 provable %{z} nor using the same argument, instead move merge
2917 argument into a new pseudo and use that as target. Formatting fixes.
2918
2919 2016-11-19 Jeff Law <law@redhat.com>
2920
2921 PR target/25111
2922 * config/m68k/m68k.md (bsetdreg): New pattern.
2923 (bchgdreg, bclrdreg): Likewise.
2924
2925 2016-11-19 Kaz Kojima <kkojima@gcc.gnu.org>
2926
2927 PR target/78426
2928 * config/sh/sh-mem.cc (sh_expand_cmpnstr): Use copy_to_mode_reg
2929 instead of force_reg.
2930 (sh_expand_setmem): Likewise.
2931
2932 2016-11-19 Krister Walfridsson <krister.walfridsson@gmail.com>
2933
2934 * config.gcc (*-*-netbsd): Set use_gcc_stdint=wrap.
2935
2936 2016-11-18 Walter Lee <walt@tilera.com>
2937
2938 * config/tilegx/tilegx.c (tilegx_gen_bundles): Preserve
2939 end-of-bundle marker for consecutive barriers.
2940
2941 2016-11-18 Walter Lee <walt@tilera.com>
2942
2943 * config/tilegx/tilegx.md (clzsi2): Fix for big-endian.
2944
2945 2016-11-18 Jakub Jelinek <jakub@redhat.com>
2946
2947 PR middle-end/78419
2948 * multiple_target.c (get_attr_len): Start with argnum and increment
2949 argnum on every arg. Use strchr in a loop instead of counting commas
2950 manually.
2951 (get_attr_str): Increment argnum for every comma in the string.
2952 (separate_attrs): Use for instead of while loop, simplify.
2953 (expand_target_clones): Rename defenition argument to definition.
2954 Free attrs and attr_str even when diagnosing errors. Temporarily
2955 change input_location around targetm.target_option.valid_attribute_p
2956 calls. Don't emit warning or errors if that function fails.
2957
2958 * dwarf2out.c (size_of_discr_list): Fix typo in function comment.
2959
2960 PR debug/78191
2961 * dwarf2out.c (abbrev_opt_base_type_end): New variable.
2962 (die_abbrev_cmp): Sort dies with die_abbrev smaller than
2963 abbrev_opt_base_type_end only by increasing die_abbrev, before
2964 any other dies.
2965 (optimize_abbrev_table): Don't change abbrev numbers of
2966 base types and CU or optimize implicit consts in them if
2967 calc_base_type_die_sizes has been called during build_abbrev_table.
2968 (calc_base_type_die_sizes): If abbrev_opt_start, set
2969 abbrev_opt_base_type_end to one plus largest base type's die_abbrev.
2970
2971 2016-11-18 Jeff Law <law@redhat.com>
2972
2973 PR target/25112
2974 * config/m68k/m68k.c (moveq feeding equality comparison): New
2975 peepholes.
2976 * config/m68k/predicates.md (addq_subq_operand): New predicate.
2977 (equality_comparison_operator): Likewise.
2978
2979 2016-11-18 Richard Sandiford <richard.sandiford@arm.com>
2980
2981 * rtlanal.c (load_extend_op): Move to...
2982 * rtl.h: ...here and make inline.
2983
2984 2016-11-18 Terry Guo <terry.guo@arm.com>
2985 Thomas Preud'homme <thomas.preudhomme@arm.com>
2986
2987 * common/config/arm/arm-common.c (arm_target_thumb_only): New function.
2988 * config/arm/arm-opts.h: Include arm-flags.h.
2989 (struct arm_arch_core_flag): Define.
2990 (arm_arch_core_flags): Define.
2991 * config/arm/arm-protos.h: Include arm-flags.h
2992 (FL_NONE, FL_ANY, FL_CO_PROC, FL_ARCH3M, FL_MODE26, FL_MODE32,
2993 FL_ARCH4, FL_ARCH5, FL_THUMB, FL_LDSCHED, FL_STRONG, FL_ARCH5E,
2994 FL_XSCALE, FL_ARCH6, FL_VFPV2, FL_WBUF, FL_ARCH6K, FL_THUMB2, FL_NOTM,
2995 FL_THUMB_DIV, FL_VFPV3, FL_NEON, FL_ARCH7EM, FL_ARCH7, FL_ARM_DIV,
2996 FL_ARCH8, FL_CRC32, FL_SMALLMUL, FL_NO_VOLATILE_CE, FL_IWMMXT,
2997 FL_IWMMXT2, FL_ARCH6KZ, FL2_ARCH8_1, FL2_ARCH8_2, FL2_FP16INST,
2998 FL_TUNE, FL_FOR_ARCH2, FL_FOR_ARCH3, FL_FOR_ARCH3M, FL_FOR_ARCH4,
2999 FL_FOR_ARCH4T, FL_FOR_ARCH5, FL_FOR_ARCH5T, FL_FOR_ARCH5E,
3000 FL_FOR_ARCH5TE, FL_FOR_ARCH5TEJ, FL_FOR_ARCH6, FL_FOR_ARCH6J,
3001 FL_FOR_ARCH6K, FL_FOR_ARCH6Z, FL_FOR_ARCH6ZK, FL_FOR_ARCH6KZ,
3002 FL_FOR_ARCH6T2, FL_FOR_ARCH6M, FL_FOR_ARCH7, FL_FOR_ARCH7A,
3003 FL_FOR_ARCH7VE, FL_FOR_ARCH7R, FL_FOR_ARCH7M, FL_FOR_ARCH7EM,
3004 FL_FOR_ARCH8A, FL2_FOR_ARCH8_1A, FL2_FOR_ARCH8_2A, FL_FOR_ARCH8M_BASE,
3005 FL_FOR_ARCH8M_MAIN, arm_feature_set, ARM_FSET_MAKE,
3006 ARM_FSET_MAKE_CPU1, ARM_FSET_MAKE_CPU2, ARM_FSET_CPU1, ARM_FSET_CPU2,
3007 ARM_FSET_EMPTY, ARM_FSET_ANY, ARM_FSET_HAS_CPU1, ARM_FSET_HAS_CPU2,
3008 ARM_FSET_HAS_CPU, ARM_FSET_ADD_CPU1, ARM_FSET_ADD_CPU2,
3009 ARM_FSET_DEL_CPU1, ARM_FSET_DEL_CPU2, ARM_FSET_UNION, ARM_FSET_INTER,
3010 ARM_FSET_XOR, ARM_FSET_EXCLUDE, ARM_FSET_IS_EMPTY,
3011 ARM_FSET_CPU_SUBSET): Move to ...
3012 * config/arm/arm-flags.h: This new file.
3013 * config/arm/arm.h (TARGET_MODE_SPEC_FUNCTIONS): Define.
3014 (EXTRA_SPEC_FUNCTIONS): Add TARGET_MODE_SPEC_FUNCTIONS to its value.
3015 (TARGET_MODE_SPECS): Define.
3016 (DRIVER_SELF_SPECS): Add TARGET_MODE_SPECS to its value.
3017
3018 2016-11-18 Thomas Preud'homme <thomas.preudhomme@arm.com>
3019
3020 * config/arm/arm-protos.h (FL_NONE, FL_ANY, FL_CO_PROC, FL_ARCH3M,
3021 FL_MODE26, FL_MODE32, FL_ARCH4, FL_ARCH5, FL_THUMB, FL_LDSCHED,
3022 FL_STRONG, FL_ARCH5E, FL_XSCALE, FL_ARCH6, FL_VFPV2, FL_WBUF,
3023 FL_ARCH6K, FL_THUMB2, FL_NOTM, FL_THUMB_DIV, FL_VFPV3, FL_NEON,
3024 FL_ARCH7EM, FL_ARCH7, FL_ARM_DIV, FL_ARCH8, FL_CRC32, FL_SMALLMUL,
3025 FL_NO_VOLATILE_CE, FL_IWMMXT, FL_IWMMXT2, FL_ARCH6KZ, FL2_ARCH8_1,
3026 FL2_ARCH8_2, FL2_FP16INST): Reindent comment, add final dot when
3027 missing and make value unsigned.
3028 (arm_feature_set): Use unsigned entries instead of unsigned long.
3029
3030 2016-11-18 Dominik Vogt <vogt@linux.vnet.ibm.com>
3031
3032 Re-apply after PR bootstrap/77359 is fixed:
3033 2016-08-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
3034
3035 * explow.c (get_dynamic_stack_size): Take known alignment of stack
3036 pointer + STACK_DYNAMIC_OFFSET into account when calculating the
3037 size needed.
3038
3039 2016-11-18 Dominik Vogt <vogt@linux.vnet.ibm.com>
3040
3041 PR bootstrap/77359
3042 * config/rs6000/rs6000.c (rs6000_stack_info): Properly align local
3043 variables in functions calling alloca. Also update the ASCII
3044 drawings.
3045 * config/rs6000/rs6000.h (STARTING_FRAME_OFFSET)
3046 (STACK_DYNAMIC_OFFSET): Likewise.
3047 * config/rs6000/aix.h (STARTING_FRAME_OFFSET)
3048 (STACK_DYNAMIC_OFFSET): Copy AIX specific versions of the rs6000.h
3049 macros to aix.h.
3050
3051 2016-11-18 Richard Sandiford <richard.sandiford@arm.com>
3052 Alan Hayward <alan.hayward@arm.com>
3053 David Sherwood <david.sherwood@arm.com>
3054
3055 * combine.c (try_combine): Use rtx_mode_t instead of std::make_pair.
3056 * dwarf2out.c (mem_loc_descriptor, loc_descriptor): Likewise.
3057 (add_const_value_attribute): Likewise.
3058 * explow.c (plus_constant): Likewise.
3059 * expmed.c (expand_mult, make_tree): Likewise.
3060 * expr.c (convert_modes): Likewise.
3061 * loop-doloop.c (doloop_optimize): Likewise.
3062 * postreload.c (reload_cse_simplify_set): Likewise.
3063 * simplify-rtx.c (simplify_const_unary_operation): Likewise
3064 (simplify_binary_operation_1, simplify_const_binary_operation):
3065 Likewise.
3066 (simplify_const_relational_operation, simplify_immed_subreg): Likewise.
3067 * wide-int.h: Update documentation to recommend rtx_mode_t
3068 instead of std::make_pair.
3069
3070 2016-11-18 Richard Sandiford <richard.sandiford@arm.com>
3071 Alan Hayward <alan.hayward@arm.com>
3072 David Sherwood <david.sherwood@arm.com>
3073
3074 * tree.h (SET_DECL_MODE): New macro.
3075 * cfgexpand.c (avoid_deep_ter_for_debug): Use SET_DECL_MODE.
3076 (expand_gimple_basic_block): Likewise.
3077 * function.c (split_complex_args): Likeise.
3078 * ipa-prop.c (ipa_modify_call_arguments): Likewise.
3079 * omp-simd-clone.c (ipa_simd_modify_stmt_ops): Likewise.
3080 * stor-layout.c (layout_decl, relayout_decl): Likewise.
3081 (finish_bitfield_representative): Likewise.
3082 * tree.c (make_node_stat): Likewise.
3083 * tree-inline.c (remap_ssa_name): Likewise.
3084 (tree_function_versioning): Likewise.
3085 * tree-into-ssa.c (rewrite_debug_stmt_uses): Likewise.
3086 * tree-sra.c (sra_ipa_reset_debug_stmts): Likewise.
3087 * tree-ssa-ccp.c (optimize_atomic_bit_test_and): Likewise.
3088 * tree-ssa-loop-ivopts.c (remove_unused_ivs): Likewise.
3089 * tree-ssa.c (insert_debug_temp_for_var_def): Likewise.
3090 * tree-streamer-in.c (unpack_ts_decl_common_value_fields): Likewise.
3091 * varasm.c (make_debug_expr_from_rtl): Likewise.
3092
3093 2016-11-18 Segher Boessenkool <segher@kernel.crashing.org>
3094
3095 PR rtl-optimization/71785
3096 * bb-reorder.c (maybe_duplicate_computed_goto): New function.
3097 (duplicate_computed_gotos): New function.
3098 (pass_duplicate_computed_gotos::execute): Rewrite.
3099
3100 2016-11-17 Jeff Law <law@redhat.com>
3101
3102 PR target/47192
3103 * config/m68k/m68k.c (m68k_expand_epilogue): Emit a scheduling
3104 barrier prior to deallocating the stack.
3105
3106 2016-11-17 Andrew Burgess <andrew.burgess@embecosm.com>
3107
3108 * config/arc/arc.md (cmem bit/sign-extend peephole2): New peephole
3109 to make better use of cmem loads in the case where a single bit is
3110 being accessed.
3111 * config/arc/predicates.md (ge_lt_comparison_operator): New predicate.
3112
3113 2016-11-17 Andrew Senkevich <andrew.senkevich@intel.com>
3114
3115 * config/i386/i386.c (processor_features): Add F_AVX5124VNNIW,
3116 F_AVX5124FMAPS.
3117 (isa_names_table): Handle new features.
3118
3119 2016-11-17 Kirill Yukhin <kirill.yukhin@gmail.com>
3120 Andrew Senkevich <andrew.senkevich@intel.com>
3121
3122 * common/config/i386/i386-common.c (OPTION_MASK_ISA_AVX5124FMAPS_SET,
3123 OPTION_MASK_ISA_AVX5124FMAPS_UNSET, OPTION_MASK_ISA_AVX5124VNNIW_SET,
3124 OPTION_MASK_ISA_AVX5124VNNIW_UNSET): New.
3125 (ix86_handle_option): Handle OPT_mavx5124fmaps, OPT_mavx5124vnniw.
3126 * config.gcc: Add avx5124fmapsintrin.h, avx5124vnniwintrin.h.
3127 * config/i386/avx5124fmapsintrin.h: New file.
3128 * config/i386/avx5124vnniwintrin.h: Ditto.
3129 * config/i386/constraints.md (h): New constraint.
3130 * config/i386/cpuid.h (bit_AVX5124VNNIW, bit_AVX5124FMAPS): New.
3131 * config/i386/driver-i386.c (host_detect_local_cpu):
3132 Detect avx5124fmaps, avx5124vnniw.
3133 * config/i386/i386-builtin-types.def: Add types
3134 V16SF_FTYPE_V16SF_V16SF_V16SF_V16SF_V16SF_PCV4SF_V16SF_UHI,
3135 V16SF_FTYPE_V16SF_V16SF_V16SF_V16SF_V16SF_PCV4SF,
3136 V4SF_FTYPE_V4SF_V4SF_V4SF_V4SF_V4SF_PCV4SF,
3137 V4SF_FTYPE_V4SF_V4SF_V4SF_V4SF_V4SF_PCV4SF_V4SF_UQI,
3138 V16SI_FTYPE_V16SI_V16SI_V16SI_V16SI_V16SI_PCV4SI,
3139 V16SI_FTYPE_V16SI_V16SI_V16SI_V16SI_V16SI_PCV4SI_V16SI_UHI.
3140 * config/i386/i386-builtin.def (__builtin_ia32_4fmaddps_mask,
3141 __builtin_ia32_4fmaddps, __builtin_ia32_4fmaddss,
3142 __builtin_ia32_4fmaddss_mask, __builtin_ia32_4fnmaddps_mask,
3143 __builtin_ia32_4fnmaddps, __builtin_ia32_4fnmaddss,
3144 __builtin_ia32_4fnmaddss_mask, __builtin_ia32_vp4dpwssd,
3145 __builtin_ia32_vp4dpwssd_mask, __builtin_ia32_vp4dpwssds,
3146 __builtin_ia32_vp4dpwssds_mask): New.
3147 * config/i386/i386-c.c (ix86_target_macros_internal):
3148 Define __AVX5124FMAPS__, __AVX5124VNNIW__.
3149 * config/i386/i386-modes.def: Fixed comment typos, added new
3150 modes (VECTOR_MODES (FLOAT, 256), VECTOR_MODE (INT, SI, 64)).
3151 * config/i386/i386.c (ix86_target_string): Add -mavx5124fmaps,
3152 -mavx5124vnniw.
3153 (PTA_AVX5124FMAPS, PTA_AVX5124VNNIW): Define.
3154 (ix86_option_override_internal): Handle new options.
3155 (ix86_valid_target_attribute_inner_p): Add avx5124fmaps,
3156 avx5124vnniw.
3157 (ix86_expand_builtin): Handle new builtins.
3158 (ix86_additional_allocno_class_p): New.
3159 * config/i386/i386.h (TARGET_AVX5124FMAPS, TARGET_AVX5124FMAPS_P,
3160 TARGET_AVX5124VNNIW, TARGET_AVX5124VNNIW_P): Define.
3161 (reg_class): Add MOD4_SSE_REGS.
3162 (MOD4_SSE_REG_P, MOD4_SSE_REGNO_P): New.
3163 * config/i386/i386.opt: Add mavx5124fmaps, mavx5124vnniw.
3164 * config/i386/immintrin.h: Include avx5124fmapsintrin.h,
3165 avx5124vnniwintrin.h.
3166 * config/i386/sse.md (unspec): Add UNSPEC_VP4FMADD, UNSPEC_VP4FNMADD,
3167 UNSPEC_VP4DPWSSD, UNSPEC_VP4DPWSSDS.
3168 (define_mode_iterator IMOD4): New.
3169 (define_mode_attr imod4_narrow): Ditto.
3170 (define_insn "mov<mode>"): Ditto.
3171 (define_insn "avx5124fmaddps_4fmaddps"): Ditto.
3172 (define_insn "avx5124fmaddps_4fmaddps_mask"): Ditto.
3173 (define_insn "avx5124fmaddps_4fmaddps_maskz"): Ditto.
3174 (define_insn "avx5124fmaddps_4fmaddss"): Ditto.
3175 (define_insn "avx5124fmaddps_4fmaddss_mask"): Ditto.
3176 (define_insn "avx5124fmaddps_4fmaddss_maskz"): Ditto.
3177 (define_insn "avx5124fmaddps_4fnmaddps"): Ditto.
3178 (define_insn "avx5124fmaddps_4fnmaddps_mask"): Ditto.
3179 (define_insn "avx5124fmaddps_4fnmaddps_maskz"): Ditto.
3180 (define_insn "avx5124fmaddps_4fnmaddss"): Ditto.
3181 (define_insn "avx5124fmaddps_4fnmaddss_mask"): Ditto.
3182 (define_insn "avx5124fmaddps_4fnmaddss_maskz"): Ditto.
3183 (define_insn "avx5124vnniw_vp4dpwssd"): Ditto.
3184 (define_insn "avx5124vnniw_vp4dpwssd_mask"): Ditto.
3185 (define_insn "avx5124vnniw_vp4dpwssd_maskz"): Ditto.
3186 (define_insn "avx5124vnniw_vp4dpwssds"): Ditto.
3187 (define_insn "avx5124vnniw_vp4dpwssds_mask"): Ditto.
3188 (define_insn "avx5124vnniw_vp4dpwssds_maskz"): Ditto.
3189 * init-regs.c (initialize_uninitialized_regs): Add emit_clobber call.
3190 * genmodes.c (mode_size_inline): Extend return type.
3191 * machmode.h (mode_size, mode_base_align): Extend type.
3192
3193 2016-11-17 Michael Meissner <meissner@linux.vnet.ibm.com>
3194
3195 PR target/78101
3196 * config/rs6000/predicates.md (fusion_addis_mem_combo_load): Add
3197 the appropriate checks for SFmode/DFmode load/stores in GPR
3198 registers.
3199 (fusion_addis_mem_combo_store): Likewise.
3200 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Rename
3201 fusion_fpr_* to fusion_vsx_* and add in support for ISA 3.0 scalar
3202 d-form instructions for traditional Altivec registers.
3203 (emit_fusion_p9_load): Likewise.
3204 (emit_fusion_p9_store): Likewise.
3205 * config/rs6000/rs6000.md (p9 fusion store peephole2): Remove
3206 early clobber from scratch register. Do not match if the register
3207 being stored is the scratch register.
3208 (fusion_vsx_<P:mode>_<FPR_FUSION:mode>_load): Rename fusion_fpr_*
3209 to fusion_vsx_* and add in support for ISA 3.0 scalar d-form
3210 instructions for traditional Altivec registers.
3211 (fusion_fpr_<P:mode>_<FPR_FUSION:mode>_load): Likewise.
3212 (fusion_vsx_<P:mode>_<FPR_FUSION:mode>_store): Likewise.
3213 (fusion_fpr_<P:mode>_<FPR_FUSION:mode>_store): Likewise.
3214
3215 2016-11-17 Thomas Preud'homme <thomas.preudhomme@arm.com>
3216
3217 PR target/77933
3218 * config/arm/arm.c (thumb1_expand_prologue): Distinguish between lr
3219 being live in the function and lr needing to be saved. Distinguish
3220 between already saved pushable registers and registers to push.
3221 Check for LR being an available pushable register.
3222
3223 2016-11-17 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
3224
3225 * config/i386/i386.md (cmpstrnsi): New test to bail out if neither
3226 string input is a string constant.
3227 * builtins.c (expand_builtin_strncmp): Attempt expansion of strncmp
3228 via cmpstrnsi even if neither string is constant.
3229
3230 2016-11-17 Jakub Jelinek <jakub@redhat.com>
3231
3232 PR middle-end/78201
3233 * varasm.c (default_use_anchors_for_symbol_p): Fix a comment typo.
3234 Don't test decl != NULL. Don't look at DECL_SIZE, but DECL_SIZE_UNIT
3235 instead, return false if it is NULL, or doesn't fit into uhwi, or
3236 is larger or equal to targetm.max_anchor_offset.
3237
3238 2016-11-17 Pip Cet <pipcet@gmail.com>
3239 Eric Botcazou <ebotcazou@adacore.com>
3240
3241 PR rtl-optimization/78355
3242 * doc/tm.texi.in (SLOW_UNALIGNED_ACCESS): Document that the macro only
3243 needs to deal with unaligned accesses.
3244 * doc/tm.texi: Regenerate.
3245 * lra-constraints.c (simplify_operand_subreg): Only invoke
3246 SLOW_UNALIGNED_ACCESS on innermode if the MEM is not aligned enough.
3247
3248 2016-11-17 David Malcolm <dmalcolm@redhat.com>
3249
3250 * input.c (selftest::test_lexer_string_locations_long_line): New
3251 function.
3252 (selftest::test_lexer_string_locations_raw_string_multiline): New
3253 function.
3254 (selftest::input_c_tests): Call the new functions, via
3255 for_each_line_table_case.
3256
3257 2016-11-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3258
3259 * config/aarch64/aarch64.md (mov<mode>): Call
3260 aarch64_split_dimode_const_store on DImode constant stores.
3261 * config/aarch64/aarch64-protos.h (aarch64_split_dimode_const_store):
3262 New prototype.
3263 * config/aarch64/aarch64.c (aarch64_split_dimode_const_store): New
3264 function.
3265
3266 2016-11-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
3267 Richard Biener <rguenther@suse.de>
3268
3269 PR tree-optimization/77848
3270 * tree-if-conv.c (tree_if_conversion): Always version loops unless
3271 the user specified -ftree-loop-if-convert.
3272
3273 2016-11-17 Bernd Edlinger <bernd.edlinger@hotmail.de>
3274
3275 PR target/77308
3276 * config/arm/arm.md (*thumb2_ldrd, *thumb2_ldrd_base,
3277 *thumb2_ldrd_base_neg, *thumb2_strd, *thumb2_strd_base,
3278 *thumb2_strd_base_neg): Recognize insn regardless of
3279 current_tune->prefer_ldrd_strd.
3280 * config/arm/ldrdstrd.md: Enable all ldrd/strd peephole rules
3281 whenever possible.
3282
3283 2016-11-17 Claudiu Zissulescu <claziss@synopsys.com>
3284
3285 * config/arc/arc.c (arc_ccfsm_post_advance): Handle return
3286 instruction type.
3287
3288 2016-11-17 Claudiu Zissulescu <claziss@synopsys.com>
3289
3290 * config/arc/arc-arches.def: Add FPX quarkse instruction as valid
3291 for arcem.
3292 * config/arc/arc-c.def (__ARC_FPX_QUARK__): Define.
3293 * config/arc/arc-cpus.def (quarkse_em): Add.
3294 * config/arc/arc-options.def (FL_FPX_QUARK, FL_QUARK): Likewise.
3295 * config/arc/arc-opts.h (FPX_QK): Define.
3296 * config/arc/arc-tables.opt: Regenerate.
3297 * config/arc/arc.c (gen_compare_reg): Change.
3298 (arc_register_move_cost): Avoid Dy,Dx moves.
3299 * config/arc/arc.h (TARGET_HARD_FLOAT): Change.
3300 (TARGET_FPX_QUARK, TARGET_FP_ASSIST): Define.
3301 * config/arc/arc.md (divsf3, sqrtsf2, fix_truncsfsi2, floatsisf2):
3302 New expands.
3303 * config/arc/fpu.md (divsf3_fpu, sqrtsf2_fpu, floatsisf2_fpu)
3304 (fix_truncsfsi2_fpu): Rename.
3305 * config/arc/fpx.md (cmp_quark, cmpsf_quark_, cmpsf_quark_ord)
3306 (cmpsf_quark_uneq, cmpsf_quark_eq, divsf3_quark, sqrtsf2_quark)
3307 (fix_truncsfsi2_quark, floatsisf2_quark): New patterns.
3308 * config/arc/t-multilib: Regenerate.
3309
3310 2016-11-17 Georg-Johann Lay <avr@gjlay.de>
3311
3312 * config/avr/avr.c (avr_print_operand_address): Use CONST_INT_P if
3313 appropriate.
3314 (ashlqi3_out, ashlsi3_out, ashrqi3_out, ashrhi3_out): Same.
3315 (ashrsi3_out, lshrqi3_out, lshrhi3_out, lshrsi3_out): Same.
3316 (avr_rtx_costs_1, extra_constraint_Q): Same.
3317 (avr_address_cost): Use SUBREG_P if possible.
3318
3319 2016-11-17 Richard Biener <rguenther@suse.de>
3320
3321 PR middle-end/78383
3322 * tree-cfgcleanup.c (cleanup_control_flow_bb): Do not turn
3323 non-local goto into CFG.
3324
3325 2016-11-17 Richard Biener <rguenther@suse.de>
3326
3327 * common.opt (ftree-loop-if-convert-stores): Mark as preserved for
3328 backward compatibility.
3329 * doc/invoke.texi (ftree-loop-if-convert-stores): Remove.
3330 * tree-if-conv.c (pass_if_conversion::gate): Do not test
3331 flag_tree_loop_if_convert_stores.
3332 (pass_if_conversion::execute): Likewise.
3333
3334 2016-11-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3335
3336 * config/aarch64/predicates.md (aarch64_reg_or_fp_zero): Check for
3337 const_double code before calling aarch64_float_const_zero_rtx_p.
3338
3339 2016-11-17 Richard Biener <rguenther@suse.de>
3340
3341 PR tree-optimization/78306
3342 * ipa-inline-analysis.c (initialize_inline_failed): Do not
3343 inhibit inlining if function calls cilk_spawn.
3344 (can_inline_edge_p): Likewise.
3345
3346 2016-11-17 Richard Biener <rguenther@suse.de>
3347
3348 PR middle-end/78305
3349 * fold-const.c (negate_expr_p): Fix multiplication case.
3350
3351 2016-11-17 Chung-Lin Tang <cltang@codesourcery.com>
3352
3353 PR target/78357
3354 * config/nios2/nios2.c (nios2_init_libfuncs): Remove TARGET_LINUX_ABI
3355 condition.
3356 (TARGET_INIT_LIBFUNCS): Delete definition and...
3357 * config/nios2/linux.h (TARGET_INIT_LIBFUNCS): ...move to here, add
3358 comments.
3359
3360 2016-11-17 Krister Walfridsson <krister.walfridsson@gmail.com>
3361
3362 * config/netbsd-stdint.h: New.
3363 * config.gcc (i[34567]86-*-netbsd): Add netbsd-stdint.h to tm_file.
3364 (x86_64-*-netbsd*): Likewise.
3365
3366 2016-11-16 Andrew PInski <apinski@cavium.com>
3367
3368 * config/aarch64/aarch64.opt (mverbose-cost-dump): New option.
3369 * config/aarch64/aarch64.c (aarch64_rtx_costs): Use
3370 flag_aarch64_verbose_cost instead of checking for details dump.
3371 (aarch64_rtx_costs_wrapper): Likewise.
3372
3373 2016-11-16 Jakub Jelinek <jakub@redhat.com>
3374
3375 PR rtl-optimization/78378
3376 * combine.c (make_extraction): Use force_to_mode for non-{REG,MEM}
3377 inner only if pos is 0. Fix up formatting.
3378
3379 2016-11-17 Alan Modra <amodra@gmail.com>
3380
3381 PR rtl-optimization/78325
3382 PR rtl-optimization/70890
3383 * ira.c (combine_and_move_insns): Only remove REG_EQUIV notes
3384 for dead regno.
3385
3386 2016-11-16 Jason Merrill <jason@redhat.com>
3387
3388 * rtl.h: Declare gt_ggc_mx and gt_pch_nx.
3389
3390 2016-11-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
3391 Richard Biener <rguenther@suse.de>
3392
3393 PR tree-optimization/77848
3394 * tree-if-conv.c (version_loop_for_if_conversion): When versioning
3395 an outer loop, only save basic block aux information for the inner
3396 loop.
3397 (versionable_outer_loop_p): New function.
3398 (tree_if_conversion): Version the outer loop instead of the inner
3399 one if the pattern will be recognized for outer-loop
3400 vectorization.
3401
3402 2016-11-16 Andrew Burgess <andrew.burgess@embecosm.com>
3403
3404 * gcc/bb-reorder.c: Remove 'toplev.h' include.
3405 (pass_partition_blocks::gate): No longer check
3406 user_defined_section_attribute, instead check the function decl
3407 for a section attribute.
3408 * gcc/c-family/c-attribs.c (handle_section_attribute): No longer
3409 set user_defined_section_attribute.
3410 * gcc/final.c (rest_of_handle_final): Likewise.
3411 * gcc/toplev.c: Remove definition of user_defined_section_attribute.
3412 * gcc/toplev.h: Remove declaration of
3413 user_defined_section_attribute.
3414
3415 2016-11-16 Maciej W. Rozycki <macro@imgtec.com>
3416
3417 * config/mips/mips.md (casesi_internal_mips16_<mode>):
3418 Explicitly switch between JR and JRC for the table jump. Adjust
3419 instruction count.
3420
3421 2016-11-16 Maciej W. Rozycki <macro@imgtec.com>
3422
3423 * config/mips/mips.md (casesi_internal_mips16_<mode>): Set
3424 `insn_count' to 11 rather than 16.
3425
3426 2016-11-16 Maciej W. Rozycki <macro@imgtec.com>
3427
3428 * config/mips/mips.md (casesi_internal_mips16_<mode>): Use the
3429 `ltu' rather than `leu' operation in the RTL pattern
3430
3431 2016-11-16 Maciej W. Rozycki <macro@imgtec.com>
3432
3433 * config/mips/mips.md (casesi_internal_mips16_<mode>): Add
3434 missing <d> instruction prefixes throughout. Correct
3435 formatting.
3436
3437 2016-11-16 Maciej W. Rozycki <macro@imgtec.com>
3438
3439 * config/mips/mips.c (mips_output_jump): Output R_MICROMIPS_JALR
3440 rather than R_MIPS_JALR relocation in microMIPS code. Do not
3441 cancel short delay slots in PIC call relaxation.
3442
3443 2016-11-16 Thomas Preud'homme <thomas.preudhomme@arm.com>
3444
3445 * config/arm/arm.md (arm_addsi3): Add alternative for addition of
3446 general register with general register or ARM constant into SP
3447 register.
3448
3449 2016-11-16 Jakub Jelinek <jakub@redhat.com>
3450
3451 PR fortran/78299
3452 * omp-low.c (expand_omp_for_static_nochunk): Don't assert
3453 that loop->header == body_bb if broken_loop.
3454
3455 2015-11-16 Wilco Dijkstra <wdijkstr@arm.com>
3456
3457 * tree-ssa-math-opts.c (bswap_replace): Remove test
3458 of SLOW_UNALIGNED_ACCESS.
3459
3460 2016-11-16 Alexander Monakov <amonakov@ispras.ru>
3461
3462 * config/nvptx/mkoffload.c (main): Check that either OpenACC or OpenMP
3463 is selected. Pass -mgomp to offload compiler in OpenMP case.
3464 * config/nvptx/nvptx-protos.h (nvptx_shuffle_kind): Move enum
3465 declaration from nvptx.c.
3466 (nvptx_gen_shuffle): Declare.
3467 (nvptx_output_set_softstack): Declare.
3468 * config/nvptx/nvptx.c (nvptx_shuffle_kind): Move to nvptx-protos.h.
3469 (need_softstack_decl): New variable.
3470 (need_unisimt_decl): New variable.
3471 (diagnose_openacc_conflict): New. Use it...
3472 (nvptx_option_override): ...here. Handle TARGET_GOMP.
3473 (nvptx_encode_section_info): Handle "shared" attribute.
3474 (write_as_kernel): Restrict to OpenACC target regions.
3475 (init_softstack_frame): New.
3476 (nvptx_init_unisimt_predicate): New.
3477 (write_omp_entry): New. Use it...
3478 (nvptx_declare_function_name): ...here to emit OpenMP target region
3479 entrypoints. Handle TARGET_SOFT_STACK. Call
3480 nvptx_init_unisimt_predicate.
3481 (nvptx_output_set_softstack): New.
3482 (nvptx_get_drap_rtx): Return %argp as the DRAP if needed.
3483 (nvptx_gen_shuffle): Export.
3484 (nvptx_output_call_insn): Handle COND_EXEC patterns. Emit instruction
3485 predicate.
3486 (nvptx_print_operand): Fix handling of instruction predicates.
3487 (nvptx_get_unisimt_master): New helper function.
3488 (nvptx_get_unisimt_predicate): Ditto.
3489 (nvptx_call_insn_is_syscall_p): Ditto.
3490 (nvptx_unisimt_handle_set): Ditto.
3491 (nvptx_reorg_uniform_simt): New. Transform code for -muniform-simt.
3492 (nvptx_reorg): Call nvptx_reorg_uniform_simt.
3493 (nvptx_handle_shared_attribute): New. Use it...
3494 (nvptx_attribute_table): ... here (new entry).
3495 (nvptx_record_offload_symbol): Handle NULL attributes.
3496 (nvptx_file_end): Handle need_softstack_decl and need_unisimt_decl.
3497 (nvptx_simt_vf): New.
3498 (TARGET_SIMT_VF): Define.
3499 * config/nvptx/nvptx.h (TARGET_CPU_CPP_BUILTINS): Define
3500 __nvptx_softstack or __nvptx_unisimt__ when -msoft-stack, or resp.
3501 -muniform-simt option is active.
3502 (STACK_SIZE_MODE): Define.
3503 (FIXED_REGISTERS): Adjust.
3504 (SOFTSTACK_SLOT_REGNUM): New.
3505 (SOFTSTACK_PREV_REGNUM): New.
3506 (REGISTER_NAMES): Adjust.
3507 (struct machine_function): New fields.
3508 * config/nvptx/nvptx.md (UNSPEC_SET_SOFTSTACK): New.
3509 (UNSPEC_VOTE_BALLOT): Ditto.
3510 (UNSPEC_LANEID): Ditto.
3511 (UNSPECV_NOUNROLL): Ditto.
3512 (atomic): New attribute.
3513 (predicable): New attribute. Generate predicated forms via
3514 define_cond_exec.
3515 (br_true): Mark as not predicable.
3516 (br_false): Ditto.
3517 (br_true_uni): Ditto.
3518 (br_false_uni): Ditto.
3519 (return): Ditto.
3520 (trap_if_true): Ditto.
3521 (trap_if_false): Ditto.
3522 (nvptx_fork): Ditto.
3523 (nvptx_forked): Ditto.
3524 (nvptx_joining): Ditto.
3525 (nvptx_join): Ditto.
3526 (nvptx_barsync): Ditto.
3527 (epilogue): Emit stack restore if TARGET_SOFT_STACK.
3528 (allocate_stack): Implement for TARGET_SOFT_STACK. Remove unused code.
3529 (allocate_stack_<mode>): Remove unused pattern.
3530 (set_softstack_insn): New pattern.
3531 (restore_stack_block): Handle for TARGET_SOFT_STACK.
3532 (nvptx_vote_ballot): New pattern.
3533 (omp_simt_lane): Ditto.
3534 (omp_simt_last_lane): Ditto.
3535 (omp_simt_ordered): Ditto.
3536 (omp_simt_vote_any): Ditto.
3537 (omp_simt_xchg_bfly): Ditto.
3538 (omp_simt_xchg_idx): Ditto.
3539 (nvptx_nounroll): Ditto.
3540 (atomic_compare_and_swap<mode>_1): Mark with atomic attribute.
3541 (atomic_exchange<mode>): Ditto.
3542 (atomic_fetch_add<mode>): Ditto.
3543 (atomic_fetch_addsf): Ditto.
3544 (atomic_fetch_<logic><mode>): Ditto.
3545 * config/nvptx/nvptx.opt (msoft-stack): New option.
3546 (muniform-simt): Ditto.
3547 (mgomp): Ditto.
3548 * config/nvptx/t-nvptx (MULTILIB_OPTIONS): New.
3549 * doc/extend.texi (Nvidia PTX Variable Attributes): New section.
3550 * doc/invoke.texi (msoft-stack): Document.
3551 (muniform-simt): Document
3552 (mgomp): Document.
3553 * doc/tm.texi: Regenerate.
3554 * doc/tm.texi.in (TARGET_SIMT_VF): New hook.
3555 * target.def: Define it.
3556 * target-insns.def (omp_simt_lane): New.
3557 (omp_simt_last_lane): New.
3558 (omp_simt_ordered): New.
3559 (omp_simt_vote_any): New.
3560 (omp_simt_xchg_bfly): New.
3561 (omp_simt_xchg_idx): New.
3562
3563 2016-11-16 Maciej W. Rozycki <macro@imgtec.com>
3564
3565 * config/mips/mips-protos.h (mips_set_text_contents_type): New
3566 prototype.
3567 * config/mips/mips.h (ASM_OUTPUT_BEFORE_CASE_LABEL): New macro.
3568 (ASM_OUTPUT_CASE_END): Likewise.
3569 * config/mips/mips.c (mips_set_text_contents_type): New function.
3570 (mips16_emit_constants): Record the pool's initial label number
3571 with the `consttable' insn. Emit a `consttable_end' insn at the end.
3572 (mips_final_prescan_insn): Call `mips_set_text_contents_type'
3573 for `consttable' insns.
3574 (mips_final_postscan_insn): Call `mips_set_text_contents_type'
3575 for `consttable_end' insns.
3576 * config/mips/mips.md (unspec): Add UNSPEC_CONSTTABLE_END enum value.
3577 (consttable): Add operand.
3578 (consttable_end): New insn.
3579
3580 2016-11-16 Yuri Rumyantsev <ysrumyan@gmail.com>
3581
3582 * params.def (PARAM_VECT_EPILOGUES_NOMASK): New.
3583 * tree-if-conv.c (tree_if_conversion): Make public.
3584 * * tree-if-conv.h: New file.
3585 * tree-vect-data-refs.c (vect_analyze_data_ref_dependences) Avoid
3586 dynamic alias checks for epilogues.
3587 * tree-vect-loop-manip.c (vect_do_peeling): Return created epilog.
3588 * tree-vect-loop.c: include tree-if-conv.h.
3589 (new_loop_vec_info): Add zeroing orig_loop_info field.
3590 (vect_analyze_loop_2): Don't try to enhance alignment for epilogues.
3591 (vect_analyze_loop): Add argument ORIG_LOOP_INFO which is not NULL
3592 if epilogue is vectorized, set up orig_loop_info field of loop_vinfo
3593 using passed argument.
3594 (vect_transform_loop): Check if created epilogue should be returned
3595 for further vectorization with less vf. If-convert epilogue if
3596 required. Print vectorization success for epilogue.
3597 * tree-vectorizer.c (vectorize_loops): Add epilogue vectorization
3598 if it is required, pass loop_vinfo produced during vectorization of
3599 loop body to vect_analyze_loop.
3600 * tree-vectorizer.h (struct _loop_vec_info): Add new field
3601 orig_loop_info.
3602 (LOOP_VINFO_ORIG_LOOP_INFO): New.
3603 (LOOP_VINFO_EPILOGUE_P): New.
3604 (LOOP_VINFO_ORIG_VECT_FACTOR): New.
3605 (vect_do_peeling): Change prototype to return epilogue.
3606 (vect_analyze_loop): Add argument of loop_vec_info type.
3607 (vect_transform_loop): Return created loop.
3608
3609 2016-11-16 Segher Boessenkool <segher@kernel.crashing.org>
3610
3611 * config/rs6000/rs6000.c (rs6000_components_for_bb): Mark the LR
3612 component as used also if LR_REGNO is a live input to the bb.
3613 * df-scan.c (df_get_entry_block_def_set): Return immediately after
3614 clearing the set if DF_SCAN_EMPTY_ENTRY_EXIT is set.
3615 (df_get_exit_block_use_set): Ditto.
3616 * df.h (df_scan_flags): New enum.
3617 * shrink-wrap.c (try_shrink_wrapping_separate): Set
3618 DF_SCAN_EMPTY_ENTRY_EXIT in df_scan->local_flags, and call
3619 df_update_entry_block_defs and df_update_exit_block_uses
3620 at the start; clear the flag and call those functions at the end.
3621
3622 2016-11-16 Richard Sandiford <richard.sandiford@arm.com>
3623 Alan Hayward <alan.hayward@arm.com>
3624 David Sherwood <david.sherwood@arm.com>
3625
3626 * tree-vect-loop-manip.c (slpeel_make_loop_iterate_ntimes): Set
3627 nb_iterations to the number of latch iterations rather than the
3628 number of loop iterations.
3629
3630 2016-11-16 Richard Sandiford <richard.sandiford@arm.com>
3631 Alan Hayward <alan.hayward@arm.com>
3632 David Sherwood <david.sherwood@arm.com>
3633
3634 * combine.c (maybe_swap_commutative_operands): New function.
3635 (combine_simplify_rtx): Use it.
3636 (change_zero_ext): Likewise.
3637 (make_compound_operation_int): New function, split out of...
3638 (make_compound_operation): ...here. Use
3639 maybe_swap_commutative_operands for both.
3640
3641 2016-11-16 Richard Earnshaw <rearnsha@arm.com>
3642
3643 * arm/arm-fpus.def (vfpv2): New FPU, currently an alias for 'vfp'.
3644 (neon-vfpv3): New FPU, currently an alias for 'neon'.
3645 * arm/arm-tables.opt: Regenerated.
3646 * arm/t-aprofile (MULTILIB_REUSE): Add reuse rules for vfpv2 and
3647 neon-vfpv3.
3648 * doc/invoke.texi (ARM: -mfpu): Document new options. Note that 'vfp'
3649 and 'neon' are aliases for specific implementations.
3650
3651 2016-11-16 Richard Sandiford <richard.sandiford@arm.com>
3652 Alan Hayward <alan.hayward@arm.com>
3653 David Sherwood <david.sherwood@arm.com>
3654
3655 * optabs.c (vector_compare_rtx): Add a cmp_mode parameter
3656 and use it in the final call to gen_rtx_fmt_ee.
3657 (expand_vec_cond_expr): Update accordingly.
3658 (expand_vec_cmp_expr): Likewise.
3659
3660 2016-11-16 Richard Sandiford <richard.sandiford@arm.com>
3661 Alan Hayward <alan.hayward@arm.com>
3662 David Sherwood <david.sherwood@arm.com>
3663
3664 * cprop.c (local_cprop_find_used_regs): Use df_read_modify_subreg_p.
3665
3666 2016-11-16 Richard Biener <rguenther@suse.de>
3667
3668 PR middle-end/78333
3669 * gimplify.c (gimplify_function_tree): Do not instrument
3670 GNU extern inline functions.
3671
3672 2016-11-16 Martin Liska <mliska@suse.cz>
3673
3674 PR sanitizer/78270
3675 * gimplify.c (gimplify_switch_expr): Always save previous
3676 gimplify_ctxp->live_switch_vars.
3677
3678 2016-11-16 Andrew Burgess <andrew.burgess@embecosm.com>
3679
3680 * config/arc/arc.md (movb peephole2): New peephole2 to merge two
3681 zero_extract operations to allow a movb to occur.
3682 * testsuite/gcc.target/arc/movb-1.c: Update little endian arc results.
3683 * testsuite/gcc.target/arc/movb-2.c: Likewise.
3684 * testsuite/gcc.target/arc/movb-5.c: Likewise.
3685 * testsuite/gcc.target/arc/movh_cl-1.c: Extend test to cover
3686 little endian arc.
3687
3688 2016-11-16 Richard Sandiford <richard.sandiford@arm.com>
3689 Alan Hayward <alan.hayward@arm.com>
3690 David Sherwood <david.sherwood@arm.com>
3691
3692 * expr.c (emit_group_load_1): Tighten check for whether an
3693 access involves only one operand of a CONCAT. Use extract_bit_field
3694 for constants if the bit range does span the whole operand.
3695
3696 2016-11-16 Richard Sandiford <richard.sandiford@arm.com>
3697 Alan Hayward <alan.hayward@arm.com>
3698 David Sherwood <david.sherwood@arm.com>
3699
3700 * rtlanal.c (rtx_addr_can_trap_p_1): Handle unknown sizes.
3701
3702 2016-11-16 Richard Sandiford <richard.sandiford@arm.com>
3703 Alan Hayward <alan.hayward@arm.com>
3704 David Sherwood <david.sherwood@arm.com>
3705
3706 * tree-vect-loop.c (vect_transform_loop): Protect the updates of
3707 all three iteration counts with an any_* test. Use a single update
3708 for each count. Fix the calculation of nb_iterations_estimate.
3709
3710 2016-11-16 Richard Sandiford <richard.sandiford@arm.com>
3711
3712 * config/pdp11/pdp11.c: Include dbxout.h.
3713
3714 2016-11-16 Richard Sandiford <richard.sandiford@arm.com>
3715
3716 * config/arc/arc.c (arc_loop_hazard): Add missing brackets.
3717
3718 2016-11-16 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3719
3720 PR target/78364
3721 * config/arm/arm.md (*extv_reg): Restrict operands 2 and 3 to the
3722 proper ranges for an SBFX instruction.
3723 (extzv_t2): Likewise for UBFX.
3724
3725 2016-11-16 Richard Biener <rguenther@suse.de>
3726
3727 PR tree-optimization/78348
3728 * tree-loop-distribution.c (enum partition_kind): Add PKIND_MEMMOVE.
3729 (generate_memcpy_builtin): Honor PKIND_MEMCPY on the partition.
3730 (classify_partition): Set PKIND_MEMCPY if dependence analysis
3731 revealed no dependency, PKIND_MEMMOVE otherwise.
3732
3733 2016-11-16 Jakub Jelinek <jakub@redhat.com>
3734
3735 PR sanitizer/77823
3736 * ubsan.c (ubsan_build_overflow_builtin): Add DATAP argument, if
3737 it points to non-NULL tree, use it instead of ubsan_create_data.
3738 (instrument_si_overflow): Handle vector signed integer overflow
3739 checking.
3740 * ubsan.h (ubsan_build_overflow_builtin): Add DATAP argument.
3741 * tree-vrp.c (simplify_internal_call_using_ranges): Punt for
3742 vector IFN_UBSAN_CHECK_*.
3743 * internal-fn.c (expand_addsub_overflow): Add DATAP argument,
3744 pass it through to ubsan_build_overflow_builtin.
3745 (expand_neg_overflow, expand_mul_overflow): Likewise.
3746 (expand_vector_ubsan_overflow): New function.
3747 (expand_UBSAN_CHECK_ADD, expand_UBSAN_CHECK_SUB,
3748 expand_UBSAN_CHECK_MUL): Use tit for vector arithmetics.
3749 (expand_arith_overflow): Adjust expand_*_overflow callers.
3750
3751 2016-11-16 Matthias Klose <doko@ubuntu.com>
3752
3753 * doc/install.texi: Remove references to java/libjava.
3754
3755 2016-11-16 Kugan Vivekanandarajah <kuganv@linaro.org>
3756
3757 * tree-ssa-coalesce.c (register_default_def): Remove
3758 register_ssa_partition.
3759 (create_outofssa_var_map): Likewise.
3760 * tree-ssa-live.c (register_ssa_partition_check): Remove.
3761 * tree-ssa-live.h (register_ssa_partition): Likewise.
3762
3763 2016-11-15 Bernd Edlinger <bernd.edlinger@hotmail.de>
3764
3765 * genattrtab.c (attr_rtx_1): Avoid allocating new rtx objects.
3766 Clear ATTR_CURR_SIMPLIFIED_P for re-used binary rtx objects.
3767 Use DEF_ATTR_STRING for string arguments. Use RTL_HASH for
3768 integer arguments. Only set ATTR_PERMANENT_P on newly hashed
3769 rtx when all sub-rtx are also permanent.
3770 (attr_eq): Simplify.
3771 (attr_copy_rtx): Remove.
3772 (make_canonical, get_attr_value): Use attr_equal_p.
3773 (copy_boolean): Rehash NOT.
3774 (simplify_test_exp_in_temp,
3775 optimize_attrs): Remove call to attr_copy_rtx.
3776 (attr_alt_intersection, attr_alt_union,
3777 attr_alt_complement, mk_attr_alt): Rehash EQ_ATTR_ALT.
3778 (make_automaton_attrs): Use attr_eq.
3779
3780 2016-11-15 Matthias Klose <doko@ubuntu.com>
3781
3782 * doc/install.texi: Remove references to java/libjava.
3783 * doc/sourcebuild.texi: Likewise.
3784 * doc/invoke.texi: Likewise.
3785 * doc/standards.texi: Likewise.
3786
3787 2016-11-15 Richard Sandiford <richard.sandiford@arm.com>
3788 Alan Hayward <alan.hayward@arm.com>
3789 David Sherwood <david.sherwood@arm.com>
3790
3791 * config/i386/i386.h (INCOMING_RETURN_ADDR_RTX): Use Pmode instead
3792 of VOIDmode.
3793 * config/ia64/ia64.h (INCOMING_RETURN_ADDR_RTX): Likewise.
3794 * config/iq2000/iq2000.h (INCOMING_RETURN_ADDR_RTX): Likewise.
3795 * config/m68k/m68k.h (INCOMING_RETURN_ADDR_RTX): Likewise.
3796 * config/microblaze/microblaze.h (INCOMING_RETURN_ADDR_RTX): Likewise.
3797 * config/mips/mips.h (INCOMING_RETURN_ADDR_RTX): Likewise.
3798 * config/mn10300/mn10300.h (INCOMING_RETURN_ADDR_RTX): Likewise.
3799 * config/nios2/nios2.h (INCOMING_RETURN_ADDR_RTX): Likewise.
3800
3801 2016-11-15 Richard Sandiford <richard.sandiford@arm.com>
3802 Alan Hayward <alan.hayward@arm.com>
3803 David Sherwood <david.sherwood@arm.com>
3804
3805 * dce.c (check_argument_store): Pass the size instead of
3806 the memory reference.
3807 (find_call_stack_args): Pass MEM_SIZE to check_argument_store.
3808
3809 2016-11-15 Richard Sandiford <richard.sandiford@arm.com>
3810 Alan Hayward <alan.hayward@arm.com>
3811 David Sherwood <david.sherwood@arm.com>
3812
3813 * alias.c (canon_rtx): Use simplify_gen_binary.
3814
3815 2016-11-15 Richard Sandiford <richard.sandiford@arm.com>
3816 Alan Hayward <alan.hayward@arm.com>
3817 David Sherwood <david.sherwood@arm.com>
3818
3819 * rtl.h (load_extend_op): Declare.
3820 * rtlanal.c (load_extend_op): New function.
3821 (nonzero_bits1): Use it.
3822 (num_sign_bit_copies1): Likewise.
3823 * cse.c (cse_insn): Likewise.
3824 * fold-const.c (fold_single_bit_test): Likewise.
3825 (fold_unary_loc): Likewise.
3826 * fwprop.c (free_load_extend): Likewise.
3827 * postreload.c (reload_cse_simplify_set): Likewise.
3828 (reload_cse_simplify_operands): Likewise.
3829 * combine.c (try_combine): Likewise.
3830 (simplify_set): Likewise. Remove redundant SUBREG_BYTE and
3831 subreg_lowpart_p checks.
3832
3833 2016-11-15 Richard Sandiford <richard.sandiford@arm.com>
3834 Alan Hayward <alan.hayward@arm.com>
3835 David Sherwood <david.sherwood@arm.com>
3836
3837 * combine.c (simplify_shift_const_1): Use the number of bits
3838 in the inner mode to determine the range of the shift.
3839 When handling shifts of vectors, skip any rules that apply
3840 only to scalars.
3841
3842 2016-11-15 Richard Sandiford <richard.sandiford@arm.com>
3843 Alan Hayward <alan.hayward@arm.com>
3844 David Sherwood <david.sherwood@arm.com>
3845
3846 * rtlanal.c (num_sign_bit_copies1): Calculate bitwidth after
3847 handling VOIDmode.
3848
3849 2016-11-15 Matthias Klose <doko@ubuntu.com>
3850
3851 * doc/install.texi: Remove references to gcj/libjava.
3852 * doc/invoke.texi: Likewise.
3853
3854 2016-11-15 Jeff Law <law@redhat.com>
3855
3856 * tree-ssa-threadbackward.c (fsm_find_thread_path): Remove unneeded
3857 parameter. Callers changed.
3858 (check-subpath_and_update_thread_path): Extracted from
3859 fsm_find_control_statement_thread_paths.
3860 (handle_phi, handle_assignment, handle_assignment_p): Likewise.
3861 (handle_phi, handle_assignment): Allow any constant node, not
3862 just INTEGER_CST.
3863
3864 2016-11-15 Claudiu Zissulescu <claziss@synopsys.com>
3865
3866 * config/arc/arc-arch.h: New file.
3867 * config/arc/arc-arches.def: Likewise.
3868 * config/arc/arc-cpus.def: Likewise.
3869 * config/arc/arc-options.def: Likewise.
3870 * config/arc/t-multilib: Likewise.
3871 * config/arc/genmultilib.awk: Likewise.
3872 * config/arc/genoptions.awk: Likewise.
3873 * config/arc/arc-tables.opt: Likewise.
3874 * config/arc/driver-arc.c: Likewise.
3875 * testsuite/gcc.target/arc/nps400-cpu-flag.c: Likewise.
3876 * common/config/arc/arc-common.c (arc_handle_option): Trace
3877 toggled options.
3878 * config.gcc (arc*-*-*): Add arc-tables.opt to arc's extra
3879 options; check for supported cpu against arc-cpus.def file.
3880 (arc*-*-elf*, arc*-*-linux-uclibc*): Use new make fragment; define
3881 TARGET_CPU_BUILD macro; add driver-arc.o as an extra object.
3882 * config/arc/arc-c.def: Add emacs local variables.
3883 * config/arc/arc-opts.h (processor_type): Use arc-cpus.def file.
3884 (FPU_FPUS, FPU_FPUD, FPU_FPUDA, FPU_FPUDA_DIV, FPU_FPUDA_FMA)
3885 (FPU_FPUDA_ALL, FPU_FPUS_DIV, FPU_FPUS_FMA, FPU_FPUS_ALL)
3886 (FPU_FPUD_DIV, FPU_FPUD_FMA, FPU_FPUD_ALL): New defines.
3887 (DEFAULT_arc_fpu_build): Define.
3888 (DEFAULT_arc_mpy_option): Define.
3889 * config/arc/arc-protos.h (arc_init): Delete.
3890 * config/arc/arc.c (arc_cpu_name): New variable.
3891 (arc_selected_cpu, arc_selected_arch, arc_arcem, arc_archs)
3892 (arc_arc700, arc_arc600, arc_arc601): New variable.
3893 (arc_init): Add static; remove selection of default tune value,
3894 cleanup obsolete error messages.
3895 (arc_override_options): Make use of .def files for selecting the
3896 right cpu and option configurations.
3897 * config/arc/arc.h (stdbool.h): Include.
3898 (TARGET_CPU_DEFAULT): Define.
3899 (CPP_SPEC): Remove mcpu=NPS400 handling.
3900 (arc_cpu_to_as): Declare.
3901 (EXTRA_SPEC_FUNCTIONS): Define.
3902 (OPTION_DEFAULT_SPECS): Likewise.
3903 (ASM_DEFAULT): Remove.
3904 (ASM_SPEC): Use arc_cpu_to_as.
3905 (DRIVER_SELF_SPECS): Remove deprecated options.
3906 (arc_base_cpu): Declare.
3907 (TARGET_ARC600, TARGET_ARC601, TARGET_ARC700, TARGET_EM)
3908 (TARGET_HS, TARGET_V2, TARGET_ARC600): Make them use arc_base_cpu
3909 variable.
3910 (MULTILIB_DEFAULTS): Use ARC_MULTILIB_CPU_DEFAULT.
3911 * config/arc/arc.md (attr_cpu): Remove.
3912 * config/arc/arc.opt (mno-mpy): Deprecate.
3913 (mcpu=ARC600, mcpu=ARC601, mcpu=ARC700, mcpu=NPS400, mcpu=ARCEM)
3914 (mcpu=ARCHS): Remove.
3915 (mcrc, mdsp-packa, mdvbf, mmac-d16, mmac-24, mtelephony, mrtsc):
3916 Deprecate.
3917 (mbarrel_shifte, mspfp_, mdpfp_, mdsp_pack, mmac_): Remove.
3918 (arc_fpu): Use new defines.
3919 (mpy-option): Change to use numeric or string like inputs.
3920 * config/arc/t-arc (driver-arc.o): New target.
3921 (arc-cpus, t-multilib, arc-tables.opt): Likewise.
3922 * config/arc/t-arc-newlib: Delete.
3923 * config/arc/t-arc-uClibc: Renamed to t-uClibc.
3924 * doc/invoke.texi (ARC): Update arc options.
3925
3926 2016-11-15 Maciej W. Rozycki <macro@imgtec.com>
3927
3928 * config/mips/mips.c (mips16_emit_constants): Emit `consttable'
3929 insn at the beginning of the constant pool.
3930 (mips_insert_insn_pseudos): New function.
3931 (mips_machine_reorg2): Call it.
3932 * config/mips/mips.md (unspec): Add UNSPEC_CONSTTABLE and
3933 UNSPEC_INSN_PSEUDO enum values.
3934 (insn_pseudo, consttable): New insns.
3935
3936 2016-11-15 Michael Matz <matz@suse.de>
3937
3938 PR missed-optimization/77881
3939 * combine.c (simplify_comparison): Remove useless subregs
3940 also inside the loop, not just after it.
3941 (make_compound_operation): Recognize some subregs as being
3942 masking as well.
3943
3944 2016-11-15 Richard Sandiford <richard.sandiford@arm.com>
3945 Alan Hayward <alan.hayward@arm.com>
3946 David Sherwood <david.sherwood@arm.com>
3947
3948 * dwarf2out.c (mem_loc_descriptor): Fix GET_MODE_CLASS/
3949 GET_MODE_SIZE typo.
3950
3951 2016-11-14 Michael Meissner <meissner@linux.vnet.ibm.com>
3952
3953 * config/rs6000/rs6000.c (rs6000_expand_vector_set): Add support
3954 for using xxinsertw and vinsert{b,h} on ISA 3.0.
3955
3956 * config/rs6000/vsx.md (vsx_extract_<mode>): Update comment.
3957 (vsx_set_<mode>_p9): New insn to generate xxinsertw and
3958 vinsert{b,h} on ISA 3.0.
3959
3960 2016-11-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
3961
3962 * tree-ssa-math-opts.c (find_bswap_or_nop): Zero out bytes in cmpxchg
3963 and cmpnop in two steps: first the ones not accessed in original gimple
3964 expression in a endian independent way and then the ones not accessed
3965 in the final result in an endian-specific way.
3966 (bswap_replace): Stop doing big endian adjustment.
3967
3968 2016-11-14 Uros Bizjak <ubizjak@gmail.com>
3969
3970 * config/i386/i386.md (*andndi3_doubleword): Merge operand constraints.
3971 (*ashl<mode>3_doubleword): Ditto.
3972
3973 2016-11-14 Martin Liska <mliska@suse.cz>
3974
3975 * tree-ssa-dse.c (dse_optimize_stmt): Remove quotes and extra new line.
3976
3977 2016-11-14 Prasad Ghangal <prasad.ghangal@gmail.com>
3978 Richard Biener <rguenther@suse.de>
3979
3980 * doc/invoke.texi (fgimple): Document.
3981 * dumpfile.h (TDF_GIMPLE): Add.
3982 * dumpfile.c (dump_options): Add gimple.
3983 * gimple-pretty-print.c (dump_gimple_switch): Adjust dump
3984 for TDF_GIMPLE.
3985 (dump_gimple_label): Likewise.
3986 (dump_gimple_phi): Likewise.
3987 (dump_gimple_bb_header): Likewise.
3988 (dump_phi_nodes): Likewise.
3989 (pp_cfg_jump): Likewise. Pass in dump flags.
3990 (dump_implicit_edges): Adjust.
3991 * passes.c (pass_init_dump_file): Do not dump function header
3992 for TDF_GIMPLE.
3993 * tree-cfg.c (dump_function_to_file): Dump function return type
3994 and __GIMPLE keyword for TDF_GIMPLE. Change guard for dumping
3995 GIMPLE stmts.
3996 * tree-pretty-print.c (dump_decl_name): Adjust dump for TDF_GIMPLE.
3997 (dump_generic_node): Likewise.
3998 * function.h (struct function): Add pass_startwith member.
3999 * passes.c (execute_one_pass): Implement startwith.
4000 * tree-ssanames.c (make_ssa_name_fn): New argument, check for version
4001 and assign proper version for parsed ssa names.
4002 * tree-ssanames.h (make_ssa_name_fn): Add new argument to the function.
4003 * internal-fn.c (expand_PHI): New function.
4004 * internal-fn.h (expand_PHI): Declared here.
4005 * internal-fn.def: New defination for PHI.
4006 * tree-cfg.c (lower_phi_internal_fn): New function.
4007 (build_gimple_cfg): Call it.
4008 (verify_gimple_call): Condition for passing label as arg in internal
4009 function PHI.
4010 * tree-into-ssa.c (rewrite_add_phi_arguments): Handle already
4011 present PHIs with arguments.
4012
4013 2016-11-14 Martin Liska <mliska@suse.cz>
4014
4015 PR bootstrap/78069
4016 * common.opt: Add prefer-atomic as a new enum value for
4017 -fprofile-update.
4018 * coretypes.h: Likewise.
4019 * doc/invoke.texi: Document the new option value.
4020 * gcc.c: Replace atomic with prefer-atomic. Remove warning.
4021 * tree-profile.c (tree_profiling): Select default value
4022 of -fprofile-update when 'prefer-atomic' is selected.
4023
4024 2016-11-14 Wilco Dijkstra <wdijkstr@arm.com>
4025
4026 * config/arm/cortex-a57.md (cortex_a57_alu): Move extend here, bfm...
4027 (cortex_a57_alu_shift): ...here.
4028
4029 2016-11-14 Wilco Dijkstra <wdijkstr@arm.com>
4030
4031 * config/aarch64/aarch64.md (aarch64_ashl_sisd_or_int_<mode>3)
4032 Use bfx attribute.
4033 (aarch64_lshr_sisd_or_int_<mode>3): Likewise.
4034 (aarch64_ashr_sisd_or_int_<mode>3): Likewise.
4035 (<optab>si3_insn_uxtw): Likewise.
4036 (<optab><mode>3_insn): Likewise.
4037 (<ANY_EXTEND:optab><GPI:mode>_ashl<SHORT:mode>): Likewise.
4038 (zero_extend<GPI:mode>_lshr<SHORT:mode>): Likewise.
4039 (extend<GPI:mode>_ashr<SHORT:mode>): Likewise.
4040 (<optab><mode>): Likewise.
4041 (insv<mode>): Likewise.
4042 (andim_ashift<mode>_bfiz): Likewise.
4043 * config/aarch64/thunderx.md (thunderx_shift): Add bfx.
4044 * config/arm/cortex-a53.md (cortex_a53_alu_shift): Likewise.
4045 * config/arm/cortex-a57.md (cortex_a57_alu): Add bfx.
4046 * config/arm/exynos-m1.md (exynos_m1_alu): Add bfx.
4047 (exynos_m1_alu_p): Likewise.
4048 * config/arm/types.md: Add bfx.
4049 * config/arm/xgene1.md (xgene1_bfm): Add bfx.
4050
4051 2016-11-14 Wilco Dijkstra <wdijkstr@arm.com>
4052
4053 * config/aarch64/aarch64.c (cortexa57_vector_cost):
4054 Change vec_stmt_cost, vec_align_load_cost and vec_unalign_load_cost.
4055
4056 2016-11-14 Richard Biener <rguenther@suse.de>
4057
4058 PR tree-optimization/78312
4059 * gimple-ssa-backprop.c (backprop::prepare_change): Reset
4060 flow-sensitive info.
4061
4062 2016-11-14 Georg-Johann Lay <avr@gjlay.de>
4063
4064 PR target/78093
4065 * doc/invoke.texi (AVR Options) [-mabsdata]: Document new option.
4066 * config/avr/avr.opt (-mabsdata): New option.
4067 * config/avr/avr-arch.h (avr_device_specific_features): Add AVR_ISA_LDS.
4068 * config/avr/avr.c (avr_encode_section_info) [AVR_TINY]: If
4069 -mabsdata & symbol is not progmem, tag as AVR_SYMBOL_FLAG_TINY_ABSDATA.
4070 * config/avr/avr-mcus.def (attiny4/5/9/10/20): Use AVR_ISA_LDS.
4071 * config/avr/gen-avr-mmcu-specs.c (print_mcu): Print cc1_absdata
4072 spec depending on AVR_ISA_LDS.
4073 * config/avr/specs.h (CC1_SPEC): Enhanced by cc1_absdata spec.
4074
4075 2016-11-13 Jakub Jelinek <jakub@redhat.com>
4076
4077 * match.pd: Don't try to compare addresses of variables with
4078 DECL_VALUE_EXPR.
4079
4080 2016-11-13 Kugan Vivekanandarajah <kuganv@linaro.org>
4081
4082 * ipa-cp.c (ipa_get_jf_pass_through_result): Skip unary expressions.
4083 (propagate_vr_accross_jump_function): Handle unary expressions.
4084 * ipa-prop.c (ipa_set_jf_unary_pass_through): New.
4085 (load_from_param_1): New.
4086 (load_from_unmodified_param): Factor common part into load_from_param_1.
4087 (load_from_param): New.
4088 (compute_complex_assign_jump_func): Handle unary expressions.
4089 (update_jump_functions_after_inlining): Likewise.
4090 (ipa_write_jump_function): Likewise.
4091 (ipa_read_jump_function): Likewise.
4092
4093 2016-11-13 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
4094
4095 PR c/35503
4096 * doc/invoke.texi: Document Wrestrict.
4097 * pretty-print.c (pp_format): Add case for "Z" specifier.
4098 (test_pp_format): Test "Z" specifier.
4099
4100 2016-11-13 Eric Botcazou <ebotcazou@adacore.com>
4101
4102 * ipa-icf.c (sem_function::merge): Do not create a wrapper also if the
4103 original function needs a static chain.
4104
4105 2016-11-13 David Edelsohn <dje.gcc@gmail.com>
4106
4107 PR target/78336
4108 * config/rs6000/rs6000.c (rs6000_asm_weaken_decl): Protect
4109 ASM_OUTPUT_DEF.
4110
4111 2016-11-12 Segher Boessenkool <segher@kernel.crashing.org>
4112
4113 PR target/77957
4114 * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Don't
4115 return early if !optional_tbtab.
4116
4117 2016-11-11 Eric Botcazou <ebotcazou@adacore.com>
4118
4119 PR rtl-optimization/59461
4120 * doc/rtl.texi (paradoxical subregs): Add missing word.
4121 * combine.c (reg_nonzero_bits_for_combine): Do not discard results
4122 in modes with precision larger than that of last_set_mode.
4123 * rtlanal.c (nonzero_bits1) <SUBREG>: If WORD_REGISTER_OPERATIONS is
4124 set and LOAD_EXTEND_OP is appropriate, propagate results from inner
4125 REGs to paradoxical SUBREGs.
4126 (num_sign_bit_copies1) <SUBREG>: Likewise. Check that the mode is not
4127 larger than a word before invoking LOAD_EXTEND_OP on it.
4128
4129 2016-11-11 Michael Meissner <meissner@linux.vnet.ibm.com>
4130
4131 PR target/78243
4132 * config/rs6000/vsx.md (vsx_extract_<mode>_p9): Correct the
4133 element order for little endian ordering.
4134
4135 * config/rs6000/altivec.md (reduc_plus_scal_<mode>): Use
4136 VECTOR_ELT_ORDER_BIG and not BYTES_BIG_ENDIAN to adjust element
4137 number.
4138
4139 2016-11-11 Uros Bizjak <ubizjak@gmail.com>
4140
4141 PR target/78310
4142 * config/i386/i386.md (rotate to rotatex splitter): Avoid overflow
4143 when calculating operand 2.
4144 (rotate to rotatex zext splitter): Ditto.
4145
4146 2016-11-11 Jeff Law <law@redhat.com>
4147
4148 * gimple-ssa-isolate-paths.c (is_divmod_with_given_divisor): New
4149 function.
4150 (stmt_uses_name_in_undefined_way): New function, extracted from
4151 find_implicit_erroneous_behavior and extended for div/mod case.
4152 (stmt_uses_0_or_null_in_undefined_way): New function, extracted from
4153 find_explicit_erroneous_behavior and extended for div/mod case.
4154 (find_implicit_erroneous_behavior): Use new helper function.
4155 (find_explicit_erroneous_behavior): Use new helper function.
4156
4157 2016-11-11 Richard Biener <rguenther@suse.de>
4158
4159 PR tree-optimization/71575
4160 * graphite-isl-ast-to-gimple.c (copy_cond_phi_nodes): Remove
4161 bogus assert.
4162
4163 2016-11-11 Richard Biener <rguenther@suse.de>
4164
4165 PR middle-end/78295
4166 * tree-ssa-uninit.c (warn_uninitialized_vars): Do not warn
4167 about uninitialized destination arg of BIT_INSERT_EXPR.
4168
4169 2016-11-10 Sandra Loosemore <sandra@codesourcery.com>
4170
4171 PR c/37998
4172 * doc/invoke.texi (Code Gen Options) [-fno-common]: Use correct
4173 terminology. Expand to remove ambiguity.
4174
4175 2016-11-10 Segher Boessenkool <segher@kernel.crashing.org>
4176
4177 PR rtl-optimization/78232
4178 * combine.c (try_combine): Add a big comment about why reusing i2dest
4179 is undesirable.
4180 (change_zero_ext): Do not call simplify_gen_binary, do the
4181 simplifications manually.
4182
4183 2016-11-10 Michael Meissner <meissner@linux.vnet.ibm.com>
4184
4185 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): If ISA 3.0,
4186 enable HImode and QImode to go in vector registers by default if
4187 the -mvsx-small-integer option is enabled.
4188 (rs6000_secondary_reload_simple_move): Likewise.
4189 (rs6000_preferred_reload_class): Don't force integer constants to
4190 be loaded into vector registers that we can easily make into
4191 memory (or being created in the GPRs and moved over with direct move).
4192 * config/rs6000/vsx.md (UNSPEC_P9_MEMORY): Delete, no longer used.
4193 (vsx_extract_<mode>): Rework V4SImode, V8HImode, and V16QImode
4194 vector extraction on ISA 3.0 when the scalar integer can be
4195 allocated in vector registers. Generate the VEC_SELECT directy,
4196 and don't use UNSPEC's to avoid having the scalar type in a vector
4197 register. Make the expander target registers, and let the
4198 combiner fold in results storing to memory, if the machine
4199 supports stores.
4200 (vsx_extract_<mode>_di): Likewise.
4201 (vsx_extract_<mode>_p9): Likewise.
4202 (vsx_extract_<mode>_di_p9): Likewise.
4203 (vsx_extract_<mode>_store_p9): Likewise.
4204 (vsx_extract_si): Likewise.
4205 (vsx_extract_<mode>_p8): Likewise.
4206 (p9_lxsi<wd>zx): Delete, no longer used.
4207 (p9_stxsi<wd>x): Likewise.
4208 * config/rs6000/rs6000.md (INT_ISA3): New mode iterator for
4209 integers in vector registers for ISA 3.0.
4210 (QHI): Update comment.
4211 (zero_extendqi<mode>2): Add support for ISA 3.0 scalar load or
4212 vector extract instructions in sign/zero extend.
4213 (zero_extendhi<mode>): Likewise.
4214 (extendqi<mode>): Likewise.
4215 (extendhi<mode>2): Likewise.
4216 (HImode splitter for load/sign extend in vector register): Likewise.
4217 (float<QHI:mode><FP_ISA3:mode>2): Eliminate old method of
4218 optimizing floating point conversions to/from small data types and
4219 rewrite it to support QImode/HImode being allowed in vector
4220 registers on ISA 3.0.
4221 (float<QHI:mode><FP_ISA3:mode>2_internal): Likewise.
4222 (floatuns<QHI:mode><FP_ISA3:mode>2): Likewise.
4223 (floatuns<QHI:mode><FP_ISA3:mode>2_internal): Likewise.
4224 (fix_trunc<SFDF:mode><QHI:mode>2): Likewise.
4225 (fix_trunc<SFDF:mode><QHI:mode>2_internal): Likewise.
4226 (fixuns_trunc<SFDF:mode><QHI:mode>2): Likewise.
4227 (fixuns_trunc<SFDF:mode><QHI:mode>2_internal): Likewise.
4228 VSPLITISW on ISA 2.07.
4229 (movhi_internal): Combine movhi_internal and movqi_internal into
4230 one mov<mode>_internal with an iterator. Add support for QImode
4231 and HImode being allowed in vector registers. Make large number
4232 of attributes and constraints easier to read.
4233 (movqi_internal): Likewise.
4234 (mov<mode>_internal): Likewise.
4235 (movdi_internal64): Fix constraint to allow loading -16..15 with
4236 VSPLITISW on ISA 2.07.
4237 (integer XXSPLTIB splitter): Add support for QI, HI, and SImode as
4238 well as DImode.
4239
4240 2016-11-10 Pat Haugen <pthaugen@us.ibm.com>
4241
4242 PR rtl-optimization/78241
4243 * loop-unroll.c (unroll_loop_runtime_iterations): Don't adjust 'niter',
4244 but emit initial peel copy if niter expr is not reliable.
4245
4246 2016-11-10 Segher Boessenkool <segher@kernel.crashing.org>
4247
4248 * dwarf2cfi.c (dump_cfi_row): Add forward declaration.
4249 (maybe_record_trace_start): If the CFI is different on the new and
4250 old paths, print out both to the dump file before ICEing.
4251
4252 2016-11-10 Vladimir Makarov <vmakarov@redhat.com>
4253
4254 * target.def (additional_allocno_class_p): New.
4255 * hooks.h (hook_bool_reg_class_t_false): New prototype.
4256 * hooks.c (hook_bool_reg_class_t_false): New.
4257 * ira.c (setup_allocno_and_important_classes): Use the new hook.
4258 * doc/tm.texi.in (TARGET_ADDITIONAL_ALLOCNO_CLASS_P): Add it.
4259 * doc/tm.texi: Update.
4260
4261 2016-11-10 Jason Merrill <jason@redhat.com>
4262
4263 * gengtype.c (new_structure): Append to structures list.
4264 (find_structure): Likewise.
4265
4266 2016-11-10 Jim Wilson <jim.wilson@linaro.org>
4267
4268 * tree-loop-distribution.c (pg_add_dependence_edges): Return 2 if
4269 this_dir is 2. Check for this_dir non-zero before dir != this_dir
4270 check.
4271
4272 2016-11-10 Jakub Jelinek <jakub@redhat.com>
4273
4274 * omp-low.c (lower_omp_target): Fix up argument to is_reference.
4275 (expand_omp_ordered_sink): Handle TREE_PURPOSE of deps being
4276 TRUNC_DIV_EXPR.
4277 * gimplify.c (gimplify_scan_omp_clauses): Likewise. Set
4278 ctx->target_map_scalars_firstprivate on OMP_TARGET even for Fortran.
4279 Remove omp_no_lastprivate callers. Propagate lastprivate on combined
4280 teams distribute parallel for simd even to distribute and teams
4281 construct. For OMP_CLAUSE_DEPEND add missing break at the end of
4282 OMP_CLAUSE_DEPEND_SINK case.
4283 (omp_notice_variable): Use lang_hooks.decls.omp_scalar_p.
4284 (omp_no_lastprivate): Removed.
4285 (gimplify_adjust_omp_clauses): Remove omp_no_lastprivate callers.
4286 (gimplify_omp_for): Likewise.
4287 (computable_teams_clause): Fail for automatic vars from current
4288 function not yet seen in bind expr.
4289 * langhooks.c (lhd_omp_scalar_p): New function.
4290 * langhooks.h (struct lang_hooks_for_decls): Add omp_scalar_p.
4291 * varpool.c (varpool_node::get_create): Set node->offloading
4292 even for DECL_EXTERNAL decls.
4293 * langhooks-def.h (lhd_omp_scalar_p): New prototype.
4294 (LANG_HOOKS_OMP_SCALAR_P): Define.
4295 (LANG_HOOKS_DECLS): Use it.
4296
4297 2016-11-10 Martin Liska <mliska@suse.cz>
4298
4299 PR sanitizer/78270
4300 * gimplify.c (gimplify_switch_expr): Create live_switch_vars
4301 only when SWITCH_BODY is a BIND_EXPR.
4302
4303 2016-11-10 Pierre-Marie de Rodat <derodat@adacore.com>
4304
4305 PR debug/78112
4306 * dwarf2out.c (dwarf2out_early_global_decl): Call dwarf2out_decl
4307 on the context only when it has no DIE yet.
4308
4309 2016-11-10 Richard Earnshaw <rearnsha@arm.com>
4310
4311 * arm.h (target_cpus): Delete.
4312 * arm-opts.h (enum processor_type): Prefix entires with TARGET_CPU_.
4313 * arm.c (all_cores): Prefix IDENT with TARGET_CPU_.
4314 (all_architectures): Likewise.
4315 (arm_option_override): Adjust use of CPU enums.
4316 (arm_sched_reorder): Likewise.
4317 * vfp.md (movdi_vfp, movdi_vfp_cortexa8): Likewise.
4318 * arm.opt (mcpu, mtune): Adjust use of CPU enums.
4319 * arm/genopt.sh (processor_type): Prefix enumeration entries with
4320 TARGET_CPU_.
4321 * arm-tables.opt: Regenerated.
4322
4323 2016-11-10 Siddhesh Poyarekar <siddhesh.poyarekar@linaro.org>
4324
4325 * config/aarch64/aarch64-cores.def (qdf24xx): Update part number.
4326 (falkor): New core.
4327 * config/aarch64/aarch64-tune.md: Regenerated.
4328 * config/arm/arm-cores.def (falkor): New core.
4329 * config/arm/arm-tables.opt: Regenerated.
4330 * config/arm/arm-tune.md: Regenerated.
4331 * config/arm/bpabi.h (BE8_LINK_SPEC): Add falkor support.
4332 * config/arm/t-aprofile (MULTILIB_MATCHES): Likewise.
4333 * doc/invoke.texi (AArch64 Options/-mtune): Document it.
4334 (ARM Options/-mtune): Likewise.
4335
4336 2016-11-10 Kugan Vivekanandarajah <kuganv@linaro.org>
4337
4338 Revert
4339 2016-11-09 Kugan Vivekanandarajah <kuganv@linaro.org>
4340
4341 * ipa-cp.c (ipa_get_jf_pass_through_result): Handle unary expressions.
4342 (propagate_vr_accross_jump_function): Likewise.
4343 * ipa-prop.c (ipa_set_jf_unary_pass_through): New.
4344 (load_from_param_1): New.
4345 (load_from_unmodified_param): Factor common part into load_from_param_1.
4346 (load_from_param): New.
4347 (compute_complex_assign_jump_func): Handle unary expressions.
4348 (ipa_write_jump_function): Likewise.
4349 (ipa_read_jump_function): Likewise.
4350
4351 2016-11-09 Segher Boessenkool <segher@kernel.crashing.org>
4352
4353 * simplify-rtx.c (simplify_binary_operation_1): Simplify
4354 (xor (and (xor A B) C) B) to (ior (and A C) (and B ~C)) and
4355 (xor (and (xor A B) C) A) to (ior (and A ~C) (and B C)) if C
4356 is a const_int.
4357
4358 2016-11-09 David Malcolm <dmalcolm@redhat.com>
4359
4360 * print-rtl-function.c: Include varasm.h.
4361 (print_any_param_name): New function.
4362 (print_param): New function.
4363 (print_rtx_function): Call print_param for each argument.
4364 * print-rtl.c (rtx_writer::finish_directive): New function.
4365 * print-rtl.h (rtx_writer::finish_directive): New decl.
4366
4367 2016-11-09 Uros Bizjak <ubizjak@gmail.com>
4368
4369 PR target/78262
4370 * config/i386/i386.md (*<shift_insn><mode>3_doubleword): Mark
4371 operand 0 as earlyclobber.
4372 (*ashl<mode>3_doubleword): Ditto for all operand 0 alternatives.
4373
4374 2016-11-09 Martin Liska <mliska@suse.cz>
4375
4376 * fold-const-call.c (fold_const_call): Fix up type of s0 and s1.
4377
4378 2016-11-09 Jakub Jelinek <jakub@redhat.com>
4379
4380 PR target/77718
4381 * builtins.c (expand_builtin_memcmp): Formatting fix.
4382
4383 * flag-types.h (enum sanitize_code): Add SANITIZE_SHIFT_BASE
4384 and SANITIZE_SHIFT_EXPONENT, change SANITIZE_SHIFT to bitwise
4385 or of them, renumber other enumerators.
4386 * opts.c (sanitizer_opts): Add shift-base and shift-exponent.
4387 * doc/invoke.texi: Document -fsanitize=shift-base and
4388 -fsanitize-shift-exponent, document -fsanitize=shift as
4389 having those 2 suboptions.
4390
4391 2016-11-09 Richard Biener <rguenther@suse.de>
4392
4393 * fold-const.c (tree_swap_operands_p): Remove unused arg.
4394 * fold-const.c (tree_swap_operands_p): Likewise.
4395 (fold_binary_loc): Adjust.
4396 (fold_ternary_loc): Likewise.
4397 * genmatch.c (dt_operand::gen_gimple_exp): Likewise.
4398 * gimple-fold.c (fold_stmt_1): Likewise.
4399 * gimple-match-head.c (gimple_resimplify2): Likewise.
4400 (gimple_resimplify3): Likewise.
4401 (gimple_simplify): Likewise.
4402 * tree-ssa-dom.c (record_equality): Likewise.
4403 * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Likewise.
4404 * tree-ssa-sccvn.c (vn_nary_op_compute_hash): Likewise.
4405 * tree-ssa-threadedge.c (simplify_control_stmt_condition_1): Likewise.
4406
4407 2016-11-09 Richard Biener <rguenther@suse.de>
4408
4409 * tree-ssa-dom.c (canonicalize_comparison): Remove.
4410 (optimize_stmt): Remove redundant pre-propagation canonicalization
4411 of comparison operand order.
4412
4413 2016-11-09 Martin Liska <mliska@suse.cz>
4414
4415 * fold-const-call.c (fold_const_call): Fix the folding.
4416
4417 2016-11-09 Richard Biener <rguenther@suse.de>
4418
4419 * common.opt (flag_evaluation_order): Remove.
4420 * expr.c (expand_operands): Remove code guarded by
4421 flag_evaluation_order.
4422 * fold-const.c (reorder_operands_p): Remove, it always returns
4423 true.
4424 (negate_expr_p): Remove calls to reorder_operands_p.
4425 (fold_negate_expr): Likewise.
4426 (tree_swap_operands_p): Likewise.
4427 (fold_binary_loc): Likewise.
4428
4429 2016-11-09 Andreas Schwab <schwab@suse.de>
4430
4431 PR target/78254
4432 * config/m68k/m68k.md: Reject out-of-range bit pos in bit-fields
4433 insns operating on a register.
4434
4435 2016-11-09 Richard Biener <rguenther@suse.de>
4436
4437 PR tree-optimization/78007
4438 * tree-vect-stmts.c (vectorizable_bswap): New function.
4439 (vectorizable_call): Call vectorizable_bswap for
4440 BUILT_IN_BSWAP{16,32,64} if arguments are not promoted.
4441
4442 2016-11-09 Richard Biener <rguenther@suse.de>
4443
4444 * tree-vect-data-refs.c (vect_compute_data_ref_alignment):
4445 Look at the DR_BASE_ADDRESS object for forcing alignment.
4446
4447 2016-11-09 Kugan Vivekanandarajah <kuganv@linaro.org>
4448
4449 * ipa-cp.c (ipa_get_jf_pass_through_result): Handle unary expressions.
4450 (propagate_vr_accross_jump_function): Likewise.
4451 * ipa-prop.c (ipa_set_jf_unary_pass_through): New.
4452 (load_from_param_1): New.
4453 (load_from_unmodified_param): Factor common part into load_from_param_1.
4454 (load_from_param): New.
4455 (compute_complex_assign_jump_func): Handle unary expressions.
4456 (ipa_write_jump_function): Likewise.
4457 (ipa_read_jump_function): Likewise.
4458
4459 2016-11-09 Kugan Vivekanandarajah <kuganv@linaro.org>
4460
4461 PR ipa/78121
4462 * ipa-cp.c (propagate_vr_accross_jump_function): Pass param type.
4463 Also fold constant passed as argument while computing value range.
4464 (propagate_constants_accross_call): Pass param type.
4465 * ipa-prop.c: export ipa_get_callee_param_type.
4466 * ipa-prop.h: export ipa_get_callee_param_type.
4467
4468 2016-11-09 Maxim Ostapenko <m.ostapenko@samsung.com>
4469
4470 * asan.h (asan_intercepted_p): Handle BUILT_IN_STRCSPN,
4471 BUILT_IN_STRPBRK, BUILT_IN_STRSPN and BUILT_IN_STRSTR.
4472
4473 2016-11-09 Maxim Ostapenko <m.ostapenko@samsung.com>
4474
4475 * asan.h (ASAN_STACK_MAGIC_PARTIAL): Remove.
4476 * asan.c (ASAN_STACK_MAGIC_PARTIAL): Replace with
4477 ASAN_STACK_MAGIC_MIDDLE.
4478 (asan_global_struct): Increase the size of fields.
4479 (asan_add_global): Add new field constructor.
4480 * sanitizer.def (__asan_version_mismatch_check_v6): Replace with
4481 __asan_version_mismatch_check_v8.
4482
4483 2016-11-08 David Edelsohn <dje.gcc@gmail.com>
4484
4485 * dwarf2asm.c (USE_LINKONCE_INDIRECT): Test XCOFF_DEBUGGING_INFO
4486 at runtime.
4487
4488 2016-11-08 Uros Bizjak <ubizjak@gmail.com>
4489
4490 PR target/70799
4491 * config/i386/i386.c (dimode_scalar_to_vector_candidate_p):
4492 Handle ASHIFT and LSHIFTRT.
4493 (dimode_scalar_chain::compute_convert_gain): Ditto.
4494 (dimode_scalar_chain::convert_insn): Ditto.
4495
4496 2016-11-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4497
4498 * gimple-ssa-store-merging.c: Include selftest.h
4499 (verify_array_eq): New function.
4500 (verify_shift_bytes_in_array): Likewise.
4501 (verify_shift_bytes_in_array_right): Likewise.
4502 (verify_clear_bit_region): Likewise.
4503 (verify_clear_bit_region_be): Likewise.
4504 (store_merging_c_tests): Likewise.
4505 * selftest.h (store_merging_c_tests): Declare prototype.
4506 * selftest-run-tests.c (selftest::run_tests): Run
4507 store_merging_c_tests.
4508
4509 2016-11-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4510
4511 * config/arm/arm.opt (mold-rtx-costs): Delete.
4512 (mnew-generic-costs): Delete.
4513 * config/arm/arm-protos.h (struct tune_params): Delete rtx_costs field.
4514 * config/arm/arm.c (arm_rtx_costs_1): Delete.
4515 (arm_size_rtx_costs): Likewise.
4516 (arm_slowmul_rtx_costs): Likewise.
4517 (arm_fastmul_rtx_costs): Likewise.
4518 (arm_xscale_rtx_costs): Likewise.
4519 (arm_9e_rtx_costs): Likewise.
4520 (arm_slowmul_tune, arm_fastmul_tune, arm_strongarm_tune,
4521 arm_xscale_tune, arm_9e_tune, arm_v6t2_tune, arm_cortex_tune,
4522 arm_cortex_a8_tune, arm_cortex_a7_tune, arm_cortex_a15_tune,
4523 arm_cortex_a53_tune, arm_cortex_a57_tune, arm_cortex_a9_tune,
4524 arm_cortex_a12_tune, arm_v7m_tune, arm_v6m_tune, arm_fa726te_tune
4525 arm_cortex_a5_tune, arm_xgene1_tune, arm_marvell_pj4_tune,
4526 arm_cortex_a35_tune, arm_exynosm1_tune, arm_cortex_a73_tune,
4527 arm_cortex_m7_tune):
4528 Delete rtx_costs field.
4529 (arm_new_rtx_costs): Rename to...
4530 (arm_rtx_costs_internal): ... This.
4531 (arm_rtx_costs): Remove old way of doing rtx costs.
4532
4533 2016-11-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4534
4535 * config/arm/arm.c (arm_slowmul_tune): Use generic_extra_costs.
4536 (arm_fastmul_tune): Likewise.
4537 (arm_strongarm_tune): Likewise.
4538 (arm_xscale_tune): Likewise.
4539 (arm_9e_tune): Likewise.
4540 (arm_marvell_pj4_tune): Likewise.
4541 (arm_v6t2_tune): Likewise.
4542 (arm_v6m_tune): Likewise.
4543 (arm_fa726te_tune): Likewise.
4544
4545 2016-11-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4546
4547 PR tree-optimization/78234
4548 * gimple-ssa-store-merging.c (clear_bit_region): Fix off-by-one error
4549 in start != 0 case.
4550
4551 2016-11-08 Martin Liska <mliska@suse.cz>
4552
4553 PR testsuite/78242
4554 * dbgcnt.def: Add new debug counter asan_use_after_scope.
4555 * gimplify.c (gimplify_decl_expr): Do not sanitize vars
4556 with a value expr. Do not add artificial variables to
4557 live_switch_vars. Use the debug counter.
4558 (gimplify_target_expr): Use the debug counter.
4559 * internal-fn.def: Remove ECF_TM_PURE from ASAN_MARK builtin.
4560 * sanitizer.def: Set ATTR_NOTHROW_LEAF_LIST to
4561 BUILT_IN_ASAN_CLOBBER_N and BUILT_IN_ASAN_UNCLOBBER_N.
4562
4563 2016-11-08 Richard Biener <rguenther@suse.de>
4564
4565 * tree-vect-stmts.c (get_group_load_store_type): If the
4566 access is aligned do not trigger peeling for gaps.
4567 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Do not
4568 force alignment of vars with DECL_USER_ALIGN.
4569
4570 2016-11-08 James Greenhalgh <james.greenhalgh@arm.com>
4571
4572 * config/aarch64/t-aarch64 (aarch64-c.o): Depend on TARGET_H.
4573
4574 2016-11-08 Richard Biener <rguenther@suse.de>
4575
4576 PR tree-optimization/78205
4577 * tree-vect-stmts.c (vectorizable_load): Move check whether
4578 we may run into gaps when BB vectorizing SLP permutations ...
4579 * tree-vect-slp.c (vect_supported_load_permutation_p): ...
4580 here where we can do a more precise check.
4581
4582 2016-11-08 Richard Biener <rguenther@suse.de>
4583
4584 PR tree-optimization/78224
4585 * tree-call-cdce.c (shrink_wrap_one_built_in_call_with_conds):
4586 Split the fallthru edge in case its successor may have PHIs.
4587 Do not free dominance info.
4588
4589 2016-11-07 Jakub Jelinek <jakub@redhat.com>
4590
4591 PR target/78229
4592 * config/i386/i386.c (ix86_gimple_fold_builtin): Do not adjust
4593 EH info even for bzhi and pdep/pext.
4594
4595 2016-11-07 Peter Bergner <bergner@vnet.ibm.com>
4596
4597 * config.gcc (powerpc*-*-*, rs6000*-*-*): Remove setting of
4598 INCLUDE_EXTRA_SPEC for Advance Toolchain builds.
4599
4600 2016-11-07 Segher Boessenkool <segher@kernel.crashing.org>
4601
4602 * config/rs6000/rs6000.md (div<mode>3): Expand using rs6000_emit_swdiv
4603 if appropriate.
4604 * config/rs6000/vector.md (div<mode>3): Ditto.
4605
4606 2016-11-07 David Edelsohn <dje.gcc@gmail.com>
4607
4608 * configure.ac (.hidden): Change to conftest_s string. Provide string
4609 for AIX assembler.
4610 (gcc_cv_ld_hidden): Yes for AIX.
4611 * configure: Regenerate.
4612
4613 * dwarf2asm.c (USE_LINKONCE_INDIRECT): Don't set for AIX (XCOFF).
4614
4615 * config/rs6000/rs6000-protos.h (rs6000_asm_weaken_decl): Declare
4616 (rs6000_xcoff_asm_output_aligned_decl_common): Declare.
4617 * config/rs6000/xcoff.h (TARGET_ASM_GLOBALIZE_DECL_NAME): Define.
4618 (ASM_OUTPUT_ALIGNED_DECL_COMMON): Define.
4619 (ASM_OUTPUT_ALIGNED_COMMON): Delete.
4620 * config/rs6000/rs6000.c (rs6000_init_builtins): Change clog rename
4621 from #if to if.
4622 (rs6000_xcoff_visibility): New.
4623 (rs6000_xcoff_declare_function_name): Add visibility support.
4624 (rs6000_xcoff_asm_globalize_decl_name): New.
4625 (rs6000_xcoff_asm_output_aligned_decl_common): New.
4626 (rs6000_asm_weaken_decl): New.
4627 (rs6000_code_end): Disable HIDDEN_LINKONCE on XCOFF.
4628 config/rs6000/rs6000.h (ASM_WEAKEN_DECL): Change definition to
4629 reference function.
4630
4631 2016-11-07 Jack Howarth <howarth.at.gcc@gmail.com>
4632
4633 PR driver/78206
4634 * incpath.c (remove_dup): Also silently ignore EPERM.
4635
4636 2016-11-07 Martin Jambor <mjambor@suse.cz>
4637
4638 * tree.c (verify_type_variant): Use pointer comparison to check that
4639 TYPE_SIZE_UNIT match.
4640
4641 2016-11-07 Jakub Jelinek <jakub@redhat.com>
4642
4643 PR target/77834
4644 * dse.c (dse_step5): Call scan_reads even if just
4645 insn_info->frame_read. Improve and fix dump file messages.
4646
4647 PR target/78227
4648 * config/i386/i386.c (ix86_expand_sse_cmp): Force dest into
4649 cmp_mode argument even for -O0 if cmp_mode != mode and maskcmp.
4650
4651 2016-11-07 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
4652
4653 PR middle-end/35691
4654 * match.pd: Add following two patterns:
4655 (x == 0 & y == 0) -> (x | typeof(x)(y)) == 0.
4656 (x != 0 | y != 0) -> (x | typeof(x)(y)) != 0.
4657
4658 2016-11-07 Bernd Schmidt <bschmidt@redhat.com>
4659
4660 * emit-rtl.c (emit_copy_of_insn_after): Duplicate notes in order.
4661 * sel-sched-ir.c (create_copy_of_insn_rtx): Likewise.
4662 * rtl.h (duplicate_reg_notes): Declare.
4663 * rtlanal.c (duplicate_reg_note): New function.
4664
4665 PR rtl-optimization/77309
4666 * combine.c (make_compound_operation): Allow EQ for IN_CODE, and
4667 don't assume an equality comparison for plain COMPARE.
4668 (simplify_comparison): Pass a more accurate code to
4669 make_compound_operation.
4670
4671 2016-11-07 Pat Haugen <pthaugen@us.ibm.com>
4672
4673 * target.def (compute_pressure_classes): New target hook.
4674 * doc/tm.texi.in: Document it.
4675 * doc/tm.texi: Regenerate.
4676 * ira.c (setup_pressure_classes): Call target hook if defined.
4677
4678 2016-11-07 David Malcolm <dmalcolm@redhat.com>
4679
4680 * print-rtl.c (rtx_writer::operand_has_default_value_p): New
4681 method.
4682 (rtx_writer::print_rtx): In compact mode, omit trailing operands
4683 that have the default values.
4684 * print-rtl.h (rtx_writer::operand_has_default_value_p): New
4685 method.
4686 * rtl-tests.c (selftest::test_dumping_insns): Remove empty
4687 label string from expected dump.
4688 (seltest::test_uncond_jump): Remove trailing "(nil)" for REG_NOTES
4689 from expected dump.
4690
4691 2016-11-07 Jakub Jelinek <jakub@redhat.com>
4692
4693 PR target/77834
4694 * alias.c (nonoverlapping_memrefs_p): If one decl is
4695 FUNCTION_DECL or LABEL_DECL and the other is not, return 1.
4696
4697 2016-11-07 Richard Biener <rguenther@suse.de>
4698
4699 PR target/78229
4700 * config/i386/i386.c (ix86_gimple_fold_builtin): Do not adjust
4701 EH info.
4702
4703 2016-11-07 Richard Biener <rguenther@suse.de>
4704
4705 PR tree-optimization/78218
4706 * gimple-ssa-store-merging.c
4707 (pass_store_merging::terminate_all_aliasing_chains):
4708 Drop unused argument, fix alias check to also consider uses.
4709 (pass_store_merging::execute): Adjust.
4710
4711 2016-11-07 Richard Biener <rguenther@suse.de>
4712
4713 PR tree-optimization/78228
4714 * tree-ssa-phiopt.c (abs_replacement): Avoid introducing
4715 undefined behavior.
4716
4717 2016-11-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4718
4719 PR target/77822
4720 * config/aarch64/aarch64.md (*tb<optab><mode>1): Use
4721 aarch64_simd_shift_imm_<mode> predicate for operand 1.
4722 (<optab>, ANY_EXTRACT): Use tighter predicates on operands 2 and 3
4723 to restrict them to an appropriate range and add FAIL check if the
4724 region they specify is out of range. Delete useless constraint
4725 strings.
4726 (*<optab><mode>, ANY_EXTRACT): Add appropriate predicates on operands
4727 2 and 3 to restrict their range and add pattern predicate.
4728
4729 2016-11-07 Martin Liska <mliska@suse.cz>
4730
4731 * asan.c (enum asan_check_flags): Move the enum to header file.
4732 (asan_init_shadow_ptr_types): Make type creation more generic.
4733 (shadow_mem_size): New function.
4734 (asan_emit_stack_protection): Use newly added ASAN_SHADOW_GRANULARITY.
4735 Rewritten stack unpoisoning code.
4736 (build_shadow_mem_access): Add new argument return_address.
4737 (instrument_derefs): Instrument local variables if use after scope
4738 sanitization is enabled.
4739 (asan_store_shadow_bytes): New function.
4740 (asan_expand_mark_ifn): Likewise.
4741 (asan_sanitize_stack_p): Moved from asan_sanitize_stack_p.
4742 * asan.h (enum asan_mark_flags): Moved here from asan.c
4743 (asan_protect_stack_decl): Protect all declaration that need
4744 to live in memory.
4745 (asan_sanitize_use_after_scope): New function.
4746 (asan_no_sanitize_address_p): Likewise.
4747 * cfgexpand.c (partition_stack_vars): Consider
4748 asan_sanitize_use_after_scope in condition.
4749 (expand_stack_vars): Likewise.
4750 * common.opt (-fsanitize-address-use-after-scope): New option.
4751 * doc/invoke.texi (use-after-scope-direct-emission-threshold):
4752 Explain the parameter.
4753 * flag-types.h (enum sanitize_code): Define SANITIZE_USE_AFTER_SCOPE.
4754 * gimplify.c (build_asan_poison_call_expr): New function.
4755 (asan_poison_variable): Likewise.
4756 (gimplify_bind_expr): Generate poisoning/unpoisoning for local
4757 variables that have address taken.
4758 (gimplify_decl_expr): Likewise.
4759 (gimplify_target_expr): Likewise for C++ temporaries.
4760 (sort_by_decl_uid): New function.
4761 (gimplify_expr): Unpoison all variables for a label we can jump
4762 from outside of a scope.
4763 (gimplify_switch_expr): Unpoison variables defined in the switch
4764 context.
4765 (gimplify_function_tree): Clear asan_poisoned_variables.
4766 (asan_poison_variables): New function.
4767 (warn_switch_unreachable_r): Handle IFN_ASAN_MARK.
4768 * internal-fn.c (expand_ASAN_MARK): New function.
4769 * internal-fn.def (ASAN_MARK): Declare.
4770 * opts.c (finish_options): Handle -fstack-reuse if
4771 -fsanitize-address-use-after-scope is enabled.
4772 (common_handle_option): Enable address sanitization if
4773 -fsanitize-address-use-after-scope is enabled.
4774 * params.def (PARAM_USE_AFTER_SCOPE_DIRECT_EMISSION_THRESHOLD):
4775 New parameter.
4776 * params.h: Likewise.
4777 * sancov.c (pass_sanopt::execute): Handle IFN_ASAN_MARK.
4778 * sanitizer.def: Define __asan_poison_stack_memory and
4779 __asan_unpoison_stack_memory functions.
4780 * asan.c (asan_mark_poison_p): New function.
4781 (transform_statements): Handle asan_mark_poison_p calls.
4782 * gimple.c (nonfreeing_call_p): Handle IFN_ASAN_MARK.
4783
4784 2016-11-07 Tamar Christina <tamar.christina@arm.com>
4785
4786 PR driver/78196
4787 * Makefile.in (SELFTEST_FLAGS): Added -o /dev/null.
4788
4789 2016-11-07 Martin Liska <mliska@suse.cz>
4790
4791 * tree-profile.c (gimple_gen_time_profiler): Set proper type
4792 to time_profiler_counter_ptr.
4793
4794 2016-11-07 Richard Biener <rguenther@suse.de>
4795
4796 PR tree-optimization/37150
4797 * tree-vectorizer.h (vect_transform_slp_perm_load): Add n_perms
4798 parameter.
4799 * tree-vect-slp.c (vect_supported_load_permutation_p): Adjust.
4800 (vect_analyze_slp_cost_1): Account for the real number of
4801 permutations emitted and for dead loads.
4802 (vect_transform_slp_perm_load): Add n_perms parameter counting
4803 the number of emitted permutations.
4804 * tree-vect-stmts.c (vectorizable_load): Adjust.
4805
4806 2016-11-07 Richard Biener <rguenther@suse.de>
4807
4808 PR tree-optimization/78189
4809 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Fix
4810 alignment computation.
4811
4812 2016-11-06 Kugan Vivekanandarajah <kuganv@linaro.org>
4813
4814 * ipa-cp.c (ipcp_bits_lattice::meet_with): Remove unreachable code.
4815
4816 2016-11-05 Martin Sebor <msebor@redhat.com>
4817
4818 * doc/invoke.texi (Warning Options): Correct typos in -Walloca
4819 documentation.
4820
4821 2016-11-05 David Edelsohn <dje.gcc@gmail.com>
4822
4823 PR bootstrap/78188
4824 PR c++/71848
4825 * ipa-comdats.c (pass_ipa_comdats::gate): Require HAVE_COMDAT_GROUP.
4826
4827 2016-11-04 Jakub Jelinek <jakub@redhat.com>
4828
4829 PR target/77834
4830 * alias.c (nonoverlapping_memrefs_p): Return 0 if exprx or expry
4831 doesn't have rtl set.
4832
4833 2016-11-04 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
4834
4835 * config/rs6000/rs6000.c (gimple-ssa.h): New #include.
4836 (TARGET_GIMPLE_FOLD_BUILTIN): Define as
4837 rs6000_gimple_fold_builtin.
4838 (rs6000_gimple_fold_builtin): New function. Add handling for
4839 early expansion of vector addition builtins.
4840
4841 2016-11-04 Eric Botcazou <ebotcazou@adacore.com>
4842
4843 * expr.h (copy_blkmode_from_reg): Delete.
4844 * expr.c (copy_blkmode_from_reg): Make static.
4845
4846 2016-11-04 Eric Botcazou <ebotcazou@adacore.com>
4847
4848 * defaults.h (LOAD_EXTEND_OP): Define if not already defined.
4849 * combine.c (LOAD_EXTEND_OP): Delete.
4850 (simplify_comparison): Fix comment about LOAD_EXTEND_OP.
4851 * cse.c (LOAD_EXTEND_OP): Delete.
4852 * fold-const.c (LOAD_EXTEND_OP): Likewise.
4853 * fwprop.c (free_load_extend): Remove #ifdef LOAD_EXTEND_OP/#endif.
4854 * postreload.c (LOAD_EXTEND_OP): Delete.
4855 * reload.c (push_reload): Remove #ifdef LOAD_EXTEND_OP/#endif.
4856 Convert conditional compilation based on WORD_REGISTER_OPERATIONS.
4857 (find_reloads): Likewise.
4858 * reload1.c (eliminate_regs_1): Likewise.
4859 * rtlanal.c (nonzero_bits1): Remove #ifdef LOAD_EXTEND_OP/#endif.
4860 (num_sign_bit_copies1): Likewise.
4861
4862 2016-11-04 David Malcolm <dmalcolm@redhat.com>
4863
4864 * config/i386/i386.c: Include "selftest.h" and "selftest-rtl.h".
4865 (selftest::ix86_test_dumping_hard_regs): New function.
4866 (selftest::ix86_run_selftests): New function.
4867 (TARGET_RUN_TARGET_SELFTESTS): When CHECKING_P, wire this up to
4868 selftest::ix86_run_selftests.
4869 * doc/tm.texi.in (TARGET_RUN_TARGET_SELFTESTS): New.
4870 * doc/tm.texi: Regenerate
4871 * selftest-rtl.h: New file.
4872 * rtl-tests.c: Include "selftest-rtl.h".
4873 (selftest::assert_rtl_dump_eq): Make non-static.
4874 (ASSERT_RTL_DUMP_EQ): Move to selftest-rtl.h.
4875 (selftest::test_dumping_regs): Update comment.
4876 * selftest-run-tests.c: Include "target.h".
4877 (selftest::run_tests): If non-NULL, call
4878 targetm.run_target_selftests.
4879 * target.def (run_target_selftests): New hook.
4880
4881 2016-11-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
4882
4883 * config/arm/arm-arches.def (armv8-m.main+dsp): Set Cortex-M33 as
4884 representative core for this architecture.
4885 * config/arm/arm-cores.def (cortex-m33): Define new processor.
4886 * config/arm/arm-tables.opt: Regenerate.
4887 * config/arm/arm-tune.md: Likewise.
4888 * config/arm/bpabi.h (BE8_LINK_SPEC): Add Cortex-M33 to the list of
4889 valid -mcpu options.
4890 * doc/invoke.texi (ARM Options): Document new Cortex-M33 processor.
4891
4892 2016-11-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
4893
4894 * config/arm/arm-arches.def (armv8-m.base): Set Cortex-M23 as
4895 representative core for this architecture.
4896 * config/arm/arm-cores.def (cortex-m23): Define new processor.
4897 * config/arm/arm-tables.opt: Regenerate.
4898 * config/arm/arm-tune.md: Likewise.
4899 * config/arm/arm.c (arm_v6m_tune): Add Cortex-M23 to the list of cores
4900 this tuning parameters apply to in the comment.
4901 * config/arm/bpabi.h (BE8_LINK_SPEC): Add Cortex-M23 to the list of
4902 valid -mcpu options.
4903 * doc/invoke.texi (ARM Options): Document new Cortex-M23 processor.
4904
4905 2016-11-04 Bin Cheng <bin.cheng@arm.com>
4906
4907 * fold-const.c (fold_cond_expr_with_comparison): Remove call
4908 to pedantic_non_lvalue_loc. Remove useless code for lvalue
4909 where cond_expr can't be a lvalue.
4910
4911 2016-11-04 Claudiu Zissulescu <claziss@synopsys.com>
4912
4913 * config/arc/arc.c (arc_process_double_reg_moves): Use
4914 gen_dexcl_2op call.
4915 * config/arc/arc.md (movsi_insn): Disable unsupported move
4916 instructions for ARCv2 cores.
4917 (movdi): Use prepare_move_operands.
4918 (movsf, movdf): Use move_dest_operand predicate.
4919 * config/arc/constraints.md (Chs): Enable when barrel shifter is
4920 present.
4921 * config/arc/fpu.md (divsf3): Change to divsf3_fpu.
4922 * config/arc/fpx.md (dexcl_3op_peep2_insn): Dx data register is
4923 also a destination.
4924 (dexcl_3op_peep2_insn_nores): Likewise.
4925 * config/arc/arc.h (SHIFT_COUNT_TRUNCATED): Define to one.
4926 (LINK_COMMAND_SPEC): Remove.
4927
4928 2016-11-04 Richard Biener <rguenther@suse.de>
4929
4930 PR middle-end/78185
4931 * loop-invariant.c (find_exits): Record entering inner
4932 loops as possibly exiting to handle infinite sub-loops.
4933 * tree-ssa-loop-im.c: Include tree-ssa-loop-niter.h.
4934 (fill_always_executed_in_1): Honor infinite child loops.
4935
4936 2016-11-03 Michael Meissner <meissner@linux.vnet.ibm.com>
4937
4938 PR target/78192
4939 * config/rs6000/vsx.md (vsx_extract_<mode>_di): The element number
4940 has already been adjusted for endianness, so don't adjust it any
4941 further.
4942
4943 PR target/77993
4944 * config/rs6000/rs6000.h (FLOAT128_IBM_P): Do not allow IFmode or
4945 ICmode unless we have standard PowerPC floating point.
4946 * config/rs6000/rs6000.md (FP iterator): Likewise.
4947 (FMOVE128 iterator): Likewise.
4948
4949 2016-11-03 Jakub Jelinek <jakub@redhat.com>
4950 Alexandre Oliva <aoliva@redhat.com>
4951 Jason Merrill <jason@redhat.com>
4952
4953 PR debug/28767
4954 PR debug/56974
4955 * langhooks.h (struct lang_hooks_for_types): Add type_dwarf_attribute
4956 langhook.
4957 * langhooks.c (lhd_type_dwarf_attribute): New function.
4958 * langhooks-def.h (lhd_type_dwarf_attribute): Declare.
4959 (LANG_HOOKS_TYPE_DWARF_ATTRIBUTE): Define.
4960 (LANG_HOOKS_FOR_TYPES_INITIALIZER): Add
4961 LANG_HOOKS_TYPE_DWARF_ATTRIBUTE.
4962 (check_qualified_type, check_aligned_type): Call it.
4963 * dwarf2out.c (modified_type_die): Don't use type_main_variant
4964 for FUNCTION_TYPE or METHOD_TYPE, instead walk over variants with
4965 check_base_type and check_lang_type.
4966 (gen_ptr_to_mbr_type_die): If lookup_type_die is already non-NULL,
4967 return early. For pointer-to-data-member add DW_AT_use_location
4968 attribute.
4969 (gen_subroutine_type_die): Add DW_AT_{,rvalue_}reference attribute
4970 if needed.
4971 (gen_type_die_with_usage): Don't use type_main_variant
4972 for FUNCTION_TYPE or METHOD_TYPE, instead walk over variants with
4973 check_base_type and check_lang_type. Formatting fixes. Call
4974 get_debug_type langhook.
4975
4976 2016-11-03 Jason Merrill <jason@redhat.com>
4977
4978 * tree.c (check_lang_type): New.
4979 (check_qualified_type): Use it.
4980 (check_aligned_type): Use it.
4981 * tree.h: Declare it.
4982
4983 2016-11-03 Richard Earnshaw <rearnsha@arm.com>
4984
4985 * config.gcc (arm-wrs-vxworks): Set target_cpu_cname.
4986 (arm*-freebsd*): Likewise.
4987 (arm*-*-netbsdelf*): Likewise.
4988 (arm*-*-linux*): Likewise.
4989 (arm*-*-uclinux*eabi*): Likewise.
4990 (arm*-*-phoenix*): Likewise.
4991 (arm*-*-eabi*, arm*-*-symbianelf*, arm*-*-rtems*): Likewise.
4992 (arm*-*-*): Don't clobber target_cpu_cname when --with-cpu is not
4993 specified. Default to arm6 if target_cpu_cname is not set.
4994 * arm/arm.c (arm_option_override): Simplify logic. Assert that the
4995 default cpu has been correctly configured.
4996 * arm/arm.h (TARGET_CPU_DEFAULT): Delete.
4997 (target_cpus): Delete TARGET_CPU_generic, add TARGET_CPU_num_cores.
4998 * arm/freebsd.h (SUBTARGET_CPU_DEFAULT): Delete.
4999 * arm/linux-eabi.h (SUBTARGET_CPU_DEFAULT): Delete.
5000 * arm/linux-elf.h (SUBTARGET_CPU_DEFAULT): Delete.
5001 * arm/symbian.h (SUBTARGET_CPU_DEFAULT): Delete.
5002 * arm/unknown-elf.h (SUBTARGET_CPU_DEFAULT): Delete.
5003
5004 2016-11-03 Jiong Wang <jiong.wang@arm.com>
5005
5006 * reg-notes.def (CFA_VAL_EXPRESSION): New entry.
5007 * dwarf2cfi.c (dwarf2out_frame_debug_cfa_val_expression): New function.
5008 (dwarf2out_frame_debug): Support REG_CFA_VAL_EXPRESSION.
5009 (output_cfa_loc): Support DW_CFA_val_expression.
5010 (output_cfa_loc_raw): Likewise.
5011 (output_cfi): Likewise.
5012 (output_cfi_directive): Likewise.
5013 * dwarf2out.c (dw_cfi_oprnd1_desc): Support DW_CFA_val_expression.
5014 (dw_cfi_oprnd2_desc): Likewise.
5015 (mem_loc_descriptor): Recognize new pattern generated for value
5016 expression.
5017
5018 2016-11-03 Segher Boessenkool <segher@kernel.crashing.org>
5019
5020 PR rtl-optimization/78186
5021 * combine.c (change_zero_ext): Mask the RHS of a zero_extract as
5022 well, when converting to IOR.
5023
5024 2016-11-03 Eric Botcazou <ebotcazou@adacore.com>
5025
5026 * config/sparc/sparc.md (vec_interleave_lowv8qi): Delete.
5027 (vec_interleave_highv8qi): Likewise.
5028
5029 2016-11-03 Martin Liska <mliska@suse.cz>
5030
5031 * profile.c (instrument_values): Fix coding style.
5032 (branch_prob): Use renamed function.
5033 * tree-profile.c (init_ic_make_global_vars): Likewise.
5034 (gimple_init_edge_profiler): Rename to
5035 gimple_init_gcov_profiler.
5036 tree_time_profiler_counter variable declaration.
5037 (gimple_gen_time_profiler): Rewrite to do a direct gimple code
5038 emission.
5039 * value-prof.h: Remove an argument.
5040
5041 2016-11-03 Richard Biener <rguenther@suse.de>
5042
5043 * config/rs6000/rs6000.c (rs6000_xcoff_declare_object_name): Use
5044 symtab_node::get_create.
5045
5046 2016-11-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5047
5048 * rtlanal.c (nonzero_bits1): Fix WORD_REGISTER_OPERATIONS condition.
5049 Move comments into more natural position.
5050
5051 2016-11-03 Vineet Gupta <vgupta@synopsys.com>
5052
5053 * config/arc/arc.h (SIZE_TYPE): Define as unsigned int.
5054 (PTRDIFF_TYPE): Define as int.
5055
5056 2016-11-03 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
5057
5058 * ccmp.c (expand_ccmp_expr_1): Adjust.
5059 (expand_ccmp_expr): Likewise.
5060 (expand_ccmp_next): Likewise.
5061 * config/aarch64/aarch64.c (aarch64_gen_ccmp_next): Likewise.
5062 (aarch64_gen_ccmp_first): Likewise.
5063 * doc/tm.texi: Regenerate.
5064 * target.def (gen_ccmp_first): Change argument types to rtx_insn *.
5065 (gen_ccmp_next): Likewise.
5066
5067 2016-11-03 Bin Cheng <bin.cheng@arm.com>
5068
5069 * tree-vect-loop.c (destroy_loop_vec_info): Handle cond_expr.
5070 (vect_is_simple_reduction): Swap cond_reduction by inversion.
5071
5072 2016-11-02 Uros Bizjak <ubizjak@gmail.com>
5073
5074 * config/i386/i386.c (ix86_init_libfuncs): New. Call
5075 darwin_rename_builtins here.
5076 (ix86_expand_divmod_libfunc): New.
5077 (TARGET_INIT_LIBFUNCS): Unconditionally define to ix86_init_libfuncs.
5078 (TARGET_EXPAND_DIVMOD_LIBFUNC): Define.
5079
5080 2016-11-02 Cesar Philippidis <cesar@codesourcery.com>
5081 Nathan Sidwell <nathan@acm.org>
5082
5083 * config/nvptx/nvptx.c (PTX_GANG_DEFAULT): Set to zero.
5084
5085 2016-11-02 Max Filippov <jcmvbkbc@gmail.com>
5086
5087 * config/xtensa/xtensa.c (xtensa_output_integer_literal_parts):
5088 New function.
5089 (xtensa_output_literal): Use xtensa_output_integer_literal_parts
5090 to format MODE_INT and MODE_PARTIAL_INT literals.
5091
5092 2016-11-02 Segher Boessenkool <segher@kernel.crashing.org>
5093
5094 PR target/78168
5095 * config/r6000/rs6000.c (rs6000_get_separate_components): Return
5096 NULL if TARGET_SPE_ABI.
5097
5098 2016-11-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5099
5100 * gimple-ssa-store-merging.c (encode_tree_to_bitpos): Don't forget to
5101 clear padding bits even when they're less than a byte.
5102
5103 2016-11-02 Richard Biener <rguenther@suse.de>
5104
5105 * gimple-ssa-store-merging.c: Include gimplify-me.h.
5106 (imm_store_chain_info::output_merged_stores): Force base_addr
5107 to be proper GIMPLE for a MEM_REF address.
5108 (pass_store_merging::execute): Restrict negative bitpos
5109 handling to non-MEM_REF bases. Remove TREE_THIS_VOLATILE
5110 check. Take into account non-NULL_TREE offset if the base
5111 is already addressable.
5112
5113 2016-11-26 Wilco Dijkstra <wdijkstr@arm.com>
5114
5115 * config/aarch64/aarch64-simd.md (aarch64_crypto_sha1hv4si):
5116 New pattern.
5117 (aarch64_be_crypto_sha1hv4si): New pattern.
5118
5119 2016-11-02 Wilco Dijkstra <wdijkstr@arm.com>
5120
5121 * config/aarch64/aarch64.md (add<mode>3): Remove
5122 redundant code. Don't split frame based additions.
5123
5124 2016-11-02 Richard Biener <rguenther@suse.de>
5125
5126 * gimple-ssa-store-merging.c (struct store_immediate_info): Remove
5127 redundant val and dest members.
5128 (store_immediate_info::store_immediate_info): Adjust.
5129 (merged_store_group::merged_store_group): Adjust.
5130 (merged_store_group::apply_stores): Likewise.
5131 (struct imm_store_chain_info): Add base_addr field.
5132 (imm_store_chain_info::imm_store_chain_info): New constructor.
5133 (imm_store_chain_info::terminate_and_process_chain): Do not pass base.
5134 (imm_store_chain_info::output_merged_store): Likewise. Use
5135 addr_base which is already the address.
5136 (imm_store_chain_info::output_merged_stores): Likewise.
5137 (pass_tree_store_merging::terminate_all_aliasing_chains): Take
5138 imm_store_chain_info instead of base. Fix alias check.
5139 (pass_tree_store_merging::terminate_and_release_chain): Likewise.
5140 (imm_store_chain_info::coalesce_immediate_stores): Adjust.
5141 (pass_store_merging::execute): Refuse to operate on TARGET_MEM_REF.
5142 use the address of the base and adjust for other changes.
5143
5144 2016-11-02 Martin Liska <mliska@suse.cz>
5145
5146 * fold-const-call.c (host_size_t_cst_p): Test whether
5147 t is convertible to size_t.
5148
5149 2016-11-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5150
5151 PR tree-optimization/78170
5152 * gimple-ssa-store-merging.c (encode_tree_to_bitpos): Truncate padding
5153 introduced by native_encode_expr on little-endian as well.
5154
5155 2016-11-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5156
5157 PR tree-optimization/78162
5158 * gimple-ssa-store-merging.c (execute): Mark stores with bitpos < 0
5159 as invalid.
5160
5161 2016-11-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5162
5163 * config/aarch64/aarch64.c (aarch64_register_saved_on_entry): Add
5164 function comment.
5165 (aarch64_next_callee_save): Likewise.
5166 (aarch64_pushwb_single_reg): Likewise.
5167 (aarch64_gen_storewb_pair): Likewise.
5168 (aarch64_push_regs): Likewise.
5169 (aarch64_gen_loadwb_pair): Likewise.
5170 (aarch64_pop_regs): Likewise.
5171 (aarch64_gen_store_pair): Likewise.
5172 (aarch64_gen_load_pair): Likewise.
5173 (aarch64_save_callee_saves): Likewise.
5174 (aarch64_restore_callee_saves): Likewise.
5175
5176 2016-11-02 Richard Biener <rguenther@suse.de>
5177
5178 PR tree-optimization/78035
5179 PR tree-optimization/77964
5180 * gimple-pretty-print.c (pp_points_to_solution): Print
5181 vars_contains_interposable.
5182 * tree-ssa-alias.c: Include varasm.h.
5183 (ptrs_compare_unequal): Check vars_contains_interposable and
5184 decl_binds_to_current_def_p.
5185 (dump_points_to_solution): Dump vars_contains_interposable.
5186 * tree-ssa-alias.h (struct pt_solution): Add vars_contains_interposable
5187 flag.
5188 * tree-ssa-structalias.c: Include varasm.h.
5189 (set_uids_in_ptset): Record whether vars contains a
5190 not decl_binds_to_current_def_p variable in vars_contains_interposable.
5191 (ipa_escaped_pt): Update initializer.
5192
5193 2016-11-02 Richard Biener <rguenther@suse.de>
5194
5195 PR tree-optimization/78047
5196 * tree-ssa-structalias.c (push_fields_onto_fieldstack): Initialize
5197 fake field at offset zero conservatively regarding to may_have_pointers.
5198
5199 2016-11-02 Richard Biener <rguenther@suse.de>
5200
5201 * tree-vrp.c (evrp_dom_walker::before_dom_children): Call
5202 infer_value_range on stmt ops and update value-ranges.
5203 Dump visited stmts and blocks.
5204 (evrp_dom_walker::push_value_range): Dump changes.
5205 (evrp_dom_walker::pop_value_range): Likewise.
5206 (evrp_dom_walker::try_find_new_range): Avoid noop changes.
5207
5208 2016-11-01 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
5209
5210 * emit-rtl.c (prev_nonnote_insn_bb): Change argument type to
5211 rtx_insn *.
5212 * rtl.h (prev_nonnote_insn_bb): Adjust prototype.
5213
5214 2016-11-01 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
5215
5216 * cfgrtl.c (delete_insn_chain): Change argument type to rtx_insn *
5217 and adjust for that.
5218 * cfgrtl.h (delete_insn_chain): Adjust prototype.
5219
5220 2016-11-01 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
5221
5222 * config/rl78/rl78.c (gen-and_emit_move): Change argument type
5223 to rtx_insn *.
5224 (transcode_memory_rtx): Likewise.
5225 (move_to_acc): Likewise.
5226 (move_from_acc): Likewise.
5227 (move_acc_to_reg): Likewise.
5228 (move_to_x): Likewise.
5229 (move_to_hl): Likewise.
5230 (move_to_de): Likewise.
5231 * config/rs6000/rs6000.c (emit_frame_save): Likewise.
5232 (rs6000_emit_savres_rtx): Likewise.
5233 (rs6000_emit_prologue): Likewise.
5234 * reorg.c (update_reg_unused_notes): Likewise.
5235 * rtl.h (remove_note): Adjust prototype.
5236 * rtlanal.c (remove_note): Make argument type rtx_insn *.
5237
5238 2016-11-01 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
5239
5240 * config/alpha/alpha.c (alpha_legitimize_address_1): Split up
5241 variables so some can be rtx_insn *.
5242 (alpha_emit_xfloating_libcall): Likewise.
5243 * config/mips/mips.c (mips_call_tls_get_addr): Likewise.
5244 (mips_legitimize_tls_address): Likewise.
5245 * optabs.c (expand_binop): Likewise.
5246 * reload1.c (gen_reload): Likewise.
5247
5248 2016-11-01 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
5249
5250 * reorg.c (relax_delay_slots): Split up the trial variable.
5251
5252 2016-11-01 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
5253
5254 * config/arc/arc.c (arc_emit_call_tls_get_addr): Make the type
5255 of variables rtx_insn *.
5256 * config/arm/arm.c (arm_call_tls_get_addr): Likewise.
5257 (legitimize_tls_address): Likewise.
5258 * config/bfin/bfin.c (hwloop_optimize): Likewise.
5259 (bfin_gen_bundles): Likewise.
5260 * config/c6x/c6x.c (reorg_split_calls): Likewise.
5261 (c6x_reorg): Likewise.
5262 * config/frv/frv.c (frv_reorder_packet): Likewise.
5263 * config/i386/i386.c (ix86_split_idivmod): Likewise.
5264 * config/ia64/ia64.c (ia64_expand_compare): Likewise.
5265 * config/m32c/m32c.c (m32c_prepare_shift): Likewise.
5266 * config/mn10300/mn10300.c: Likewise.
5267 * config/rl78/rl78.c: Likewise.
5268 * config/s390/s390.c (s390_fix_long_loop_prediction): Likewise.
5269 * config/sh/sh-mem.cc (sh_expand_cmpstr): Likewise.
5270 (sh_expand_cmpnstr): Likewise.
5271 (sh_expand_strlen): Likewise.
5272 (sh_expand_setmem): Likewise.
5273 * config/sh/sh.md: Likewise.
5274 * emit-rtl.c (emit_pattern_before): Likewise.
5275 * except.c: Likewise.
5276 * final.c: Likewise.
5277 * jump.c: Likewise.
5278
5279 2016-11-01 Jason Merrill <jason@redhat.com>
5280
5281 * tree-inline.c (copy_tree_body_r): Only copy the taken branch of
5282 a COND_EXPR with constant condition.
5283
5284 2016-11-01 Jakub Jelinek <jakub@redhat.com>
5285
5286 * dwarf2out.c (gen_variable_die): Remove again origin_die variable
5287 and its initialization.
5288
5289 2016-11-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5290
5291 * dwarf2out.c (output_rnglists): Wrap basebuf, len in
5292 HAVE_AS_LEB128.
5293
5294 2016-11-01 Jakub Jelinek <jakub@redhat.com>
5295
5296 * dwarf2out.c (add_name_and_src_coords_attributes): Add NO_LINKAGE_NAME
5297 argument, don't call add_linkage_name if it is true.
5298 (gen_variable_die): For C++ inline static data members, consider the
5299 initial call when old_die is NULL to be declaration and call
5300 add_name_and_src_coords_attributes in that case with true as
5301 NO_LINKAGE_NAME. Add DW_AT_inline attribute if needed.
5302 (gen_member_die): For C++ inline static data members, emit a
5303 definition DIE right away in DW_TAG_compile_unit context.
5304
5305 2016-11-01 John David Anglin <danglin@gcc.gnu.org>
5306
5307 PR target/78166
5308 * config/pa/pa.md: Add new shift/add patterns to handle
5309 (plus (mult (reg) (mem_shadd_operand)) (reg)) source operand.
5310
5311 2016-11-01 Max Filippov <jcmvbkbc@gmail.com>
5312
5313 * config/xtensa/xtensa-protos.h
5314 (xtensa_use_return_instruction_p): New prototype.
5315 * config/xtensa/xtensa.c (xtensa_current_frame_size,
5316 xtensa_callee_save_size): Remove.
5317 (struct machine_function): Add new fields: current_frame_size,
5318 callee_save_size, frame_laid_out and epilogue_done.
5319 (compute_frame_size, xtensa_expand_prologue,
5320 xtensa_expand_epilogue): Replace xtensa_callee_save_size with
5321 cfun->machine->callee_save_size and xtensa_current_frame_size
5322 with cfun->machine->current_frame_size.
5323 (compute_frame_size): Update cfun->machine->frame_laid_out and
5324 don't update frame layout after reload completion.
5325 (xtensa_expand_epilogue): Set cfun->machine->epilogue_done
5326 instead of zeroing xtensa_current_frame_size.
5327 (xtensa_use_return_instruction_p): New function.
5328 * config/xtensa/xtensa.h (xtensa_current_frame_size): Remove
5329 declaration.
5330 (INITIAL_ELIMINATION_OFFSET): Use return value of
5331 compute_frame_size instead of xtensa_current_frame_size value.
5332 * config/xtensa/xtensa.md ("return" pattern): Use new predicate
5333 function xtensa_use_return_instruction_p instead of inline code.
5334
5335 2016-11-01 Jakub Jelinek <jakub@redhat.com>
5336
5337 * tree.h (BLOCK_IN_COLD_SECTION_P): Define.
5338 * final.c (final_scan_insn): Set BLOCK_IN_COLD_SECTION_P.
5339 * dwarf2out.c (rnglist_idx): New variable.
5340 (struct dw_ranges): Add label, idx and maybe_new_sec fields.
5341 (DEBUG_RNGLISTS_SECTION): Define.
5342 (ranges_base_label): New variable.
5343 (size_of_die) <case dw_val_class_range_list>: If using
5344 DW_FORM_rnglistx, count size of uleb128 of range list index.
5345 (value_format) <case dw_val_class_range_list>: For
5346 -gdwarf-5 -gsplit-dwarf return DW_FORM_rnglistx.
5347 (output_range_list_offset): Handle -gdwarf-5 .debug_rnglists
5348 offsets. Multiply dwarf < 5 offsets by 2 * DWARF_ADDR_SIZE.
5349 (add_ranges_num): Remove useless prototype. Don't multiply
5350 by 2 * DWARF2_ADDR_SIZE. Add maybe_new_sec argument, adjust
5351 for new fields added to dw_ranges struct.
5352 (add_ranges): Add maybe_new_sec argument and pass it
5353 through to add_ranges_num.
5354 (note_rnglist_head): New function.
5355 (add_ranges_by_labels): Pass true as maybe_new_sec to
5356 add_ranges_num, call note_rnglist_head on the head of the list.
5357 (output_ranges): Add function comment. Switch to
5358 .debug_ranges section here and emit .Ldebug_ranges0 label.
5359 (index_rnglists, output_rnglists): New functions.
5360 (gen_subprogram_die): Formatting fixes.
5361 (add_high_low_attributes): Don't divide offsets
5362 by 2 * DWARF2_ADDR_SIZE. Call note_rnglist_head on the
5363 first list element or when pointing into the middle of
5364 a list. Pass true as second argument to add_ranges on the
5365 first block fragment after cold/hot section switch.
5366 (init_sections_and_labels): For -gdwarf-5 use .debug_rnglists
5367 section instead of .debug_ranges. Initialize
5368 ranges_base_label if -gdwarf-5 -gsplit-dwarf.
5369 (dwarf2out_finish): For -gdwarf-5 -gsplit-dwarf call
5370 index_rnglists and add DW_AT_rnglists_base attr. Don't switch
5371 to dwarf_ranges_section here or emit .Ldebug_ranges0 label.
5372 Call output_rnglists for -gdwarf-5.
5373 (dwarf2out_c_finalize): Clear rnglist_idx.
5374
5375 2016-11-01 Fritz Reese <fritzoreese@gmail.com>
5376
5377 * combine.c (simplify_compare_const): Add gcc_fallthrough.
5378
5379 2016-11-01 Bilyan Borisov <bilyan.borisov@arm.com>
5380 Tamar Christina <tamar.christina@arm.com>
5381
5382 * config/arm/arm-c.c (arm_cpu_builtins): New macro definition.
5383 * config/arm/arm_neon.h (vmaxnm_f32): New intrinsinc.
5384 (vmaxnmq_f32): Likewise.
5385 (vminnm_f32): Likewise.
5386 (vminnmq_f32): Likewise.
5387 * config/arm/arm_neon_builtins.def (vmaxnm): New builtin.
5388 (vminnm): Likewise.
5389 * config/arm/neon.md (neon_<fmaxmin_op><mode>, VCVTF): New
5390 expander.
5391
5392 2016-10-31 Michael Meissner <meissner@linux.vnet.ibm.com>
5393
5394 * config/rs6000/vsx.md (VSX_EXTRACT_FL): New iterator for all
5395 binary floating point types supported by the hardware except for
5396 double.
5397 (vsx_xvcvsxwdp_df): Provide scalar result alternative to the
5398 vector instruction for optimizing extracting a SImode from a
5399 V4SImode vector and converting it to floating point.
5400 (vsx_xvcvuxwdp_df): Likewise.
5401 (vsx_extract_si): On ISA 3.0, allow extract target and temporary
5402 registers to be any VSX register. Move stores to the end of the
5403 constraints.
5404 (vsx_extract_si_<uns>float_df): New combiner pattern and splitter
5405 to optimize extracting a SImode from a V4SImode vector and
5406 converting it to a binary floating point type supported by the
5407 hardware. Use the vector converts instead of extracting the
5408 element, sign extending it, and then converting it to double.
5409 Other floating point types than double first convert to double,
5410 then the double is converted to that type.
5411 (vsx_extract_si_<uns>float_<mode>): Likewise.
5412
5413 2016-10-31 Andrew Pinski <apinski@cavium.com>
5414
5415 * config/aarch64/driver-aarch64.c (host_detect_local_cpu):
5416 Rewrite handling of part num to handle the case where
5417 multiple implementers share the same part num.
5418
5419 2016-10-31 Jan Kratochvil <jan.kratochvil@redhat.com>
5420 Jakub Jelinek <jakub@redhat.com>
5421
5422 * dwarf2out.c (DWARF_COMPILE_UNIT_HEADER_SIZE): Adjust for -gdwarf-5.
5423 (DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE): Likewise.
5424
5425 2016-10-31 Jakub Jelinek <jakub@redhat.com>
5426
5427 * dwarf2out.c (dwarf_AT): Handle DW_AT_dwo_name.
5428 (use_debug_types): Adjust comment for DWARF5 DW_UT_type units.
5429 (new_die): Handle DW_TAG_skeleton_unit like DW_TAG_compile_unit.
5430 (is_cu_die, is_unit_die): Likewise.
5431 (should_move_die_to_comdat, break_out_comdat_types): Adjust
5432 comments for DWARF5 DW_UT_type units.
5433 (output_compilation_unit_header): Add UT argument, output
5434 start of DWARF5 .debug_info section header.
5435 (output_comp_unit): Add dwo_id argument. Adjust
5436 output_compilation_unit_header caller, for DW_UT_split_compile
5437 emit dwo_id field, otherwise padding1. Emit padding2 field.
5438 (add_top_level_skeleton_die_attrs): Add DW_AT_dwo_name
5439 rather than DW_AT_GNU_dwo_name attr for -gdwarf-5.
5440 (output_skeleton_debug_sections): Add dwo_id argument, for
5441 -gdwarf-5 emit DWARF 5 DW_UT_skeleton header.
5442 (output_comdat_type_unit): For -gdwarf-5 emit .debug_info
5443 DW_UT_type or DW_UT_split_type units rather than .debug_types.
5444 (dwarf2out_finish): Use DW_TAG_skeleton_unit rather than
5445 DW_TAG_compile_unit for skeleton unit die. Don't add
5446 DW_AT_GNU_dwo_id attributes for -gdwarf-5, instead pass checksum
5447 address to output_comp_unit and output_skeleton_debug_sections.
5448
5449 * dwarf2out.c (debug_line_str_section): New variable.
5450 (debug_line_str_hash): Likewise.
5451 (DEBUG_LINE_STR_SECTION): Define.
5452 (set_indirect_string): Handle DW_FORM_line_strp like
5453 DW_FORM_strp.
5454 (find_string_form): Fix up formatting.
5455 (size_of_die): Handle DW_FORM_line_strp like DW_FORM_strp.
5456 Fix up indentation.
5457 (output_die): Handle DW_FORM_line_strp.
5458 (DWARF5_USE_DEBUG_LINE_STR): Define.
5459 (output_line_string): New function.
5460 (output_file_names): Add -gdwarf-5 support.
5461 (output_line_info): Likewise.
5462 (init_sections_and_labels): Initialize debug_line_str_section.
5463 (output_indirect_string): Change 2nd argument from void *
5464 to enum dwarf_form form, compare with form rather than
5465 DW_FORM_strp.
5466 (output_indirect_strings): Pass DW_FORM_strp to
5467 output_indirect_string traversion.
5468 (dwarf2out_finish): Output .debug_line_str strings.
5469 (dwarf2out_c_finalize): Clear debug_line_str_section and
5470 debug_line_str_hash.
5471
5472 2016-10-31 Tom Tromey <tom@tromey.com>
5473
5474 PR debug/77315
5475 * dwarf2out.c (mem_loc_descriptor): Use DW_OP_form_tls_address.
5476 (resolve_args_picking_1): Move DW_OP_form_tls_address case next to
5477 DW_OP_GNU_push_tls_address case.
5478 (loc_list_from_tree_1): Use DW_OP_form_tls_address.
5479
5480 2016-10-31 Jakub Jelinek <jakub@redhat.com>
5481
5482 * dwarf2out.h (struct dw_loc_descr_node): Adjust comment
5483 for frame_offset_rel bit.
5484 (struct array_descr_info): Add rank field.
5485 * dwarf2out.c (struct loc_descr_context): Add placeholder_arg
5486 and placeholder_seen fields.
5487 (resolve_args_picking_1): Handle also frame_offset_rel DW_OP_dup
5488 and DW_OP_over. Optimize DW_OP_pick 0 into DW_OP_dup and
5489 DW_OP_pick 1 into DW_OP_over.
5490 (function_to_dwarf_procedure, type_byte_size, field_byte_offset,
5491 gen_variant_part): Clear placeholder_{arg,seen}.
5492 (loc_list_from_tree_1): Drop const from context argument.
5493 Handle integral PLACEHOLDER_EXPR if context->placeholder_arg.
5494 (loc_list_for_address_of_addr_expr_of_indirect_ref,
5495 loc_list_from_tree, loc_descriptor_from_tree): Drop const from
5496 context argument.
5497 (add_scalar_info): Drop const from context argument. Handle
5498 context->placeholder_arg.
5499 (add_bound_info): Drop const from context argument.
5500 (gen_descr_array_type_die): Drop const from ctx variable.
5501 Initialize placeholder_arg and placeholder_seen. Add DW_AT_rank
5502 attribute and use a single DW_TAG_generic_subrange instead of
5503 7 DW_TAG_subrange_type for assumed rank arrays.
5504
5505 * dwarf2out.h (enum dw_val_class): Add dw_val_class_loclistsptr.
5506 * dwarf2out.c (struct dw_loc_list_struct): Change emitted field
5507 from bool to 1-bit uchar bitfield. Add num_assigned and
5508 offset_emitted bitfields.
5509 (dw_val_equal_p): Compare v.val_lbl_id rather than v.val_unsigned
5510 for dw_val_class_lineptr and dw_val_class_macptr. Handle
5511 dw_val_class_loclistsptr.
5512 (new_addr_loc_descr): Fix up formatting.
5513 (DEBUG_LOCLISTS_SECTION, DEBUG_DWO_LOCLISTS_SECTION): Define.
5514 (add_AT_low_high_pc): Fix up formatting.
5515 (add_AT_loclistsptr): New function.
5516 (AT_lbl): Allow dw_val_class_loclistsptr.
5517 (print_dw_val, attr_checksum, attr_checksum_ordered, same_dw_val_p):
5518 Handle dw_val_class_loclistsptr.
5519 (loc_list_idx): New variable.
5520 (output_loclists_offsets, assign_location_list_indexes): New
5521 functions.
5522 (size_of_die): For dw_val_class_loc_list -gsplit-dwarf -gdwarf-5
5523 add size_of_uleb128 of the index. Drop never used
5524 dwarf_split_debug_info AT_index handling. Handle
5525 dw_val_class_loclistsptr.
5526 (value_format): Return DW_FORM_loclistsx for dw_val_class_loc_list
5527 if -gsplit-dwarf -gdwarf-5. Handle dw_val_class_loclistsptr.
5528 (output_loc_list): Handle DWARF 5 .debug_loclists* format.
5529 (output_loc_list_offset): Handle -gsplit-dwarf -gdwarf-5
5530 DW_FORM_loclistx indexes.
5531 (output_attr_index_or_value): Fix up formatting. Don't handle
5532 dw_val_class_loc_list here.
5533 (output_die): Formatting fixes. Handle dw_val_class_loclistsptr.
5534 For dw_val_class_loc_list call output_loc_list_offset rather than
5535 output_attr_index_or_value.
5536 (init_sections_and_labels): For -gdwarf-5 use .debug_loclists
5537 or .debug_loclists.dwo section name for debug_loc_section.
5538 (resolve_addr_in_expr): Formatting fix.
5539 (index_location_lists): Likewise.
5540 (dwarf2out_finish): If there are any location lists, for
5541 -gsplit-dwarf -gdwarf-5 add DW_AT_loclists_base attribute. Call
5542 index_location_lists only if have_location_lists. Call
5543 assign_location_list_indexes for -gsplit-dwarf -gdwarf-5. Emit
5544 .debug_loclists{,.dwo} section header for -gdwarf-5, for -gdwarf-5
5545 -gsplit-dwarf also emit offset table.
5546
5547 * dwarf2out.c (DWARF_LARGEST_DATA_FORM_BITS): Define.
5548 (size_of_die, value_format, output_die): Use
5549 DW_FORM_data16 for 128-bit dw_val_class_const_double or
5550 dw_val_class_wide_int.
5551
5552 * dwarf2out.c (dwarf_op): Renamed to ...
5553 (dwarf_OP): ... this.
5554 (convert_descriptor_to_mode, scompare_loc_descriptor,
5555 minmax_loc_descriptor, typed_binop, mem_loc_descriptor,
5556 implicit_ptr_descriptor, optimize_one_addr_into_implicit_ptr): Adjust
5557 callers.
5558 (dwarf_AT, dwarf_TAG): New functions.
5559 (check_die): Disallow DW_AT_call_all_calls next to
5560 DW_AT_GNU_all_call_sites.
5561 (gen_call_site_die): Use dwarf_TAG and dwarf_AT with DWARF 5 tag
5562 and attributes instead of the corresponding GNU tag and attributes.
5563 (gen_subprogram_die): Likewise. Emit call site information even
5564 for -gdwarf-5 -gstrict-dwarf. Replace DW_AT_GNU_defaulted with
5565 DW_AT_defaulted in comment.
5566 (resolve_addr): Handle DW_AT_call_origin attribute on
5567 DW_TAG_call_site DIE like DW_AT_abstract_origin on
5568 DW_TAG_GNU_call_site DIE.
5569
5570 * dwarf2out.c (dwarf_op): New function.
5571 (size_of_loc_descr): Handle DW_OP_{implicit_pointer,entry_value},
5572 DW_OP_{const,regval,deref}_type and DW_OP_{convert,reinterpret}.
5573 (output_loc_operands, output_loc_operands_raw): Likewise.
5574 (resolve_args_picking_1, prune_unused_types_walk_loc_descr,
5575 mark_base_types, hash_loc_operands, compare_loc_operands): Likewise.
5576 (resolve_addr_in_expr): Likewise. Only punt for !dwarf_strict
5577 if dwarf_version < 5.
5578 (convert_descriptor_to_mode): Use dwarf_op (DW_OP_xxx) instead of
5579 DW_OP_GNU_xxx.
5580 (scompare_loc_descriptor, ucompare_loc_descriptor,
5581 minmax_loc_descriptor, typed_binop, mem_loc_descriptor,
5582 implicit_ptr_descriptor, optimize_one_addr_into_implicit_ptr,
5583 optimize_location_into_implicit_ptr): Likewise. Only punt for
5584 !dwarf_strict if dwarf_version < 5.
5585 (string_cst_pool_decl): Adjust comment.
5586 (non_dwarf_expression): Handle DW_OP_implicit_pointer.
5587
5588 * dwarf2out.h (enum dw_val_class): Add dw_val_class_const_implicit,
5589 dw_val_class_unsigned_const_implicit and dw_val_class_file_implicit.
5590 (struct dw_val_node): Add val_file_implicit field.
5591 * dwarf2out.c (dw_val_equal_p, print_dw_val, attr_checksum,
5592 attr_checksum_ordered, same_dw_val_p, size_of_die, value_format,
5593 output_die): Handle dw_val_class_const_implicit,
5594 dw_val_class_unsigned_const_implicit and dw_val_class_file_implicit.
5595 (abbrev_die_table): Change into va_gc vec.
5596 (abbrev_die_table_allocated, abbrev_die_table_in_use,
5597 ABBREV_DIE_TABLE_INCREMENT): Remove.
5598 (AT_int, AT_unsigned, AT_file): Allow dw_val_class_*_implicit.
5599 (abbrev_opt_start, abbrev_usage_count, sorted_abbrev_dies): New
5600 variables.
5601 (build_abbrev_table): Adjust for abbrev_die_table being a va_gc vec.
5602 If abbrev_opt_start, fill in abbrev_usage_count and abbrev_dies
5603 vectors.
5604 (die_abbrev_cmp, optimize_implicit_const, optimize_abbrev_table): New
5605 functions.
5606 (output_die_abbrevs): For DW_FORM_implicit_const emit sleb128 with
5607 the implicit value.
5608 (output_abbrev_section): Adjust for abbrev_die_table being a va_gc
5609 vec.
5610 (output_comp_unit): Initialize abbrev_opt_start if emitting the main
5611 unit. Call optimize_abbrev_table.
5612 (dwarf2out_init, dwarf2out_finish, dwarf2out_c_finalize): Adjust for
5613 abbrev_die_table being a va_gc vec.
5614
5615 PR tree-optimization/77860
5616 * tree-ssa-reassoc.c (eliminate_using_constants): Handle
5617 also integral complex and vector constants.
5618
5619 * dwarf2out.c (dwarf2out_define, dwarf2out_undef, output_macinfo_op,
5620 optimize_macinfo_range, save_macinfo_strings): Replace
5621 DW_MACRO_GNU_* constants with corresponding DW_MACRO_* constants.
5622 (output_macinfo): Likewise. Emit .debug_macro* rather than
5623 .debug_macinfo* even for -gstrict-dwarf -gdwarf-5.
5624 (init_sections_and_labels): Use .debug_macro* labels rather than
5625 .debug_macinfo* labels even for -gstrict-dwarf -gdwarf-5.
5626 (dwarf2out_finish): Use DW_AT_macros instead of DW_AT_macro_info
5627 or DW_AT_GNU_macros for -gdwarf-5.
5628
5629 2016-10-31 Waldemar Brodkorb <wbx@openadk.org>
5630
5631 * config/microblaze/linux.h (UCLIBC_DYNAMIC_LINKER): Define.
5632
5633 2016-09-11 Le-Chun Wu <lcwu@google.com>
5634 Mark Wielaard <mjw@redhat.com>
5635
5636 * common.opt (Wshadow=global): New option. Default for -Wshadow.
5637 (Wshadow=local): New option.
5638 (Wshadow-local): Hidden alias for -Wshadow=local.
5639 (Wshadow=compatible-local): New option.
5640 (Wshadow-compatible-local): Hidden alias for
5641 -Wshadow=compatible-local.
5642 * doc/invoke.texi: Document Wshadow=global, Wshadow=local and
5643 Wshadow=compatible-local.
5644
5645 2016-10-31 Bin Cheng <bin.cheng@arm.com>
5646
5647 * tree-vect-slp.c (vect_get_and_check_slp_defs): New parameter SWAP.
5648 Check slp defs for COND_EXPR by swapping/inverting operands if the
5649 new parameter SWAP indicates so.
5650 (vect_build_slp_tree_1): New parameter SWAP. Check COND_EXPR stmt
5651 is isomorphic to the first stmt via swapping/inverting. Store swap
5652 information in the new parameter SWAP.
5653 (vect_build_slp_tree): New local array SWAP and pass it to function
5654 vect_build_slp_tree_1. Cleanup result handling code for function
5655 call to vect_get_and_check_slp_defs. Skip operand swapping if the
5656 order of operands has been fixed as indicated by SWAP[i].
5657
5658 2016-10-31 Bin Cheng <bin.cheng@arm.com>
5659
5660 * tree-vect-data-refs.c (vect_slp_analyze_node_dependences): Skip
5661 unnecessary data dependence check after visited store stmt.
5662
5663 2016-10-30 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
5664
5665 PR tree-optimization/71915
5666 PR tree-optimization/71490
5667 * gimple-ssa-strength-reduction.c (struct slsr_cand_d): Add
5668 stride_type field.
5669 (find_basis_for_base_expr): Require stride types to match when
5670 seeking a basis.
5671 (alloc_cand_and_find_basis): Record the stride type.
5672 (slsr_process_phi): Pass stride type to alloc_cand_and_find_basis.
5673 (backtrace_base_for_ref): Pass types to legal_cast_p_1 rather than
5674 the expressions having those types.
5675 (slsr_process_ref): Pass stride type to alloc_cand_and_find_basis.
5676 (create_mul_ssa_cand): Likewise.
5677 (create_mul_imm_cand): Likewise.
5678 (create_add_ssa_cand): Likewise.
5679 (create_add_imm_cand): Likewise.
5680 (legal_cast_p_1): Change interface to accept types rather than the
5681 expressions having those types.
5682 (legal_cast_p): Pass types to legal_cast_p_1.
5683 (slsr_process_cast): Pass stride type to
5684 alloc_cand_and_find_basis.
5685 (slsr_process_copy): Likewise.
5686 (dump_candidate): Display stride type when a cast exists.
5687 (create_add_on_incoming_edge): Introduce a cast when necessary for
5688 the stride type.
5689 (analyze_increments): Change the code checking for invalid casts
5690 to rely on the stride type, and update the documentation and
5691 example. Change the code checking for pointer multiplies to rely
5692 on the stride type.
5693 (insert_initializers): Introduce a cast when necessary for the
5694 stride type. Use the stride type for the type of the initializer.
5695
5696 2016-10-30 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
5697
5698 * config/arm/arm.c (arm_const_not_ok_for_debug_p): Use VAR_P.
5699
5700 2016-10-29 Jakub Jelinek <jakub@redhat.com>
5701
5702 PR rtl-optimization/77919
5703 * expr.c (expand_expr_real_1) <normal_inner_ref>: Only avoid forcing
5704 into memory if both modes are complex and their inner modes have the
5705 same precision. If the two modes are different complex modes, convert
5706 each part separately and generate a new CONCAT.
5707
5708 2016-10-29 John David Anglin <danglin@gcc.gnu.org>
5709
5710 * config/pa/pa64-hpux.h (FINI_SECTION_ASM_OP): Define to null string.
5711
5712 2016-10-29 Jakub Jelinek <jakub@redhat.com>
5713
5714 PR target/78148
5715 * gimple-ssa-store-merging.c
5716 (imm_store_chain_info::output_merged_store): Use build_aligned_type
5717 instead of SET_TYPE_ALIGN on shared integral type.
5718
5719 2016-10-29 John David Anglin <danglin@gcc.gnu.org>
5720
5721 * config/pa/pa.h (BIGGEST_ALIGNMENT): Adjust comment.
5722 (MALLOC_ABI_ALIGNMENT): Define to 128 on all targets except SOM.
5723 Adjust comment.
5724
5725 2016-10-28 Jeff Law <law@redhat.com>
5726
5727 * config/vax/vax.h (REGNO_REG_CLASS): Access the REGNO argument.
5728 * config/spu/spu.h (REGNO_REG_CLASS): Likewise.
5729
5730 2016-10-28 Eric Botcazou <ebotcazou@adacore.com>
5731
5732 * doc/sourcebuild.texi (Ada Tests): Remove mention of gcc chapter.
5733
5734 2016-10-28 Eric Botcazou <ebotcazou@adacore.com>
5735
5736 * target.def (min_arithmetic_precision): New hook.
5737 * doc/tm.texi.in (Misc): Add TARGET_MIN_ARITHMETIC_PRECISION.
5738 * doc/tm.texi: Regenerate.
5739 * internal-fn.c (expand_arith_overflow): Adjust handling of target
5740 dependent support by means of TARGET_MIN_ARITHMETIC_PRECISION.
5741 * targhooks.c (default_min_arithmetic_precision): New function.
5742 * targhooks.h (default_min_arithmetic_precision): Declare.
5743 * config/sparc/sparc.c (TARGET_MIN_ARITHMETIC_PRECISION): Define.
5744 (sparc_min_arithmetic_precision): New function.
5745
5746 2016-10-28 Segher Boessenkool <segher@kernel.crashing.org>
5747
5748 PR target/71847
5749 * combine.c (change_zero_ext): Handle zero_ext of hard registers.
5750 Swap commutative operands in new RTL if needed. Handle zero_ext
5751 in the set_dest.
5752 (recog_for_combine): Pass *pnewpat to change_zero_ext instead of
5753 PATTERN (insn).
5754
5755 2016-10-28 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
5756 Kugan Vivekanandarajah <kuganv@linaro.org>
5757 Jim Wilson <jim.wilson@linaro.org>
5758
5759 PR tree-optimization/43721
5760 * target.def: New hook expand_divmod_libfunc.
5761 * doc/tm.texi.in: Add hook for TARGET_EXPAND_DIVMOD_LIBFUNC.
5762 * doc/tm.texi: Regenerate.
5763 * internal-fn.def: Add new entry for DIVMOD ifn.
5764 * internal-fn.c (expand_DIVMOD): New.
5765 * tree-ssa-math-opts.c: Include optabs-libfuncs.h, tree-eh.h,
5766 targhooks.h.
5767 (widen_mul_stats): Add new field divmod_calls_inserted.
5768 (target_supports_divmod_p): New.
5769 (divmod_candidate_p): Likewise.
5770 (convert_to_divmod): Likewise.
5771 (pass_optimize_widening_mul::execute): Call calculate_dominance_info,
5772 renumber_gimple_stmt_uids at beginning of function. Call
5773 convert_to_divmod and record stats for divmod.
5774 * config/arm/arm.c (arm_expand_divmod_libfunc): Override hook
5775 TARGET_EXPAND_DIVMOD_LIBFUNC.
5776 * doc/sourcebuild.texi: Add items for arm_divmod_simode, divmod,
5777 divmod_simode.
5778
5779 2016-10-28 Eric Botcazou <ebotcazou@adacore.com>
5780 Segher Boessenkool <segher@kernel.crashing.org>
5781
5782 * dojump.c (do_jump_by_parts_greater_rtx): Invert probability when
5783 swapping the arms of the branch.
5784 * internal-fn.c (expand_addsub_overflow): Use a straight-line code
5785 sequence for the generic signed-signed-signed case.
5786
5787 2016-10-28 Jeff Law <law@redhat.com>
5788
5789 * config/bfin/bfin.c (bfin_legitimate_address_p): Add missing
5790 fallthru comment.
5791 * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Likewise.
5792
5793 2016-10-28 Segher Boessenkool <segher@kernel.crashing.org>
5794
5795 PR rtl-optimization/78029
5796 * function.c (prologue_contains, epilogue_contains): New functions.
5797 (record_prologue_seq, record_epilogue_seq): New functions.
5798 * function.h (prologue_contains, epilogue_contains,
5799 record_prologue_seq, record_epilogue_seq): New declarations.
5800 * sched-deps.c (sched_analyze_insn): Make dependencies to prevent
5801 mixing prologue and epilogue insns.
5802 (init_deps): Initialize the new fields in struct deps_desc.
5803 * sched-int.h (struct deps_desc): New fields last_prologue,
5804 last_epilogue, and last_logue_was_epilogue.
5805 * shrink-wrap.c (emit_common_heads_for_components): Record all
5806 emitted prologue and epilogue insns.
5807 (emit_common_tails_for_components): Ditto.
5808 (insert_prologue_epilogue_for_components): Ditto.
5809
5810 2016-10-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5811
5812 PR middle-end/22141
5813 * Makefile.in (OBJS): Add gimple-ssa-store-merging.o.
5814 * common.opt (fstore-merging): New Optimization option.
5815 * opts.c (default_options_table): Add entry for
5816 OPT_ftree_store_merging.
5817 * fold-const.h (can_native_encode_type_p): Declare prototype.
5818 * fold-const.c (can_native_encode_type_p): Define.
5819 * params.def (PARAM_STORE_MERGING_ALLOW_UNALIGNED): Define.
5820 (PARAM_MAX_STORES_TO_MERGE): Likewise.
5821 * timevar.def (TV_GIMPLE_STORE_MERGING): New timevar.
5822 * passes.def: Insert pass_tree_store_merging.
5823 * tree-pass.h (make_pass_store_merging): Declare extern
5824 prototype.
5825 * gimple-ssa-store-merging.c: New file.
5826 * doc/invoke.texi (Optimization Options): Document
5827 -fstore-merging.
5828 (--param documentation): Document store-merging-allow-unaligned
5829 and max-stores-to-merge.
5830
5831 2016-10-28 Will Schmidt <will_schmidt@vnet.ibm.com>
5832
5833 PR middle-end/72747
5834 * gimplify.c (gimplify_init_constructor): Move emit of constructor
5835 assignment to earlier in the if/else logic.
5836
5837 2016-10-28 Richard Biener <rguenther@suse.de>
5838
5839 PR middle-end/78128
5840 PR middle-end/71002
5841 * fold-const.c (make_bit_field_ref): Only adjust alias set
5842 when the original alias set was zero.
5843
5844 2016-10-28 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
5845
5846 * config/s390/s390.c (s390_adjust_loop_scan_osc): New function.
5847 (s390_adjust_loops): New function.
5848 (s390_reorg): Invoke s390_adjust_loops.
5849 * config/s390/s390.md (UNSPEC_OSC_BREAK): New constant.
5850 ("osc_break"): New insn definition.
5851
5852 2016-10-28 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
5853
5854 * config/s390/s390.opt: Support alternate cpu level naming (archXX).
5855 * config.gcc: Support alternate archXX cpu levels with
5856 --with-arch= and --with-tune=.
5857 * config/s390/linux.h: Translate new archXX cpu levels to the
5858 original names when calling GAS.
5859 * config/s390/tpf.h: Likewise.
5860 * doc/invoke.texi: Document the alternate cpu level names.
5861
5862 2016-10-28 Jakub Jelinek <jakub@redhat.com>
5863
5864 PR rtl-optimization/77919
5865 * expr.c (expand_expr_real_1) <normal_inner_ref>: Force CONCAT into
5866 MEM if mode1 is not a complex mode.
5867
5868 PR rtl-optimization/78132
5869 * ree.c (combine_reaching_defs): Give up if copy_needed and
5870 !HARD_REGNO_MODE_OK (REGNO (src_reg), dst_mode).
5871
5872 2016-10-27 Eric Botcazou <ebotcazou@adacore.com>
5873
5874 * config/sparc/sparc.md (<*vlop:code><VL:mode>3): Remove leading '*'.
5875
5876 2016-10-27 Michael Meissner <meissner@linux.vnet.ibm.com>
5877
5878 * config/rs6000/constraints.md (wH constraint): Add new
5879 constraints for allowing 32-bit integers (and eventually 8/16-bit
5880 integers) into the vector registers.
5881 (wI constraint): Likewise.
5882 (wJ constraint): Likewise.
5883 (wK constraint): Likewise.
5884 * config/rs6000/rs6000-cpus.def (ISA_2_7_MASKS_SERVER): Add
5885 -mvsx-small-integer as a default option for ISA 2.07
5886 (i.e. power8).
5887 (POWERPC_MASKS): Likewise.
5888 * config/rs6000/rs6000.opt (-mvsx-small-integer): Add new debug
5889 switch to turn off small integer support in vector registers.
5890 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Eliminate
5891 test for -mupper-regs-di, since it is already done with the
5892 reg_add[mode].scalar_in_vsx_p. Add support for the switch
5893 -mvsx-small-integer.
5894 (rs6000_debug_reg_global): Add support for wH, wI, wJ, and wK
5895 constraints.
5896 (rs6000_setup_reg_addr_masks): Likewise.
5897 (rs6000_init_hard_regno_mode_ok): Likewise.
5898 (rs6000_option_override_internal): Add consistency checks for
5899 -mvsx-small-integer.
5900 (rs6000_secondary_reload_simple_move): SImode is a simple move if
5901 -mvsx-small-integer.
5902 (rs6000_secondary_reload): Use std::swap.
5903 (rs6000_preferred_reload_class): Don't prefer FLOAT_REGS over
5904 VSX_REGS for small integers in vector registers, since there is no
5905 D-FORM address mode for such types.
5906 (rs6000_register_move_cost): Use FIRST_FPR_REGNO instead of 32.
5907 (rs6000_opt_masks): Add -mvsx-small-integer.
5908 * config/rs6000/vsx.md (VSINT_84): Add SImode for small integer
5909 support.
5910 (VSX_EXTRACT_I2): Clone VSX_EXTRACT_I, but drop V4SI since SImode
5911 extracts can be done on ISA 2.07.
5912 (vsx_extract_<mode>): Add support for small integers in vsx
5913 registers.
5914 (vsx_extract_<mode>_p9): Use 'v' instead of VSX_EX, since we no
5915 longer support V4SImode in this pattern.
5916 (vsx_extract_si): New insn to support extraction of SImode in ISA
5917 2.07 using either xxextractuw or vspltw.
5918 (vsx_extract_<mode>_p8): Use 'v' instead of VSX_EX, since we no
5919 longer support V4SImode in this pattern.
5920 * config/rs6000/rs6000.h (enum rs6000_reg_class_enum): Add wH, wI,
5921 wJ, and wK constraints.
5922 * config/rs6000/rs6000.md (f32_sv): Use correct instruction for
5923 storing SDmode with VSX instructions.
5924 (zero_extendsi<mode>2): Reorder pattern, so RLDICL comes after the
5925 GPR load and before the FPR and VSX loads. Remove ??, ! from the
5926 constraints. Add MFVSRWZ and XXEXTRACTUW instructions to support
5927 small integers in vector registers.
5928 (extendsi<mode>2): Reorder pattern, so EXTSW comes after the GPR
5929 load and before the FPR and VSX loads. Remove ??, ! from the
5930 constraints. Add VEXTSW2D support for small integers in vector
5931 registers.
5932 (lfiwax): Remove ! constraint. Add VEXTSW2D support for small
5933 integers in vector registers.
5934 (floatsi<mode>2_lfiwax): If -mvsx-small-integer issue a normal
5935 move instead of using an UNSPEC.
5936 (lfiwzx): Remove ! constraint. Add XXEXTRACTUW support for small
5937 integers in vector registers.
5938 (floatunssi<mode>2_lfiwzx): If -mvsx-small-integer issue a normal
5939 move instead of using an UNSPEC.
5940 (movsi_internal1): Add support for -mvsx-small-integer. Align
5941 columns so that it is more readable.
5942 (SImode splitter for ISA 3.0 constants): Add splitter for
5943 -128..127 constants that can easily be constructed on ISA 3.0.
5944 * doc/md.texi (PowerPC Constraints): Document wH, wI, wJ, and wK
5945 constraints.
5946
5947 2016-10-27 Jakub Jelinek <jakub@redhat.com>
5948
5949 PR middle-end/78025
5950 * omp-simd-clone.c (simd_clone_adjust): Handle noreturn declare simd
5951 functions.
5952
5953 2016-10-27 Aldy Hernandez <aldyh@redhat.com>
5954
5955 * builtins.c (expand_builtin_nonlocal_goto): Avoid evaluating
5956 PIC_OFFSET_TABLE_REGNUM twice.
5957
5958 2016-10-27 Bin Cheng <bin.cheng@arm.com>
5959
5960 * match.pd ((convert (op:s (convert@2 @0) (convert?@3 @1)))): Add
5961 support for constant operand for OP.
5962
5963 2016-10-27 Jakub Jelinek <jakub@redhat.com>
5964
5965 * dwarf2out.c (gen_member_die): Only reparent_child instead of
5966 splice_child_die if child doesn't have DW_AT_specification attribute.
5967
5968 2016-10-27 Thomas Preud'homme <thomas.preudhomme@arm.com>
5969
5970 * config/arm/arm.h (TARGET_HAVE_LDREX): Define for ARMv8-M Baseline.
5971 (TARGET_HAVE_LDREXBH): Likewise.
5972 (TARGET_HAVE_LDACQ): Likewise.
5973
5974 2016-10-27 Thomas Preud'homme <thomas.preudhomme@arm.com>
5975
5976 * config/arm/arm.c (arm_split_atomic_op): Add function comment. Add
5977 logic to to decide whether to copy over old value to register for new
5978 value.
5979 * config/arm/sync.md: Add comments explaning why mode and code
5980 attribute are not defined in iterators.md
5981 (thumb1_atomic_op_str): New code attribute.
5982 (thumb1_atomic_newop_str): Likewise.
5983 (thumb1_atomic_fetch_op_str): Likewise.
5984 (thumb1_atomic_fetch_newop_str): Likewise.
5985 (thumb1_atomic_fetch_oldop_str): Likewise.
5986 (atomic_exchange<mode>): Add new ARMv8-M Baseline only alternatives to
5987 mirror the more restrictive constraints of the Thumb-1 insns after
5988 split compared to Thumb-2 counterpart insns.
5989 (atomic_<sync_optab><mode>): Likewise. Add comment to keep constraints
5990 in sync with non atomic version.
5991 (atomic_nand<mode>): Likewise.
5992 (atomic_fetch_<sync_optab><mode>): Likewise.
5993 (atomic_fetch_nand<mode>): Likewise.
5994 (atomic_<sync_optab>_fetch<mode>): Likewise.
5995 (atomic_nand_fetch<mode>): Likewise.
5996 * config/arm/thumb1.md (thumb1_addsi3): Add comment to keep contraint
5997 in sync with atomic version.
5998 (thumb1_subsi3_insn): Likewise.
5999 (thumb1_andsi3_insn): Likewise.
6000 (thumb1_iorsi3_insn): Likewise.
6001 (thumb1_xorsi3_insn): Likewise.
6002
6003 2016-10-27 Nick Clifton <nickc@redhat.com>
6004
6005 * plugin.c (register_plugin_info): Produce an error message if the
6006 plugin is not found in the hash table.
6007
6008 2016-10-27 Bin Cheng <bin.cheng@arm.com>
6009
6010 * match.pd ((convert1 (minmax ((convert2 (x) c)))) -> minmax (x c)):
6011 New pattern.
6012
6013 2016-10-26 Kelvin Nilsen <kelvin@gcc.gnu.org>
6014
6015 PR target/78056
6016 * config/rs6000/rs6000.c (spe_init_builtins): Modify loops to not
6017 define builtin functions from the bdesc_spe_predicates or
6018 bdesc_spe_evsel arrays if the builtin mask is not compatible with
6019 the current compiler configuration.
6020 (paired_init_builtins): Modify loop to not define define builtin
6021 functions from the bdesc_paried_preds array if the builtin mask is
6022 not compatible with the current compiler configuration.
6023 (altivec_init_builtins): Modify loops to not define the
6024 __builtin_altivec_stxvl function nor the builtin functions from
6025 the bdesc_dst or bdesc_altivec_preds, or bdesc_abs arrays if the
6026 builtin mask is not compatible with the current compiler
6027 configuration.
6028
6029 2016-10-26 Jeff Law <law@redhat.com>
6030
6031 * config/sh/sh.c (output_branch): Add missing fallthru comments.
6032 (gen_shl_and): Likewise.
6033 * config/sh/sh.md (movsicc): Add missing fallthru comments.
6034
6035 * config/mips/mips.c (mips16_constant_cost): Add missing
6036 fallthru comments.
6037 (mips16_build_call_stub): Increase buffer size. Adjust
6038 fallthru comment.
6039
6040 2016-10-26 David Malcolm <dmalcolm@redhat.com>
6041
6042 * print-rtl.c (rtx_writer::print_rtx_operand_code_u): Print
6043 INSN_UIDs for all insns in compact mode.
6044 (rtx_writer::print_rtx): Likewise.
6045 * print-rtl.h (rtx_writer::flag_compact): Update comment.
6046 * rtl-tests.c (selftest::test_dumping_insns): Update expected
6047 output to include INSN_UID.
6048 (selftest::test_uncond_jump): Likewise.
6049
6050 2016-10-26 Pat Haugen <pthaugen@us.ibm.com>
6051
6052 * haifa-sched.c (call_used_regs_num): Rename to...
6053 (call_saved_regs_num): ...this.
6054 (fixed_regs_num): New variable.
6055 (sched_pressure_start_bb): Subtract out fixed_regs. Scale call_saved
6056 regs not call_used.
6057 (alloc_global_sched_pressure_data): Compute call_saved and fixed regs.
6058
6059 2016-10-26 David Malcolm <dmalcolm@redhat.com>
6060
6061 * print-rtl-function.c (print_rtx_function): Rewrite in terms of
6062 class rtx_writer.
6063 * print-rtl.c (outfile): Delete global.
6064 (sawclose): Likewise.
6065 (indent): Likewise.
6066 (in_call_function_usage): Likewise.
6067 (flag_compact): Likewise.
6068 (flag_simple): Likewise.
6069 (rtx_writer::rtx_writer): New ctor.
6070 (print_rtx_operand_code_0): Convert to...
6071 (rtx_writer::print_rtx_operand_code_0): ...this.
6072 (print_rtx_operand_code_e): Convert to...
6073 (rtx_writer::print_rtx_operand_code_e): ...this.
6074 (print_rtx_operand_codes_E_and_V): Convert to...
6075 (rtx_writer::print_rtx_operand_codes_E_and_V): ...this.
6076 (print_rtx_operand_code_i): Convert to...
6077 (rtx_writer::print_rtx_operand_code_i): ...this.
6078 (print_rtx_operand_code_r): Convert to...
6079 (rtx_writer::print_rtx_operand_code_r): ...this.
6080 (print_rtx_operand_code_u): Convert to...
6081 (rtx_writer::print_rtx_operand_code_u): ...this.
6082 (print_rtx_operand): Convert to...
6083 (rtx_writer::print_rtx_operand): ...this.
6084 (print_rtx): Convert to...
6085 (rtx_writer::print_rtx): ...this.
6086 (print_inline_rtx): Rewrite in terms of class rtx_writer.
6087 (debug_rtx): Likewise.
6088 (print_rtl): Convert to...
6089 (rtx_writer::print_rtl): ...this.
6090 (print_rtl): Reimplement in terms of class rtx_writer.
6091 (print_rtl_single): Rewrite in terms of class rtx_writer.
6092 (print_rtl_single_with_indent): Convert to..
6093 (rtx_writer::print_rtl_single_with_indent): ...this.
6094 (print_simple_rtl): Rewrite in terms of class rtx_writer.
6095 * print-rtl.h (flag_compact): Delete decl.
6096 (class rtx_writer): New class.
6097 * rtl-tests.c (selftest::assert_rtl_dump_eq): Rewrite in terms of
6098 class rtx_writer.
6099
6100 2016-10-26 Jeff Law <law@redhat.com>
6101
6102 * config/microblaze/microblaze.c (tls_mentioned_p): Avoid
6103 fallthru.
6104
6105 * config/arc/arc.c (acr_print_operand): Adjust fallthru comment.
6106 (check_if_valid_sleep_operand): Add missing fallthru comment.
6107 (arc_register_move_cost): Increase buffer size.
6108 * config/arc/arc.md (cbranch4si_scratch): Add missing fallthru
6109 comment.
6110 * config/arc/predicates.md (move_str_operand): Avoid fallthru.
6111
6112 * config/cr16/cr16.c (cr16_print_operand): Add missing fallthru
6113 comment. Add gcc_unreachable for path that should never happen.
6114
6115 * config/epiphany/epiphany.c (epiphany_print_operand): Adjust
6116 fallthru comment.
6117
6118 2016-10-26 Jakub Jelinek <jakub@redhat.com>
6119 Martin Liska <mliska@suse.cz>
6120
6121 PR fortran/77973
6122 * gimplify.c (gimplify_adjust_omp_clauses_1): For all added map
6123 clauses with OMP_CLAUSE_SIZE being a decl, call omp_notice_variable
6124 on outer context if any.
6125
6126 2016-10-26 Jakub Jelinek <jakub@redhat.com>
6127
6128 * gen-pass-instances.awk (adjust_linenos): Increment pass_lines[p]
6129 by increment rather than double it.
6130 (insert_remove_pass): Strip leading whitespace from args[3]. Don't
6131 emit a space before args[4].
6132 (END): Don't emit a space before with_arg.
6133
6134 2016-10-26 Thomas Preud'homme <thomas.preudhomme@arm.com>
6135
6136 * config/arm/sync.md (atomic_compare_and_swap<mode>_1): Add new ARMv8-M
6137 Baseline only alternatives to (i) hold store atomic success value in a
6138 return register rather than a scratch register, (ii) use a low register
6139 for it and to (iii) ensure the cbranchsi insn generated by the split
6140 respect the constraints of Thumb-1 cbranchsi4_insn and
6141 cbranchsi4_scratch.
6142 * config/arm/thumb1.md (cbranchsi4_insn): Add comment to indicate
6143 constraints must match those in atomic_compare_and_swap.
6144 (cbranchsi4_scratch): Likewise.
6145
6146 2016-10-26 Thomas Preud'homme <thomas.preudhomme@arm.com>
6147
6148 * config/arm/arm.c (arm_expand_compare_and_swap): Add new bdst local
6149 variable. Add the new parameter to the insn generator. Set that
6150 parameter to be CC flag for 32-bit targets, bval otherwise. Set the
6151 return value from the negation of that parameter for Thumb-1, keeping
6152 the logic unchanged otherwise except for using bdst as the destination
6153 register of the compare_and_swap insn.
6154 (arm_split_compare_and_swap): Add explanation about how is the value
6155 returned to the function comment. Rename scratch variable to
6156 neg_bval. Adapt initialization of variables holding operands to the
6157 new operand numbers. Use return register to hold result of store
6158 exclusive for Thumb-1, scratch register otherwise. Construct the
6159 appropriate cbranch for Thumb-1 targets, keeping the logic unchanged
6160 for 32-bit targets. Guard Z flag setting to restrict to 32bit targets.
6161 Use gen_cbranchsi4 rather than hand-written conditional branch to loop
6162 for strongly ordered compare_and_swap.
6163 * config/arm/predicates.md (cc_register_operand): New predicate.
6164 * config/arm/sync.md (atomic_compare_and_swap<mode>_1): Use a
6165 match_operand with the new predicate to accept either the CC flag or a
6166 destination register for the boolean return value, restricting it to
6167 CC flag only via constraint. Adapt operand numbers accordingly.
6168
6169 2016-10-26 Jeff Law <law@redhat.com>
6170
6171 * config/fr30/fr30.c (fr30_print_operand): Adjust fallthru comment.
6172
6173 * config/frv/frv.c (comparison_string): Do not fall through after
6174 an error.
6175
6176 * config/iq2000/iq2000.c (iq2000_function_arg): Adjust fallthru
6177 comment.
6178 (expand_one_builtin): Add missing break.
6179
6180 * config/m32c/m32c.c (encode_pattern_1): Add fallthru comment.
6181 (m32c_legitimate_address_p): Likewise.
6182
6183 * config/m32r/m32r.c (m32r_print_operand): Adjust fallthru comment.
6184
6185 * config/mcore/mcore.c (mcore_gen_compare): Adjust fallthru comments.
6186
6187 * config/microblaze/microblaze.c (microblaze_function_arg): Adjust
6188 fallthru comment.
6189
6190 * config/msp430/msp430.c (msp430_legitimate_address_p): Adjust
6191 fallthru comment.
6192
6193 * config/nios2/nios2.c (nios2_rtx_costs): Avoid fallthru.
6194
6195 * config/rl78/rl78.c (rl78_calculate_death_notes): Add fallthru
6196 comment.
6197 (rl78_asm_ctor_dtor): Increase buffer size.
6198
6199 * config/stormy16/stormy16.c (xstormy16_asm_output_destrutor): Increase
6200 buffer size.
6201 (xstormy16_asm_output_constructor): Likewise.
6202
6203 * config/pa/pa.c (pa_asm_output_mi_thunk): Increase buffer
6204 size.
6205
6206 * config/h8300/h8300.c (h8300_print_operand): Adjust FALLTHRU
6207 comment to silence warning.
6208
6209 * config/spu/spu.c (spu_sched_reorder): Add missing fallthru comment.
6210 (spu_legitimate_address_p): Fix logic error and add missing fallthru
6211 comment.
6212
6213 2016-10-26 Michael Matz <matz@suse.de>
6214
6215 PR tree-optimization/78060
6216 PR tree-optimization/78061
6217 PR tree-optimization/78088
6218 * tree-ssa-loop-split.c (easy_exit_values): New function.
6219 (tree_ssa_split_loops): Use it.
6220 (compute_new_first_bound): Change order of operations,
6221 fix invalid use of types.
6222
6223 2016-10-26 Georg-Johann Lay <avr@gjlay.de>
6224
6225 gen-pass-instances.awk is sensitive to the order in which
6226 passes are added; passes that appear later have to be added first.
6227
6228 PR target/71676
6229 PR target/71678
6230 * config/avr/avr-passes.def: Swap order of directives for
6231 gen-pass-instances.awk.
6232
6233 2016-10-25 Jeff Law <law@redhat.com>
6234
6235 * config/vax/vax.c (vad_address_cost_1): Add missing FALLTHRU comment.
6236 (vax_notice_update_cc): Likewise.
6237
6238 2016-10-25 Eric Botcazou <ebotcazou@adacore.com>
6239
6240 * config.gcc (sparc*-*-solaris2*): Adjust.
6241 (sparc64-*-linux*): Likewise.
6242 * config/sparc/default-64.h: Rename to...
6243 * config/sparc/default64.h: ...this.
6244 * config/sparc/sparc.c (sparc_option_override): Replace TARGET_64BIT
6245 with TARGET_ARCH64.
6246 (sparc_mangle_type): Replace !TARGET_64BIT with TARGET_ARCH32.
6247 * config/sparc/sparc.h: Minor tweaks.
6248 * config/sparc/sparc.md: Replace !TARGET_64BIT and !TARGET_ARCH64 with
6249 TARGET_ARCH32 throughout. Minor various tweaks throughout.
6250
6251 2016-10-25 David Malcolm <dmalcolm@redhat.com>
6252
6253 * input.c (fcache::file_patch): Add comment about lifetime.
6254 (selftest::cpp_reader_ptr): New class.
6255 (selftest::lexer_test): Convert m_parser from cpp_reader *
6256 to a cpp_reader_ptr, and move m_tempfile to after it.
6257 (selftest::lexer_test::lexer_test): Update for above reordering.
6258 (lexer_test::~lexer_test): Move cleanup of m_parser to
6259 cpp_reader_ptr's dtor.
6260
6261 2016-10-25 David Malcolm <dmalcolm@redhat.com>
6262
6263 * toplev.c (toplev::main): Remove call to
6264 location_adhoc_data_fini.
6265
6266 2016-10-25 Eric Botcazou <ebotcazou@adacore.com>
6267
6268 * tree.h (wi::fits_to_tree_p): Accept only 0 and 1 for boolean types.
6269 * tree.c (int_fits_type_p): Likewise. Adjust head comment.
6270
6271 2016-10-25 David Malcolm <dmalcolm@redhat.com>
6272
6273 * ggc-tests.c (forcibly_ggc_collect): Rename to...
6274 (selftest::forcibly_ggc_collect): ...this, and remove "static".
6275 (test_basic_struct): Update for above renaming.
6276 (test_length): Likewise.
6277 (test_union): Likewise.
6278 (test_finalization): Likewise.
6279 (test_deletable_global): Likewise.
6280 (test_inheritance): Likewise.
6281 (test_chain_next): Likewise.
6282 (test_user_struct): Likewise.
6283 (test_tree_marking): Likewise.
6284 * selftest-run-tests.c (selftest::run_tests): Call
6285 selftest::forcibly_ggc_collect at the end of the selftests.
6286 * selftest.h (selftest::forcibly_ggc_collect): New decl.
6287
6288 2016-10-25 Jakub Jelinek <jakub@redhat.com>
6289
6290 PR target/78102
6291 * optabs.def (vcondeq_optab, vec_cmpeq_optab): New optabs.
6292 * optabs.c (expand_vec_cond_expr): For comparison codes
6293 EQ_EXPR and NE_EXPR, attempt vcondeq_optab as fallback.
6294 (expand_vec_cmp_expr): For comparison codes
6295 EQ_EXPR and NE_EXPR, attempt vec_cmpeq_optab as fallback.
6296 * optabs-tree.h (expand_vec_cmp_expr_p, expand_vec_cond_expr_p):
6297 Add enum tree_code argument.
6298 * optabs-query.h (get_vec_cmp_eq_icode, get_vcond_eq_icode): New
6299 inline functions.
6300 * optabs-tree.c (expand_vec_cmp_expr_p): Add CODE argument. For
6301 CODE EQ_EXPR or NE_EXPR, attempt to use vec_cmpeq_optab as
6302 fallback.
6303 (expand_vec_cond_expr_p): Add CODE argument. For CODE EQ_EXPR or
6304 NE_EXPR, attempt to use vcondeq_optab as fallback.
6305 * tree-vect-generic.c (expand_vector_comparison,
6306 expand_vector_divmod, expand_vector_condition): Adjust
6307 expand_vec_cmp_expr_p and expand_vec_cond_expr_p callers.
6308 * tree-vect-stmts.c (vectorizable_condition,
6309 vectorizable_comparison): Likewise.
6310 * tree-vect-patterns.c (vect_recog_mixed_size_cond_pattern,
6311 check_bool_pattern, search_type_for_mask_1): Likewise.
6312 * expr.c (do_store_flag): Likewise.
6313 * doc/md.texi (@code{vec_cmpeq@var{m}@var{n}},
6314 @code{vcondeq@var{m}@var{n}}): Document.
6315 * config/i386/sse.md (vec_cmpeqv2div2di, vcondeq<VI8F_128:mode>v2di):
6316 New expanders.
6317
6318 2016-10-25 Jeff Law <law@redhat.com>
6319
6320 * config/v850/v850.c (v850_handle_data_area_attribute): Fix fallthru
6321 comment.
6322 (v850_output_aligned_bss): Add missing break.
6323
6324 * config/m68k/m68k.c (m68k_get_reloc_decoration): Add gcc_unreachable.
6325
6326 2016-10-25 Martin Liska <mliska@suse.cz>
6327
6328 PR sanitizer/78106
6329 * sanopt.c (imm_dom_path_with_freeing_call): Handle gasm
6330 statements as they can also contain possibly a freeing call.
6331
6332 2016-10-25 H.J. Lu <hongjiu.lu@intel.com>
6333 Martin Liska <mliska@suse.cz>
6334
6335 PR ipa/78099
6336 * common.opt: Mark flag_ipa_icf_variables as Optimization flag.
6337 * ipa-icf.c (sem_function::get_hash): Add target optimization
6338 node to hash.
6339
6340 2016-10-25 Wilco Dijkstra <wdijkstr@arm.com>
6341
6342 PR target/78041
6343 * config/arm/neon.md (ashldi3_neon): Add "r 0 i" and "&r r i" variants.
6344 Remove partial overlap check for shift by 1.
6345 (ashldi3_neon): Likewise.
6346
6347 2016-10-25 Thomas Preud'homme <thomas.preudhomme@arm.com>
6348
6349 * config/arm/constraints.md (Q constraint): Document its use for
6350 Thumb-1.
6351 (Pf constraint): New constraint for relaxed, consume or relaxed memory
6352 models.
6353 * config/arm/sync.md (atomic_load<mode>): Add new ARMv8-M Baseline only
6354 alternatives to allow any register when memory model matches Pf and
6355 thus lda is used, but only low registers otherwise. Use unpredicated
6356 output template for Thumb-1 targets.
6357 (atomic_store<mode>): Likewise for stl.
6358 (arm_load_exclusive<mode>): Add new ARMv8-M Baseline only alternative
6359 whose output template does not have predication.
6360 (arm_load_acquire_exclusive<mode>): Likewise.
6361 (arm_load_exclusivesi): Likewise.
6362 (arm_load_acquire_exclusivesi): Likewise.
6363 (arm_store_release_exclusive<mode>): Likewise.
6364 (arm_store_exclusive<mode>): Use unpredicated output template for
6365 Thumb-1 targets.
6366
6367 2016-10-25 Jakub Jelinek <jakub@redhat.com>
6368
6369 * internal-fn.def (LAUNDER): New internal function.
6370 * internal-fn.c (expand_LAUNDER): New function.
6371
6372 2016-10-25 Georg-Johann Lay <avr@gjlay.de>
6373 Pitchumani Sivanupandi <pitchumani.sivanupandi@microchip.com>
6374
6375 New avr target pass to work around performance loss by PR fix.
6376
6377 PR target/71676
6378 PR target/71678
6379 * config/avr/avr.md (casesi_<mode>_sequence) [qi,hi]: New insn.
6380 (*cmp<mode>) [qi,qq,uqq,hi,hq,uhq,ha,uha]: Rename to cmp<mode>3.
6381 * config/avr/predicates.md (extend_operator): New.
6382 * config/avr/avr-passes.def (avr_pass_casesi): Register new pass.
6383 * config/avr/avr-protos.h (avr_casei_sequence_check_operands)
6384 (make_avr_pass_casesi): New prototypes.
6385 * config/avr/avr.c (print-rtl.h): Include it.
6386 (pass_data avr_pass_data_casesi): Data for new pass.
6387 (avr_pass_casesi): New class implementing rtl_opt_pass .avr-casesi.
6388 (make_avr_pass_casesi, avr_parallel_insn_from_insns)
6389 (avr_is_casesi_sequence, avr_casei_sequence_check_operands)
6390 (avr_optimize_casesi): New functions.
6391
6392 2016-10-25 Georg-Johann Lay <avr@gjlay.de>
6393 Pitchumani Sivanupandi <pitchumani.sivanupandi@microchip.com>
6394
6395 PR target/71676
6396 PR target/71678
6397 * config/avr/avr.md (casesi): Rewrite avoiding subregs of SI.
6398
6399 2016-10-24 Jakub Jelinek <jakub@redhat.com>
6400
6401 * dwarf2out.c (gen_subprogram_die): Add DW_AT_reference or
6402 DW_AT_rvalue_reference attributes.
6403
6404 2016-10-24 Bernd Edlinger <bernd.edlinger@hotmail.de>
6405
6406 * doc/invoke.text (Wint-in-bool-context): Update documentation.
6407 * value-prof.c (stringop_block_profile): Fix a warning.
6408
6409 2016-10-24 Martin Sebor <msebor@redhat.com>
6410
6411 PR middle-end/77735
6412 * builtins.c (string_length): New function.
6413 (c_strlen): Use string_length. Correctly handle wide strings.
6414 * gimple-ssa-sprintf.c (target_max_value, target_size_max): New
6415 functions.
6416 (target_int_max): Call target_max_value.
6417 (format_result::knownrange): New data member.
6418 (fmtresult::fmtresult): Define default constructor.
6419 (format_integer): Use it and set format_result::knownrange.
6420 Handle global constants.
6421 (format_floating_max): Add third argument.
6422 (format_floating): Recompute maximum value for %a for each argument.
6423 (get_string_length): Use fmtresult default ctor.
6424 (format_string): Set format_result::knownrange.
6425 (format_directive): Check format_result::knownrange.
6426 (add_bytes): Same. Correct caret placement in diagnostics.
6427 (pass_sprintf_length::compute_format_length): Set
6428 format_result::knownrange.
6429 (pass_sprintf_length::handle_gimple_call): Use target_size_max.
6430
6431 2016-10-24 Jakub Jelinek <jakub@redhat.com>
6432
6433 * config/i386/i386.c (ix86_in_large_data_p, ix86_expand_builtin): Use
6434 VAR_P (x) instead of TREE_CODE (x) == VAR_DECL.
6435
6436 2016-10-24 Ximin Luo <infinity0@pwned.gg>
6437
6438 PR debug/77985
6439 * dwarf2out.c (file_table_relative_p): Remove.
6440 (gen_compile_unit_die, dwarf2out_early_finish): Emit DW_AT_comp_dir
6441 also for absolute paths.
6442 * doc/tm.texi: Update.
6443 * doc/tm.texi.in (SDB and DWARF) <TARGET_FORCE_AT_COMP_DIR>: Remove.
6444 * target.def (force_at_comp_dir): Remove hook.
6445 * config/darwin.h (TARGET_FORCE_AT_COMP_DIR): Remove define.
6446
6447 2016-10-24 Richard Biener <rguenther@suse.de>
6448
6449 * tree-vrp.c (evrp_dom_walker::before_dom_children): Ignore
6450 backedges when identifying the single predecessor to take
6451 conditional info from. Use SCEV to get at ranges for loop IVs.
6452 * lto-streamer-out.c (lto_write_mode_table): CSE inner mode to
6453 avoid false warning.
6454
6455 2016-10-24 Georg-Johann Lay <avr@gjlay.de>
6456
6457 PR target/78093
6458 * doc/extend.texi (AVR Variable Attributes) [absdata]: Document it.
6459 * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_ABSDATA): New macro.
6460 (avr_address_tiny_absdata_p): New static function.
6461 (avr_legitimate_address_p, avr_legitimize_address) [AVR_TINY]: Use
6462 it to determine validity of constant addresses.
6463 (avr_attribute_table) [absdata]: New variable attribute...
6464 (avr_handle_absdata_attribute): ...and handler.
6465 (avr_decl_absdata_p): New static function.
6466 (avr_encode_section_info) [AVR_TINY]: Use it to add flag
6467 AVR_SYMBOL_FLAG_TINY_ABSDATA to respective symbols_refs.
6468 (avr_address_cost) [AVR_TINY]: absdata addresses cost 2.
6469
6470 2016-10-24 Richard Biener <rguenther@suse.de>
6471
6472 PR tree-optimization/78076
6473 * tree-ssa-loop-split.c (tree_ssa_split_loops): Reset aux
6474 also on the loop tree root.
6475
6476 2016-10-24 Jakub Jelinek <jakub@redhat.com>
6477
6478 * config/i386/i386.c (ix86_fold_builtin): Handle
6479 IX86_BUILTIN_BEXTR{,I}{32,64}, IX86_BUILTIN_BZHI{32,64},
6480 IX86_BUILTIN_PDEP{32,64} and IX86_BUILTIN_PEXT{32,64}.
6481 (ix86_gimple_fold_builtin): Handle IX86_BUILTIN_BZHI{32,64},
6482 IX86_BUILTIN_PDEP{32,64} and IX86_BUILTIN_PEXT{32,64}.
6483
6484 2016-10-24 Martin Liska <mliska@suse.cz>
6485
6486 PR sanitizer/77966
6487 * opts.c (finish_options): Skip conditionally.
6488
6489 2016-10-23 Martin Sebor <msebor@redhat.com>
6490
6491 PR target/77837
6492 * config/rs6000/linux.h (TARGET_PRINTF_POINTER_FORMAT): Define.
6493 * config/rs6000/linux64.h (TARGET_PRINTF_POINTER_FORMAT): Likewise.
6494
6495 2016-10-23 Eric Botcazou <ebotcazou@adacore.com>
6496
6497 * config/sparc/sparc.md (cpu_feature): Minor tweak.
6498 (enabled): Likewise.
6499 (movsi_insn, movdi_insn_sp32, movdi_insn_sp64, movsf_insn,
6500 movdf_insn_sp32, movdf_insn_sp64, zero_extendsidi2_insn_sp64,
6501 sign_extendsidi2_insn, mov<VM32:mode>_insn, mov<VM64:mode>_insn_sp64,
6502 mov<VM64:mode>_insn_sp32, not_<code><mode>, nand<mode>_vis,
6503 <code>_not1<mode>_vi, <code>_not2<mode>_vis, one_cmpl<mode>2,
6504 fcmp<code><GCM:gcm_name>, pdistn<mode>_vis): Likewise.
6505
6506 2016-10-23 Eric Botcazou <ebotcazou@adacore.com>
6507
6508 * config/sparc/sparc-c.c (sparc_target_macros): Replace TARGET_64BIT
6509 with TARGET_ARCH64. Define __VIS to 0x400 if TARGET_VIS4.
6510
6511 2016-10-21 Andrew Pinski <apinski@cavium.com>
6512
6513 * config/aarch64/aarch64-cores.def: Rewrite so IMP and PART are
6514 integer constants.
6515 * config/aarch64/driver-aarch64.c (struct aarch64_core_data): Change
6516 implementer_id to unsigned char.
6517 Change part_no to unsigned int.
6518 (AARCH64_BIG_LITTLE): New define.
6519 (INVALID_IMP): New define.
6520 (INVALID_CORE): New define.
6521 (cpu_data): Change the last element's implementer_id and part_no to
6522 integers.
6523 (valid_bL_string_p): Rewrite to ..
6524 (valid_bL_core_p): this for integers instead of strings.
6525 (parse_field): New function.
6526 (contains_string_p): Rewrite to ...
6527 (contains_core_p): this for integers and only for the part_no.
6528 (host_detect_local_cpu): Rewrite handling of implementation and
6529 par num to be integers; simplifying the code.
6530
6531 2016-10-21 Kugan Vivekanandarajah <kuganv@linaro.org>
6532
6533 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Create nonzero
6534 value range for pointers in more cases.
6535
6536 2016-10-21 Wilco Dijkstra <wdijkstr@arm.com>
6537
6538 * config/aarch64/aarch64.c (aarch64_add_constant_internal):
6539 Add extra argument to allow emitting the move immediate.
6540 Use add/sub with positive immediate.
6541 (aarch64_add_constant): Add inline function.
6542 (aarch64_add_sp): Likewise.
6543 (aarch64_sub_sp): Likewise.
6544 (aarch64_expand_prologue): Call aarch64_sub_sp.
6545 (aarch64_expand_epilogue): Call aarch64_add_sp.
6546 Decide when to leave out move.
6547 (aarch64_output_mi_thunk): Call aarch64_add_constant.
6548
6549 2016-10-21 Wilco Dijkstra <wdijkstr@arm.com>
6550
6551 * config/aarch64/aarch64.c (aarch64_layout_frame):
6552 Align FP callee-saves.
6553
6554 2016-10-21 Jakub Jelinek <jakub@redhat.com>
6555
6556 * config/i386/adxintrin.h (_subborrow_u32, _addcarry_u32,
6557 _addcarryx_u32, _subborrow_u64, _addcarry_u64, _addcarryx_u64):
6558 Formatting fixes.
6559 * config/i386/rdseedintrin.h (_rdseed16_step, _rdseed32_step,
6560 _rdseed64_step): Likewise.
6561 * config/i386/tbmintrin.h (__bextri_u32): Likewise.
6562
6563 PR target/78057
6564 * config/i386/i386.c: Include fold-const-call.h, tree-vrp.h
6565 and tree-ssanames.h.
6566 (ix86_fold_builtin): Fold IX86_BUILTIN_[LT]ZCNT{16,32,64}
6567 with INTEGER_CST argument.
6568 (ix86_gimple_fold_builtin): New function.
6569 (TARGET_GIMPLE_FOLD_BUILTIN): Define.
6570
6571 * dwarf2out.c (ranges_table): Change into vec<dw_ranges, va_gc> *.
6572 (ranges_by_label): Change into vec<dw_ranges_by_label, va_gc> *.
6573 (ranges_table_allocated, ranges_table_in_use,
6574 ranges_by_label_allocated, ranges_by_label_in_use,
6575 RANGES_TABLE_INCREMENT): Removed.
6576 (add_ranges_num): Use vec_safe_push into ranges_table.
6577 (add_ranges_by_labels): Use vec_safe_push into ranges_by_label.
6578 (output_ranges): Adjust for ranges_table and ranges_by_label
6579 conversion from arrays to vec.
6580 (add_high_low_attributes, dwarf2out_finish): Adjust for range_table
6581 conversion from arrays to vec.
6582 (dwarf2out_c_finalize): Don't clear ranges_table_allocated,
6583 ranges_table_in_use, ranges_by_label_allocated and
6584 ranges_by_label_in_use. Set ranges_by_label to NULL instead of 0.
6585
6586 * dwarf2out.c (gen_variable_die): Emit DW_AT_const_expr attribute
6587 if needed. Re-add origin_die variable and its initialization.
6588
6589 * gimplify.c (gimplify_bind_expr): Handle oacc_declare_returns
6590 even for -fstack-reuse=none, or for volatile vars etc.
6591
6592 2016-10-21 David Malcolm <dmalcolm@redhat.com>
6593
6594 * print-rtl-function.c (flag_compact): Move extern decl to...
6595 * print-rtl.h (flag_compact): ...here.
6596 * rtl-tests.c (selftests::assert_rtl_dump_eq): New function.
6597 (ASSERT_RTL_DUMP_EQ): New macro.
6598 (selftest::test_dumping_regs): New function.
6599 (selftest::test_dumping_insns): New function.
6600 (selftest::test_uncond_jump): Add uses of ASSERT_RTL_DUMP_EQ on
6601 the insns.
6602 (selftest::rtl_tests_c_tests): Call the new test functions.
6603
6604 2016-10-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
6605
6606 * cfgcleanup.c (merge_blocks_move_successor_nojumps): Adjust.
6607 (outgoing_edges_match): Likewise.
6608 (try_crossjump_to_edge): Likewise.
6609 * cfgrtl.c (try_redirect_by_replacing_jump): Likewise.
6610 (rtl_tidy_fallthru_edge): Likewise.
6611 * rtl.h (tablejump_p): Adjust prototype.
6612 * rtlanal.c (tablejump_p): Return the label as a rtx_insn *.
6613
6614 2016-10-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
6615
6616 * rtl.h (label_ref_label): New function.
6617 (set_label_ref_label): New function.
6618 (LABEL_REF_LABEL): Delete.
6619 * alias.c (rtx_equal_for_memref_p): Adjust.
6620 * cfgbuild.c (make_edges): Likewise.
6621 (purge_dead_tablejump_edges): Likewise.
6622 * cfgexpand.c (convert_debug_memory_address): Likewise.
6623 * cfgrtl.c (patch_jump_insn): Likewise.
6624 * combine.c (distribute_notes): Likewise.
6625 * cse.c (hash_rtx_cb): Likewise.
6626 (exp_equiv_p): Likewise.
6627 (fold_rtx): Likewise.
6628 (check_for_label_ref): Likewise.
6629 * cselib.c (rtx_equal_for_cselib_1): Likewise.
6630 (cselib_hash_rtx): Likewise.
6631 * emit-rtl.c (mark_label_nuses): Likewise.
6632 * explow.c (convert_memory_address_addr_space_1): Likewise.
6633 * final.c (output_asm_label): Likewise.
6634 (output_addr_const): Likewise.
6635 * gcse.c (add_label_notes): Likewise.
6636 * genconfig.c (walk_insn_part): Likewise.
6637 * genrecog.c (validate_pattern): Likewise.
6638 * ifcvt.c (cond_exec_get_condition): Likewise.
6639 (noce_emit_store_flag): Likewise.
6640 (noce_get_alt_condition): Likewise.
6641 (noce_get_condition): Likewise.
6642 * jump.c (maybe_propagate_label_ref): Likewise.
6643 (mark_jump_label_1): Likewise.
6644 (redirect_exp_1): Likewise.
6645 (rtx_renumbered_equal_p): Likewise.
6646 * lra-constraints.c (operands_match_p): Likewise.
6647 * print-rtl.c (print_value): Likewise.
6648 * reload.c (find_reloads): Likewise.
6649 * reload1.c (set_label_offsets): Likewise.
6650 * reorg.c (get_branch_condition): Likewise.
6651 * rtl-tests.c (test_uncond_jump): Likewise.
6652 * rtl.c (rtx_equal_p_cb): Likewise.
6653 (rtx_equal_p): Likewise.
6654 * rtlanal.c (reg_mentioned_p): Likewise.
6655 (rtx_referenced_p): Likewise.
6656 (get_condition): Likewise.
6657 * varasm.c (const_hash_1): Likewise.
6658 (compare_constant): Likewise.
6659 (const_rtx_hash_1): Likewise.
6660 (output_constant_pool_1): Likewise.
6661
6662 2016-10-21 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
6663
6664 PR target/71627
6665 * reload.c (find_valid_class_1): Allow regclass if atleast one
6666 regno in regclass is ok. Compute and use rclass size based on
6667 actually available regnos for mode in rclass.
6668
6669 2016-10-21 Eric Botcazou <ebotcazou@adacore.com>
6670
6671 * config/sparc/sparc-modes.def (CCV): New.
6672 (CCXV): Likewise.
6673 * config/sparc/predicates.md (v_comparison_operator): New.
6674 (icc_comparison_operator): Add support for CCV/CCXV.
6675 (xcc_comparison_operator): Likewise.
6676 * config/sparc/sparc.c (output_cbranch): Likewise.
6677 (sparc_print_operand): Likewise.
6678 * config/sparc/sparc.md (UNSPEC_{ADD,SUB,NEG}V): New constants.
6679 (uaddvdi4): New expander.
6680 (addvdi4): Likewise.
6681 (uaddvdi4_sp32): New instruction.
6682 (addvdi4_sp32): Likewise.
6683 (uaddvsi4): New expander.
6684 (addvsi4): Likewise.
6685 (cmp_ccc_plus_sltu_set): New instruction.
6686 (cmp_ccv_plus): Likewise.
6687 (cmp_ccxv_plus): Likewise.
6688 (cmp_ccv_plus_set): Likewise.
6689 (cmp_ccxv_plus_set): Likewise.
6690 (cmp_ccv_plus_sltu_set): Likewise.
6691 (uaddvdi4): New expander.
6692 (subvdi4): Likewise.
6693 (usubdi4_sp32): New instruction.
6694 (subvdi4_sp32): Likewise.
6695 (usubvsi4): New expander.
6696 (subvsi4): Likewise.
6697 (cmpsi_minus_sltu_set): New instruction.
6698 (cmp_ccv_minus): Likewise.
6699 (cmp_ccxv_minus): Likewise.
6700 (cmp_ccv_minus_set): Likewise.
6701 (cmp_ccxv_minus_set): Likewise.
6702 (cmp_ccv_minus_sltu_set): Likewise.
6703 (unegvdi3): New expander.
6704 (negvdi3): Likewise.
6705 (unegdi3_sp32): New instruction.
6706 (negvdi3_sp32): Likewise.
6707 (unegvsi3): New expander.
6708 (negvsi3): Likewise.
6709 (cmp_ccc_neg_sltu_set): New instruction.
6710 (cmp_ccv_neg): Likewise.
6711 (cmp_ccxv_neg): Likewise.
6712 (cmp_ccv_neg_set): Likewise.
6713 (cmp_ccxv_neg_set): Likewise.
6714 (cmp_ccv_neg_sltu_set): Likewise.
6715
6716 * tree-ssa-loop-split.c: Remove trailing spaces.
6717 * match.pd: Likewise.
6718
6719 2016-10-21 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
6720
6721 PR rtl-optimization/78038
6722 * ree.c (get_defs): Return NULL if a defining insn for REG cannot
6723 be deduced to set REG through the RTL structure.
6724 (make_defs_and_copies_lists): Return false on a failing get_defs call.
6725
6726 2016-10-21 Richard Biener <rguenther@suse.de>
6727
6728 PR tree-optimization/78051
6729 * tree-vrp.c (evrp_dom_walker::before_dom_children): Update stmt
6730 and mark replaced if folding did something.
6731
6732 2016-10-21 David Edelsohn <dje.gcc@gmail.com>
6733
6734 * config/rs6000/rs6000.c (rs6000_assemble_visibility): Swap "internal"
6735 and "protected" in visibility types.
6736 (rs6000_xcoff_declare_function_name): Fix formatting.
6737 (rs6000_xcoff_declare_object_name): Fix formatting.
6738
6739 2016-10-21 Uros Bizjak <ubizjak@gmail.com>
6740
6741 * config/i386/i386.c (ix86_fold_builtin): Handle IX86_BUILTIN_INFQ
6742 and IX86_BUILTIN_HUGE_VALQ here ...
6743 (ix86_expand_builtin): ... not here.
6744
6745 2016-10-20 Jakub Jelinek <jakub@redhat.com>
6746
6747 * doc/gty.texi (for_user): Use @item next to @findex.
6748
6749 2016-10-20 Uros Bizjak <ubizjak@gmail.com>
6750
6751 PR target/78037
6752 * config/i386/bmiintrin.h (__tzcnt_u16): Call __builtin_ia32_tzcnt_u16.
6753 (__tzcnt_u32, _tzcnt_u32): Call __builtin_ia32_tzcnt_u32.
6754 (__tzcnt_u64, _tzcnt_u64): Call __builtin_ia32_tzcnt_u64.
6755 * config/i386/lzcntintrin.h (__lzcnt_u16): Call
6756 __builtin_ia32_lzcnt_u16.
6757 (__lzcnt_u32, _lzcnt_u32): Call __builtin_ia32_lzcnt_u32.
6758 (__lzcnt_u64, _lzcnt_u64): Call __builtin_ia32_lzcnt_u64.
6759 * config/i386/i386.md (UNSPEC_LZCNT, UNSPEC_TZCNT): New unspecs.
6760 (ctz<mode>2, *ctz<mode>2): Use SWI48 mode iterator.
6761 (bmi_tzcnt_<mode>): New expander.
6762 (*bmi_tzcnt_<mode>_falsedep_1): New define_insn_and_split pattern.
6763 (*bmi_tzcnt_<mode>_falsedep, *bmi_tzcnt_<mode>): New insn patterns.
6764 (clz<mode>2_lzcnt, *clz<mode>2_lzcnt): Use SWI48 mode iterator.
6765 (lzcnt_<mode>): New expander.
6766 (*lzcnt_<mode>_falsedep_1): New define_insn_and_split pattern.
6767 (*lzcnt_<mode>_falsedep, *lzcnt_<mode>): New insn patterns.
6768 * config/i386/i386-builtin-types.def (UINT_FTYPE_UINT): New.
6769 (UINT64_FTYPE_UINT64): New.
6770 * config/i386/i386-builtin.def (__builtin_clzs): Remove description.
6771 (__builtin_ia32_lzcnt_u16): New description.
6772 (__builtin_ia32_lzcnt_u32): Ditto.
6773 (__builtin_ia32_lzcnt_u64): Ditto.
6774 (__builtin_ctzs): Remove description.
6775 (__builtin_ia32_tzcnt_u16): New description.
6776 (__builtin_ia32_tzcnt_u32): Ditto.
6777 (__builtin_ia32_tzcnt_u64): Ditto.
6778 * config/i386/i386.c (ix86_expand_args_builtin): Handle
6779 UINT_FTYPE_UINT and UINT64_FTYPE_UINT64.
6780
6781 2016-10-20 Martin Liska <mliska@suse.cz>
6782
6783 PR lto/78049
6784 * lto-streamer-in.c (fixup_call_stmt_edges_1): Replace value
6785 comparison with STMT_UID_NOT_IN_RANGE.
6786 (fixup_call_stmt_edges): Do not fixup edges of a thunk in
6787 LTRANS.
6788
6789 2016-10-20 Eric Botcazou <ebotcazou@adacore.com>
6790
6791 * compare-elim.c (conforming_compare): Accept UNSPECs.
6792 (find_comparison_dom_walker::before_dom_children): Deal with
6793 instructions both using and killing the flags register.
6794 (equivalent_reg_at_start): New function extracted from...
6795 (try_eliminate_compare): ...here. Use it and add support for
6796 registers and UNSPECs as second operand of the compare.
6797 * config/visium/visium-modes.def (CCV): New.
6798 * config/visium/predicates.md (visium_v_comparison_operator): New.
6799 (visium_branch_operator): Deal with CCV mode.
6800 * config/visium/visium.c (visium_select_cc_mode): Likewise.
6801 (output_cbranch): Likewise.
6802 * config/visium/visium.md (UNSPEC_{ADD,SUB,NEG}V): New constants.
6803 (uaddv<mode>4): New expander.
6804 (addv<mode>4): Likewise.
6805 (add<mode>3_insn_set_carry): New instruction.
6806 (add<mode>3_insn_set_overflow): Likewise.
6807 (addsi3_insn_set_overflow): Likewise.
6808 (usubv<mode>4): New expander.
6809 (subv<mode>4): Likewise.
6810 (sub<mode>3_insn_set_carry): New instruction.
6811 (sub<mode>3_insn_set_overflow): Likewise.
6812 (subsi3_insn_set_overflow): Likewise.
6813 (unegv<mode>3): New expander.
6814 (negv<mode>3): Likewise.
6815 (neg<mode>2_insn_set_overflow): New instruction.
6816 (addv_tst<mode>): Likewise.
6817 (subv_tst<mode>): Likewise.
6818 (negv_tst<mode>): Likewise.
6819 (cbranch<mode>4_addv_insn): New splitter and instruction.
6820 (cbranch<mode>4_subv_insn): Likewise.
6821 (cbranch<mode>4_negv_insn): Likewise.
6822
6823 2016-10-20 Richard Biener <rguenther@suse.de>
6824
6825 * tree-ssa-alias.c (ptrs_compare_unequal): Remove code duplication.
6826 Handle decls possibly not bound.
6827 * tree-ssa-structalias.c (get_constraint_for_ssa_var): Add
6828 nothing_id for decls that might not be bound if we are interested
6829 for the address.
6830 (get_constraint_for_component_ref): Deal with that.
6831
6832 2016-10-20 Michael Matz <matz@suse.de>
6833
6834 Loop splitting.
6835 * common.opt (-fsplit-loops): New flag.
6836 * passes.def (pass_loop_split): Add.
6837 * opts.c (default_options_table): Add OPT_fsplit_loops entry at -O3.
6838 (enable_fdo_optimizations): Add loop splitting.
6839 * timevar.def (TV_LOOP_SPLIT): Add.
6840 * tree-pass.h (make_pass_loop_split): Declare.
6841 * tree-ssa-loop-manip.h (rewrite_into_loop_closed_ssa_1): Declare.
6842 * tree-ssa-loop-unswitch.c: Include tree-ssa-loop-manip.h,
6843 * tree-ssa-loop-split.c: New file.
6844 * Makefile.in (OBJS): Add tree-ssa-loop-split.o.
6845 * doc/invoke.texi (fsplit-loops): Document.
6846 * doc/passes.texi (Loop optimization): Add paragraph about loop
6847 splitting.
6848
6849 2016-10-20 Richard Biener <rguenther@suse.de>
6850
6851 * cgraphunit.c (analyze_functions): Set node->definition to
6852 false to signal symbol removal to debug_hooks->late_global_decl.
6853 * ipa.c (symbol_table::remove_unreachable_nodes): When not in
6854 WPA signal symbol removal to the debuginfo machinery.
6855 * dwarf2out.c (dwarf2out_late_global_decl): Instead of
6856 using early_finised to guard the we're called for symbol
6857 removal case look at the symtabs definition flag.
6858 (gen_variable_die): Remove redundant check.
6859
6860 2016-10-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
6861
6862 * config/s390/s390.md ("prefetch"): Add fallthrough comment.
6863
6864 2016-10-20 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
6865
6866 PR tree-optimization/53979
6867 * match.pd ((a ^ b) | a -> a | b): New pattern.
6868
6869 2016-10-19 John David Anglin <danglin@gcc.gnu.org>
6870
6871 * config/pa/pa64-hpux.h (PA_INIT_FRAME_DUMMY_ASM_OP): Move to
6872 config/pa/pa64-hpux-lib.h.
6873 (PA_CRTBEGIN_HACK): Likewise.
6874 (DTOR_LIST_BEGIN): Likewise.
6875
6876 2016-10-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
6877
6878 * config/arm/arm.c (arm_emit_coreregs_64bit_shift): Clear the result
6879 register only if "in" and "out" are different registers.
6880
6881 2016-10-19 Eric Botcazou <ebotcazou@adacore.com>
6882
6883 * omp-low.c (pass_oacc_device_lower::gate): New method.
6884 (execute): Always call execute_oacc_device_lower.
6885
6886 2016-10-19 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
6887
6888 PR tree-optimization/77916
6889 PR tree-optimization/77937
6890 * gimple-ssa-strength-reduction.c (analyze_increments): Remove
6891 stopgap fix.
6892 (insert_initializers): Requirement of initializer for -1 should be
6893 based on pointer-typedness of the candidate basis.
6894
6895 2016-10-19 Bin Cheng <bin.cheng@arm.com>
6896
6897 PR tree-optimization/78005
6898 * tree-vect-loop-manip.c (vect_gen_prolog_loop_niters): Compute
6899 upper (included) bound for niters of prolog loop.
6900 (vect_gen_scalar_loop_niters): Change parameter VF to VFM1.
6901 Compute niters of scalar loop above which vectorized loop is
6902 preferred, as well as the upper (included) bound for the niters.
6903 (vect_do_peeling): Record niter bound for loops accordingly.
6904
6905 2016-10-19 Thomas Schwinge <thomas@codesourcery.com>
6906
6907 PR lto/77458
6908 * tree-core.h (enum tree_index): Put the complex types after their
6909 component types.
6910 * tree-streamer.c (verify_common_node_recorded): New function.
6911 (preload_common_nodes) <TREE_CODE (node) == COMPLEX_TYPE>: Use it.
6912
6913 2016-10-19 Martin Liska <mliska@suse.cz>
6914
6915 * cgraph.h (cgraph_edge::binds_to_current_def_p):
6916 Replace NULL with false as a return value.
6917
6918 2016-10-19 Thomas Schwinge <thomas@codesourcery.com>
6919
6920 PR tree-optimization/78024
6921 * omp-low.c (oacc_loop_discovery): Call clear_bb_flags before, and
6922 don't clear BB_VISITED after processing.
6923
6924 2016-10-19 Richard Biener <rguenther@suse.de>
6925
6926 * domwalk.c (dom_walker::walk): Use RPO order.
6927
6928 2016-10-19 Richard Biener <rguenther@suse.de>
6929
6930 * tree-vrp.c (evrp_dom_walker::evrp_dom_walker): Initialize
6931 stmts_to_remove.
6932 (evrp_dom_walker::~evrp_dom_walker): Free it.
6933 (evrp_dom_walker::stmts_to_remove): Add.
6934 (evrp_dom_walker::before_dom_children): Mark PHIs and stmts
6935 whose output we fully propagate for removal. Propagate
6936 into BB destination PHI arguments.
6937 (execute_early_vrp): Remove queued stmts. Dump value ranges
6938 before stmt removal.
6939
6940 2016-10-18 Aldy Hernandez <aldyh@redhat.com>
6941
6942 * Makefile.in (OBJS): Add gimple-ssa-warn-alloca.o.
6943 * passes.def: Add two instances of pass_walloca.
6944 * tree-pass.h (make_pass_walloca): New.
6945 * gimple-ssa-warn-alloca.c: New file.
6946 * doc/invoke.texi: Document -Walloca, -Walloca-larger-than=, and
6947 -Wvla-larger-than= options.
6948
6949 2016-10-18 Thomas Schwinge <thomas@codesourcery.com>
6950
6951 * cfg.c (clear_bb_flags): Use FOR_ALL_BB_FN.
6952 * config/nvptx/nvptx.c (nvptx_find_sese): Likewise.
6953
6954 2016-10-18 Kelvin Nilsen <kelvin@gcc.gnu.org>
6955
6956 * config/rs6000/altivec.h (vec_xl_len): New macro.
6957 (vec_xst_len): New macro.
6958 (vec_cmpnez): New macro.
6959 (vec_cntlz_lsbb): New macro.
6960 (vec_cnttz_lsbb): New macro.
6961 (vec_xlx): New macro.
6962 (vec_xrx): New macro.
6963 (vec_all_nez): New C++ predicate template.
6964 (vec_any_eqz): New C++ predicate template.
6965 (vec_all_ne): Revised C++ predicate template under _ARCH_PWR9
6966 conditional compilation.
6967 (vec_any_eq): Revised C++ predicate template under _ARCH_PWR9
6968 conditional compilation.
6969 (vec_all_nez): New macro.
6970 (vec_any_eqz): New macro.
6971 (vec_all_ne): Revised macro under _ARCH_PWR9 conditional
6972 compilation.
6973 (vec_any_eq): Revised macro under _ARCH_PWR9 conditional
6974 compilation.
6975 * config/rs6000/vector.md (VI): Moved this mode iterator
6976 definition from altivec.md to vector.md.
6977 (UNSPEC_NEZ_P): New value.
6978 (vector_ne_<mode>_p): New expansion for implementation of
6979 vec_all_ne and vec_any_eq built-in functions.
6980 (vector_nez_<mode>_p): New expansion for implementation of
6981 vec_all_nez and vec_any_eqz built-in functions.
6982 (vector_ne_v2di_p): New expansion for implementation of vec_all_ne
6983 and vec_any_eq built-in function.
6984 (cr6_test_for_zero): New commentary to explain this expansion.
6985 (cr6_test_for_zero_reverse): New commentary to explain this expansion.
6986 (cr6_test_for_lt): New commentary to explain this expansion.
6987 (cr6_test_for_lt_reverse): New commentary to explain this
6988 expansion.
6989 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
6990 overloaded function prototypes for vec_all_ne, vec_all_nez,
6991 vec_any_eq, vec_any_eqz, vec_cmpnez, vec_cntlz_lsbb,
6992 vec_cnttz_lsbb, vec_xl_len, vec_xst_len, vec_xlx, and vec_xrx
6993 built-in functions.
6994 (altivec_resolve_overloaded_builtin): Modify the handling of
6995 ALTIVEC_BUILTIN_VEC_CMPNE to use the Power9 instructions when
6996 the compiler is configured to support TARGET_P9_VECTOR.
6997 * config/rs6000/rs6000-builtin.def (BU_ALTIVEC_P): Add commentary
6998 to explain the special processing that is given to predicate
6999 built-ins introduced using this macro.
7000 (BU_ALTIVEC_OVERLOAD_P): Add commentary to alert maintainers to
7001 the special processing given to predicate built-ins introduced
7002 using this macro.
7003 (BU_VSX_P): Likewise.
7004 (BU_P8V_AV_P): Likewise.
7005 (BU_P9V_AV_P): Likewise.
7006 (BU_P9V_AV_X): New macro.
7007 (BU_P9V_64BIT_AV_X): New macro.
7008 (BU_P9V_VSX_3): New macro.
7009 (BU_P9V_OVERLOAD_P): New macro.
7010 (LXVL): New BU_P9V_64BIT_VSX_2.
7011 (VEXTUBLX): New BU_P9V_AV_2.
7012 (VEXTUBRX): Likewise.
7013 (VEXTUHLX): Likewise.
7014 (VEXTUHRX): Likewise.
7015 (VEXTUWLX): Likewise.
7016 (VEXTUWRX): Likewise.
7017 (STXVL): New BU_P9V_64BIT_AV_X.
7018 (VCLZLSBB): New BU_P9V_AV_1.
7019 (VCTZLSBB): Likewise.
7020 (CMPNEB): New BU_P9V_AV_2.
7021 (CMPNEH): Likewise.
7022 (CMPNEW): Likewise.
7023 (CMPNEF): Likewise.
7024 (CMPNED): Likewise.
7025 (VCMPNEB_P): New BU_P9V_AV_P.
7026 (VCMPNEH_P): Likewise.
7027 (VCMPNEW_P): Likewise.
7028 (VCMPNED_P): Likewise.
7029 (VCMPNEFP_P): Likewise.
7030 (VCMPNEDP_P): Likewise.
7031 (CMPNEZB): New BU_P9V_AV_2.
7032 (CMPNEZH): Likewise.
7033 (CMPNEZW): Likewise.
7034 (VCMPNEZB_P): New BU_P9V_AV_P.
7035 (VCMPNEZH_P): Likewise.
7036 (VCMPNEZW_P): Likewise.
7037 (LXVL): New BU_P9V_OVERLOAD_2.
7038 (STXVL): New BU_P9V_OVERLOAD_3.
7039 (VEXTULX): New BU_P9V_OVERLOAD_2.
7040 (VEXTURX): Likewise.
7041 (CMPNEZ): Likewise.
7042 (VCMPNEZ_P): New BU_P9V_OVERLOAD_P.
7043 (VCMPNE_P): Likewise.
7044 (VCLZLSBB): New BU_P9V_OVERLOAD_1.
7045 (VCTZLSBB): Likewise.
7046 * config/rs6000/rs6000.c (altivec_expand_predicate_builtin): Add
7047 comment to explain mode used for scratch register.
7048 (altivec_expand_stxvl_builtin): New function.
7049 (altivec_expand_builtin): Add case for new constant P9V_BUILTIN_STXVL.
7050 (altivec_init_builtins): Add initialized variable
7051 void_ftype_v16qi_pvoid_long and use this type to define the
7052 built-in function __builtin_altivec_stxvl.
7053 * config/rs6000/vsx.md (UNSPEC_LXVL): New value.
7054 (UNSPEC_STXVL): New value.
7055 (UNSPEC_VCLZLSBB): New value.
7056 (UNSPEC_VCTZLSBB): New value.
7057 (UNSPEC_VEXTUBLX): New value.
7058 (UNSPEC_VEXTUHLX): New value.
7059 (UNSPEC_VEXTUWLX): New value.
7060 (UNSPEC_VEXTUBRX): New value.
7061 (UNSPEC_VEXTUHRX): New value.
7062 (UNSPEC_VEXTUWRX): New value.
7063 (UNSPEC_VCMPNEB): New value.
7064 (UNSPEC_VCMPNEZB): New value.
7065 (UNSPEC_VCMPNEH): New value.
7066 (UNSPEC_VCMPNEZH): New value.
7067 (UNSPEC_VCMPNEW): New value.
7068 (UNSPEC_VCMPNEZW): New value.
7069 (*vsx_ne_<mode>_p): New insn for vector test all not equal with
7070 vector of integer modes.
7071 (*vsx_ne_<mode>_p): New insn for vector test all not equal with
7072 vector of float or double modes.
7073 (*vector_nez_<mode>_p): New insn for vector test all not equal or
7074 zero.
7075 (lxvl): New expand for load VSX vector with length.
7076 (*lxvl): New insn for load VSX vector with length.
7077 (stxvl): New expand for store VSX vector with length.
7078 (*stxvl): New insn for store VSX vector with length.
7079 (vcmpneb): New insn for vector of byte compare not equal.
7080 (vcmpnezb): New insn for vector of byte compare not equal or zero.
7081 (vcmpneh): New insn for vector of half word compare not equal.
7082 (vcmpnezh): New insn for vector of half word compare not equal or
7083 zero.
7084 (vcmpnew): New insn for vector of word compare not equal.
7085 (vcmpne<VSs>): New insn for vector of float or double compare not
7086 equal.
7087 (vcmpnezw): New insn for vector of word compare not equal or zero.
7088 (vclzlsbb): New insn for vector count leading zero
7089 least-significant bits byte.
7090 (vctzlsbb): New insn for vector count trailing zero least
7091 signficant bits byte.
7092 (vextublx): New insn for vector extract unsigned byte left
7093 indexed.
7094 (vextubrx): New insn for vector extract unsigned byte right
7095 indexed.
7096 (vextuhlx): New insn for vector extract unsigned half word left
7097 indexed.
7098 (vextuhrx): New insn for vector extract unsigned half word right
7099 indexed.
7100 (vextuwlx): New insn for vector extract unsigned word left
7101 indexed.
7102 (vextuwrx): New insn for vector extract unsigned word right
7103 indexed.
7104 * config/rs6000/rs6000.h (RS6000_BTC_CONST): Enhance comment to
7105 clarify intent of this constant.
7106 * config/rs6000/altivec.md (VI): Move this mode iterator to vsx.md.
7107 * doc/extend.texi (PowerPC Altivec Built-in Functions): Add
7108 documentation for vec_all_nez, vec_any_eqz, vec_cmpnez,
7109 vec_cntlz_lsbb, vec_cnttz_lsbb, vec_xl_len, vec_xst_len, vec_xlx,
7110 and vec_xrx functions.
7111
7112 2016-10-18 Andrew Pinski <apinski@cavium.com>
7113
7114 PR tree-opt/65950
7115 * predict.c (is_exit_with_zero_arg): New function.
7116 (tree_bb_level_predictions): Don't consider paths leading to exit(0)
7117 as nottaken.
7118
7119 2016-10-18 Uros Bizjak <ubizjak@gmail.com>
7120
7121 PR target/77991
7122 * config/i386/i386.c (legitimize_tls_address)
7123 <case TLS_MODEL_INITIAL_EXEC>: For TARGET_64BIT || TARGET_ANY_GNU_TLS
7124 convert dest to Pmode if different than Pmode.
7125
7126 2016-10-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
7127
7128 PR tree-optimization/77916
7129 * gimple-ssa-strength-reduction.c (analyze_increments): Reinstate
7130 stopgap fix, as pointers with -1 increment are still broken.
7131
7132 2016-10-18 David Edelsohn <dje.gcc@gmail.com>
7133
7134 * config/rs6000/rs6000.c (rs6000_output_symbol_ref): Move storage
7135 mapping class decoration from here...
7136 (rs6000_xcoff_encode_section): ...to here.
7137
7138 (rs6000_savres_strategy) [AIX,ELFv2]: Inline FPR save and restore
7139 if shrink-wrapping and optimizing for speed.
7140
7141 2016-10-18 Richard Biener <rguenther@suse.de>
7142
7143 * tree-vrp.c (evrp_dom_walker::before_dom_children): Handle
7144 not visited but non-executable predecessors. Return taken edge.
7145 Simplify conditions and refactor propagation vs. folding step.
7146
7147 2016-10-18 Segher Boessenkool <segher@kernel.crashing.org>
7148
7149 * config/rs6000/rs6000.c (rs6000_savres_strategy): Do not select
7150 {SAVE,REST}_MULTIPLE if shrink-wrapping separate components.
7151 (rs6000_get_separate_components): Assert we do not have those
7152 strategies selected.
7153
7154 2016-10-18 Richard Biener <rguenther@suse.de>
7155
7156 * tree-ssa-propagate.h (substitute_and_fold): Adjust prototype.
7157 * tree-ssa-propagate.c (ssa_prop_fini): Remove final BB_VISITED
7158 clearing.
7159 (substitute_and_fold_dom_walker): Adjust constructor.
7160 (substitute_and_fold_dom_walker::before_dom_children): Remove
7161 do_dce flag and handling (always true).
7162 (substitute_and_fold): Likewise.
7163 * tree-vrp.c (vrp_finalize): Adjust.
7164 (execute_early_vrp): Remove final BB_VISITED clearing.
7165 * tree-ssa-ccp.c (ccp_finalize): Adjust.
7166 * tree-ssa-copy.c (fini_copy_prop): Likewise.
7167 * ira.c (ira): Call clear_bb_flags.
7168
7169 2016-10-18 Richard Biener <rguenther@suse.de>
7170
7171 * genmatch.c (dt_operand::gen_gimple_expr): Use get_name to
7172 get at the operand to look at with TREE_OPERAND for generic
7173 sub-nodes.
7174
7175 2016-10-18 David Malcolm <dmalcolm@redhat.com>
7176
7177 * genattrtab.c (attr_string): Use rtx_reader_ptr for call to
7178 copy_md_ptr_loc.
7179 (gen_attr): Use rtx_reader_ptr for lookup_enum_type call.
7180 (write_test_expr): Use rtx_reader_ptr for calls to
7181 fprint_c_condition.
7182 (write_attr_value): Likewise.
7183 * genconditions.c (write_one_condition): Use rtx_reader_ptr for
7184 call to print_md_ptr_loc.
7185 (write_one_condition): Likewise for calls to print_c_condition.
7186 * genconstants.c: Include "statistics.h" and "vec.h".
7187 (main): Update for conversion to member functions.
7188 * genemit.c (emit_c_code): Use rtx_reader_ptr for
7189 call to print_md_ptr_loc.
7190 * genenums.c: Include "statistics.h" and "vec.h".
7191 (main): Update for conversion of traverse_enum_types to a method.
7192 * genmddeps.c: Include "statistics.h" and "vec.h".
7193 * genoutput.c (process_template): Use rtx_reader_ptr for call to
7194 print_md_ptr_loc.
7195 * genpreds.c (write_predicate_subfunction): Likewise.
7196 (write_predicate_expr): Likewise for calls to print_c_condition.
7197 * genrecog.c (print_test): Likewise.
7198 * gensupport.c (process_rtx): Likewise for calls to
7199 copy_md_ptr_loc and join_c_conditions.
7200 (alter_test_for_insn): Likewise for call to join_c_conditions.
7201 (process_substs_on_one_elem): Likewise.
7202 (gen_mnemonic_setattr): Update for move of string_obstack to a
7203 field of rtx_reader.
7204 (mnemonic_htab_callback): Likewise. Fix formatting.
7205 (gen_mnemonic_attr): Likewise.
7206 * gentarget-def.c (def_target_insn): Use rtx_reader_ptr for calls
7207 to print_c_condition.
7208 * read-md.c: Include "statistics.h" and "vec.h".
7209 (string_obstack): Convert this global to field "m_string_obstack"
7210 of class rtx_reader.
7211 (ptr_locs): Likewise, as "m_ptr_locs".
7212 (ptr_loc_obstack): Likewise, as "m_ptr_loc_obstack".
7213 (joined_conditions): Likewise, as "m_joined_conditions".
7214 (joined_conditions_obstack): Likewise, as "m_joined_conditions_obstack".
7215 (md_constants): Likewise, as "m_md_constants".
7216 (enum_types): Likewise, as "m_enum_types".
7217 (set_md_ptr_loc): Convert to...
7218 (rtx_reader::set_md_ptr_loc): ...member function.
7219 (get_md_ptr_loc): Convert to...
7220 (rtx_reader::get_md_ptr_loc): ...member function.
7221 (copy_md_ptr_loc): Convert to...
7222 (rtx_reader::copy_md_ptr_loc): ...member function.
7223 (fprint_md_ptr_loc): Convert to...
7224 (rtx_reader::fprint_md_ptr_loc): ...member function.
7225 (print_md_ptr_loc): Convert to...
7226 (rtx_reader::print_md_ptr_loc): ...member function.
7227 (join_c_conditions): Convert to...
7228 (rtx_reader::join_c_conditions): ...member function.
7229 (fprint_c_condition): Convert to...
7230 (rtx_reader::fprint_c_condition): ...member function.
7231 (print_c_condition): Convert to...
7232 (rtx_reader::print_c_condition): ...member function.
7233 (read_name): Convert to...
7234 (rtx_reader::read_name): ...member function.
7235 (read_escape): Convert to...
7236 (rtx_reader::read_escape): ...member function.
7237 (read_quoted_string): Convert to...
7238 (rtx_reader::read_quoted_string): ...member function.
7239 (read_braced_string): Convert to...
7240 (rtx_reader::read_braced_string): ...member function.
7241 (read_string): Convert to...
7242 (rtx_reader::read_string): ...member function.
7243 (read_skip_construct): Convert to...
7244 (rtx_reader::read_skip_construct): ...member function.
7245 (handle_constants): Convert to...
7246 (rtx_reader::handle_constants): ...member function.
7247 (traverse_md_constants): Convert to...
7248 (rtx_reader::traverse_md_constants): ...member function.
7249 (handle_enum): Convert to...
7250 (rtx_reader::handle_enum): ...member function.
7251 (lookup_enum_type): Convert to...
7252 (rtx_reader::lookup_enum_type): ...member function.
7253 (traverse_enum_types): Convert to...
7254 (rtx_reader::traverse_enum_types): ...member function.
7255 (rtx_reader::rtx_reader): Move initializations
7256 of various former global data from rtx_reader::read_md_files to
7257 here, as fields, along with the call to unlock_std_streams.
7258 (rtx_reader::~rtx_reader): Clean up m_base_dir, and clean up
7259 the new fields.
7260 (rtx_reader::read_md_files): Move initializations of various
7261 global data from here to the ctor.
7262 * read-md.h (read_name): Convert to...
7263 (rtx_reader::read_name): ...member function.
7264 (rtx_reader::read_escape): New method decl.
7265 (read_quoted_string): Convert to...
7266 (rtx_reader::read_quoted_string): ...member function.
7267 (rtx_reader::read_braced_string): New method decl.
7268 (read_string): Convert to...
7269 (rtx_reader::read_string): ...member function.
7270 (rtx_reader::read_skip_construct): New method decl.
7271 (rtx_reader::set_md_ptr_loc): New method decl.
7272 (rtx_reader::get_md_ptr_loc): New method decl.
7273 (copy_md_ptr_loc): Convert to...
7274 (rtx_reader::copy_md_ptr_loc): ...member function.
7275 (fprint_md_ptr_loc): Convert to...
7276 (rtx_reader::fprint_md_ptr_loc): ...member function.
7277 (print_md_ptr_loc): Convert to...
7278 (rtx_reader::print_md_ptr_loc): ...member function.
7279 (rtx_reader::lookup_enum_type): New method decl.
7280 (rtx_reader::traverse_enum_types): New method decl.
7281 (rtx_reader::handle_constants): New method decl.
7282 (traverse_md_constants): Convert to...
7283 (rtx_reader::traverse_md_constants): ...member function.
7284 (rtx_reader::handle_enum): New method decl.
7285 (rtx_reader::join_c_conditions): New method decl.
7286 (fprint_c_condition): Convert to...
7287 (rtx_reader::fprint_c_condition): ...member function.
7288 (print_c_condition): Convert to...
7289 (rtx_reader::print_c_condition): ...member function.
7290 (rtx_reader::apply_iterator_to_string): New method decl.
7291 (rtx_reader::copy_rtx_for_iterators): New method decl.
7292 (rtx_reader::read_conditions): New method decl.
7293 (rtx_reader::record_potential_iterator_use): New method decl.
7294 (rtx_reader::read_mapping): New method decl.
7295 (rtx_reader::read_rtx): New method decl.
7296 (rtx_reader::read_rtx_code): New method decl.
7297 (rtx_reader::read_rtx_operand): New method decl.
7298 (rtx_reader::read_nested_rtx): New method decl.
7299 (rtx_reader::read_rtx_variadic): New method decl.
7300 (rtx_reader::get_string_obstack): New method.
7301 (rtx_reader::get_md_constants): New method.
7302 (string_obstack): Convert global variable decl to...
7303 (rtx_reader::m_string_obstack): ...this new field.
7304 (rtx_reader::m_ptr_locs): New field.
7305 (rtx_reader::m_ptr_loc_obstack): New field.
7306 (rtx_reader::m_joined_conditions): New field.
7307 (rtx_reader::m_joined_conditions_obstack): New field.
7308 (rtx_reader::m_md_constants): New field.
7309 (rtx_reader::m_enum_types): New field.
7310 * read-rtl.c (apply_iterator_to_string): Convert to...
7311 (rtx_reader::apply_iterator_to_string): ...member function.
7312 (copy_rtx_for_iterators): Convert to...
7313 (rtx_reader::copy_rtx_for_iterators): ...member function.
7314 (add_condition_to_string): Use rtx_reader_ptr for
7315 calls join_c_conditions.
7316 (apply_iterators): Use rtx_reader_ptr for calls to
7317 join_c_conditions and copy_rtx_for_iterators.
7318 (read_conditions): Convert to...
7319 (rtx_reader::read_conditions): ...member function.
7320 (record_potential_iterator_use): Convert to...
7321 (rtx_reader::record_potential_iterator_use): ...member function.
7322 (read_mapping): Convert to...
7323 (rtx_reader::read_mapping): ...member function.
7324 (read_subst_mapping): Use rtx_reader_ptr for read_string call.
7325 (read_rtx): Convert to...
7326 (rtx_reader::read_rtx): ...member function.
7327 (read_rtx_code): Convert to...
7328 (rtx_reader::read_rtx_code): ...member function.
7329 (read_rtx_operand): Convert to...
7330 (rtx_reader::read_rtx_operand): ...member function. Update for move
7331 of string_obstack to a field.
7332 (read_nested_rtx): Convert to..
7333 (rtx_reader::read_nested_rtx): ...member function.
7334 (read_rtx_variadic): Convert to..
7335 (rtx_reader::read_rtx_variadic): ...member function.
7336
7337 2016-10-18 Kugan Vivekanandarajah <kuganv@linaro.org>
7338
7339 * tree-vrp.c (get_value_range): Check get_ptr_nonnull.
7340
7341 2016-10-18 Kugan Vivekanandarajah <kuganv@linaro.org>
7342
7343 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Set value range
7344 for pointer type too.
7345 (ipcp_update_vr): set_ptr_nonnull for pointer.
7346
7347 2016-10-18 Kugan Vivekanandarajah <kuganv@linaro.org>
7348
7349 * tree-ssa-alias.h (pt_solution_singleton_or_null_p): Renamed from
7350 pt_solution_singleton_p.
7351 * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Use renamed
7352 pt_solution_singleton_or_null_p from pt_solution_singleton_p.
7353 * tree-ssa-structalias.c (find_what_p_points_to): Preserve
7354 pointer nonnull computed by VRP.
7355 Also Conservatively set pt.null to 1.
7356 (pt_solution_reset): Conservatively set pt.null to 1.
7357 (pt_solution_singleton_or_null_p): Renamed from
7358 pt_solution_singleton_p.
7359 * tree-ssanames.h (set_ptr_nonnull): Declare.
7360 (get_ptr_nonnull): Likewise.
7361 * tree-ssanames.c (set_ptr_nonnull): New.
7362 (get_ptr_nonnull): Likewise.
7363 * tree-vrp.c (vrp_finalize): Set ptr that are nonnull.
7364 (evrp_dom_walker::before_dom_children): Likewise.
7365
7366 2016-10-17 Eric Botcazou <ebotcazou@adacore.com>
7367
7368 * config/i386/i386.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to...
7369 * config/i386/i386.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ...here.
7370 * config/ia64/ia64.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to...
7371 * config/ia64/ia64.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ...here.
7372 * config/rs6000/rs6000.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to.
7373 * config/rs6000/rs6000.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ...here.
7374 (rs6000_option_override_internal): Clear it if ABI_AIX.
7375 * config/sparc/sparc.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to...
7376 * config/sparc/sparc.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ... here.
7377
7378 2016-10-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
7379
7380 * gimple-ssa-strength-reduction.c (record_increment): Remove
7381 garbage comment.
7382
7383 2016-10-17 Eric Botcazou <ebotcazou@adacore.com>
7384
7385 * expmed.c (expand_shift_1): Add MAY_FAIL parameter and do not assert
7386 that the result is non-zero if it is true.
7387 (maybe_expand_shift): New wrapper around expand_shift_1.
7388 (emit_store_flag): Call maybe_expand_shift in lieu of expand_shift.
7389
7390 2016-10-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
7391
7392 PR tree-optimization/77916
7393 * gimple-ssa-strength-reduction.c (create_add_on_incoming_edge):
7394 Don't allow a MINUS_EXPR for pointer arithmetic for either known
7395 or unknown strides.
7396 (record_increment): Increments of -1 for unknown strides just use
7397 a multiply initializer like other negative values.
7398 (analyze_increments): Remove stopgap solution for -1 increment
7399 applied to pointer arithmetic.
7400
7401 2016-10-17 Yuri Rumyantsev <ysrumyan@gmail.com>
7402
7403 * dominance.c (dom_info::dom_info): Add new constructor for region
7404 which is vector of basic blocks.
7405 (dom_init): New method to initialize members common for both
7406 constructors.
7407 (dom_info::dom_info): Invoke dom_init for partial initialization.
7408 (dom_info::get_idom): Add check to corner cases on basic blocks which
7409 are not in region.
7410 (dom_info::calc_dfs_tree): Check M_FAKE_EXIT_EDGE instead of M_REVERSE
7411 to detect unreachable bbs.
7412 (dom_info::calc_idoms): Likewise.
7413 (compute_dom_fast_query_in_region): New function.
7414 (calculate_dominance_info_for_region): Likewise.
7415 (free_dominance_info_for_region): Likewise.
7416 * dominance.h: Add prototypes for introduced region-based functions
7417 * tree-if-conv.c (build_region): New function.
7418 (if_convertible_loop_p_1): Invoke local version of post-dominators
7419 calculation before basic block predication with subsequent freeing
7420 post-dominator info.
7421 (tree_if_conversion): Remove free of post-dominator info
7422 (pass_if_conversion::execute): Delete detection of infinite loops
7423 and fake edges to exit block since post-dominator calculation is
7424 performed per if-converted loop only.
7425
7426 2016-10-17 Bernd Edlinger <bernd.edlinger@hotmail.de>
7427
7428 PR target/77308
7429 * config/arm/arm.c (arm_emit_coreregs_64bit_shift): Clear the result
7430 register explicitly.
7431 * config/arm/arm.md (ashldi3, ashrdi3, lshrdi3): Don't FAIL if
7432 optimizing for size.
7433
7434 2016-10-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
7435
7436 * config/aarch64/aarch64.c: Delete inclusion of
7437 cortex-a57-fma-steering.h.
7438 (aarch64_override_options): Delete call
7439 to aarch64_register_fma_steering.
7440 * config/aarch64/aarch64-protos.h (make_pass_fma_steering): Declare.
7441 * config/aarch64/cortex-a57-fma-steering.h: Delete.
7442 * config/aarch64/aarch64-passes.def: New file.
7443 * config/aarch64/cortex-a57-fma-steering.c
7444 (aarch64_register_fma_steering): Delete definition.
7445 (make_pass_fma_steering): Remove static qualifier.
7446 * config/aarch64/t-aarch64 (PASSES_EXTRA): New directive.
7447 (cortex-a57-fma-steering.o): Remove dependency on
7448 cortex-a57-fma-steering.h.
7449
7450 2016-10-17 Eric Botcazou <ebotcazou@adacore.com>
7451
7452 * explow.c (validize_mem): Do not modify the argument in-place.
7453
7454 2016-10-17 Thomas Schwinge <thomas@codesourcery.com>
7455
7456 * tree-streamer.c (record_common_node): Explicitly list expected
7457 tree codes.
7458
7459 2016-10-17 Richard Biener <rguenther@suse.de>
7460
7461 PR tree-optimization/77988
7462 * tree-vrp.c (remove_range_assertions): Use replace_uses_by.
7463
7464 2016-10-17 Marek Polacek <polacek@redhat.com>
7465
7466 * Makefile.in (C_COMMON_OBJS): Add c-family/c-attribs.o.
7467
7468 2016-10-17 Richard Biener <rguenther@suse.de>
7469
7470 * bb-reorder.c (reorder_basic_blocks_simple): Clear BB_VISITED
7471 before using it.
7472
7473 2016-10-17 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
7474
7475 PR tree-optimization/71636
7476 * match.pd (x & ((1 << b) - 1) -> x & ~(~0 << b)): New pattern.
7477
7478 2016-10-17 Richard Biener <rguenther@suse.de>
7479
7480 * gimplify.c (gimplify_function_tree): Do not move the outer
7481 binds block.
7482
7483 2016-10-17 Jakub Jelinek <jakub@redhat.com>
7484
7485 * langhooks.h (struct lang_hooks_for_decls): Remove
7486 function_decl_explicit_p, function_decl_deleted_p and
7487 function_decl_defaulted hooks. Add decl_dwarf_attribute hook.
7488 * langhooks-def.h (lhd_decl_dwarf_attribute): Declare.
7489 (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P,
7490 LANG_HOOKS_FUNCTION_DECL_DELETED_P,
7491 LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Remove.
7492 (LANG_HOOKS_DECL_DWARF_ATTRIBUTE): Define.
7493 (LANG_HOOKS_DECLS): Remove LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P,
7494 LANG_HOOKS_FUNCTION_DECL_DELETED_P and
7495 LANG_HOOKS_FUNCTION_DECL_DEFAULTED. Add
7496 LANG_HOOKS_DECL_DWARF_ATTRIBUTE.
7497 * langhooks.c (lhd_decl_dwarf_attribute): New function.
7498 * dwarf2out.c (gen_subprogram_die): Use
7499 lang_hooks.decls.decl_dwarf_attribute instead of
7500 lang_hooks.decls.function_decl_*.
7501
7502 2016-10-16 Eric Botcazou <ebotcazou@adacore.com>
7503
7504 PR ada/37139
7505 PR ada/67205
7506 * common.opt (-ftrampolines): New option.
7507 * doc/invoke.texi (Code Gen Options): Document it.
7508 * doc/tm.texi.in (Trampolines): Add TARGET_CUSTOM_FUNCTION_DESCRIPTORS.
7509 * doc/tm.texi: Regenerate.
7510 * builtins.def: Add init_descriptor and adjust_descriptor.
7511 * builtins.c (expand_builtin_init_trampoline): Do not issue a warning
7512 on platforms with descriptors.
7513 (expand_builtin_init_descriptor): New function.
7514 (expand_builtin_adjust_descriptor): Likewise.
7515 (expand_builtin) <BUILT_IN_INIT_DESCRIPTOR>: New case.
7516 <BUILT_IN_ADJUST_DESCRIPTOR>: Likewise.
7517 * calls.c (prepare_call_address): Remove SIBCALLP parameter and add
7518 FLAGS parameter. Deal with indirect calls by descriptor and adjust.
7519 Set STATIC_CHAIN_REG_P on the static chain register, if any.
7520 (call_expr_flags): Set ECF_BY_DESCRIPTOR for calls by descriptor.
7521 (expand_call): Likewise. Move around call to prepare_call_address
7522 and pass all flags to it.
7523 * cfgexpand.c (expand_call_stmt): Reinstate CALL_EXPR_BY_DESCRIPTOR.
7524 * gimple.h (enum gf_mask): New GF_CALL_BY_DESCRIPTOR value.
7525 (gimple_call_set_by_descriptor): New setter.
7526 (gimple_call_by_descriptor_p): New getter.
7527 * gimple.c (gimple_build_call_from_tree): SetCALL_EXPR_BY_DESCRIPTOR.
7528 (gimple_call_flags): Deal with GF_CALL_BY_DESCRIPTOR.
7529 * langhooks.h (struct lang_hooks): Add custom_function_descriptors.
7530 * langhooks-def.h (LANG_HOOKS_CUSTOM_FUNCTION_DESCRIPTORS): Define.
7531 (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_CUSTOM_FUNCTION_DESCRIPTORS.
7532 * rtl.h (STATIC_CHAIN_REG_P): New macro.
7533 * rtlanal.c (find_first_parameter_load): Skip static chain registers.
7534 * target.def (custom_function_descriptors): New POD hook.
7535 * tree.h (FUNC_ADDR_BY_DESCRIPTOR): New flag on ADDR_EXPR.
7536 (CALL_EXPR_BY_DESCRIPTOR): New flag on CALL_EXPR.
7537 * tree-core.h (ECF_BY_DESCRIPTOR): New mask.
7538 Document FUNC_ADDR_BY_DESCRIPTOR and CALL_EXPR_BY_DESCRIPTOR.
7539 * tree.c (make_node_stat) <tcc_declaration>: Use FUNCTION_ALIGNMENT.
7540 (build_common_builtin_nodes): Initialize init_descriptor and
7541 adjust_descriptor.
7542 * tree-nested.c: Include target.h.
7543 (struct nesting_info): Add 'any_descr_created' field.
7544 (get_descriptor_type): New function.
7545 (lookup_element_for_decl): New function extracted from...
7546 (create_field_for_decl): Likewise.
7547 (lookup_tramp_for_decl): ...here. Adjust.
7548 (lookup_descr_for_decl): New function.
7549 (convert_tramp_reference_op): Deal with descriptors.
7550 (build_init_call_stmt): New function extracted from...
7551 (finalize_nesting_tree_1): ...here. Adjust and deal with descriptors.
7552 * defaults.h (FUNCTION_ALIGNMENT): Define.
7553 (TRAMPOLINE_ALIGNMENT): Set to above instead of FUNCTION_BOUNDARY.
7554 * config/i386/i386.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Define.
7555 * config/ia64/ia64.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Likewise.
7556 * config/rs6000/rs6000.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS):Likewise.
7557 * config/sparc/sparc.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Likewise.
7558
7559 2016-10-16 Eric Botcazou <ebotcazou@adacore.com>
7560
7561 * config/sparc/sparc.c (sparc_expand_vector_init): Only accept literal
7562 constants in CONST_VECTORs.
7563
7564 2016-10-15 Eric Botcazou <ebotcazou@adacore.com>
7565
7566 * config/sparc/sparc.c (sparc_expand_vec_perm_bmask): Use a scratch
7567 register as destination of bmask.
7568 (vector_init_bshuffle): Likewise.
7569 * config/sparc/sparc.md (vec_perm_constv8qi): Likewise.
7570 (bmaskdi_vis): Enable only in 64-bit mode.
7571
7572 2016-10-15 Segher Boessenkool <segher@kernel.crashing.org>
7573
7574 * config/rs6000/rs6000.c (rs6000_get_separate_components): Do not
7575 make LR a separately shrink-wrapped component unless savres_strategy
7576 contains all of {SAVE,REST}_INLINE_{GPRS,FPRS,VRS}. Do not wrap
7577 GPRs unless both {SAVE,REST}_INLINE_GPRS. Do not disallow all
7578 wrapping when not both {SAVE,REST}_INLINE_GPRS.
7579
7580 2016-10-15 Eric Botcazou <ebotcazou@adacore.com>
7581
7582 * optabs.c (expand_parity): Fix mode mismatch, add final conversion
7583 and keep looping on failure.
7584
7585 2016-10-14 David Malcolm <dmalcolm@redhat.com>
7586
7587 * print-rtl-function.c (print_edge): Omit "(flags)" when none are
7588 set.
7589 (print_rtx_function): Update example in comment for...
7590 * print-rtl.c (print_rtx_operand_code_r): In compact mode, print
7591 non-virtual pseudos with a '%' sigil followed by the regno, offset
7592 by (LAST_VIRTUAL_REGISTER + 1), so that the first non-virtual
7593 pseudo is dumped as "%0".
7594
7595 2016-10-14 Jakub Jelinek <jakub@redhat.com>
7596
7597 PR middle-end/77959
7598 * expr.c (expand_expr_real_1) <case CONST_DECL>: For EXPAND_WRITE
7599 return a MEM.
7600
7601 2016-10-14 Eric Botcazou <ebotcazou@adacore.com>
7602
7603 * config/sparc/sparc-passes.def: New file.
7604 * config/sparc/t-sparc (PASSES_EXTRA): Add sparc-passes.def.
7605 * config/sparc/sparc-protos.h (make_pass_work_around_errata): New.
7606 * config/sparc/sparc.c (sparc_option_override): Don't register passes.
7607
7608 2016-10-14 Pat Haugen <pthaugen@us.ibm.com>
7609
7610 * loop-unroll.c (unroll_loop_runtime_iterations): Condition initial
7611 loop peel to loops with exit test at the beginning.
7612
7613 2016-10-14 Pat Haugen <pthaugen@us.ibm.com>
7614
7615 PR rtl-optimization/68212
7616 * cfgloopmanip.c (duplicate_loop_to_header_edge): Use preheader edge
7617 frequency when computing scale factor for peeled copies.
7618 * loop-unroll.c (unroll_loop_runtime_iterations): Fix freq/count
7619 values for switch/peel blocks/edges.
7620
7621 2016-10-14 Pedro Alves <palves@redhat.com>
7622
7623 * coretypes.h (OVERRIDE, FINAL): Delete, moved to include/ansidecl.h.
7624
7625 2016-10-14 Catherine Moore <clm@codesourcery.com>
7626
7627 * config/mips/mips.c (mips_prepare_pch_save): Initialize
7628 micromips_globals to zero.
7629
7630 2016-10-14 Richard Biener <rguenther@suse.de>
7631
7632 PR tree-optimization/77979
7633 * tree-vrp.c (compare_name_with_value): Handle released SSA names
7634 in the equivalency sets.
7635 (compare_names): Likewise.
7636
7637 2016-10-14 Martin Liska <mliska@suse.cz>
7638
7639 * builtins.h(target_char_cst_p): Declare the function.
7640 * builtins.c (fold_builtin_memchr): Remove.
7641 (target_char_cst_p): Move the function from gimple-fold.c.
7642 (fold_builtin_3): Do not call the function.
7643 * gimple-fold.c (gimple_fold_builtin_memchr): New function.
7644 (gimple_fold_builtin): Call the function.
7645 * fold-const-call.c (fold_const_call_1): Handle CFN_BUILT_IN_MEMCHR.
7646
7647 2016-10-14 Martin Liska <mliska@suse.cz>
7648
7649 * builtins.c (fold_builtin_strcmp): Remove function.
7650 (fold_builtin_strncmp): Likewise.
7651 (fold_builtin_2): Remove call of the function.
7652 (fold_builtin_3): Likewise.
7653 * fold-const-call.c (fold_const_call): Add constant folding
7654 for CFN_BUILT_IN_STRCASECMP and CFN_BUILT_IN_STRNCASECMP.
7655 * fold-const-call.h (build_cmp_result): Declare the function.
7656 * gimple-fold.c (gimple_load_first_char): New function.
7657 (gimple_fold_builtin_string_compare): Likewise.
7658 (gimple_fold_builtin): Call the function.
7659
7660 2016-10-14 Nathan Sidwell <nathan@acm.org>
7661
7662 * gcov-io.c (gcov_open): Deconstify 'mode'.
7663
7664 2016-10-14 Martin Liska <mliska@suse.cz>
7665
7666 * fold-const.c (c_getstr): Support of properly \0-terminated
7667 string constants. New argument is added.
7668 * fold-const.h: New argument is added.
7669
7670 2016-10-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
7671
7672 * config/aarch64/aarch64.c (aarch64_print_hint_for_core_or_arch):
7673 New function.
7674 (aarch64_print_hint_for_core): Likewise.
7675 (aarch64_print_hint_for_arch): Likewise.
7676 (aarch64_validate_march): Use it. Fix indentation in type signature.
7677 (aarch64_validate_mcpu): Use aarch64_print_hint_for_core_or_arch.
7678 (aarch64_validate_mtune): Likewise.
7679 (aarch64_handle_attr_arch): Likewise.
7680 (aarch64_handle_attr_cpu): Likewise.
7681 (aarch64_handle_attr_tune): Likewise.
7682
7683 2016-10-14 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
7684
7685 * optabs.def: Remove optab function gen_int_libfunc for sdivmod_optab
7686 and udivmod_optab.
7687
7688 2016-10-13 Andreas Schwab <schwab@linux-m68k.org>
7689
7690 * config/m68k/m68k.c (m68k_option_override): Check
7691 opt_fstack_limit_symbol_arg and opt_fstack_limit_register_no
7692 instead of stack_limit_rtx.
7693
7694 2016-10-13 Jakub Jelinek <jakub@redhat.com>
7695
7696 * dwarf2out.c (gen_member_die): Handle inline static data member
7697 definitions.
7698
7699 2016-10-13 Nathan Sidwell <nathan@acm.org>
7700
7701 * gcov-io.c (gcov_open): Fix documentation. Simplify setting
7702 gcov_var.mode. Remove unnecessary fstat.
7703
7704 2016-10-13 Segher Boessenkool <segher@kernel.crashing.org>
7705
7706 PR bootstrap/77962
7707 * function.c (thread_prologue_and_epilogue_insns): Call all
7708 make_*logue_seq in the same order as traditional. Call them
7709 all a second time if shrink_wrapped_separate.
7710
7711 2016-10-13 Marek Polacek <polacek@redhat.com>
7712
7713 * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
7714 insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Don't
7715 use -Wno-error.
7716
7717 2016-10-13 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
7718
7719 PR tree-optimization/77937
7720 * gimple-ssa-strength-reduction.c (analyze_increments): Set cost
7721 to infinite when we have a pointer with an increment of -1.
7722
7723 2016-10-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
7724
7725 * coretypes.h: Move MEMMODEL_* macros and enum memmodel definition
7726 into ...
7727 * memmodel.h: This file.
7728 * alias.c, asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c,
7729 caller-save.c, calls.c, ccmp.c, cfgbuild.c, cfgcleanup.c,
7730 cfgexpand.c, cfgloopanal.c, cfgrtl.c, cilk-common.c, combine.c,
7731 combine-stack-adj.c, common/config/aarch64/aarch64-common.c,
7732 common/config/arm/arm-common.c, common/config/bfin/bfin-common.c,
7733 common/config/c6x/c6x-common.c, common/config/i386/i386-common.c,
7734 common/config/ia64/ia64-common.c, common/config/nvptx/nvptx-common.c,
7735 compare-elim.c, config/aarch64/aarch64-builtins.c,
7736 config/aarch64/aarch64-c.c, config/aarch64/cortex-a57-fma-steering.c,
7737 config/arc/arc.c, config/arc/arc-c.c, config/arm/arm-builtins.c,
7738 config/arm/arm-c.c, config/avr/avr.c, config/avr/avr-c.c,
7739 config/avr/avr-log.c, config/bfin/bfin.c, config/c6x/c6x.c,
7740 config/cr16/cr16.c, config/cris/cris.c, config/darwin-c.c,
7741 config/darwin.c, config/epiphany/epiphany.c,
7742 config/epiphany/mode-switch-use.c,
7743 config/epiphany/resolve-sw-modes.c, config/fr30/fr30.c,
7744 config/frv/frv.c, config/ft32/ft32.c, config/h8300/h8300.c,
7745 config/i386/i386-c.c, config/i386/winnt.c, config/iq2000/iq2000.c,
7746 config/lm32/lm32.c, config/m32c/m32c.c, config/m32r/m32r.c,
7747 config/m68k/m68k.c, config/mcore/mcore.c,
7748 config/microblaze/microblaze.c, config/mmix/mmix.c,
7749 config/mn10300/mn10300.c, config/moxie/moxie.c,
7750 config/msp430/msp430.c, config/nds32/nds32-cost.c,
7751 config/nds32/nds32-intrinsic.c, config/nds32/nds32-md-auxiliary.c,
7752 config/nds32/nds32-memory-manipulation.c,
7753 config/nds32/nds32-predicates.c, config/nds32/nds32.c,
7754 config/nios2/nios2.c, config/nvptx/nvptx.c, config/pa/pa.c,
7755 config/pdp11/pdp11.c, config/rl78/rl78.c, config/rs6000/rs6000-c.c,
7756 config/rx/rx.c, config/s390/s390-c.c, config/s390/s390.c,
7757 config/sh/sh.c, config/sh/sh-c.c, config/sh/sh-mem.cc,
7758 config/sh/sh_treg_combine.cc, config/sol2.c, config/spu/spu.c,
7759 config/stormy16/stormy16.c, config/tilegx/tilegx.c,
7760 config/tilepro/tilepro.c, config/v850/v850.c, config/vax/vax.c,
7761 config/visium/visium.c, config/vms/vms-c.c, config/xtensa/xtensa.c,
7762 coverage.c, cppbuiltin.c, cprop.c, cse.c, cselib.c, dbxout.c, dce.c,
7763 df-core.c, df-problems.c, df-scan.c, dojump.c, dse.c, dwarf2asm.c,
7764 dwarf2cfi.c, dwarf2out.c, emit-rtl.c, except.c, explow.c, expmed.c,
7765 expr.c, final.c, fold-const.c, function.c, fwprop.c, gcse.c,
7766 ggc-page.c, haifa-sched.c, hsa-brig.c, hsa-gen.c, hw-doloop.c,
7767 ifcvt.c, init-regs.c, internal-fn.c, ira-build.c, ira-color.c,
7768 ira-conflicts.c, ira-costs.c, ira-emit.c, ira-lives.c, ira.c, jump.c,
7769 loop-doloop.c, loop-invariant.c, loop-iv.c, loop-unroll.c,
7770 lower-subreg.c, lra.c, lra-assigns.c, lra-coalesce.c,
7771 lra-constraints.c, lra-eliminations.c, lra-lives.c, lra-remat.c,
7772 lra-spills.c, mode-switching.c, modulo-sched.c, omp-low.c, passes.c,
7773 postreload-gcse.c, postreload.c, predict.c, print-rtl-function.c,
7774 recog.c, ree.c, reg-stack.c, regcprop.c, reginfo.c, regrename.c,
7775 reload.c, reload1.c, reorg.c, resource.c, rtl-chkp.c, rtl-tests.c,
7776 rtlanal.c, rtlhooks.c, sched-deps.c, sched-rgn.c, sdbout.c,
7777 sel-sched-ir.c, sel-sched.c, shrink-wrap.c, simplify-rtx.c,
7778 stack-ptr-mod.c, stmt.c, stor-layout.c, target-globals.c,
7779 targhooks.c, toplev.c, tree-nested.c, tree-outof-ssa.c,
7780 tree-profile.c, tree-ssa-coalesce.c, tree-ssa-ifcombine.c,
7781 tree-ssa-loop-ivopts.c, tree-ssa-loop.c, tree-ssa-reassoc.c,
7782 tree-ssa-sccvn.c, tree-vect-data-refs.c, ubsan.c, valtrack.c,
7783 var-tracking.c, varasm.c: Include memmodel.h.
7784 * genattrtab.c (write_header): Include memmodel.h in generated file.
7785 * genautomata.c (main): Likewise.
7786 * gengtype.c (open_base_files): Likewise.
7787 * genopinit.c (main): Likewise.
7788 * genconditions.c (write_header): Include memmodel.h earlier in
7789 generated file.
7790 * genemit.c (main): Likewise.
7791 * genoutput.c (output_prologue): Likewise.
7792 * genpeep.c (main): Likewise.
7793 * genpreds.c (write_insn_preds_c): Likewise.
7794 * genrecog.c (write_header): Likewise.
7795 * Makefile.in (PLUGIN_HEADERS): Include memmodel.h
7796
7797 2016-10-13 David Malcolm <dmalcolm@redhat.com>
7798
7799 * function-tests.c (selftest::test_expansion_to_rtl): Add "true"
7800 for new "compact" param of print_rtx_function. Check for "cinsn"
7801 rather than "insn".
7802 * print-rtl-function.c (flag_compact): New decl.
7803 (print_rtx_function): Add param "compact" and use it to set
7804 flag_compact, adding a description of the effect to the leading
7805 comment, and updating the example output.
7806 * print-rtl.c (flag_compact): New variable.
7807 (print_rtx_operand_code_0): Omit the JUMP_LABEL reference in compact
7808 mode.
7809 (print_rtx_operand_code_i): When printing source locations, wrap
7810 xloc.file in quotes. Don't print INSN_CODEs in compact mode.
7811 (print_rtx_operand_code_r): Don't print regnos for hard regs and
7812 virtuals in compact mode.
7813 (print_rtx_operand_code_u): Don't print insn UIDs in compact mode,
7814 apart from in LABEL_REFs.
7815 (print_rtx_operand): In case 'w', don't print in hex in compact mode.
7816 Don't print basic block ids in compact mode.
7817 (print_rtx): In compact mode, prefix the code of insns with "c",
7818 only print the INSN_UID of CODE_LABELs, and omit their LABEL_NUSES.
7819 * print-rtl.h (print_rtx_function): Add "compact" param.
7820
7821 2016-10-13 Richard Earnshaw <rearnsha@arm.com>
7822
7823 * arm.h (TARGET_VFP): Delete.
7824 (TARGET_VFPD32): Remove references to TARGET_VFP.
7825 (TARGET_VFP3, TARGET_VFP5): Likewise.
7826 (TARGET_VFP_SINGLE, TARGET_VFP_DOUBLE): Likewise.
7827 (TARGET_NEON_FP16): Likewise.
7828 (TARGET_FMA): Likewise.
7829 (TARGET_CRYPTO): Likewise.
7830 (TARGET_NEON): Likewise.
7831 (SECONDARY_OUTPUT_RELOAD_CLASS): Likewise.
7832 (FUNCTION_ARG_REGNO_P): Likewise.
7833 * arm.c (arm_option_check_internal): Likewise.
7834 (arm_option_override): Likewise.
7835 (use_return_insn): Likewise.
7836 (arm_function_value_regno_p): Likewise.
7837 (arm_apply_result_size): Likewise.
7838 (use_vfp_abi): Likewise.
7839 (arm_legitimate_address_outer_p): Likewise.
7840 (thumb2_legitimate_address_p): Likewise.
7841 (arm_legitimate_index_p): Likewise.
7842 (thumb2_legitimate_index_p): Likewise.
7843 (arm_legitimate_address): Likewise.
7844 (arm_get_vfp_saved_size): Likewise.
7845 (arm_emit_vfp_multi_reg_pop): Likewise.
7846 (arm_get_frame_offsets): Likewise.
7847 (arm_save_coproc_regs): Likewise.
7848 (arm_hard_regno_mode_ok): Likewise.
7849 (arm_expand_epilogue_apcs_frame): Likewise.
7850 (arm_expand_epilogue): Likewise.
7851 (arm_file_start): Likewise.
7852 (arm_conditional_register_usage): Likewise.
7853 (arm_validize_comparison): Use vfp_compare_operand directly.
7854 * arm-builtins.c (arm_init_builtins): Remove references to TARGET_VFP.
7855 (arm_expand_vfp_builtin): Use TARGET_HARD_FLOAT for detecting
7856 unsupported usage.
7857 (arm_atomic_assign_expand_fenv): Likewise.
7858 * arm.md (divsf3): Likewise.
7859 (arm_negsi2): Likewise.
7860 (absdf2): Likewise.
7861 (arm_movdi): Likewise.
7862 (arm_movt): Likewise.
7863 (cbranchsf4): Change predicate to vfp_compare_operand.
7864 (cbranchdf4): Change predicate to vfp_compare_operand.
7865 (cstorehf4): Change predicate to vfp_compare_operand.
7866 (cstoresf4): Change predicate to vfp_compare_operand.
7867 (cstoredf4): Change predicate to vfp_compare_operand.
7868 (vfp_pop_multiple_with_writeback): Remove references to TARGET_VFP.
7869 (movhi_insn_arch4, movhi_bytes): Likewise.
7870 * constraints.md (Dt): Likewise.
7871 (Dp): Likewise.
7872 * iterators.md (SDF): Likewise.
7873 * predicates.md (arm_float_compare_operand): Delete.
7874 (const_double_vcvt_power_of_two_reciprocal): Remove references to
7875 TARGET_VFP.
7876 (const_double_vcvt_power_of_two): Likewise.
7877 * thumb2.md thumb2_movsi_insn): Likewise.
7878 * vfp.md (arm_movhi_vfp, thumb2_movhi_vfp): Likewise.
7879 (movhf_vfp): Likewise.
7880 (arm_movsi_vfp, thumb2_movsi_vfp): Likewise.
7881 (movdi_vfp, movdi_vfp_cortexa8): Likewise.
7882 (movsf_vfp, thumb2_movsf_vfp): Likewise.
7883 (movdf_vfp, thumb2_movdf_vfp): Likewise.
7884 (movsfcc_vfp, abssf2_vfp, negsf2_vfp, addsf3_vfp): Likewise.
7885 (subsf3_vfp, divsf3_vfp): Likewise.
7886 (mulsf3_vfp, mulsf3negsf_vfp, negmulsf3_vfp): Likewise.
7887 (mulsf3addsf_vfp, (mulsf3subsf_vfp, mulsf3negsfaddsf_vfp): Likewise.
7888 (mulsf3negsfsubsf_vfp): Likewise.
7889 (truncsisf2_vfp, fixuns_truncsfsi2, floatsisf2_vfp): Likewise.
7890 (floatunssisf2, sqrtsf2_vfp): Likewise.
7891 (movcc_vfp): Likewise.
7892 (cmpsf_split_vfp, cmpsf_trap_split_vfp): Likewise.
7893 (cmpsf_vfp, cmpsf_trap_vfp): Likewise.
7894 (push_multi_vfp): Likewise.
7895 (set_fpscr, get_fpscr): Likewise.
7896 * arm-c.c (arm_cpu_builtins): Unconditionally define __VFP_FP__.
7897
7898 2016-10-13 Richard Earnshaw <rearnsha@arm.com>
7899
7900 * arm.h (TARGET_VFP): Unconditionally define to 1.
7901 (arm_fpu_desc): Remove 'model' field.
7902 (TARGET_FPU_MODEL): Delete.
7903 * arm.c (all_fpus): Don't initialize the model field.
7904 (arm_can_inline_p): Don't check the FPU model.
7905 * arm-fpus.def: Remove redundant model field from all FPU
7906 descriptions.
7907
7908 2016-10-13 Richard Biener <rguenther@suse.de>
7909
7910 PR middle-end/77826
7911 * genmatch.c (struct capture): Add value_match member.
7912 (commutate): Preserve value_match.
7913 (lower_opt_convert): Likewise.
7914 (lower_cond): Likewise.
7915 (replace_id): Likewise.
7916 (struct dt_operand): Add value_match member.
7917 (decision_tree::cmp_node): Compare it.
7918 (decision_tree::insert_operand): Honor it when finding and
7919 when appending a DT_MATCH.
7920 (dt_operand::gen_match_op): Generate a type check after
7921 operand_equal_p if ! value_match for both GENERIC and GIMPLE.
7922 (parser::get_internal_capture_id): New helper.
7923 (parser::finish_match_operand): New function lowering @@<id>.
7924 (parser::parse_capture): Parse @@<id> as value-match.
7925 (parser::parse_expr): Use get_internal_capture_id.
7926 (parser::parse_simplify): Call finish_match_operand.
7927 (walk_captures): New helper.
7928 * match.pd (X - (X / Y) * Y -> X % Y): Use value-matching instead
7929 of operand_equal_p.
7930 ((X /[ex] A) * A -> X): Likewise.
7931 ((X | Y) ^ X -> Y & ~ X): Handle constants properly by using
7932 convert[12] and value-matching.
7933 ((A | B) & (A | C) -> A | (B & C)): Likewise.
7934 ((X | Y) | Y -> X | Y): Likewise.
7935 ((X ^ Y) ^ Y -> X): Likewise.
7936 (A - (A & B) -> ~B & A): Likewise.
7937 ((T)(P + A) - (T)P -> (T) A): Likewise.
7938 ((T)P - (T)(P + A) -> -(T) A): Likewise.
7939 ((T)(P + A) - (T)(P + B) -> (T)A - (T)B): Likewise.
7940 * doc/match-and-simplify.texi: Amend capture section.
7941
7942 2016-10-13 Claudiu Zissulescu <claziss@synopsys.com>
7943
7944 * config/arc/arc.md (umul_600): Remove predicated variant.
7945 (umul64_600): Likewise.
7946
7947 2016-10-13 Claudiu Zissulescu <claziss@synopsys.com>
7948
7949 * config/arc/arc.h (INSN_LENGTH_ALIGNMENT): Change.
7950
7951 2016-10-13 Bin Cheng <bin.cheng@arm.com>
7952
7953 * tree-vect-loop.c (loop_niters_no_overflow): New func.
7954 (vect_transform_loop): Call loop_niters_no_overflow. Pass the
7955 no-overflow information to vect_do_peeling_for_loop_bound and
7956 vect_gen_vector_loop_niters.
7957
7958 2016-10-13 Bin Cheng <bin.cheng@arm.com>
7959
7960 * tree-predcom.c (tree_predictive_commoning_loop): Skip loop that only
7961 iterates 1 time.
7962
7963 2016-10-13 Bin Cheng <bin.cheng@arm.com>
7964
7965 * tree-vect-loop-manip.c (adjust_vec_debug_stmts): Don't release
7966 adjust_vec automatically.
7967 (slpeel_add_loop_guard): Remove param cond_expr_stmt_list. Rename
7968 param exit_bb to guard_to.
7969 (slpeel_checking_verify_cfg_after_peeling):
7970 (set_prologue_iterations):
7971 (create_lcssa_for_virtual_phi): New func which is factored out from
7972 slpeel_tree_peel_loop_to_edge.
7973 (slpeel_tree_peel_loop_to_edge):
7974 (iv_phi_p): New func.
7975 (vect_can_advance_ivs_p): Call iv_phi_p.
7976 (vect_update_ivs_after_vectorizer): Call iv_phi_p. Directly insert
7977 new gimple stmts in basic block.
7978 (vect_gen_niters_for_prolog_loop): Rename to...
7979 (vect_gen_prolog_loop_niters): ...Rename from. Change parameters and
7980 adjust implementation.
7981 (vect_update_inits_of_drs): Fix code style issue. Convert niters to
7982 sizetype if necessary.
7983 (vect_build_loop_niters): Move to here from tree-vect-loop.c. Change
7984 it to external function.
7985 (vect_gen_scalar_loop_niters, vect_gen_vector_loop_niters): New.
7986 (vect_gen_vector_loop_niters_mult_vf): New.
7987 (slpeel_update_phi_nodes_for_loops): New.
7988 (slpeel_update_phi_nodes_for_guard1): Reimplement.
7989 (find_guard_arg, slpeel_update_phi_nodes_for_guard2): Reimplement.
7990 (slpeel_update_phi_nodes_for_lcssa, vect_do_peeling): New.
7991 * tree-vect-loop.c (vect_build_loop_niters): Move to file
7992 tree-vect-loop-manip.c
7993 (vect_generate_tmps_on_preheader): Delete.
7994 (vect_transform_loop): Rename vectorization_factor to vf. Call
7995 vect_do_peeling instead of vect_do_peeling-* functions.
7996 * tree-vectorizer.h (vect_do_peeling): New decl.
7997 (vect_build_loop_niters, vect_gen_vector_loop_niters): New decls.
7998 (vect_do_peeling_for_loop_bound): Delete.
7999 (vect_do_peeling_for_alignment): Delete.
8000
8001 2016-10-13 Bin Cheng <bin.cheng@arm.com>
8002
8003 * tree-vect-loop-manip.c (slpeel_tree_duplicate_loop_to_edge_cfg): Put
8004 duplicated loop after its preheader and after the original loop.
8005
8006 2016-10-13 Bin Cheng <bin.cheng@arm.com>
8007
8008 * tree-vect-loop.c (vect_analyze_loop_2): Check and skip loop if it
8009 has no enough iterations for LOOP_VINFO_PEELING_FOR_GAPS.
8010
8011 2016-10-13 Bin Cheng <bin.cheng@arm.com>
8012
8013 * tree-vect-loop.c (vectorizable_live_operation): Support handling
8014 for live variable outside loop but not in lcssa form.
8015
8016 2016-10-13 Bin Cheng <bin.cheng@arm.com>
8017
8018 * cfg.c (reset_original_copy_tables): New func.
8019 * cfg.h (reset_original_copy_tables): New decl.
8020
8021 2016-10-13 Jakub Jelinek <jakub@redhat.com>
8022
8023 PR c/77946
8024 * tree.h (FALLTHROUGH_LABEL_P): Use private_flag instead of
8025 public_flag.
8026 * varasm.c (default_binds_local_p_3): Formatting fix.
8027
8028 2016-10-13 Bin Cheng <bin.cheng@arm.com>
8029
8030 * tree-vect-loop-manip.c (slpeel_can_duplicate_loop_p): Fix code
8031 style issue.
8032 (vect_do_peeling_for_loop_bound, vect_do_peeling_for_alignment):
8033 Remove useless code.
8034
8035 2016-10-13 Martin Liska <mliska@suse.cz>
8036
8037 PR tree-optimization/77943
8038 * tree-ssa-tail-merge.c (merge_stmts_p): Do not merge BBs with
8039 a different EH landing pads.
8040
8041 2016-10-13 Jakub Jelinek <jakub@redhat.com>
8042
8043 PR target/77957
8044 * hooks.h (hook_tree_void_null): Declare.
8045 * hooks.c (hook_tree_void_null): New function.
8046 * langhooks.c (lhd_return_null_tree_v): Remove.
8047 * langhooks-def.h (lhd_return_null_tree_v): Remove.
8048 * cfgexpand.c (stack_protect_prologue): If guard_decl is NULL,
8049 set y to const0_rtx.
8050 * function.c (stack_protect_epilogue): Likewise.
8051 * config/tilepro/tilepro.c (TARGET_STACK_PROTECT_GUARD): Redefine
8052 if TARGET_THREAD_SSP_OFFSET is defined.
8053 * config/s390/s390.c (TARGET_STACK_PROTECT_GUARD): Likewise.
8054 * config/sparc/sparc.c (TARGET_STACK_PROTECT_GUARD): Likewise.
8055 * config/tilegx/tilegx.c (TARGET_STACK_PROTECT_GUARD): Likewise.
8056 * config/rs6000/rs6000.c (TARGET_STACK_PROTECT_GUARD): Likewise.
8057 * config/i386/i386.c (TARGET_STACK_PROTECT_GUARD): Likewise.
8058 (ix86_stack_protect_guard): New function.
8059
8060 2016-10-13 Richard Biener <rguenther@suse.de>
8061
8062 * dwarf2out.c (tree_add_const_value_attribute): Do not try
8063 rtl_for_decl_init during early phase.
8064 (gen_variable_die): Do not create locations during early phase.
8065 (gen_label_die): Likewise.
8066 (decls_for_scope): Do not waste time handling BLOCK_NONLOCALIZED_VARs
8067 twice.
8068
8069 2016-10-12 Richard Biener <rguenther@suse.de>
8070
8071 * tree-vrp.c (evrp_dom_walker::try_find_new_range): Renamed from
8072 try_add_new_range and made to eturn new range.
8073 (evrp_dom_walker::before_dom_children): Push op1 value range before
8074 pushing op0 value range.
8075
8076 2016-10-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
8077
8078 PR tree-optimization/77937
8079 * gimple-ssa-strength-reduction.c (analyze_increments): Use
8080 POINTER_TYPE_P on the candidate type to determine whether
8081 candidates in this chain require pointer arithmetic.
8082
8083 2016-10-12 Eric Botcazou <ebotcazou@adacore.com>
8084
8085 * config/visium/visium.c (visium_gimplify_va_arg): Emit a big-endian
8086 correction if the type is smaller than a word.
8087 (visium_select_cc_mode): Add ... fall through ... comment.
8088
8089 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
8090
8091 * config/rs6000/rs6000.c (machine_function): Add new fields
8092 gpr_is_wrapped_separately and lr_is_wrapped_separately.
8093 (TARGET_SHRINK_WRAP_GET_SEPARATE_COMPONENTS,
8094 TARGET_SHRINK_WRAP_COMPONENTS_FOR_BB,
8095 TARGET_SHRINK_WRAP_DISQUALIFY_COMPONENTS,
8096 TARGET_SHRINK_WRAP_EMIT_PROLOGUE_COMPONENTS,
8097 TARGET_SHRINK_WRAP_EMIT_EPILOGUE_COMPONENTS,
8098 TARGET_SHRINK_WRAP_SET_HANDLED_COMPONENTS): Define.
8099 (rs6000_get_separate_components): New function.
8100 (rs6000_components_for_bb): New function.
8101 (rs6000_disqualify_components): New function.
8102 (rs6000_emit_prologue_components): New function.
8103 (rs6000_emit_epilogue_components): New function.
8104 (rs6000_set_handled_components): New function.
8105 (rs6000_emit_prologue): Don't emit LR save if lr_is_wrapped_separately.
8106 Don't emit GPR saves if gpr_is_wrapped_separately for that register.
8107 (restore_saved_lr): Don't restore LR if lr_is_wrapped_separately.
8108 (rs6000_emit_epilogue): Don't emit GPR restores if
8109 gpr_is_wrapped_separately for that register. Don't make a
8110 REG_CFA_RESTORE note for registers we did not restore, either.
8111
8112 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
8113
8114 * function.c (thread_prologue_and_epilogue_insns): Call
8115 try_shrink_wrapping_separate. Compute the prologue_seq afterwards,
8116 if it has possibly changed. Compute the split_prologue_seq and
8117 epilogue_seq later, too.
8118 * shrink-wrap.c: #include cfgbuild.h and insn-config.h.
8119 (dump_components): New function.
8120 (struct sw): New struct.
8121 (SW): New function.
8122 (init_separate_shrink_wrap): New function.
8123 (fini_separate_shrink_wrap): New function.
8124 (place_prologue_for_one_component): New function.
8125 (spread_components): New function.
8126 (disqualify_problematic_components): New function.
8127 (emit_common_heads_for_components): New function.
8128 (emit_common_tails_for_components): New function.
8129 (insert_prologue_epilogue_for_components): New function.
8130 (try_shrink_wrapping_separate): New function.
8131 * shrink-wrap.h: Declare try_shrink_wrapping_separate.
8132
8133 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
8134
8135 * regrename.c (build_def_use): Invalidate chains that have a
8136 REG_CFA_RESTORE on some instruction.
8137
8138 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
8139
8140 * dce.c (delete_unmarked_insns): Don't delete instructions with
8141 a REG_CFA_RESTORE note.
8142
8143 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
8144
8145 * common.opt (-fshrink-wrap-separate): New flag.
8146 * doc/invoke.texi: Document it.
8147 * doc/tm.texi.in (Shrink-wrapping separate components): New subsection.
8148 * doc/tm.texi: Regenerate.
8149 * emit-rtl.h (struct rtl_data): New field shrink_wrapped_separate.
8150 * target.def (shrink_wrap): New hook vector.
8151 (get_separate_components, components_for_bb, disqualify_components,
8152 emit_prologue_components, emit_epilogue_components,
8153 set_handled_components): New hooks.
8154
8155 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
8156
8157 * config/rs6000/rs6000.c (rs6000_return_in_memory): Warn for
8158 vector return by reference only if -Wpsabi.
8159 (rs6000_pass_by_reference): Similarly, for argument passing.
8160
8161 2016-10-12 David Malcolm <dmalcolm@redhat.com>
8162
8163 * function-tests.c: Include "print-rtl.h".
8164 (selftest::test_expansion_to_rtl): Call print_rtx_function on the
8165 function, and verify what is dumped.
8166 * print-rtl-function.c (print_edge): New function.
8167 (begin_any_block): New function.
8168 (end_any_block): New function.
8169 (can_have_basic_block_p): New function.
8170 (print_rtx_function): Track the basic blocks of insns in the
8171 chain, wrapping those that are within blocks within "(block)"
8172 directives. Remove the "(cfg)" directive.
8173
8174 2016-10-12 David Malcolm <dmalcolm@redhat.com>
8175
8176 * selftest.c (selftest::read_file): New function.
8177 (selftest::test_read_file): New function.
8178 (selftest::selftest_c_tests): Call test_read_file.
8179 * selftest.h (selftest::read_file): New decl.
8180
8181 2016-10-12 Richard Biener <rguenther@suse.de>
8182
8183 PR debug/77947
8184 * cgraphunit.c (analyze_functions): Preserve cgraph nodes
8185 function context.
8186
8187 2016-10-12 Thomas Schwinge <thomas@codesourcery.com>
8188
8189 * lto-streamer.c: Fix LTO_STREAMER_DEBUG build.
8190
8191 * dwarf2out.c (dwarf2_lineno_debug_hooks): Use
8192 dwarf2out_assembly_start.
8193
8194 * Makefile.in (SELFTEST_FLAGS): Add -nostdinc.
8195
8196 * Makefile.in (SELFTEST_FLAGS): New variable.
8197 (s-selftest, selftest-gdb, selftest-valgrind): Use it.
8198
8199 * vmsdbgout.c (vmsdbg_debug_hooks): Add filename parameter to
8200 early_finish hook.
8201
8202 2016-10-12 Georg-Johann Lay <avr@gjlay.de>
8203
8204 * rtl.h (struct rtx_def): Comment how RTX_FLAGS will be
8205 dumped in RTL dumps.
8206
8207 2016-10-12 Martin Liska <mliska@suse.cz>
8208
8209 * gimple-fold.c (create_tmp_reg_or_ssa_name): New function.
8210 (gimple_fold_builtin_memory_op): Use the function.
8211 (gimple_fold_builtin_strchr): Likewise.
8212 (gimple_fold_builtin_strcat): Likewise.
8213 (gimple_build): Likewise.
8214
8215 2016-10-12 Nathan Sidwell <nathan@acm.org>
8216
8217 * diagnostic.c (diagnostc_report_diagnostic): Fix formatting.
8218
8219 2016-10-12 Pierre-Marie de Rodat <derodat@adacore.com>
8220
8221 * dwarf2out.c (int_loc_descriptor): Generate opcodes for another
8222 equivalent 32-bit constant (modulo 2**32) when that yields
8223 smaller instructions.
8224 (size_of_int_loc_descriptor): Update accordingly.
8225
8226 2016-10-12 Pierre-Marie de Rodat <derodat@adacore.com>
8227
8228 * dwarf2out.c (dwarf2out_early_global_decl): For nested
8229 functions, call dwarf2out_decl on the parent function first.
8230
8231 2016-10-12 Richard Biener <rguenther@suse.de>
8232
8233 * match.pd ((X /[ex] A) * A -> X): Remove unnecessary constraint
8234 on the conversion.
8235
8236 2016-10-12 Richard Biener <rguenther@suse.de>
8237
8238 * tree-ssa-propagate.c
8239 (substitute_and_fold_dom_walker::before_dom_children): Do not
8240 ignore ASSERT_EXPRs but only preserve them.
8241 * tree-vrp.c (remove_range_assertions): Deal with ASSERT_EXPRs
8242 that have been propagated into.
8243 (vrp_finalize): Enable DCE for substitute_and_fold.
8244
8245 2016-10-12 Richard Biener <rguenther@suse.de>
8246
8247 PR tree-optimization/77920
8248 * tree-vrp.c (simplify_div_or_mod_using_ranges): Simplify.
8249 (simplify_min_or_max_using_ranges): Pass in gsi and use it.
8250 (simplify_abs_using_ranges): Likewise.
8251 (simplify_conversion_using_ranges): Likewise.
8252 (simplify_stmt_using_ranges): Adjust.
8253
8254 2016-10-12 Jakub Jelinek <jakub@redhat.com>
8255
8256 PR tree-optimization/77929
8257 * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Handle
8258 (*ops)[ranges[i].idx]->op != ranges[i].exp case.
8259
8260 2016-10-12 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
8261
8262 PR target/77934
8263 * config/rs6000/vmx.md (vsx_concat_<mode>): The mtvsrdd instruction
8264 needs a base register for arg 1.
8265
8266 2016-10-12 Jakub Jelinek <jakub@redhat.com>
8267
8268 * common.opt (Wimplicit-fallthrough) Turn into alias to
8269 -Wimplicit-fallthrough=3. Remove EnabledBy.
8270 (Wimplicit-fallthrough=): New option.
8271 * gimplify.c (warn_implicit_fallthrough_r): Use
8272 OPT_Wimplicit_fallthrough_ instead of OPT_Wimplicit_fallthrough.
8273 * doc/invoke.texi (-Wimplicit-fallthrough): Document as alias
8274 to -Wimplicit-fallthrough=3.
8275 (-Wimplicit-fallthrough=): Document.
8276
8277 2016-10-11 Eric Botcazou <ebotcazou@adacore.com>
8278
8279 * config/sparc/sparc.c (emit_scc_insn): Remove direct support for EQ
8280 and GEU in DImode if TARGET_SUBXC.
8281 * config/sparc/sparc.md (seqdi<W:mode>_zero): Remove TARGET_SUBXC.
8282 (seqdi<W:mode>_zero_subxc): Delete.
8283 (neg_seqdi<W:mode>_zero): Remove TARGET_VIS3.
8284 (neg_seqdi<W:mode>_zero_vis3): Delete.
8285 (plus_seqdi<W:mode>_zero): Likewise.
8286 (minus_seqdi<W:mode>_zero): Likewise.
8287 (plus_plus_sltu<W:mode>): Accept only register.
8288 (addx<W:mode>): Likewise.
8289 (plus_sltu<W:mode>_vis3): Likewise.
8290 (plus_plus_sltu<W:mode>_vis3): Likewise.
8291 (neg_sgeu<W:mode>_vis3): Delete.
8292 (minus_sgeu<W:mode>_vis3): Likewise.
8293 (addxc<W:mode>): Accept only registers.
8294 (neg_sltu<W:mode>_subxc): Write %%g0 instead of 0.
8295 (minus_neg_sltu<W:mode>_subxc): Accept only register.
8296 (neg_plus_sltu<W:mode>_subxc): Likewise.
8297 (minus_sltu<W:mode>_subxc): Write %%g0 instead of 0.
8298 (minus_minus_sltu<W:mode>_subxc): Accept only register.
8299 (sgeu<W:mode>_insn_subxc): Delete.
8300 (plus_sgeu<W:mode>_subxc): Likewise.
8301 (subxc<W:mode>): Accept only register.
8302 (scc splitter): Split always GEU again.
8303
8304 2016-10-11 Jeff Law <law@redhat.com>
8305
8306 PR tree-optimization/77424
8307 * tree-ssa-threadupdate.c (thread_through_all_blocks): Remove
8308 dead conditionals. Assert that all e->aux fields are NULL.
8309
8310 2016-10-11 David Malcolm <dmalcolm@redhat.com>
8311
8312 * print-rtl.c (print_rtx): Rename "i" to "idx". Split out the
8313 operand-printing "switch" statement into...
8314 (print_rtx_operand_code_0): ...this new function, ...
8315 (print_rtx_operand_code_e): ...this new function, ...
8316 (print_rtx_operand_codes_E_and_V): ...this new function, ...
8317 (print_rtx_operand_code_i): ...this new function, ...
8318 (print_rtx_operand_code_r): ...this new function, ...
8319 (print_rtx_operand_code_u): ...this new function, ...
8320 (print_rtx_operand): ...and this new function.
8321
8322 2016-10-11 Uros Bizjak <ubizjak@gmail.com>
8323
8324 * config/alpha/alpha-passes.def: New file.
8325 * config/alpha/t-alpha: New file.
8326 * config/alpha/alpha-protos.h (gcc::context, rtl_opt_pass): Declare.
8327 (make_pass_handle_trap_shadows): New prototype.
8328 (make_pass_align_insns): Ditto.
8329 * config/alpha/alpha.c (alpha_option_override): Don't register
8330 passes here.
8331 * config.gcc (alpha*-*-*) Add alpha/t-alpha to tmake_file.
8332
8333 2016-10-11 Michael Meissner <meissner@linux.vnet.ibm.com>
8334
8335 PR target/77924
8336 * config/rs6000/rs6000.c (rs6000_init_builtins): Only create the
8337 distinct __ibm128 IBM extended double type if long doubles are
8338 128-bits and the default format for long double is IEEE 128-bit.
8339
8340 2016-10-11 Richard Biener <rguenther@suse.de>
8341
8342 * dwarf2out.c (DEBUG_STR_OFFSETS_SECTION): Remove conditional.
8343 (init_sections_and_labels): Use DEBUG_DWO_STR_OFFSETS_SECTION.
8344 (verify_die): New function.
8345 (dwarf2out_finish): Call it.
8346 (output_line_info): Handle case of -gsplit-dwarf without
8347 DWARF2_ASM_LINE_DEBUG_INFO.
8348
8349 2016-10-11 Richard Biener <rguenther@suse.de>
8350
8351 PR debug/77931
8352 * gimple-low.c (lower_gimple_bind): Handle arbitrary common
8353 sub-chains of BLOCK_VARS and gimple_bind_vars.
8354
8355 2016-10-11 Venkataramanan Kumar <Venkataramanan.kumar@amd.com>
8356
8357 * config/i386/znver1.md : Fix imov/imovx load type reservations.
8358
8359 2016-10-11 Eric Botcazou <ebotcazou@adacore.com>
8360
8361 * config/sparc/sparc.opt (msubxc): New option.
8362 * doc/invoke.texi (SPARC options): Document it and tidy up.
8363 * doc/tm.texi.in (Condition Codes): Adjust SPARC example.
8364 * doc/tm.texi: Regenerate.
8365 * config/sparc/sparc-modes.def (CC_NOOV): Rename into...
8366 (CCNZ): ...this.
8367 (CCX_NOOV): Rename into...
8368 (CCXNZ): ...this.
8369 (CCC): New.
8370 (CCXC): Likewise.
8371 * config/sparc/predicates.m (fcc_register_operand): Simplify.
8372 (fcc0_register_operand): Likewise.
8373 (icc_register_operand): New.
8374 (icc_or_fcc_register_operand): Simplify.
8375 (nz_comparison_operator): New.
8376 (c_comparison_operator): Likewise.
8377 (noov_compare_operator): Rename into...
8378 (icc_comparison_operator): ...this. Use above predicates.
8379 (noov_compare64_operator): Rename into...
8380 (v9_comparison_operator): ...this and tidy up.
8381 (fcc_comparison_operator): New.
8382 (icc_or_fcc_comparison_operator): Likewise.
8383 (v9_register_compare_operator): Rename info...
8384 (v9_register_comparison_operator): ...this.
8385 * config/sparc/sparc.c (TARGET_FIXED_CONDITION_CODE_REGS): Define.
8386 (sparc_option_override): Remove redundant VIS masks and add MASK_SUBXC
8387 for Niagara-7.
8388 (sparc_fixed_condition_code_regs): New function.
8389 (select_cc_mode): Remove ATTRIBUTE_UNUSED. Adjust for CCNZ/CCXNZ
8390 renaming and add support for CCC/CCXC.
8391 (output_cbranch): Likewise.
8392 (sparc_print_operand): Likewise.
8393 (gen_v9_scc): Remove obsolete assertion.
8394 (emit_scc_insn): Emit RTL directly for EQ and NE. Add direct support
8395 for EQ in DImode if TARGET_SUBXC. Remove test on TARGET_VIS3 for GEU.
8396 (output_cbcond): Remove bogus handling of CC modes.
8397 (sparc_register_move_cost): Return 100 for NO_REGS.
8398 * config/sparc/sparc.md (W): New mode iterator.
8399 (length): Adjust for noov_compare64_operator renaming.
8400 (cmpsi_sne): New instruction.
8401 (cmpdi_sne): Likewise.
8402 (seqdi_special): Delete.
8403 (seqdi_special): Likewise.
8404 (snesi<P:mode>_special): Likewise.
8405 (snedi_special): Likewise.
8406 (snedi_special_vis3): Likewise.
8407 (snesi patterns): Use W iterator.
8408 (snedi patterns): Likewise. Add TARGET_SUBXC patterns.
8409 (sltu patterns): Likewise.
8410 (sgeu patterns): Likewise.
8411 (scc splitter): Do not split GEU in DImode if TARGET_SUBXC.
8412 (normal_branch): Use icc_comparison_operator predicate.
8413 (inverted_branch): Likewise.
8414 (cbcond_sp32): Use comparison_operator predicate.
8415 (cbcond_sp64): Likewise.
8416 (normal_int_branch_sp64): Adjust for renaming
8417 (inverted_int_branch_sp64): Likewise.
8418 (mov<I:mode>_cc_reg_sp64): Likewise.
8419 (movsf_cc_reg_sp6): Likewise.
8420 (movdf_cc_reg_sp64): Likewise.
8421 (movtf_cc_reg_hq_sp64): Likewise.
8422 (movtf_cc_reg_sp64): Likewise.
8423 (mov<I:mode>_cc_v9): Use icc_or_fcc_comparison_operator predicate.
8424 (movsf_cc_v9): Likewise.
8425 (movdf_cc_v9): Likewise.
8426 (movtf_cc_hq_v9): Likewise.
8427 (movtf_cc_v9): Likewise.
8428 (adddi3): Call gen_adddi3_sp32.
8429 (adddi3_insn_sp32): Rename to...
8430 (adddi3_sp32): ...this. Accept only register_operand as operand #1
8431 and use CCCmode for the carry.
8432 (addx_extend_sp32): Use CCCmode for the carry.
8433 (addx_extend_sp64): Delete.
8434 (adddi3_extend_sp32): Use CCCmode for the carry.
8435 (cmp_plus patterns): Use CCNZ/CCXNZ mode and add C variants.
8436 (subdi3): Call gen_subdi3_sp32.
8437 (subdi3_insn_sp32): Rename to...
8438 (subdi3_sp32): ...this and use CCmode for the carry.
8439 (subx_extend_sp32): Use CCCmode for the carry.
8440 (subx_extend_sp64): Delete.
8441 (subdi3_extend_sp32): Use CCmode for the carry.
8442 (cmp_minus patterns): Use CCNZ/CCXNZ mode and add C variants.
8443 (negdi3): Call gen_negdi3_sp32.
8444 (negdi3_sp32): Use CCCmode for the carry.
8445 (cmp_neg patterns): Use CCNZ/CCXNZ mode and add C variants.
8446 (cmp_nz_ashift_1): Use CCNZ mode.
8447 (cmp_nz_set_ashift_1): Likewise.
8448 (ctrapsi4): Use comparison_operator predicate.
8449 (ctrapdi4): Likewise.
8450 (trapsi_insn): Use icc_comparison_operator predicate.
8451 (trapdi_insn): Likewise.
8452 (edge8 patterns): Use CCNZmode.
8453 (edge16 patterns): Likewise.
8454 (edge32 patterns): Likewise.
8455
8456 2016-10-11 Eric Botcazou <ebotcazou@adacore.com>
8457
8458 * config/visium/visium-modes.def (CC_NOOV): Rename into...
8459 (CCNZ): ...this.
8460 (CC_BTST): Rename into...
8461 (CCC): ...this.
8462 * config/visium/predicates.md (real_add_operand): New.
8463 (visium_btst_operator): Rename into...
8464 (visium_equality_comparison_operator): ...this.
8465 (visium_noov_operator): Rename into...
8466 (visium_nz_comparison_operator): ...this.
8467 (visium_c_comparison_operator): New.
8468 (visium_branch_operator): Adjust and deal with all CC modes.
8469 * config/visium/visium.c (visium_adjust_cost): Adjust.
8470 (visium_split_double_add): Use the *_set_carry patterns.
8471 (visium_select_cc_mode): Add support for CCC mode and adjust.
8472 (output_cbranch): Adjust and use the carry-based operators for
8473 floating-point comparisons.
8474 * config/visium/visium.md (flags_subst_arith): Adjust.
8475 (addsi3_insn_set_carry): New instruction.
8476 (subsi3_insn_set_carry): Likewise.
8477 (negsi2_insn_set_carry): Likewise.
8478 (btst): Adjust.
8479 (cmp<mode>_sne): Likewise.
8480 (cbranch<mode>4): Use ordered_comparison_operator.
8481 (cbranch<mode>4_insn): Likewise.
8482 (cbranchsi4_btst_insn): Adjust.
8483
8484 2016-10-11 Tom de Vries <tom@codesourcery.com>
8485
8486 PR middle-end/77558
8487 * builtins.c (std_canonical_va_list_type): Remove RECORD_TYPE
8488 special-casing.
8489
8490 2016-10-11 Eric Botcazou <ebotcazou@adacore.com>
8491
8492 * tree.h (build_complex_type): Add second parameter with default.
8493 * tree.c (build_complex_type): Add NAMED second parameter and adjust
8494 recursive call. Create a TYPE_DECL only if NAMED is true.
8495 (build_common_tree_nodes): Pass true in calls to build_complex_type.
8496
8497 2016-10-11 Georg-Johann Lay <avr@gjlay.de>
8498
8499 New avr-passes.def to register AVR specific passes.
8500
8501 * config/avr/avr-passes.def: New file.
8502 * config/avr/t-avr (PASSES_EXTRA): Add avr-passes.def.
8503 * config/avr/avr-protos.h (gcc::context, rtl_opt_pass): Declare.
8504 (make_avr_pass_recompute_note): New proto.
8505 * config/avr/avr.c (make_avr_pass_recompute_notes): New function.
8506 (avr_pass_recompute_notes): Use anonymous namespace.
8507 (avr_register_passes): Remove function...
8508 (avr_option_override): ...and its call.
8509
8510 2016-10-11 Robert Suchanek <robert.suchanek@imgtec.com>
8511
8512 * config/mips/mips-cpus.def: Replace PTF_AVOID_BRANCHLIKELY with
8513 PTF_AVOID_BRANCHLIKELY_ALWAYS for generic architecture and with
8514 PTF_AVOID_BRANCHLIKELY_SPEED for others.
8515 (mips2, mips3, mips4): Add PTF_AVOID_BRANCHLIKELY_SIZE to tune
8516 flags.
8517 * config/mips/mips.c (mips_option_override): Enable the branch
8518 likely depending on the tune flags and optimization level.
8519 * config/mips/mips.h (PTF_AVOID_BRANCHLIKELY): Remove.
8520 (PTF_AVOID_BRANCHLIKELY_SPEED): Define.
8521 (PTF_AVOID_BRANCHLIKELY_SIZE): Likewise.
8522 (PTF_AVOID_BRANCHLIKELY_ALWAYS): Likewise.
8523
8524 2016-10-11 Richard Biener <rguenther@suse.de>
8525
8526 * lto-streamer-out.c (collect_block_tree_leafs): New helper.
8527 (output_function): Properly stream the whole block tree.
8528 * lto-streamer-in.c (input_function): Likewise.
8529
8530 2016-10-11 Marek Polacek <polacek@redhat.com>
8531
8532 * Makefile.in (C_COMMON_OBJS): Add c-family/c-warn.o.
8533
8534 2016-10-11 Kugan Vivekanandarajah <kuganv@linaro.org>
8535
8536 * tree-vrp.c (evrp_dom_walker::try_add_new_range): New.
8537 (evrp_dom_walker::before_dom_children): Infer and push new value
8538 ranges for x in y < x.
8539
8540 2016-10-10 Joseph Myers <joseph@codesourcery.com>
8541
8542 PR target/77586
8543 * config/ia64/ia64.c (ia64_libgcc_floating_mode_supported_p)
8544 (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
8545 * config/ia64/elf.h (IA64_NO_LIBGCC_TFMODE): Likewise.
8546 * config/ia64/freebsd.h (IA64_NO_LIBGCC_TFMODE): Likewise.
8547 * config/ia64/vms.h (IA64_NO_LIBGCC_XFMODE)
8548 (IA64_NO_LIBGCC_TFMODE): Likewise.
8549
8550 2016-10-11 Kugan Vivekanandarajah <kuganv@linaro.org>
8551
8552 * tree-vrp.c (vrp_intersect_ranges_1): Allocate bitmap before
8553 copying.
8554
8555 2016-10-10 Andreas Tobler <andreast@gcc.gnu.org>
8556
8557 * config.gcc: Add aarch64-*-freebsd* support.
8558 * config.host: Likewise.
8559 * config/aarch64/aarch64-freebsd.h: New file.
8560 * config/aarch64/t-aarch64-freebsd: Ditto.
8561
8562 2016-10-10 Jeff Law <law@redhat.com>
8563
8564 PR tree-optimization/71947
8565 * tree-ssa-dom.c (cprop_into_stmt): Avoid replacing A with B, then
8566 B with A within a single statement.
8567
8568 2016-10-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
8569
8570 PR tree-optimization/77824
8571 * gimple-ssa-strength-reduction.c (stmt_cost): Explicitly return
8572 zero cost for copies.
8573 (find_candidates_dom_walker::before_dom_children): Replace
8574 MODIFY_EXPR with SSA_NAME.
8575 (replace_mult_candidate): Likewise.
8576 (replace_profitable_candidates): Likewise.
8577
8578 2016-10-10 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
8579
8580 * config/s390/s390.h: Wrap more macros args in brackets and fix
8581
8582 2016-10-10 Georg-Johann Lay <avr@gjlay.de>
8583
8584 * config/avr/gen-avr-mmcu-texi.c (string.h): Include.
8585
8586 2016-10-10 Andreas Schwab <schwab@suse.de>
8587
8588 PR target/77738
8589 * config/ia64/ia64.md ("doloop_end"): Reject if mode of loop
8590 pseudo is not DImode.
8591
8592 2016-10-10 Claudiu Zissulescu <claziss@synopsys.com>
8593
8594 * common/config/arc/arc-common.c (arc_option_optimization_table):
8595 Remove compact casesi option.
8596 * config/arc/arc.c (arc_override_options): Use compact casesi
8597 option only for pre-ARCv2 cores.
8598 * doc/invoke.texi (mcompact-casesi): Update text.
8599
8600 2016-10-09 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
8601
8602 * config/rs6000/rs6000.h (TARGET_EFFICIENT_OVERLAPPING_UNALIGNED):
8603 Add macro to say we can efficiently handle overlapping unaligned
8604 loads.
8605 * config/rs6000/rs6000.c (expand_block_compare): Avoid generating
8606 poor code for processors older than p8.
8607
8608 2016-10-09 Eric Botcazou <ebotcazou@adacore.com>
8609
8610 * gen-pass-instances.awk: Remove GNUism.
8611
8612 2016-10-09 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
8613
8614 * ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to
8615 NULL of (*ipcp_transformations)][node->uid].
8616
8617 2016-10-09 John David Anglin <danglin@gcc.gnu.org>
8618
8619 * config/pa/pa.h (BIGGEST_ALIGNMENT): Adjust comment.
8620 (MALLOC_ABI_ALIGNMENT): Define.
8621
8622 2016-10-09 Jakub Jelinek <jakub@redhat.com>
8623
8624 * tree-ssa.c (target_for_debug_bind, verify_phi_args,
8625 ssa_undefined_value_p, maybe_optimize_var): Use VAR_P and/or
8626 VAR_OR_FUNCTION_DECL_P macros.
8627 * tree-chkp.c (chkp_register_var_initializer, chkp_make_static_bounds,
8628 chkp_get_bounds_for_decl_addr, chkp_parse_array_and_component_ref,
8629 chkp_find_bounds_1): Likewise.
8630 * ipa-polymorphic-call.c (decl_maybe_in_construction_p): Likewise.
8631 * hsa-gen.c (get_symbol_for_decl): Likewise.
8632 * cgraphunit.c (check_global_declaration, analyze_functions,
8633 handle_alias_pairs, thunk_adjust, cgraph_node::expand_thunk):
8634 Likewise.
8635 * gimple-fold.c (can_refer_decl_in_current_unit_p,
8636 canonicalize_constructor_val, gimple_get_virt_method_for_vtable):
8637 Likewise.
8638 * tree.c (set_decl_section_name, copy_node_stat,
8639 need_assembler_name_p, free_lang_data_in_decl, find_decls_types_r,
8640 merge_dllimport_decl_attributes, handle_dll_attribute,
8641 decl_init_priority_insert, auto_var_in_fn_p, array_at_struct_end_p,
8642 verify_type): Likewise.
8643 * gimple-ssa-isolate-paths.c (find_implicit_erroneous_behavior,
8644 find_explicit_erroneous_behavior): Likewise.
8645 * sdbout.c (sdbout_toplevel_data, sdbout_late_global_decl): Likewise.
8646 * ipa.c (process_references): Likewise.
8647 * tree-chkp-opt.c (chkp_get_check_result): Likewise.
8648 * varasm.c (get_block_for_decl, use_blocks_for_decl_p, make_decl_rtl,
8649 notice_global_symbol, assemble_variable, mark_decl_referenced,
8650 build_constant_desc, output_constant_def_contents, do_assemble_alias,
8651 make_decl_one_only, default_section_type_flags,
8652 categorize_decl_for_section, default_encode_section_info): Likewise.
8653 * trans-mem.c (requires_barrier): Likewise.
8654 * gimple-expr.c (mark_addressable): Likewise.
8655 * cfgexpand.c (add_scope_conflicts_1, expand_one_var,
8656 expand_used_vars_for_block, clear_tree_used, stack_protect_decl_p,
8657 expand_debug_expr): Likewise.
8658 * tree-dump.c (dequeue_and_dump): Likewise.
8659 * ubsan.c (instrument_bool_enum_load): Likewise.
8660 * tree-pretty-print.c (print_declaration): Likewise.
8661 * simplify-rtx.c (delegitimize_mem_from_attrs): Likewise.
8662 * tree-ssa-uninit.c (warn_uninitialized_vars): Likewise.
8663 * asan.c (asan_protect_global, instrument_derefs): Likewise.
8664 * tree-into-ssa.c (rewrite_stmt, maybe_register_def,
8665 pass_build_ssa::execute): Likewise.
8666 * var-tracking.c (var_debug_decl, track_expr_p): Likewise.
8667 * tree-ssa-loop-ivopts.c (force_expr_to_var_cost, split_address_cost):
8668 Likewise.
8669 * ipa-split.c (test_nonssa_use, consider_split, mark_nonssa_use):
8670 Likewise.
8671 * tree-inline.c (insert_debug_decl_map, remap_ssa_name,
8672 can_be_nonlocal, remap_decls, copy_debug_stmt,
8673 initialize_inlined_parameters, add_local_variables,
8674 reset_debug_binding, replace_locals_op): Likewise.
8675 * dse.c (can_escape): Likewise.
8676 * ipa-devirt.c (compare_virtual_tables, referenced_from_vtable_p):
8677 Likewise.
8678 * tree-diagnostic.c (default_tree_printer): Likewise.
8679 * tree-streamer-in.c (unpack_ts_decl_common_value_fields,
8680 unpack_ts_decl_with_vis_value_fields,
8681 lto_input_ts_decl_common_tree_pointers): Likewise.
8682 * builtins.c (builtin_save_expr, fold_builtin_expect,
8683 readonly_data_expr): Likewise.
8684 * tree-ssa-structalias.c (new_var_info, get_constraint_for_ssa_var,
8685 create_variable_info_for, set_uids_in_ptset, visit_loadstore):
8686 Likewise.
8687 * gimple-streamer-out.c (output_gimple_stmt): Likewise.
8688 * gimplify.c (force_constant_size, gimplify_bind_expr,
8689 gimplify_decl_expr, gimplify_var_or_parm_decl,
8690 gimplify_compound_lval, gimplify_init_constructor,
8691 gimplify_modify_expr, gimplify_asm_expr, gimplify_oacc_declare,
8692 gimplify_type_sizes): Likewise.
8693 * cgraphbuild.c (record_reference, record_type_list, mark_address,
8694 mark_load, mark_store, pass_build_cgraph_edges::execute): Likewise.
8695 * tree-ssa-live.c (mark_all_vars_used_1, remove_unused_scope_block_p,
8696 remove_unused_locals): Likewise.
8697 * tree-ssa-alias.c (ptr_deref_may_alias_decl_p, ptrs_compare_unequal,
8698 ref_maybe_used_by_call_p_1, call_may_clobber_ref_p_1): Likewise.
8699 * function.c (instantiate_expr, instantiate_decls_1,
8700 setjmp_vars_warning, add_local_decl): Likewise.
8701 * alias.c (ao_ref_from_mem, get_alias_set, compare_base_symbol_refs):
8702 Likewise.
8703 * tree-stdarg.c (find_va_list_reference, va_list_counter_struct_op,
8704 va_list_ptr_read, va_list_ptr_write, check_all_va_list_escapes,
8705 optimize_va_list_gpr_fpr_size): Likewise.
8706 * tree-nrv.c (pass_nrv::execute): Likewise.
8707 * tsan.c (instrument_expr): Likewise.
8708 * tree-ssa-dce.c (remove_dead_stmt): Likewise.
8709 * vtable-verify.c (verify_bb_vtables): Likewise.
8710 * tree-dfa.c (ssa_default_def, set_ssa_default_def,
8711 get_ref_base_and_extent): Likewise.
8712 * toplev.c (wrapup_global_declaration_1, wrapup_global_declaration_2):
8713 Likewise.
8714 * tree-sra.c (static bool constant_decl_p, find_var_candidates,
8715 analyze_all_variable_accesses): Likewise.
8716 * tree-nested.c (get_nonlocal_debug_decl,
8717 convert_nonlocal_omp_clauses, note_nonlocal_vla_type,
8718 note_nonlocal_block_vlas, convert_nonlocal_reference_stmt,
8719 get_local_debug_decl, convert_local_omp_clauses,
8720 convert_local_reference_stmt, nesting_copy_decl, remap_vla_decls):
8721 Likewise.
8722 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Likewise.
8723 * stmt.c (decl_overlaps_hard_reg_set_p): Likewise.
8724 * dbxout.c (dbxout_late_global_decl, dbxout_type_fields,
8725 dbxout_symbol, dbxout_common_check): Likewise.
8726 * expr.c (expand_assignment, expand_expr_real_2, expand_expr_real_1,
8727 string_constant): Likewise.
8728 * hsa.c (hsa_get_declaration_name): Likewise.
8729 * passes.c (rest_of_decl_compilation): Likewise.
8730 * tree-ssanames.c (make_ssa_name_fn): Likewise.
8731 * tree-streamer-out.c (pack_ts_decl_common_value_fields,
8732 pack_ts_decl_with_vis_value_fields,
8733 write_ts_decl_common_tree_pointers): Likewise.
8734 * stor-layout.c (place_field): Likewise.
8735 * symtab.c (symtab_node::maybe_create_reference,
8736 symtab_node::verify_base, symtab_node::make_decl_local,
8737 symtab_node::copy_visibility_from,
8738 symtab_node::can_increase_alignment_p): Likewise.
8739 * dwarf2out.c (add_var_loc_to_decl, tls_mem_loc_descriptor,
8740 decl_by_reference_p, reference_to_unused, rtl_for_decl_location,
8741 fortran_common, add_location_or_const_value_attribute,
8742 add_scalar_info, add_linkage_name, set_block_abstract_flags,
8743 local_function_static, gen_variable_die, dwarf2out_late_global_decl,
8744 optimize_one_addr_into_implicit_ptr,
8745 optimize_location_into_implicit_ptr): Likewise.
8746 * gimple-low.c (record_vars_into): Likewise.
8747 * ipa-visibility.c (update_vtable_references): Likewise.
8748 * tree-ssa-address.c (fixed_address_object_p, copy_ref_info):
8749 Likewise.
8750 * lto-streamer-out.c (tree_is_indexable, get_symbol_initial_value,
8751 DFS::DFS_write_tree_body, write_symbol): Likewise.
8752 * langhooks.c (lhd_warn_unused_global_decl,
8753 lhd_set_decl_assembler_name): Likewise.
8754 * attribs.c (decl_attributes): Likewise.
8755 * except.c (output_ttype): Likewise.
8756 * varpool.c (varpool_node::get_create, ctor_for_folding,
8757 varpool_node::assemble_decl, varpool_node::create_alias): Likewise.
8758 * fold-const.c (fold_unary_loc): Likewise.
8759 * ipa-prop.c (ipa_compute_jump_functions_for_edge,
8760 ipa_find_agg_cst_from_init): Likewise.
8761 * omp-low.c (expand_omp_regimplify_p, expand_omp_taskreg,
8762 expand_omp_target, lower_omp_regimplify_p,
8763 grid_reg_assignment_to_local_var_p, grid_remap_prebody_decls,
8764 find_link_var_op): Likewise.
8765 * tree-chrec.c (chrec_contains_symbols): Likewise.
8766 * tree-cfg.c (verify_address, verify_expr, verify_expr_location_1,
8767 gimple_duplicate_bb, move_stmt_op, replace_block_vars_by_duplicates,
8768 execute_fixup_cfg): Likewise.
8769
8770 PR tree-optimization/77901
8771 * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Only optimize
8772 if ranges[i].exp is SSA_NAME when looking for >= and only when
8773 ranges[i].exp is NULL or SSA_NAME when looking for the other
8774 comparison.
8775
8776 2016-10-09 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
8777
8778 * ipa-cp.c (ipcp_alignment_lattice): Remove.
8779 (ipcp_param_lattices): Remove field alignment.
8780 (print_all_lattices): Remove call to ipcp_alignment_lattice::print.
8781 (set_all_contains_variable): Remove call to
8782 ipcp_alignment_lattice::set_to_bottom.
8783 (initialize_node_lattices): Likewise.
8784 (propagate_alignment_accross_jump_function): Remove.
8785 (propagate_constants_accross_call): Remove call to
8786 propagate_alignment_accross_jump_function.
8787 (ipcp_store_alignment_results): Remove.
8788 (ipcp_driver): Remove call to ipcp_store_alignment_results.
8789 (propagate_bits_accross_jump_function): Handle ancestor jump function.
8790 * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Remove
8791 pretty-printing of alignment jump function.
8792 (ipa_set_jf_unknown): Remove assignment to jfunc->alignment.known.
8793 (ipa_compute_jump_functions_for_edge): Adjust ipa_bits jump function for
8794 alignments and remove computing ipa_alignment jump function.
8795 (ipa_node_params_t::duplicate): Remove copying of src_trans->alignments.
8796 (ipa_write_jump_functions): Remove streaming for ipa_alignment.
8797 (ipa_read_jump_function): Remove reading of ipa_alignment.
8798 (write_ipcp_transformation_info): Remove streaming for alignment
8799 propagation summary.
8800 (read_ipcp_transformation_info): Remove reading of alignment
8801 propagation summary.
8802 (ipcp_update_alignments): Remove.
8803 (ipcp_update_bits): Adjust to set alignment for parameters of pointer
8804 type.
8805 (ipcp_transform_function): Remove call to ipcp_update_alignments()
8806 and remove assignment to (*ipcp_transformations)[node->uid].alignments.
8807 * ipa-prop.h (ipa_alignment): Remove.
8808 (ipa_jump_func): Remove field alignment.
8809 (ipcp_transformation_summary): Remove field alignments.
8810 * doc/invoke.texi: Mark fipa-cp-alignment as obsolete.
8811 * opts.c (default_options_table): Remove entry for fipa-cp-alignment.
8812 (enable_fdo_optimizations): Remove checking for fipa-cp-alignment.
8813
8814 2016-10-08 Eric Botcazou <ebotcazou@adacore.com>
8815
8816 * config/sparc/sparc.h (FIXED_REGISTERS): Add %icc.
8817
8818 * config/visium/visium.c (visium_expand_int_cstore): Revert latest
8819 change.
8820 (visium_expand_fp_cstore): Likewise.
8821
8822 2016-10-08 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
8823
8824 * diagnostic-core.h (warning_at_rich_loc_n): Declare.
8825 * diagnostic.c (warning_at_rich_loc_n): New function.
8826 (diagnostic_n_impl_richloc): Likewise.
8827 (diagnostic_n_impl): Move most of the function to
8828 diagnostic_n_impl_richloc and call it.
8829
8830 2016-10-08 Jakub Jelinek <jakub@redhat.com>
8831
8832 * gen-pass-instances.awk: Rewritten.
8833 * Makefile.in (pass-instances.def): Depend on $(PASSES_EXTRA), pass
8834 $(PASSES_EXTRA) after passes.def to the script.
8835 * config/i386/t-i386 (PASSES_EXTRA): Add i386-passes.def.
8836 * config/i386/i386-passes.def: New file.
8837 * config/i386/i386-protos.h (make_pass_insert_vzeroupper,
8838 make_pass_stv): Declare.
8839 * config/i386/i386.c (pass_stv::pass_stv): Initialize timode_p to
8840 false.
8841 (pass_stv::gate): Depending on timode_p member require TARGET_64BIT
8842 or !TARGET_64BIT.
8843 (pass_stv::clone, pass_stv::set_pass_param): New methods.
8844 (pass_stv::timode_p): New non-static data member.
8845 (ix86_option_override): Don't register passes here.
8846
8847 * doc/invoke.texi: Document accepting Else, fallthrough.
8848
8849 * doc/invoke.texi (-Wimplicit-fallthrough): Document FALLTHRU comment
8850 style changes.
8851
8852 * doc/invoke.texi (-Wimplicit-fallthrough): Document the accepted
8853 FALLTHRU comment styles.
8854
8855 2016-10-07 Andrew Pinski <apinski@cavium.com>
8856
8857 * config/aarch64/aarch64-arches.def (AARCH64_ARCH): #undef at the end.
8858 * config/aarch64/aarch64-cores.def (AARCH64_CORE): Likewise.
8859 * config/aarch64/aarch64-fusion-pairs.def (AARCH64_FUSION_PAIR):
8860 Likewise.
8861 * config/aarch64/aarch64-option-extensions.def (AARCH64_OPT_EXTENSION):
8862 Likewise.
8863 * config/aarch64/aarch64-tuning-flags.def (AARCH64_EXTRA_TUNING_OPTION):
8864 Likewise.
8865 * config/aarch64/aarch64-opts.h (AARCH64_CORE): Don't #undef here.
8866 (AARCH64_ARCH): Likewise.
8867 * common/config/aarch64/aarch64-common.c (AARCH64_OPT_EXTENSION):
8868 Likewise.
8869 (AARCH64_CORE): Likewise.
8870 (AARCH64_ARCH): Likewise.
8871 * config/aarch64/aarch64-protos.h (AARCH64_FUSION_PAIR): Likewise.
8872 (AARCH64_EXTRA_TUNING_OPTION): Likewise.
8873 * config/aarch64/aarch64.c (AARCH64_FUION_PAIR): Likewise.
8874 (AARCH64_EXTRA_TUNING_OPTION): Likewise.
8875 (AARCH64_ARCH): Likewise.
8876 (AARCH64_CORE): Likewise.
8877 * config/aarch64/aarch64.h (AARCH64_CORE): Likewise.
8878 * config/aarch64/driver-aarch64.c (AARCH64_OPT_EXTENSION): Likewise.
8879 (AARCH64_CORE): Likewise.
8880 (AARCH64_ARCH): Likewise.
8881
8882 2016-10-06 Michael Meissner <meissner@linux.vnet.ibm.com>
8883
8884 * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Split
8885 -mfloat128 into -mfloat128-type that enables the IEEE 128-bit
8886 floating point type infrastructre, and -mfloat128 that enables the
8887 keyword. Define __FLOAT128__ if -mfloat128, and __FLOAT128_TYPE__
8888 if -mfloat128-type. Define __ibm128 to be long double by default.
8889 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Print whether
8890 the IEEE 128-bit floating point type infrastructure should
8891 automatically be enabled.
8892 (rs6000_init_hard_regno_mode_ok): Switch to use -mfloat128-type
8893 instead of -mfloat128 to enable KFmode.
8894 (rs6000_option_override_internal): Split the option -mfloat128
8895 into -mfloat128-type and -mfloat128. On Linux PowerPC 64-bit
8896 systems, automatically set -mfloat128-type, but don't enable it on
8897 other operating systems. Move setting the long double size and
8898 IEEE quad support before the IEEE 128-bit floating point changes.
8899 (rs6000_init_builtins): Do not create a unique type for __ibm128
8900 if long double is IBM extended double, instead rely on __ibm128
8901 being defined as 'long double'. If -mfloat128-type and not
8902 -mfloat128, create the KFmode type with an undocumented __ieee128
8903 keyword.
8904 (rs6000_init_libfuncs): Use -mfloat128-type instead of
8905 -mfloat128 for tests about the types, but keep tests for
8906 -mfloat128 to enable the keyword support.
8907 (rs6000_complex_function_value): Likewise.
8908 (rs6000_scalar_mode_supported_p): Likewise.
8909 (rs6000_floatn_mode): Likewise.
8910 (rs6000_c_mode_for_suffix): Likewise.
8911 (rs6000_opt_masks): Add -mfloat128-type.
8912 * config/rs6000/rs6000-cpus.def (POWERPC_MASKS): Add support for
8913 -mfloat128-type being split from -mfloat128. Add
8914 -mfloat128-hardware, which was missing.
8915 * config/rs6000/rs6000.opt (-mfloat128): Split -mfloat128 into
8916 -mfloat128 and -mfloat128-type:
8917 (-mfloat128-type): Likewise.
8918 * config/rs6000/linux64.h (TARGET_FLOAT128_ENABLE_TYPE): Define so
8919 that 64-bit Linux systems with enable -mfloat128-type by default
8920 on VSX systems.
8921 * config/rs6000/rs6000.h (TARGET_FLOAT128_ENABLE_TYPE): Likewise.
8922 (FLOAT128_VECTOR_P): Switch IEEE 128-bit floating points to use
8923 -mfloat128-type instead of -mfloat128.
8924 (FLOAT128_2REG_P): Likewise.
8925 (MASK_FLOAT128_TYPE): Likewise.
8926 (ALTIVEC_ARG_MAX_RETURN): Likewise.
8927 (RS6000_BTM_FLOAT128): Likewise.
8928 (TARGET_FLOAT128): Poison old identifiers.
8929 (OPTION_MASK_FLOAT128): Likewise.
8930 (MASK_FLOAT128): Likewise.
8931 * config/rs6000/rs6000.md (FP): Likewise.
8932 (FLOAT128): Likewise.
8933 (fix_trunc<mode>di2): Likewise.
8934 (fixuns_trunc<IEEE128:mode><SDI:mode>2): Likewise.
8935 (floatdi<mode>2): Likewise.
8936 (floatuns<SDI:mode><IEEE128:mode>2): Likewise.
8937 (neg<mode>2, FLOAT128 iterator): Likewise.
8938 (abs<mode>2, FLOAT128 iterator): Likewise.
8939 (ieee_128bit_negative_zero): Likewise.
8940 (ieee_128bit_vsx_neg<mode>2): Likewise.
8941 (ieee_128bit_vsx_neg<mode>2_internal): Likewise.
8942 (ieee_128bit_vsx_abs<mode>2): Likewise.
8943 (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
8944 (ieee_128bit_vsx_nabs<mode>2): Likewise.
8945 (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
8946 (extendiftf2): Likewise.
8947 (extendifkf2): Likewise.
8948 (extendtfkf2): Likewise.
8949 (trunciftf2): Likewise.
8950 (truncifkf2): Likewise.
8951 (trunckftf2): Likewise.
8952 (trunctfif2): Likewise.
8953 (extendkftf2): Likewise.
8954 (trunctfkf2): Likewise.
8955
8956 2016-10-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
8957
8958 * simplify-rtx.c (simplify_immed_subreg): Zero-initialize tmp array
8959 before merging in bytes to pass down to real_from_target.
8960
8961 2016-10-07 Richard Biener <rguenther@suse.de>
8962
8963 * tree-ssa-propagate.c (replace_phi_args_in): Remove no longer
8964 required hack.
8965 (substitute_and_fold_dom_walker::before_dom_children):
8966 Substitute and fold before pass specific folding to avoid
8967 feeding that with SSA names that will be later released.
8968 * tree-ssa-ccp.c (get_value_for_expr): Guard for new SSA names
8969 introduced by folding and visited by evaluate_stmt called during
8970 ccp_fold_stmt.
8971 (likely_value): Likewise.
8972 (evaluate_stmt): Likewise.
8973 * tree-vrp.c (simplify_truth_ops_using_ranges): Fold modified stmt.
8974 (simplify_div_or_mod_using_ranges): Likewise.
8975 (simplify_min_or_max_using_ranges): Likewise.
8976 (simplify_abs_using_ranges): Likewise.
8977 (simplify_conversion_using_ranges): Likewise.
8978 (simplify_float_conversion_using_ranges): Likewise.
8979 (simplify_stmt_using_ranges): Likewise.
8980
8981 2016-10-07 Marek Polacek <polacek@redhat.com>
8982
8983 * gimplify.c (should_warn_for_implicit_fallthrough): Check for
8984 FALLTHROUGH_LABEL_P here...
8985 (warn_implicit_fallthrough_r): ...not here.
8986
8987 2016-10-07 Bernd Schmidt <bschmidt@redhat.com>
8988
8989 PR tree-optimization/77880
8990 * expr.c (by_pieces_ninsns): Use unsigned HOST_WIDE_INT where
8991 necessary.
8992
8993 2016-10-07 Marek Polacek <polacek@redhat.com>
8994
8995 PR c++/77803
8996 * gimplify.c (last_stmt_in_scope): Add check for FALLTHROUGH ().
8997
8998 2016-10-07 Richard Biener <rguenther@suse.de>
8999
9000 * bitmap.h: Document constraints on bitmap modification while
9001 iterating over it.
9002
9003 2016-10-07 Richard Biener <rguenther@suse.de>
9004
9005 * bitmap.c (bitmap_elem_to_freelist): Set indx to -1.
9006 * bitmap.h (bmp_iter_set): When advancing to the next element
9007 check that we didn't remove the current one.
9008 (bmp_iter_and): Likewise.
9009 (bmp_iter_and_compl): Likewise.
9010 * tree-ssa.c (release_defs_bitset): Do not remove worklist bit
9011 we currently iterate on but keep a one-level queue.
9012 * sched-deps.c (remove_from_deps): Do not clear current bit
9013 but keep a one-level queue.
9014
9015 2016-10-07 Jakub Jelinek <jakub@redhat.com>
9016
9017 PR tree-optimization/77664
9018 * tree-ssa-reassoc.c (update_range_test): Also clear low and high
9019 for the other ranges.
9020 (optimize_range_tests_diff): Fix up formatting.
9021 (optimize_range_tests_var_bound): New function.
9022 (optimize_range_tests): Use it.
9023
9024 2016-10-07 Martin Liska <mliska@suse.cz>
9025
9026 * coverage.c (build_gcov_exit_decl): Fix priority what
9027 should be really 99.
9028
9029 2016-10-07 Richard Biener <rguenther@suse.de>
9030
9031 * gimple-low.c (lower_gimple_bind): Clear DECL_CHAIN of
9032 vars in gimple_bind_vars but not in BLOCK_VARS.
9033
9034 2016-10-07 Richard Biener <rguenther@suse.de>
9035
9036 PR tree-optimization/77879
9037 * tree-ssa-structalias.c (handle_const_call): Properly handle
9038 NRV return slots.
9039 (handle_pure_call): Likewise.
9040
9041 2016-10-06 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
9042
9043 * config/rs6000/rs6000.c (rs6000_elf_asm_out_constructor)
9044 (rs6000_elf_asm_out_destructor): increase size of buf to avoid
9045 possible overflow.
9046
9047 2016-10-06 Andrew Pinski <apinski@cavium.com>
9048
9049 * config/aarch64/aarch64-cores.def: Add a comment before each
9050 set of cores.
9051
9052 2016-10-06 Kugan Vivekanandarajah <kuganv@linaro.org>
9053
9054 PR tree-optimization/77862
9055 * tree-vrp.c (add_equivalence): Use get_value_range so that
9056 num_vr_values is checked before accessing vr_values.
9057
9058 2016-10-06 Kugan Vivekanandarajah <kuganv@linaro.org>
9059
9060 * tree-vrp.c (evrp_dom_walker::before_dom_children): Handle
9061 POINTER_TYPE_P.
9062
9063 2016-10-05 Jeff Law <law@redhat.com>
9064
9065 PR tree-optimization/71661
9066 * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Handle case when
9067 removal of a forwarder exposes a new natural loop.
9068
9069 2016-10-06 Uros Bizjak <ubizjak@gmail.com>
9070
9071 * config/i386/sse.md (andnot<mode>3): Add FALLTHRU comments.
9072 Introduce ssesuffix variable.
9073 (<mask_codefor><code><mode>3<mask_name>): Ditto.
9074 (*<code><mode>3): Ditto.
9075
9076 2016-10-06 Jan Hubicka <hubicka@ucw.cz>
9077
9078 * postreload.c (reload_cse_simplify): Skip also USE when detecting
9079 noop move.
9080
9081 2016-10-06 Richard Biener <rguenther@suse.de>
9082
9083 PR tree-optimization/77855
9084 * tree-ssa-pre.c (prune_clobbered_mems): Queue exprs to remove
9085 instead of removing the current item while iterating over the set
9086 which is not safe.
9087
9088 2016-10-06 James Clarke <jrtc27@jrtc27.com>
9089 Eric Botcazou <ebotcazou@adacore.com>
9090
9091 PR target/77759
9092 * config/sparc/sparc.c (classify_data_t): Remove int_regs field.
9093 (classify_registers): Don't set it
9094 (function_arg_slotno): Don't initialize and test it. Tidy up.
9095
9096 2016-10-06 Richard Biener <rguenther@suse.de>
9097
9098 PR tree-optimization/77839
9099 * tree-ssa-sccvn.c (set_ssa_val_to): Forbid value -> constant value
9100 lattice transition.
9101
9102 2016-10-06 Martin Liska <mliska@suse.cz>
9103
9104 * gcc.c: Set -fprofile-update=atomic when profiling is
9105 enabled and -pthread is set. Warn when one combines
9106 -pthread and -fprofile-update=single for an app using
9107 profiling code.
9108
9109 2016-10-06 Martin Liska <mliska@suse.cz>
9110
9111 PR bootstrap/77788
9112 * expmed.h (mul_highpart_cost_ptr): Add an gcc_assert.
9113 * gimple-ssa-strength-reduction.c (slsr_process_cast):
9114 Initialize a pointer to NULL.
9115 (slsr_process_copy): Likewise.
9116 * input.c (location_get_source_line): Likewise.
9117 * tree-ssa-ccp.c (optimize_atomic_bit_test_and): Likewise.
9118
9119 2016-10-05 Andrew Senkevich <andrew.senkevich@intel.com>
9120
9121 * common/config/i386/i386-common.c (OPTION_MASK_ISA_PCOMMIT_UNSET,
9122 OPTION_MASK_ISA_PCOMMIT_SET): Deleted definitions.
9123 (ix86_handle_option): Deleted handle of OPT_mpcommit.
9124 * config.gcc: Deleted pcommitintrin.h
9125 * config/i386/pcommitintrin.h: Deleted file.
9126 * config/i386/cpuid.h (bit_PCOMMIT): Deleted.
9127 * config/i386/driver-i386.c (host_detect_local_cpu): Deleted pcommit
9128 detection.
9129 * config/i386/i386-c.c (ix86_target_macros_internal): Deleted define
9130 __PCOMMIT__.
9131 * config/i386/i386.c (ix86_target_string): Deleted -mpcommit.
9132 (PTA_PCOMMIT): Deleted define.
9133 (ix86_option_override_internal): Deleted handle of option.
9134 (ix86_valid_target_attribute_inner_p): Deleted pcommit.
9135 * config/i386/i386-builtin.def (IX86_BUILTIN_PCOMMIT,
9136 __builtin_ia32_pcommit): Deleted.
9137 * config/i386/i386.h (TARGET_PCOMMIT, TARGET_PCOMMIT_P): Deleted.
9138 * config/i386/i386.md (unspecv): Deleted UNSPECV_PCOMMIT.
9139 (pcommit): Deleted instruction.
9140 * config/i386/i386.opt: Mention -mpcommit deprecation.
9141 * config/i386/x86intrin.h: Deleted inclusion of pcommitintrin.h.
9142
9143 2016-10-05 Uros Bizjak <ubizjak@gmail.com>
9144
9145 PR target/77874
9146 * config/i386/sse.md (<mask_codefor><code><mode>3<mask_name>):
9147 Remove wrong assert.
9148 (<floatsuffix>float<sseintvecmodelower><mode>2<mask_name><round_name>:
9149 Use <round_constraint> as operand 1 constraint.
9150
9151 2016-10-05 Jakub Jelinek <jakub@redhat.com>
9152
9153 PR sanitizer/66343
9154 * ubsan.c (ubsan_create_data): Call initialize_sanitizer_builtins here.
9155 (ubsan_instrument_float_cast): And not here.
9156
9157 PR sanitizer/66343
9158 * ubsan.c (ubsan_ids): New GTY(()) array.
9159 (ubsan_type_descriptor, ubsan_create_data): Use ubsan_ids
9160 instead of static local counters.
9161
9162 2016-10-05 Martin Sebor <msebor@redhat.com>
9163
9164 PR bootstrap/77819
9165 * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Define macro.
9166 * config/linux.c (gnu_libc_printf_pointer_format): Remove.
9167 * targhooks.c [DEFAULT_LIBC == LIBC_UCLIBC) && SINGLE_LIBC]
9168 (default_printf_pointer_format): Define function.
9169 * targhooks.c (linux_printf_pointer_format): Define new function.
9170 * targhooks.h (linux_printf_pointer_format): Declare.
9171 (gnu_libc_printf_pointer_format): Remove declaration.
9172
9173 2016-10-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9174
9175 * fold-const.c (native_encode_real): Fix logic for selecting offset
9176 to write to when BYTES_BIG_ENDIAN.
9177
9178 2016-10-05 Wilco Dijkstra <wdijkstr@arm.com>
9179
9180 * builtins.c (fold_builtin_strchr): Remove function.
9181 (fold_builtin_strrchr): Likewise.
9182 (fold_builtin2): Remove strchr, index, strrchr, rindex cases.
9183 * gimple-fold.c (target_char_cst_p): New function.
9184 (gimple_fold_builtin_strchr) Add more foldings.
9185 (gimple_fold_builtin): Add index, strrchr, rindex cases.
9186
9187 2016-10-05 Richard Biener <rguenther@suse.de>
9188
9189 PR middle-end/77863
9190 * genmatch.c (capture_info::walk_c_expr): Diagnose unknown
9191 capture ids in c-exprs.
9192
9193 2016-10-05 Richard Biener <rguenther@suse.de>
9194
9195 PR middle-end/77826
9196 * genmatch.c (dt_operand::gen_match_op): Amend operand_equal_p
9197 with types_match for GIMPLE code gen to handle type mismatched
9198 constants properly.
9199 (dt_operand::gen): Adjust.
9200 * match.pd ((X /[ex] A) * A -> X): Properly handle converted
9201 and constant A.
9202
9203 2016-10-05 Richard Biener <rguenther@suse.de>
9204
9205 * match.pd (copysign(x, CST) -> [-]abs (x)): New pattern.
9206
9207 2016-10-05 Richard Biener <rguenther@suse.de>
9208
9209 PR middle-end/77842
9210 * genmatch.c (parser::parse_c_expr): Handle premature EOF.
9211
9212 2016-10-05 Pierre-Marie de Rodat <derodat@adacore.com>
9213
9214 * dwarf2out.c (dwarf2out_imported_module_or_decl): Move DWARF
9215 version check to protect only DW_TAG_imported_module generation.
9216
9217 2016-10-05 Richard Biener <rguenther@suse.de>
9218
9219 PR middle-end/55152
9220 * match.pd (min(a,-a) -> -abs(a)): New pattern.
9221
9222 2016-10-04 Ian Lance Taylor <iant@golang.org>
9223
9224 * explow.c (allocate_dynamic_stack_space): Call
9225 do_pending_stack_adjust before handling flag_split_stack.
9226
9227 2016-10-04 David Malcolm <dmalcolm@redhat.com>
9228
9229 * genattrtab.c (make_internal_attr): Supply dummy column number to
9230 file_location ctor.
9231 (main): Likewise.
9232 * genoutput.c (init_insn_for_nothing): Likewise.
9233 * gensupport.c (add_define_attr): Likewise.
9234 * read-md.c (message_at_1): Print column number.
9235 (fatal_with_file_and_line): Likewise.
9236 (rtx_reader::read_char): Track column numbers.
9237 (rtx_reader::unread_char): Likewise.
9238 (rtx_reader::rtx_reader): Initialize m_read_md_colno.
9239 (rtx_reader::handle_include): Stash and restore m_read_md_colno.
9240 (rtx_reader::handle_file): Initialize m_read_md_colno.
9241 (rtx_reader::get_current_location): Supply column number to
9242 file_location ctor.
9243 * read-md.h (struct file_location): Add field "colno".
9244 (file_location::file_location): Likewise.
9245 (rtx_reader::get_colno): New accessor.
9246 (rtx_reader::m_read_md_colno): New field.
9247 (rtx_reader::m_last_line_colno): New field.
9248
9249 2016-10-04 Jakub Jelinek <jakub@redhat.com>
9250
9251 * doc/extend.texi (Java Exceptions): Remove.
9252 (java_interface): Remove.
9253
9254 2016-10-04 Doug Gilmore <doug.gilmore@imgtec.com>
9255
9256 PR tree-optimization/77808
9257 * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Check base_addr
9258 and addr are different before copying points-to information.
9259
9260 2016-10-04 Uros Bizjak <ubizjak@gmail.com>
9261
9262 * config/i386/x86-tune.def (X86_TUNE_VECTORIZE_DOUBLE): Remove.
9263 * config/i386/i386.h (TARGET_VECTORIZE_DOUBLE): Remove.
9264 * config/i386/i386.c (ix86_add_stmt_cost): Use TARGET_BONNEL instead
9265 of !TARGET_VECTORIZE_DOUBLE when penalizing DFmode vector ops.
9266
9267 2016-10-04 Richard Biener <rguenther@suse.de>
9268
9269 PR tree-optimization/77399
9270 * tree-ssa-forwprop.c (simplify_vector_constructor): Properly
9271 verify the target can convert.
9272
9273 2016-10-04 Richard Biener <rguenther@suse.de>
9274
9275 PR middle-end/77833
9276 * explow.c (plus_constant): Verify the mode of the constant
9277 pool offset before calling plus_constant.
9278
9279 2016-10-04 Richard Biener <rguenther@suse.de>
9280
9281 PR middle-end/77407
9282 * match.pd (X / abs (X) -> X < 0 ? -1 : 1): Drop vector
9283 type support, mark with :C.
9284 (X / -X -> -1): Mark with :C.
9285
9286 2016-10-04 Jakub Jelinek <jakub@redhat.com>
9287
9288 * defaults.h (JCR_SECTION_NAME, TARGET_USE_JCR_SECTION): Remove.
9289 * system.h (JCR_SECTION_NAME, TARGET_USE_JCR_SECTION): Poison.
9290 * doc/tm.texi.in (TARGET_USE_JCR_SECTION): Remove.
9291 * doc/tm.texi: Regenerated.
9292 * config/i386/mingw32.h (TARGET_USE_JCR_SECTION): Remove.
9293 * config/i386/cygming.h (TARGET_USE_JCR_SECTION): Remove.
9294 * config/darwin.h (JCR_SECTION_NAME): Remove.
9295 * config/pa/pa64-hpux.h (JCR_SECTION_NAME): Remove.
9296 * config/rs6000/aix71.h (TARGET_USE_JCR_SECTION): Remove.
9297 * config/rs6000/aix51.h (TARGET_USE_JCR_SECTION): Remove.
9298 * config/rs6000/aix52.h (TARGET_USE_JCR_SECTION): Remove.
9299 * config/rs6000/aix53.h (TARGET_USE_JCR_SECTION): Remove.
9300 * config/rs6000/aix61.h (TARGET_USE_JCR_SECTION): Remove.
9301
9302 2016-10-03 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
9303
9304 * ipa-cp.c (propagate_bits_accross_jump_function): Introduce space
9305 between "because" and "param" in dump message in call to fprintf.
9306
9307 2016-10-03 Jeff Law <law@redhat.com>
9308
9309 PR tree-optimization/71550
9310 PR tree-optimization/71403
9311 * tree-ssa-threadbackward.c: Include tree-vectorizer.h
9312 (profitable_jump_thread_path): Also return boolean indicating if
9313 the realized path will create an irreducible loop.
9314 Remove loop depth tests from 71403.
9315 (fsm_find_control_statement_thread_paths): Remove loop depth tests
9316 from 71403. If threading will create an irreducible loop, then
9317 throw away loop iteration and related information.
9318
9319 2016-10-03 Uros Bizjak <ubizjak@gmail.com>
9320
9321 * configure.ac (strict_warn): Merge -Wmissing-format-attribute and
9322 -Woverloaded-virtual checks for warning options.
9323 * configure: Regenerate.
9324
9325 2016-10-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
9326
9327 PR preprocessor/77699
9328 * input.c (maybe_grow): Don't allocate one byte extra headroom.
9329 (get_next_line): Return false on error.
9330 (read_next_line): Removed, use get_next_line instead.
9331 (read_line_num): Don't copy the line.
9332 (location_get_source_line): Don't use static data.
9333 (selftest::test_reading_source_line): Add more test cases.
9334
9335 2016-10-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9336
9337 Revert
9338 2016-09-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9339
9340 * ifcvt.c (noce_try_avoid_const_materialization): New function.
9341 (noce_process_if_block): Use it.
9342
9343 2016-10-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
9344
9345 * doc/invoke.texi: Update -Wint-in-bool-context.
9346
9347 2016-10-02 Jakub Jelinek <jakub@redhat.com>
9348
9349 * dwarf2out.c (output_fde, output_call_frame_info,
9350 dwarf2out_do_cfi_startproc, set_indirect_string,
9351 gen_internal_sym, output_die, output_line_info): Use
9352 MAX_ARTIFICIAL_LABEL_BYTES as char array sizes for
9353 ASM_GENERATE_INTERNAL_LABEL output.
9354
9355 2016-10-01 Richard Biener <rguenther@suse.de>
9356
9357 PR middle-end/77798
9358 * genmatch.c (get_operand_type): Add operand position arg
9359 and handle COND_EXPR comparison operand with fixed boolean_type_node.
9360 (expr::gen_transform): Adjust.
9361 (dt_simplify::gen_1): Likewise.
9362
9363 2016-10-01 Jakub Jelinek <jakub@redhat.com>
9364
9365 * config/i386/sse.md (<mask_codefor><code><mode>): Add FALLTHRU
9366 comments. Simplify asserts, remove unnecessary conditions.
9367 Formatting fixes.
9368 (*<code><mode>3): Likewise.
9369
9370 2016-09-30 Jakub Jelinek <jakub@redhat.com>
9371
9372 * doc/invoke.texi (-Wregister): Document.
9373
9374 2016-09-30 Bernd Edlinger <bernd.edlinger@hotmail.de>
9375
9376 * configure.ac: Split CHECKING_P into CHECKING_P and
9377 ENABLE_EXTRA_CHECKING.
9378 * configure: Regenerated.
9379 * config.in: Adjust commment of CHECKING_P. Add ENABLE_EXTRA_CHECKING.
9380 * common.opt (flag_checking): Use CHECKING_P and ENABLE_EXTRA_CHECKING.
9381
9382 2016-09-30 Prasad Ghangal <prasad.ghangal@gmail.com>
9383
9384 PR other/31566
9385 * gcc.c (process_command): For @filename handling, output
9386 the correct name if the file does not exist.
9387
9388 2016-09-30 Marek Polacek <polacek@redhat.com>
9389
9390 * config/aarch64/aarch64-simd.md: Adjust fall through comments.
9391 * config/alpha/predicates.md: Likewise.
9392
9393 2016-09-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9394
9395 * ifcvt.c (noce_try_avoid_const_materialization): New function.
9396 (noce_process_if_block): Use it.
9397
9398 2016-09-30 Martin Liska <mliska@suse.cz>
9399
9400 * doc/invoke.texi: Document asan-use-after-return that
9401 it's disabled by default in runtime.
9402
9403 2016-09-30 Richard Biener <rguenther@suse.de>
9404
9405 * tree-vrp.c (intersect_ranges): If we failed to handle
9406 the intersection choose a constant singleton range if available.
9407
9408 2016-09-30 Richard Biener <rguenther@suse.de>
9409
9410 PR tree-optimization/77399
9411 * tree-ssa-forwprop.c (simplify_vector_constructor): Handle
9412 float <-> int conversions.
9413
9414 2016-09-30 Alan Modra <amodra@gmail.com>
9415
9416 * config/rs6000/rs6000.c (rs6000_opt_vars): Revert last change.
9417
9418 2016-09-29 Uros Bizjak <ubizjak@gmail.com>
9419
9420 * config/i386/driver-i386.c (host_detect_local_cpu): Check maximum
9421 ext_level before calling CPUID with 0x80000008.
9422 Simplify xgetbv checks.
9423
9424 2016-09-29 David Malcolm <dmalcolm@redhat.com>
9425
9426 * Makefile.in (OBJS): Add print-rtl-function.o.
9427 * print-rtl-function.c: New file.
9428 * print-rtl.h (print_rtx_function): New decl.
9429
9430 2016-09-29 Uros Bizjak <ubizjak@gmail.com>
9431
9432 PR target/77756
9433 * config/i386/cpuid.h (__get_cpuid_count): New.
9434 (__get_cpuid): Rename __level to __leaf.
9435
9436 2016-09-29 Marek Polacek <polacek@redhat.com>
9437
9438 * genattrtab.c (write_attr_case): Also emit FALLTHRU marker.
9439
9440 2016-09-29 Bernd Schmidt <bschmidt@redhat.com>
9441
9442 PR target/77718
9443 * builtins.c (expand_builtin_memcmp): Don't swap args unless
9444 result is only being compared with zero.
9445
9446 2016-09-29 Marek Polacek <polacek@redhat.com>
9447
9448 * dwarf2out.c (loc_descriptor): Add fall through comment.
9449 (add_const_value_attribute): Likewise.
9450
9451 2016-09-29 Matthew Wahab <matthew.wahab@arm.com>
9452
9453 * config/arm/arm.md (*arm_movsi_insn): Replace "t2" arch attribute
9454 with "v6t2". Move "arch" attribute above "pool_range".
9455 * config/arm/vfp.md (*arm_movhi_vfp): Replace "t2" arch attribute
9456 with "v6t2".
9457 (*thumb2_movhi_vfp): Likewise.
9458 (*arm_movhi_fp16): Likewise.
9459 (*thumb2_movhi_fp16): Likewise.
9460 (*arm_movsi_vfp): Remove "arch" attribute.
9461 (*thumb2_movsi_vfp): Likewise.
9462
9463 2016-09-29 Martin Liska <mliska@suse.cz>
9464
9465 * doc/extend.texi: Remove limitation of Objective C for
9466 __attribute__((constructor)) and __attribute__((destructor)).
9467
9468 2016-09-29 Richard Biener <rguenther@suse.de>
9469
9470 PR tree-optimization/77768
9471 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
9472 Handle stores to readonly memory when removing redundant stores.
9473
9474 2016-09-29 Richard Biener <rguenther@suse.de>
9475
9476 PR middle-end/77407
9477 * match.pd: Add X / abs (X) -> X < 0 ? -1 : 1 and
9478 X / -X -> -1 simplifications.
9479
9480 2016-09-29 Richard Biener <rguenther@suse.de>
9481
9482 PR middle-end/55152
9483 * match.pd: Add max(a,-a) -> abs(a) pattern.
9484 * tree-ssa-phiopt.c (minmax_replacement): Disable for
9485 HONOR_SIGNED_ZEROS types.
9486
9487 2016-09-29 James Greenhalgh <james.greenhalgh@arm.com>
9488
9489 * defaults.h (TARGET_FLT_EVAL_METHOD_NON_DEFAULT): Remove.
9490 * system.h (TARGET_FLT_EVAL_METHOD_NON_DEFAULT): Poison.
9491
9492 2016-09-29 Richard Biener <rguenther@suse.de>
9493
9494 * tree-vrp.c (set_defs_to_varying): New helper avoiding
9495 writing to vr_const_varying.
9496 (vrp_initialize): Call it.
9497 (vrp_visit_stmt): Likewise.
9498 (evrp_dom_walker::before_dom_children): Likewise.
9499
9500 2016-09-29 Richard Biener <rguenther@suse.de>
9501
9502 * tree-vect-stmts.c (vectorizable_load): Avoid emitting vector
9503 constructors with vector elements.
9504
9505 2016-09-29 Richard Biener <rguenther@suse.de>
9506
9507 PR tree-optimization/77768
9508 * tree-ssa-sccvn.c (visit_reference_op_store): Properly deal
9509 with stores to a place we know has a constant value.
9510
9511 2016-09-29 Alan Modra <amodra@gmail.com>
9512
9513 * config/rs6000/sysv4.opt (mgnu-attribute): New option.
9514 * doc/invoke.texi: Document it.
9515 * config/rs6000/rs6000.c (HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE): Define.
9516 (rs6000_passes_float): Comment.
9517 (rs6000_passes_long_double): New static var.
9518 (call_ABI_of_interest): Return false unless rs6000_gnu_attr is set.
9519 (init_cumulative_args): Set up to emit fp .gnu_attribute for
9520 ELF 64-bit ABIs as well as 32-bit ELF. Correct rs6000_passes_float
9521 to include fp values returned in vectors.
9522 Set rs6000_passes_long_double.
9523 (rs6000_function_arg_advance_1): Likewise for function args.
9524 (rs6000_elf_file_end): Emit fp .gnu_attribute for ELF 64-bit ABIs,
9525 and SPE. Emit long double tag value too.
9526 (rs6000_opt_vars): Add gnu-attr.
9527 * configure.ac (HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE): New ppc32 test.
9528 * configure: Regenerate.
9529 * config.in: Regenerate.
9530
9531 2016-09-28 Jakub Jelinek <jakub@redhat.com>
9532
9533 * gimple-ssa-sprintf.c (pass_sprintf_length::gate): Use x > 0 instead
9534 of 0 < x.
9535 (format_floating, format_string, format_directive,
9536 get_destination_size, pass_sprintf_length::handle_gimple_call):
9537 Likewise.
9538
9539 2016-09-28 Jakub Jelinek <jakub@redhat.com>
9540
9541 * gimple-ssa-sprintf.c: Fix comment formatting.
9542 (format_integer): Use is_gimple_assign.
9543 (pass_sprintf_length::handle_gimple_call): Use gimple_call_builtin_p
9544 and gimple_call_fndecl. Reorder case BUILT_IN_SPRINTF_CHK. Fix up
9545 BUILT_IN_SNPRINTF_CHK comment. Replace "to to" with "to" in comment.
9546 (pass_sprintf_length::execute): Use is_gimple_call.
9547
9548 2016-09-28 Wilco Dijkstra <wdijkstr@arm.com>
9549
9550 * gimple-fold.c (gimple_fold_builtin): After failing to fold
9551 strchr, also try the generic folding.
9552
9553 2016-09-28 Martin Sebor <msebor@redhat.com>
9554
9555 PR c/77762
9556 * gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call):
9557 Fix typos.
9558
9559 2016-09-28 Martin Sebor <msebor@redhat.com>
9560
9561 PR middle-end/77683
9562 * gimple-ssa-sprintf.c (format_integer): Fail gracefully when
9563 length modifier is not expected.
9564 (format_floating): Ignore l length modifier and fail gracefuly
9565 when it isn't one of the other expected ones.
9566
9567 2016-09-28 Martin Sebor <msebor@redhat.com>
9568
9569 PR bootstrap/77753
9570 * varasm.c (assemble_addr_to_section): Increase local buffer size.
9571
9572 2016-09-27 Richard Biener <rguenther@suse.de>
9573
9574 * dwarf2out.c (cu_die_list): New global.
9575 (dwarf2out_finish): Walk cu_die_list instead of limbo DIEs. Add
9576 main_comp_unit_die to cu_die_list if we created it.
9577 Move break_out_includes ...
9578 (dwarf2out_early_finish): ... here. Push created CU DIEs onto
9579 the cu_die_list.
9580
9581 2016-09-28 Richard Biener <rguenther@suse.de>
9582
9583 * dwarf2out.c (struct die_struct): Add removed flag.
9584 (lookup_type_die): If the DIE is marked as removed, clear
9585 TYPE_SYMTAB_DIE and return NULL.
9586 (lookup_decl_die): If the DIE is marked as removed, remove it
9587 from the hash and return NULL.
9588 (mark_removed): New helper.
9589 (prune_unused_types_prune): Call it for removed DIEs.
9590 (gen_subprogram_die): Move the premark_used_types call to after
9591 DIEs for the functions scopes are generated.
9592 (process_scope_var): Do not re-create pruned types or type decls.
9593 Make sure to also re-parent type decls.
9594 (dwarf2out_finish): Move unused type pruning and debug_types
9595 handling ...
9596 (dwarf2out_early_finish): ... here.
9597
9598 2016-09-29 Claudiu Zissulescu <claziss@synopsys.com>
9599
9600 * config/arc/arc-c.c: New file.
9601 * config/arc/arc-c.def: Likewise.
9602 * config/arc/t-arc: Likewise.
9603 * config.gcc: Include arc-c.o as c and cpp object.
9604 * config/arc/arc-protos.h (arc_cpu_cpp_builtins): Add prototype.
9605 * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Use
9606 arc_cpu_cpp_builtins.
9607
9608 2016-09-29 Claudiu Zissulescu <claziss@synopsys.com>
9609
9610 * config/arc/arc.md (*rotrsi3_cnt1): New pattern.
9611 (*ashlsi2_cnt1, *lshrsi3_cnt1, *ashrsi3_cnt1): Likewise.
9612
9613 2016-09-28 Nathan Sidwell <nathan@acm.org>
9614
9615 * gimple-pretty-print.c (dump_gimple_call_args): Simplify "' "
9616 printing.
9617
9618 2016-09-28 Wilco Dijkstra <wdijkstr@arm.com>
9619
9620 PR tree-optimization/61056
9621 * gimple-fold.c (gimple_fold_builtin_strchr):
9622 New function to optimize strchr (s, 0) to strlen.
9623 (gimple_fold_builtin): Add BUILT_IN_STRCHR case.
9624
9625 2016-09-27 Robin Dapp <rdapp@linux.vnet.ibm.com>
9626
9627 PR tree-optimization/77724
9628 * tree-vect-loop-manip.c (create_intersect_range_checks_index):
9629 Add tree_fits_shwi_p check.
9630
9631 2016-09-27 Jakub Jelinek <jakub@redhat.com>
9632
9633 * auto-inc-dec.c (try_merge): Remove break after return.
9634 * cselib.c (autoinc_split): Likewise.
9635 * explow.c (promote_mode): Likewise.
9636 * fixed-value.c (fixed_arithmetic): Likewise.
9637 * hsa.c (hsa_internal_fn::get_arity): Likewise.
9638 * rtlanal.c (modified_between_p, modified_in_p): Likewise.
9639 * trans-mem.c (get_attrs_for): Likewise.
9640 * tree-if-conv.c (if_convertible_stmt_p): Likewise.
9641 * tree-vrp.c (simplify_stmt_using_ranges): Likewise.
9642 * config/aarch64/aarch64-builtins.c (aarch64_fold_builtin): Likewise.
9643 * config/aarch64/aarch64.c (aarch64_get_condition_code_1): Likewise.
9644 * config/c6x/c6x.c (c6x_get_unit_specifier): Likewise.
9645 * config/cr16/cr16.c (legitimate_pic_operand_p): Likewise.
9646 * config/cris/cris.c (cris_op_str): Likewise.
9647 * config/mn10300/mn10300.c (cc_flags_for_code): Likewise.
9648 * config/tilepro/tilepro.c (tilepro_emit_setcc_internal_di): Likewise.
9649
9650 2016-09-27 Nathan Sidwell <nathan@codesourcery.com>
9651
9652 * internal-fn.h (IFN_UNIQUE_CODES, IFN_GOACC_LOOP_CODES,
9653 IFN_GOACC_REDUCTION_CODES): New.
9654 (enum ifn_unique_kind, enum ifn_goacc_loop_kind, enum
9655 ifn_goacc_reduction_kind): Use them.
9656 * gimple-pretty-print.c (dump_gimple_call_args): Decode first arg
9657 of internal functions, when applicable.
9658
9659 2016-09-27 Maciej W. Rozycki <macro@imgtec.com>
9660
9661 * config/mips/constraints.md (d): Fix documentation.
9662 * doc/md.texi (Machine Constraints): Update accordingly.
9663
9664 2016-09-27 Richard Biener <rguenther@suse.de>
9665
9666 * dwarf2out.c (dwarf2out_init): Move text_section_line_info,
9667 cur_line_info_table initialization ...
9668 (dwarf2out_assembly_start): ... here.
9669
9670 2016-09-27 Matthew Wahab <matthew.wahab@arm.com>
9671
9672 * config/arm/arm.md (*arm_movsi_insn): Add "arch" attribute.
9673 * config/arm/vfp.md (*arm_movhi_vfp): Likewise.
9674 (*thumb2_movhi_vfp): Likewise.
9675 (*arm_movhi_fp16): Remove predication operand from VMOV.F16
9676 template. Expand predicable attribute to mark VMOV.F16 as not
9677 predicable. Add "arch" attribute.
9678 (*thumb2_movhi_fp16): Likewise.
9679 (*arm_movsi_vfp): Break a long line. Add "arch" attribute.
9680 (*thumb2_movsi_vfp): Add "arch" attribute.
9681
9682 2016-09-27 David Edelsohn <dje.gcc@gmail.com>
9683
9684 * config/rs6000/rs6000.c (rs6000_output_symbol): Don't modify
9685 VAR_DECL string.
9686
9687 2016-09-27 Marek Polacek <polacek@redhat.com>
9688
9689 * config/ia64/ia64.c (ia64_print_operand): Adjust fall through
9690 comment.
9691
9692 * config/c6x/c6x.h: Adjust fall through comment.
9693 * config/sh/sh.c (final_prescan_insn): Likewise.
9694 * config/visium/visium.c (visium_expand_int_cstore): Likewise.
9695 (visium_expand_fp_cstore): Likewise.
9696
9697 2016-09-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9698
9699 * config/arm/arm.c (const_ok_for_op): Use "Fall through" comment form
9700 expected by -Wimplicit-fallthrough.
9701 (thumb1_size_rtx_costs): Likewise.
9702 (thumb2_reorg): Likewise.
9703 (tls_mentioned_p): Add "Fall through" comment.
9704 (thumb2_reorg): Likewise.
9705 * config/arm/arm-builtins.c (arm_expand_neon_args): Use "Fall through"
9706 comment form expected by -Wimplicit-fallthrough.
9707
9708 2016-09-27 Martin Liska <mliska@suse.cz>
9709
9710 PR gcov-profile/46266
9711 * input.h (RESERVED_LOCATION_P): New macro.
9712 * profile.c (branch_prob): Use RESERVED_LOCATION_P and
9713 instread of comparison with UNKNOWN_LOCATION.
9714
9715 2016-09-27 Richard Biener <rguenther@suse.de>
9716
9717 PR tree-optimization/77745
9718 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
9719 When removing redundant stores make sure to check compatibility
9720 of the TBAA state for downstream accesses.
9721 * tree-ssa-sccvn.c (visit_reference_op_store): Likewise for when
9722 value-numbering virtual operands for store matches.
9723
9724 2016-09-27 Oleg Endo <olegendo@gcc.gnu.org>
9725
9726 PR target/51244
9727 * config/sh/sh.c (sh_rtx_costs): Fix return value of SET of movt and
9728 movrt patterns. Match them before anything else in the SET case.
9729
9730 2016-09-27 Martin Liska <mliska@suse.cz>
9731
9732 PR gcov-profile/7970
9733 PR gcov-profile/16855
9734 PR gcov-profile/44779
9735 * coverage.c (build_gcov_exit_decl): New function.
9736 (coverage_obj_init): Call the function and generate __gcov_exit
9737 destructor.
9738 * doc/gcov.texi: Document when __gcov_exit function is called.
9739
9740 2016-09-27 Marek Polacek <polacek@redhat.com>
9741
9742 PR bootstrap/77751
9743 * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
9744 insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Use
9745 -Wno-error instead of -Wno-implicit-fallthrough.
9746
9747 2016-09-27 Martin Liska <mliska@suse.cz>
9748
9749 PR bootstrap/77749
9750 * gcov-counter.def: Remove GCOV_COUNTER_V_DELTA.
9751
9752 2016-09-27 Jakub Jelinek <jakub@redhat.com>
9753
9754 * combine.c (simplify_comparison): Add canonical FALLTHROUGH comments.
9755 * config/i386/i386.c (ix86_dep_by_shift_count_body): Add FALLTHROUGH
9756 comments. Remove break after return.
9757 (ix86_fp_compare_code_to_integer, has_dispatch,
9758 ix86_simd_clone_usable): Remove break after return.
9759
9760 2016-09-27 Bernd Edlinger <bernd.edlinger@hotmail.de>
9761
9762 PR rlt-optimization/77714
9763 * lra-eliminations.c (eliminate_regs_in_insn): Avoid alias on
9764 REG_EQUAL note.
9765
9766 2016-09-27 Kugan Vivekanandarajah <kuganv@linaro.org>
9767
9768 PR ipa/77677
9769 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Use
9770 extract_range_from_unary_expr to convert value_range.
9771 * tree-vrp.c (extract_range_from_unary_expr_1): Rename to.
9772 (extract_range_from_unary_expr): This.
9773 * tree-vrp.h (extract_range_from_unary_expr): Declare.
9774
9775 2016-09-27 Segher Boessenkool <segher@kernel.crashing.org>
9776
9777 * config/rs6000/rs6000.md (movcc_internal1): Disparage using CTR or LR.
9778
9779 2016-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9780
9781 * config/i386/i386.c (ix86_print_operand)
9782 [HAVE_AS_IX86_CMOV_SUN_SYNTAX]: Add gcc_fallthrough.
9783 * config/sparc/sparc.c (check_pic): Add fallthrough comment.
9784 (epilogue_renumber): Likewise.
9785
9786 2016-09-26 Kugan Vivekanandarajah <kuganv@linaro.org>
9787
9788 PR middle-end/77719
9789 * tree-ssa-reassoc.c (make_new_ssa_for_def): Use gimple_get_lhs
9790 to get lhs instead of gimple_assign_lhs as stmt can be builtins too.
9791
9792 2016-09-26 Thomas Preud'homme <thomas.preudhomme@arm.com>
9793
9794 * tree.h (memmodel_from_int, memmodel_base, is_mm_relaxed,
9795 is_mm_consume, is_mm_acquire, is_mm_release, is_mm_acq_rel,
9796 is_mm_seq_cst, is_mm_sync): Move to ...
9797 * memmodel.h: This. New file.
9798 * builtins.c: Include memmodel.h.
9799 * optabs.c: Likewise.
9800 * tsan.c: Likewise.
9801 * config/aarch64/aarch64.c: Likewise.
9802 * config/alpha/alpha.c: Likewise.
9803 * config/arm/arm.c: Likewise.
9804 * config/i386/i386.c: Likewise.
9805 * config/ia64/ia64.c: Likewise.
9806 * config/mips/mips.c: Likewise.
9807 * config/rs6000/rs6000.c: Likewise.
9808 * config/sparc/sparc.c: Likewise.
9809 * genconditions.c: Include memmodel.h in generated file.
9810 * genemit.c: Likewise.
9811 * genoutput.c: Likewise.
9812 * genpeep.c: Likewise.
9813 * genpreds.c: Likewise.
9814 * genrecog.c: Likewise.
9815
9816 2016-09-26 David Malcolm <dmalcolm@redhat.com>
9817
9818 * read-rtl.c (read_rtx_code): Rename local "i" to "idx", and use
9819 "c" instead when parsing characters. Move operand parsing into...
9820 (read_rtx_operand): ...this new function, renaming "i" to "idx",
9821 and tightening the scope of various locals.
9822
9823 2016-09-26 Liu Hao <lh_mouse@126.com>
9824
9825 * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Fix typo.
9826
9827 2016-09-26 Marek Polacek <polacek@redhat.com>
9828
9829 * system.h: Use __has_attribute to check whether the fallthrough
9830 attribute is supported.
9831
9832 2016-09-26 Marek Polacek <polacek@redhat.com>
9833
9834 * ipa-inline-analysis.c (find_foldable_builtin_expect): Use
9835 gimple_call_internal_p.
9836 * ipa-split.c (find_return_bb): Likewise.
9837 (execute_split_functions): Likewise.
9838 * omp-low.c (dump_oacc_loop_part): Likewise.
9839 (oacc_loop_xform_head_tail): Likewise.
9840 * predict.c (predict_loops): Likewise.
9841 * sanopt.c (pass_sanopt::execute): Likewise.
9842 * tree-cfg.c (get_abnormal_succ_dispatcher): Likewise.
9843 * tree-parloops.c (oacc_entry_exit_ok_1): Likewise.
9844 * tree-stdarg.c (gimple_call_ifn_va_arg_p): Remove function.
9845 (expand_ifn_va_arg_1): Use gimple_call_internal_p.
9846 (expand_ifn_va_arg): Likewise.
9847 * tree-vect-loop.c (vect_determine_vectorization_factor): Likewise.
9848 (optimize_mask_stores): Likewise.
9849 * tree-vect-stmts.c (vect_simd_lane_linear): Likewise.
9850 (vect_transform_stmt): Likewise.
9851 * tree-vectorizer.c (vect_loop_vectorized_call): Likewise.
9852 * tsan.c (instrument_memory_accesses): Likewise.
9853
9854 2016-09-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9855 Alexander Monakov <amonakov@ispras.ru>
9856
9857 * regrename.c (rename_chains): Check
9858 HARD_FRAME_POINTER_IS_FRAME_POINTER rather than
9859 HARD_FRAME_POINTER_REGNUM when picking unavailable registers.
9860 * sel-sched.c (mark_unavailable_hard_regs): Likewise.
9861
9862 2016-09-26 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
9863
9864 * config/s390/s390.c (s390_rtx_costs): Add /* fallthrough */.
9865 (s390_sched_score): Likewise.
9866
9867 2016-09-26 Martin Liska <mliska@suse.cz>
9868
9869 * doc/gcov.texi: Update program output of gcov tool.
9870
9871 2016-09-26 Martin Liska <mliska@suse.cz>
9872
9873 PR gcov-profile/23332
9874 * profile.c (instrument_values): Do not handle HIST_TYPE_CONST_DELTA.
9875 * tree-profile.c (gimple_gen_const_delta_profiler): Remove.
9876 * value-prof.c (dump_histogram_value): Do not handle
9877 HIST_TYPE_CONST_DELTA.
9878 (stream_in_histogram_value): Likewise.
9879 (gimple_find_values_to_profile): Likewise.
9880 * value-prof.h (enum hist_type): Likewise.
9881
9882 2016-09-26 Martin Liska <mliska@suse.cz>
9883
9884 * common.opt: Exclude SANITIZE_UNREACHABLE and SANITIZE_RETURN
9885 from default sanitize recover values.
9886 * doc/invoke.texi: Fix documentation related to -fsanitize=leak,
9887 -fsanitize=address, -fsanitize=thread and -fsanitize-recover.
9888 * flag-types.h: Replace couple of 1 << x to 1UL << x, make it
9889 consistent.
9890 * opts.c (finish_options): Do a generic loop over options
9891 that can be recovered.
9892 (parse_sanitizer_options): Exclude SANITIZE_UNREACHABLE and
9893 SANITIZE_RETURN.
9894 (common_handle_option): Likewise.
9895 * opts.h: Declare can_recover to sanitizer_opts_s.
9896
9897 2016-09-26 Andre Vieira <andre.simoesdiasvieira@arm.com>
9898
9899 * target.def(elf_flags_numeric): Change documentation to present tense.
9900 * doc/tm.texi: Regenerate.
9901
9902 2016-09-26 Marek Polacek <polacek@redhat.com>
9903
9904 PR c/7652
9905 * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
9906 insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Add
9907 -Wno-switch-fallthrough.
9908 * builtins.c (expand_builtin_int_roundingfn_2): Add gcc_fallthrough.
9909 (expand_builtin): Likewise.
9910 * config/rs6000/rs6000.c (rs6000_builtin_vectorized_libmass): Likewise.
9911 * convert.c (convert_to_real_1): Likewise.
9912 (convert_to_integer_1): Likewise.
9913 * final.c (output_alternate_entry_point): Likewise.
9914 * genattrtab.c (make_canonical): Likewise.
9915 (write_test_expr): Likewise.
9916 * genpreds.c (validate_exp): Likewise.
9917 * gimple-ssa-strength-reduction.c
9918 (find_candidates_dom_walker::before_dom_children): Likewise.
9919 * godump.c (go_format_type): Likewise.
9920 * reload1.c (elimination_effects): Likewise.
9921 * resource.c (mark_referenced_resources): Likewise.
9922 (mark_set_resources): Likewise.
9923 * tree-ssa-loop-ivopts.c (find_deriving_biv_for_expr): Likewise.
9924 * varasm.c (output_addressed_constants): Likewise.
9925
9926 2016-09-26 Marek Polacek <polacek@redhat.com>
9927
9928 PR c/7652
9929 * common.opt (Wimplicit-fallthrough): New option.
9930 * doc/extend.texi: Document statement attributes and the fallthrough
9931 attribute.
9932 * doc/invoke.texi: Document -Wimplicit-fallthrough.
9933 * gimple.h (gimple_call_internal_p): New function.
9934 * gimplify.c (struct gimplify_ctx): Add in_switch_expr.
9935 (struct label_entry): New struct.
9936 (find_label_entry): New function.
9937 (case_label_p): New function.
9938 (collect_fallthrough_labels): New function.
9939 (last_stmt_in_scope): New function.
9940 (should_warn_for_implicit_fallthrough): New function.
9941 (warn_implicit_fallthrough_r): New function.
9942 (maybe_warn_implicit_fallthrough): New function.
9943 (expand_FALLTHROUGH_r): New function.
9944 (expand_FALLTHROUGH): New function.
9945 (gimplify_switch_expr): Call maybe_warn_implicit_fallthrough and
9946 expand_FALLTHROUGH for the innermost GIMPLE_SWITCH.
9947 (gimplify_label_expr): New function.
9948 (gimplify_case_label_expr): Set location.
9949 (gimplify_expr): Call gimplify_label_expr.
9950 * internal-fn.c (expand_FALLTHROUGH): New function.
9951 * internal-fn.def (FALLTHROUGH): New internal function.
9952 * langhooks.c (lang_GNU_OBJC): New function.
9953 * langhooks.h (lang_GNU_OBJC): Declare.
9954 * system.h (gcc_fallthrough): Define.
9955 * tree-core.h: Add FALLTHROUGH_LABEL_P comment.
9956 * tree.h (FALLTHROUGH_LABEL_P): Define.
9957
9958 2016-09-26 Richard Biener <rguenther@suse.de>
9959
9960 * dwarf2out.c (stripattributes): Remove unused function.
9961 (DEBUG_NORM_MACINFO_SECTION): Rename to DEBUG_MACINFO_SECTION.
9962 Push dwarf_split_debug_info handling into init_sections_and_labels.
9963 (DEBUG_NORM_MACRO_SECTION): Likewise to DEBUG_MACRO_SECTION.
9964 (DEBUG_MACRO_SECTION_FLAGS): Remove.
9965 (debug_macinfo_section_name): New global.
9966 (output_macinfo): Use debug_macinfo_section_name.
9967 (init_sections_and_labels): Split out section and label generation
9968 from dwarf2out_init. Set debug_macinfo_section_name.
9969 (dwarf2out_init): Move text section label generation and emission
9970 to ...
9971 (dwarf2out_assembly_start): ... here.
9972 (dwarf2out_finish): Call init_sections_and_labels before DWARF
9973 output starts.
9974
9975 2016-09-26 Richard Biener <rguenther@suse.de>
9976
9977 PR debug/77692
9978 * cgraphunit.c (analyze_functions): Before early removing
9979 global vars calls the late_global_decl debug handler mark
9980 the variable as readonly.
9981
9982 2016-09-25 Oleg Endo <olegendo@gcc.gnu.org>
9983
9984 PR target/51244
9985 * config/sh/sh.c (sh_movt_set_dest, sh_movrt_set_dest): Add overloads.
9986 (sh_rtx_costs): Handle SET of movt and movrt patterns.
9987 * cnofig/sh/sh-protos.h (sh_movt_set_dest, sh_movrt_set_dest): Forward
9988 declare new overloads.
9989 * config/sh/sh.md (*cset_zero): Add variant that takes a treg_set_expr
9990 operand.
9991
9992 2016-09-24 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
9993
9994 * config/rs6000/rs6000.c (expand_block_compare, do_load_for_compare):
9995 Change TARGET_LITTLE_ENDIAN to !BYTES_BIG_ENDIAN.
9996
9997 2016-09-24 David Edelsohn <dje.gcc@gmail.com>
9998
9999 * configure.ac (gcc_cv_as_aix_dwloc): Fix typo in assembly fragment.
10000 * configure: Regenerate.
10001
10002 2016-09-24 Marek Polacek <polacek@redhat.com>
10003
10004 PR c/77490
10005 * doc/invoke.texi: Document -Wbool-operation.
10006
10007 2016-09-23 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
10008
10009 * config/rs6000/rs6000.md (cmpmemsi): New define_expand.
10010 * config/rs6000/rs6000.c (expand_block_compare): New function used by
10011 cmpmemsi pattern to do builtin expansion of memcmp ().
10012 (compute_current_alignment): Add helper function for
10013 expand_block_compare used to compute alignment as the compare proceeds.
10014 (select_block_compare_mode): Used by expand_block_compare to select
10015 the mode used for reading the next chunk of bytes in the compare.
10016 (do_load_for_compare): Used by expand_block_compare to emit the load
10017 insns for the compare.
10018 (rs6000_emit_dot_insn): Moved this function to avoid a forward
10019 reference from expand_block_compare ().
10020 * config/rs6000/rs6000-protos.h (expand_block_compare): Add a
10021 prototype for this function.
10022 * config/rs6000/rs6000.opt (mblock-compare-inline-limit): Add a new
10023 target option for controlling how much code inline expansion of
10024 memcmp() will be allowed to generate.
10025
10026 2016-09-23 Jakub Jelinek <jakub@redhat.com>
10027
10028 * hooks.c (hook_bool_bool_false, hook_bool_bool_gcc_optionsp_false,
10029 hook_bool_mode_false, hook_bool_mode_true,
10030 hook_bool_mode_const_rtx_false, hook_bool_mode_const_rtx_true,
10031 hook_bool_mode_rtx_false, hook_bool_mode_rtx_true,
10032 hook_bool_const_rtx_insn_const_rtx_insn_true,
10033 hook_bool_mode_uhwi_false, hook_void_FILEptr_constcharptr,
10034 hook_bool_FILEptr_rtx_false, hook_bool_gsiptr_false,
10035 hook_bool_const_tree_hwi_hwi_const_tree_false,
10036 hook_bool_const_tree_hwi_hwi_const_tree_true,
10037 default_can_output_mi_thunk_no_vcall, hook_int_uint_mode_1,
10038 hook_int_const_tree_0, hook_int_const_tree_const_tree_1,
10039 hook_int_rtx_0, hook_int_rtx_bool_0, hook_void_tree,
10040 hook_void_constcharptr, hook_void_tree_treeptr, hook_void_int_int,
10041 hook_bool_tree_false, hook_bool_const_tree_false, hook_bool_tree_true,
10042 hook_bool_const_tree_true, hook_bool_tree_tree_false,
10043 hook_bool_tree_tree_true, hook_bool_tree_bool_false,
10044 hook_bool_rtx_insn_true, hook_bool_rtx_false,
10045 hook_bool_uintp_uintp_false,
10046 hook_bool_rtx_mode_int_int_intp_bool_false, hook_rtx_rtx_null,
10047 hook_rtx_tree_int_null, hook_uint_mode_0,
10048 hook_constcharptr_const_tree_null, hook_tree_tree_int_treep_bool_null,
10049 hook_tree_tree_tree_null, hook_tree_tree_tree_tree_null,
10050 hook_constcharptr_const_rtx_insn_null,
10051 hook_constcharptr_const_tree_const_tree_null,
10052 hook_constcharptr_int_const_tree_null,
10053 hook_constcharptr_int_const_tree_const_tree_null,
10054 hook_tree_const_tree_null, hook_bool_rtx_insn_int_false,
10055 hook_void_rtx_insn_int, hook_void_gcc_optionsp): For arguments with
10056 ATTRIBUTE_UNUSED, remove parameter name as well as ATTRIBUTE_UNUSED.
10057
10058 * vec.h (vNULL): Extend comment to say = vNULL initialization
10059 isn't needed for static vars.
10060
10061 * sel-sched-ir.c (sel_global_bb_info, sel_region_bb_info,
10062 loop_nests, s_i_d, last_added_blocks): Remove unnecessary
10063 = vNULL initialization of file scope vec.
10064 * passes.c (pass_tab, enabled_pass_uid_range_tab,
10065 disabled_pass_uid_range_tab): Likewise.
10066 * haifa-sched.c (sched_luids, h_i_d): Likewise.
10067 * tree-chkp-opt.c (check_infos): Likewise.
10068 * sel-sched.c (vec_av_set, vec_temp_moveop_nops): Likewise.
10069
10070 * vec.h (vnull::operator vec): Add constexpr keyword for
10071 C++11 and later.
10072
10073 2016-09-23 Doug Gilmore <doug.gilmore@imgtec.com>
10074
10075 PR tree-optimization/77654
10076 * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Add call
10077 to duplicate_ssa_name_ptr_info.
10078
10079 2016-09-23 David Malcolm <dmalcolm@redhat.com>
10080
10081 PR preprocessor/77672
10082 * input.c (selftest::test_lexer_string_locations_simple): Update
10083 test to expect location information of the terminator character
10084 at the location of the final closing quote.
10085 (selftest::test_lexer_string_locations_hex): Likewise.
10086 (selftest::test_lexer_string_locations_oct): Likewise.
10087 (selftest::test_lexer_string_locations_letter_escape_1): Likewise.
10088 (selftest::test_lexer_string_locations_letter_escape_2): Likewise.
10089 (selftest::test_lexer_string_locations_ucn4): Likewise.
10090 (selftest::test_lexer_string_locations_ucn8): Likewise.
10091 (selftest::test_lexer_string_locations_u8): Likewise.
10092 (selftest::test_lexer_string_locations_utf8_source): Likewise.
10093 (selftest::test_lexer_string_locations_concatenation_1): Likewise.
10094 (selftest::test_lexer_string_locations_concatenation_2): Likewise.
10095 (selftest::test_lexer_string_locations_concatenation_3): Likewise.
10096 (selftest::test_lexer_string_locations_macro): Likewise.
10097 (selftest::test_lexer_string_locations_long_line): Likewise.
10098
10099 2016-09-23 Richard Biener <rguenther@suse.de>
10100
10101 * tree-ssa-sccvn.c (visit_reference_op_call): Value number
10102 virtual definition to virtual use if the call devirtualizes
10103 to a const or pure function.
10104 (visit_use): Also visit calls we can devirtualize to a
10105 const or pure function.
10106
10107 2016-09-23 Richard Biener <rguenther@suse.de>
10108
10109 PR tree-optimization/77697
10110 * tree-ssa-forwprop.c (defcodefor_name): Remove bogus code,
10111 signal error if we have sth ternary or unhandled.
10112
10113 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10114
10115 * config/arm/arm_neon.h (vabd_f16): New.
10116 (vabdq_f16): New.
10117 (vabs_f16): New.
10118 (vabsq_f16): New.
10119 (vadd_f16): New.
10120 (vaddq_f16): New.
10121 (vcage_f16): New.
10122 (vcageq_f16): New.
10123 (vcagt_f16): New.
10124 (vcagtq_f16): New.
10125 (vcale_f16): New.
10126 (vcaleq_f16): New.
10127 (vcalt_f16): New.
10128 (vcaltq_f16): New.
10129 (vceq_f16): New.
10130 (vceqq_f16): New.
10131 (vceqz_f16): New.
10132 (vceqzq_f16): New.
10133 (vcge_f16): New.
10134 (vcgeq_f16): New.
10135 (vcgez_f16): New.
10136 (vcgezq_f16): New.
10137 (vcgt_f16): New.
10138 (vcgtq_f16): New.
10139 (vcgtz_f16): New.
10140 (vcgtzq_f16): New.
10141 (vcle_f16): New.
10142 (vcleq_f16): New.
10143 (vclez_f16): New.
10144 (vclezq_f16): New.
10145 (vclt_f16): New.
10146 (vcltq_f16): New.
10147 (vcltz_f16): New.
10148 (vcltzq_f16): New.
10149 (vcvt_f16_s16): New.
10150 (vcvt_f16_u16): New.
10151 (vcvt_s16_f16): New.
10152 (vcvt_u16_f16): New.
10153 (vcvtq_f16_s16): New.
10154 (vcvtq_f16_u16): New.
10155 (vcvtq_s16_f16): New.
10156 (vcvtq_u16_f16): New.
10157 (vcvta_s16_f16): New.
10158 (vcvta_u16_f16): New.
10159 (vcvtaq_s16_f16): New.
10160 (vcvtaq_u16_f16): New.
10161 (vcvtm_s16_f16): New.
10162 (vcvtm_u16_f16): New.
10163 (vcvtmq_s16_f16): New.
10164 (vcvtmq_u16_f16): New.
10165 (vcvtn_s16_f16): New.
10166 (vcvtn_u16_f16): New.
10167 (vcvtnq_s16_f16): New.
10168 (vcvtnq_u16_f16): New.
10169 (vcvtp_s16_f16): New.
10170 (vcvtp_u16_f16): New.
10171 (vcvtpq_s16_f16): New.
10172 (vcvtpq_u16_f16): New.
10173 (vcvt_n_f16_s16): New.
10174 (vcvt_n_f16_u16): New.
10175 (vcvtq_n_f16_s16): New.
10176 (vcvtq_n_f16_u16): New.
10177 (vcvt_n_s16_f16): New.
10178 (vcvt_n_u16_f16): New.
10179 (vcvtq_n_s16_f16): New.
10180 (vcvtq_n_u16_f16): New.
10181 (vfma_f16): New.
10182 (vfmaq_f16): New.
10183 (vfms_f16): New.
10184 (vfmsq_f16): New.
10185 (vmax_f16): New.
10186 (vmaxq_f16): New.
10187 (vmaxnm_f16): New.
10188 (vmaxnmq_f16): New.
10189 (vmin_f16): New.
10190 (vminq_f16): New.
10191 (vminnm_f16): New.
10192 (vminnmq_f16): New.
10193 (vmul_f16): New.
10194 (vmul_lane_f16): New.
10195 (vmul_n_f16): New.
10196 (vmulq_f16): New.
10197 (vmulq_lane_f16): New.
10198 (vmulq_n_f16): New.
10199 (vneg_f16): New.
10200 (vnegq_f16): New.
10201 (vpadd_f16): New.
10202 (vpmax_f16): New.
10203 (vpmin_f16): New.
10204 (vrecpe_f16): New.
10205 (vrecpeq_f16): New.
10206 (vrnd_f16): New.
10207 (vrndq_f16): New.
10208 (vrnda_f16): New.
10209 (vrndaq_f16): New.
10210 (vrndm_f16): New.
10211 (vrndmq_f16): New.
10212 (vrndn_f16): New.
10213 (vrndnq_f16): New.
10214 (vrndp_f16): New.
10215 (vrndpq_f16): New.
10216 (vrndx_f16): New.
10217 (vrndxq_f16): New.
10218 (vrsqrte_f16): New.
10219 (vrsqrteq_f16): New.
10220 (vrecps_f16): New.
10221 (vrecpsq_f16): New.
10222 (vrsqrts_f16): New.
10223 (vrsqrtsq_f16): New.
10224 (vsub_f16): New.
10225 (vsubq_f16): New.
10226
10227 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10228
10229 * config.gcc (extra_headers): Add arm_fp16.h
10230 * config/arm/arm_fp16.h: New.
10231 * config/arm/arm_neon.h: Include "arm_fp16.h".
10232
10233 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10234
10235 * config/arm/arm_neon_builtins.def (vadd): New (v8hf, v4hf
10236 variants).
10237 (vmulf): New (v8hf, v4hf variants).
10238 (vfma): New (v8hf, v4hf variants).
10239 (vfms): New (v8hf, v4hf variants).
10240 (vsub): New (v8hf, v4hf variants).
10241 (vcage): New (v8hf, v4hf variants).
10242 (vcagt): New (v8hf, v4hf variants).
10243 (vcale): New (v8hf, v4hf variants).
10244 (vcalt): New (v8hf, v4hf variants).
10245 (vceq): New (v8hf, v4hf variants).
10246 (vcgt): New (v8hf, v4hf variants).
10247 (vcge): New (v8hf, v4hf variants).
10248 (vcle): New (v8hf, v4hf variants).
10249 (vclt): New (v8hf, v4hf variants).
10250 (vceqz): New (v8hf, v4hf variants).
10251 (vcgez): New (v8hf, v4hf variants).
10252 (vcgtz): New (v8hf, v4hf variants).
10253 (vcltz): New (v8hf, v4hf variants).
10254 (vclez): New (v8hf, v4hf variants).
10255 (vabd): New (v8hf, v4hf variants).
10256 (vmaxf): New (v8hf, v4hf variants).
10257 (vmaxnm): New (v8hf, v4hf variants).
10258 (vminf): New (v8hf, v4hf variants).
10259 (vminnm): New (v8hf, v4hf variants).
10260 (vpmaxf): New (v4hf variant).
10261 (vpminf): New (v4hf variant).
10262 (vpadd): New (v4hf variant).
10263 (vrecps): New (v8hf, v4hf variants).
10264 (vrsqrts): New (v8hf, v4hf variants).
10265 (vabs): New (v8hf, v4hf variants).
10266 (vneg): New (v8hf, v4hf variants).
10267 (vrecpe): New (v8hf, v4hf variants).
10268 (vrnd): New (v8hf, v4hf variants).
10269 (vrnda): New (v8hf, v4hf variants).
10270 (vrndm): New (v8hf, v4hf variants).
10271 (vrndn): New (v8hf, v4hf variants).
10272 (vrndp): New (v8hf, v4hf variants).
10273 (vrndx): New (v8hf, v4hf variants).
10274 (vrsqrte): New (v8hf, v4hf variants).
10275 (vmul_lane): Add v4hf and v8hf variants.
10276 (vmul_n): Add v4hf and v8hf variants.
10277 (vext): New (v8hf, v4hf variants).
10278 (vcvts): New (v8hi, v4hi variants).
10279 (vcvts): New (v8hf, v4hf variants).
10280 (vcvtu): New (v8hi, v4hi variants).
10281 (vcvtu): New (v8hf, v4hf variants).
10282 (vcvts_n): New (v8hf, v4hf variants).
10283 (vcvtu_n): New (v8hi, v4hi variants).
10284 (vcvts_n): New (v8hi, v4hi variants).
10285 (vcvtu_n): New (v8hf, v4hf variants).
10286 (vbsl): New (v8hf, v4hf variants).
10287 (vcvtas): New (v8hf, v4hf variants).
10288 (vcvtau): New (v8hf, v4hf variants).
10289 (vcvtms): New (v8hf, v4hf variants).
10290 (vcvtmu): New (v8hf, v4hf variants).
10291 (vcvtns): New (v8hf, v4hf variants).
10292 (vcvtnu): New (v8hf, v4hf variants).
10293 (vcvtps): New (v8hf, v4hf variants).
10294 (vcvtpu): New (v8hf, v4hf variants).
10295
10296 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10297
10298 * config/arm/arm-builtins.c (hf_UP): New.
10299 (si_UP): New.
10300 (vfp_builtin_data): New. Update comment.
10301 (enum arm_builtins): Include "arm_vfp_builtins.def".
10302 (ARM_BUILTIN_VFP_PATTERN_START): New.
10303 (arm_init_vfp_builtins): New.
10304 (arm_init_builtins): Add arm_init_vfp_builtins.
10305 (arm_expand_vfp_builtin): New.
10306 (arm_expand_builtins): Update for arm_expand_vfp_builtin. Fix
10307 long line.
10308 * config/arm/arm_vfp_builtins.def: New file.
10309 * config/arm/t-arm (arm.o): Add arm_vfp_builtins.def.
10310 (arm-builtins.o): Likewise.
10311
10312 2016-09-23 Kugan Vivekanandarajah <kuganv@linaro.org>
10313
10314 PR ipa/77677
10315 * ipa-cp.c (propagate_vr_accross_jump_function): Drop TREE_OVERFLOW
10316 from constant while creating value range.
10317
10318 2016-09-23 Renlin Li <renlin.li@arm.com>
10319
10320 * ira.c (ira): Move ira_use_lra_p initialization code to ...
10321 (ira_init_once): Here.
10322
10323 2016-09-23 Uros Bizjak <ubizjak@gmail.com>
10324 Jakub Jelinek <jakub@redhat.com>
10325
10326 * hooks.h (hook_uint_uintp_false): Rename to...
10327 (hook_bool_uint_uintp_false): ... this.
10328 * hooks.c (hook_uint_uintp_false): Rename to...
10329 (hook_bool_uint_uintp_false): ... this.
10330 * target.def (elf_flags_numeric): Use hook_bool_uint_uintp_false
10331 instead of hook_uint_uintp_false.
10332
10333 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10334
10335 * config/arm/arm-builtins.c (arm_init_neon_builtin): New.
10336 (arm_init_builtins): Move body of a loop to the standalone
10337 function arm_init_neon_builtin.
10338 (arm_expand_neon_builtin_1): New. Update comment. Function body
10339 moved from arm_neon_builtin with some white-space fixes.
10340 (arm_expand_neon_builtin): Move code into the standalone function
10341 arm_expand_neon_builtin_1.
10342
10343 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10344
10345 * config/arm/iterators.md (VCVTHI): New.
10346 (NEON_VCMP): Add UNSPEC_VCLT and UNSPEC_VCLE. Fix a long line.
10347 (NEON_VAGLTE): New.
10348 (VFM_LANE_AS): New.
10349 (VH_CVTTO): New.
10350 (V_reg): Add HF, V4HF and V8HF. Fix white-space.
10351 (V_HALF): Add V4HF. Fix white-space.
10352 (V_if_elem): Add HF, V4HF and V8HF. Fix white-space.
10353 (V_s_elem): Likewise.
10354 (V_sz_elem): Fix white-space.
10355 (V_elem_ch): Likewise.
10356 (VH_elem_ch): New.
10357 (scalar_mul_constraint): Add V8HF and V4HF.
10358 (Is_float_mode): Fix white-space.
10359 (Is_d_reg): Add V4HF and V8HF. Fix white-space.
10360 (q): Add HF. Fix white-space.
10361 (float_sup): New.
10362 (float_SUP): New.
10363 (cmp_op_unsp): Add UNSPEC_VCALE and UNSPEC_VCALT.
10364 (neon_vfm_lane_as): New.
10365 * config/arm/neon.md (add<mode>3_fp16): New.
10366 (sub<mode>3_fp16): New.
10367 (mul<mode>3add<mode>_neon): New.
10368 (fma<VH:mode>4_intrinsic): New.
10369 (fmsub<VCVTF:mode>4_intrinsic): Fix white-space.
10370 (fmsub<VH:mode>4_intrinsic): New.
10371 (<absneg_str><mode>2): New.
10372 (neon_v<absneg_str><mode>): New.
10373 (neon_v<fp16_rnd_str><mode>): New.
10374 (neon_vrsqrte<mode>): New.
10375 (neon_vpaddv4hf): New.
10376 (neon_vadd<mode>): New.
10377 (neon_vsub<mode>): New.
10378 (neon_vmulf<mode>): New.
10379 (neon_vfma<VH:mode>): New.
10380 (neon_vfms<VH:mode>): New.
10381 (neon_vc<cmp_op><mode>): New.
10382 (neon_vc<cmp_op><mode>_fp16insn): New
10383 (neon_vc<cmp_op_unsp><mode>_fp16insn_unspec): New.
10384 (neon_vca<cmp_op><mode>): New.
10385 (neon_vca<cmp_op><mode>_fp16insn): New.
10386 (neon_vca<cmp_op_unsp><mode>_fp16insn_unspec): New.
10387 (neon_vc<cmp_op>z<mode>): New.
10388 (neon_vabd<mode>): New.
10389 (neon_v<maxmin>f<mode>): New.
10390 (neon_vp<maxmin>fv4hf: New.
10391 (neon_<fmaxmin_op><mode>): New.
10392 (neon_vrecps<mode>): New.
10393 (neon_vrsqrts<mode>): New.
10394 (neon_vrecpe<mode>): New (VH variant).
10395 (neon_vdup_lane<mode>_internal): New.
10396 (neon_vdup_lane<mode>): New.
10397 (neon_vcvt<sup><mode>): New (VCVTHI variant).
10398 (neon_vcvt<sup><mode>): New (VH variant).
10399 (neon_vcvt<sup>_n<mode>): New (VH variant).
10400 (neon_vcvt<sup>_n<mode>): New (VCVTHI variant).
10401 (neon_vcvt<vcvth_op><sup><mode>): New.
10402 (neon_vmul_lane<mode>): New.
10403 (neon_vmul_n<mode>): New.
10404 * config/arm/unspecs.md (UNSPEC_VCALE): New
10405 (UNSPEC_VCALT): New.
10406 (UNSPEC_VFMA_LANE): New.
10407 (UNSPECS_VFMS_LANE): New.
10408
10409 2016-09-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
10410
10411 * config/s390/s390.md ("*extzv<mode>_zEC12", "*extzv<mode>_z10")
10412 ("*extzv<mode><clobbercc_or_nocc>"):
10413 Correct a typo in a comment.
10414 Merged patterns.
10415 ("*insv<mode>_zEC12", "*insv<mode>_z10")
10416 ("*insv<mode><clobbercc_or_nocc>"): Ditto.
10417 ("*insv<mode>_zEC12_appendbitsleft")
10418 ("*insv<mode><clobbercc_or_nocc>_appendbitsleft")
10419 ("*insv<mode>_z10_appendbitsleft"): Ditto.
10420 ("*insv<mode>_zEC12_noshift", "*insv<mode>_z10_noshift")
10421 ("*insv<mode><clobbercc_or_nocc>_noshift"): Ditto.
10422 Provide pattern with operands switched.
10423 ("*pre_z10_extv<mode>"):
10424 Use new subst patterns.
10425 ("*extzvdi<clobbercc_or_nocc>_lshiftrt", "*<risbg_n>_ior_and_sr_ze")
10426 ("*extvsidi<clobbercc_or_nocc>", "*<risbg_n>_and_subregdi_rotr")
10427 ("*<risbg_n>_and_subregdi_rotl", "*<risbg_n>_di_and_rot")
10428 ("*insv_z10_noshift_cc", "*insv_z10_noshift_cconly")
10429 ("*<risbg_n>_<mode>_ior_and_lshiftrt")
10430 ("*<risbg_n>_sidi_ior_and_lshiftrt")
10431 ("*trunc_sidi_and_subreg_lshrt<clobbercc_or_nocc>"):
10432 New patterns.
10433 ("*extzv_<mode>_sll", "*extzv_<mode>_srl")
10434 ("*extzv_<mode>_srl<clobbercc_or_nocc>")
10435 ("*extzv_<mode>_sll<clobbercc_or_nocc>"): Renamed patterns, use risbgn
10436 on zEC12.
10437 ("SINT"): New mode_iterator with SI, HI, QI.
10438 * config/s390/subst.md ("clobbercc_or_nocc_subst", "z10_or_zEC12_cond")
10439 ("clobbercc_or_nocc", "risbg_n"): New constructs for risbg pattern
10440 duplication.
10441
10442 2016-09-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
10443
10444 * config/s390/predicates.md ("contiguous_bitmask_operand"): Adapt to
10445 new interface of s390_contiguous_bitmask_p.
10446 ("contiguous_bitmask_nowrap_operand"): New predicate.
10447 ("*anddi3_cc", "*anddi3_cconly", "*anddi3"): Replace NxxDq with NxxDw.
10448 * config/s390/constraints.md ("NxxDw", "NxxSq"): Adapt to new interface
10449 of s390_contiguous_bitmask_p.
10450 ("NxxDw"): Rename NxxDq constraint to NxxDw.
10451 ("NxxSw"): New constraint.
10452 * config/s390/s390.md ("*andsi3_zarch"): Enable bitmask wraparound.
10453 * config/s390/s390-protos.h (s390_contiguous_bitmask_p): Updated
10454 interface.
10455 (s390_contiguous_bitmask_nowrap_p): Export.
10456 * config/s390/s390.c (s390_contiguous_bitmask_nowrap_p): New name of
10457 former s390_contiguous_bitmask_p.
10458 (s390_contiguous_bitmask_p): Use s390_contiguous_bitmask_nowrap_p to
10459 detect contiguous bit ranges with wraparound. Change signature to
10460 return START and END position instead of POS and LENGTH.
10461 (s390_contiguous_bitmask_vector_p): Remove extra code for continous bit
10462 ranges with wraparound.
10463 (s390_extzv_shift_ok): Use s390_contiguous_bitmask_nowrap_p.
10464 (s390_contiguous_bitmask_vector_p,s390_extzv_shift_ok,print_operand):
10465 Adapt to new signature of s390_contiguous_bitmask_p.
10466
10467 2016-09-23 Bin Cheng <bin.cheng@arm.com>
10468
10469 * tree-vect-loop-manip.c (create_intersect_range_checks_index): New.
10470 (create_intersect_range_checks): New.
10471 (vect_create_cond_for_alias_checks): Call above function.
10472
10473 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10474
10475 * config/arm/iterators.md (Code iterators): Fix some white-space
10476 in the comments.
10477 (GLTE): New.
10478 (ABSNEG): New
10479 (FCVT): Moved from vfp.md.
10480 (VCVT_HF_US_N): New.
10481 (VCVT_SI_US_N): New.
10482 (VCVT_HF_US): New.
10483 (VCVTH_US): New.
10484 (FP16_RND): New.
10485 (absneg_str): New.
10486 (FCVTI32typename): Moved from vfp.md.
10487 (sup): Add UNSPEC_VCVTA_S, UNSPEC_VCVTA_U, UNSPEC_VCVTM_S,
10488 UNSPEC_VCVTM_U, UNSPEC_VCVTN_S, UNSPEC_VCVTN_U, UNSPEC_VCVTP_S,
10489 UNSPEC_VCVTP_U, UNSPEC_VCVT_HF_S_N, UNSPEC_VCVT_HF_U_N,
10490 UNSPEC_VCVT_SI_S_N, UNSPEC_VCVT_SI_U_N, UNSPEC_VCVTH_S_N,
10491 UNSPEC_VCVTH_U_N, UNSPEC_VCVTH_S and UNSPEC_VCVTH_U.
10492 (vcvth_op): New.
10493 (fp16_rnd_str): New.
10494 (fp16_rnd_insn): New.
10495 * config/arm/unspecs.md (UNSPEC_VCVT_HF_S_N): New.
10496 (UNSPEC_VCVT_HF_U_N): New.
10497 (UNSPEC_VCVT_SI_S_N): New.
10498 (UNSPEC_VCVT_SI_U_N): New.
10499 (UNSPEC_VCVTH_S): New.
10500 (UNSPEC_VCVTH_U): New.
10501 (UNSPEC_VCVTA_S): New.
10502 (UNSPEC_VCVTA_U): New.
10503 (UNSPEC_VCVTM_S): New.
10504 (UNSPEC_VCVTM_U): New.
10505 (UNSPEC_VCVTN_S): New.
10506 (UNSPEC_VCVTN_U): New.
10507 (UNSPEC_VCVTP_S): New.
10508 (UNSPEC_VCVTP_U): New.
10509 (UNSPEC_VCVTP_S): New.
10510 (UNSPEC_VCVTP_U): New.
10511 (UNSPEC_VRND): New.
10512 (UNSPEC_VRNDA): New.
10513 (UNSPEC_VRNDI): New.
10514 (UNSPEC_VRNDM): New.
10515 (UNSPEC_VRNDN): New.
10516 (UNSPEC_VRNDP): New.
10517 (UNSPEC_VRNDX): New.
10518 * config/arm/vfp.md (<absneg_str>hf2): New.
10519 (neon_vabshf): New.
10520 (neon_v<fp16_rnd_str>hf): New.
10521 (neon_vrndihf): New.
10522 (addhf3): New.
10523 (subhf3): New.
10524 (divhf3): New.
10525 (mulhf3): New.
10526 (*mulsf3neghf_vfp): New.
10527 (*negmulhf3_vfp): New.
10528 (*mulsf3addhf_vfp): New.
10529 (*mulhf3subhf_vfp): New.
10530 (*mulhf3neghfaddhf_vfp): New.
10531 (*mulhf3neghfsubhf_vfp): New.
10532 (fmahf4): New.
10533 (neon_vfmahf): New.
10534 (fmsubhf4_fp16): New.
10535 (neon_vfmshf): New.
10536 (*fnmsubhf4): New.
10537 (*fnmaddhf4): New.
10538 (neon_vsqrthf): New.
10539 (neon_vrsqrtshf): New.
10540 (FCVT): Move to iterators.md.
10541 (FCVTI32typename): Likewise.
10542 (neon_vcvth<sup>hf): New.
10543 (neon_vcvth<sup>si): New.
10544 (neon_vcvth<sup>_nhf_unspec): New.
10545 (neon_vcvth<sup>_nhf): New.
10546 (neon_vcvth<sup>_nsi_unspec): New.
10547 (neon_vcvth<sup>_nsi): New.
10548 (neon_vcvt<vcvth_op>h<sup>si): New.
10549 (neon_<fmaxmin_op>hf): New.
10550
10551 2016-09-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
10552
10553 * config/s390/s390.md (bitoff, bitoff_plus): Neq mode attributes.
10554 ("*extzv<mode>_zEC12", "*insv<mode>_zEC12", "*insv<mode>_z10")
10555 ("*insv<mode>_zEC12_appendbitsleft")
10556 ("*insv<mode>_z10_appendbitsleft", "*r<noxa>sbg_<mode>_sll")
10557 ("*r<noxa>sbg_<mode>_srl"): Use new attributes.
10558
10559 2016-09-23 Jakub Jelinek <jakub@redhat.com>
10560
10561 * ipa-cp.c (ipcp_store_vr_results): Avoid static local var zero.
10562 * sreal.h (sreal::min, sreal::max): Avoid static local vars,
10563 construct values without normalization.
10564 * tree-ssa-sccvn.c (vn_reference_lookup_3): Don't initialize
10565 static local lhs_ops to vNULL.
10566
10567 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10568 Jiong Wang <jiong.wang@arm.com>
10569
10570 * config/arm/arm.c (coproc_secondary_reload_class): Make HFmode
10571 available when FP16 instructions are available.
10572 (output_move_vfp): Add support for 16-bit data moves.
10573 (arm_validize_comparison): Fix some white-space. Support HFmode
10574 by conversion to SFmode.
10575 * config/arm/arm.md (truncdfhf2): Fix a comment.
10576 (extendhfdf2): Likewise.
10577 (cstorehf4): New.
10578 (movsicc): Fix some white-space.
10579 (movhfcc): New.
10580 (movsfcc): Fix some white-space.
10581 (*cmovhf): New.
10582 * config/arm/vfp.md (*arm_movhi_vfp): Disable when VFP FP16
10583 instructions are available.
10584 (*thumb2_movhi_vfp): Likewise.
10585 (*arm_movhi_fp16): New.
10586 (*thumb2_movhi_fp16): New.
10587 (*movhf_vfp_fp16): New.
10588 (*movhf_vfp_neon): Disable when VFP FP16 instructions are available.
10589 (*movhf_vfp): Likewise.
10590 (extendhfsf2): Enable when VFP FP16 instructions are available.
10591 (truncsfhf2): Enable when VFP FP16 instructions are available.
10592
10593 2016-09-23 Martin Liska <mliska@suse.cz>
10594
10595 * config/s390/vx-builtins.md: Replace 'adress' with 'address'.
10596
10597 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10598
10599 * config/arm/arm.c (arm_evpc_neon_vuzp): Add support for V8HF and
10600 V4HF modes.
10601 (arm_evpc_neon_vtrn): Likewise.
10602 (arm_evpc_neon_vrev): Likewise.
10603 (arm_evpc_neon_vext): Likewise.
10604 * config/arm/arm_neon.h (vbsl_f16): New.
10605 (vbslq_f16): New.
10606 (vdup_n_f16): New.
10607 (vdupq_n_f16): New.
10608 (vdup_lane_f16): New.
10609 (vdupq_lane_f16): New.
10610 (vext_f16): New.
10611 (vextq_f16): New.
10612 (vmov_n_f16): New.
10613 (vmovq_n_f16): New.
10614 (vrev64_f16): New.
10615 (vrev64q_f16): New.
10616 (vtrn_f16): New.
10617 (vtrnq_f16): New.
10618 (vuzp_f16): New.
10619 (vuzpq_f16): New.
10620 (vzip_f16): New.
10621 (vzipq_f16): New.
10622 * config/arm/arm_neon_buillins.def (vdup_n): New (v8hf, v4hf variants).
10623 (vdup_lane): New (v8hf, v4hf variants).
10624 (vext): New (v8hf, v4hf variants).
10625 (vbsl): New (v8hf, v4hf variants).
10626 * config/arm/iterators.md (VDQWH): New.
10627 (VH): New.
10628 (V_double_vector_mode): Add V8HF and V4HF. Fix white-space.
10629 (Scalar_mul_8_16): Fix white-space.
10630 (Is_d_reg): Add V4HF and V8HF.
10631 * config/arm/neon.md (neon_vdup_lane<mode>_internal): New.
10632 (neon_vdup_lane<mode>): New.
10633 (neon_vtrn<mode>_internal): Replace VDQW with VDQWH.
10634 (*neon_vtrn<mode>_insn): Likewise.
10635 (neon_vzip<mode>_internal): Likewise. Also fix white-space.
10636 (*neon_vzip<mode>_insn): Likewise
10637 (neon_vuzp<mode>_internal): Likewise.
10638 (*neon_vuzp<mode>_insn): Likewise
10639 * config/arm/vec-common.md (vec_perm_const<mode>): New.
10640
10641 2016-09-23 Jiong Wang <jiong.wang@arm.com>
10642 Matthew Wahab <matthew.wahab@arm.com>
10643
10644 * config/arm/arm.c (output_move_vfp): Weaken assert to allow HImode.
10645 (arm_hard_regno_mode_ok): Allow HImode values in VFP registers.
10646 * config/arm/arm.md (*movhi_bytes): Disable when VFP registers are
10647 available. Also fix some white-space.
10648 * config/arm/vfp.md (*arm_movhi_vfp): New.
10649 (*thumb2_movhi_vfp): New.
10650
10651 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10652
10653 * config/arm/arm-c.c (arm_cpu_builtins): Define
10654 "__ARM_FEATURE_FP16_SCALAR_ARITHMETIC" and
10655 "__ARM_FEATURE_FP16_VECTOR_ARITHMETIC".
10656
10657 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10658
10659 * doc/sourcebuild.texi (ARM-specific attributes): Add anchor for
10660 arm_v8_1a_neon_ok. Add entries for arm_v8_2a_fp16_scalar_ok,
10661 arm_v8_2a_fp16_scalar_hw, arm_v8_2a_fp16_neon_ok and
10662 arm_v8_2a_fp16_neon_hw.
10663 (Add options): Add entries for arm_v8_1a_neon, arm_v8_2a_scalar,
10664 arm_v8_2a_neon.
10665
10666 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10667
10668 * doc/sourcebuild.texi (ARM-specific attributes): Add entries for
10669 arm_fp16_alternative_ok and arm_fp16_none_ok.
10670
10671 2016-09-23 Martin Liska <mliska@suse.cz>
10672
10673 * ipa-icf.c (sem_variable::merge): Replace adress with address.
10674
10675 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
10676
10677 * config/arm/arm-arches.def ("armv8.1-a"): Add FL_CRC32.
10678 ("armv8.2-a"): New.
10679 ("armv8.2-a+fp16"): New.
10680 * config/arm/arm-protos.h (FL2_ARCH8_2): New.
10681 (FL2_FP16INST): New.
10682 (FL2_FOR_ARCH8_2A): New.
10683 * config/arm/arm-tables.opt: Regenerate.
10684 * config/arm/arm.c (arm_arch8_2): New.
10685 (arm_fp16_inst): New.
10686 (arm_option_override): Set arm_arch8_2 and arm_fp16_inst. Check
10687 for incompatible fp16-format settings.
10688 * config/arm/arm.h (TARGET_VFP_FP16INST): New.
10689 (TARGET_NEON_FP16INST): New.
10690 (arm_arch8_2): Declare.
10691 (arm_fp16_inst): Declare.
10692 * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for
10693 march=armv8.2-a and march=armv8.2-a+fp16.
10694 * config/arm/t-aprofile (Arch Matches): Add entries for armv8.2-a
10695 and armv8.2-a+fp16.
10696 * doc/invoke.texi (ARM Options): Add "-march=armv8.1-a",
10697 "-march=armv8.2-a" and "-march=armv8.2-a+fp16".
10698
10699 2016-09-23 Martin Liska <mliska@suse.cz>
10700
10701 * doc/extend.texi: Remove fused-madd from i386 target options.
10702
10703 2016-09-23 Martin Liska <mliska@suse.cz>
10704
10705 * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
10706 Handle movbe.
10707
10708 2016-09-23 Martin Liska <mliska@suse.cz>
10709
10710 * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
10711 Handle crc32.
10712
10713 2016-09-23 Martin Liska <mliska@suse.cz>
10714
10715 PR target/71652
10716 * config/i386/i386.c (ix86_option_override_internal): Change
10717 signature and return false when there's an error related to
10718 arch string.
10719 (release_options_strings): New function.
10720 (ix86_valid_target_attribute_tree): Call the function.
10721
10722 2016-09-23 Jakub Jelinek <jakub@redhat.com>
10723
10724 * hsa-gen.c (hsa_op_immed::hsa_op_immed Use CONSTRUCTOR_NELTS (...)
10725 instead of vec_safe_length (CONSTRUCTOR_ELTS (...)).
10726 (gen_hsa_ctor_assignment): Likewise.
10727 * print-tree.c (print_node): Likewise.
10728 * tree-dump.c (dequeue_and_dump): Likewise.
10729 * tree-sra.c (sra_modify_constructor_assign): Likewise.
10730 * expr.c (store_constructor): Likewise.
10731 * fold-const.c (operand_equal_p): Likewise.
10732 * tree-pretty-print.c (dump_generic_node): Likewise.
10733 * hsa-brig.c (hsa_op_immed::emit_to_buffer): Likewise.
10734 * ipa-icf-gimple.c (func_checker::compare_operand): Likewise.
10735
10736 2016-09-23 Richard Biener <rguenther@suse.de>
10737
10738 * hooks.h (hook_uint_uintp_false): Declare.
10739
10740 2016-09-22 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
10741
10742 * config/avr/avr.c (avr_rtx_costs_1): Handle DImode MULT.
10743 (avr_address_cost): Replace 61 with MAX_LD_OFFSET(mode).
10744
10745 2016-09-22 Martin Sebor <msebor@redhat.com>
10746
10747 PR target/77676
10748 * gimple-ssa-sprintf.c (target_int_min, target_int_max): Use
10749 HOST_BITS_PER_WIDE_INT, make a static local variable auto.
10750 (target_int_min): Correct computation.
10751 (format_integer): Use long long as the argument for the ll length
10752 modifier.
10753 (format_floating): Use target_int_max().
10754 (get_string_length): Same.
10755 (format_string): Avoid setting the bounded flag for strings
10756 of unknown length.
10757 (try_substitute_return_value): Avoid setting range info when
10758 the result isn't bounded.
10759 * varasm.c (assemble_name): Increase buffer size.
10760
10761 2016-09-22 Andre Vieira <andre.simoesdiasvieira@arm.com>
10762 Terry Guo <terry.guo@arm.com>
10763
10764 * target.def (elf_flags_numeric): New target hook.
10765 * targhooks.h (default_asm_elf_flags_numeric): New.
10766 * varasm.c (default_asm_elf_flags_numeric): New.
10767 (default_elf_asm_named_section): Use new target hook.
10768 * config/arm/arm.opt (mpure-code): New.
10769 * config/arm/arm.h (SECTION_ARM_PURECODE): New.
10770 * config/arm/arm.c (arm_asm_init_sections): Add section
10771 attribute to default text section if -mpure-code.
10772 (arm_option_check_internal): Diagnose use of option with
10773 non supported targets and/or options.
10774 (arm_asm_elf_flags_numeric): New.
10775 (arm_function_section): New.
10776 (arm_elf_section_type_flags): New.
10777 * config/arm/elf.h (JUMP_TABLES_IN_TEXT_SECTION): Disable
10778 for -mpure-code.
10779 * doc/texi (TARGET_ASM_ELF_FLAGS_NUMERIC): New.
10780 * doc/texi.in (TARGET_ASM_ELF_FLAGS_NUMERIC): Likewise.
10781
10782 2016-09-22 Jan Hubicka <hubicka@ucw.cz>
10783
10784 * regcprop.c (copyprop_hardreg_forward_1): Remove noop moves.
10785
10786 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
10787
10788 * emit-rtl.c (next_cc0_user): Make argument type rtx_insn *.
10789 * rtl.h: Adjust prototype.
10790
10791 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
10792
10793 * emit-rtl.c (next_active_insn): Change argument type to rtx_insn *.
10794 (prev_active_insn): Likewise.
10795 (active_insn_p): Likewise.
10796 * rtl.h: Adjust prototypes.
10797 * cfgcleanup.c (merge_blocks_move_successor_nojumps): Adjust.
10798 * config/arc/arc.md: Likewise.
10799 * config/pa/pa.c (branch_to_delay_slot_p): Likewise.
10800 (branch_needs_nop_p): Likewise.
10801 (use_skip_p): Likewise.
10802 * config/sh/sh.c (gen_block_redirect): Likewise.
10803 (split_branches): Likewise.
10804 * reorg.c (optimize_skip): Likewise.
10805 (fill_simple_delay_slots): Likewise.
10806 (fill_slots_from_thread): Likewise.
10807 (relax_delay_slots): Likewise.
10808 * resource.c (mark_target_live_regs): Likewise.
10809
10810 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
10811
10812 * config/cris/cris.c (cris_asm_output_case_end): Change argument
10813 type to rtx_insn *.
10814 * emit-rtl.c (next_nonnote_nondebug_insn): Likewise.
10815 (prev_nonnote_nondebug_insn): Likewise.
10816 * config/cris/cris-protos.h: Adjust prototype.
10817 * rtl.h: Likewise.
10818 * jump.c (rtx_renumbered_equal_p): Adjust.
10819
10820 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
10821
10822 * emit-rtl.c (prev_real_insn): Change argument type to rtx_insn *.
10823 * rtl.h: Adjust prototype.
10824 * config/sh/sh.md: Adjust.
10825 * dwarf2out.c (add_var_loc_to_decl): Likewise.
10826
10827 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
10828
10829 * emit-rtl.c (next_nondebug_insn): Change argument type to rtx_insn *.
10830 (prev_nondebug_insn): Likewise.
10831 * loop-doloop.c (doloop_condition_get): Likewise.
10832 * rtl.h: Adjust prototype.
10833 * cfgloop.h: Likewise.
10834
10835 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
10836
10837 * emit-rtl.c (next_nonnote_insn): Change argument type to rtx_insn *.
10838 (prev_nonnote_insn): Likewise.
10839 * jump.c (reversed_comparison_code_parts): Likewise.
10840 (reversed_comparison): Likewise.
10841 * rtl.h: Adjust prototypes.
10842 * config/arc/arc.md: Adjust.
10843 * cse.c (find_comparison_args): Likewise.
10844 * reorg.c (redundant_insn): Change return type to rtx_insn *.
10845 (fix_reg_dead_note): Change argument type to rtx_insn *.
10846 (delete_prior_computation): Likewise.
10847 (delete_computation): Likewise.
10848 (fill_slots_from_thread): Adjust.
10849 (relax_delay_slots): Likewise.
10850 * simplify-rtx.c (simplify_unary_operation_1): Likewise.
10851 (simplify_relational_operation_1): Likewise.
10852 (simplify_ternary_operation): Likewise.
10853
10854 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
10855
10856 * config/arc/arc-protos.h (arc_label_align): Change type of
10857 variables from rtx to rtx_insn *.
10858 * config/arc/arc.c (arc_label_align): Likewise.
10859 * config/arm/arm.c (any_sibcall_could_use_r3): Likewise.
10860 * config/bfin/bfin.c (workaround_speculation): Likewise.
10861 * config/c6x/c6x.c (find_next_cycle_insn): Likewise.
10862 (find_last_same_clock): Likewise.
10863 (reorg_split_calls): Likewise.
10864 * config/cris/cris-protos.h (cris_cc0_user_requires_cmp): Likewise.
10865 * config/cris/cris.c (cris_cc0_user_requires_cmp): Likewise.
10866 * config/h8300/h8300-protos.h (same_cmp_preceding_p): Likewise.
10867 (same_cmp_following_p): Likewise.
10868 * config/h8300/h8300.c (same_cmp_preceding_p): Likewise.
10869 (same_cmp_following_p): Likwise.
10870 * config/m32r/m32r.c (m32r_expand_epilogue): Likewise.
10871 * config/nds32/nds32-protos.h (nds32_target_alignment): Likewise.
10872 * config/nds32/nds32.c (nds32_target_alignment): Likewise.
10873 * config/rl78/rl78.c (rl78_alloc_physical_registers_op2): Likewise.
10874 (rl78_alloc_physical_registers_cmp): Likewise.
10875 (rl78_alloc_physical_registers_umul): Likewise.
10876 (rl78_calculate_death_notes): Likewise.
10877 * config/s390/s390-protos.h (s390_label_align): Likewise.
10878 * config/s390/s390.c (s390_label_align): Likewise.
10879 * config/sh/sh.c (barrier_align): Likewise.
10880 * config/sparc/sparc-protos.h (emit_cbcond_nop): Likewise.
10881 * config/sparc/sparc.c (sparc_asm_function_epilogue): Likewise.
10882 (emit_cbcond_nop): Likewise.
10883
10884 2016-09-22 Martin Liska <mliska@suse.cz>
10885
10886 PR ipa/77653
10887 * ipa-icf.c (sem_variable::merge): Yield merge operation if
10888 alias address matters, not necessarily address of original.
10889
10890 2016-09-22 Richard Biener <rguenther@suse.de>
10891
10892 PR middle-end/77697
10893 * gimple-fold.c (fold_array_ctor_reference): Turn asserts into
10894 fold fails.
10895
10896 2016-09-22 Richard Biener <rguenther@suse.de>
10897
10898 PR middle-end/77677
10899 * gimple-match-head.c (gimple_resimplify1): Drop TREE_OVERFLOW
10900 from constant folding results.
10901 (gimple_resimplify2): Likewise.
10902 (gimple_resimplify3): Likewise.
10903
10904 2016-09-22 Richard Biener <rguenther@suse.de>
10905
10906 PR middle-end/77678
10907 * expr.c (expand_expr_real_1): Guard array access against negative
10908 offset.
10909
10910 2016-09-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10911
10912 * gimple-ssa-sprintf.c (format_floating_max): Use GMP_RNDN instead
10913 of MPFR_RNDN.
10914 (format_floating): Likewise.
10915
10916 2016-09-22 Jakub Jelinek <jakub@redhat.com>
10917
10918 PR fortran/77665
10919 * tree-inline.c (remap_gimple_stmt): Set has_simduid_loops
10920 for all IFN_GOMP_SIMD_* internal fns, not just for
10921 IFN_GOMP_SIMD_ORDERED_*.
10922
10923 2016-09-21 Michael Meissner <meissner@linux.vnet.ibm.com>
10924
10925 PR target/77670
10926 * config/rs6000/predicates.md (invert_fpmask_comparison_operator):
10927 New predicate that matches the ISA 3.0 XSCMP{EQ,GT,GE}DP
10928 instructions when you want to invert the test.
10929 * config/rs6000/rs6000.md (fpmask<mode>): Use the arguments in the
10930 correct order for XXSEL.
10931 (mov<SFDF:mode><SFDF2:mode>cc_invert_p9): Define the inverted test
10932 for using XSCMP{EQ,GT,GE}DP.
10933
10934 2016-09-21 David Malcolm <dmalcolm@redhat.com>
10935
10936 * genconstants.c (main): Introduce noop_reader and convert call
10937 to read_md_files to a method call.
10938 * genenums.c (main): Likewise.
10939 * genmddeps.c (main): Likewise.
10940 * genpreds.c (write_tm_constrs_h): Replace use of "in_fname" with
10941 rtx_reader_ptr->get_top_level_filename ().
10942 (write_tm_preds_h): Likewise.
10943 (write_insn_preds_c): Likewise.
10944 * gensupport.c (class gen_reader): New subclass of rtx_reader.
10945 (rtx_handle_directive): Convert to...
10946 (gen_reader::handle_unknown_directive): ...this.
10947 (init_rtx_reader_args_cb): Convert return type from bool to
10948 rtx_reader *. Create a gen_reader instance, using it for the
10949 call to read_md_files. Return it if no errors occur.
10950 (init_rtx_reader_args): Convert return type from bool to
10951 rtx_reader *.
10952 * gensupport.h (init_rtx_reader_args_cb): Likewise.
10953 (init_rtx_reader_args_cb): Likewise.
10954 * read-md.c (struct file_name_list): Move to class rtx_reader.
10955 (read_md_file): Delete in favor of rtx_reader::m_read_md_file.
10956 (read_md_filename): Delete in favor of
10957 rtx_reader::m_read_md_filename.
10958 (read_md_lineno): Delete in favor of rtx_reader::m_read_md_lineno.
10959 (in_fname): Delete in favor of rtx_reader::m_toplevel_fname.
10960 (base_dir): Delete in favor of rtx_reader::m_base_dir.
10961 (first_dir_md_include): Delete in favor of
10962 rtx_reader::m_first_dir_md_include.
10963 (last_dir_md_include_ptr): Delete in favor of
10964 rtx_reader::m_last_dir_md_include_ptr.
10965 (max_include_len): Delete.
10966 (rtx_reader_ptr): New.
10967 (fatal_with_file_and_line): Use get_filename and get_lineno
10968 accessors of rtx_reader_ptr.
10969 (require_char_ws): Likewise.
10970 (rtx_reader::read_char): New method, based on ::read_char.
10971 (rtx_reader::unread_char): New method, based on ::unread_char.
10972 (read_escape): Use get_filename and get_lineno accessors of
10973 rtx_reader_ptr.
10974 (read_braced_string): Use get_lineno accessor of rtx_reader_ptr.
10975 (read_string): Use get_filename and get_lineno accessors of
10976 rtx_reader_ptr.
10977 (rtx_reader::rtx_reader): New ctor.
10978 (rtx_reader::~rtx_reader): New dtor.
10979 (handle_include): Convert from a function to...
10980 (rtx_reader::handle_include): ...this method, converting
10981 handle_directive from a callback to a virtual function.
10982 (handle_file): Likewise, converting to...
10983 (rtx_reader::handle_file): ...this method.
10984 (handle_toplevel_file): Likewise, converting to...
10985 (rtx_reader::handle_toplevel_file): ...this method.
10986 (rtx_reader::get_current_location): New method.
10987 (parse_include): Convert from a function to...
10988 (rtx_reader::add_include_path): ...this method, dropping redundant
10989 update to unused max_include_len.
10990 (read_md_files): Convert from a function to...
10991 (rtx_reader::read_md_files): ...this method, converting
10992 handle_directive from a callback to a virtual function.
10993 (noop_reader::handle_unknown_directive): New method.
10994 * read-md.h (directive_handler_t): Delete this typedef.
10995 (in_fname): Delete.
10996 (read_md_file): Delete.
10997 (read_md_lineno): Delete.
10998 (read_md_filename): Delete.
10999 (class rtx_reader): New class.
11000 (rtx_reader_ptr): New decl.
11001 (class noop_reader): New subclass of rtx_reader.
11002 (read_char): Reimplement in terms of rtx_reader::read_char.
11003 (unread_char): Reimplement in terms of rtx_reader::unread_char.
11004 (read_md_files): Delete.
11005 * read-rtl.c (read_rtx_code): Update for deletion of globals
11006 read_md_filename and read_md_lineno.
11007
11008 2016-09-21 Jason Merrill <jason@redhat.com>
11009
11010 * input.h (from_macro_definition_at): New.
11011
11012 2016-09-21 Segher Boessenkool <segher@kernel.crashing.org>
11013
11014 * doc/rtl.texi (JUMP_LABEL): Document RETURN and SIMPLE_RETURN values.
11015
11016 2016-09-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
11017
11018 PR tree-optimization/77550
11019 * tree-vect-stmts.c (create_array_ref): Change parameters.
11020 (get_group_alias_ptr_type): New function.
11021 (vectorizable_store, vectorizable_load): Use get_group_alias_ptr_type.
11022
11023 2016-09-21 Marek Polacek <polacek@redhat.com>
11024
11025 * gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length):
11026 Add falls through comment.
11027
11028 2016-09-21 Richard Biener <rguenther@suse.de>
11029
11030 * dwarf2out.c (remove_child_with_prev): Clear child->die_sib.
11031 (replace_child): Likewise.
11032 (remove_child_TAG): Adjust.
11033 (move_marked_base_types): Likewise.
11034 (prune_unused_types_prune): Clear die_sib of removed children.
11035
11036 2016-09-21 Georg-Johann Lay <avr@gjlay.de>
11037
11038 PR target/77326
11039 * config/avr/avr.c (avr_notice_update_cc) [CC_NONE]: If insn
11040 touches some regs mentioned in cc_status, do CC_STATUS_INIT.
11041
11042 2016-09-21 Richard Biener <rguenther@suse.de>
11043
11044 PR tree-optimization/77648
11045 * tree-ssa-structalias.c (process_constraint): Handle all DEREF
11046 with complex RHS.
11047 (make_transitive_closure_constraints): Adjust comment.
11048 (make_any_offset_constraints): New function.
11049 (handle_rhs_call): Make sure to first expand a pointer to all
11050 subfields before transitively closing it.
11051 (handle_const_call): Likewise. Properly expand returned
11052 pointers as well.
11053 (handle_pure_call): Likewise.
11054
11055 2016-09-21 Richard Biener <rguenther@suse.de>
11056 Jakub Jelinek <jakub@redhat.com>
11057
11058 PR tree-optimization/77621
11059 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Split
11060 group at non-vectorizable stmts.
11061
11062 2016-09-21 Kugan Vivekanandarajah <kuganv@linaro.org>
11063
11064 PR tree-optimization/72835
11065 * tree-ssa-reassoc.c (make_new_ssa_for_def): New.
11066 (make_new_ssa_for_all_defs): Likewise.
11067 (zero_one_operation): Replace all SSA_NAMEs defined in the chain.
11068
11069 2016-09-20 Martin Sebor <msebor@redhat.com>
11070
11071 PR middle-end/49905
11072 * Makefile.in (OBJS): Add gimple-ssa-sprintf.o.
11073 * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Redefine.
11074 * config/linux.c (gnu_libc_printf_pointer_format): New function.
11075 * config/sol2.h (TARGET_PRINTF_POINTER_FORMAT): Same.
11076 * config/sol2.c (solaris_printf_pointer_format): New function.
11077 * doc/invoke.texi (-Wformat-length, -fprintf-return-value): New
11078 options.
11079 * doc/tm.texi.in (TARGET_PRINTF_POINTER_FORMAT): Document.
11080 * doc/tm.texi: Regenerate.
11081 * gimple-fold.h (get_range_strlen): New function.
11082 (get_maxval_strlen): Declare existing function.
11083 * gimple-fold.c (get_range_strlen): Add arguments and compute both
11084 maximum and minimum.
11085 (get_range_strlen): Define overload.
11086 (get_maxval_strlen): Adjust.
11087 * gimple-ssa-sprintf.c: New file and pass.
11088 * passes.def (pass_sprintf_length): Add new pass.
11089 * targhooks.h (default_printf_pointer_format): Declare new function.
11090 (gnu_libc_printf_pointer_format): Same.
11091 (solaris_libc_printf_pointer_format): Same.
11092 * targhooks.c (default_printf_pointer_format): Define new function.
11093 * tree-pass.h (make_pass_sprintf_length): Declare new function.
11094 * print-tree.c: Increase buffer size.
11095
11096 2016-09-21 Kugan Vivekanandarajah <kuganv@linaro.org>
11097
11098 * tree-vrp.c (get_value_range): Teach PARM_DECL to use ipa-vrp results.
11099
11100 2016-09-21 Kugan Vivekanandarajah <kuganv@linaro.org>
11101
11102 * common.opt: New option -fipa-vrp.
11103 * ipa-cp.c (ipa_get_vr_lat): New.
11104 (ipcp_vr_lattice::print): Likewise.
11105 (print_all_lattices): Call ipcp_vr_lattice::print.
11106 (ipcp_vr_lattice::meet_with): New.
11107 (ipcp_vr_lattice::meet_with_1): Likewise.
11108 (ipcp_vr_lattice::top_p): Likewise.
11109 (ipcp_vr_lattice::bottom_p): Likewsie.
11110 (ipcp_vr_lattice::set_to_bottom): Likewise.
11111 (set_all_contains_variable): Call VR set_to_bottom.
11112 (initialize_node_lattices): Init VR lattices.
11113 (propagate_vr_accross_jump_function): New.
11114 (propagate_constants_accross_call): Call
11115 propagate_vr_accross_jump_function.
11116 (ipcp_store_vr_results): New.
11117 (ipcp_driver): Handle VR.
11118 * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Handle VR.
11119 (ipa_set_jf_unknown): Likewise.
11120 (ipa_compute_jump_functions_for_edge): Likewise.
11121 (ipa_node_params_t::duplicate): Likewise.
11122 (ipa_write_jump_function): Likewise.
11123 (ipa_read_jump_function): Likewise.
11124 (write_ipcp_transformation_info): Likewise.
11125 (read_ipcp_transformation_info): Likewise.
11126 (ipcp_update_vr): New.
11127 (ipcp_transform_function): Handle VR.
11128 * ipa-prop.h (struct ipa_vr): New.
11129 * cgraph.c: Include tree-vrp.h.
11130 * cgraphunit.c: Likewise.
11131 * ipa-utils.c: Likewise.
11132 * ipa.c: Likewise.
11133 * opts.c: Likewise.
11134 * toplev.c: Likewise.
11135 * ipa-devirt.c: Likewise.
11136 * ipa-inline-transform.c: Likewise.
11137 * ipa-inline.c: Likewise.
11138 * ipa-profile.c: Likewise.
11139
11140 2016-09-21 Kugan Vivekanandarajah <kuganv@linaro.org>
11141
11142 * doc/invoke.texi: Document -fdump-tree-evrp.
11143 * passes.def: Define new pass_early_vrp.
11144 * timevar.def: Define new TV_TREE_EARLY_VRP.
11145 * tree-pass.h (make_pass_early_vrp): New.
11146 * tree-ssa-propagate.c: Make replace_uses_in non static.
11147 * tree-ssa-propagate.h: Export replace_uses_in.
11148 * tree-vrp.c (extract_range_for_var_from_comparison_expr): New.
11149 (extract_range_from_assert): Factor out
11150 extract_range_for_var_from_comparison_expr.
11151 (vrp_initialize_lattice): New.
11152 (vrp_initialize): Factor out vrp_initialize_lattice.
11153 (vrp_valueize): Fix it to reject complex value ranges.
11154 (vrp_free_lattice): New.
11155 (evrp_dom_walker::before_dom_children): Likewise.
11156 (evrp_dom_walker::after_dom_children): Likewise.
11157 (evrp_dom_walker::push_value_range): Likewise.
11158 (evrp_dom_walker::pop_value_range): Likewise.
11159 (execute_early_vrp): Likewise.
11160 (execute_vrp): Call vrp_initialize_lattice and vrp_free_lattice.
11161 (make_pass_early_vrp): New.
11162
11163 2016-09-20 Uros Bizjak <ubizjak@gmail.com>
11164
11165 * config/i386/i386.md (mult->ashift peephole2s): Use pow2p_hwi
11166 instead of exact_log2.
11167
11168 2016-09-20 Uros Bizjak <ubizjak@gmail.com>
11169
11170 PR target/77621
11171 * config/i386/i386.c (ix86_preferred_simd_mode) <case DFmode>:
11172 Don't return word_mode for !TARGET_VECTORIZE_DOUBLE.
11173 (ix86_add_stmt_cost): Penalize DFmode vector operations
11174 for !TARGET_VECTORIZE_DOUBLE.
11175
11176 2016-09-20 Gerald Pfeifer <gerald@pfeifer.com>
11177
11178 * doc/invoke.texi (Warning Options): Simplify language.
11179 (Optimize Options): Complete sentence.
11180
11181 2016-09-20 David Edelsohn <dje.gcc@gmail.com>
11182
11183 * dbxout.c (xcoff_debug_hooks): Add filename parameter to
11184 early_finish hook.
11185
11186 2016-09-20 Michael Meissner <meissner@linux.vnet.ibm.com>
11187
11188 PR target/71395
11189 * config/rs6000/rs6000.c (rs6000_expand_vector_init): For V4SF
11190 inits on power8 and above, use the VMRGEW instruction instead of a
11191 permute.
11192
11193 * config/rs6000/altivec.md (UNSPEC_VMRGEW_DIRECT): New unspec.
11194 (p8_vmrgew_v4sf_direct): New VMRGEW insn for V4SF floating
11195 initialization.
11196
11197 2016-09-20 Tamar Christina <tamar.christina@arm.com>
11198
11199 * config/aarch64/arm_neon.h
11200 (vst2_s64, vst2_u64, vst2_f64, vst2_s8): Add missing attributes.
11201 (vst3_s64, vst3_u64, vst3_f64, vst3_s8): Likewise.
11202 (vst4_s64, vst4_u64, vst4_f64, vst4_s8): Likewise.
11203
11204 2016-09-20 Bernd Edlinger <bernd.edlinger@hotmail.de>
11205
11206 * config/var/vax.h (ELIMINABLE_REGS): Define.
11207 (INITIAL_ELIMINATION_OFFSET): Define.
11208
11209 2016-09-20 Jakub Jelinek <jakub@redhat.com>
11210
11211 PR middle-end/77624
11212 * builtins.c (fold_builtin_atomic_always_lock_free): Only look through
11213 cast to void * if the cast is from some other pointer type.
11214
11215 2016-09-20 Richard Biener <rguenther@suse.de>
11216
11217 PR tree-optimization/77646
11218 * tree-ssa-sccvn.c (visit_reference_op_call): Always value-number
11219 a VDEF.
11220
11221 2016-09-20 Tamar Christina <tamar.christina@arm.com>
11222
11223 * config/aarch64/arm_neon.h: Add gnu_inline and artificial
11224 attributes to all inlined functions and make them extern.
11225
11226 2016-09-20 Richard Biener <rguenther@suse.de>
11227
11228 * debug.h (gcc_debug_hooks): Add filename parameter to early_finish
11229 hook.
11230 * debug.c (do_nothing_debug_hooks): Adjust.
11231 * dbxout.c (dbx_debug_hooks): Likewise.
11232 * sdbout.c (sdb_debug_hooks): Likewise.
11233 * dwarf2out.c (dwarf2_lineno_debug_hooks): Likewise.
11234 (dwarf2out_finish): Move producer, filename and
11235 path annotation ...
11236 (dwarf2out_early_finish): ... here. Remove in_lto_p special-casing.
11237 * cgraphunit.c (symbol_table::finalize_compilation_unit): Adjust.
11238
11239 2016-09-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
11240
11241 PR c++/77434
11242 * doc/invoke.texi: Document -Wint-in-bool-context.
11243
11244 PR middle-end/77421
11245 * dwarf2out.c (output_loc_operands): Fix an assertion.
11246
11247 2016-09-19 Joseph Myers <joseph@codesourcery.com>
11248
11249 * ginclude/float.h [__STDC_WANT_IEC_60559_BFP_EXT__]
11250 (CR_DECIMAL_DIG): New macro.
11251
11252 2016-09-19 Joseph Myers <joseph@codesourcery.com>
11253
11254 * ginclude/stddef.h (max_align_t) [__i386__]: Add __float128
11255 element.
11256
11257 2016-09-19 Vladimir Makarov <vmakarov@redhat.com>
11258
11259 PR rtl-optimization/77416
11260 * lra-remat.c (operand_to_remat): Process hard coded insn
11261 registers.
11262
11263 2016-09-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11264
11265 * simplify-rtx.c (simplify_relational_operation_1): Add transformation
11266 (GTU (PLUS a C) (C - 1)) --> (LTU a -C).
11267
11268 2016-09-19 Segher Boessenkool <segher@kernel.crashing.org>
11269
11270 * target.def (lra_p): Wordsmithing.
11271 * doc/tm.texi: Regenerate.
11272
11273 2016-09-19 Jakub Jelinek <jakub@redhat.com>
11274 Jan Hubicka <jh@suse.cz>
11275
11276 PR target/77587
11277 * cgraph.c (cgraph_node::rtl_info): Pass &avail to
11278 ultimate_alias_target call, return NULL if avail < AVAIL_AVAILABLE.
11279 Call ultimate_alias_target just once, not up to 4 times.
11280
11281 2016-09-19 Richard Biener <rguenther@suse.de>
11282
11283 * dwarf2out.c (early_dwarf_finished): New global.
11284 (set_early_dwarf::set_early_dwarf): Assert early_dwarf_finished
11285 is false.
11286 (dwarf2out_early_finish): Set early_dwarf_finished at the end,
11287 if called from LTO exit early.
11288 (dwarf2out_late_global_decl): When being during the early
11289 debug phase do not add locations but only const value attributes.
11290 Adjust the way we generate early DIEs for LTO.
11291
11292 2016-09-19 Richard Biener <rguenther@suse.de>
11293
11294 PR middle-end/77605
11295 * tree-data-ref.c (analyze_subscript_affine_affine): Use the
11296 proper niter to bound the loops.
11297
11298 2016-09-19 Richard Biener <rguenther@suse.de>
11299
11300 PR tree-optimization/77514
11301 * tree-ssa-pre.c (create_expression_by_pieces): Optimize
11302 search for folded stmt.
11303
11304 2016-09-17 Jan Hubicka <hubicka@ucw.cz>
11305
11306 * passes.def (pass_early_thread_jumps): Schedule after forwprop.
11307 * tree-pass.h (make_pass_early_thread_jumps): Declare.
11308 * tree-ssa-threadbackward.c (fsm_find_thread_path,
11309 fsm_find_thread_path, profitable_jump_thread_path,
11310 fsm_find_control_statement_thread_paths,
11311 find_jump_threads_backwards): Add speed_p parameter.
11312 (pass_data_early_thread_jumps): New pass.
11313 (make_pass_early_thread_jumps): New function.
11314
11315 2016-09-17 Andreas Schwab <schwab@suse.de>
11316
11317 * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Add cast.
11318 * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
11319
11320 2016-09-16 Eric Botcazou <ebotcazou@adacore.com>
11321
11322 * recog.c (rest_of_handle_split_after_reload): Delete.
11323 (pass_split_after_reload::gate): New method.
11324 (pass_split_after_reload::execute): Call split_all_insns directly.
11325
11326 2016-09-16 Jonathan Wakely <jwakely@redhat.com>
11327
11328 * doc/extend.texi (Integer Overflow Builtins): Fix type of out
11329 parameters for functions taking long long arguments.
11330
11331 2016-09-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
11332
11333 PR target/77613
11334 * config/rs6000/rs6000.c (rtx_is_swappable_p): Add support for
11335 splat with truncate.
11336
11337 2016-09-16 Jason Merrill <jason@redhat.com>
11338
11339 * hwint.h (least_bit_hwi, pow2_or_zerop, pow2p_hwi, ctz_or_zero):
11340 New.
11341 * hwint.c (exact_log2): Use pow2p_hwi.
11342 (ctz_hwi, ffs_hwi): Use least_bit_hwi.
11343 * alias.c (memrefs_conflict_p): Use pow2_or_zerop.
11344 * builtins.c (get_object_alignment_2, get_object_alignment)
11345 (get_pointer_alignment, fold_builtin_atomic_always_lock_free): Use
11346 least_bit_hwi.
11347 * calls.c (compute_argument_addresses, store_one_arg): Use
11348 least_bit_hwi.
11349 * cfgexpand.c (expand_one_stack_var_at): Use least_bit_hwi.
11350 * combine.c (force_to_mode): Use least_bit_hwi.
11351 (contains_muldiv, find_split_point, combine_simplify_rtx)
11352 (simplify_if_then_else, simplify_set, force_to_mode)
11353 (if_then_else_cond, simplify_and_const_int_1)
11354 (simplify_compare_const): Use pow2p_hwi.
11355 * cse.c (fold_rtx): Use pow2p_hwi.
11356 * emit-rtl.c (set_mem_attributes_minus_bitpos, adjust_address_1):
11357 Use least_bit_hwi.
11358 * expmed.c (synth_mult, expand_divmod): Use ctz_or_zero, ctz_hwi.
11359 (init_expmed_one_conv): Use pow2p_hwi.
11360 * expr.c (is_aligning_offset): Use pow2p_hwi.
11361 * fold-const.c (round_up_loc, round_down_loc): Use pow2_or_zerop.
11362 (fold_binary_loc): Use pow2p_hwi.
11363 * function.c (assign_parm_find_stack_rtl): Use least_bit_hwi.
11364 * gimple-fold.c (gimple_fold_builtin_memory_op): Use pow2p_hwi.
11365 * gimple-ssa-strength-reduction.c (replace_ref): Use least_bit_hwi.
11366 * hsa-gen.c (gen_hsa_addr_with_align, hsa_bitmemref_alignment):
11367 Use least_bit_hwi.
11368 * ifcvt.c (noce_try_store_flag_constants): Use pow2p_hwi.
11369 * ipa-cp.c (ipcp_alignment_lattice::meet_with_1): Use least_bit_hwi.
11370 * ipa-prop.c (ipa_modify_call_arguments): Use least_bit_hwi.
11371 * omp-low.c (oacc_loop_fixed_partitions)
11372 (oacc_loop_auto_partitions): Use least_bit_hwi.
11373 * rtlanal.c (nonzero_bits1): Use ctz_or_zero.
11374 * stor-layout.c (place_field): Use least_bit_hwi.
11375 * tree-pretty-print.c (dump_generic_node): Use pow2p_hwi.
11376 * tree-sra.c (build_ref_for_offset): Use least_bit_hwi.
11377 * tree-ssa-ccp.c (ccp_finalize): Use least_bit_hwi.
11378 * tree-ssa-math-opts.c (bswap_replace): Use least_bit_hwi.
11379 * tree-ssa-strlen.c (handle_builtin_memcmp): Use pow2p_hwi.
11380 * tree-vect-data-refs.c (vect_analyze_group_access_1)
11381 (vect_grouped_store_supported, vect_grouped_load_supported)
11382 (vect_permute_load_chain, vect_shift_permute_load_chain)
11383 (vect_transform_grouped_load): Use pow2p_hwi.
11384 * tree-vect-generic.c (expand_vector_divmod): Use ctz_or_zero.
11385 * tree-vect-patterns.c (vect_recog_divmod_pattern): Use ctz_or_zero.
11386 * tree-vect-stmts.c (vectorizable_mask_load_store): Use
11387 least_bit_hwi.
11388 * tsan.c (instrument_expr): Use least_bit_hwi.
11389 * var-tracking.c (negative_power_of_two_p): Use pow2_or_zerop.
11390
11391 2016-09-16 Andreas Schwab <schwab@suse.de>
11392
11393 * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Use parameter
11394 OFFSET, not offset.
11395 * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
11396
11397 2016-09-16 Jakub Jelinek <jakub@redhat.com>
11398
11399 PR target/77526
11400 * combine.c (rest_of_handle_combine): If any edges have been purged,
11401 free dominators if available.
11402
11403 2016-09-16 Jakub Jelinek <jakub@redhat.com>
11404 Eric Botcazou <ebotcazou@adacore.com>
11405
11406 PR middle-end/77594
11407 * internal-fn.c (expand_arith_overflow) <case MINUS_EXPR>: Don't fall
11408 through into expand_addsub_overflow after expand_neg_overflow.
11409
11410 2016-09-15 David Malcolm <dmalcolm@redhat.com>
11411
11412 * diagnostic-show-locus.c
11413 (selftest::test_fixit_insert_containing_newline): New function.
11414 (selftest::test_fixit_replace_containing_newline): New function.
11415 (selftest::diagnostic_show_locus_c_tests): Call the above.
11416
11417 2016-09-15 Bin Cheng <bin.cheng@arm.com>
11418
11419 PR tree-optimization/77503
11420 * tree-vect-loop.c (vectorizable_reduction): Record reduction
11421 code for CONST_COND_REDUCTION at analysis stage and use it at
11422 transform stage.
11423 * tree-vectorizer.h (struct _stmt_vec_info): New field.
11424 (STMT_VINFO_VEC_CONST_COND_REDUC_CODE): New macro.
11425 * tree-vect-stmts.c (new_stmt_vec_info): Initialize above new
11426 field.
11427
11428 2016-09-15 Richard Biener <rguenther@suse.de>
11429
11430 PR middle-end/77544
11431 * fold-const.c (split_tree): Do not split constant ~X.
11432
11433 2016-09-15 Jakub Jelinek <jakub@redhat.com>
11434
11435 PR rtl-optimization/77425
11436 * sched-int.h (sd_iterator_cond): Don't update it_ptr->linkp if list
11437 is NULL.
11438
11439 PR middle-end/77475
11440 * config/i386/i386.c (ix86_parse_stringop_strategy_string): Simplify,
11441 use %qs instead of %s where desirable, use argument instead of arg in
11442 the diagnostic wording, add list of supported strategies and
11443 spellcheck hint.
11444 (ix86_option_override_internal): Emit target("m...") instead of
11445 option("m...") in the diagnostic. Use %qs instead of %s in invalid
11446 -march/-mtune option diagnostic. Add list of supported arches/tunings
11447 and spellcheck hint. Remove prefix, suffix and sw variables, use
11448 main_args_p ? "..." : "..." in diagnostics to make translation
11449 possible.
11450
11451 2016-09-15 Richard Biener <rguenther@suse.de>
11452
11453 * dwarf2asm.h (dw2_asm_output_offset): Add overload with
11454 extra offset argument.
11455 * dwarf2asm.c (dw2_asm_output_offset): Implement that.
11456 * doc/tm.texi.in (ASM_OUTPUT_DWARF_OFFSET): Adjust documentation
11457 to reflect new offset parameter.
11458 * doc/tm.texi: Regenerate.
11459 * config/darwin.h (ASM_OUTPUT_DWARF_OFFSET): Adjust.
11460 * config/darwin-protos.h (darwin_asm_output_dwarf_delta): Add
11461 offset argument.
11462 (darwin_asm_output_dwarf_offset): Likewise.
11463 * config/darwin.c (darwin_asm_output_dwarf_delta): Add offset
11464 argument.
11465 (darwin_asm_output_dwarf_offset): Pass offset argument through.
11466 * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Adjust.
11467 * config/i386/cygmin.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
11468
11469 2016-09-15 Chung-Lin Tang <cltang@codesourcery.com>
11470
11471 PR fortran/72743
11472 * ipa-icf.c (set_alias_uids): New function.
11473 (sem_variable::merge): Use set_alias_uids to set DECL_PT_UID of
11474 all the merged variable's referring aliases.
11475
11476 2016-09-15 Richard Biener <rguenther@suse.de>
11477
11478 PR tree-optimization/77514
11479 * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage
11480 only forced_stmts sequence.
11481
11482 2016-09-15 Kugan Vivekanandarajah <kuganv@linaro.org>
11483
11484 * tree-ssanames.h (FOR_EACH_SSA_NAME): New.
11485 * cfgexpand.c (update_alias_info_with_stack_vars): Use
11486 FOR_EACH_SSA_NAME to iterate over SSA variables.
11487 (pass_expand::execute): Likewise.
11488 * omp-simd-clone.c (ipa_simd_modify_function_body): Likewise.
11489 * tree-cfg.c (dump_function_to_file): Likewise.
11490 * tree-into-ssa.c (pass_build_ssa::execute): Likewise.
11491 (update_ssa): Likewise.
11492 * tree-ssa-alias.c (dump_alias_info): Likewise.
11493 * tree-ssa-ccp.c (ccp_finalize): Likewise.
11494 * tree-ssa-coalesce.c (build_ssa_conflict_graph): Likewise.
11495 (create_outofssa_var_map): Likewise.
11496 (coalesce_ssa_name): Likewise.
11497 * tree-ssa-operands.c (dump_immediate_uses): Likewise.
11498 * tree-ssa-pre.c (compute_avail): Likewise.
11499 * tree-ssa-sccvn.c (init_scc_vn): Likewise.
11500 (scc_vn_restore_ssa_info): Likewise.
11501 (free_scc_vn): Likwise.
11502 (run_scc_vn): Likewise.
11503 * tree-ssa-structalias.c (compute_points_to_sets): Likewise.
11504 * tree-ssa-ter.c (new_temp_expr_table): Likewise.
11505 * tree-ssa-copy.c (fini_copy_prop): Likewise.
11506 * tree-ssa.c (verify_ssa): Likewise.
11507
11508 2016-09-14 Matthew Fortune <matthew.fortune@imgtec.com>
11509
11510 * config.gcc (mips*-mti-elf*, mips*-mti-linux*): Set mips32r2
11511 and mips64r2 as default 32-bit and 64-bit architectures.
11512 (mips*-img-elf*, mips*-img-linux*): Set mips32r6 and mips64r6
11513 as default 32-bit and 64-bit architectures.
11514
11515 2016-09-14 Pat Haugen <pthaugen@us.ibm.com>
11516
11517 * loop-unroll.c (unroll_loop_runtime_iterations): Set probability
11518 of succ edge.
11519
11520 2016-09-14 Segher Boessenkool <segher@kernel.crashing.org>
11521
11522 * target.def (lra_p): Change commentary (for the manual) for the
11523 new default.
11524 * doc/tm.texi: Regenerate.
11525
11526 2016-09-14 Segher Boessenkool <segher@kernel.crashing.org>
11527
11528 * config/aarch64/aarch64.c (TARGET_LRA_P): Delete macro.
11529 * config/arm/arm.c (TARGET_LRA_P): Delete macro.
11530 * config/i386/i386.c (TARGET_LRA_P): Delete macro.
11531 * config/nds32/nds32.c (TARGET_LRA_P): Delete macro.
11532
11533 2016-09-14 Segher Boessenkool <segher@kernel.crashing.org>
11534
11535 * targhooks.c (default_lra_p): Return true instead of false.
11536
11537 2016-09-14 Segher Boessenkool <segher@kernel.crashing.org>
11538
11539 * config/alpha/alpha.c (TARGET_LRA_P): New macro, defined to
11540 hook_bool_void_false.
11541 * config/avr/avr.c: Ditto.
11542 * config/bfin/bfin.c: Ditto.
11543 * config/c6x/c6x.c: Ditto.
11544 * config/cr16/cr16.c: Ditto.
11545 * config/cris/cris.c: Ditto.
11546 * config/epiphany/epiphany.c: Ditto.
11547 * config/fr30/fr30.c: Ditto.
11548 * config/frv/frv.c: Ditto.
11549 * config/h8300/h8300.c: Ditto.
11550 * config/ia64/ia64.c: Ditto.
11551 * config/iq2000/iq2000.c: Ditto.
11552 * config/lm32/lm32.c: Ditto.
11553 * config/m32c/m32c.c: Ditto.
11554 * config/m32r/m32r.c: Ditto.
11555 * config/m68k/m68k.c: Ditto.
11556 * config/mcore/mcore.c: Ditto.
11557 * config/microblaze/microblaze.c: Ditto.
11558 * config/mmix/mmix.c: Ditto.
11559 * config/mn10300/mn10300.c: Ditto.
11560 * config/moxie/moxie.c: Ditto.
11561 * config/msp430/msp430.c: Ditto.
11562 * config/nios2/nios2.c: Ditto.
11563 * config/nvptx/nvptx.c: Ditto.
11564 * config/pa/pa.c: Ditto.
11565 * config/pdp11/pdp11.c: Ditto.
11566 * config/rl78/rl78.c: Ditto.
11567 * config/sparc/sparc.c: Ditto.
11568 * config/spu/spu.c: Ditto.
11569 * config/stormy16/stormy16.c: Ditto.
11570 * config/tilegx/tilegx.c: Ditto.
11571 * config/tilepro/tilepro.c: Ditto.
11572 * config/v850/v850.c: Ditto.
11573 * config/vax/vax.c: Ditto.
11574 * config/visium/visium.c: Ditto.
11575 * config/xtensa/xtensa.c: Ditto.
11576
11577 2016-09-14 Jakub Jelinek <jakub@redhat.com>
11578
11579 PR sanitizer/68260
11580 * tsan.c: Include target.h.
11581 (enum tsan_atomic_action): Add bool_clear and bool_test_and_set.
11582 (BOOL_CLEAR, BOOL_TEST_AND_SET): Define.
11583 (tsan_atomic_table): Add BUILT_IN_ATOMIC_CLEAR and
11584 BUILT_IN_ATOMIC_TEST_AND_SET entries.
11585 (instrument_builtin_call): Handle bool_clear and bool_test_and_set.
11586
11587 2016-09-14 Bernd Edlinger <bernd.edlinger@hotmail.de>
11588 Martin Liska <mliska@suse.cz>
11589
11590 PR middle-end/77574
11591 * predict.c (force_edge_cold): Add braces to a condition.
11592
11593 2016-09-13 Bernd Edlinger <bernd.edlinger@hotmail.de>
11594
11595 PR rtl-optimization/77289
11596 * lra-constraints.c (get_final_hard_regno): Removed.
11597 (get_hard_regno): Add new parameter final_p.
11598 (get_reg_class): Directly call lra_get_elimination_hard_regno.
11599 (operands_match_p): Adjust call to get_hard_regno.
11600 (uses_hard_regs_p): Likewise.
11601 (process_alt_operands): Likewise.
11602
11603 2016-09-13 Joe Seymour <joe.s@somniumtech.com>
11604
11605 PR target/70713
11606 * config/msp430/msp430.c (msp430_start_function): Emit an error
11607 if a function is both weak and specifies an interrupt number.
11608
11609 2016-09-13 Jakub Jelinek <jakub@redhat.com>
11610
11611 PR tree-optimization/77454
11612 * tree-ssa-dom.c (optimize_stmt): Set modified flag on stmt after
11613 changing GIMPLE_COND. Move update_stmt_if_modified call after this.
11614 Formatting fix.
11615
11616 2016-09-13 Tamar Christina <tamar.christina@arm.com>
11617
11618 * config/aarch64/aarch64-builtins.c
11619 (aarch64_init_simd_builtins): Fix builtin type signature printing.
11620
11621 2016-09-13 Uros Bizjak <ubizjak@gmail.com>
11622
11623 * config/alpha/alpha.c (alpha_pass_by_reference): Pass un-named
11624 SFmode and SCmode arguments by reference.
11625
11626 2016-09-13 David Malcolm <dmalcolm@redhat.com>
11627
11628 * diagnostic-show-locus.c (selftest::test_one_liner_fixit_insert):
11629 Rename to...
11630 (selftest::test_one_liner_fixit_insert_before): ...this, and update
11631 for renaming of add_fixit_insert to add_fixit_insert_before.
11632 (selftest::test_one_liner_fixit_insert_after): New function.
11633 (selftest::test_one_liner_fixit_validation_adhoc_locations):
11634 Update for renaming of add_fixit_insert to add_fixit_insert_before.
11635 (selftest::test_one_liner_many_fixits): Likewise.
11636 (selftest::test_diagnostic_show_locus_one_liner): Update for
11637 renaming, call new test function.
11638 (selftest::test_diagnostic_show_locus_fixit_lines): Update for
11639 renaming of add_fixit_insert to add_fixit_insert_before.
11640 (selftest::test_fixit_consolidation): Likewise.
11641 * diagnostic.c (selftest::test_print_parseable_fixits_insert):
11642 Likewise.
11643 * edit-context.c (selftest::test_applying_fixits_insert): Rename to...
11644 (selftest::test_applying_fixits_insert_before): ...this.
11645 (selftest::test_applying_fixits_insert): Update for renaming of
11646 add_fixit_insert to add_fixit_insert_before.
11647 (selftest::test_applying_fixits_insert_after): New function.
11648 (selftest::test_applying_fixits_insert_after_at_line_end): New
11649 function.
11650 (selftest::test_applying_fixits_insert_after_failure): New function.
11651 (selftest::test_applying_fixits_multiple): Update for renaming of
11652 add_fixit_insert to add_fixit_insert_before.
11653 (selftest::change_line): Likewise.
11654 (selftest::test_applying_fixits_unreadable_file): Likewise.
11655 (selftest::test_applying_fixits_line_out_of_range): Likewise.
11656 (selftest::test_applying_fixits_column_validation): Likewise.
11657 (selftest::test_applying_fixits_column_validation): Likewise.
11658 (selftest::edit_context_c_tests): Update for renamed test function;
11659 call new test functions.
11660
11661 2016-09-13 Pat Haugen <pthaugen@us.ibm.com>
11662
11663 PR tree-optimization/77536
11664 PR rtl-optimization/68212
11665 * config/rs6000/rs6000.md (div->recip splitter): Remove
11666 optimize_insn_for_speed_p condition.
11667
11668 2016-09-13 Maciej W. Rozycki <macro@imgtec.com>
11669
11670 * optabs.c (prepare_cmp_insn): Update documentation comment.
11671
11672 2016-09-13 Jakub Jelinek <jakub@redhat.com>
11673 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
11674
11675 PR middle-end/77475
11676 * opts.h (candidates_list_and_hint): Declare.
11677 * opts-common.c (candidates_list_and_hint): New function.
11678 (cmdline_handle_error): Use it.
11679
11680 2016-09-12 David Malcolm <dmalcolm@redhat.com>
11681
11682 * edit-context.c (edited_line::get_len): New accessor.
11683 (edited_file::print_diff): Split out hunk-printing into...
11684 (edited_file::print_diff_hunk): New method.
11685 (edited_file::print_diff_line): New method.
11686
11687 2016-09-12 Andrew Pinski <apinski@cavium.com>
11688
11689 * config/aarch64/aarch64-tuning-flags.def (SLOW_UNALIGNED_LDPW):
11690 New tuning option.
11691 * config/aarch64/aarch64.c (thunderx_tunings): Enable
11692 AARCH64_EXTRA_TUNE_SLOW_UNALIGNED_LDPW.
11693 (aarch64_operands_ok_for_ldpstp): Return false if
11694 AARCH64_EXTRA_TUNE_SLOW_UNALIGNED_LDPW and the mode
11695 was SImode and the alignment is less than 8 byte.
11696 (aarch64_operands_adjust_ok_for_ldpstp): Likewise.
11697
11698 2016-09-12 Orlando Arias <oarias@knights.ucf.edu>
11699
11700 PR target/77570
11701 * config/msp430/msp430.md (delay_cycles_32x): Fix pushm/popm.
11702
11703 2016-09-12 Marek Polacek <polacek@redhat.com>
11704
11705 * doc/extend.texi: Use lowercase "boolean".
11706 * doc/invoke.texi: Likewise.
11707 * doc/md.texi: Likewise.
11708 * target.def: Likewise.
11709 * doc/tm.texi: Regenerated.
11710
11711 2016-09-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11712
11713 PR middle-end/77426
11714 * expmed.c (synth_mult): Delete duplicate mode check.
11715
11716 2016-09-10 Tom de Vries <tom@codesourcery.com>
11717
11718 PR C/71602
11719 * builtins.c (std_canonical_va_list_type): Strictly return non-null for
11720 va_list type only.
11721 * config/i386/i386.c (ix86_canonical_va_list_type): Same.
11722 * gimplify.c (gimplify_va_arg_expr): Handle &va_list.
11723
11724 2016-09-09 Peter Bergner <bergner@vnet.ibm.com>
11725
11726 PR rtl-optimization/77289
11727 * lra-constraints.c (get_final_hard_regno): Add support for non hard
11728 register numbers. Remove support for subregs.
11729 (get_hard_regno): Use SUBREG_P. Don't call get_final_hard_regno().
11730 (get_reg_class): Delete removed get_final_hard_regno() argument.
11731 (uses_hard_regs_p): Call get_final_hard_regno().
11732
11733 2016-09-09 Martin Sebor <msebor@redhat.com>
11734
11735 PR c/77520
11736 PR c/77521
11737 * pretty-print.c (pp_quoted_string): New function.
11738 (pp_format): Call it for %c and %s directives.
11739
11740 2016-09-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
11741
11742 * doc/tm.texi.in (INITIAL_FRAME_POINTER_OFFSET): Remove.
11743 (ELIMINABLE_REGS, TARGET_CAN_ELIMINATE,
11744 INITIAL_ELIMINATION_OFFSET) : Update documentation.
11745 * target.def (frame_pointer_required, can_eliminate): Likewise.
11746 * doc/tm.texi: Regenerated.
11747 * builtins.c (expand_builtin_setjmp_receiver): Remove #ifdef
11748 ELIMINABLE_REGS.
11749 * df-scan.c (df_hard_reg_init): Likewise.
11750 * ira.c (ira_setup_eliminable_regset): Likewise.
11751 * lra-eliminations.c (reg_eliminate_1, (update_reg_eliminate,
11752 init_elim_table): Likewise.
11753 * reload1.c (reg_eliminate_1, verify_initial_elim_offsets,
11754 set_initial_elim_offsets, update_eliminables,
11755 init_elim_table): Likewise.
11756 * rtlanal.c (get_initial_register_offset): Likewise.
11757 * config/ft32/ft32.h (INITIAL_FRAME_POINTER_OFFSET): Remove.
11758 * config/m32r/m32r.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
11759 * config/moxie/moxie.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
11760 * config/vax/vax.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
11761 * config/fr30/fr30.h: Fix comment.
11762 * config/frv/frv.c: Likewise.
11763 * config/frv/frv.h: Likewise.
11764 * config/ft32/ft32.h: Likewise.
11765 * config/visium/visium.h: Likewise.
11766 * config/pa/pa64-linux.h: Likewise.
11767 * config/v850/v850.h: Likewise.
11768 * config/cris/cris.c: Likewise.
11769 * config/ia64/ia64.h: Likewise.
11770 * config/moxie/moxie.h: Likewise.
11771 * config/m32r/m32r.h: Likewise.
11772
11773 2016-09-10 Alexander Ivchenko <alexander.ivchenko@intel.com>
11774
11775 PR target/77267
11776 * config.in: Regenerate.
11777 * config/i386/linux-common.h (MPX_LD_AS_NEEDED_GUARD_PUSH):
11778 New macro.
11779 (MPX_LD_AS_NEEDED_GUARD_PUSH): Ditto.
11780 (LIBMPXWRAPPERS_SPEC): Remove "--no-whole-archive" from
11781 static-libmpxwrappers case.
11782 (LIBMPX_SPEC): Add guards with MPX_LD_AS_NEEDED_GUARD_PUSH and
11783 MPX_LD_AS_NEEDED_GUARD_POP.
11784 * configure: Regenerate.
11785 * configure.ac (HAVE_LD_PUSHPOPSTATE_SUPPORT): New variable.
11786 defined if linker support "--push-state"/"--pop-state".
11787
11788 2016-09-09 Bernd Edlinger <bernd.edlinger@hotmail.de>
11789
11790 * doc/cpp.texi (__*_WIDTH__): Small wording fixes.
11791
11792 2016-09-09 Joseph Myers <joseph@codesourcery.com>
11793
11794 * doc/cpp.texi (__SCHAR_WIDTH__, __SHRT_WIDTH__, __INT_WIDTH__)
11795 (__LONG_WIDTH__, __LONG_LONG_WIDTH__, __PTRDIFF_WIDTH__)
11796 (__SIG_ATOMIC_WIDTH__, __SIZE_WIDTH__, __WCHAR_WIDTH__)
11797 (__WINT_WIDTH__, __INT_LEAST8_WIDTH__, __INT_LEAST16_WIDTH__)
11798 (__INT_LEAST32_WIDTH__, __INT_LEAST64_WIDTH__)
11799 (__INT_FAST8_WIDTH__, __INT_FAST16_WIDTH__, __INT_FAST32_WIDTH__)
11800 (__INT_FAST64_WIDTH__, __INTPTR_WIDTH__, __INTMAX_WIDTH__):
11801 Document.
11802 * ginclude/stdint-gcc.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Define
11803 width macros from TS 18661-1.
11804 * glimits.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Likewise.
11805
11806 2016-09-08 Jakub Jelinek <jakub@redhat.com>
11807
11808 PR fortran/77516
11809 * omp-low.c (lower_rec_simd_input_clauses): Use max_vf for non-positive
11810 OMP_CLAUSE_SAFELEN_EXPR.
11811
11812 2016-09-07 David Malcolm <dmalcolm@redhat.com>
11813
11814 * Makefile.in (OBJS): Add substring-locations.o.
11815 * langhooks-def.h (class substring_loc): New forward decl.
11816 (lhd_get_substring_location): New decl.
11817 (LANG_HOOKS_GET_SUBSTRING_LOCATION): New macro.
11818 (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_GET_SUBSTRING_LOCATION.
11819 * langhooks.c (lhd_get_substring_location): New function.
11820 * langhooks.h (class substring_loc): New forward decl.
11821 (struct lang_hooks): Add field get_substring_location.
11822 * substring-locations.c: New file, taking definition of
11823 format_warning_va and format_warning_at_substring from
11824 c-family/c-format.c, making them non-static.
11825 * substring-locations.h (class substring_loc): Move class here
11826 from c-family/c-common.h. Add and rewrite comments.
11827 (format_warning_va): New decl.
11828 (format_warning_at_substring): New decl.
11829 (get_source_location_for_substring): Add comment.
11830
11831 2016-09-07 Eric Gallager <egall@gwmail.gwu.edu>
11832
11833 * config/i386/i386.c: Add 'U' suffix to processor feature bits
11834 to avoid -Wnarrowing warning.
11835 * config/i386/x86-tune.def: Likewise for DEF_TUNE selector bitmasks.
11836 * opts.c: Likewise for SANITIZER_OPT bitmasks.
11837
11838 2016-09-07 Wilco Dijkstra <wdijkstr@arm.com>
11839
11840 * config/aarch64/aarch64.c (aarch64_legitimize_address):
11841 Avoid use of base_offset if offset already in range.
11842
11843 2016-09-07 Kaz Kojima <kkojima@gcc.gnu.org>
11844
11845 * config/sh/sh-protos.h (struct sh_atomic_model,
11846 selected_atomic_model, TARGET_ATOMIC_ANY, TARGET_ATOMIC_STRICT,
11847 TARGET_ATOMIC_SOFT_GUSA, TARGET_ATOMIC_HARD_LLCS,
11848 TARGET_ATOMIC_SOFT_TCB, TARGET_ATOMIC_SOFT_IMASK): Move to...
11849 * config/sh/sh.h (struct sh_atomic_model,
11850 selected_atomic_model, TARGET_ATOMIC_ANY, TARGET_ATOMIC_STRICT,
11851 TARGET_ATOMIC_SOFT_GUSA, TARGET_ATOMIC_HARD_LLCS,
11852 TARGET_ATOMIC_SOFT_TCB, TARGET_ATOMIC_SOFT_IMASK): ...here.
11853 Guard with __cplusplus.
11854
11855 2016-09-06 Jakub Jelinek <jakub@redhat.com>
11856
11857 PR target/69255
11858 * config/i386/i386.c (ix86_expand_builtin): For builtin with
11859 unsupported or unknown ISA, use expand_call.
11860
11861 2016-09-06 Martin Liska <mliska@suse.cz>
11862
11863 PR gcov-profile/77378
11864 PR gcov-profile/77466
11865 * tree-profile.c (tree_profiling): Detect whether target can use
11866 -fprofile-update=atomic.
11867
11868 2016-09-06 Richard Biener <rguenther@suse.de>
11869
11870 PR tree-optimization/77479
11871 * tree-vrp.c (update_value_range): Extend overflow handling to
11872 VARYING.
11873
11874 2016-09-05 Jakub Jelinek <jakub@redhat.com>
11875
11876 PR target/77476
11877 * config/i386/i386.md (isa): Add x64_avx512bw.
11878 (*zero_extendsidi2): For alternative 11 use x64_avx512bw isa.
11879 (kmov_isa): New mode attr.
11880 (zero_extend<mode>di2): Use <kmov_isa> isa for the last alternative.
11881 (*zero_extend<mode>si2): Likewise.
11882 (*zero_extendqihi2): Use avx512dq isa for the last alternative.
11883
11884 2016-09-05 Gerald Pfeifer <gerald@pfeifer.com>
11885
11886 * doc/invoke.texi (SPU Options): nops -> NOPs.
11887 (x86 Options): Ditto.
11888
11889 2016-09-05 Jakub Jelinek <jakub@redhat.com>
11890
11891 PR middle-end/77475
11892 * toplev.c (process_options): Temporarily set input_location
11893 to UNKNOWN_LOCATION around targetm.target_option.override () call.
11894
11895 2016-09-05 Uros Bizjak <ubizjak@gmail.com>
11896
11897 PR rtl-optimization/77452
11898 * explow.c (plus_constant) <case MEM>: Extract scalar constant from
11899 inner-mode reference to a CONST_VECTOR constant in the constant pool.
11900
11901 2016-09-05 Marek Polacek <polacek@redhat.com>
11902
11903 PR c/77423
11904 * doc/invoke.texi: Update -Wlogical-not-parentheses documentation.
11905
11906 2016-09-05 Jakub Jelinek <jakub@redhat.com>
11907
11908 PR other/77421
11909 * gensupport.c (alter_output_for_subst_insn): Remove redundant
11910 *insn_out == '*' test. Don't copy unnecessary to yet another
11911 memory buffer, and don't leak it.
11912
11913 PR rtl-optimization/77425
11914 * ipa-devirt.c (get_odr_type): Set val->id unconditionally.
11915
11916 2016-09-03 Kirill Yukhin <kirill.yukhin@intel.com>
11917
11918 * ubsan.c (ubsan_use_new_style_p): Fix check for empty string.
11919
11920 2016-09-02 David Malcolm <dmalcolm@redhat.com>
11921
11922 * common.opt (fdiagnostics-generate-patch): New option.
11923 * diagnostic.c: Include "edit-context.h".
11924 (diagnostic_initialize): Initialize context->edit_context_ptr.
11925 (diagnostic_finish): Delete context->edit_context_ptr.
11926 (diagnostic_report_diagnostic): Add fix-it hints from the
11927 diagnostic to context->edit_context_ptr, if any.
11928 * diagnostic.h (class edit_context): Add forward decl.
11929 (struct diagnostic_context): Add field "edit_context_ptr".
11930 * doc/invoke.texi (Diagnostic Message Formatting Options): Add
11931 -fdiagnostics-generate-patch.
11932 (-fdiagnostics-generate-patch): New item.
11933 * toplev.c: Include "edit-context.h".
11934 (process_options): Set global_dc->edit_context_ptr to a new
11935 edit_context if the options need one.
11936 (toplev::main): Handle -fdiagnostics-generate-patch by using
11937 global_dc->edit_context_ptr.
11938
11939 2016-09-02 Jakub Jelinek <jakub@redhat.com>
11940
11941 PR c/65467
11942 * gimplify.c (gimplify_adjust_omp_clauses_1): Diagnose implicit
11943 map and firstprivate clauses on target construct for _Atomic
11944 qualified decls.
11945 (gimplify_adjust_omp_clauses): Diagnose explicit firstprivate clauses
11946 on target construct for _Atomic qualified decls.
11947 * omp-low.c (use_pointer_for_field): Return true for _Atomic qualified
11948 decls.
11949 * omp-simd-clone.c (simd_clone_clauses_extract): Warn and give up for
11950 _Atomic qualified arguments not mentioned in uniform clause.
11951
11952 2016-09-02 David Malcolm <dmalcolm@redhat.com>
11953
11954 * Makefile.in (OBJS-libcommon): Add edit-context.o.
11955 * diagnostic-color.c (color_dict): Add "diff-filename",
11956 "diff-hunk", "diff-delete", and "diff-insert".
11957 (parse_gcc_colors): Update default value of GCC_COLORS in comment
11958 to reflect above changes.
11959 * doc/invoke.texi (-fdiagnostics-color): Update description of
11960 default GCC_COLORS, and of the supported capabilities.
11961 * edit-context.c: New file.
11962 * edit-context.h: New file.
11963 * input.c (struct fcache): Add field "missing_trailing_newline".
11964 (diagnostics_file_cache_forcibly_evict_file): Initialize it to
11965 true.
11966 (add_file_to_cache_tab): Likewise.
11967 (fcache::fcache): Likewise.
11968 (get_next_line): Update c->missing_trailing_newline.
11969 (location_missing_trailing_newline): New function.
11970 * input.h (location_missing_trailing_newline): New decl.
11971 * selftest-run-tests.c (selftest::run_tests): Call
11972 edit_context_c_tests.
11973 * selftest.h (edit_context_c_tests): New decl.
11974
11975 2016-09-02 Jakub Jelinek <jakub@redhat.com>
11976 Richard Biener <rguenth@suse.de>
11977
11978 PR tree-optimization/77444
11979 * tree-ssa-loop-ivopts.c (cand_value_at): For pointers use sizetype
11980 as steptype, remove redundant initialization.
11981
11982 2016-09-02 Jakub Jelinek <jakub@redhat.com>
11983
11984 PR sanitizer/77396
11985 * sanopt.c: Include gimple-ssa.h, tree-phinodes.h and ssa-iterators.h.
11986 (sanopt_optimize_walker): Optimize away
11987 __asan_before_dynamic_init (...) followed by
11988 __asan_after_dynamic_init () without intervening memory loads/stores.
11989 * ipa-pure-const.c (special_builtin_state): Handle
11990 BUILT_IN_ASAN_BEFORE_DYNAMIC_INIT and
11991 BUILT_IN_ASAN_AFTER_DYNAMIC_INIT.
11992
11993 2016-09-02 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
11994
11995 * cfg.c (free_original_copy_tables): Replace second assignment of
11996 bb_copy = NULL by bb_original = NULL.
11997
11998 2016-09-02 Jakub Jelinek <jakub@redhat.com>
11999
12000 PR other/77421
12001 * config/i386/i386.c (ix86_expanded_args_builtin): Remove redundant
12002 assignment added in r216794.
12003
12004 2016-09-02 David Malcolm <dmalcolm@redhat.com>
12005
12006 * Makefile.in (OBJS): Add typed-splay-tree.o.
12007 * selftest-run-tests.c (selftest::run_tests): Call
12008 typed_splay_tree_c_tests.
12009 * selftest.h (typed_splay_tree_c_tests): New decl.
12010 * typed-splay-tree.c: New file.
12011 * typed-splay-tree.h (typed_splay_tree::foreach_fn): New typedef.
12012 (typed_splay_tree::max): New method.
12013 (typed_splay_tree::min): New method.
12014 (typed_splay_tree::foreach): New method.
12015 (typed_splay_tree::closure): New struct.
12016 (typed_splay_tree::inner_foreach_fn): New function.
12017
12018 2016-09-02 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
12019
12020 * ipa-cp.c (ipcp_store_bits_results): Change option name from
12021 -fipa-cp-bit to -fipa-bit-cp.
12022
12023 2016-09-01 Martin Sebor <msebor@redhat.com>
12024
12025 PR tree-optimization/71831
12026 * tree-object-size.h: Return bool instead of the size and add
12027 argument for the size.
12028 * tree-object-size.c (compute_object_offset): Update signature.
12029 (addr_object_size): Same.
12030 (compute_builtin_object_size): Return bool instead of the size
12031 and add argument for the size. Handle POINTER_PLUS_EXPR when
12032 optimization is disabled.
12033 (expr_object_size): Adjust.
12034 (plus_stmt_object_size): Adjust.
12035 (pass_object_sizes::execute): Adjust.
12036 * builtins.c (fold_builtin_object_size): Adjust.
12037 * doc/extend.texi (Object Size Checking): Update.
12038 * ubsan.c (instrument_object_size): Adjust.
12039
12040 2016-09-01 Martin Sebor <msebor@redhat.com>
12041
12042 * genmatch.c (parser::parse_expr): Increase buffer size to guarantee
12043 it fits the output of the formatted function regardless of its
12044 arguments.
12045 * genmodes.c (parser::parse_expr): Same.
12046 * gimplify.c (gimplify_asm_expr): Same.
12047 * passes.c (pass_manager::register_one_dump_file): Same.
12048 * print-tree.c (print_node): Same.
12049
12050 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
12051
12052 * config/rs6000/altivec.md: Use VSCR_REGNO instead of 110 throughout.
12053
12054 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
12055
12056 * config/rs6000/altivec.md: Use VRSAVE_REGNO instead of 109 throughout.
12057
12058 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
12059
12060 * config/rs6000/altivec.md: Use CR6_REGNO instead of 74 throughout.
12061 * config/rs6000/vector.md: Ditto.
12062 * config/rs6000/vsx.md: Ditto.
12063
12064 2016-09-01 Eric Botcazou <ebotcazou@adacore.com>
12065
12066 * ipa-inline-analysis.c (param_change_prob): Get to the base object
12067 first in all cases.
12068
12069 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
12070
12071 * config/rs6000/rs6000.md (*restore_gpregs_<mode>_r11,
12072 *restore_gpregs_<mode>_r12, *restore_gpregs_<mode>_r1,
12073 *return_and_restore_gpregs_<mode>_r11,
12074 *return_and_restore_gpregs_<mode>_r12,
12075 *return_and_restore_gpregs_<mode>_r1,
12076 *return_and_restore_fpregs_<mode>_r11,
12077 *return_and_restore_fpregs_<mode>_r12,
12078 *return_and_restore_fpregs_<mode>_r1): Use the hard register LR_REGNO
12079 directly instead of via the "l" constraint. Renumber operands.
12080 Fix whitespace.
12081
12082 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
12083
12084 * config/rs6000/altivec.md (*save_world, *save_vregs_<mode>_r11,
12085 save_vregs_<mode>_r12, *restore_vregs_<mode>_r11,
12086 *restore_vregs_<mode>_r12): Use LR_REGNO instead of 65.
12087 * config/rs6000/darwin.md (load_macho_picbase, load_macho_picbase_si,
12088 load_macho_picbase_di, *call_indirect_nonlocal_darwin64,
12089 *call_nonlocal_darwin64, *call_value_indirect_nonlocal_darwin64,
12090 *call_value_nonlocal_darwin64, reload_macho_picbase,
12091 reload_macho_picbase_si, reload_macho_picbase_di): Ditto.
12092 * config/rs6000/rs6000.h (RETURN_ADDR_IN_PREVIOUS_FRAME): Ditto.
12093 * config/rs6000/rs6000.md (*save_gpregs_<mode>_r11,
12094 *save_gpregs_<mode>_r12, *save_gpregs_<mode>_r1,
12095 *save_fpregs_<mode>_r11, *save_fpregs_<mode>_r12,
12096 *save_fpregs_<mode>_r1): Ditto.
12097 * config/rs6000/spe.md (*save_gpregs_spe, *restore_gpregs_spe,
12098 *return_and_restore_gpregs_spe): Ditto.
12099
12100 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
12101
12102 * config/rs6000/rs6000.md
12103 (define_insn "*return_and_restore_fpregs_aix_<mode>_r11"): Delete
12104 the use of the link register.
12105 (define_insn "*return_and_restore_fpregs_aix_<mode>_r1"): Ditto.
12106
12107 2016-09-01 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
12108 Michael Meissner <meissner@linux.vnet.ibm.com>
12109
12110 PR target/72827
12111 * config/rs6000/rs6000.c (rs6000_legitimize_address): Avoid
12112 reg+reg addressing for TImode.
12113 (rs6000_legitimate_address_p): Only allow register indirect
12114 addressing for TImode, even without TARGET_QUAD_MEMORY.
12115
12116 2016-09-01 Richard Biener <rguenther@suse.de>
12117
12118 PR middle-end/77436
12119 * tree-chrec.c (tree_fold_binomial): Use widest_int, properly
12120 check whether the result fits the desired result type.
12121
12122 2016-09-01 Nathan Sidwell <nathan@acm.org>
12123
12124 * config/nvptx/nvptx.md (cbranch<mode>4): Op 2 can be const.
12125
12126 2016-09-01 Wilco Dijkstra <wdijkstr@arm.com>
12127
12128 * config/aarch64/aarch64.c (aarch64_legitimize_address_displacement):
12129 New function.
12130 (TARGET_LEGITIMIZE_ADDRESS_DISPLACEMENT): Define.
12131
12132 2016-09-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12133
12134 * config/aarch64/aarch64.md (*ands<mode>_compare0): New pattern.
12135 * config/aarch64/aarch64.c (aarch64_select_cc_mode): Return CC_NZmode
12136 for comparisons of integer ZERO_EXTEND against zero.
12137
12138 2016-09-01 Eric Botcazou <ebotcazou@adacore.com>
12139
12140 * config/i386/i386.c (ix86_option_override_internal): Also disable the
12141 STV pass if -mstackrealign is enabled.
12142
12143 2016-08-31 Ilya Verbin <iverbin@gmail.com>
12144
12145 * config/i386/driver-i386.c (host_detect_local_cpu): Fix detection of
12146 AVX512IFMA.
12147
12148 2016-08-31 David Malcolm <dmalcolm@redhat.com>
12149
12150 * diagnostic-show-locus.c (class layout): Add field m_fixit_hints.
12151 (layout_range::intersects_line_p): New method.
12152 (test_range_contains_point_for_single_point): Rename to...
12153 (test_layout_range_for_single_point): ...this, and add testing
12154 for layout_range::intersects_line_p.
12155 (test_range_contains_point_for_single_line): Rename to...
12156 (test_layout_range_for_single_line): ...this, and add testing
12157 for layout_range::intersects_line_p.
12158 (test_range_contains_point_for_multiple_lines): Rename to...
12159 (test_layout_range_for_multiple_lines): ...this, and add testing
12160 for layout_range::intersects_line_p.
12161 (layout::layout): Populate m_fixit_hints.
12162 (layout::get_expanded_location): Handle the case of a line-span
12163 for a fix-it hint.
12164 (layout::validate_fixit_hint_p): New method.
12165 (get_line_span_for_fixit_hint): New function.
12166 (layout::calculate_line_spans): Add spans for fixit-hints.
12167 (layout::should_print_annotation_line_p): New method.
12168 (layout::print_any_fixits): Drop param "richloc", instead using
12169 validated fixits in m_fixit_hints. Add "const" to hint pointers.
12170 (diagnostic_show_locus): Avoid printing blank annotation lines.
12171 (selftest::test_diagnostic_context::test_diagnostic_context):
12172 Initialize show_column and start_span.
12173 (selftest::test_diagnostic_context::start_span_cb): New static
12174 function.
12175 (selftest::test_diagnostic_show_locus_fixit_lines): New function.
12176 (selftest::diagnostic_show_locus_c_tests): Update for function
12177 renamings. Call test_diagnostic_show_locus_fixit_lines.
12178
12179 2016-08-31 Marc Glisse <marc.glisse@inria.fr>
12180
12181 PR tree-optimization/73714
12182 * match.pd (a * (1 << b)): Revert change from 2016-05-23.
12183
12184 2016-08-31 David Malcolm <dmalcolm@redhat.com>
12185
12186 * selftest.c: Move "namespace selftest {" to top of file,
12187 removing explicit "selftest::" qualifiers throughout.
12188
12189 2016-08-31 Marc Glisse <marc.glisse@inria.fr>
12190
12191 * config/i386/avx512fintrin.h (__m512_u, __m512i_u, __m512d_u):
12192 New types.
12193 (_mm512_loadu_pd, _mm512_storeu_pd, _mm512_loadu_ps,
12194 _mm512_storeu_ps, _mm512_loadu_si512, _mm512_storeu_si512):
12195 Replace builtin with vector extension.
12196 * config/i386/avxintrin.h (__m256_u, __m256i_u, __m256d_u):
12197 New types.
12198 (_mm256_loadu_pd, _mm256_storeu_pd, _mm256_loadu_ps,
12199 _mm256_storeu_ps, _mm256_loadu_si256, _mm256_storeu_si256):
12200 Replace builtin with vector extension.
12201 * config/i386/emmintrin.h (__m128i_u, __m128d_u): New types.
12202 (_mm_loadu_pd, _mm_storeu_pd, _mm_loadu_si128, _mm_storeu_si128):
12203 Replace builtin with vector extension.
12204 * config/i386/xmmintrin.h (__m128_u): New type.
12205 (_mm_loadu_ps, _mm_storeu_ps): Replace builtin with vector extension.
12206 (_mm_load_ps, _mm_store_ps): Simplify.
12207
12208 2016-08-31 Eric Botcazou <ebotcazou@adacore.com>
12209
12210 * config/arm/arm.c (thumb1_size_rtx_costs) <SET>: Add missing guard.
12211
12212 2016-08-30 David Malcolm <dmalcolm@redhat.com>
12213
12214 * diagnostic-show-locus.c (colorizer::begin_state): Support more
12215 than 3 ranges per diagnostic by alternating between color 1 and
12216 color 2.
12217 (layout::layout): Replace use of rich_location::MAX_RANGES
12218 with richloc->get_num_locations ().
12219 (layout::calculate_line_spans): Replace use of
12220 rich_location::MAX_RANGES with m_layout_ranges.length ().
12221 (layout::print_annotation_line): Handle arbitrary numbers of
12222 ranges in caret-printing by defaulting to '^'.
12223 (selftest::test_one_liner_many_fixits): New function.
12224 (test_diagnostic_show_locus_one_liner): Call it.
12225 * diagnostic.c (diagnostic_initialize): Update for renaming
12226 of rich_location::MAX_RANGES to
12227 rich_location::STATICALLY_ALLOCATED_RANGES.
12228 * diagnostic.h (struct diagnostic_context): Likewise.
12229
12230 2016-08-30 David Malcolm <dmalcolm@redhat.com>
12231
12232 * selftest.c (selftest::named_temp_file::named_temp_file): New
12233 ctor.
12234 (selftest::temp_source_file::~temp_source_file): Move to...
12235 (selftest::named_temp_file::~named_temp_file): ...here.
12236 (selftest::test_named_temp_file): New function.
12237 (selftest::selftest_c_tests): Call test_named_temp_file.
12238 * selftest.h (class named_temp_file): New class.
12239 (class temp_source_file): Convert to a subclass of named_temp_file.
12240
12241 2016-08-30 Segher Boessenkool <segher@kernel.crashing.org>
12242
12243 * config/rs6000/rs6000.c (rs6000_emit_epilogue): Do not emit
12244 USEs of LR_REGNO in returns and sibcalls.
12245 (rs6000_output_mi_thunk): Similar.
12246 (rs6000_sibcall_aix): Similar.
12247 * config/rs6000/rs6000.md (sibcall, sibcall_value, sibcall_local32,
12248 sibcall_local64, sibcall_value_local32, sibcall_value_local64,
12249 sibcall_nonlocal_sysv<mode>, sibcall_value_nonlocal_sysv<mode>):
12250 Remove the USE of LR_REGNO from the patterns as well. Delete an
12251 obsolete comment.
12252 (return_internal_<mode>): Delete.
12253
12254 2016-08-30 Tamar Christina <tamar.christina@arm.com>
12255
12256 * config/aarch64/aarch64-simd.md
12257 (aarch64_ld2<mode>_dreg_le): New.
12258 (aarch64_ld2<mode>_dreg_be): New.
12259 (aarch64_ld2<mode>_dreg): Removed.
12260 (aarch64_ld3<mode>_dreg_le): New.
12261 (aarch64_ld3<mode>_dreg_be): New.
12262 (aarch64_ld3<mode>_dreg): Removed.
12263 (aarch64_ld4<mode>_dreg_le): New.
12264 (aarch64_ld4<mode>_dreg_be): New.
12265 (aarch64_ld4<mode>_dreg): Removed.
12266 (aarch64_ld<VSTRUCT:nregs><VDC:mode>): Wrapper around _le, _be.
12267
12268 2016-08-30 David Malcolm <dmalcolm@redhat.com>
12269
12270 * diagnostic-show-locus.c (test_one_liner_fixit_insert): Remove
12271 redundant location param.
12272 (test_one_liner_fixit_remove): Likewise.
12273 (test_one_liner_fixit_replace): Likewise.
12274 (test_one_liner_fixit_replace_equal_secondary_range): Likewise.
12275 * gcc-rich-location.c
12276 (gcc_rich_location::add_fixit_misspelled_id): Eliminate call to
12277 get_range_from_loc. Drop overload taking a const char *.
12278 * gcc-rich-location.h
12279 (gcc_rich_location::add_fixit_misspelled_id): Drop overload taking
12280 a const char *.
12281
12282 2016-08-30 Szabolcs Nagy <szabolcs.nagy@arm.com>
12283
12284 * config/linux.c (linux_libc_has_function): Return true on musl.
12285
12286 2016-08-30 Szabolcs Nagy <szabolcs.nagy@arm.com>
12287
12288 * config.gcc (*-*-*musl*): Disable gnu-indirect-function.
12289
12290 2016-08-30 Eric Botcazou <ebotcazou@adacore.com>
12291
12292 * postreload-gcse.c (bb_has_well_behaved_predecessors): Tweak criterion
12293 used for abnormal egdes.
12294
12295 2016-08-30 Jakub Jelinek <jakub@redhat.com>
12296
12297 PR tree-optimization/72866
12298 * tree-vect-patterns.c (search_type_for_mask): Turn into
12299 a small wrapper, move all code to ...
12300 (search_type_for_mask_1): ... this new function. Add caching
12301 and adjust recursive calls.
12302
12303 PR debug/77363
12304 * dwarf2out.c (modified_type_die): Use lookup_type_die (type)
12305 instead of lookup_type_die (type_main_variant (type)) even for array
12306 types.
12307
12308 PR middle-end/77377
12309 * simplify-rtx.c (avoid_constant_pool_reference): For out of bounds
12310 constant pool reference return x instead of c.
12311
12312 2016-08-29 Segher Boessenkool <segher@kernel.crashing.org>
12313
12314 * config/rs6000/rs6000.h (CALL_REALLY_USED_REGISTERS): Do not
12315 include MQ.
12316
12317 2016-08-29 David Malcolm <dmalcolm@redhat.com>
12318
12319 * input.c
12320 (selftest::test_make_location_nonpure_range_endpoints): Fix
12321 header comment.
12322
12323 2016-08-29 David Malcolm <dmalcolm@redhat.com>
12324
12325 * diagnostic-show-locus.c
12326 (selftest::test_one_liner_fixit_validation_adhoc_locations): New
12327 function.
12328 (selftest::test_diagnostic_show_locus_one_liner): Call it.
12329 * input.c (get_pure_location): Move to libcpp/line-map.c.
12330 * input.h (get_pure_location): Convert decl to an inline function
12331 calling implementation in libcpp.
12332
12333 2016-08-29 Uros Bizjak <ubizjak@gmail.com>
12334
12335 PR target/77403
12336 * config/i386/sse.md (vec_set_lo_<mode><mask_name>): Fix assembler
12337 template for intel asm dialect.
12338 (vec_set_hi_<mode><mask_name>): Ditto.
12339
12340 2016-08-29 David Malcolm <dmalcolm@redhat.com>
12341
12342 * selftest.h (selftest::fail): Add ATTRIBUTE_NORETURN.
12343 (selftest::fail_formatted): Likewise.
12344
12345 2016-08-29 David Malcolm <dmalcolm@redhat.com>
12346
12347 * input.c (make_location): Call get_start and get_finish
12348 on the endpoints to avoid storing packed ranges or ad-hoc
12349 ranges in them.
12350 (selftest::test_make_location_nonpure_range_endpoints): New function.
12351 (selftest::input_c_tests): Call it.
12352 * input.h (get_start): New inline function.
12353
12354 2016-08-29 Tom de Vries <tom@codesourcery.com>
12355
12356 PR c/77398
12357 * gimplify.c (gimplify_va_arg_expr): Replace first argument type error
12358 with assert.
12359
12360 2016-08-29 Eric Botcazou <ebotcazou@adacore.com>
12361
12362 * Makefile.in (gcov-iov.h): Add dummy recipe.
12363
12364 2016-08-29 Nathan Sidwell <nathan@acm.org>
12365
12366 * config/nvptx/nvptx.c: #include tree-vrp.h.
12367
12368 2016-08-28 Eric Botcazou <ebotcazou@adacore.com>
12369
12370 PR target/77324
12371 * config/sparc/sparc.c (sparc_legitimate_address_p): Accept special
12372 HIGH+LO construct during reload.
12373
12374 2016-08-28 Tom de Vries <tom@codesourcery.com>
12375
12376 PR lto/70955
12377 * config/i386/i386.c (ix86_build_builtin_va_list_64): Tag type with
12378 'sysv_abi va_list' attribute.
12379 (ix86_build_builtin_va_list): Tag type with 'ms_abi va_list' attribute.
12380 (ix86_canonical_va_list_type): Handle 'sysv_abi/ms_abi va_list'
12381 attributes.
12382
12383 2016-08-27 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12384
12385 * emit-rtl.h (struct rtl_data): Make stack_slot_list a vector.
12386 * emit-rtl.c (unshare_all_rtl_1): Adjust.
12387 (unshare_all_rtl_again): Likewise.
12388 * function.c (assign_stack_local_1): Likewise.
12389 (assign_stack_temp_for_type): Likewise.
12390
12391 2016-08-27 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12392
12393 * cfgbuild.c (make_edges): Adjust.
12394 * cfgrtl.c (can_delete_label_p): Likewise.
12395 * dwarf2cfi.c (create_trace_edges): Likewise.
12396 * except.c (sjlj_emit_dispatch_table): Likewise.
12397 * function.h (struct expr_status): make x_forced_labels a vector.
12398 * jump.c (rebuild_jump_labels_1): Adjust.
12399 * reload1.c (set_initial_label_offsets): Likewise.
12400 * stmt.c (force_label_rtx): Likewise.
12401 (expand_label): Likewise.
12402
12403 2016-08-27 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12404
12405 * haifa-sched.c (fix_recovery_deps): Make ready_list a vector.
12406
12407 2016-08-27 Patrick Palka <ppalka@gcc.gnu.org>
12408
12409 PR tree-optimization/71077
12410 PR tree-optimization/68542
12411 * fold-const.c (fold_relational_const): Fix folding of
12412 VECTOR_CST comparisons that have a scalar boolean result type.
12413 (selftest::test_vector_folding): New static function.
12414 (selftest::fold_const_c_tests): Call it.
12415
12416 2016-08-27 Gerald Pfeifer <gerald@pfeifer.com>
12417
12418 * doc/extend.texi (SPU Built-in Functions): Remove stale
12419 references to material formerly at IBM and Sony.
12420
12421 2016-08-26 David Edelsohn <dje.gcc@gmail.com>
12422
12423 PR target/77349
12424 * config/rs6000/xcoff.h (DWARF_OFFSET_SIZE): Define as PTR_SIZE.
12425
12426 2016-08-26 David Malcolm <dmalcolm@redhat.com>
12427
12428 * diagnostic-show-locus.c
12429 (selftest::test_fixit_consolidation): New function.
12430 (selftest::diagnostic_show_locus_c_tests): Call it.
12431 * gcc-rich-location.h (gcc_rich_location): Eliminate unused
12432 constructor based on source_range.
12433
12434 2016-08-26 David Malcolm <dmalcolm@redhat.com>
12435
12436 * diagnostic-color.c (color_dict): Add "fixit-insert" and
12437 "fixit-delete".
12438 (parse_gcc_colors): Update description of default GCC_COLORS.
12439 * diagnostic-show-locus.c (colorizer::set_fixit_hint): Delete.
12440 (colorizer::set_fixit_insert): New method.
12441 (colorizer::set_fixit_delete): New method.
12442 (colorizer::get_color_by_name): New method.
12443 (colorizer::STATE_FIXIT_INSERT): New constant.
12444 (colorizer::STATE_FIXIT_DELETE): New constant.
12445 (class colorizer): Drop "_cs" suffix from fields. Delete "_ce"
12446 fields in favor of new field "m_stop_color". Add fields
12447 "m_fixit_insert" and "m_fixit_delete".
12448 (colorizer::colorizer): Update for above changes. Replace
12449 colorize_start calls with calls to get_color_by_name.
12450 (colorizer::begin_state): Handle STATE_FIXIT_INSERT and
12451 STATE_FIXIT_DELETE. Update for field renamings.
12452 (colorizer::finish_state): Simplify by using m_stop_color,
12453 rather than multiple identical "*_ce" fields.
12454 (colorizer::get_color_by_name): New method.
12455 (layout::print_any_fixits): Print insertions and replacements
12456 using the "fixit-insert" color, and deletions using the
12457 "fixit-delete" color.
12458 * doc/invoke.texi (-fdiagnostics-color): Update description of
12459 default GCC_COLORS, and of the supported capabilities.
12460
12461 2016-08-26 Max Filippov <jcmvbkbc@gmail.com>
12462
12463 * config/xtensa/xtensa.c (xtensa_expand_prologue): Update
12464 current_function_static_stack_size variable with the static
12465 stack frame size of the current function when
12466 flag_stack_usage_info is enabled.
12467
12468 2016-08-26 Nathan Sidwell <nathan@acm.org>
12469
12470 * ipa-inline-analysis.c (inline_write_summary): Remove unnecessary
12471 assignment inside if condition.
12472
12473 2016-08-26 Richard Biener <rguenther@suse.de>
12474
12475 PR tree-optimization/69047
12476 * tree-ssa.c (maybe_rewrite_mem_ref_base): Handle general bitfield
12477 extracts similar to what FRE does.
12478 (non_rewritable_mem_ref_base): Likewise.
12479
12480 2016-08-26 Joseph Myers <joseph@codesourcery.com>
12481
12482 * config/i386/i386.c (ix86_libgcc_floating_mode_supported_p)
12483 (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
12484 * config/i386/i386elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
12485 * config/i386/lynx.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
12486 * config/i386/netbsd-elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE):
12487 Likewise.
12488 * config/i386/netbsd64.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
12489 * config/i386/nto.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
12490 * config/i386/openbsd.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
12491 * config/i386/rtemself.h (IX86_NO_LIBGCC_TFMODE): Likewise.
12492 * config/i386/vxworks.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
12493
12494 2016-08-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12495
12496 PR target/70473
12497 * config/arm/cortex-a8-neon.md (cortex_a8_vfp_muld): Reduce
12498 reservation duration to 15 cycles.
12499 (cortex_a8_vfp_macs): Likewise.
12500 (cortex_a8_vfp_macd): Likewise.
12501 (cortex_a8_vfp_divs): Likewise.
12502 (cortex_a8_vfp_divd): Likewise.
12503
12504 2016-08-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12505
12506 * config/arm/arm.c (arm_sets_movw_movt_fusible_p): New function.
12507 (aarch_macro_fusion_pair_p): Use above to avoid early return.
12508
12509 2016-08-26 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
12510 Martin Jambhor <mjambor@suse.cz>
12511
12512 * common.opt: New option -fipa-bit-cp.
12513 * doc/invoke.texi: Document -fipa-bit-cp.
12514 * opts.c (default_options_table): Add entry for -fipa-bit-cp.
12515 (enable_fdo_optimizations): Check for flag_ipa_bit_cp.
12516 * tree-ssa-ccp.h: New header file.
12517 * tree-ssa-ccp.c: Include tree-ssa-ccp.h
12518 (bit_value_binop_1): Change to bit_value_binop_1 and export it.
12519 Replace all occurences of tree parameter by two new params: signop, int.
12520 (bit_value_unop_1): Change to bit_value_unop and export it.
12521 Replace all occurences of tree parameter by two new params: signop,
12522 int.
12523 (bit_value_binop): Change call from bit_value_binop_1 to
12524 bit_value_binop.
12525 (bit_value_assume_aligned): Likewise.
12526 (bit_value_unop): Change call from bit_value_unop_1 to bit_value_unop.
12527 (do_ssa_ccp): Pass nonzero_p || flag_ipa_cp_bit instead of nonzero_p
12528 to ccp_finalize.
12529 (ccp_finalize): Skip processing if val->mask == 0.
12530 * ipa-cp.c: Include tree-ssa-ccp.h
12531 (ipcp_bits_lattice): New class.
12532 (ipcp_param_lattice (bits_lattice): New member.
12533 (print_all_lattices): Call ipcp_bits_lattice::print.
12534 (set_all_contains_variable): Call ipcp_bits_lattice::set_to_bottom.
12535 (initialize_node_lattices): Likewise.
12536 (propagate_bits_accross_jump_function): New function.
12537 (propagate_constants_accross_call): Call
12538 propagate_bits_accross_jump_function.
12539 (ipcp_propagate_stage): Store parameter types when in_lto_p is true.
12540 (ipcp_store_bits_results): New function.
12541 (ipcp_driver): Call ipcp_store_bits_results.
12542 * ipa-prop.h (ipa_bits): New struct.
12543 (ipa_jump_func): Add new member bits of type ipa_bits.
12544 (ipa_param_descriptor): Change decl to decl_or_type.
12545 (ipa_get_param): Change decl to decl_or_type and assert on
12546 PARM_DECL.
12547 (ipa_get_type): New function.
12548 (ipcp_transformation_summary): New member bits.
12549 * ipa-prop.c (ipa_get_param_decl_index_1): s/decl/decl_or_type.
12550 (ipa_populate_param_decls): Likewise.
12551 (ipa_dump_param): Likewise.
12552 (ipa_print_node_jump_functions_for_edge): Pretty-print ipa_bits jump
12553 function.
12554 (ipa_set_jf_unknown): Set ipa_bits::known to false.
12555 (ipa_compute_jump_functions_for_edge): Compute jump function for bits
12556 propagation.
12557 (ipa_node_params_t::duplicate): Copy src->bits into dst->bits.
12558 (ipa_write_jump_function): Add streaming for ipa_bits.
12559 (ipa_read_jump_function): Add support for reading streamed ipa_bits.
12560 (write_ipcp_transformation_info): Add streaming for ipa_bits
12561 summary for ltrans.
12562 (read_ipcp_transfomration_info): Add support for reading streamed
12563 ipa_bits.
12564 (ipcp_update_bits): New function.
12565 (ipcp_transform_function): Call ipcp_update_bits.
12566
12567 2016-08-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
12568
12569 * config/mips/linux.h (MUSL_DYNAMIC_LINKER32): Update.
12570 (MUSL_DYNAMIC_LINKER64, MUSL_DYNAMIC_LINKERN32): Update.
12571
12572 2016-08-25 David Edelsohn <dje.gcc@gmail.com>
12573
12574 * multiple_target.c (pass_data_dispatcher_calls): Fix typo.
12575
12576 2016-08-25 Richard Biener <rguenther@suse.de>
12577
12578 * dwarf2out.c (gen_remaining_tmpl_value_param_die_attributes):
12579 Only add locations in late dwarf.
12580 (gen_scheduled_generic_parms_dies): Do not set early dwarf here.
12581 (dwarf2out_early_finish): But do it here.
12582
12583 2016-08-24 Michael Collison <michael.collison@linaro.org>
12584 Michael Collison <michael.collison@arm.com>
12585
12586 * config/arm/arm-modes.def: Add new condition code mode CC_V
12587 to represent the overflow bit.
12588 * config/arm/arm.c (maybe_get_arm_condition_code):
12589 Add support for CC_Vmode.
12590 (arm_gen_unlikely_cbranch): New function to generate common
12591 rtl conditional branches for overflow patterns.
12592 * config/arm/arm-protos.h: Add prototype for
12593 arm_gen_unlikely_cbranch.
12594 * config/arm/arm.md (addv<mode>4, add<mode>3_compareV,
12595 addsi3_compareV_upper): New patterns to support signed
12596 builtin overflow add operations.
12597 (uaddv<mode>4, add<mode>3_compareC, addsi3_compareV_upper):
12598 New patterns to support unsigned builtin add overflow operations.
12599 (subv<mode>4, sub<mode>3_compare1): New patterns to support signed
12600 builtin overflow subtract operations,
12601 (usubv<mode>4): New patterns to support unsigned builtin subtract
12602 overflow operations.
12603 (negvsi3, negvdi3, negdi2_compare, negsi2_carryin_compare): New patterns
12604 to support builtin overflow negate operations.
12605
12606 2016-08-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
12607
12608 Revert
12609 2016-08-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
12610
12611 * explow.c (get_dynamic_stack_size): Take known alignment of stack
12612 pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
12613 needed.
12614
12615 2016-08-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
12616
12617 * doc/fragments.texi (MULTILIB_REUSE): Mention that only options in
12618 MULTILIB_OPTIONS should be used. Small wording fixes.
12619 * genmultilib: Memorize set of all option combinations in
12620 combination_space. Detect if RHS of MULTILIB_REUSE uses an option not
12621 found in MULTILIB_OPTIONS by checking if option set is listed in
12622 combination_space. Output new and existing error message to stderr.
12623
12624 2016-08-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
12625
12626 * config/arm/t-aprofile (MULTILIB_MATCHES): Add mapping for
12627 -mcpu=cortex-a7, -mfpu=neon-fp16, -mfpu=fpv5-d16 and -mfpu=fp-armv8.
12628 Fix typo in -mfpu=vfpv3-d16-fp16 mapping.
12629 (MULTILIB_REUSE): Remove reuse rules for option set including
12630 -mfpu=fp-armv8 and -mfpu=vfpv4
12631
12632 2016-08-24 Sebastian Huber <sebastian.huber@embedded-brains.de>
12633
12634 * config/arm/t-rtems: Add vfp multilib.
12635
12636 2016-08-23 Ian Lance Taylor <iant@golang.org>
12637
12638 * config/s390/s390.c (s390_asm_file_start): Call
12639 default_file_start.
12640
12641 2016-08-23 Michael Meissner <meissner@linux.vnet.ibm.com>
12642
12643 * config/rs6000/rs6000.c (rs6000_expand_vector_init): Set
12644 initialization of all 0's to the 0 constant, instead of directly
12645 generating XOR. Add support for V4SImode vector initialization on
12646 64-bit systems with direct move, and rework the ISA 3.0 V4SImode
12647 initialization. Change variables used in V4SFmode vector
12648 intialization. For V4SFmode vector splat on ISA 3.0, make sure
12649 any memory addresses are in index form. Add support for using
12650 VSPLTH/VSPLTB to initialize vector short and vector char vectors
12651 with all of the same element.
12652 (regno_or_subregno): New helper function to return a register
12653 number for either REG or SUBREG.
12654 (rs6000_adjust_vec_address): Do not generate ADDI <reg>,R0,<num>.
12655 Use regno_or_subregno where possible.
12656 (rs6000_split_v4si_init_di_reg): New helper function to build up a
12657 DImode value from two SImode values in order to generate V4SImode
12658 vector initialization on 64-bit systems with direct move.
12659 (rs6000_split_v4si_init): Split up the insns for a V4SImode vector
12660 initialization.
12661 (rtx_is_swappable_p): V4SImode vector initialization insn is not
12662 swappable.
12663 * config/rs6000/rs6000-protos.h (rs6000_split_v4si_init): Add
12664 declaration.
12665 * config/rs6000/vsx.md (VSX_SPLAT_I): New mode iterators and
12666 attributes to initialize V8HImode and V16QImode vectors with the
12667 same element.
12668 (VSX_SPLAT_COUNT): Likewise.
12669 (VSX_SPLAT_SUFFIX): Likewise.
12670 (UNSPEC_VSX_VEC_INIT): New unspec.
12671 (vsx_concat_v2sf): Eliminate using 'preferred' register classes.
12672 Allow SFmode values to come from Altivec registers.
12673 (vsx_init_v4si): New insn/split for V4SImode vector initialization
12674 on 64-bit systems with direct move.
12675 (vsx_splat_<mode>, VSX_W iterator): Rework V4SImode and V4SFmode
12676 vector initializations, to allow V4SImode vector initializations
12677 on 64-bit systems with direct move.
12678 (vsx_splat_v4si): Likewise.
12679 (vsx_splat_v4si_di): Likewise.
12680 (vsx_splat_v4sf): Likewise.
12681 (vsx_splat_v4sf_internal): Likewise.
12682 (vsx_xxspltw_<mode>, VSX_W iterator): Eliminate using 'preferred'
12683 register classes.
12684 (vsx_xxspltw_<mode>_direct, VSX_W iterator): Likewise.
12685 (vsx_vsplt<VSX_SPLAT_SUFFIX>_di): New insns to support
12686 initializing V8HImode and V16QImode vectors with the same
12687 element.
12688 * config/rs6000/rs6000.h (TARGET_DIRECT_MOVE_64BIT): Disallow
12689 optimization if -maltivec=be.
12690
12691 2016-08-23 Christophe Lyon <christophe.lyon@linaro.org>
12692
12693 * config/arm/arm.md (arm_movqi_insn): Swap predicable_short_it
12694 attribute for alternatives 3 and 4.
12695
12696 2016-08-23 David Malcolm <dmalcolm@redhat.com>
12697
12698 * selftest.c (selftest::assert_str_contains): New function.
12699 (selftest::test_assertions): Verify ASSERT_STR_CONTAINS.
12700 * selftest.h (selftest::assert_str_contains): New decl.
12701 (ASSERT_STR_CONTAINS): New macro.
12702
12703 2016-08-23 Richard Biener <rguenther@suse.de>
12704
12705 PR tree-optimization/77286
12706 * tree-vect-loop.c (vect_analyze_loop_form_1): Do not modify
12707 the CFG here.
12708 (vect_transform_loop): Split exit edges of loop and scalar
12709 loop if required and at the appropriate time.
12710
12711 2016-08-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
12712
12713 * explow.c (get_dynamic_stack_size): Take known alignment of stack
12714 pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
12715 needed.
12716 Correct a typo in a comment.
12717
12718 2016-08-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
12719
12720 * config/s390/s390.md ("*andc_split"): New splitter for and with
12721 complement.
12722
12723 2016-08-23 Richard Biener <rguenther@suse.de>
12724
12725 PR tree-optimization/27336
12726 * tree-vrp.c (infer_value_range): Handle stmts that can throw
12727 by looking for a non-EH edge.
12728 (process_assert_insertions_for): Likewise.
12729
12730 2016-08-23 Richard Biener <rguenther@suse.de>
12731
12732 PR middle-end/77305
12733 * statistics.c (statistics_counter_event): Robustify against
12734 NULL current_pass.
12735
12736 2016-08-23 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
12737
12738 * config/i386/i386.c (processor_alias_table): Enable PTA_PRFCHW
12739 for targets amdfam10 and barcelona.
12740
12741 2016-08-22 Uros Bizjak <ubizjak@gmail.com>
12742
12743 * config/i386/i386.md (*zero_extendsidi2): Add (*r,*k) alternative.
12744 (zero_extend<mode>di2): Ditto.
12745 (*zero_extend<mode>si2): Ditto.
12746 (*zero_extendqihi2): Ditto.
12747
12748 2016-08-22 Joseph Myers <joseph@codesourcery.com>
12749
12750 PR middle-end/77269
12751 * builtins.c (fold_builtin_classify): Use builtin_decl_explicit
12752 (BUILT_IN_SIGNBIT) to expand __builtin_isinf_sign.
12753
12754 2016-08-22 Patrick Palka <ppalka@gcc.gnu.org>
12755
12756 * print-tree.c (print_node) [VECTOR_CST]: Coalesce the output of
12757 identical consecutive elements.
12758 [SSA_NAME]: Print the name's def stmt on its own line. When printing
12759 the node's def stmt, avoid printing an unwanted trailing newline by
12760 replacing the call to print_gimple_stmt() with its inlined body and
12761 adjusting it to not set pp_needs_newline and to call pp_flush()
12762 instead of pp_newline_and_flush().
12763
12764 2016-08-22 Joseph Myers <joseph@codesourcery.com>
12765
12766 * tree.h (CASE_FLT_FN_FLOATN_NX, float16_type_node)
12767 (float32_type_node, float64_type_node, float32x_type_node)
12768 (float128x_type_node): New macros.
12769 * builtin-types.def (BT_FLOAT16, BT_FLOAT32, BT_FLOAT64)
12770 (BT_FLOAT128, BT_FLOAT32X, BT_FLOAT64X, BT_FLOAT128X)
12771 (BT_FN_FLOAT16, BT_FN_FLOAT32, BT_FN_FLOAT64, BT_FN_FLOAT128)
12772 (BT_FN_FLOAT32X, BT_FN_FLOAT64X, BT_FN_FLOAT128X)
12773 (BT_FN_FLOAT16_FLOAT16, BT_FN_FLOAT32_FLOAT32)
12774 (BT_FN_FLOAT64_FLOAT64, BT_FN_FLOAT128_FLOAT128)
12775 (BT_FN_FLOAT32X_FLOAT32X, BT_FN_FLOAT64X_FLOAT64X)
12776 (BT_FN_FLOAT128X_FLOAT128X, BT_FN_FLOAT16_CONST_STRING)
12777 (BT_FN_FLOAT32_CONST_STRING, BT_FN_FLOAT64_CONST_STRING)
12778 (BT_FN_FLOAT128_CONST_STRING, BT_FN_FLOAT32X_CONST_STRING)
12779 (BT_FN_FLOAT64X_CONST_STRING, BT_FN_FLOAT128X_CONST_STRING)
12780 (BT_FN_FLOAT16_FLOAT16_FLOAT16, BT_FN_FLOAT32_FLOAT32_FLOAT32)
12781 (BT_FN_FLOAT64_FLOAT64_FLOAT64, BT_FN_FLOAT128_FLOAT128_FLOAT128)
12782 (BT_FN_FLOAT32X_FLOAT32X_FLOAT32X)
12783 (BT_FN_FLOAT64X_FLOAT64X_FLOAT64X)
12784 (BT_FN_FLOAT128X_FLOAT128X_FLOAT128X): New type definitions.
12785 * builtins.def (DEF_GCC_FLOATN_NX_BUILTINS): New macro.
12786 (copysign, fabs, huge_val, inf, nan, nans): Use it.
12787 * builtins.c (expand_builtin): Use CASE_FLT_FN_FLOATN_NX for fabs
12788 and copysign.
12789 (fold_builtin_0): Use CASE_FLT_FN_FLOATN_NX for inf and huge_val.
12790 (fold_builtin_1): Use CASE_FLT_FN_FLOATN_NX for fabs.
12791 * doc/extend.texi (Other Builtins): Document these built-in
12792 functions.
12793 * fold-const-call.c (fold_const_call): Use CASE_FLT_FN_FLOATN_NX
12794 for nan and nans.
12795
12796 2016-08-22 Gerald Pfeifer <gerald@pfeifer.com>
12797
12798 * doc/install.texi (Binaries): www.opencsw.org now uses https.
12799
12800 2016-08-22 Richard Biener <rguenther@suse.de>
12801
12802 * tree-ssa-forwprop.c (pass_forwprop::execute): Use RPO order.
12803
12804 2016-08-21 Uros Bizjak <ubizjak@gmail.com>
12805
12806 PR target/77270
12807 * config/i386/i386.md (prefetch): When TARGET_PRFCHW or
12808 TARGET_PREFETCHWT1 are disabled, emit 3dNOW! write prefetches for
12809 non-SSE2 athlons only, otherwise prefer SSE prefetches.
12810
12811 2016-08-20 Kugan Vivekanandarajah <kuganv@linaro.org>
12812
12813 * tree-vrp.c (vrp_visit_assignment_or_call): Changed to Return VR.
12814 (vrp_visit_cond_stmt): Just sets TAKEN_EDGE_P.
12815 (vrp_visit_switch_stmt): Likewise.
12816 (extract_range_from_stmt): Factored out from vrp_visit_stmt.
12817 (extract_range_from_phi_node): Factored out from vrp_visit_phi_stmt.
12818 (vrp_visit_stmt): Use extract_range_from_stmt.
12819 (vrp_visit_phi_node): Use extract_range_from_phi_node.
12820
12821 2016-08-20 Kugan Vivekanandarajah <kuganv@linaro.org>
12822
12823 * Makefile.in: Add tree-vrp.h to GTFILES.
12824 * gengtype.c (open_base_files): Add tree-vrp.h.
12825 * asan.c: Add tree-vrp.h which now has the definition value_range_type.
12826 * builtins.c: Likewise.
12827 * fold-const.c: Likewise.
12828 * gimple-builder.c: Likewise.
12829 * gimple-laddress.c: Likewise.
12830 * hsa-gen.c: Likewise.
12831 * internal-fn.c: Likewise.
12832 * ssa.h: Likewise.
12833 * targhooks.c: Liewise,
12834 * tree-ssa-address.c: Likewise.
12835 * tree-ssanames.h (value_range_type: Move to tree-vrp.h.
12836 * tree-vrp.c (struct value_range): Move to tree-vrp.h
12837 * tree-vrp.h: New file.
12838
12839 2016-08-20 Kugan Vivekanandarajah <kuganv@linaro.org>
12840
12841 PR tree-optimization/61839
12842 * tree-vrp.c (two_valued_val_range_p): New.
12843 (simplify_stmt_using_ranges): Convert CST BINOP VAR where VAR is
12844 two-valued to VAR == VAL1 ? (CST BINOP VAL1) : (CST BINOP VAL2).
12845 Also Convert VAR BINOP CST where VAR is two-valued to
12846 VAR == VAL1 ? (VAL1 BINOP CST) : (VAL2 BINOP CST).
12847
12848 2016-08-19 David Malcolm <dmalcolm@redhat.com>
12849
12850 * diagnostic-show-locus.c
12851 (layout::annotation_line_showed_range_p): New method.
12852 (layout::print_any_fixits): Remove case fixit_hint::REMOVE.
12853 Reimplement case fixit_hint::REPLACE to cover removals, and
12854 replacements where the range of the replacement isn't one
12855 of the ranges in the rich_location.
12856 (test_one_liner_fixit_replace): Likewise.
12857 (selftest::test_one_liner_fixit_replace_non_equal_range): New
12858 function.
12859 (selftest::test_one_liner_fixit_replace_equal_secondary_range):
12860 New function.
12861 (selftest::test_diagnostic_show_locus_one_liner): Call the new
12862 functions.
12863 * diagnostic.c (print_parseable_fixits): Remove case
12864 fixit_hint::REMOVE.
12865
12866 2016-08-19 Uros Bizjak <ubizjak@gmail.com>
12867
12868 PR target/77270
12869 * config/i386/i386.c (ix86_option_override_internal): Remove
12870 PTA_PRFCHW from entries that also have PTA_3DNOW flag.
12871 Enable SSE prefetch also for TARGET_PREFETCHWT1.
12872 Do not try to enable TARGET_PRFCHW ISA flag here.
12873 * config/i386/i386.md (prefetch): Enable also for TARGET_3DNOW.
12874 Rewrite expander function body.
12875 (*prefetch_3dnow): Enable for TARGET_3DNOW and TARGET_PREFETCHWT1.
12876
12877 2016-08-19 Joseph Myers <joseph@codesourcery.com>
12878
12879 PR c/32187
12880 * tree-core.h (TI_COMPLEX_FLOAT16_TYPE)
12881 (TI_COMPLEX_FLOATN_NX_TYPE_FIRST, TI_COMPLEX_FLOAT32_TYPE)
12882 (TI_COMPLEX_FLOAT64_TYPE, TI_COMPLEX_FLOAT128_TYPE)
12883 (TI_COMPLEX_FLOAT32X_TYPE, TI_COMPLEX_FLOAT64X_TYPE)
12884 (TI_COMPLEX_FLOAT128X_TYPE, TI_FLOAT16_TYPE, TI_FLOATN_TYPE_FIRST)
12885 (TI_FLOATN_NX_TYPE_FIRST, TI_FLOAT32_TYPE, TI_FLOAT64_TYPE)
12886 (TI_FLOAT128_TYPE, TI_FLOATN_TYPE_LAST, TI_FLOAT32X_TYPE)
12887 (TI_FLOATNX_TYPE_FIRST, TI_FLOAT64X_TYPE, TI_FLOAT128X_TYPE)
12888 (TI_FLOATNX_TYPE_LAST, TI_FLOATN_NX_TYPE_LAST): New enum
12889 tree_index values.
12890 (NUM_FLOATN_TYPES, NUM_FLOATNX_TYPES, NUM_FLOATN_NX_TYPES): New
12891 macros.
12892 (struct floatn_type_info): New structure type.
12893 (floatn_nx_types): New variable declaration.
12894 * tree.h (FLOATN_TYPE_NODE, FLOATN_NX_TYPE_NODE)
12895 (FLOATNX_TYPE_NODE, float128_type_node, float64x_type_node)
12896 (COMPLEX_FLOATN_NX_TYPE_NODE): New macros.
12897 * tree.c (floatn_nx_types): New variable.
12898 (build_common_tree_nodes): Initialize _FloatN, _FloatNx and
12899 corresponding complex types.
12900 * target.def (floatn_mode): New hook.
12901 * targhooks.c: Include "real.h".
12902 (default_floatn_mode): New function.
12903 * targhooks.h (default_floatn_mode): New prototype.
12904 * doc/extend.texi (Floating Types): Document _FloatN and _FloatNx
12905 types.
12906 * doc/sourcebuild.texi (float@var{n}, float@var{n}x): Document new
12907 effective-target and dg-add-options keywords.
12908 (float@var{n}_runtime, float@var{n}x_runtime, floatn_nx_runtime):
12909 Document new effective-target keywords.
12910 * doc/tm.texi.in (TARGET_FLOATN_MODE): New @hook.
12911 * doc/tm.texi: Regenerate.
12912 * ginclude/float.h (LDBL_DECIMAL_DIG): Define to
12913 __LDBL_DECIMAL_DIG__, not __DECIMAL_DIG__.
12914 [__STDC_WANT_IEC_60559_TYPES_EXT__]: Define macros from TS
12915 18661-3.
12916 * real.h (struct real_format): Add field ieee_bits.
12917 * real.c (ieee_single_format, mips_single_format)
12918 (motorola_single_format, spu_single_format, ieee_double_format)
12919 (mips_double_format, motorola_double_format)
12920 (ieee_extended_motorola_format, ieee_extended_intel_96_format)
12921 (ieee_extended_intel_128_format)
12922 (ieee_extended_intel_96_round_53_format, ibm_extended_format)
12923 (mips_extended_format, ieee_quad_format, mips_quad_format)
12924 (vax_f_format, vax_d_format, vax_g_format, decimal_single_format)
12925 (decimal_double_format, decimal_quad_format, ieee_half_format)
12926 (arm_half_format, real_internal_format: Initialize ieee_bits
12927 field.
12928 * config/i386/i386.c (ix86_init_builtin_types): Do not initialize
12929 float128_type_node. Set float80_type_node to float64x_type_node
12930 if appropriate and long_double_type_node not appropriate.
12931 * config/ia64/ia64.c (ia64_init_builtins): Likewise.
12932 * config/pdp11/pdp11.c (pdp11_f_format, pdp11_d_format):
12933 Initialize ieee_bits field.
12934 * config/rs6000/rs6000.c (TARGET_FLOATN_MODE): New macro.
12935 (rs6000_init_builtins): Set ieee128_float_type_node to
12936 float128_type_node.
12937 (rs6000_floatn_mode): New function.
12938
12939 2016-08-19 Jakub Jelinek <jakub@redhat.com>
12940
12941 * config/i386/rdseedintrin.h (_rdseed16_step, _rdseed32_step,
12942 _rdseed64_step): Uglify argument names and/or local variable names
12943 in inline functions.
12944 * config/i386/rtmintrin.h (_xabort): Likewise.
12945 * config/i386/avx512vlintrin.h (_mm256_ternarylogic_epi64,
12946 _mm256_mask_ternarylogic_epi64, _mm256_maskz_ternarylogic_epi64,
12947 _mm256_ternarylogic_epi32, _mm256_mask_ternarylogic_epi32,
12948 _mm256_maskz_ternarylogic_epi32, _mm_ternarylogic_epi64,
12949 _mm_mask_ternarylogic_epi64, _mm_maskz_ternarylogic_epi64,
12950 _mm_ternarylogic_epi32, _mm_mask_ternarylogic_epi32,
12951 _mm_maskz_ternarylogic_epi32): Likewise.
12952 * config/i386/lwpintrin.h (__llwpcb, __lwpval32, __lwpval64,
12953 __lwpins32, __lwpins64): Likewise.
12954 * config/i386/avx2intrin.h (_mm_i32gather_pd, _mm_mask_i32gather_pd,
12955 _mm256_i32gather_pd, _mm256_mask_i32gather_pd, _mm_i64gather_pd,
12956 _mm_mask_i64gather_pd, _mm256_i64gather_pd, _mm256_mask_i64gather_pd,
12957 _mm_i32gather_ps, _mm_mask_i32gather_ps, _mm256_i32gather_ps,
12958 _mm256_mask_i32gather_ps, _mm_i64gather_ps, _mm_mask_i64gather_ps,
12959 _mm256_i64gather_ps, _mm256_mask_i64gather_ps, _mm_i32gather_epi64,
12960 _mm_mask_i32gather_epi64, _mm256_i32gather_epi64,
12961 _mm256_mask_i32gather_epi64, _mm_i64gather_epi64,
12962 _mm_mask_i64gather_epi64, _mm256_i64gather_epi64,
12963 _mm256_mask_i64gather_epi64, _mm_i32gather_epi32,
12964 _mm_mask_i32gather_epi32, _mm256_i32gather_epi32,
12965 _mm256_mask_i32gather_epi32, _mm_i64gather_epi32,
12966 _mm_mask_i64gather_epi32, _mm256_i64gather_epi32,
12967 _mm256_mask_i64gather_epi32): Likewise.
12968 * config/i386/pmm_malloc.h (_mm_malloc, _mm_free): Likewise.
12969 * config/i386/ia32intrin.h (__writeeflags): Likewise.
12970 * config/i386/pkuintrin.h (_wrpkru): Likewise.
12971 * config/i386/avx512pfintrin.h (_mm512_mask_prefetch_i32gather_pd,
12972 _mm512_mask_prefetch_i32gather_ps, _mm512_mask_prefetch_i64gather_pd,
12973 _mm512_mask_prefetch_i64gather_ps, _mm512_prefetch_i32scatter_pd,
12974 _mm512_prefetch_i32scatter_ps, _mm512_mask_prefetch_i32scatter_pd,
12975 _mm512_mask_prefetch_i32scatter_ps, _mm512_prefetch_i64scatter_pd,
12976 _mm512_prefetch_i64scatter_ps, _mm512_mask_prefetch_i64scatter_pd,
12977 _mm512_mask_prefetch_i64scatter_ps): Likewise.
12978 * config/i386/gmm_malloc.h (_mm_malloc, _mm_free): Likewise.
12979 * config/i386/avx512fintrin.h (_mm512_ternarylogic_epi64,
12980 _mm512_mask_ternarylogic_epi64, _mm512_maskz_ternarylogic_epi64,
12981 _mm512_ternarylogic_epi32, _mm512_mask_ternarylogic_epi32,
12982 _mm512_maskz_ternarylogic_epi32, _mm512_i32gather_ps,
12983 _mm512_mask_i32gather_ps, _mm512_i32gather_pd, _mm512_i64gather_ps,
12984 _mm512_i64gather_pd, _mm512_i32gather_epi32, _mm512_i32gather_epi64,
12985 _mm512_i64gather_epi32, _mm512_i64gather_epi64): Likewise.
12986
12987 * config/i386/fxsrintrin.h (_fxsave): Remove return keyword in inlines
12988 returning void.
12989 (_fxrstor, _fxsave64, _fxrstor64): Likewise.
12990 * config/i386/xsaveintrin.h (_xsave, _xrstor, _xsave64, _xrstor64):
12991 Likewise.
12992 * config/i386/xsaveoptintrin.h (_xsaveopt, _xsaveopt64): Likewise.
12993 * config/i386/pkuintrin.h (_wrpkru): Likewise. Add space after
12994 function name.
12995 (_rdpkru_u32): Add space after function name.
12996
12997 * config/i386/t-i386 (i386-c.o): Don't depend on
12998 i386-builtin-types.inc.
12999 (i386.o): Depend on i386-builtin-types.inc.
13000
13001 2016-08-19 Matthew Wahab <matthew.wahab@arm.com>
13002
13003 PR target/77281
13004 * config/arm/arm.c (neon_valid_immediate): Delete declaration.
13005 Use const_vec_duplicate to check for duplicated elements.
13006
13007 2016-08-19 Richard Biener <rguenther@suse.de>
13008
13009 PR tree-optimization/77290
13010 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
13011 Fix flag_tree_parallelize_loops check.
13012
13013 2016-08-19 Richard Biener <rguenther@suse.de>
13014
13015 * match.pd (x | 0 -> x): Add.
13016
13017 2016-08-19 Richard Biener <rguenther@suse.de>
13018
13019 PR tree-optimization/77286
13020 * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
13021 Deal with virtual PHIs being out-of-order.
13022
13023 2016-08-18 David Malcolm <dmalcolm@redhat.com>
13024
13025 * doc/invoke.texi (fverbose-asm): Note that source code lines
13026 are emitted, and provide an example.
13027 * final.c (asm_show_source): New function.
13028 (final_scan_insn): Call asm_show_source.
13029
13030 2016-08-18 David Malcolm <dmalcolm@redhat.com>
13031
13032 * diagnostic-show-locus.c (colorizer::colorizer): Replace diagnostic
13033 param with diagnostic_kind.
13034 (class colorizer): Similarly replace field m_diagnostic with
13035 m_diagnostic_kind.
13036 (colorizer::colorizer): Replace diagnostic
13037 param with diagnostic_kind.
13038 (colorizer::begin_state): Update for above field change.
13039 (layout::layout): Replace diagnostic param with rich_location *
13040 and diagnostic_kind.
13041 (diagnostic_show_locus): Replace diagnostic param with richloc
13042 and diagnostic_kind.
13043 (class selftest::test_diagnostic_context): New class.
13044 (selftest::test_diagnostic_show_locus_unknown_location): New
13045 function.
13046 (selftest::test_one_liner_simple_caret): New function.
13047 (selftest::test_one_liner_caret_and_range): New function.
13048 (selftest::test_one_liner_multiple_carets_and_ranges): New
13049 function.
13050 (selftest::test_one_liner_fixit_remove): New function.
13051 (selftest::test_one_liner_fixit_replace): New function.
13052 (selftest::test_diagnostic_show_locus_one_liner): New function.
13053 (selftest::diagnostic_show_locus_c_tests): Call the new test
13054 functions.
13055 * diagnostic.c (diagnostic_initialize): Initialize
13056 colorize_source_p, show_ruler_p and parseable_fixits_p.
13057 (default_diagnostic_finalizer): Update for change to
13058 diagnostic_show_locus.
13059 (diagnostic_append_note): Likewise.
13060 * diagnostic.h (diagnostic_show_locus): Replace
13061 const diagnostic_info * param with location * and diagnostic_t.
13062
13063 2016-08-18 David Malcolm <dmalcolm@redhat.com>
13064
13065 * input.c (saved_line_table): New global.
13066 (class selftest::temp_line_table): Rename to line_table_test and
13067 move declaration to selftest.h, and drop field m_old_line_table.
13068 (selftest::temp_line_table::temp_line_table): Rename ctor to...
13069 (selftest::line_table_test::line_table_test): ...this. Add a
13070 default ctor. Store current value of line_table within
13071 saved_line_table.
13072 (selftest::temp_line_table::~temp_line_table): Rename dtor to...
13073 (selftest::line_table_test::~line_table_test): ...this, and
13074 restore line_table from the saved_line_table, rather than
13075 m_old_line_table.
13076 (selftest::test_accessing_ordinary_linemaps): Update for above
13077 renaming.
13078 (selftest::test_lexer): Likewise.
13079 (struct selftest::lexer_test): Likewise.
13080 (selftest::lexer_test::lexer_test): Likewise.
13081 (selftest::input_c_tests): Move the looping over test cases from
13082 here into...
13083 (selftest::for_each_line_table_case): New function.
13084 * input.h (saved_line_table): New decl.
13085 * selftest.h (struct selftest::line_table_case): New forward decl.
13086 (class selftest::line_table_test): New class, moved here from
13087 selftest::temp_line_table in input.c, and renamed.
13088 (selftest::for_each_line_table_case): New decl.
13089
13090 2015-08-18 H.J. Lu <hongjiu.lu@intel.com>
13091
13092 PR target/72839
13093 * config/i386/i386.c (lakemont_cost): Set MOVE_RATIO to 17.
13094
13095 2016-08-18 Chung-Lin Tang <cltang@codesourcery.com>
13096
13097 PR middle-end/70895
13098 * gimplify.c (omp_add_variable): Adjust/add variable mapping on
13099 enclosing parallel construct for reduction variables on OpenACC loop
13100 directives.
13101
13102 2016-08-18 Pierre-Marie de Rodat <derodat@adacore.com>
13103
13104 * dwarf2out.c (copy_dwarf_procedure): Remove obsolete comment.
13105 (new_dwarf_proc_die): Emit DW_TAG_dwarf_procedure DIEs even for
13106 -gdwarf-3.
13107 (function_to_dwarf_procedure): Update comment.
13108
13109 2016-08-18 David Malcolm <dmalcolm@redhat.com>
13110
13111 * input.c (diagnostics_file_cache_forcibly_evict_file): New
13112 function.
13113 * input.h (diagnostics_file_cache_forcibly_evict_file): New
13114 declaration.
13115 * selftest.c (selftest::temp_source_file::~temp_source_file):
13116 Evict m_filename from the diagnostic file cache.
13117
13118 2016-08-18 Richard Biener <rguenther@suse.de>
13119
13120 * tree-pass.h (make_pass_materialize_all_clones): Declare.
13121 * ipa.c (pass_data_materialize_all_clones, pass_materialize_all_clones,
13122 make_pass_materialize_all_clones): New simple IPA pass encapsulating
13123 clone materialization.
13124 * passes.def (all_late_ipa_passes): Start with
13125 pass_materialize_all_clones.
13126 * cgraphunit.c (symbol_table::compile): Remove call to
13127 materialize_all_clones.
13128 * tree-into-ssa.c: Include statistics.h.
13129 (update_ssa): Count number of times we do incremental/rewrite
13130 SSA update.
13131
13132 2016-08-18 Richard Biener <rguenther@suse.de>
13133
13134 PR tree-optimization/77282
13135 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
13136 When doing auto-parallelizing also prevent use of PHIs that
13137 carry dependences across loop backedges.
13138
13139 2016-08-18 Tamar Christina <tamar.christina@arm.com>
13140 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
13141
13142 * varasm.c (default_use_anchors_for_symbol_p): Reject too large decls.
13143
13144 2016-08-18 Richard Biener <rguenther@suse.de>
13145
13146 * ssa-iterators.h (ssa_vuse_operand): New inline.
13147 * tree-if-conv.c (ifc_temp_var): Update virtual operand.
13148 (predicate_all_scalar_phis): Use remove_phi_node to remove
13149 phi nodes predicated. Delay removing virtual PHIs.
13150 (predicate_mem_writes): Update virtual operands.
13151 (combine_blocks): Likewise. Propagate out remaining virtual PHIs.
13152 (tree_if_conversion): Do not rewrite virtual SSA form.
13153 * tree-phinodes.c (release_phi_node): Make static.
13154 * tree-phinodes.h (release_phi_node): Remove.
13155
13156 2016-08-18 Jakub Jelinek <jakub@redhat.com>
13157
13158 * config/i386/i386.c (enum ix86_builtins): Remove IX86_BUILTIN_*
13159 codes that appear in bdesc_* arrays, instead include i386-builtin.def
13160 twice to define those.
13161 (bdesc_comi, bdesc_pcmpestr, bdesc_pcmpistr, bdesc_special_args,
13162 bdesc_args, bdesc_round_args, bdesc_mpx, bdesc_mpx_const,
13163 bdesc_multi_arg): Define by including i386-builtin.def the third time.
13164 * config/i386/i386-builtin.def: New file.
13165
13166 2016-08-17 David Malcolm <dmalcolm@redhat.com>
13167
13168 * input.c (get_source_range_for_char): Rename to...
13169 (selftest::get_source_range_for_char): ...this, and move within
13170 the #if CHECKING_P guard.
13171 (get_num_source_ranges_for_substring): Rename to...
13172 (selftest::get_num_source_ranges_for_substring): ...this, move
13173 within the #if CHECKING_P guard, and make static.
13174 (selftest::assert_num_substring_ranges): Initialize
13175 actual_num_ranges.
13176
13177 2016-08-18 Alan Modra <amodra@gmail.com>
13178
13179 PR rtl-optimization/72771
13180 * reload.c (find_reloads): Don't assume that a subreg mem is OK
13181 when find_reloads_toplev returns address_reloaded==-1.
13182 (alternative_allows_const_pool_ref): Update comment.
13183
13184 2015-08-17 Alan Hayward <alan.hayward@arm.com>
13185
13186 PR tree-optimization/71752
13187 * tree-vect-loop.c (vectorizable_reduction): Keep SLP operand ordering.
13188 * tree-vect-slp.c (vect_get_slp_defs): Handle null operands.
13189
13190 2016-08-17 Jakub Jelinek <jakub@redhat.com>
13191
13192 * gimple-fold.c (gimple_fold_call): Use gimple_call_noreturn_p
13193 instead of testing ECF_NORETURN bit in gimple_call_flags.
13194 * tree-cfg.c (make_edges_bb, execute_fixup_cfg): Likewise.
13195 * predict.c (tree_bb_level_predictions): Likewise.
13196 * gimple-low.c (gimple_stmt_may_fallthru): Likewise.
13197
13198 PR middle-end/77259
13199 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): If
13200 turning a call into __builtin_unreachable-like noreturn call, adjust
13201 gimple_call_set_fntype.
13202 * tree-cfgcleanup.c (fixup_noreturn_call): Remove lhs also if
13203 gimple_call_fntype has void return type.
13204
13205 2016-08-17 Chung-Lin Tang <cltang@codesourcery.com>
13206
13207 * omp-low.c (lower_oacc_reductions): Adjust variable lookup to use
13208 maybe_lookup_decl, to handle nested acc loop directives.
13209
13210 2016-08-17 Richard Biener <rguenther@suse.de>
13211
13212 PR tree-optimization/76490
13213 * tree-vrp.c (update_value_range): Preserve overflow infinities
13214 when intersecting with ranges from get_range_info.
13215 (operand_less_p): Handle overflow infinities correctly.
13216 (value_range_constant_singleton): Use vrp_operand_equal_p
13217 to handle overflow max/min correctly.
13218 (vrp_valueize): Likewise.
13219 (union_ranges): Likewise.
13220 (intersect_ranges): Likewise.
13221 (vrp_visit_phi_node): Improve iteration limitation to only
13222 apply when we'll possibly re-visit the PHI via a changed argument
13223 on the backedge.
13224
13225 2016-08-17 Thomas Preud'homme <thomas.preudhomme@arm.com>
13226
13227 * config/arm/t-aprofile (MULTILIB_EXCEPTIONS): Rewrite into ...
13228 (MULTILIB_REQUIRED): This by specifying multilib needing to be built
13229 rather than those that should not be built.
13230
13231 2016-08-17 Stanislaw Halik <sthalik@misaki.pl>
13232
13233 PR target/66488
13234 * config/i386/xm-mingw32.h (HOST_BITS_PER_PTR): Define if __x86_64__.
13235
13236 2016-08-17 Richard Biener <rguenther@suse.de>
13237
13238 * tree-ssa.c: Include tree-cfg.h and tree-dfa.h.
13239 (verify_vssa): New function verifying virtual SSA form.
13240 (verify_ssa): Call it.
13241 * tree-ssa-loop-manip.c (slpeel_update_phi_nodes_for_guard2):
13242 Do not apply loop-closed SSA handling to virtuals.
13243 * ssa-iterators.h (op_iter_init): Handle GIMPLE_TRANSACTION.
13244 * tree-into-ssa.c (prepare_use_sites_for): Skip virtual SSA names
13245 when rewriting their symbol.
13246 (prepare_def_site_for): Likewise.
13247 * tree-chkp-opt.c (chkp_reduce_bounds_lifetime): Clear virtual
13248 operands of moved stmts.
13249
13250 2016-08-17 Richard Biener <rguenther@suse.de>
13251
13252 PR tree-optimization/23855
13253 * tree-ssa-loop-unswitch.c: Include tree-ssa-loop-manip.h.
13254 (tree_unswitch_outer_loop): Iterate find_loop_guard as long as we
13255 find guards to hoist. Do not update SSA form but rewrite virtuals
13256 into loop closed SSA.
13257 (find_loop_guard): Adjust to skip already hoisted guards. Do
13258 not mark virtuals for renaming or update SSA form.
13259
13260 2016-08-17 Martin Liska <mliska@suse.cz>
13261
13262 * coverage.c (get_gcov_type): Replace GCOV_TYPE_SIZE with
13263 a LONG_LONG_TYPE_SIZE comparison.
13264 * gcov-io.h: Remove macro definitions.
13265 * tree-profile.c (gimple_gen_edge_profiler): Replace usage
13266 of GCOV_TYPE_ATOMIC_FETCH_ADD with a LONG_LONG_TYPE_SIZE
13267 comparison.
13268
13269 2016-08-16 Jakub Jelinek <jakub@redhat.com>
13270
13271 * config/i386/i386.c (enum ix86_builtins): Reorder enumerators, so
13272 that builtins not mentioned in bdesc_* arrays come first, then
13273 the ones mentioned in bdesc_* arrays in the order they appear in
13274 the arrays in between IX86_BUILTIN__BDESC_*_FIRST and
13275 IX86_BUILTIN__BDESC_*_LAST enumerator.
13276 (bdesc_mpx): Fix up a comment typo.
13277 (bdesc_multi_arg): Remove __builtin_ia32_vpcomne[bwdq] and
13278 __builtin_ia32_vpcomneu[bwdq] builtins.
13279 (BDESC_VERIFY, BDESC_VERIFYS): Define.
13280 (ix86_init_mmx_sse_builtins, ix86_init_mpx_builtins): Verify
13281 enum ix86_builtins ordering.
13282 (ix86_expand_builtin): Use enum ix86_builtins ordering assumption
13283 for direct bdesc_* array member access instead of searching all the
13284 arrays until an fcode match is found.
13285
13286 2016-08-16 Uros Bizjak <ubizjak@gmail.com>
13287
13288 * config/i386/i386.md (*ashl<mode>3_mask): Rewrite define_insn
13289 pattern as define_insn_and_split. Split insn before reload to
13290 ashl<mode>3_1.
13291 (*<shift_insn><mode>3_mask): Ditto. Split insn before reload to
13292 <shift_insn><mode>3_1.
13293 (*<rotate_insn><mode>3_mask): Ditto. Split insn before reload to
13294 <rotate_insn><mode>3_1.
13295
13296 2016-08-16 David Malcolm <dmalcolm@redhat.com>
13297
13298 PR c/72857
13299 * input.c (get_source_range_for_substring): Rename to...
13300 (get_source_location_for_substring): ...this, adding param
13301 "caret_idx", and converting output param from source_range * to
13302 location_t *.
13303 (get_source_range_for_char): New function.
13304 (get_num_source_ranges_for_substring): Update comment to reflect
13305 above renaming.
13306 (assert_char_at_range): Update to use get_source_range_for_char
13307 rather than get_source_range_for_substring.
13308 (test_lexer_string_locations_concatenation_2): Likewise.
13309 * substring-locations.h (get_source_range_for_substring): Rename
13310 to...
13311 (get_source_location_for_substring): ...this, and adding param
13312 "caret_idx", and converting output param from source_range * to
13313 location_t *.
13314
13315 2016-08-16 David Malcolm <dmalcolm@redhat.com>
13316
13317 * input.c (class selftest::temp_source_file): Move to
13318 selftest.h.
13319 (selftest::temp_source_file::temp_source_file): Move to
13320 selftest.c.
13321 (selftest::temp_source_file::~temp_source_file): Likewise.
13322 * selftest.c (selftest::temp_source_file::temp_source_file): Move
13323 here from input.c.
13324 (selftest::temp_source_file::~temp_source_file): Likewise.
13325 * selftest.h (class selftest::temp_source_file): Move here from
13326 input.c
13327
13328 2016-08-16 Jakub Jelinek <jakub@redhat.com>
13329
13330 PR target/71910
13331 * tree-cfg.c (execute_fixup_cfg): Add node variable, use it. Before
13332 inlining, add cgraph edge for the added __builtin_unreachable call.
13333
13334 PR middle-end/67485
13335 * expmed.c (expand_mult_const): Change val_so_far's type to UHWI,
13336 only cast it to SHWI for the final comparison.
13337
13338 2016-08-16 Martin Liska <mliska@suse.cz>
13339
13340 PR gcov-profile/36412
13341 * doc/gcov.texi: Document --hash-filenames(-x).
13342 * gcov.c (print_usage): Add the option.
13343 (process_args): Process the option, sort options alphabetically.
13344 (md5sum_to_hex): New function.
13345 (make_gcov_file_name): Do the md5sum and append it to a
13346 filename.
13347
13348 2016-08-16 Bin Cheng <bin.cheng@arm.com>
13349
13350 PR tree-optimization/69848
13351 * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Invert NE
13352 and swtich operands to avoid additional NOT instruction.
13353 (vcond<v_cmp_mixed><mode>): Ditto.
13354 (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
13355
13356 2016-08-16 Eric Botcazou <ebotcazou@adacore.com>
13357
13358 * doc/install.texi (*-*-solaris2*): Adjust latest change.
13359
13360 2016-08-16 Richard Biener <rguenther@suse.de>
13361
13362 PR tree-optimization/76783
13363 * tree-ssa-propagate.c (ssa_prop_init): Use RPO order. Clear
13364 BB visited flags at start.
13365
13366 2016-08-16 Bin Cheng <bin.cheng@arm.com>
13367
13368 PR tree-optimization/72817
13369 PR tree-optimization/73450
13370 * tree-ssa-loop-niter.c (number_of_iterations_ne): Check
13371 multiple_of_p for adjusted IV.base.
13372
13373 2016-08-15 Uros Bizjak <ubizjak@gmail.com>
13374
13375 PR target/72867
13376 * config/i386/sse.md (<code><mode>3<mask_name><round_saeonly_name>):
13377 Emit ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>
13378 for !flag_finite_math_only or flag_signed_zeros.
13379 (*<code><mode>3<mask_name><round_saeonly_name>): Rename from
13380 *<code><mode>3_finite<mask_name><round_saeonly_name>. Do not
13381 depend on flag_finite_math_only.
13382 (ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>):
13383 New insn pattern.
13384 (*<code><mode>3<mask_name><round_saeonly_name>): Remove.
13385 (*ieee_smin<mode>3): Ditto.
13386 (*ieee_smax<mode>3): Ditto.
13387 * config/i386/mmx.md (mmx_<code>v2sf3): Emit
13388 mmx_ieee_<ieee_maxmin>v2sf3 for !flag_finite_math_only or
13389 flag_signed_zeros.
13390 (*mmx_<code>v2sf3): Rename from *mmx_<code>v2sf3_finite. Do not
13391 depend on flag_finite_math_only.
13392 (mmx_ieee_<ieee_maxmin>v2sf3): New insn pattern.
13393 (*mmx_<code>v2sf3): Remove.
13394 * config/i386/subst.md (round_saeonly_mask_arg3): New subst attribute.
13395 * config/i386/i386.c (ix86_expand_sse_fp_mimnax): Check
13396 flag_signed_zeros instead of !flag_unsafe_math_optimizations.
13397
13398 2016-08-15 Segher Boessenkool <segher@kernel.crashing.org>
13399
13400 PR rtl-optimization/73650
13401 * lra-constraints.c (simple_move_p): If the insn is multiple_sets
13402 it is not a simple move.
13403
13404 2016-08-15 Martin Liska <mliska@suse.cz>
13405
13406 PR driver/72765
13407 * gcc.c (do_spec_1): Call save_string with the right size.
13408 (save_string): Do an assert about string we copy.
13409
13410 2016-08-15 Richard Biener <rguenther@suse.de>
13411
13412 * ree.c (rest_of_handle_ree): Remove redundant timevar push/pop.
13413 * config/i386/i386.c (pass_data_insert_vzeroupper): Account to
13414 TV_MACH_DEP.
13415 (pass_data_stv): Likewise.
13416
13417 2016-08-15 Richard Biener <rguenther@suse.de>
13418
13419 PR tree-optimization/73434
13420 * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Preserve
13421 TBAA info on the base when forwarding a non-invariant address.
13422
13423 2016-08-15 Jakub Jelinek <jakub@redhat.com>
13424
13425 * dwarf2out.c (struct checksum_attributes): Add
13426 at_string_length_bit_size and at_string_length_byte_size fields.
13427 (collect_checksum_attributes): Handle DW_AT_string_length_bit_size
13428 and DW_AT_string_length_byte_size.
13429 (die_checksum_ordered): Handle at_string_length_bit_size and
13430 at_string_length_byte_size.
13431 (gen_array_type_die): For dwarf_version >= 5 emit
13432 DW_AT_string_length_byte_size instead of DW_AT_byte_size.
13433 (adjust_string_types): For dwarf_version >= 5 remove
13434 DW_AT_string_length_byte_size instead of DW_AT_byte_size.
13435 (resolve_addr): Likewise.
13436
13437 PR debug/71906
13438 * dwarf2out.c (string_types): New variable.
13439 (gen_array_type_die): Change early_dwarf handling of
13440 DW_AT_string_length, create DW_OP_call4 referencing the
13441 length var temporarily. Handle parameters that are pointers
13442 to string length.
13443 (adjust_string_types): New function.
13444 (gen_subprogram_die): Temporarily set string_types to local var,
13445 call adjust_string_types if needed.
13446 (non_dwarf_expression, copy_deref_exprloc, optimize_string_length):
13447 New functions.
13448 (resolve_addr): Adjust DW_AT_string_length if it is DW_OP_call4.
13449
13450 2016-08-15 Eric Botcazou <ebotcazou@adacore.com>
13451
13452 * doc/install.texi (*-*-solaris2*): Fix version number and document
13453 requirement on GNU make for building libjava with the Solaris linker.
13454
13455 2016-08-15 Martin Liska <mliska@suse.cz>
13456 Jakub Jelinek <jakub@redhat.com>
13457
13458 PR tree-optimization/72824
13459 * tree-loop-distribution.c (const_with_all_bytes_same)
13460 <case VECTOR_CST>: Fix a typo.
13461
13462 2016-08-14 Uros Bizjak <ubizjak@gmail.com>
13463
13464 PR target/76342
13465 * config/i386/avx512fintrin.h (_mm512_undefined_epi32):
13466 Renamed from _mm512_undefined_si512.
13467 (_mm_undefined_si512): New definition.
13468
13469 2016-08-13 Richard Biener <rguenther@suse.de>
13470
13471 * tree-ssa-forwprop.c (pass_forwprop::execute): Propagate
13472 into PHIs and update the lattice for its def.
13473
13474 2016-08-12 Jakub Jelinek <jakub@redhat.com>
13475
13476 PR c/71512
13477 * ubsan.c (instrument_si_overflow): Pass true instead of false
13478 to gsi_replace.
13479 (pass_ubsan::execute): Call gimple_purge_dead_eh_edges at the end
13480 of bbs. Return TODO_cleanup_cfg if any returned true.
13481
13482 2016-08-12 Michael Meissner <meissner@linux.vnet.ibm.com>
13483
13484 * config/rs6000/vsx.md (vsx_concat_<mode>): Add support for the
13485 ISA 3.0 MTVSRDD instruction.
13486 (vsx_splat_<mode>): Change cpu type of MTVSRDD instruction to
13487 vecperm.
13488
13489 2016-08-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
13490
13491 PR tree-optimization/71083
13492 * tree-predcom.c (ref_at_iteration): Use a COMPONENT_REF for the
13493 bitfield access when possible.
13494
13495 2016-08-12 Patrick Palka <ppalka@gcc.gnu.org>
13496
13497 PR middle-end/71654
13498 * match.pd ((T)A CMP (T)B -> A CMP B): Allow (T)A to be a
13499 sign-changing cast from a shorter unsigned type to a wider
13500 signed type.
13501
13502 2016-08-12 Jakub Jelinek <jakub@redhat.com>
13503
13504 * config/i386/sse.md (avx512dq_vextract<shuffletype>64x2_1_maskm,
13505 vec_extract_hi_<mode>_mask, vec_extract_lo_<mode>_mask,
13506 vec_extract_hi_<mode>_mask): Use Yk constraint instead of k.
13507
13508 2016-08-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13509
13510 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost):
13511 Correct costs for vec_construct.
13512
13513 2016-08-12 Bin Cheng <bin.cheng@arm.com>
13514
13515 PR tree-optimization/69848
13516 * tree-vectorizer.h (enum vect_def_type): New condition reduction
13517 type CONST_COND_REDUCTION.
13518 * tree-vect-loop.c (vectorizable_reduction): Support new condition
13519 reudction type CONST_COND_REDUCTION.
13520
13521 2016-08-12 Richard Biener <rguenther@suse.de>
13522
13523 PR tree-optimization/57326
13524 * tree-ssa-pre.c (fully_constant_expression): Handle simplification
13525 returning an SSA name.
13526 (phi_translate_1): When fully_constant_expression returns a NAME
13527 make sure we have a leader for it.
13528
13529 2016-08-12 Martin Liska <mliska@suse.cz>
13530 Adam Fineman <afineman@afineman.com>
13531
13532 * gcov.c (process_file): Create .gcov file when .gcda
13533 file is missing.
13534
13535 2016-08-12 Marek Polacek <polacek@redhat.com>
13536
13537 PR c/7652
13538 * alias.c (find_base_value): Adjust fall through comment.
13539 * cfgexpand.c (expand_debug_expr): Likewise.
13540 * combine.c (find_split_point): Likewise.
13541 (expand_compound_operation): Likewise. Add FALLTHRU.
13542 (make_compound_operation): Adjust fall through comment.
13543 (canon_reg_for_combine): Add FALLTHRU.
13544 (force_to_mode): Adjust fall through comment.
13545 (simplify_shift_const_1): Likewise.
13546 (simplify_comparison): Likewise.
13547 * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Add
13548 FALLTHRU.
13549 * config/aarch64/predicates.md: Likewise.
13550 * config/i386/i386.c (function_arg_advance_32): Likewise.
13551 (ix86_gimplify_va_arg): Likewise.
13552 (print_reg): Likewise.
13553 (ix86_print_operand): Likewise.
13554 (ix86_build_const_vector): Likewise.
13555 (ix86_expand_branch): Likewise.
13556 (ix86_sched_init_global): Adjust fall through comment.
13557 (ix86_expand_args_builtin): Add FALLTHRU.
13558 (ix86_expand_builtin): Likewise.
13559 (ix86_expand_vector_init_one_var): Likewise.
13560 * config/rs6000/rs6000.c (rs6000_emit_vector_compare_inner): Likewise.
13561 (rs6000_adjust_cost): Likewise.
13562 (insn_must_be_first_in_group): Likewise.
13563 * config/rs6000/rs6000.md: Likewise. Adjust fall through comment.
13564 * dbxout.c (dbxout_symbol): Adjust fall through comment.
13565 * df-scan.c (df_uses_record): Likewise.
13566 * dojump.c (do_jump): Add FALLTHRU.
13567 * dwarf2out.c (mem_loc_descriptor): Likewise. Adjust fall through
13568 comment.
13569 (resolve_args_picking_1): Adjust fall through comment.
13570 (loc_list_from_tree_1): Likewise.
13571 * expmed.c (make_tree): Likewise.
13572 * expr.c (expand_expr_real_2): Add FALLTHRU.
13573 (expand_expr_real_1): Likewise. Adjust fall through comment.
13574 * fold-const.c (const_binop): Adjust fall through comment.
13575 (fold_truth_not_expr): Likewise.
13576 (fold_cond_expr_with_comparison): Add FALLTHRU.
13577 (fold_binary_loc): Likewise.
13578 (contains_label_1): Adjust fall through comment.
13579 (multiple_of_p): Likewise.
13580 * gcov-tool.c (process_args): Add FALLTHRU.
13581 * genattrtab.c (check_attr_test): Likewise.
13582 (write_test_expr): Likewise.
13583 * genconfig.c (walk_insn_part): Likewise.
13584 * genpreds.c (validate_exp): Adjust fall through comment.
13585 (needs_variable): Likewise.
13586 * gensupport.c (get_alternatives_number): Add FALLTHRU.
13587 (subst_dup): Likewise.
13588 * gimple-pretty-print.c (dump_gimple_assign): Likewise.
13589 * gimplify.c (gimplify_addr_expr): Adjust fall through comment.
13590 (gimplify_scan_omp_clauses): Add FALLTHRU.
13591 (goa_stabilize_expr): Likewise.
13592 * graphite-isl-ast-to-gimple.c (substitute_ssa_name): Adjust fall
13593 through comment.
13594 * hsa-gen.c (get_address_from_value): Likewise.
13595 * ipa-icf.c (sem_function::hash_stmt): Likewise.
13596 * ira.c (ira_setup_alts): Add FALLTHRU.
13597 * lra-eliminations.c (lra_eliminate_regs_1): Adjust fall through
13598 comment.
13599 * lto-streamer-out.c (lto_output_tree_ref): Add FALLTHRU.
13600 * opts.c (common_handle_option): Likewise.
13601 * read-rtl.c (read_rtx_code): Likewise.
13602 * real.c (round_for_format): Likewise.
13603 * recog.c (asm_operand_ok): Likewise.
13604 * reginfo.c (reg_scan_mark_refs): Adjust fall through comment.
13605 * reload1.c (set_label_offsets): Likewise.
13606 (eliminate_regs_1): Likewise.
13607 (reload_reg_reaches_end_p): Likewise.
13608 * rtlanal.c (commutative_operand_precedence): Add FALLTHRU.
13609 (rtx_cost): Likewise.
13610 * sched-rgn.c (is_exception_free): Likewise.
13611 * simplify-rtx.c (simplify_rtx): Adjust fall through comment.
13612 * stor-layout.c (int_mode_for_mode): Likewise.
13613 * toplev.c (print_to_asm_out_file): Likewise.
13614 (print_to_stderr): Likewise.
13615 * tree-cfg.c (gimple_verify_flow_info): Likewise.
13616 * tree-chrec.c (chrec_fold_plus_1): Add FALLTHRU.
13617 (chrec_fold_multiply): Likewise.
13618 (evolution_function_is_invariant_rec_p): Likewise.
13619 (for_each_scev_op): Likewise.
13620 * tree-data-ref.c (siv_subscript_p): Likewise.
13621 (get_references_in_stmt): Likewise.
13622 * tree.c (find_placeholder_in_expr): Adjust fall through comment.
13623 (substitute_in_expr): Likewise.
13624 (type_cache_hasher::equal): Likewise.
13625 (walk_type_fields): Likewise.
13626 * var-tracking.c (adjust_mems): Add FALLTHRU.
13627 (set_dv_changed): Adjust fall through comment.
13628 * varasm.c (default_function_section): Add FALLTHRU.
13629
13630 2016-08-12 Marek Polacek <polacek@redhat.com>
13631
13632 PR c/7652
13633 * tree-complex.c (expand_complex_division): Add missing break.
13634
13635 2016-08-12 Richard Biener <rguenther@suse.de>
13636
13637 * passes.c (execute_todo): Do not push/pop TV_TODO.
13638 (execute_one_ipa_transform_pass): Move timevar push/pop TODO execution.
13639 (execute_one_pass): Likewise.
13640 * common.opt (ftime-report-details): New switch.
13641 * doc/invoke.texi (ftime-report-details): Document.
13642 * timevar.h (timer::print_row): Adjust signature.
13643 (timer::all_zero): New static helper.
13644 (timer::child_map_t): New typedef.
13645 (timer::time_var_def): Add children field.
13646 * timevar.c (timer::named_items::print): Adjust.
13647 (timer::~timer): Free timevar recorded children.
13648 (timer::pop_internal): When -ftime-report-details record
13649 time spent in sub-timevars.
13650 (timer::print_row): Adjust.
13651 (timer::print): Print sub-timevar stats, use all_zero.
13652 * timevar.def (TV_TODO): Remove.
13653
13654 2016-08-12 Richard Biener <rguenther@suse.de>
13655
13656 PR tree-optimization/72851
13657 * tree-ssa-propagate.c: Include cfganal.h. Rewrite block and stmt
13658 worklists to use bitmaps indexed in execution order.
13659 (executable_blocks, cfg_blocks_num, cfg_blocks_tail, cfg_blocks_head,
13660 bb_in_list, interesting_ssa_edges, varying_ssa_edges): Remove.
13661 (cfg_blocks): Make a bitmap.
13662 (bb_to_cfg_order, cfg_order_to_bb, ssa_edge_worklist, uid_to_stmt):
13663 New globals.
13664 (cfg_blocks_empty_p): Adjust.
13665 (cfg_blocks_add): Likewise.
13666 (cfg_blocks_get): Likewise.
13667 (add_ssa_edge): Likewise.
13668 (add_control_edge): Likewise.
13669 (simulate_stmt): Likewise.
13670 (process_ssa_edge_worklist): Likewise.
13671 (simulate_block): Likewise.
13672 (ssa_prop_init): Compute PRE order and stmt UIDs.
13673 (ssa_prop_fini): Adjust.
13674 (ssa_propagate): Adjust.
13675
13676 2016-08-12 Richard Biener <rguenther@suse.de>
13677
13678 * tree-vrp.c (vrp_visit_phi_node): Allow a last iteration if
13679 the currently executable edges have fixed ranges. Always
13680 go through update_value_range.
13681
13682 2016-08-12 Alexandre Oliva <aoliva@redhat.com>
13683
13684 PR debug/63240
13685 * langhooks-def.h
13686 (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Const_tree-ify.
13687 (LANG_HOOKS_FUNCTION_DECL_DELETED_P): Likewise.
13688 (LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Set default.
13689 (LANG_HOOKS_DECLS): Add it.
13690 * langhooks.h (struct lang_hooks_for_decls): Add
13691 function_decl_defaulted. Const_tree-ify
13692 function_decl_explicit_p and function_decl_deleted_p.
13693 * dwarf2out.c (gen_subprogram_die): Add DW_AT_defaulted
13694 attribute. Add DW_AT_deleted instead of DW_AT_GNU_deleted,
13695 also at strict DWARF v5.
13696
13697 PR debug/55641
13698 * dwarf2out.c (decl_quals): Don't map TREE_READONLY to
13699 TYPE_QUAL_CONST in reference-typed decls.
13700
13701 PR debug/49366
13702 * dwarf2out.c (loc_list_from_tree_1): Expand some CONSTRUCTORs
13703 in DW_OP_pieces, just enough to handle pointers to member
13704 functions.
13705 (gen_remaining_tmpl_value_param_die_attribute): Use a location
13706 expression on DWARFv5 if a constant value doesn't work.
13707
13708 2016-08-11 David Malcolm <dmalcolm@redhat.com>
13709
13710 * selftest-run-tests.c (selftest::run_tests): Call selftest_c_tests.
13711 * selftest.c (selftest::test_assertions): New function.
13712 (selftest::selftest_c_tests): New function.
13713 * selftest.h (selftest::selftest_c_tests): New declaration.
13714
13715 2016-08-11 Richard Biener <rguenther@suse.de>
13716 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13717
13718 PR rtl-optimization/72855
13719 * df-core.c (df_verify): Turn off DF_VERIFY_SCHEDULED at end.
13720
13721 2016-08-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13722
13723 PR target/72863
13724 * vsx.md (vsx_load_<mode>): For P8LE, emit swaps at expand time.
13725 (vsx_store_<mode>): Likewise.
13726
13727 2015-08-11 H.J. Lu <hongjiu.lu@intel.com>
13728
13729 * config/i386/i386.c (timode_scalar_to_vector_candidate_p): Allow
13730 TImode CONST_WIDE_INT store.
13731 (timode_scalar_chain::convert_insn): Handle CONST_WIDE_INT store.
13732
13733 2015-08-11 H.J. Lu <hongjiu.lu@intel.com>
13734
13735 * config/i386/i386.h (MOVE_MAX_PIECES): Use TImode in 64-bit
13736 mode if unaligned SSE load and store are optimal.
13737
13738 2016-08-11 Bernd Edlinger <bernd.edlinger@hotmail.de>
13739
13740 PR tree-optimization/71083
13741 * tree-predcom.c (ref_at_iteration): Correctly align the
13742 reference type.
13743
13744 2016-08-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13745
13746 * config/s390/s390-builtin-types.def: Add INT128 types.
13747 * config/s390/s390-builtins.def: Add INT128 variants for the add
13748 sub low-level builtins dealing with TImode.
13749 * config/s390/s390.c (s390_expand_builtin): Allow mode conversions
13750 via subreg when expanding a builtin.
13751 * config/s390/s390.md: Remove UNSPEC_VEC_ADDC_U128,
13752 UNSPEC_VEC_SUB_U128, and UNSPEC_VEC_SUBC_U128 constants.
13753 Fix comment.
13754 * config/s390/vecintrin.h: Adjust builtin names accordingly.
13755 * config/s390/vx-builtins.md ("vec_add_u128"): Remove expander.
13756 ("vec_addc<mode>", "vec_addc_u128"): Merge to
13757 "vacc<bhfgq>_<mode>".
13758 ("vec_adde_u128"): Rename to "vacq". Change mode to TImode.
13759 ("vec_addec_u128"): Rename to "vacccq". Change mode to TImode.
13760 ("vec_subc<mode>", "vec_subc_u128"): Merge to
13761 "vscbi<bhfgq>_<mode>".
13762 ("vec_sube_u128"): Rename to "vsbiq". Change mode to TImode.
13763 ("vec_subec_u128"): Rename to "vsbcbiq". Change mode to TImode.
13764
13765 2016-08-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13766
13767 * config/s390/s390-builtins.def: Mark last operand of s390_vlvg*
13768
13769 2016-08-11 Bin Cheng <bin.cheng@arm.com>
13770
13771 * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Delete
13772 unused declaration.
13773 (vcond<v_cmp_mixed><mode>): Ditto.
13774 (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
13775
13776 2016-08-11 Bin Cheng <bin.cheng@arm.com>
13777
13778 * config/aarch64/aarch64-simd.md (vec_cmp<mode><v_cmp_result>): Init
13779 variable explicitly, also assert on it before use.
13780
13781 2016-08-11 Richard Biener <rguenther@suse.de>
13782
13783 PR tree-optimization/72772
13784 * cfgloopmanip.c (create_preheader): Use split_edge if there
13785 is a single loop entry, avoiding degenerate PHIs.
13786
13787 2016-08-11 Richard Biener <rguenther@suse.de>
13788
13789 * tree-ssa-threadbackward.c (pass_data_thread_jumps): Remove
13790 unconditional TODO_cleanup_cfg.
13791 (pass_thread_jumps::execute): Initialize loops, perform a CFG
13792 cleanup only if we threaded a jump.
13793
13794 2016-08-11 Alan Modra <amodra@gmail.com>
13795
13796 PR target/71680
13797 * lra-constraints.c (simplify_operand_subreg): Allow subreg
13798 mode for mem when SLOW_UNALIGNED_ACCESS if inner mode is also
13799 slow. Emit two reloads for slow mem case, first loading in
13800 fast innermode, then converting to required mode.
13801
13802 2016-08-10 Kelvin Nilsen <kelvin@gcc.gnu.org>
13803
13804 * config/rs6000/altivec.h (vec_extract_exp): New macro.
13805 (vec_extract_sig): New macro.
13806 (vec_insert_exp): New macro.
13807 (vec_test_data_class): New macro.
13808 (scalar_extract_exp): New macro.
13809 (scalar_extract_sig): New macro.
13810 (scalar_insert_exp): New macro.
13811 (scalar_test_data_class): New macro.
13812 (scalar_test_neg): New macro.
13813 (scalar_cmp_exp_gt): New macro.
13814 (scalar_cmp_exp_lt): New macro.
13815 (scalar_cmp_exp_eq): New macro.
13816 (scalar_cmp_exp_unordered): New macro.
13817 * config/rs6000/predicates.md (u7bit_cint_operand): New predicate
13818 to enforce constraint that operand is a 7-bit unsigned literal.
13819 * config/rs6000/rs6000-builtin.def (BU_P9V_64BIT_VSX_1): New macro
13820 for power9 built-ins.
13821 (BU_P9V_VSX_2): Likewise.
13822 (BU_P9V_64BIT_VSX_2): Likewise.
13823 (VSEEDP): Add scalar extract exponent support.
13824 (VSEESP): Add scalar extract signature support.
13825 (VSTDCNDP): Add scalar test negative support.
13826 (VSTDCNSP): Likewise.
13827 (VSIEDP): Add scalar insert exponent support.
13828 (VSCEDPGT): Add scalar compare exponent greater than support.
13829 (VSCEDPLT): Add scalar compare exponent less than support.
13830 (VSCEDPEQ): Add scalar compare exponent test-for-equality support.
13831 (VSCEDPUO): Add scalar compare exponent test-for-unordered support.
13832 (VSTDCDP): Add scalar test data class support.
13833 (VSTDCSP): Likewise.
13834 (VSEEDP): Add overload support for scalar extract exponent
13835 operation.
13836 (VSESDP): Add overload support for scalar extract signature
13837 operation.
13838 (VSTDCN): Add overload support for scalar test negative
13839 operation.
13840 (VSTDCNDP): Add overload support for scalar test negative
13841 operation.
13842 (VSTDCNSP): Add overload support for scalar test negative
13843 operation.
13844 (VSIEDP): Add overload support for scalar insert exponent
13845 operation.
13846 (VSTDC): Add overload support for scalar test data class
13847 operation.
13848 (VSTDCDP): Add overload support for scalar test data class
13849 operation.
13850 (VSTDCSP): Add overload support for scalar test data class
13851 opreation.
13852 (VSCEDPGT): Add overload support for scalar compare exponent
13853 greater than operation.
13854 (VSCEDPLT): Add overload support for scalar compare exponent
13855 less than operation.
13856 (VSCEDPEQ): Add overload support for scalar compare exponent
13857 test-for-equality operation.
13858 (VSCEDPUO): Add overload support for scalar compare exponent
13859 test-for-unordered operation.
13860 (VEEDP): Add vector extract exponent support.
13861 (VEESP): Likewise.
13862 (VESDP): Add vector extract significand support.
13863 (VESSP): Likewise.
13864 (VIEDP): Add vector insert exponent support.
13865 (VIESP): Likewise.
13866 (VTDCDP): Add vector test data class support.
13867 (VTDCSP): Likewise.
13868 (VES): Add overload support for vector extract significand operation.
13869 (VESDP): Likewise.
13870 (VESSP): Likewise
13871 (VEE): Add overload support for vector extract exponent operation.
13872 (VEEDP): Likewise.
13873 (VEESP): Likewise.
13874 (VTDC): Add overload support for vector test data class operation.
13875 (VTDCDP): Likewise.
13876 (VTDCSP): Likewise.
13877 (VIE): Add overload support for vector insert exponent operation.
13878 (VIEDP): Likewise.
13879 (VIESP): Likewise.
13880 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
13881 overloaded binary floating point functions.
13882 (altivec_resolve_overloaded_builtin): Improve error messages to
13883 distinguish between functions not supported in the current
13884 compiler configuration and functions that were invoked with an
13885 invalid parameter combination, and include the built-in function
13886 name in both error messages.
13887 * config/rs6000/rs6000-protos.h (rs6000_overloaded_builtin_name):
13888 New prototype.
13889 * config/rs6000/rs6000.c (rs6000_overloaded_builtin_name): New
13890 function.
13891 (rs6000_expand_binop_builtin): Add check to enforce that argument
13892 2 of the test data class operations is a 7-bit unsigned literal.
13893 (rs6000_invalid_builtin): Add code to issue an error message if a
13894 built-in function that requires the power9_vector and -m32
13895 command-line options is compiled without these options.
13896 * config/rs6000/vsx.md (UNSPEC_VSX_SXEXPDP): New value.
13897 (UNSPEC_VSX_SXSIGDP): New value.
13898 (UNSPEC_VSX_SXSIGPDP): New value.
13899 (UNSPEC_VSX_SIEXPDP): New value.
13900 (UNSPEC_VSX_SCMPEXPDP): New value.
13901 (UNSPEC_VSX_STSTDC): New value.
13902 (UNSPEC_VSX_VXEXP): New value.
13903 (UNSPEC_VSX_VXSIG): New value.
13904 (UNSPEC_VSX_VIEXP): New value.
13905 (UNSPEC_VSX_VTSTDC): New value.
13906 (xsxexpdp): New insn for scalar extract exponent.
13907 (xsxsigdp): New insn for scalar extract significand.
13908 (xsiexpdp): New insn for scalar insert exponent.
13909 (xscmpexpdp_<code>): New expansion for scalar compare exponents.
13910 (*xscmpexpdp): New insn for scalar compare exponents.
13911 (xststdc<Fvsx): New expansion for both single- and
13912 double-precision scalar test data class operations.
13913 (xststdcneg<Fvsx>): New expansion for both single- and
13914 double-precision scalar test for negative value operations.
13915 (*xststdc<Fvsx>): New insn for scalar test data class
13916 operation.
13917 (xvxexp<VSs>): New insn for single- and double-precision
13918 vector extract exponent operation.
13919 (xvxsig<VSs>): New insn for single- and double-precision
13920 vector extract significand operation.
13921 (xviexp<VSs>): New insn for single- and double-precision
13922 vector insert exponent operation.
13923 (xvtstdc<VSs>): New insn for single- and double-precision
13924 vector test data class operation.
13925 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
13926 built-in functions to represent the Power9 binary floating-point
13927 support instructions.
13928
13929 2016-08-10 bin cheng <bin.cheng@arm.com>
13930
13931 * doc/sourcebuild.texi (@item vect_cond_mixed): New item.
13932
13933 2016-08-10 Alan Lawrence <alan.lawrence@arm.com>
13934 Renlin Li <renlin.li@arm.com>
13935 Bin Cheng <bin.cheng@arm.com>
13936
13937 * config/aarch64/iterators.md (V_cmp_mixed, v_cmp_mixed): New.
13938 * config/aarch64/aarch64-simd.md (<su><maxmin>v2di3): Call
13939 gen_vcondv2div2di instead of gen_aarch64_vcond_internalv2div2di.
13940 (aarch64_vcond_internal<mode><mode>): Delete pattern.
13941 (aarch64_vcond_internal<VDQF_COND:mode><VDQF:mode>): Ditto.
13942 (vcond<v_cmp_result><mode>): Ditto.
13943 (vcond<mode><mode>): Re-implement using vec_cmp and vcond_mask.
13944 (vcondu<mode><mode>): Ditto.
13945 (vcond<v_cmp_mixed><mode>): New pattern.
13946 (vcondu<mode><v_cmp_mixed>): New pattern.
13947 (aarch64_cmtst<mode>): Revise comment using aarch64_vcond instead
13948 of aarch64_vcond_internal.
13949
13950 2016-08-10 Alan Lawrence <alan.lawrence@arm.com>
13951 Renlin Li <renlin.li@arm.com>
13952 Bin Cheng <bin.cheng@arm.com>
13953
13954 * config/aarch64/aarch64-simd.md (vec_cmp<mode><mode>): New pattern.
13955 (vec_cmp<mode><v_cmp_result>): New pattern.
13956 (vec_cmpu<mode><mode>): New pattern.
13957 (vcond_mask_<mode><v_cmp_result>): New pattern.
13958
13959 2016-08-10 Yuri Rumyantsev <ysrumyan@gmail.com>
13960
13961 PR tree-optimization/71734
13962 * tree-ssa-loop-im.c (ref_indep_loop_p): Add new argument
13963 REF_LOOP, invoke ref_indep_loop_p_1.
13964 (outermost_indep_loop): Pass LOOP argumnet where REF was defined
13965 to ref_indep_loop_p.
13966 (ref_indep_loop_p_1): Fix commentary, add argument REF_LOOP,
13967 combine it with ref_indep_lopp_p_2, update SAFELEN if only REF
13968 is inside LOOP, do not cache dpendence value for loops with
13969 non-zero SAFELEN.
13970 (ref_indep_loop_p_2): Delete function.
13971 (can_sm_ref_p): Pass LOOP as additional argument to
13972 ref_indep_loop_p.
13973
13974 2016-08-10 Michael Meissner <meissner@linux.vnet.ibm.com>
13975
13976 PR target/72853
13977 * config/rs6000/rs6000.c (mem_operand_ds_form): Add check for op
13978 being an offsettable address.
13979
13980 2016-08-10 Martin Liska <mliska@suse.cz>
13981
13982 PR gcov-profile/58306
13983 * tree-profile.c (gimple_init_edge_profiler): Create conditionally
13984 atomic variants of profile update functions.
13985
13986 2016-08-10 Martin Liska <mliska@suse.cz>
13987
13988 Cherry picked (and modified) from google-4_7 branch
13989 2012-12-26 Rong Xu <xur@google.com>
13990 * common.opt (fprofile-update): Add new flag.
13991 * coretypes.h: Define enum profile_update.
13992 * doc/invoke.texi: Document -fprofile-update.
13993 * gcov-io.h: Declare GCOV_TYPE_ATOMIC_FETCH_ADD and
13994 GCOV_TYPE_ATOMIC_FETCH_ADD_FN.
13995 * tree-profile.c (gimple_init_edge_profiler): Generate
13996 also atomic profiler update.
13997 (gimple_gen_edge_profiler): Likewise.
13998
13999 2016-08-10 David Malcolm <dmalcolm@redhat.com>
14000
14001 * toplev.c (finalize): Set aux_info_file, asm_out_file, and
14002 stack_usage_file to NULL after fclose calls.
14003
14004 2016-08-10 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
14005
14006 PR target/71873
14007 * reload.c (push_reload): Compute subreg_in_class for
14008 subregs of constants and plus expressions. Remove special
14009 handling of SYMBOL_REFs.
14010
14011 2016-08-10 Alan Modra <amodra@gmail.com>
14012
14013 PR target/71680
14014 * config/rs6000/rs6000.h (HARD_REGNO_CALLER_SAVE_MODE): Return
14015 SImode for TARGET_E500_DOUBLE when given SImode.
14016
14017 2016-08-09 David Wohlferd <dw@LimeGreenSocks.com>
14018
14019 * config/i3836/avx512fintrin.h (_mm512_cvtsepi64_epi32): Remove
14020 unused variable __O.
14021
14022 2016-08-09 Martin Liska <mliska@suse.cz>
14023
14024 * doc/gcov.texi: Change _gcov_dump to __gcov_dump and
14025 _gcov_reset to __gcov_reset.
14026 * doc/gcov-tool.texi: Fix typo.
14027
14028 2016-08-09 Martin Liska <mliska@suse.cz>
14029
14030 * value-prof.c (gimple_divmod_values_to_profile): Do not
14031 instrument MOD histogram if a value is not a SSA name.
14032
14033 2016-08-09 Martin Liska <mliska@suse.cz>
14034
14035 * value-prof.c (dump_histogram_value): Swap pow2 and non-pow2
14036 values.
14037
14038 2016-08-09 Renlin Li <renlin.li@arm.com>
14039
14040 PR middle-end/64971
14041 * calls.c (prepare_call_address): Convert funexp to Pmode when
14042 necessary.
14043 * config/aarch64/aarch64.md (sibcall): Remove fix for PR 64971.
14044 (sibcall_value): Likewise.
14045
14046 2016-08-09 Marek Polacek <polacek@redhat.com>
14047
14048 PR c/7652
14049 * cselib.c (cselib_expand_value_rtx_1): Add return.
14050 * gengtype.c (dbgprint_count_type_at): Likewise.
14051 * hsa-gen.c (gen_hsa_insn_for_internal_fn_call): Likewise.
14052 * reg-stack.c (get_true_reg): Restructure to avoid fallthrough warning.
14053
14054 2016-08-09 Martin Jambor <mjambor@suse.cz>
14055
14056 PR ipa/71981
14057 * ipa-polymorphic-call.c (get_dynamic_type): Bail out gracefully
14058 if instance is a MEM_REF.
14059
14060 2016-08-09 Uros Bizjak <ubizjak@gmail.com>
14061
14062 PR target/72843
14063 * config/i386/i386.md (*movtf_internal): Use
14064 lra_in_progress || reload_completed instead of !can_create_pseudo_p
14065 in the insn constraint.
14066 (*movxf_internal): Ditto.
14067 (*movdf_internal): Ditto.
14068 (*movsf_internal): Ditto.
14069
14070 2016-08-09 Bin Cheng <bin.cheng@arm.com>
14071
14072 PR tree-optimization/72772
14073 * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
14074 for expanded base.
14075
14076 2016-08-09 Bin Cheng <bin.cheng@arm.com>
14077
14078 PR tree-optimization/72772
14079 * tree-ssa-loop-niter.h (simplify_using_initial_conditions): Delete
14080 parameter STOP.
14081 * tree-ssa-loop-niter.c (tree_simplify_using_condition_1): Delete
14082 parameter STOP and update calls. Move expand_simple_operations
14083 function call from here...
14084 (simplify_using_initial_conditions): ...to here. Delete parameter
14085 STOP.
14086 (tree_simplify_using_condition): Delete parameter STOP.
14087 * tree-scalar-evolution.c (simple_iv_with_niters): Update call to
14088 simplify_using_initial_conditions.
14089
14090 2016-08-09 Matthew Fortune <matthew.fortune@imgtec.com>
14091
14092 PR c/65345
14093 * config/mips/mips.c (mips_atomic_assign_expand_fenv):
14094 Use create_tmp_var_raw instead of create_tmp_var.
14095
14096 2016-08-09 Richard Biener <rguenther@suse.de>
14097
14098 * tree-ssa-threadbackward.c (profitable_jump_thread_path):
14099 Treat same SSA names related.
14100
14101 2016-08-09 Jakub Jelinek <jakub@redhat.com>
14102
14103 PR tree-optimization/72824
14104 * tree-loop-distribution.c (const_with_all_bytes_same): Verify
14105 real_zerop is not negative.
14106
14107 2016-08-09 Richard Biener <rguenther@suse.de>
14108
14109 PR tree-optimization/71802
14110 * tree-cfgcleanup.c (cleanup_tree_cfg_bb): Make sure to catch
14111 all merge opportunities with the predecessor.
14112
14113 2016-08-09 Richard Biener <rguenther@suse.de>
14114
14115 PR ipa/68273
14116 * ipa-prop.c (ipa_modify_formal_parameters): Build
14117 parameter types with natural alignment also for the
14118 over-aligned case.
14119
14120 2016-08-08 Andi Kleen <ak@linux.intel.com>
14121
14122 * tree-vrp.c (get_single_symbol): Always initialize inv and neg.
14123
14124 2016-08-08 David Malcolm <dmalcolm@redhat.com>
14125
14126 PR c/64955
14127 * langhooks-def.h (LANG_HOOKS_RUN_LANG_SELFTESTS): New default
14128 do-nothing langhook.
14129 (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_RUN_LANG_SELFTESTS.
14130 * langhooks.h (struct lang_hooks): Add run_lang_selftests.
14131 * selftest-run-tests.c: Include "tree.h" and "langhooks.h".
14132 (selftest::run_tests): Call lang_hooks.run_lang_selftests.
14133
14134 2016-08-08 David Malcolm <dmalcolm@redhat.com>
14135
14136 PR bootstrap/72844
14137 * input.c: Ensure that HAVE_ICONV is defined.
14138
14139 2016-08-08 Jakub Jelinek <jakub@redhat.com>
14140
14141 PR middle-end/72781
14142 * omp-low.c (lower_lastprivate_clauses): Set TREE_NO_WARNING on the
14143 private vars for lastprivate and for linear iterator.
14144
14145 PR middle-end/68762
14146 * omp-simd-clone.c: Include varasm.h.
14147 (simd_clone_create): Copy over DECL_COMDAT, DECL_WEAK, DECL_EXTERNAL,
14148 DECL_VISIBILITY, DECL_VISIBILITY_SPECIFIED, DECL_DLLIMPORT_P and for
14149 DECL_ONE_ONLY call make_decl_one_only. Fix up spelling in comment and
14150 update function name.
14151
14152 2016-07-29 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
14153
14154 * config/avr/driver-avr.c (specfiles_doc_url): Remove.
14155 (avr_diagnose_devicespecs_error): Remove.
14156 (avr_devicespecs_file): Remove composing absolute path for specfile
14157 and its verbose info. Remove conditions to check specs-file,
14158
14159 2016-08-08 Jakub Jelinek <jakub@redhat.com>
14160
14161 PR rtl-optimization/72821
14162 * lra-spills.c (regno_in_use_p): Don't use BLOCK_FOR_INSN on barriers,
14163 just return false for them.
14164
14165 2016-08-08 Alan Modra <amodra@gmail.com>
14166
14167 PR target/72771
14168 * config/rs6000/rs6000.c (toc_relative_expr_p): Allow (lo_sum (high))
14169 toc refs created during reload. Update function comment.
14170
14171 2016-08-08 Alan Modra <amodra@gmail.com>
14172
14173 PR target/72802
14174 * config/rs6000/rs6000.md (mov<mode>_hardfloat): Sort
14175 alternatives. Put loads first, then stores, and reg/reg moves
14176 within same class later. Delete attr length.
14177
14178 2016-08-08 Alan Modra <amodra@gmail.com>
14179
14180 PR target/72802
14181 * config/rs6000/rs6000.c (mem_operand_gpr): Remove vsx dform test.
14182 (mem_operand_ds_form): New predicate.
14183 * config/rs6000/rs6000-protos.h (mem_operand_ds_form): Declare.
14184 * config/rs6000/constraints.md (wY): Use mem_operand_df_form.
14185 * config/rs6000/predicates.md (offsettable_mem_14bit_operand): Delete.
14186 * config/rs6000/rs6000.md (f32_lm2, f32_sm2): Use wY for SF.
14187 (extendsfdf2_fpr): Replace o constraint with wY.
14188
14189 2016-08-07 Jan Hubicka <hubicka@ucw.cz>
14190
14191 * tree-ssa-threadbackward.c: Include tree-inline.h
14192 (profitable_jump_thread_path): Use estimate_num_insns to estimate
14193 size of copied block; for cold paths reduce duplication.
14194 (find_jump_threads_backwards): Remove redundant tests.
14195 (pass_thread_jumps::gate): Enable for -Os.
14196
14197 2016-08-07 Jakub Jelinek <jakub@redhat.com>
14198
14199 PR c/72816
14200 * stor-layout.c (layout_decl): Fix up formatting.
14201 (relayout_decl): Allow DECL to be FIELD_DECL.
14202
14203 2016-08-07 Alan Modra <amodra@gmail.com>
14204
14205 * config/rs6000/rs6000.md (fix_trunc<mode>si2): Fix mode of reg.
14206
14207 2016-08-07 Kugan Vivekanandarajah <kuganv@linaro.org>
14208
14209 * data-streamer-in.c (streamer_read_wide_int): New.
14210 (streamer_read_widest_int): Renamed function.
14211 * data-streamer-out.c (streamer_write_wide_int): New
14212 (streamer_write_widest_int): Renamed function.
14213 * lto-streamer-in.c (streamer_read_wi): Renamed and moved to
14214 data-stream-in.c.
14215 (input_cfg): Call renamed function.
14216 * lto-streamer-out.c (streamer_write_wi): Renamed and moved to
14217 data-stream-out.c.
14218 (output_cfg): Call renamed function.
14219 * data-streamer.h: Add declarations.
14220
14221 2016-08-08 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
14222
14223 * tree-ssa-ccp.c (extend_mask): New param sgn.
14224 Remove ORing with wi::mask.
14225 (get_default_value): Adjust call to extend_mask to pass sign.
14226 (evaluate_stmt): Likewise.
14227
14228 2016-08-06 Jakub Jelinek <jakub@redhat.com>
14229
14230 * gcov.c (handle_cycle): Use INTTYPE_MAXIMUM (int64_t) instead of
14231 INT64_MAX.
14232
14233 2016-08-06 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
14234
14235 * match.pd ((intptr_t) x eq/ne CST to x eq/ne (typeof x) cst): Disable
14236 transform if operand's type is pointer to function or method.
14237
14238 2016-08-05 Patrick Palka <ppalka@gcc.gnu.org>
14239
14240 PR tree-optimization/18046
14241 * tree-ssa-threadedge.c: Include cfganal.h.
14242 (simplify_control_statement_condition): If simplifying a
14243 GIMPLE_SWITCH, replace the index operand of the GIMPLE_SWITCH
14244 with the dominating ASSERT_EXPR before handing it off to VRP.
14245 Mention that a CASE_LABEL_EXPR may be returned.
14246 (thread_around_empty_blocks): Adjust to handle
14247 simplify_control_statement_condition() returning a
14248 CASE_LABEL_EXPR.
14249 (thread_through_normal_block): Likewise.
14250 * tree-vrp.c (simplify_stmt_for_jump_threading): Simplify
14251 a switch statement by trying to determine which case label
14252 will be taken.
14253
14254 2016-08-05 Vladimir Makarov <vmakarov@redhat.com>
14255
14256 PR rtl-optimization/69847
14257 * lra-constraints.c (process_invariant_for_inheritance): Save
14258 pattern instead of src.
14259 (remove_inheritance_pseudos): Use the pattern. Add assert.
14260
14261 2016-08-05 David Malcolm <dmalcolm@redhat.com>
14262
14263 * input.c (string_concat::string_concat): New constructor.
14264 (string_concat_db::string_concat_db): New constructor.
14265 (string_concat_db::record_string_concatenation): New method.
14266 (string_concat_db::get_string_concatenation): New method.
14267 (string_concat_db::get_key_loc): New method.
14268 (class auto_cpp_string_vec): New class.
14269 (get_substring_ranges_for_loc): New function.
14270 (get_source_range_for_substring): New function.
14271 (get_num_source_ranges_for_substring): New function.
14272 (class selftest::lexer_test_options): New class.
14273 (struct selftest::lexer_test): New struct.
14274 (class selftest::ebcdic_execution_charset): New class.
14275 (selftest::ebcdic_execution_charset::s_singleton): New variable.
14276 (selftest::lexer_test::lexer_test): New constructor.
14277 (selftest::lexer_test::~lexer_test): New destructor.
14278 (selftest::lexer_test::get_token): New method.
14279 (selftest::assert_char_at_range): New function.
14280 (ASSERT_CHAR_AT_RANGE): New macro.
14281 (selftest::assert_num_substring_ranges): New function.
14282 (ASSERT_NUM_SUBSTRING_RANGES): New macro.
14283 (selftest::assert_has_no_substring_ranges): New function.
14284 (ASSERT_HAS_NO_SUBSTRING_RANGES): New macro.
14285 (selftest::test_lexer_string_locations_simple): New function.
14286 (selftest::test_lexer_string_locations_ebcdic): New function.
14287 (selftest::test_lexer_string_locations_hex): New function.
14288 (selftest::test_lexer_string_locations_oct): New function.
14289 (selftest::test_lexer_string_locations_letter_escape_1): New function.
14290 (selftest::test_lexer_string_locations_letter_escape_2): New function.
14291 (selftest::test_lexer_string_locations_ucn4): New function.
14292 (selftest::test_lexer_string_locations_ucn8): New function.
14293 (selftest::uint32_from_big_endian): New function.
14294 (selftest::test_lexer_string_locations_wide_string): New function.
14295 (selftest::uint16_from_big_endian): New function.
14296 (selftest::test_lexer_string_locations_string16): New function.
14297 (selftest::test_lexer_string_locations_string32): New function.
14298 (selftest::test_lexer_string_locations_u8): New function.
14299 (selftest::test_lexer_string_locations_utf8_source): New function.
14300 (selftest::test_lexer_string_locations_concatenation_1): New
14301 function.
14302 (selftest::test_lexer_string_locations_concatenation_2): New
14303 function.
14304 (selftest::test_lexer_string_locations_concatenation_3): New
14305 function.
14306 (selftest::test_lexer_string_locations_macro): New function.
14307 (selftest::test_lexer_string_locations_stringified_macro_argument):
14308 New function.
14309 (selftest::test_lexer_string_locations_non_string): New function.
14310 (selftest::test_lexer_string_locations_long_line): New function.
14311 (selftest::test_lexer_char_constants): New function.
14312 (selftest::input_c_tests): Call the new test functions once per
14313 case within the line_table test matrix.
14314 * input.h (struct string_concat): New struct.
14315 (struct location_hash): New struct.
14316 (class string_concat_db): New class.
14317 * substring-locations.h: New header.
14318
14319 2016-08-05 Patrick Palka <ppalka@gcc.gnu.org>
14320
14321 PR tree-optimization/72810
14322 * tree-vrp.c (simplify_switch_using_ranges): Avoid changing
14323 the type of the case labels when truncating.
14324
14325 2016-08-05 James Greenhalgh <james.greenhalgh@arm.com>
14326
14327 PR Target/72819
14328 * config/aarch64/aarch64.h (aarch64_fp16_type_node): Declare.
14329 (aarch64_fp16_ptr_type_node): Likewise.
14330 * config/aarch64/aarch64-simd-builtins.c
14331 (aarch64_fp16_ptr_type_node): Define.
14332 (aarch64_init_fp16_types): New, refactored out of...
14333 (aarch64_init_builtins): ...here, update to call
14334 aarch64_init_fp16_types.
14335 * config/aarch64/aarch64.c (aarch64_gimplify_va_arg_expr): Handle
14336 HFmode.
14337 (aapcs_vfp_sub_candidate): Likewise.
14338
14339 2016-08-05 Martin Liska <mliska@suse.cz>
14340 Joshua Cranmer <Pidgeot18@gmail.com>
14341
14342 * gcov.c (line_t::has_block): New function.
14343 (enum loop_type): New enum.
14344 (handle_cycle): New function.
14345 (unblock): Likewise.
14346 (circuit): Likewise.
14347 (get_cycles_count): Likewise.
14348 (accumulate_line_counts): Use new loop detection algorithm.
14349
14350 2016-08-05 Martin Liska <mliska@suse.cz>
14351
14352 * gcov.c (output_intermediate_file): Rename
14353 function_info::line_next to next_file_fn.
14354 (process_file): Likewise.
14355 (read_graph_file): Likewise.
14356 (accumulate_line_counts): Likewise.
14357 (output_lines): Likewise.
14358
14359 2016-08-05 Richard Biener <rguenther@suse.de>
14360
14361 * tree-ssa-threadupdate.c (thread_block_1): Remove unnecessary
14362 restriction on threading to a loop header.
14363
14364 2016-08-05 Richard Biener <rguenther@suse.de>
14365
14366 * tree-cfgcleanup.c (tree_forwarder_block_p): Use bb_loop_header_p.
14367 * cfghooks.c (force_nonfallthru): If we ended up splitting a latch
14368 adjust loop info accordingly.
14369
14370 2016-08-05 Kugan Vivekanandarajah <kuganv@linaro.org>
14371
14372 * tree-vrp.c (extract_range_basic): Check cfun->after_inlining
14373 before folding call to __builtin_constant_p with parameters to false.
14374
14375 2016-08-05 Alan Modra <amodra@gmail.com>
14376
14377 * config/rs6000/rs6000.c (rs6000_preferred_reload_class): Delete
14378 code accidentally committed 2016-05-02 providing class when given
14379 NO_REGS.
14380
14381 2016-08-04 Patrick Palka <ppalka@gcc.gnu.org>
14382
14383 * tree-vrp.c (simplify_switch_using_ranges): Try to truncate
14384 the case label ranges that partially overlap with OP's value
14385 range.
14386
14387 2016-08-04 Uros Bizjak <ubizjak@gmail.com>
14388
14389 PR target/72805
14390 * config/i386/avx512fintrin.h (_mm512_cmp_epi32_mask) [!__OPTIMIZE__]:
14391 Cast builtin function result to __mmask16 instead of __mmask8.
14392 (_mm512_cmp_epu32_mask) [!__OPTIMIZE__]: Ditto.
14393 (_mm512_mask_cmp_epi32_mask) [!__OPTIMIZE__]: Ditto.
14394 (_mm512_mask_cmp_epu32_mask) [!__OPTIMIZE__]: Ditto.
14395
14396 2016-08-04 David Malcolm <dmalcolm@redhat.com>
14397
14398 * selftest.h (ASSERT_TRUE): Reimplement in terms of...
14399 (ASSERT_TRUE_AT): New macro.
14400 (ASSERT_FALSE): Reimplement in terms of...
14401 (ASSERT_FALSE_AT): New macro.
14402 (ASSERT_STREQ_AT): Fix typo in comment.
14403
14404 2016-08-04 Patrick Palka <ppalka@gcc.gnu.org>
14405
14406 * gimple.c (preprocess_case_label_vec_for_gimple): When the case
14407 labels are exhaustive, designate the label with the widest
14408 range to be the default label.
14409
14410 2016-08-04 Andrew Pinski <apinski@cavium.com>
14411
14412 * config/aarch64/aarch64.c (thunderx_vector_cost): New variable.
14413 (thunderx_tunings): Use thunderx_vector_cost instead of
14414 generic_vector_cost.
14415
14416 2016-08-04 Martin Liska <mliska@suse.cz>
14417
14418 * gcov.c (main): Fix GNU coding style.
14419 (output_intermediate_file): Likewise.
14420 (process_file): Likewise.
14421 (generate_results): Likewise.
14422 (release_structures): Likewise.
14423 (create_file_names): Likewise.
14424 (find_source): Likewise.
14425 (read_graph_file): Likewise.
14426 (find_exception_blocks): Likewise.
14427 (canonicalize_name): Likewise.
14428 (make_gcov_file_name): Likewise.
14429 (mangle_name): Likewise.
14430 (accumulate_line_counts): Likewise.
14431 (output_branch_count): Likewise.
14432 (read_line): Likewise.
14433
14434 2016-08-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
14435
14436 PR rtl-optimization/71779
14437 * emit-rtl.c (set_reg_attrs_from_value): Only propagate REG_POINTER,
14438 if the value was sign-extended according to POINTERS_EXTEND_UNSIGNED
14439 or if it was truncated.
14440
14441 PR rtl-optimization/70903
14442 * cse.c (cse_insn): If DEST is a paradoxical SUBREG, don't record DEST.
14443
14444 2016-08-04 Kugan Vivekanandarajah <kuganv@linaro.org>
14445
14446 * tree-inline.c (remap_ssa_name): Check for POINTER_TYPE_P before
14447 accessing SSA_NAME_PTR_INFO.
14448
14449 2016-08-04 Georg-Johann Lay <avr@gjlay.de>
14450
14451 PR 70677
14452 * common/config/avr/avr-common.c (avr_option_optimization_table)
14453 [OPT_LEVELS_ALL]: Turn off -fcaller-saves.
14454
14455 2016-08-04 Georg-Johann Lay <avr@gjlay.de>
14456
14457 PR 55181
14458 * config/avr/avr.md: New pattern to work around do_store_flag
14459 generating shift instructions for bit extractions.
14460
14461 2016-08-04 Kugan Vivekanandarajah <kuganv@linaro.org>
14462
14463 * tree-vrp.c (set_value_range): Use vrp_equiv_obstack with
14464 BITMAP_ALLOC.
14465 (add_equivalence): Likewise.
14466 (get_value_range): Allocate value range with vrp_value_range_pool.
14467 (vrp_initialize): Initialize vrp_equiv_obstack for equiv allocation.
14468 (vrp_finalize): Relase vrp_equiv_obstack and vrp_value_range_pool.
14469
14470 2016-08-03 Peter Bergner <bergner@vnet.ibm.com>
14471
14472 * config/rs6000/rs6000.c (rs6000_option_override_internal): Make LRA
14473 the default for the rs6000 port.
14474
14475 2016-08-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
14476
14477 PR middle-end/71876
14478 * calls.c (special_function_p): Remove special handling of
14479 "setjmp_syscall", "qsetjmp", "longjmp", "siglongjmp" and the
14480 prefix "__x". Recognize "savectx", "vfork" and "getcontext" only
14481 without prefix. Remove potentially unsafe ECF_LEAF and ECF_NORETURN.
14482
14483 2016-08-03 Vladimir Makarov <vmakarov@redhat.com>
14484
14485 PR middle-end/72778
14486 * lra-spills.c (regno_in_use_p): Check bb and regno modification.
14487 Don't stop on regular insns.
14488
14489 2016-08-03 Nathan Sidwell <nathan@codesourcery.com>
14490
14491 * config/nvptx/nvptx.c (nvptx_declare_function_name): Round frame
14492 size to DImode boundary.
14493 (nvptx_propagate): Likewise.
14494
14495 2016-08-03 Alan Modra <amodra@gmail.com>
14496
14497 * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Make scalar
14498 float access depend on TARGET_EFFICIENT_UNALIGNED_VSX.
14499 * config/rs6000/rs6000.opt (-mefficient-unaligned-vsx): Renamed
14500 from -mefficient-unaligned-vector. Note that this affects fp too.
14501
14502 2016-08-03 Alan Modra <amodra@gmail.com>
14503
14504 * config/rs6000/rs6000.c (rs6000_rtx_costs): Make unaligned mem
14505 cost more.
14506
14507 2016-08-03 Alan Modra <amodra@gmail.com>
14508
14509 * config/rs6000/rs6000.md (fix_trunc<mode>si2): Force source operand
14510 to a reg. Localize vars.
14511
14512 2016-08-03 Alan Modra <amodra@gmail.com>
14513
14514 * config/rs6000/rs6000.opt: Remove negatives from help strings
14515 and comments.
14516
14517 2016-08-03 Alan Modra <amodra@gmail.com>
14518
14519 * config/rs6000/rs6000.c (rs6000_secondary_reload_direct_move):
14520 Delete duplicated code.
14521
14522 2016-08-02 Vladimir Makarov <vmakarov@redhat.com>
14523
14524 PR middle-end/72778
14525 * lra-spills.c (regno_in_use_p): New.
14526 (lra_final_code_change): Use it.
14527
14528 2016-08-02 Vladimir Makarov <vmakarov@redhat.com>
14529
14530 PR rtl-optimization/69847
14531 * lra-int.h (struct lra-reg): Use restore_rtx instead of
14532 restore_regno.
14533 (lra_rtx_hash): New.
14534 * lra.c (initialize_lra_reg_info_element): Use restore_rtx instead
14535 of restore_regno.
14536 (lra_rtx_hash): Rename and move lra-remat.c::rtx_hash.
14537 * lra-remat.c (rtx_hash): Rename and Move to lra.c.
14538 * lra-spills.c (lra_final_code_change): Don't delete insn when the
14539 next insn is USE with the same reg as the current insn source.
14540 * lra-constraints.c (curr_insn_transform): Use restore_rtx instead
14541 of restore_regno.
14542 (lra_constraints_init): Call initiate_invariants.
14543 (lra_constraints_finish): Call finish_invariants.
14544 (struct invariant, invariant_t, invariant_ptr_t): New.
14545 (const_invariant_ptr_t, invariants, invariants_pool): New.
14546 (invariant_table, invariant_hash, invariant_eq_p): New.
14547 (insert_invariant, initiate_invariants, finish_invariants): New.
14548 (clear_invariants, invalid_invariant_regs): New.
14549 (inherit_reload_reg, split_reg, fix_bb_live_info): Use restore_rtx
14550 instead of restore_regno.
14551 (invariant_p, process_invariant_for_inheritance): New.
14552 (inherit_in_ebb): Implement invariant inheritance.
14553 (lra_inheritance): Initialize and finalize invalid_invariant_regs.
14554 (remove_inheritance_pseudos): Implement undoing invariant
14555 inheritance.
14556 (undo_optional_reloads, lra_undo_inheritance): Use restore_rtx
14557 instead of restore_regno.
14558 * lra-assigns.c (regno_live_length): New.
14559 (reload_pseudo_compare_func): Use regno_live_length.
14560 (assign_by_spills): Use restore_rtx instead of restore_regno.
14561 (lra_assign): Ditto. Initiate regno_live_length.
14562
14563 2016-02-08 James Greenhalgh <james.greenhalgh@arm.com>
14564
14565 * config/aarch64/arm_neon.h (vminnm_f64): Add back missing 'f' from
14566 __builtin_aarch64_fmindf.
14567
14568 2016-08-02 Bin Cheng <bin.cheng@arm.com>
14569
14570 PR tree-optimization/34114
14571 * tree-ssa-loop-niter.c (number_of_iterations_ne): Prove no-overflow
14572 information for more control IVs.
14573
14574 2016-08-02 Bin Cheng <bin.cheng@arm.com>
14575
14576 PR tree-optimization/34114
14577 * fold-const.c (multiple_of_p): Improve MULT_EXPR, PLUS_EXPR,
14578 PLUS_EXPR case. Handle SSA_NAME case.
14579
14580 2016-08-02 Tamar Christina <tamar.christina@arm.com>
14581
14582 * config/aarch64/aarch64-simd-builtins.def
14583 (__builtin_aarch64_fmindf): Change BUILTIN_VDQF to BUILTIN_VDQF_DF.
14584 (__builtin_aarch64_fmaxdf): Likewise.
14585 (__builtin_aarch64_smin_nandf): Likewise.
14586 (__builtin_aarch64_smax_nandf): Likewise.
14587 * config/aarch64/aarch64-simd.md (<fmaxmin><mode>3): Remove.
14588 * config/aarch64/aarch64.md (<fmaxmin><mode>3): Rename to...
14589 (<fmaxmin><mode>3): ...this.
14590 * config/aarch64/arm_neon.h (vmaxnm_f64): New.
14591 (vminnm_f64): Likewise.
14592 (vmin_f64): Likewise.
14593 (vmax_f64): Likewise.
14594 * config/aarch64/iterators.md (FMAXMIN): Merge with...
14595 (FMAXMIN_UNS): ...this.
14596 (fmaxmin): Merged with
14597 (fmaxmin_op): ...this...
14598 (maxmin_uns_op): ...in to this.
14599
14600 2016-08-01 Michael Meissner <meissner@linux.vnet.ibm.com>
14601
14602 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
14603 Add support for vec_extract on vector float, vector int, vector
14604 short, and vector char vector types.
14605 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
14606 vector float, vector int, vector short, and vector char
14607 optimizations on 64-bit ISA 2.07 systems for both constant and
14608 variable element numbers.
14609 (rs6000_split_vec_extract_var): Likewise.
14610 * config/rs6000/vsx.md (vsx_xscvspdp_scalar2): Allow SFmode to be
14611 Altivec registers on ISA 2.07 and above.
14612 (vsx_extract_v4sf): Delete alternative that hard coded element 0,
14613 which never was matched due to the split occuring before register
14614 allocation (and the code would not have worked on little endian
14615 systems if it did match). Allow extracts to go to the Altivec
14616 registers if ISA 2.07 (power8). Change from using "" around the
14617 C++ code to using {}'s.
14618 (vsx_extract_v4sf_<mode>_load): New insn to optimize vector float
14619 vec_extracts when the vector is in memory.
14620 (vsx_extract_v4sf_var): New insn to optimize vector float
14621 vec_extracts when the element number is variable on 64-bit ISA
14622 2.07 systems.
14623 (vsx_extract_<mode>, VSX_EXTRACT_I iterator): Add optimizations
14624 for 64-bit ISA 2.07 as well as ISA 3.0.
14625 (vsx_extract_<mode>_p9, VSX_EXTRACT_I iterator): Likewise.
14626 (vsx_extract_<mode>_p8, VSX_EXTRACT_I iterator): Likewise.
14627 (vsx_extract_<mode>_load, VSX_EXTRACT_I iterator): New insn to
14628 optimize vector int, vector short, and vector char vec_extracts
14629 when the vector is in memory.
14630 (vsx_extract_<mode>_var, VSX_EXTRACT_I iterator): New insn to
14631 optimize vector int, vector short, and vector char vec_extracts
14632 when the element number is variable.
14633
14634 2016-08-01 Georg-Johann Lay <avr@gjlay.de>
14635
14636 PR target/71948
14637 * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): Use a value that
14638 does not overlap with other symbol flags.
14639
14640 2016-08-01 Wilco Dijkstra <wdijkstr@arm.com>
14641
14642 * config/aarch64/aarch64.h (aarch64_frame):
14643 Remove padding0 and hardfp_offset. Add locals_offset,
14644 initial_adjust, callee_adjust, callee_offset and final_adjust.
14645 * config/aarch64/aarch64.c (aarch64_layout_frame):
14646 Remove unused padding0 and hardfp_offset initializations.
14647 Choose frame layout and set frame variables accordingly.
14648 Use INVALID_REGNUM instead of FIRST_PSEUDO_REGISTER.
14649 (aarch64_push_regs): Use INVALID_REGNUM, not FIRST_PSEUDO_REGISTER.
14650 (aarch64_pop_regs): Likewise.
14651 (aarch64_expand_prologue): Remove all decision code, just emit
14652 prolog according to frame variables.
14653 (aarch64_expand_epilogue): Remove all decision code, just emit
14654 epilog according to frame variables.
14655 (aarch64_initial_elimination_offset): Use offset to local/arg area.
14656
14657 2015-08-01 H.J. Lu <hongjiu.lu@intel.com>
14658
14659 PR target/72748
14660 * config/i386/i386.c (timode_scalar_chain::convert_insn): Call
14661 fix_debug_reg_uses after changing source register mode to
14662 V1TImode if source register is undefined.
14663
14664 2015-08-01 Alan Hayward <alan.hayward@arm.com>
14665
14666 PR tree-optimization/71818
14667 * tree-vect-loop-manip.c (vect_can_advance_ivs_p): Don't advance IVs
14668 with non invariant evolutions
14669
14670 2016-08-01 Georg-Johann Lay <avr@gjlay.de>
14671
14672 PR target/72767
14673 * config/avr/avr.md (length) [branch]: Correct insn length
14674 attribute for forward branches.
14675
14676 2016-08-01 Georg-Johann Lay <avr@gjlay.de>
14677
14678 * doc/extend.texi (AVR Built-in Functions): Document
14679 __builtin_avr_nops.
14680 * config/avr/builtins.def (NOPS): New.
14681 * config/avr/avr.c (avr_expand_nops): New static function.
14682 (avr_expand_builtin): Use it to handle AVR_BUILTIN_NOPS.
14683
14684 2016-08-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14685
14686 * config/aarch64/aarch64.c (aarch64_classify_address): Use DImode when
14687 performing aarch64_offset_7bit_signed_scaled_p check for TImode LDP/STP
14688 addresses.
14689
14690 2016-08-01 Virendra Pathak <virendra.pathak@broadcom.com>
14691
14692 * config/aarch64/aarch64.c (vulcan_tunings): Update
14693 vulcan L1 cache_line_size.
14694
14695 2016-07-30 Michael Meissner <meissner@linux.vnet.ibm.com>
14696
14697 * config/rs6000/rs6000-protos.h (rs6000_adjust_vec_address): New
14698 function that takes a vector memory address, a hard register, an
14699 element number and a temporary base register, and recreates an
14700 address that points to the appropriate element within the vector.
14701 * config/rs6000/rs6000.c (rs6000_adjust_vec_address): Likewise.
14702 (rs6000_split_vec_extract_var): Add support for the target of a
14703 vec_extract with variable element number being a scalar memory
14704 location.
14705 (rtx_is_swappable_p): VLSO insns (UNSPEC_VSX_VSLOW) are not
14706 swappable.
14707 * config/rs6000/vsx.md (vsx_extract_<mode>_load): Replace
14708 vsx_extract_<mode>_load insn with a new insn that optimizes
14709 storing either element to a memory location, using scratch
14710 registers to pick apart the vector and reconstruct the address.
14711 (vsx_extract_<P:mode>_<VSX_D:mode>_load): Likewise.
14712 (vsx_extract_<mode>_store): Rework alternatives to more correctly
14713 support Altivec registers. Add support for ISA 3.0 Altivec d-form
14714 store instruction.
14715 (vsx_extract_<mode>_var): Add support for extracting a variable
14716 element number from memory.
14717
14718 2016-07-29 Georg-Johann Lay <avr@gjlay.de>
14719
14720 * config/avr/avr.c (avr_out_compare): Use const0_rtx instead of 0
14721 when testing for compares against constants of the form 0xabab.
14722
14723 2016-07-29 Bin Cheng <bin.cheng@arm.com>
14724
14725 PR tree-optimization/57558
14726 * tree-vect-loop-manip.c (vect_create_cond_for_niters_checks): New
14727 function.
14728 (vect_loop_versioning): Support versioning with niter assumptions.
14729 * tree-vect-loop.c (tree-ssa-loop.h): Include header file.
14730 (vect_get_loop_niters): New parameter. Reimplement to support
14731 assumptions in loop niter info.
14732 (vect_analyze_loop_form_1, vect_analyze_loop_form): Ditto.
14733 (new_loop_vec_info): Init LOOP_VINFO_NITERS_ASSUMPTIONS.
14734 (vect_estimate_min_profitable_iters): Use LOOP_REQUIRES_VERSIONING.
14735 Support loop versioning for niters.
14736 * tree-vectorizer.c (tree-ssa-loop-niter.h): Include header file.
14737 (vect_free_loop_info_assumptions): New function.
14738 (vectorize_loops): Free loop niter info for loops with flag
14739 LOOP_F_ASSUMPTIONS set if vectorization failed.
14740 * tree-vectorizer.h (struct _loop_vec_info): New field
14741 num_iters_assumptions.
14742 (LOOP_VINFO_NITERS_ASSUMPTIONS): New macro.
14743 (LOOP_REQUIRES_VERSIONING_FOR_NITERS): New macro.
14744 (LOOP_REQUIRES_VERSIONING): New macro.
14745 (vect_free_loop_info_assumptions): New decl.
14746
14747 2016-07-29 Bin Cheng <bin.cheng@arm.com>
14748
14749 * cfgloop.h (struct loop): New field constraints.
14750 (LOOP_C_INFINITE, LOOP_C_FINITE): New macros.
14751 (loop_constraint_set, loop_constraint_clr, loop_constraint_set_p): New
14752 functions.
14753 * cfgloop.c (alloc_loop): Initialize new field.
14754 * cfgloopmanip.c (copy_loop_info): Copy constraints.
14755 * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions):
14756 Adjust niter analysis wrto loop constraints.
14757 * doc/loop.texi (@node Number of iterations): Add description for loop
14758 constraints.
14759
14760 2016-07-29 Marek Polacek <polacek@redhat.com>
14761
14762 PR c/7652
14763 * config/i386/i386.c (ix86_expand_args_builtin): Add break.
14764 (ix86_expand_round_builtin): Likewise.
14765
14766 2016-07-29 Segher Boessenkool <segher@kernel.crashing.org>
14767 Georg-Johann Lay <avr@gjlay.de>
14768
14769 PR rtl-optimization/71976
14770 * combine.c (get_last_value): Return 0 if the argument for which
14771 the function is called has a wider mode than the recorded value.
14772
14773 2016-07-29 Marek Polacek <polacek@redhat.com>
14774
14775 PR c/7652
14776 * config/rs6000/rs6000.c (altivec_expand_ld_builtin): Add break.
14777 (altivec_expand_st_builtin): Likewise.
14778
14779 2016-07-29 Georg-Johann Lay <avr@gjlay.de>
14780
14781 * config/avr/avr.md (addqi3) [cc]: Revert glitch in insn attribute
14782 introduced in r238381.
14783
14784 2016-07-29 Kugan Vivekanandarajah <kuganv@linaro.org>
14785
14786 PR middle-end/68217
14787 * tree-vrp.c (extract_range_from_binary_expr_1): In case of signed
14788 & sign-bit-CST, generate [-INF, 0] instead of [-INF, INF].
14789
14790 2016-07-28 Michael Meissner <meissner@linux.vnet.ibm.com>
14791
14792 * config/rs6000/rs6000-protos.h (rs6000_split_vec_extract_var):
14793 New declaration.
14794 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
14795 Add support for vec_extract of vector double or vector long having
14796 a variable element number on 64-bit ISA 2.07 systems or newer.
14797 * config/rs6000/rs6000.c (rs6000_expand_vector_extract):
14798 Likewise.
14799 (rs6000_split_vec_extract_var): New function to split a
14800 vec_extract built-in function with variable element number.
14801 (rtx_is_swappable_p): Variable vec_extracts and shifts are not
14802 swappable.
14803 * config/rs6000/vsx.md (UNSPEC_VSX_VSLO): New unspec.
14804 (UNSPEC_VSX_EXTRACT): Likewise.
14805 (vsx_extract_<mode>, VSX_D iterator): Fix constraints to allow
14806 direct move instructions to be generated on 64-bit ISA 2.07
14807 systems and newer, and to take advantage of the ISA 3.0 MFVSRLD
14808 instruction.
14809 (vsx_vslo_<mode>): New insn to do VSLO on V2DFmode and V2DImode
14810 arguments for vec_extract variable element.
14811 (vsx_extract_<mode>_var, VSX_D iterator): New insn to support
14812 vec_extract with variable element on V2DFmode and V2DImode
14813 vectors.
14814 * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): Remove
14815 -mupper-regs-df requirement, since it isn't needed.
14816 (TARGET_DIRECT_MOVE_64BIT): New macro to say whether we can
14817 do direct moves on 64-bit systems, which allows optimization of
14818 vec_extract on 64-bit ISA 2.07 systems and newer.
14819
14820 2016-07-28 Kristina Martsenko <kristina.martsenko@arm.com>
14821 2016-07-28 Wilco Dijkstra <wdijkstr@arm.com>
14822
14823 * config/aarch64/aarch64.md
14824 (zero_extend<SHORT:mode><GPI:mode>2_aarch64): Change output
14825 statement and type.
14826 (<optab>qihi2_aarch64): Likewise, and split into two.
14827 (extendqihi2_aarch64): New.
14828 (zero_extendqihi2_aarch64): New.
14829 * config/aarch64/iterators.md (ldrxt): Remove.
14830 * config/aarch64/aarch64.c (aarch64_rtx_costs): Change cost of
14831 uxtb/uxth.
14832
14833 2016-07-28 Kristina Martsenko <kristina.martsenko@arm.com>
14834
14835 * config/aarch64/aarch64.c (aarch64_rtx_costs): Fix cost of zero extend.
14836
14837 2016-07-28 Wilco Dijkstra <wdijkstr@arm.com>
14838
14839 * config/aarch64/aarch64.c (aarch64_pushwb_pair_reg): Rename.
14840 (aarch64_push_reg): New function to push 1 or 2 registers.
14841 (aarch64_pop_reg): New function to pop 1 or 2 registers.
14842 (aarch64_expand_prologue): Use aarch64_push_regs.
14843 (aarch64_expand_epilogue): Use aarch64_pop_regs.
14844
14845 2016-07-28 Yuri Rumyantsev <ysrumyan@gmail.com>
14846
14847 PR tree-optimization/71734
14848 * tree-ssa-loop-im.c (ref_indep_loop_p_1): Pass value of safelen
14849 attribute instead of REF_LOOP and use it.
14850 (ref_indep_loop_p_2): Use SAFELEN argument instead of REF_LOOP and
14851 set it for Loops having non-zero safelen attribute.
14852 (ref_indep_loop_p): Pass zero as initial value for safelen.
14853
14854 2016-07-28 Ilya Enkovich <ilya.enkovich@intel.com>
14855
14856 PR middle-end/72657
14857 PR target/72683
14858 * tree-chkp.c (chkp_retbnd_call_by_val): Check for instrumentation
14859 call using chkp_gimple_call_builtin_p.
14860 (chkp_copy_bounds_for_assign): Likewise.
14861
14862 2016-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
14863
14864 * config/alpha/alpha.c (alpha_adjust_cost): Adjust.
14865 * config/arm/arm-protos.h (struct tune_params): Likewise.
14866 * config/arm/arm.c (xscale_sched_adjust_cost): Likewise.
14867 (cortex_a9_sched_adjust_cost): Likewise.
14868 (fa726te_sched_adjust_cost): Likewise.
14869 (arm_adjust_cost): Likewise.
14870 * config/bfin/bfin.c (bfin_adjust_cost): Likewise.
14871 * config/c6x/c6x.c (c6x_adjust_cost): Likewise.
14872 * config/epiphany/epiphany.c (epiphany_adjust_cost): Likewise.
14873 * config/i386/i386.c (ix86_adjust_cost): Likewise.
14874 * config/ia64/ia64.c: Likewise.
14875 * config/m68k/m68k.c: Likewise.
14876 * config/mep/mep.c (mep_adjust_cost): Likewise.
14877 * config/microblaze/microblaze.c (microblaze_adjust_cost):
14878 * Likewise.
14879 * config/mips/mips.c (mips_adjust_cost): Likewise.
14880 * config/mn10300/mn10300.c (mn10300_adjust_sched_cost):
14881 * Likewise.
14882 * config/pa/pa.c (pa_adjust_cost): Likewise.
14883 * config/rs6000/rs6000.c (rs6000_adjust_cost): Likewise.
14884 (rs6000_debug_adjust_cost): Likewise.
14885 * config/sh/sh.c (sh_adjust_cost): Likewise.
14886 * config/sparc/sparc.c (supersparc_adjust_cost): Likewise.
14887 (hypersparc_adjust_cost): Likewise.
14888 (sparc_adjust_cost): Likewise.
14889 * config/spu/spu.c (spu_sched_adjust_cost): Likewise.
14890 * config/tilegx/tilegx.c (tilegx_sched_adjust_cost): Likewise.
14891 * config/tilepro/tilepro.c (tilepro_sched_adjust_cost):
14892 * Likewise.
14893 * config/visium/visium.c (visium_adjust_cost): Likewise.
14894 * doc/tm.texi: Regenerate.
14895 * haifa-sched.c (dep_cost_1): Adjust.
14896 * target.def: Merge adjust_cost and adjust_cost_2.
14897
14898 2016-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
14899
14900 * haifa-sched.c (add_to_speculative_block): Make twins a vector.
14901
14902 2016-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
14903
14904 * store-motion.c (struct st_expr): Make pattern_regs a vector.
14905 (extract_mentioned_regs): Append to a vector instead of
14906 returning a rtx_expr_list.
14907 (st_expr_entry): Adjust.
14908 (free_st_expr_entry): Likewise.
14909 (store_ops_ok): Likewise.
14910 (store_killed_in_insn): Likewise.
14911 (find_moveable_store): Likewise.
14912
14913 2016-07-28 Martin Liska <mliska@suse.cz>
14914
14915 PR gcov-profile/68025
14916 * tree-profile.c (tree_profiling): Respect
14917 no_profile_instrument_function attribute.
14918 * doc/extend.texi: Document no_profile_instrument_function
14919 attribute.
14920
14921 2016-07-28 Martin Liska <mliska@suse.cz>
14922
14923 PR rtl-optimization/70944
14924 * combine.c (make_compound_operation):
14925 Do not allow make_compound_operation for vector mode
14926
14927 2016-07-28 Kugan Vivekanandarajah <kuganv@linaro.org>
14928
14929 PR middle-end/71994
14930 * tree-ssa-reassoc.c (maybe_optimize_range_tests): Check tcc_comparison
14931 before calling get_ops.
14932
14933 2016-07-27 Bernd Edlinger <bernd.edlinger@hotmail.de>
14934
14935 * defaults.h (LOG2_BITS_PER_UNIT): Move from here...
14936 * tree.h (LOG2_BITS_PER_UNIT): ...to here.
14937 (BITS_PER_UNIT_LOG): Remove.
14938 (int_bit_position): Use LOG2_BITS_PER_UNIT instead of BITS_PER_UNIT_LOG.
14939 * expr.c (expand_assignment): Likewise.
14940 * stor-layout.c (initialize_sizetypes): Likewise.
14941
14942 2016-07-27 Michael Meissner <meissner@linux.vnet.ibm.com>
14943
14944 * config/rs6000/vector.md (vec_extract<mode>): Change the calling
14945 signature of rs6000_expand_vector_extract so that the element
14946 number is a RTX instead of a constant integer.
14947 * config/rs6000/rs6000-protos.h (rs6000_expand_vector_extract):
14948 Likewise.
14949 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Likewise.
14950 (altivec_expand_vec_ext_builtin): Likewise.
14951 * config/rs6000/altivec.md (reduc_plus_scal_<mode>): Likewise.
14952 * config/rs6000/vsx.md (vsx_extract_<mode>): Fix spelling of the
14953 MFVSRLD instruction.
14954
14955 2016-07-27 David Malcolm <dmalcolm@redhat.com>
14956
14957 * input.c (get_pure_location): Move here from tree.c.
14958 (make_location): Likewise. Add header comment.
14959 (selftest::test_accessing_ordinary_linemaps): Verify
14960 pure_location_p, make_location, get_location_from_adhoc_loc and
14961 get_range_from_loc.
14962 * input.h (get_pure_location): Move declaration here from tree.h.
14963 (get_finish): Likewise for inline function.
14964 (make_location): Likewise for declaration.
14965 * tree.c (get_pure_location): Move to input.c.
14966 (make_location): Likewise.
14967 * tree.h (get_pure_location): Move declaration to tree.h.
14968 (get_finish): Likewise for inline function.
14969 (make_location): Likewise for declaration.
14970
14971 2016-07-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
14972
14973 PR middle-end/71078
14974 * match.pd (x / abs(x) -> copysign(1.0, x)): New pattern.
14975
14976 2016-07-27 David Malcolm <dmalcolm@redhat.com>
14977
14978 * system.h (STATIC_ASSERT): Use static_assert if building
14979 with C++11 onwards.
14980
14981 2016-07-27 Richard Biener <rguenther@suse.de>
14982
14983 PR tree-optimization/72517
14984 * tree-vect-data-refs.c (vect_analyze_data_ref_dependences):
14985 Revert change to not compute read-read dependences.
14986
14987 2016-07-27 Richard Biener <rguenther@suse.de>
14988
14989 * predict.c (set_even_probabilities): Make nedges unsigned.
14990
14991 2016-07-27 Martin Liska <mliska@suse.cz>
14992
14993 * predict.c (set_even_probabilities): Handle unlikely edges.
14994 (combine_predictions_for_bb): Likewise.
14995
14996 2016-07-26 Michael Meissner <meissner@linux.vnet.ibm.com>
14997
14998 PR target/71869
14999 * config/rs6000/rs6000.c (rs6000_generate_compare): Rework
15000 __float128 support when we don't have hardware support, so that
15001 the IEEE built-in functions like isgreater, first call __unordkf3
15002 to make sure neither operand is a NaN, and if both operands are
15003 ordered, do the normal comparison.
15004
15005 2016-07-26 Patrick Palka <ppalka@gcc.gnu.org>
15006
15007 * tree-vrp.c (dump_asserts_for): Print loc->expr instead of
15008 name.
15009 (extract_code_and_val_from_cond_with_ops): Verify that name is
15010 either cond_op0 or cond_op1.
15011
15012 2016-07-26 Patrick Palka <ppalka@gcc.gnu.org>
15013
15014 PR tree-optimization/18046
15015 * genmodes.c (emit_mode_size_inline): Emit an assert that
15016 verifies that mode is a valid array index.
15017 (emit_mode_nuinits_inline): Likewise.
15018 (emit_mode_inner_inline): Likewise.
15019 (emit_mode_unit_size_inline): Likewise.
15020 (emit_mode_unit_precision_inline): Likewise.
15021 * tree-vrp.c: Include params.h.
15022 (find_switch_asserts): Register edge assertions for the default
15023 label which correspond to the anti-ranges of each case label.
15024 * params.def (PARAM_MAX_VRP_SWITCH_ASSERTIONS): New.
15025 * doc/invoke.texi: Document it.
15026
15027 2016-07-26 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
15028
15029 * gimple-ssa-strength-reduction.c (slsr_process_phi): Remove dead
15030 and unnecessary call to gimple_bb.
15031
15032 2016-07-26 Richard Biener <rguenther@suse.de>
15033
15034 PR rtl-optimization/71984
15035 * simplify-rtx.c (simplify_subreg): Use GET_MODE_SIZE and prepare
15036 for VOIDmode.
15037
15038 2016-07-26 Richard Biener <rguenther@suse.de>
15039
15040 PR middle-end/72517
15041 * expmed.c (extract_bit_field_1): Constrain the vector mode
15042 with element size matching the extraction mode size when
15043 choosing a better vector mode to do the extraction from.
15044
15045 2016-07-26 Richard Biener <rguenther@suse.de>
15046 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
15047
15048 PR middle-end/70920
15049 * match.pd ((intptr)x eq/ne CST to x eq/ne (typeof x) CST): New
15050 pattern.
15051
15052 2016-07-26 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
15053
15054 * tree-ssa-structalias.c (struct scc_info): Change types of
15055 members to auto_sbitmap and auto_vec.
15056 (scc_info::scc_info): New constructor.
15057 (scc_info::~scc_info): New destructor.
15058 (init_scc_info): Remove.
15059 (free_scc_info): Remove.
15060 (find_indirect_cycles): Adjust.
15061 (perform_var_substitution): Likewise.
15062 (free_var_substitution_info): Likewise.
15063
15064 2016-07-26 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
15065
15066 * tree-outof-ssa.c (struct elim_graph): Change type of members
15067 to auto_vec and auto_sbitmap.
15068 (elim_graph::elim_graph): New constructor.
15069 (delete_elim_graph): Remove.
15070 (expand_phi_nodes): Adjust.
15071
15072 2016-07-26 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
15073
15074 * tree-outof-ssa.c (struct elim_graph): Remove typedef.
15075 (new_elim_graph): Adjust.
15076 (clear_elim_graph): Likewise.
15077 (delete_elim_graph): Likewise.
15078 (elim_graph_size): Likewise.
15079 (elim_graph_add_node): Likewise.
15080 (elim_graph_add_edge): Likewise.
15081 (elim_graph_remove_succ_edge): Likewise.
15082 (eliminate_name): Likewise.
15083 (eliminate_build): Likewise.
15084 (elim_forward): Likewise.
15085 (elim_unvisited_predecessor): Likewise.
15086 (elim_backward): Likewise.
15087 (elim_create): Likewise.
15088 (eliminate_phi): Likewise.
15089 (expand_phi_nodes): Likewise.
15090
15091 2016-07-26 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
15092
15093 * bt-load.c (compute_out): Use auto_sbitmap class.
15094 (link_btr_uses): Likewise.
15095 * cfganal.c (mark_dfs_back_edges): Likewise.
15096 (post_order_compute): Likewise.
15097 (inverted_post_order_compute): Likewise.
15098 (pre_and_rev_post_order_compute_fn): Likewise.
15099 (single_pred_before_succ_order): Likewise.
15100 * cfgexpand.c (pass_expand::execute): Likewise.
15101 * cfgloop.c (verify_loop_structure): Likewise.
15102 * cfgloopmanip.c (fix_bb_placements): Likewise.
15103 (remove_path): Likewise.
15104 (update_dominators_in_loop): Likewise.
15105 * cfgrtl.c (break_superblocks): Likewise.
15106 * ddg.c (check_sccs): Likewise.
15107 (create_ddg_all_sccs): Likewise.
15108 * df-core.c (df_worklist_dataflow): Likewise.
15109 * dse.c (dse_step3): Likewise.
15110 * except.c (eh_region_outermost): Likewise.
15111 * function.c (thread_prologue_and_epilogue_insns): Likewise.
15112 * gcse.c (prune_expressions): Likewise.
15113 (prune_insertions_deletions): Likewise.
15114 * gimple-ssa-backprop.c (backprop::~backprop): Likewise.
15115 * graph.c (draw_cfg_nodes_no_loops): Likewise.
15116 * ira-lives.c (remove_some_program_points_and_update_live_ranges): Likewise.
15117 * lcm.c (compute_earliest): Likewise.
15118 (compute_farthest): Likewise.
15119 * loop-unroll.c (unroll_loop_constant_iterations): Likewise.
15120 (unroll_loop_runtime_iterations): Likewise.
15121 (unroll_loop_stupid): Likewise.
15122 * lower-subreg.c (decompose_multiword_subregs): Likewise.
15123 * lra-lives.c: Likewise.
15124 * lra.c (lra): Likewise.
15125 * modulo-sched.c (schedule_reg_moves): Likewise.
15126 (optimize_sc): Likewise.
15127 (get_sched_window): Likewise.
15128 (sms_schedule_by_order): Likewise.
15129 (check_nodes_order): Likewise.
15130 (order_nodes_of_sccs): Likewise.
15131 (order_nodes_in_scc): Likewise.
15132 * recog.c (split_all_insns): Likewise.
15133 * regcprop.c (pass_cprop_hardreg::execute): Likewise.
15134 * reload1.c (reload): Likewise.
15135 * sched-rgn.c (haifa_find_rgns): Likewise.
15136 (split_edges): Likewise.
15137 (compute_trg_info): Likewise.
15138 * sel-sched.c (init_seqno): Likewise.
15139 * store-motion.c (remove_reachable_equiv_notes): Likewise.
15140 * tree-into-ssa.c (update_ssa): Likewise.
15141 * tree-ssa-live.c (live_worklist): Likewise.
15142 * tree-ssa-loop-im.c (fill_always_executed_in): Likewise.
15143 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
15144 * Likewise.
15145 (try_peel_loop): Likewise.
15146 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop):
15147 * Likewise.
15148 * tree-ssa-pre.c (compute_antic): Likewise.
15149 * tree-ssa-reassoc.c (undistribute_ops_list): Likewise.
15150 * tree-stdarg.c (reachable_at_most_once): Likewise.
15151 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Likewise.
15152 * var-tracking.c (vt_find_locations): Likewise.
15153
15154 2016-07-26 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
15155
15156 * sbitmap.h (auto_sbitmap): New class.
15157
15158 2016-07-26 Alan Modra <amodra@gmail.com>
15159
15160 PR target/72103
15161 * config/rs6000/rs6000.c (rs6000_secondary_reload): Initialize
15162 sri->t_icode.
15163
15164 2016-07-25 David Malcolm <dmalcolm@redhat.com>
15165
15166 * input.c (selftest::temp_source_file::temp_source_file): Fix
15167 missing "%s" in fprintf.
15168
15169 2016-07-25 John David Anglin <danglin@gcc.gnu.org>
15170
15171 PR middle-end/71732
15172 * cselib.c (cselib_process_insn): Invalidate argument slots for
15173 const/pure calls.
15174
15175 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15176
15177 * config/aarch64/arm_neon.h (vfmah_lane_f16, vfmah_laneq_f16,
15178 vfmsh_lane_f16, vfmsh_laneq_f16, vmulh_lane_f16, vmulh_laneq_f16,
15179 vmulxh_lane_f16, vmulxh_laneq_f16): New.
15180
15181 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15182
15183 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
15184 * config/aarch64/aarch64.md (fma, fnma): Support HF.
15185 * config/aarch64/arm_fp16.h (vfmah_f16, vfmsh_f16): New.
15186
15187 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15188
15189 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
15190 * config/aarch64/aarch64.md (<FCVT_F2FIXED:fcvt_fixed_insn>hf<mode>3):
15191 New.
15192 (<FCVT_FIXED2F:fcvt_fixed_insn><mode>hf3): Likewise.
15193 (add<mode>3): Likewise.
15194 (sub<mode>3): Likewise.
15195 (mul<mode>3): Likewise.
15196 (div<mode>3): Likewise.
15197 (*div<mode>3): Likewise.
15198 (<fmaxmin><mode>3): Extend to HF.
15199 * config/aarch64/aarch64-simd.md (aarch64_rsqrts<mode>): Likewise.
15200 (fabd<mode>3): Likewise.
15201 (<FCVT_F2FIXED:fcvt_fixed_insn><VHSDF_HSDF:mode>3): Likewise.
15202 (<FCVT_FIXED2F:fcvt_fixed_insn><VHSDI_HSDI:mode>3): Likewise.
15203 (aarch64_fmulx<mode>): Likewise.
15204 (aarch64_fac<optab><mode>): Likewise.
15205 (aarch64_frecps<mode>): Likewise.
15206 (<FCVT_F2FIXED:fcvt_fixed_insn>hfhi3): New.
15207 (<FCVT_FIXED2F:fcvt_fixed_insn>hihf3): Likewise.
15208 * config/aarch64/iterators.md (VHSDF_SDF): Delete.
15209 (VSDQ_HSDI): Support HI.
15210 (fcvt_target, FCVT_TARGET): Likewise.
15211 * config/aarch64/arm_fp16.h (vaddh_f16, vsubh_f16, vabdh_f16,
15212 vcageh_f16, vcagth_f16, vcaleh_f16, vcalth_f16, vceqh_f16, vcgeh_f16,
15213 vcgth_f16, vcleh_f16, vclth_f16, vcvth_n_f16_s16, vcvth_n_f16_s32,
15214 vcvth_n_f16_s64, vcvth_n_f16_u16, vcvth_n_f16_u32, vcvth_n_f16_u64,
15215 vcvth_n_s16_f16, vcvth_n_s32_f16, vcvth_n_s64_f16, vcvth_n_u16_f16,
15216 vcvth_n_u32_f16, vcvth_n_u64_f16, vdivh_f16, vmaxh_f16, vmaxnmh_f16,
15217 vminh_f16, vminnmh_f16, vmulh_f16, vmulxh_f16, vrecpsh_f16,
15218 vrsqrtsh_f16): New.
15219
15220 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15221
15222 * config.gcc (aarch64*-*-*): Install arm_fp16.h.
15223 * config/aarch64/aarch64-builtins.c (hi_UP): New.
15224 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
15225 * config/aarch64/aarch64-simd.md (aarch64_frsqrte<mode>): Extend to HF
15226 mode.
15227 (aarch64_frecp<FRECP:frecp_suffix><mode>): Likewise.
15228 (aarch64_cm<optab><mode>): Likewise.
15229 * config/aarch64/aarch64.md (<frint_pattern><mode>2): Likewise.
15230 (l<fcvt_pattern><su_optab><GPF:mode><GPI:mode>2): Likewise.
15231 (fix_trunc<GPF:mode><GPI:mode>2): Likewise.
15232 (sqrt<mode>2): Likewise.
15233 (*sqrt<mode>2): Likewise.
15234 (abs<mode>2): Likewise.
15235 (<optab><mode>hf2): New pattern for HF mode.
15236 (<optab>hihf2): Likewise.
15237 * config/aarch64/arm_neon.h: Include arm_fp16.h.
15238 * config/aarch64/iterators.md (GPF_F16, GPI_F16, VHSDF_HSDF): New.
15239 (w1, w2, v, s, q, Vmtype, V_cmp_result, fcvt_iesize, FCVT_IESIZE):
15240 Support HF mode.
15241 * config/aarch64/arm_fp16.h: New file.
15242 (vabsh_f16, vceqzh_f16, vcgezh_f16, vcgtzh_f16, vclezh_f16, vcltzh_f16,
15243 vcvth_f16_s16, vcvth_f16_s32, vcvth_f16_s64, vcvth_f16_u16,
15244 vcvth_f16_u32, vcvth_f16_u64, vcvth_s16_f16, vcvth_s32_f16,
15245 vcvth_s64_f16, vcvth_u16_f16, vcvth_u32_f16, vcvth_u64_f16,
15246 vcvtah_s16_f16, vcvtah_s32_f16, vcvtah_s64_f16, vcvtah_u16_f16,
15247 vcvtah_u32_f16, vcvtah_u64_f16, vcvtmh_s16_f16, vcvtmh_s32_f16,
15248 vcvtmh_s64_f16, vcvtmh_u16_f16, vcvtmh_u32_f16, vcvtmh_u64_f16,
15249 vcvtnh_s16_f16, vcvtnh_s32_f16, vcvtnh_s64_f16, vcvtnh_u16_f16,
15250 vcvtnh_u32_f16, vcvtnh_u64_f16, vcvtph_s16_f16, vcvtph_s32_f16,
15251 vcvtph_s64_f16, vcvtph_u16_f16, vcvtph_u32_f16, vcvtph_u64_f16,
15252 vnegh_f16, vrecpeh_f16, vrecpxh_f16, vrndh_f16, vrndah_f16, vrndih_f16,
15253 vrndmh_f16, vrndnh_f16, vrndph_f16, vrndxh_f16, vrsqrteh_f16,
15254 vsqrth_f16): New.
15255
15256 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15257
15258 * config/aarch64/aarch64-simd-builtins.def (reduc_smax_scal_,
15259 reduc_smin_scal_): Use VDQIF_F16.
15260 (reduc_smax_nan_scal_, reduc_smin_nan_scal_): Use VHSDF.
15261 * config/aarch64/aarch64-simd.md (reduc_<maxmin_uns>_scal_<mode>):
15262 Use VHSDF.
15263 (aarch64_reduc_<maxmin_uns>_internal<mode>): Likewise.
15264 * config/aarch64/iterators.md (VDQIF_F16): New.
15265 (vp): Support HF modes.
15266 * config/aarch64/arm_neon.h (vmaxv_f16, vmaxvq_f16, vminv_f16,
15267 vminvq_f16, vmaxnmv_f16, vmaxnmvq_f16, vminnmv_f16, vminnmvq_f16): New.
15268
15269 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15270
15271 * config/aarch64/aarch64-simd.md (*aarch64_mulx_elt_to_64v2df): Rename to
15272 "*aarch64_mulx_elt_from_dup<mode>".
15273 (*aarch64_mul3_elt<mode>): Update schedule type.
15274 (*aarch64_mul3_elt_from_dup<mode>): Likewise.
15275 (*aarch64_fma4_elt_from_dup<mode>): Likewise.
15276 (*aarch64_fnma4_elt_from_dup<mode>): Likewise.
15277 * config/aarch64/iterators.md (VMUL): Supprt half precision float modes.
15278 (f, fp): Support HF modes.
15279 * config/aarch64/arm_neon.h (vfma_lane_f16, vfmaq_lane_f16,
15280 vfma_laneq_f16, vfmaq_laneq_f16, vfma_n_f16, vfmaq_n_f16, vfms_lane_f16,
15281 vfmsq_lane_f16, vfms_laneq_f16, vfmsq_laneq_f16, vfms_n_f16,
15282 vfmsq_n_f16, vmul_lane_f16, vmulq_lane_f16, vmul_laneq_f16,
15283 vmulq_laneq_f16, vmul_n_f16, vmulq_n_f16, vmulx_lane_f16,
15284 vmulxq_lane_f16, vmulx_laneq_f16, vmulxq_laneq_f16): New.
15285
15286 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15287
15288 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
15289 * config/aarch64/aarch64-simd.md (fma<mode>4, fnma<mode>4): Extend to HF
15290 modes.
15291 * config/aarch64/arm_neon.h (vfma_f16, vfmaq_f16, vfms_f16,
15292 vfmsq_f16): New.
15293
15294 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15295
15296 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
15297 * config/aarch64/aarch64-simd.md
15298 (aarch64_rsqrts<mode>): Extend to HF modes.
15299 (fabd<mode>3): Likewise.
15300 (<FCVT_F2FIXED:fcvt_fixed_insn><VHSDF_SDF:mode>3): Likewise.
15301 (<FCVT_FIXED2F:fcvt_fixed_insn><VHSDI_SDI:mode>3): Likewise.
15302 (aarch64_<maxmin_uns>p<mode>): Likewise.
15303 (<su><maxmin><mode>3): Likewise.
15304 (<maxmin_uns><mode>3): Likewise.
15305 (<fmaxmin><mode>3): Likewise.
15306 (aarch64_faddp<mode>): Likewise.
15307 (aarch64_fmulx<mode>): Likewise.
15308 (aarch64_frecps<mode>): Likewise.
15309 (*aarch64_fac<optab><mode>): Rename to aarch64_fac<optab><mode>.
15310 (add<mode>3): Extend to HF modes.
15311 (sub<mode>3): Likewise.
15312 (mul<mode>3): Likewise.
15313 (div<mode>3): Likewise.
15314 (*div<mode>3): Likewise.
15315 * config/aarch64/aarch64.c (aarch64_emit_approx_div): Return false for
15316 HF, V4HF and V8HF.
15317 * config/aarch64/iterators.md (VDQ_HSDI, VSDQ_HSDI): New mode iterator.
15318 * config/aarch64/arm_neon.h (vadd_f16, vaddq_f16, vabd_f16, vabdq_f16,
15319 vcage_f16, vcageq_f16, vcagt_f16, vcagtq_f16, vcale_f16, vcaleq_f16,
15320 vcalt_f16, vcaltq_f16, vceq_f16, vceqq_f16, vcge_f16, vcgeq_f16,
15321 vcgt_f16, vcgtq_f16, vcle_f16, vcleq_f16, vclt_f16, vcltq_f16,
15322 vcvt_n_f16_s16, vcvtq_n_f16_s16, vcvt_n_f16_u16, vcvtq_n_f16_u16,
15323 vcvt_n_s16_f16, vcvtq_n_s16_f16, vcvt_n_u16_f16, vcvtq_n_u16_f16,
15324 vdiv_f16, vdivq_f16, vdup_lane_f16, vdup_laneq_f16, vdupq_lane_f16,
15325 vdupq_laneq_f16, vdups_lane_f16, vdups_laneq_f16, vmax_f16, vmaxq_f16,
15326 vmaxnm_f16, vmaxnmq_f16, vmin_f16, vminq_f16, vminnm_f16, vminnmq_f16,
15327 vmul_f16, vmulq_f16, vmulx_f16, vmulxq_f16, vpadd_f16, vpaddq_f16,
15328 vpmax_f16, vpmaxq_f16, vpmaxnm_f16, vpmaxnmq_f16, vpmin_f16, vpminq_f16,
15329 vpminnm_f16, vpminnmq_f16, vrecps_f16, vrecpsq_f16, vrsqrts_f16,
15330 vrsqrtsq_f16, vsub_f16, vsubq_f16): New.
15331
15332 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15333
15334 * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New.
15335 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
15336 * config/aarch64/aarch64-simd.md (aarch64_rsqrte<mode>): Extend to HF modes.
15337 (neg<mode>2): Likewise.
15338 (abs<mode>2): Likewise.
15339 (<frint_pattern><mode>2): Likewise.
15340 (l<fcvt_pattern><su_optab><VDQF:mode><fcvt_target>2): Likewise.
15341 (<optab><VDQF:mode><fcvt_target>2): Likewise.
15342 (<fix_trunc_optab><VDQF:mode><fcvt_target>2): Likewise.
15343 (ftrunc<VDQF:mode>2): Likewise.
15344 (<optab><fcvt_target><VDQF:mode>2): Likewise.
15345 (sqrt<mode>2): Likewise.
15346 (*sqrt<mode>2): Likewise.
15347 (aarch64_frecpe<mode>): Likewise.
15348 (aarch64_cm<optab><mode>): Likewise.
15349 * config/aarch64/aarch64.c (aarch64_emit_approx_sqrt): Return false for
15350 HF, V4HF and V8HF.
15351 * config/aarch64/iterators.md (VHSDF, VHSDF_DF, VHSDF_SDF): New.
15352 (VDQF_COND, fcvt_target, FCVT_TARGET, hcon): Extend mode attribute to HF modes.
15353 (stype): New.
15354 * config/aarch64/arm_neon.h (vdup_n_f16): New.
15355 (vdupq_n_f16): Likewise.
15356 (vld1_dup_f16): Use vdup_n_f16.
15357 (vld1q_dup_f16): Use vdupq_n_f16.
15358 (vabs_f16, vabsq_f16, vceqz_f16, vceqzq_f16, vcgez_f16, vcgezq_f16,
15359 vcgtz_f16, vcgtzq_f16, vclez_f16, vclezq_f16, vcltz_f16, vcltzq_f16,
15360 vcvt_f16_s16, vcvtq_f16_s16, vcvt_f16_u16, vcvtq_f16_u16, vcvt_s16_f16,
15361 vcvtq_s16_f16, vcvt_u16_f16, vcvtq_u16_f16, vcvta_s16_f16,
15362 vcvtaq_s16_f16, vcvta_u16_f16, vcvtaq_u16_f16, vcvtm_s16_f16,
15363 vcvtmq_s16_f16, vcvtm_u16_f16, vcvtmq_u16_f16, vcvtn_s16_f16,
15364 vcvtnq_s16_f16, vcvtn_u16_f16, vcvtnq_u16_f16, vcvtp_s16_f16,
15365 vcvtpq_s16_f16, vcvtp_u16_f16, vcvtpq_u16_f16, vneg_f16, vnegq_f16,
15366 vrecpe_f16, vrecpeq_f16, vrnd_f16, vrndq_f16, vrnda_f16, vrndaq_f16,
15367 vrndi_f16, vrndiq_f16, vrndm_f16, vrndmq_f16, vrndn_f16, vrndnq_f16,
15368 vrndp_f16, vrndpq_f16, vrndx_f16, vrndxq_f16, vrsqrte_f16, vrsqrteq_f16,
15369 vsqrt_f16, vsqrtq_f16): New.
15370
15371 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15372
15373 * config/aarch64/aarch64-simd.md
15374 (aarch64_<PERMUTE:perm_insn><PERMUTE:perm_hilo><mode>): Use VALL_F16.
15375 (aarch64_ext<mode>): Likewise.
15376 (aarch64_rev<REVERSE:rev_op><mode>): Likewise.
15377 * config/aarch64/aarch64.c (aarch64_evpc_trn, aarch64_evpc_uzp,
15378 aarch64_evpc_zip, aarch64_evpc_ext, aarch64_evpc_rev): Support V4HFmode
15379 and V8HFmode.
15380 * config/aarch64/arm_neon.h (__INTERLEAVE_LIST): Support float16x4_t,
15381 float16x8_t.
15382 (__aarch64_vdup_lane_f16, __aarch64_vdup_laneq_f16,
15383 __aarch64_vdupq_lane_f16, __aarch64_vdupq_laneq_f16, vbsl_f16,
15384 vbslq_f16, vdup_n_f16, vdupq_n_f16, vdup_lane_f16, vdup_laneq_f16,
15385 vdupq_lane_f16, vdupq_laneq_f16, vduph_lane_f16, vduph_laneq_f16,
15386 vext_f16, vextq_f16, vmov_n_f16, vmovq_n_f16, vrev64_f16, vrev64q_f16,
15387 vtrn1_f16, vtrn1q_f16, vtrn2_f16, vtrn2q_f16, vtrn_f16, vtrnq_f16,
15388 vuzp1_f16, vuzp1q_f16, vuzp2_f16, vuzp2q_f16, vzip1_f16, vzip2q_f16):
15389 New.
15390 (vmov_n_f16): Reimplement using vdup_n_f16.
15391 (vmovq_n_f16): Reimplement using vdupq_n_f16..
15392
15393 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15394
15395 * config/aarch64/aarch64.c (aarch64_add_constant): New parameter
15396 "frame_related_p". Generate CFA annotation when it's necessary.
15397 (aarch64_expand_prologue): Use aarch64_add_constant.
15398 (aarch64_expand_epilogue): Likewise.
15399 (aarch64_output_mi_thunk): Pass "false" when calling
15400 aarch64_add_constant.
15401
15402 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15403
15404 * config/aarch64/aarch64.c (aarch64_add_constant): Optimize instruction
15405 sequences.
15406
15407 2016-07-25 Jiong Wang <jiong.wang@arm.com>
15408
15409 * config/aarch64/aarch64.c (aarch64_add_constant): New parameter "mode".
15410 Use aarch64_internal_mov_immediate instead of aarch64_build_constant.
15411 (aarch64_output_mi_thunk): Pass Pmode when calling aarch64_add_constant.
15412 (aarch64_build_constant): Delete.
15413
15414 2016-07-25 Alexander Monakov <amonakov@ispras.ru>
15415
15416 Revert
15417 2016-07-20 Alexander Monakov <amonakov@ispras.ru>
15418
15419 * config/nvptx/nvptx.c (nvptx_option_override): Do not set
15420 flag_toplevel_reorder.
15421
15422 2016-07-25 Richard Biener <rguenther@suse.de>
15423
15424 * cgraph.c (cgraph_node::verify_node): Compare against builtin
15425 by using DECL_BUILT_IN_CLASS and DECL_FUNCTION_CODE.
15426 * tree-chkp.c (chkp_gimple_call_builtin_p): Likewise.
15427 * tree-streamer.h (streamer_handle_as_builtin_p): Remove.
15428 (streamer_get_builtin_tree): Likewise.
15429 (streamer_write_builtin): Likewise.
15430 * lto-streamer.h (LTO_builtin_decl): Remove.
15431 * lto-streamer-in.c (lto_read_tree_1): Remove assert.
15432 (lto_input_scc): Remove LTO_builtin_decl handling.
15433 (lto_input_tree_1): Liekwise.
15434 * lto-streamer-out.c (lto_output_tree_1): Remove special
15435 handling of builtins.
15436 (DFS::DFS): Likewise.
15437 * tree-streamer-in.c (streamer_get_builtin_tree): Remove.
15438 * tree-streamer-out.c (pack_ts_function_decl_value_fields): Remove
15439 assert.
15440 (streamer_write_builtin): Remove.
15441
15442 2016-07-25 Martin Liska <mliska@suse.cz>
15443
15444 * lto-cgraph.c (input_symtab): Don't call get_working_sets
15445 if flag_auto_profile is set to true.
15446
15447 2016-07-25 Martin Liska <mliska@suse.cz>
15448
15449 PR gcov-profile/71868
15450 * cfgloopanal.c (expected_loop_iterations_unbounded): When we
15451 have a function with multiple latches, count them all.
15452
15453 2016-07-25 Martin Liska <mliska@suse.cz>
15454
15455 * tree-ssa-loop-niter.c (loop_only_exit_p): Release body array.
15456
15457 2016-07-25 Martin Liska <mliska@suse.cz>
15458
15459 PR tree-optimization/71987
15460 * tree-ssa-reassoc.c (maybe_optimize_range_tests): Call get_ops
15461 just for SSA_NAMEs. Fix GNU coding style.
15462
15463 2016-07-25 Martin Liska <mliska@suse.cz>
15464
15465 PR gcov-profile/64874
15466 * gcov-io.h: Update command about file format.
15467 * gcov-iov.c (main): Adapt the numbering scheme.
15468
15469 2016-07-24 Kugan Vivekanandarajah <kuganv@linaro.org>
15470
15471 PR middle-end/66726
15472 * tree-ssa-reassoc.c (optimize_vec_cond_expr): Handle tcc_compare stmt
15473 whose result is used in PHI.
15474 (final_range_test_p): Likewise.
15475 (maybe_optimize_range_tests): Likewise.
15476
15477 2016-07-22 Michael Meissner <meissner@linux.vnet.ibm.com>
15478
15479 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
15480 Reformat two multi-line strings.
15481
15482 2016-07-22 Martin Sebor <msebor@redhat.com>
15483
15484 * doc/extend.texi (Compound Literals): Add '@' missed in last commit.
15485
15486 2016-07-22 Martin Sebor <msebor@redhat.com>
15487
15488 PR c/71560
15489 * doc/extend.texi (Compound Literals): Correct and clarify.
15490 (Cast to Union): Same.
15491
15492 2016-07-22 Kelvin Nilsen <kelvin@gcc.gnu.org>
15493
15494 * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
15495 comments to explain why certain error messages make mention of
15496 undocumented options.
15497 (rs6000_invalid_builtin): Change error messages to replace mention
15498 of undocumented options with mention of the -mcpu=power9 option
15499 that enables those undocumented options.
15500 * config/rs6000/rs6000.h (MASK_FLOAT128): New macro.
15501 (RS6000_BTM_FLOAT128): Use the new MASK_FLOAT128 macro in the
15502 definition of this macro to correct an existing error.
15503 * config/rs6000/rs6000.opt: Add the Undocumented qualifier to the
15504 mpower9-fusion, mpower9-vector, mpower9-dform, and mmodulo entries.
15505 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Modify
15506 descriptions of built-in functions so that they depend on
15507 -mcpu=power9 instead of on the corresponding undocumented flags.
15508 * doc/invoke.texi (Option Summary): Remove all mention of newly
15509 undocumented flags.
15510 (IBM RS/6000 and PowerPC Options): Likewise.
15511 * doc/md.texi (Constraints for Particuliar Machines): Remove all
15512 mention of newly undocumented flags.
15513
15514 2016-07-22 Evgeny Stupachenko <evstupac@gmail.com>
15515
15516 * ipa-cp.c (determine_versionability): Do not create constprop clones,
15517 when target_clones attribute is set.
15518
15519 2016-07-22 Bin Cheng <bin.cheng@arm.com>
15520
15521 * common.opt (funsafe-loop-optimizations): Mark ignore.
15522 * doc/invoke.texi (funsafe-loop-optimizations): Remove.
15523 * loop-iv.c (get_simple_loop_desc): Remove unsafe-loop-optimizations
15524 related code.
15525 * tree-ssa-loop-niter.c (finite_loop_p): Ditto.
15526 * config/bfin/bfin.c (bfin_can_use_doloop_p): Ditto.
15527
15528 2016-07-22 Bin Cheng <bin.cheng@arm.com>
15529
15530 * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
15531 Parameter.
15532 * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
15533 Parameter.
15534 (number_of_iterations_exit): Warn missed loop optimization for
15535 possible infinite loops.
15536
15537 2016-07-22 Segher Boessenkool <segher@kernel.crashing.org>
15538
15539 PR target/71216
15540 * config/rs6000/rs6000.c (rs6000_file_start): Fix condition for
15541 when to emit a ".machine" pseudo-op.
15542
15543 2016-07-22 Martin Liska <mliska@suse.cz>
15544
15545 PR gcov-profile/69028
15546 PR gcov-profile/62047
15547 * coverage.c (coverage_compute_lineno_checksum): Do not
15548 calculate checksum for fns w/o xloc.file.
15549 (coverage_compute_profile_id): Likewise.
15550
15551 2016-07-22 Georg-Johann Lay <avr@gjlay.de>
15552
15553 * config/avr/avr.c (TARGET_SECONDARY_RELOAD): Remove hook define...
15554 (avr_secondary_reload): ...and implementation.
15555 (avr_adjust_insn_length) [ADJUST_LEN_LPM]: Remove handling.
15556 * config/avr/avr.md (reload_in<mode>): Remove insns.
15557 (adjust_len) [lpm]: Remove insn attribute value.
15558 * config/avr/predicates.md (flash_operand): Remove insn predicate.
15559
15560 2016-07-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
15561
15562 PR middle-end/71876
15563 * builtin-attrs.def (ATTR_RT_NOTHROW_LEAF_LIST): New return twice
15564 attribute.
15565 * builtins.def (BUILT_IN_SETJMP): Use ATTR_RT_NOTHROW_LEAF_LIST here.
15566 * calls.c (special_function_p): Remove the special handling of the
15567 "__builtin_" prefix.
15568
15569 2016-07-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
15570
15571 PR middle-end/71876
15572 * calls.c (gimple_maybe_alloca_call_p): New function. Return true
15573 if STMT may be an alloca call.
15574 (gimple_alloca_call_p, alloca_call_p): Return only true for the
15575 builtin alloca call.
15576 * calls.h (gimple_maybe_alloca_call_p): New function.
15577 * tree-inline.c (inline_forbidden_p_stmt): Use
15578 gimple_maybe_alloca_call_p here.
15579
15580 2016-07-21 David Malcolm <dmalcolm@redhat.com>
15581
15582 * spellcheck-tree.c (best_macro_match::best_macro_match):
15583 Explictly specify the template arguments when invoking the base
15584 class constructor, to help older C++ compilers.
15585
15586 2016-07-21 Jakub Jelinek <jakub@redhat.com>
15587
15588 PR sanitizer/71953
15589 * asan.c (asan_dynamic_init_call): Call asan_init_shadow_ptr_types
15590 before builtin_decl_implicit.
15591
15592 2016-07-21 James Greenhalgh <james.greenhalgh@arm.com>
15593
15594 * optabs.c (emit_condiitonal_move): Short circuit for identical
15595 sources.
15596
15597 2016-07-21 James Greenhalgh <james.greenhalgh@arm.com>
15598
15599 * ifcvt.c (noce_if_info): New fields: speed_p, original_cost,
15600 max_seq_cost. Removed fields: then_cost, else_cost, branch_cost.
15601 (noce_conversion_profitable_p): New.
15602 (noce_try_store_flag_constants): Use it.
15603 (noce_try_addcc): Likewise.
15604 (noce_try_store_flag_mask): Likewise.
15605 (noce_try_cmove): Likewise.
15606 (noce_try_cmove_arith): Likewise.
15607 (bb_valid_for_noce_process_p): Add to the cost parameter rather than
15608 overwriting it.
15609 (noce_convert_multiple_sets): Move cost model to here, from...
15610 (bb_ok_for_noce_convert_multiple_sets) ...here.
15611 (noce_process_if_block): Update calls for above changes.
15612 (noce_find_if_block): Record new noce_if_info parameters.
15613
15614 2016-07-21 James Greenhalgh <james.greenhalgh@arm.com>
15615
15616 * target.def (max_noce_ifcvt_seq_cost): New.
15617 * doc/tm.texi.in (TARGET_MAX_NOCE_IFCVT_SEQ_COST): Document it.
15618 * doc/tm.texi: Regenerate.
15619 * targhooks.h (default_max_noce_ifcvt_seq_cost): New.
15620 * targhooks.c (default_max_noce_ifcvt_seq_cost): New.
15621 * params.def (PARAM_MAX_RTL_IF_CONVERSION_PREDICTABLE_COST): New.
15622 (PARAM_MAX_RTL_IF_CONVERSION_UNPREDICTABLE_COST): Likewise.
15623 * doc/invoke.texi: Document new params.
15624
15625 2016-07-21 Richard Biener <rguenther@suse.de>
15626
15627 PR tree-optimization/71947
15628 * tree-vrp.c (extract_range_from_assert): Singleton symbolic
15629 ranges have useful limit_vr information.
15630
15631 2016-07-21 Richard Biener <rguenther@suse.de>
15632
15633 * function-tests.c (build_trivial_generic_function): Set
15634 BLOCK_SUPERCONTEXT of DECL_INITIAL.
15635 * omp-low.c (create_omp_child_function): Likewise.
15636 (grid_expand_target_grid_body): Likewise.
15637 * cgraphunit.c (init_lowered_empty_function): Likewise.
15638 (cgraph_node::expand_thunk): Likewise.
15639 * tree-parloops.c (create_loop_fn): Likewise.
15640 * ipa.c (cgraph_build_static_cdtor_1): Likewise.
15641
15642 2016-07-21 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
15643
15644 * tree-ssa-strlen.c (strlen_dom_walker::before_dom_children): Fix typo
15645 in comment.
15646
15647 2016-07-21 Georg-Johann Lay <avr@gjlay.de>
15648
15649 * config/avr/avr.md (any_extract, any_shiftrt): New code iterators.
15650 (*insv.extract, *insv.shiftrt, *insv.not-bit.0, *insv.not-bit.7)
15651 (*insv.xor-extract, *insv.xor1-bit.0): New insns.
15652 (adjust_len) [insv_notbit, insv_notbit_0, insv_notbit_7]: New
15653 values for insn attribute.
15654 * config/avr/avr.c (avr_out_insert_notbit): New function.
15655 (avr_adjust_insn_length): Handle ADJUST_LEN_INSV_NOTBIT,
15656 ADJUST_LEN_INSV_NOTBIT_0/_7.
15657 * config/avr/avr-protos.h (avr_out_insert_notbit): New proto.
15658
15659 2016-07-21 Bin Cheng <bin.cheng@arm.com>
15660
15661 * tree-chrec.c (convert_affine_scev): New parameter. Pass new arg.
15662 (chrec_convert_1, chrec_convert): Ditto.
15663 * tree-chrec.h (chrec_convert, convert_affine_scev): New parameter.
15664 * tree-scalar-evolution.c (interpret_rhs_expr): Pass new arg.
15665 * tree-vrp.c (adjust_range_with_scev): Ditto.
15666 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): Ditto.
15667 (scev_var_range_cant_overflow): New function.
15668 (scev_probably_wraps_p): New parameter. Call above function.
15669 * tree-ssa-loop-niter.h (scev_probably_wraps_p): New parameter.
15670
15671 2016-07-21 Bin Cheng <bin.cheng@arm.com>
15672
15673 * tree-ssa-loop-niter.c (number_of_iterations_lt_to_ne): Clean up
15674 by removing computation of may_be_zero.
15675
15676 2016-07-21 Jakub Jelinek <jakub@redhat.com>
15677
15678 * tree-object-size.c (unknown): Use HOST_WIDE_INT_M1U instead of -1.
15679
15680 2016-07-21 Andrew Sutton <andrew.n.sutton@gmail.com>
15681
15682 Improving concepts performance and diagnostics.
15683 * timevar.def (TV_CONSTRAINT_SAT, TV_CONSTRAINT_SUB): New time vars
15684 for constraint satisfaction and subsumption.
15685 * timevar.h (auto_timevar): New constructor that matches the push/pop
15686 pattern of usage in pt.c.
15687
15688 2016-07-20 Uros Bizjak <ubizjak@gmail.com>
15689
15690 * hwint.h (HOST_WIDE_INT_0): New define.
15691 (HOST_WIDE_INT_0U): Ditto.
15692 * double-int.c: Use HOST_WIDE_INT_0 instead of (HOST_WIDE_INT) 0.
15693 * dse.c: Use HOST_WIDE_INT_0U instead of (unsigned HOST_WIDE_INT) 0.
15694 * simplify-rtx.c: Ditto.
15695 * tree-object-size.c: Ditto.
15696
15697 2016-07-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
15698
15699 * config/s390/s390.c (s390_encode_section_info): Remove mode size
15700 check.
15701
15702 2016-07-20 Uros Bizjak <ubizjak@gmail.com>
15703
15704 * cse.c: Use HOST_WIDE_INT_M1 instead of ~(HOST_WIDE_INT) 0.
15705 * combine.c: Use HOST_WIDE_INT_M1U instead of
15706 ~(unsigned HOST_WIDE_INT) 0.
15707 * double-int.h: Ditto.
15708 * dse.c: Ditto.
15709 * dwarf2asm.c:Ditto.
15710 * expmed.c: Ditto.
15711 * genmodes.c: Ditto.
15712 * match.pd: Ditto.
15713 * read-rtl.c: Ditto.
15714 * tree-ssa-loop-ivopts.c: Ditto.
15715 * tree-ssa-loop-prefetch.c: Ditto.
15716 * tree-vect-generic.c: Ditto.
15717 * tree-vect-patterns.c: Ditto.
15718 * tree.c: Ditto.
15719
15720 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
15721
15722 * config/avr.c (avr_legitimize_address) [AVR_TINY]: Force
15723 constant addresses outside [0,0xc0] into a register.
15724 (avr_out_movhi_r_mr_reg_no_disp_tiny): Pass insn. And handle
15725 cases where the base address register is unused after.
15726 (avr_out_movhi_r_mr_reg_disp_tiny): Same.
15727 (avr_out_movhi_mr_r_reg_disp_tiny): Same.
15728 (avr_out_store_psi_reg_disp_tiny): Same.
15729
15730 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
15731
15732 Implement attribute progmem on reduced Tiny cores by adding
15733 flash offset 0x4000 to respective symbols.
15734
15735 PR target/71948
15736 * doc/extend.texi (AVR Variable Attributes) [progmem]: Add
15737 documentation how it works on reduced Tiny cores.
15738 (AVR Named Address Spaces): No support for reduced Tiny.
15739 * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): New macro.
15740 (avr_address_tiny_pm_p): New static function.
15741 (avr_print_operand_address) [AVR_TINY]: Add AVR_TINY_PM_OFFSET
15742 if the address is in progmem.
15743 (avr_assemble_integer): Same.
15744 (avr_encode_section_info) [AVR_TINY]: Set AVR_SYMBOL_FLAG_TINY_PM
15745 for symbol_ref in progmem.
15746 * config/avr/avr.h (AVR_TINY_PM_OFFSET): New macro.
15747 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use it instead of
15748 magic 0x4000 when built-in def'ing __AVR_TINY_PM_BASE_ADDRESS__.
15749
15750 2016-07-20 Patrick Palka <ppalka@gcc.gnu.org>
15751
15752 * configure.ac (thin_archive_support): New variable. AC_SUBST it.
15753 * configure: Regenerate.
15754 * Makefile.in (THIN_ARCHIVE_SUPPORT): New variable.
15755 (USE_THIN_ARCHIVES): New variable.
15756 (libbackend.a): If USE_THIN_ARCHIVES then pass T to ar to build
15757 this archive as a thin archive.
15758
15759 2016-07-20 David Malcolm <dmalcolm@redhat.com>
15760
15761 * diagnostic-show-locus.c (diagnostic_show_locus): If this is the
15762 same location as last time, don't skip if we have fix-it hints.
15763 Clarify the skipping logic by converting it from one "if" clause
15764 to repeated "if" clauses.
15765 * spellcheck-tree.c: Include "cpplib.h".
15766 (find_closest_macro_cpp_cb): Move here from c/c-decl.c.
15767 (best_macro_match::best_macro_match): New constructor.
15768 * spellcheck-tree.h (struct edit_distance_traits<cpp_hashnode *>):
15769 Move here from c/c-decl.c.
15770 (class best_macro_match): Move here from c/c-decl.c, converting
15771 from a typedef to a subclass, gaining a ctor.
15772
15773 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
15774
15775 * config/avr/avr-protos.h (avr_addr_space_supported_p): New prototype.
15776 * config/avr/avr.c (TARGET_ADDR_SPACE_DIAGNOSE_USAGE): New hook
15777 define...
15778 (avr_addr_space_diagnose_usage): ...and implementation.
15779 (avr_addr_space_supported_p): New function.
15780 (avr_nonconst_pointer_addrspace, avr_pgm_check_var_decl): Only
15781 report bad address space usage if that space is supported.
15782 (avr_insert_attributes): Same. No more complain about unsupported
15783 address spaces.
15784 * config/avr/avr-c.c (tm_p.h): Include it.
15785 (avr_cpu_cpp_builtins): Only define addr-space related built-in
15786 macro if avr_addr_space_supported_p.
15787
15788 2016-07-20 Alexander Monakov <amonakov@ispras.ru>
15789
15790 * config/nvptx/nvptx.c (nvptx_option_override): Do not set
15791 flag_toplevel_reorder.
15792
15793 2016-07-20 David Malcolm <dmalcolm@redhat.com>
15794
15795 * gcc-rich-location.c
15796 (gcc_rich_location::add_fixit_misspelled_id): New overload, taking
15797 a const char *.
15798 * gcc-rich-location.h
15799 (gcc_rich_location::add_fixit_misspelled_id): Likewise.
15800
15801 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
15802
15803 * target.def (addr_space): Add new diagnose_usage to hook vector.
15804 * targhooks.c (default_addr_space_diagnose_usage): Add default
15805 implementation and...
15806 * targhooks.h (default_addr_space_diagnose_usage): ... its prototype.
15807 * c/c-parser.c (c_lex_one_token) [CPP_NAME]: If the token
15808 is some address space, call targetm.addr_space.diagnose_usage.
15809 * doc/tm.texi.in (Named Address Spaces): Add anchor for
15810 TARGET_ADDR_SPACE_DIAGNOSE_USAGE documentation.
15811 * doc/tm.texi: Regenerate.
15812
15813 2016-07-20 Martin Liska <mliska@suse.cz>
15814
15815 PR middle-end/71898
15816 * graphite-isl-ast-to-gimple.c (later_of_the_two):
15817 Properly handly PHI stmts.
15818
15819 2016-07-20 Bin Cheng <bin.cheng@arm.com>
15820
15821 PR tree-optimization/71503
15822 PR tree-optimization/71683
15823 * tree-if-conv.c (gen_phi_arg_condition): Record true predicate
15824 and break.
15825
15826 2016-07-20 Martin Liska <mliska@suse.cz>
15827
15828 * doc/invoke.texi (-fipa-ra): Document when the option is
15829 disabled. Fix a typo.
15830
15831 2016-07-20 Martin Liska <mliska@suse.cz>
15832
15833 * Makefile.in: Include fibonacci_heap.c
15834 * fibonacci_heap.c: New file.
15835 * fibonacci_heap.h (fibonacci_heap::insert): Use insert_node.
15836 (fibonacci_heap::union_with): Fix deletion of the second heap.
15837 * selftest-run-tests.c (selftest::run_tests): Incorporate
15838 fibonacci heap tests.
15839 * selftest.h: Declare fibonacci_heap_c_tests.
15840
15841 2016-07-20 Martin Liska <mliska@suse.cz>
15842
15843 * selftest-run-tests.c (selftest::run_tests): New function.
15844 * selftest.h (sreal_c_tests): Declare.
15845 * sreal.c (sreal_verify_basics): New function.
15846 (verify_aritmetics): Likewise.
15847 (sreal_verify_arithmetics): Likewise.
15848 (verify_shifting): Likewise.
15849 (sreal_verify_shifting): Likewise.
15850 (void sreal_c_tests): Likewise.
15851
15852 2016-07-19 Jakub Jelinek <jakub@redhat.com>
15853
15854 PR rtl-optimization/71916
15855 * cfgrtl.c (contains_no_active_insn_p): Return false also for
15856 bb which have a single succ fake edge.
15857
15858 2016-07-19 Aldy Hernandez <aldyh@redhat.com>
15859
15860 PR debug/71855
15861 * dwarf2out.c (gen_subprogram_die): Only call
15862 gen_unspecified_parameters_die while dumping early dwarf.
15863
15864 2016-07-19 Jakub Jelinek <jakub@redhat.com>
15865
15866 PR middle-end/71874
15867 * gimple-fold.c (fold_builtin_memory_op): Use
15868 get_addr_base_and_unit_offset instead of get_ref_base_and_extent.
15869
15870 2016-07-19 Uros Bizjak <ubizjak@gmail.com>
15871
15872 * builtins.c: Use HOST_WIDE_INT_1 instead of (HOST_WIDE_INT) 1,
15873 HOST_WIDE_INT_1U instead of (unsigned HOST_WIDE_INT) 1,
15874 HOST_WIDE_INT_M1 instead of (HOST_WIDE_INT) -1 and
15875 HOST_WIDE_INT_M1U instead of (unsigned HOST_WIDE_INT) -1.
15876 * combine.c: Ditto.
15877 * cse.c: Ditto.
15878 * dojump.c: Ditto.
15879 * double-int.c: Ditto.
15880 * dse.c: Ditto.
15881 * dwarf2out.c: Ditto.
15882 * expmed.c: Ditto.
15883 * expr.c: Ditto.
15884 * fold-const.c: Ditto.
15885 * function.c: Ditto.
15886 * fwprop.c: Ditto.
15887 * genmodes.c: Ditto.
15888 * hwint.c: Ditto.
15889 * hwint.h: Ditto.
15890 * ifcvt.c: Ditto.
15891 * loop-doloop.c: Ditto.
15892 * loop-invariant.c: Ditto.
15893 * loop-iv.c: Ditto.
15894 * match.pd: Ditto.
15895 * optabs.c: Ditto.
15896 * real.c: Ditto.
15897 * reload.c: Ditto.
15898 * rtlanal.c: Ditto.
15899 * simplify-rtx.c: Ditto.
15900 * stor-layout.c: Ditto.
15901 * toplev.c: Ditto.
15902 * tree-ssa-loop-ivopts.c: Ditto.
15903 * tree-vect-generic.c: Ditto.
15904 * tree-vect-patterns.c: Ditto.
15905 * tree.c: Ditto.
15906 * tree.h: Ditto.
15907 * ubsan.c: Ditto.
15908 * varasm.c: Ditto.
15909 * wide-int-print.cc: Ditto.
15910 * wide-int.cc: Ditto.
15911 * wide-int.h: Ditto.
15912
15913 2016-07-19 David Malcolm <dmalcolm@redhat.com>
15914
15915 * selftest.c (selftest::assert_streq): Handle NULL values of
15916 val_actual and val_expected.
15917
15918 2016-07-19 Martin Jambor <mjambor@suse.cz>
15919
15920 PR fortran/71688
15921 * trans-decl.c (gfc_generate_function_code): Use cgraph_get_create_node
15922 rather than cgraph_create_node to get a call graph node.
15923
15924 2016-07-19 Richard Biener <rguenther@suse.de>
15925
15926 * gimple-fold.c (get_base_constructor): Add VIEW_CONVERT case,
15927 handle all tcc_constant bases and valueize SSA names.
15928 * tree-ssa-sccvn.c (fully_constant_vn_reference_p): Handle
15929 tcc_constant bases.
15930
15931 2016-07-19 David Malcolm <dmalcolm@redhat.com>
15932
15933 * function-tests.c (selftest::verify_three_block_rtl_cfg): Verify
15934 the flags of the exit block and bb2, not just the entry block.
15935
15936 2016-07-19 Richard Biener <rguenther@suse.de>
15937
15938 PR tree-optimization/71901
15939 * tree-ssa-sccvn.h (struct vn_reference_op_struct): Add
15940 align member, group stuff with the bitfield.
15941 (vn_ref_op_align_unit): New inline.
15942 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): For ARRAY_REFs
15943 record element alignment and operand 3 unchanged.
15944 (ao_ref_init_from_vn_reference): Adjust.
15945 (valueize_refs_1): Likewise.
15946 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Likewise.
15947
15948 2016-07-19 Richard Biener <rguenther@suse.de>
15949
15950 PR tree-optimization/71908
15951 * tree-ssa-structalias.c (get_constraint_for_component_ref): Handle
15952 symbolic constants in a more reliable way.
15953
15954 2016-07-19 Ilya Enkovich <ilya.enkovich@intel.com>
15955
15956 * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer): Update
15957 comment.
15958 (vect_update_inits_of_drs): Likewise.
15959 (vect_create_cond_for_alias_checks): Likewise.
15960 * tree-vect-loop.c (vect_get_known_peeling_cost): Likewise.
15961
15962 2016-07-19 Richard Biener <rguenther@suse.de>
15963
15964 PR lto/71907
15965 * lto-streamer-out.c (DFS::DFS_write_tree_body): For blocks
15966 with an abstract origin that is not an inlined function outer
15967 scope add a self-reference as abstract origin.
15968 * tree-streamer-out.c (write_ts_block_tree_pointers): Likewise.
15969
15970 2016-07-18 Michael Meissner <meissner@linux.vnet.ibm.com>
15971
15972 PR target/71493
15973 * config/rs6000/rs6000.c (rs6000_function_value): Fix
15974 unintentional System V.4 structure return breakage for structures
15975 with a single floating point element.
15976
15977 2016-07-18 Yuri Rumyantsev <ysrumyan@gmail.com>
15978
15979 PR tree-optimization/71734
15980 * tree-ssa-loop-im.c (ref_indep_loop_p_1): Add REF_LOOP argument which
15981 contains REF, use it to check safelen, assume that safelen value
15982 must be greater 1, fix style.
15983 (ref_indep_loop_p_2): Add REF_LOOP argument.
15984 (ref_indep_loop_p): Pass LOOP as additional argument to
15985 ref_indep_loop_p_2.
15986
15987 2016-07-18 Dominik Vogt <vogt@linux.vnet.ibm.com>
15988
15989 * cfgexpand.c (expand_stack_vars): Implement synamic stack space
15990 allocation in the prologue.
15991 * explow.c (get_dynamic_stack_base): New function to return an address
15992 expression for the dynamic stack base.
15993 (get_dynamic_stack_size): New function to do the required dynamic stack
15994 space size calculations.
15995 (allocate_dynamic_stack_space): Use new functions.
15996 (align_dynamic_address): Move some code from
15997 allocate_dynamic_stack_space to new function.
15998 * explow.h (get_dynamic_stack_base, get_dynamic_stack_size): Export.
15999
16000 2016-07-18 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
16001
16002 * config/s390/s390.c (s390_encode_section_info): Always set
16003 notaligned marker if mode size is 0 or no MEM_ALIGN info could be
16004 found.
16005
16006 2016-07-18 Richard Biener <rguenther@suse.de>
16007
16008 PR tree-optimization/71893
16009 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Compensate
16010 for sizetype cast added by array_ref_element_size.
16011 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
16012
16013 2016-07-16 John David Anglin <danglin@gcc.gnu.org>
16014
16015 * config/pa/pa.c (hppa_profile_hook): Allocate stack space for
16016 register parameters. Remove code to initialize argument pointer
16017 on TARGET_64BIT. Optimize call to _mcount when it can be reached
16018 using a pc-relative branch. Cleanup conditional code.
16019 * config/pa/pa.md (call_mcount): New expander.
16020 (call_mcount_nonpic): New insn.
16021 (call_mcount_pic): New insn and split.
16022 (call_mcount_pic_post_reload): New insn.
16023 (call_mcount_64bit): New insn and split.
16024 (call_mcount_64bit_post_reload): New insn.
16025
16026 2016-07-15 Georg-Johann Lay <avr@gjlay.de>
16027
16028 * config/avr/predicates.md (const_m255_to_m1_operand): New.
16029 * config/avr/constraints.md (Cn8, Ca1, Co1, Yx2): New constraints.
16030 * config/avr/avr.md (add<mode>3) <ALL1>: Fix set_vzn for +/-2.
16031 (*cmphi.zero-extend.0, *cmphi.zero-extend.1)
16032 (*usum_widenqihi3, *udiff_widenqihi3)
16033 (*addhi3_zero_extend.const): New combiner insns.
16034 (andqi3, iorqi3): Provide "l" (NO_LD_REGS) alternative if
16035 just 1 bit is affected.
16036 * config/avr/avr.c (avr_out_bitop) <QImode>: Don't access xop[3].
16037 (avr_out_compare) [EQ,NE]: Tweak comparing d-regs against -1.
16038
16039 2016-07-15 Cesar Philippidis <cesar@codesourcery.com>
16040
16041 * omp-low.c (lower_omp_target): Mark data clauses with
16042 GOMP_MAP_FORCE_{PRESENT,TO,FROM,TOFROM} as potentially having
16043 zero-length subarrays.
16044
16045 2016-07-15 Richard Biener <rguenther@suse.de>
16046
16047 PR tree-optimization/71881
16048 * tree-loop-distribution.c (destroy_loop): Remove blocks in
16049 reverse DOM order to make debug temp generation happy.
16050
16051 2016-07-15 Richard Biener <rguenther@suse.de>
16052
16053 PR tree-optimization/71887
16054 * tree-ssa-phiopt.c (absorbing_element_p): Add rhs arg and
16055 verify it is not zero for division / modulo handling.
16056 (value_replacement): Adjust.
16057
16058 2016-07-15 Virendra Pathak <virendra.pathak@broadcom.com>
16059 Julian Brown <julian@codesourcery.com>
16060
16061 * config/aarch64/aarch64-cores.def: Update vulcan COSTS.
16062 * config/aarch64/aarch64-cost-tables.h
16063 (vulcan_extra_costs): New variable.
16064 * config/aarch64/aarch64.c
16065 (vulcan_addrcost_table): Likewise.
16066 (vulcan_regmove_cost): Likewise.
16067 (vulcan_vector_cost): Likewise.
16068 (vulcan_branch_cost): Likewise.
16069 (vulcan_tunings): Likewise.
16070
16071 2016-07-15 Alexander Monakov <amonakov@ispras.ru>
16072
16073 * cgraphunit.c (cgraph_order_sort_kind): New entry ORDER_VAR_UNDEF.
16074 (output_in_order): Loop over undefined variables too. Output them
16075 via assemble_undefined_decl. Skip variables that correspond to hard
16076 registers or have value-exprs.
16077 * varpool.c (symbol_table::output_variables): Handle undefined
16078 variables together with defined ones.
16079
16080 2016-07-15 Richard Biener <rguenther@suse.de>
16081
16082 * tree-ssa-pre.c (get_representative_for): Make sure to return
16083 the value number of SSA names.
16084 (phi_translate_1): get_representative_for cannot return NULL.
16085 (do_pre_regular_insertion): Remove redundant call to
16086 fully_constant_expression.
16087 (do_pre_partial_partial_insertion): Likewise.
16088
16089 2016-07-15 Bin Cheng <bin.cheng@arm.com>
16090
16091 * tree-scalar-evolution.c (simple_iv_with_niters): New funcion.
16092 (derive_simple_iv_with_niters): New function.
16093 (simple_iv): Rewrite using simple_iv_with_niters.
16094 * tree-scalar-evolution.h (simple_iv_with_niters): New decl.
16095 * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
16096 function.
16097 (number_of_iterations_exit): Rewrite using above function.
16098 * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
16099 Decl.
16100
16101 2016-07-15 Richard Biener <rguenther@suse.de>
16102
16103 * config/i386/i386.c (ix86_builtin_vectorization_cost): Adjust
16104 vec_construct cost.
16105
16106 2016-07-14 Jakub Jelinek <jakub@redhat.com>
16107
16108 PR tree-optimization/71872
16109 * tree-data-ref.c (get_references_in_stmt): Ignore references
16110 with is_gimple_constant get_base_address.
16111
16112 2016-07-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
16113
16114 * config/arm/arm.h (TARGET_HAVE_LDACQ): Enable for ARMv8-M Mainline.
16115 (TARGET_HAVE_LDACQD): New macro.
16116 * config/arm/sync.md (atomic_loaddi): Use TARGET_HAVE_LDACQD rather
16117 than TARGET_HAVE_LDACQ.
16118 (arm_load_acquire_exclusivedi): Likewise.
16119 (arm_store_release_exclusivedi): Likewise.
16120
16121 2016-07-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
16122
16123 PR rtl-optimization/71878
16124 * lra-constraints.c (match_reload): Pass information about other
16125 output operands. Create new unique register value if matching input
16126 operand shares same register value as output operand being considered.
16127 (curr_insn_transform): Record output operands already processed.
16128
16129 2016-07-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16130
16131 PR target/65951
16132 PR tree-optimization/70923
16133 * tree-vect-patterns.c: Include mult-synthesis.h.
16134 (target_supports_mult_synth_alg): New function.
16135 (synth_lshift_by_additions): Likewise.
16136 (apply_binop_and_append_stmt): Likewise.
16137 (vect_synth_mult_by_constant): Likewise.
16138 (target_has_vecop_for_code): Likewise.
16139 (vect_recog_mult_pattern): Use above functions to synthesize vector
16140 multiplication by integer constants.
16141
16142 2016-07-14 Alan Modra <amodra@gmail.com>
16143
16144 * config/rs6000/altivec.md (altivec_mov<mode>): Disparage
16145 gpr alternatives. Correct '*' placement on Y,r alternative.
16146 Add '*' on operand 1 of r,r alternative.
16147
16148 2016-07-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16149
16150 * expmed.c (mult_variant, choose_mult_variant): Move declaration to...
16151 * expmed.h: ... Here.
16152
16153 2016-07-14 Jan Hubicka <hubicka@ucw.cz>
16154
16155 * gimple.h (stmt_can_terminate_bb_p): New function.
16156 * tree-cfg.c (need_fake_edge_p): Rename to ...
16157 (stmt_can_terminate_bb_p): ... this; return true if stmt can
16158 throw external; handle const and pure calls.
16159 * tree-ssa-loop-niter.c (loop_only_exit_p): Use it.
16160
16161 2016-07-14 Richard Biener <rguenther@suse.de>
16162
16163 PR tree-optimization/71866
16164 * tree-ssa-pre.c (get_constant_for_value_id): Remove.
16165 (do_hoist_insertion): Avoid endless recursion when we
16166 didn't insert anything because we managed to simplify
16167 things down to a constant or SSA name.
16168 (fully_constant_expression): Re-write in terms of ...
16169 * tree-ssa-sccvn.h (vn_nary_simplify): ... this. Declare.
16170 * tree-ssa-sccvn.c (vn_nary_simplify): New wrapper around
16171 vn_nary_build_or_lookup_1.
16172 (vn_nary_build_or_lookup_1): Added flag and renamed from ...
16173 (vn_nary_build_or_lookup): ... this which now wraps it.
16174
16175 2016-07-14 Alan Modra <amodra@gmail.com>
16176
16177 PR target/71733
16178 * config/rs6000/rs6000.c (rs6000_option_override_internal): Deal
16179 with p9_vector override before power9-dform override.
16180
16181 2016-07-13 Andi Kleen <ak@linux.intel.com>
16182
16183 * value-prof.c (gimple_value_profile_transformations): Don't run
16184 when auto_profile is on.
16185
16186 2016-07-13 Andi Kleen <ak@linux.intel.com>
16187
16188 * auto-profile.c (update_inlined_ind_target,
16189 afdo_indirect_call): Print information to dump file.
16190
16191 2016-07-13 Andrew Burgess <andrew.burgess@embecosm.com>
16192
16193 * genrecog.c (special_predicate_operand_p): New function.
16194 (predicate_name): Move function.
16195 (validate_pattern): Don't warn about missing mode for all
16196 define_special_predicate predicates.
16197
16198 2016-07-13 Bin Cheng <bin.cheng@arm.com>
16199
16200 * tree-vect-data-refs.c (vect_no_alias_p): New function.
16201 (vect_prune_runtime_alias_test_list): Call vect_no_alias_p to
16202 resolve alias checks which are known at compilation time.
16203 Truncate vector LOOP_VINFO_MAY_ALIAS_DDRS(loop_vinfo) if all
16204 alias checks are resolved. Move dump info for too many runtime
16205 alias checks to here...
16206 * tree-vect-loop.c (vect_analyze_loop_2): ...From here.
16207
16208 2016-07-13 Richard Biener <rguenther@suse.de>
16209
16210 PR tree-optimization/24574
16211 * tree-ssa-phiopt.c (absorbing_element_p): Pass in argument
16212 position and add shift, rotate, divison and modulo support
16213 for left zero.
16214 (value_replacement): Pass in argument position to absorbing_element_p.
16215
16216 2016-07-13 Ilya Enkovich <ilya.enkovich@intel.com>
16217
16218 PR ipa/71633
16219 * ipa-inline-transform.c (inline_call): Support
16220 instrumented thunks.
16221
16222 2016-07-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
16223
16224 * config/arm/arm.h (TARGET_HAVE_CBZ): Define.
16225 (TARGET_IDIV): Set for all Thumb targets provided they have hardware
16226 divide feature.
16227 * config/arm/arm.md (divsi3): New unpredicable alternative for ARMv8-M
16228 Baseline. Make initial alternative TARGET_32BIT only.
16229 (udivsi3): Likewise.
16230 * config/arm/thumb1.md (thumb1_cbz): New define_insn.
16231 * doc/sourcebuild.texi (arm_thumb1_cbz_ok): Document new effective
16232 target.
16233
16234 2016-07-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
16235
16236 * config/arm/arm.h (TARGET_HAVE_MOVT): Include ARMv8-M as having MOVT.
16237 * config/arm/arm.c (arm_arch_name): (const_ok_for_op): Check MOVT/MOVW
16238 availability with TARGET_HAVE_MOVT.
16239 (thumb_legitimate_constant_p): Strip the high part of a label_ref.
16240 (thumb1_rtx_costs): Also return 0 if setting a half word constant and
16241 MOVW is available and replace (unsigned HOST_WIDE_INT) INTVAL by
16242 UINTVAL.
16243 (thumb1_size_rtx_costs): Make set of half word constant also cost 1
16244 extra instruction if MOVW is available. Use a cost variable
16245 incremented by COSTS_N_INSNS (1) when the condition match rather than
16246 returning an arithmetic expression based on COSTS_N_INSNS. Make
16247 constant with bottom half word zero cost 2 instruction if MOVW is
16248 available.
16249 * config/arm/arm.md (define_attr "arch"): Add v8mb.
16250 (define_attr "arch_enabled"): Set to yes if arch value is v8mb and
16251 target is ARMv8-M Baseline.
16252 (arm_movt): New unpredicable alternative for ARMv8-M Baseline.
16253 (arm_movtas_ze): Likewise.
16254 * config/arm/thumb1.md (thumb1_movdi_insn): Add ARMv8-M Baseline only
16255 alternative for constants satisfying j constraint.
16256 (thumb1_movsi_insn): Likewise.
16257 (movsi splitter for K alternative): Tighten condition to not trigger
16258 if movt is available and j constraint is satisfied.
16259 (Pe immediate splitter): Likewise.
16260 (thumb1_movhi_insn): Add ARMv8-M Baseline only alternative for
16261 constant fitting in an halfword to use MOVW.
16262 * doc/sourcebuild.texi (arm_thumb1_movt_ok): Document new ARM
16263 effective target.
16264
16265 2016-07-13 Richard Biener <rguenther@suse.de>
16266
16267 PR middle-end/71104
16268 * gimplify.c (gimplify_modify_expr): Gimplify the RHS before
16269 gimplifying the LHS. Make sure to gimplify a returning twice
16270 call LHS without using SSA names.
16271
16272 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16273
16274 * tree-data-ref.c (find_data_references_in_stmt): Remove
16275 unnecessary call to vec::release.
16276 (graphite_find_data_references_in_stmt): Likewise.
16277 * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p): Likewise.
16278 * tree-vect-stmts.c (vectorizable_condition): Likewise.
16279
16280 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16281
16282 * cfgexpand.c (expand_used_vars): Make the type of a local
16283 variable auto_vec.
16284 * genmatch.c (lower_for): Likewise.
16285 * haifa-sched.c (haifa_sched_init): Likewise.
16286 (add_to_speculative_block): Likewise.
16287 (create_check_block_twin): Likewise.
16288 * predict.c (handle_missing_profiles): Likewise.
16289 * tree-data-ref.c (loop_nest_has_data_refs): Likewise.
16290 * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Likewise.
16291 * tree-ssa-loop-niter.c (discover_iteration_bound_by_body_walk):
16292 Likewise.
16293 (maybe_lower_iteration_bound): Likewise.
16294 * tree-ssa-sccvn.c (DFS): Likewise.
16295 * tree-stdarg.c (reachable_at_most_once): Likewise.
16296 * tree-vect-stmts.c (vectorizable_conversion): Likewise.
16297 (vectorizable_store): Likewise.
16298
16299 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16300
16301 * tree-ssa-sccvn.c (sccvn_dom_walker::~sccvn_dom_walker): remove.
16302 (sccvn_dom_walker): make cond_stack an auto_vec.
16303
16304 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16305
16306 * ree.c (struct ext_state): Make type of members auto_vec.
16307 (find_and_remove_re): Adjust.
16308
16309 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16310
16311 * cfgexpand.c (struct stack_vars_data): Make type of fields
16312 auto_vec.
16313 (expand_used_vars): Adjust.
16314
16315 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16316
16317 * ipa.c (record_cdtor_fn): Adjust.
16318 (build_cdtor_fns): Likewise.
16319 (ipa_cdtor_merge): Make static_ctors and static_dtors local
16320 variables.
16321
16322 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16323
16324 * genextract.c (struct accum_extract): Add constructor and make
16325 members auto_vec.
16326 (gen_insn): Adjust.
16327
16328 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16329
16330 * tree.c (struct free_lang_data_d): Add constructor and change
16331 types of members to ones that automatically manage resources.
16332 (fld_worklist_push): Adjust.
16333 (find_decls_types): Likewise.
16334 (find_decls_types_in_eh_region): Likewise.
16335 (free_lang_data_in_cgraph): Stop manually creating and
16336 destroying members of free_lang_data_d.
16337
16338 2016-07-13 Uros Bizjak <ubizjak@gmail.com>
16339
16340 PR rtl-optimization/68961
16341 * config/i386/sse.md (movsd/movhpd to movupd peephole2s): Add new
16342 peephole variant. Use sse_reg_operand predicates.
16343
16344 2016-07-12 Uros Bizjak <ubizjak@gmail.com>
16345
16346 * config/i386/predicates.md (x86_64_immediate_operand)
16347 <case CONST_INT>: Remove unneeded truncation to DImode.
16348 <case CONST>: Ditto.
16349 (x86_64_zext_immediate_operand) <case CONST>: Ditto.
16350
16351 2016-07-12 Michael Meissner <meissner@linux.vnet.ibm.com>
16352
16353 PR target/71805
16354 * config/rs6000/altivec.md (altivec_vperm_<mode>_internal):
16355 The xxperm and xxpermr instructions require that the 2nd input
16356 operand overlap with the output operand, and not the 1st.
16357 (altivec_vperm_v8hiv16qi): Likewise.
16358 (altivec_vperm_<mode>_uns_internal): Likewise.
16359 (altivec_vpermr_<mode>_internal): Likewise.
16360 (vperm_v8hiv4si): Likewise.
16361 (vperm_v16qiv8hi): Likewise.
16362
16363 2016-07-12 Nathan Sidwell <nathan@acm.org>
16364
16365 * config/arm/arm.c (arm_option_override): Set MASK_SINGLE_PIC_BASE
16366 when -mno-pic-data-is-text-relative is in effect, by default.
16367 * doc/invoke.texi (mpic-data-is-text-relative): Document new
16368 behavior and clarify.
16369
16370 2016-07-12 Martin Liska <mliska@suse.cz>
16371
16372 * params.def: Add avg-loop niter.
16373 * tree-ssa-loop-ivopts.c (avg_loop_niter): Use the param.
16374 * cfgloopanal.c (expected_loop_iterations_unbounded): Likewise.
16375 * doc/invoke.texi: Document the new parameter.
16376
16377 2016-07-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16378
16379 PR middle-end/71700
16380 * expr.c (store_constructor): Mask sign-extended bits when widening
16381 sub-word constructor element at the start of a word.
16382
16383 2016-07-12 Martin Liska <mliska@suse.cz>
16384
16385 * Makefile.in: Append rule for params-options.h.
16386 * params-options.h: New file.
16387
16388 2016-07-12 Martin Liska <mliska@suse.cz>
16389
16390 * ira-build.c (mark_loops_for_removal): Properly iterate
16391 loops.
16392
16393 2016-07-12 Steven Bosscher <steven@gcc.gnu.org>
16394 Richard Biener <rguenther@suse.de>
16395
16396 PR tree-optimization/23286
16397 PR tree-optimization/70159
16398 * doc/invoke.texi: Document -fcode-hoisting.
16399 * common.opt (fcode-hoisting): New flag.
16400 * opts.c (default_options_table): Enable -fcode-hoisting at -O2+.
16401 * tree-ssa-pre.c (pre_stats): Add hoist_insert.
16402 (do_regular_insertion): Rename to ...
16403 (do_pre_regular_insertion): ... this and amend general comments
16404 on insertion strathegy.
16405 (do_partial_partial_insertion): Rename to ...
16406 (do_pre_partial_partial_insertion): ... this.
16407 (do_hoist_insertion): New function.
16408 (insert_aux): Take flags on whether to do PRE and/or hoist insertion
16409 and call do_hoist_insertion properly.
16410 (insert): Adjust.
16411 (pass_pre::gate): Enable also if -fcode-hoisting is enabled.
16412 (pass_pre::execute): Register hoist_insert stats.
16413
16414 2016-07-12 Jakub Jelinek <jakub@redhat.com>
16415
16416 PR middle-end/71716
16417 * gimple-fold.c (optimize_atomic_compare_exchange_p): Return false
16418 for SCALAR_FLOAT_TYPE_P type of expected var, or if TYPE_PRECISION
16419 is different from mode's bitsize. Small cleanup.
16420
16421 2016-07-12 Richard Biener <rguenther@suse.de>
16422
16423 PR rtl-optimization/68961
16424 * fwprop.c (propagate_rtx): Allow SUBREGs of VEC_CONCAT and CONCAT
16425 to simplify to a non-constant.
16426
16427 2016-07-11 Jakub Jelinek <jakub@redhat.com>
16428
16429 PR middle-end/71758
16430 * omp-low.c (expand_omp_target): Gimplify device.
16431
16432 PR tree-optimization/71823
16433 * tree-vect-stmts.c (vectorizable_operation): Use vect_get_vec_defs
16434 to get vec_oprnds2 from op2.
16435
16436 2016-07-11 Uros Bizjak <ubizjak@gmail.com>
16437
16438 * config/i386/predicates.md (x86_64_immediate_operand) <case CONST>:
16439 Hoist common subexpressions.
16440 (x86_64_zext_immediate_operand) <case CONST>: Ditto.
16441
16442 2016-07-11 Pat Haugen <pthaugen@us.ibm.com>
16443
16444 PR target/71800
16445 * config/rs6000/rs6000.md (stfiwx): Change constraint to 'wu' to
16446 prevent generation of 'stxsiwx' on pre Power8 hardware.
16447
16448 2016-07-11 David Malcolm <dmalcolm@redhat.com>
16449
16450 * input.c: Include cpplib.h.
16451 (selftest::temp_source_file): New class.
16452 (selftest::temp_source_file::temp_source_file): New ctor.
16453 (selftest::temp_source_file::~temp_source_file): New dtor.
16454 (selftest::should_have_column_data_p): New function.
16455 (selftest::test_should_have_column_data_p): New function.
16456 (selftest::temp_line_table): New class.
16457 (selftest::temp_line_table::temp_line_table): New ctor.
16458 (selftest::temp_line_table::~temp_line_table): New dtor.
16459 (selftest::test_accessing_ordinary_linemaps): Add case_ param; use
16460 it to create a temp_line_table.
16461 (selftest::assert_loceq): Only verify LOCATION_COLUMN for
16462 locations that are known to have column data.
16463 (selftest::line_table_case): New struct.
16464 (selftest::test_reading_source_line): Move tempfile handling
16465 to class temp_source_file.
16466 (ASSERT_TOKEN_AS_TEXT_EQ): New macro.
16467 (selftest::assert_token_loc_eq): New function.
16468 (ASSERT_TOKEN_LOC_EQ): New macro.
16469 (selftest::test_lexer): New function.
16470 (selftest::boundary_locations): New array.
16471 (selftest::input_c_tests): Call test_should_have_column_data_p.
16472 Loop over a test matrix of interesting values of location and
16473 default_range_bits, calling test_lexer on each case in the matrix.
16474 Move call to test_accessing_ordinary_linemaps into the matrix.
16475 * selftest.h (ASSERT_EQ): Reimplement in terms of...
16476 (ASSERT_EQ_AT): New macro.
16477
16478 2016-07-11 H.J. Lu <hongjiu.lu@intel.com>
16479
16480 PR target/71801
16481 * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
16482 Don't convert TImode in debug insn.
16483
16484 2016-07-11 Bernd Edlinger <bernd.edlinger@hotmail.de>
16485
16486 Convert TYPE_ALIGN_OK to a TYPE_LANG_FLAG.
16487 * tree-core.h (tree_base::nothrow_flag): Adjust comment.
16488 (tree_type_common::lang_flag_7): New.
16489 (tree_type_common::spare): Reduce size.
16490 * tree.h (TYPE_ALIGN_OK): Remove.
16491 (TYPE_LANG_FLAG_7): New.
16492 (get_inner_reference): Adjust header.
16493 * print-tree.c (print_node): Adjust.
16494 * expr.c (get_inner_reference): Remove parameter keep_aligning.
16495 (get_bit_range, expand_assignment, expand_expr_addr_expr_1): Adjust
16496 calls to get_inner_reference.
16497 (expand_expr_real_1): Adjust call to get_inner_reference. Remove
16498 handling of TYPE_ALIGN_OK.
16499 * builtins.c (get_object_alignment_2): Adjust call to
16500 get_inner_reference. Remove handling of VIEW_CONVERT_EXPR.
16501 * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove handling of
16502 TYPE_ALIGN_OK.
16503 * asan.c (instrument_derefs): Adjust calls to get_inner_reference.
16504 * cfgexpand.c (expand_debug_expr): Likewise.
16505 * dbxout.c (dbxout_expand_expr): Likewise.
16506 * dwarf2out.c (loc_list_for_address_of_addr_expr_of_indirect_ref,
16507 loc_list_from_tree, fortran_common): Likewise.
16508 * fold-const.c (optimize_bit_field_compare,
16509 decode_field_reference, fold_unary_loc, fold_comparison,
16510 split_address_to_core_and_offset): Likewise.
16511 * gimple-laddress.c (execute): Likewise.
16512 * gimple-ssa-strength-reduction.c (slsr_process_ref): Likewise.
16513 * gimplify.c (gimplify_scan_omp_clauses): Likewise.
16514 * hsa-gen.c (gen_hsa_addr): Likewise.
16515 * simplifx-rtx.c (delegitimize_mem_from_attrs): Likewise.
16516 * tsan.c (instrument_expr): Likewise.
16517 * ubsan.c (instrument_bool_enum_load, instrument_object_size): Likewise.
16518 * tree.c (verify_type_variant): Remove handling of TYPE_ALIGN_OK.
16519 * tree-affine.c (tree_to_aff_combination,
16520 get_inner_reference_aff): Adjust calls to get_inner_reference.
16521 * tree-data-ref.c (split_constant_offset_1,
16522 dr_analyze_innermost): Likewise.
16523 * tree-scalar-evolution.c (interpret_rhs_expr): Likewise.
16524 * tree-sra.c (ipa_sra_check_caller): Likewise.
16525 * tree-ssa-loop-ivopts.c (split_address_cost): Likewise.
16526 * tree-ssa-math-opts.c (find_bswap_or_nop_load,
16527 bswap_replace): Likewise.
16528 * tree-vect-data-refs.c (vect_check_gather,
16529 vect_analyze_data_refs): Likewise.
16530 * config/mips/mips.c (r10k_safe_mem_expr_p): Likewise.
16531 * config/pa/pa.c (pa_emit_move_sequence): Remove handling of
16532 TYPE_ALIGN_OK.
16533
16534 2016-07-11 David Malcolm <dmalcolm@redhat.com>
16535
16536 * Makefile.in (selftest-valgrind): New phony target.
16537 * function-tests.c (selftest::build_cfg): Delete pass instances
16538 created by the test.
16539 (selftest::convert_to_ssa): Likewise.
16540 (selftest::test_expansion_to_rtl): Likewise.
16541 * tree-cfg.c (selftest::test_linear_chain): Release dominator
16542 vectors.
16543 (selftest::test_diamond): Likewise.
16544
16545 2016-07-11 Richard Biener <rguenther@suse.de>
16546
16547 PR tree-optimization/71816
16548 * tree-ssa-pre.c (compute_avail): Adjust alignment of ref rather
16549 than replacing all of its operands.
16550
16551 2016-07-11 Alan Modra <amodra@gmail.com>
16552
16553 * config/rs6000/rs6000.md (UNSPEC_DOLOOP): New unspec.
16554 (ctr<mode>): Add unspec.
16555 (ctr<mode>_internal*): Likewise.
16556
16557 2016-07-08 James Bowman <james.bowman@ftdichip.com>
16558
16559 * config/ft32/ft32.c (ft32_elf_encode_section_info): New function.
16560 * config/ft32/ft32.h (ASM_OUTPUT_SYMBOL_REF): New function.
16561
16562 2016-07-08 Vladimir Makarov <vmakarov@redhat.com>
16563
16564 PR rtl-optimization/71621
16565 * lra-constraints.c (process_alt_operands): Check combination of
16566 reg class and mode.
16567
16568 2016-07-08 Jason Merrill <jason@redhat.com>
16569 Richard Biener <rguenther@suse.de>
16570
16571 P0145: Refining Expression Order for C++.
16572 * gimplify.c (initial_rhs_predicate_for): New.
16573 (gimplfy_modify_expr): Gimplify RHS before LHS.
16574
16575 2016-07-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
16576
16577 PR target/71297
16578 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
16579 Allow standard error handling to take over when a wrong number
16580 of arguments is presented to __builtin_vec_ld () or
16581 __builtin_vec_st ().
16582
16583 2016-07-08 Jiong Wang <jiong.wang@arm.com>
16584
16585 * config/aarch64/aarch64-simd-builtins.def (smax): Remove float
16586 variants.
16587 (smin): Likewise.
16588 (fmax): New entry.
16589 (fmin): Likewise.
16590 * config/aarch64/arm_neon.h (vmaxnm_f32): Use
16591 __builtin_aarch64_fmaxv2sf.
16592 (vmaxnmq_f32): Likewise.
16593 (vmaxnmq_f64): Likewise.
16594 (vminnm_f32): Likewise.
16595 (vminnmq_f32): Likewise.
16596 (vminnmq_f64): Likewise.
16597
16598 2016-07-08 Michael Meissner <meissner@linux.vnet.ibm.com>
16599
16600 PR target/71806
16601 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Do not
16602 enable -mfloat128-hardware by default.
16603 (ISA_3_0_MASKS_IEEE): New macro to give all of the VSX options
16604 that IEEE 128-bit hardware support needs.
16605 * config/rs6000/rs6000.c (rs6000_option_override_internal): If
16606 -mcpu=power9 -mfloat128, enable -mfloat128-hardware by default.
16607 Use ISA_3_0_MASKS_IEEE as the set of options that IEEE 128-bit
16608 floating point requires.
16609 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
16610 -mfloat128 and -mfloat128-hardware changes.
16611
16612 2016-07-08 Alan Hayward <alan.hayward@arm.com>
16613
16614 PR tree-optimization/71667
16615 * tree-vect-loop.c (vectorizable_live_operation): ignore DEBUG stmts
16616
16617 2016-07-08 Martin Liska <mliska@suse.cz>
16618
16619 PR middle-end/71606
16620 * fold-const.c (fold_convertible_p): As COMPLEX_TYPE
16621 folding produces SAVE_EXPRs, thus return false for the type.
16622
16623 2016-07-07 Martin Liska <mliska@suse.cz>
16624
16625 * file-find.c (remove_prefix): New function.
16626 * file-find.h (remove_prefix): Declare the function.
16627 * gcc-ar.c (main): Skip a folder of the wrapper if
16628 a wrapped binary would point to the same file.
16629
16630 2016-07-07 Jan Hubicka <jh@suse.cz>
16631
16632 * tree-scalar-evolution.c (iv_can_overflow_p): export.
16633 * tree-scalar-evolution.h (iv_can_overflow_p): Declare.
16634 * tree-ssa-loop-ivopts.c (alloc_iv): Use it.
16635
16636 2016-07-07 Ilya Enkovich <ilya.enkovich@intel.com>
16637
16638 PR ipa/71624
16639 * ipa-inline-analysis.c (compute_inline_parameters): Set
16640 local.can_change_signature to false for intrumentation
16641 thunk callees.
16642
16643 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
16644
16645 * config/arm/arm.h (TARGET_USE_MOVT): Check MOVT/MOVW availability
16646 with TARGET_HAVE_MOVT.
16647 (TARGET_HAVE_MOVT): Define.
16648 * config/arm/arm.c (const_ok_for_op): Check MOVT/MOVW
16649 availability with TARGET_HAVE_MOVT.
16650 * config/arm/arm.md (arm_movt): Use TARGET_HAVE_MOVT to check MOVT
16651 availability.
16652 (addsi splitter): Use TARGET_THUMB && TARGET_HAVE_MOVT rather than
16653 TARGET_THUMB2.
16654 (symbol_refs movsi splitter): Remove TARGET_32BIT check.
16655 (arm_movtas_ze): Use TARGET_HAVE_MOVT to check MOVT availability.
16656 * config/arm/constraints.md (define_constraint "j"): Use
16657 TARGET_HAVE_MOVT to check MOVT availability.
16658
16659 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
16660
16661 * config/arm/arm-protos.h: Reindent FL_FOR_* macro definitions.
16662
16663 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
16664
16665 * config/arm/arm-arches.def (armv8-m.base): Define new architecture.
16666 (armv8-m.main): Likewise.
16667 (armv8-m.main+dsp): Likewise.
16668 * config/arm/arm-protos.h (FL_FOR_ARCH8M_BASE): Define.
16669 (FL_FOR_ARCH8M_MAIN): Likewise.
16670 * config/arm/arm-tables.opt: Regenerate.
16671 * config/arm/bpabi.h: Add armv8-m.base, armv8-m.main and
16672 armv8-m.main+dsp to BE8_LINK_SPEC.
16673 * config/arm/arm.h (TARGET_HAVE_LDACQ): Exclude ARMv8-M.
16674 (enum base_architecture): Add BASE_ARCH_8M_BASE and BASE_ARCH_8M_MAIN.
16675 * config/arm/arm.c (arm_arch_name): Increase size to work with ARMv8-M
16676 Baseline and Mainline.
16677 (arm_option_override_internal): Also disable arm_restrict_it when
16678 !arm_arch_notm. Update comment for -munaligned-access to also cover
16679 ARMv8-M Baseline.
16680 (arm_file_start): Increase buffer size for printing architecture name.
16681 * doc/invoke.texi: Document architectures armv8-m.base, armv8-m.main
16682 and armv8-m.main+dsp.
16683 (mno-unaligned-access): Clarify that this is disabled by default for
16684 ARMv8-M Baseline architectures as well.
16685
16686 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
16687
16688 * config/arm/elf.h: Use __ARM_ARCH_ISA_THUMB and __ARM_ARCH_ISA_ARM to
16689 decide whether to prevent some libgcc routines being included for some
16690 multilibs rather than __ARM_ARCH_6M__ and add comment to indicate the
16691 link between this condition and the one in
16692 libgcc/config/arm/lib1func.S.
16693
16694 2016-07-07 Richard Biener <rguenther@suse.de>
16695
16696 * tree-ssa-pre.c: Include alias.h.
16697 (compute_avail): If we have multiple VN_REFERENCEs with the
16698 same hashtable entry adjust that to make it a valid replacement
16699 for all of them with respect to alignment and aliasing
16700 when doing insertion.
16701 * tree-ssa-sccvn.h (vn_reference_operands_for_lookup): Declare.
16702 * tree-ssa-sccvn.c (vn_reference_operands_for_lookup): New function.
16703
16704 2016-07-06 Segher Boessenkool <segher@kernel.crashing.org>
16705
16706 PR target/70098
16707 PR target/71763
16708 * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
16709 *ctr<mode>_internal5, *ctr<mode>_internal6): Add *wi to the output
16710 constraint.
16711
16712 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16713
16714 * var-tracking.c (struct adjust_mem_data): Make side_effects a vector.
16715 (adjust_mems): Adjust.
16716 (adjust_insn): Likewise.
16717 (prepare_call_arguments): Likewise.
16718
16719 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16720
16721 * gcse.c (struct ls_expr): Make stores field a vector.
16722 (ldst_entry): Adjust.
16723 (free_ldst_entry): Likewise.
16724 (print_ldst_list): Likewise.
16725 (compute_ld_motion_mems): Likewise.
16726 (update_ld_motion_stores): Likewise.
16727
16728 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16729
16730 * gcse.c (struct ls_expr): Remove loads field.
16731 (ldst_entry): Adjust.
16732 (free_ldst_entry): Likewise.
16733 (print_ldst_list): Likewise.
16734 (compute_ld_motion_mems): Likewise.
16735
16736 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
16737
16738 * store-motion.c (struct st_expr): Make antic_stores a vector.
16739 (st_expr_entry): Adjust.
16740 (free_st_expr_entry): Likewise.
16741 (print_store_motion_mems): Likewise.
16742 (find_moveable_store): Likewise.
16743 (compute_store_table): Likewise.
16744 (remove_reachable_equiv_notes): Likewise.
16745 (replace_store_insn): Likewise.
16746 (build_store_vectors): Likewise.
16747
16748 2016-07-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16749
16750 * config/arm/driver-arm.c (arm_cpu_table): Add entries for cortex-a32,
16751 cortex-a35, cortex-a53, cortex-a57, cortex-a72, cortex-a73.
16752
16753 2016-07-06 Yuri Rumyantsev <ysrumyan@gmail.com>
16754
16755 PR tree-optimization/71518
16756 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Adjust
16757 misalign also for outer loops with negative step.
16758
16759 2016-07-06 Wilco Dijkstra <wdijkstr@arm.com>
16760
16761 * config/arm/cortex-a53.md: Use final_presence_set for in-order.
16762 (cortex_a53_shift): Add mov_shift.
16763 (cortex_a53_shift_reg): Add new reservation for register shifts.
16764 (cortex_a53_alu): Remove bfm.
16765 (cortex_a53_alu_shift): Add bfm, remove mov_shift.
16766 (cortex_a53_alu_extr): Add new reservation for EXTR.
16767 (bypasses): Improve bypass modelling.
16768
16769 2016-07-06 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
16770
16771 PR target/50739
16772 * config/avr/avr.c (avr_asm_select_section): Strip off
16773 SECTION_DECLARED from flags when calling get_section.
16774
16775 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
16776
16777 * tree-vectorizer.h (vect_memory_access_type): Add
16778 VMAT_INVARIANT, VMAT_CONTIGUOUS_DOWN and VMAT_CONTIGUOUS_REVERSED.
16779 * tree-vect-stmts.c (compare_step_with_zero): New function.
16780 (perm_mask_for_reverse): Move further up file.
16781 (get_group_load_store_type): Stick to VMAT_ELEMENTWISE if the
16782 step is negative.
16783 (get_negative_load_store_type): New function.
16784 (get_load_store_type): Call it. Add an ncopies argument.
16785 (vectorizable_mask_load_store): Update call accordingly and
16786 remove tests for negative steps.
16787 (vectorizable_store, vectorizable_load): Likewise. Handle new
16788 memory_access_types.
16789
16790 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
16791
16792 * tree-vectorizer.h (vect_memory_access_type): New enum.
16793 (_stmt_vec_info): Add a memory_access_type field.
16794 (STMT_VINFO_MEMORY_ACCESS_TYPE): New macro.
16795 (vect_model_store_cost): Take an access type instead of a boolean.
16796 (vect_model_load_cost): Likewise.
16797 * tree-vect-slp.c (vect_analyze_slp_cost_1): Update calls to
16798 vect_model_store_cost and vect_model_load_cost.
16799 * tree-vect-stmts.c (vec_load_store_type): New enum.
16800 (vect_model_store_cost): Take an access type instead of a
16801 store_lanes_p boolean. Simplify tests.
16802 (vect_model_load_cost): Likewise, but for load_lanes_p.
16803 (get_group_load_store_type, get_load_store_type): New functions.
16804 (vectorizable_store): Use get_load_store_type. Record the access
16805 type in STMT_VINFO_MEMORY_ACCESS_TYPE.
16806 (vectorizable_load): Likewise.
16807 (vectorizable_mask_load_store): Likewise. Replace is_store
16808 variable with vls_type.
16809
16810 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
16811
16812 * tree-vectorizer.h (vect_grouped_load_supported): Add a
16813 single_element_p parameter.
16814 * tree-vect-data-refs.c (vect_grouped_load_supported): Likewise.
16815 Check the PR65518 case here rather than in vectorizable_load.
16816 * tree-vect-loop.c (vect_analyze_loop_2): Update call accordignly.
16817 * tree-vect-stmts.c (vectorizable_load): Likewise.
16818
16819 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
16820
16821 * tree-vectorizer.h (gather_scatter_info): New structure.
16822 (vect_check_gather_scatter): Return a bool rather than a decl.
16823 Replace return-by-pointer arguments with a single
16824 gather_scatter_info *.
16825 * tree-vect-data-refs.c (vect_check_gather_scatter): Likewise.
16826 (vect_analyze_data_refs): Update call accordingly.
16827 * tree-vect-stmts.c (vect_mark_stmts_to_be_vectorized): Likewise.
16828 (vectorizable_mask_load_store): Likewise. Also record the
16829 offset dt and vectype in the gather_scatter_info.
16830 (vectorizable_store): Likewise.
16831 (vectorizable_load): Likewise.
16832
16833 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
16834
16835 * tree-vect-stmts.c (vect_model_store_cost): For non-SLP
16836 strided groups, use the cost of N scalar accesses instead
16837 of ncopies vector accesses.
16838 (vect_model_load_cost): Likewise.
16839
16840 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
16841
16842 * tree-vect-stmts.c (vect_cost_group_size): Delete.
16843 (vect_model_store_cost): Avoid calling it. Use first_stmt_p
16844 variable to indicate when once-per-group costs are being used.
16845 (vect_model_load_cost): Likewise. Fix comment and misindented code.
16846
16847 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
16848
16849 * tree-vect-stmts.c (vectorizable_load): Remove unnecessary
16850 peeling-for-gaps condition.
16851
16852 2016-07-06 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
16853
16854 * config/s390/s390.c (s390_expand_vec_init): Force initializer
16855 element to register if it doesn't match general_operand.
16856
16857 2016-07-05 Michael Meissner <meissner@linux.vnet.ibm.com>
16858 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
16859
16860 * config/rs6000/rs6000-protos.h (rs6000_split_signbit): New
16861 prototype.
16862 * config/rs6000/rs6000.c (rs6000_split_signbit): New function.
16863 * config/rs6000/rs6000.md (UNSPEC_SIGNBIT): New constant.
16864 (SIGNBIT): New mode iterator.
16865 (Fsignbit): New mode attribute.
16866 (signbit<mode>2): Change operand1 to match FLOAT128 instead of
16867 IBM128; dispatch to gen_signbit{kf,tf}2_dm for __float128
16868 when direct moves are available.
16869 (signbit<mode>2_dm): New define_insn_and_split).
16870 (signbit<mode>2_dm2): New define_insn.
16871
16872 2016-07-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16873
16874 PR rtl-optimization/71594
16875 * ifcvt.c (noce_convert_multiple_sets): Wrap new_val or old_val
16876 into subregs of appropriate mode before trying to emit a conditional
16877 move.
16878
16879 2016-07-05 Jan Hubicka <jh@suse.cz>
16880
16881 * tree-scalar-evolution.c (iv_can_overflow_p): New function.
16882 (simple_iv): Use it.
16883
16884 2016-07-05 Jan Hubicka <jh@suse.cz>
16885
16886 * tree-ssa-loop-niter.c (nowrap_type_p): Use ANY_INTEGRAL_TYPE_P.
16887
16888 2016-07-05 Jiong Wang <jiong.wang@arm.com>
16889
16890 * lra-constraints.c (process_alt_operands): Don't add spilling cost for
16891 "offmemok".
16892
16893 2016-07-05 Jan Hubicka <jh@suse.cz>
16894
16895 * tree-scalar-evoluiton.c (simple_iv): Use nowrap_type to check if
16896 IV can overflow.
16897
16898 2016-07-05 Richard Biener <rguenther@suse.de>
16899
16900 * gimple-ssa-split-paths.c (find_block_to_duplicate_for_splitting_pa):
16901 Handle empty else block.
16902 (is_feasible_trace): Likewise.
16903 (split_paths): Likewise.
16904
16905 2016-07-05 Richard Biener <rguenther@suse.de>
16906
16907 * tree-loop-distribution.c (distribute_loop): Fix issue with
16908 the cost model loop.
16909
16910 2016-07-05 Christophe Lyon <christophe.lyon@linaro.org>
16911
16912 * config/arm/neon-testgen.ml: Delete.
16913 * config/arm/neon.ml: Delete.
16914
16915 2016-07-04 Jakub Jelinek <jakub@redhat.com>
16916
16917 PR c++/71739
16918 * tree.c (attribute_value_equal): Use get_attribute_name instead of
16919 directly using TREE_PURPOSE.
16920
16921 2016-07-04 Jiong Wang <jiong.wang@arm.com>
16922
16923 * config/aarch64/aarch64.h: Rename "ARMv8.1" to "ARMv8.1-A".
16924 * config/aarch64/aarch64_neon.h: Likewise.
16925 * config/aarch64/arm_neon.h: Likewise.
16926 * config/aarch64/atomics.md: Likewise.
16927 * config/aarch64/aarch64-simd-builtins.def: Likewise.
16928 * doc/invoke.texi: Likewise.
16929
16930 2016-07-04 Dominik Vogt <vogt@linux.vnet.ibm.com>
16931
16932 * config/s390/s390.md: Add "z13" cpu_facility.
16933 ("*mov<mode>cc"): Add support for z13 instructions lochi and locghi.
16934 * config/s390/predicates.md ("loc_operand"): New predicate for "load on
16935 condition" type instructions.
16936
16937 2016-07-04 Dominik Vogt <vogt@linux.vnet.ibm.com>
16938 Jeff Law <law@redhat.com>
16939
16940 * explow.c (allocate_dynamic_stack_space): Simplify knowing that
16941 MUST_ALIGN was always true and extra_align ist always BITS_PER_UNIT.
16942
16943 2016-07-04 Yuri Rumyantsev <ysrumyan@gmail.com>
16944
16945 * config/i386/i386.c (ix86_expand_vec_perm): Add handle one-operand
16946 permutation for TARGET_AVX512F.
16947 (ix86_expand_vec_one_operand_perm_avx512): New function.
16948 (expand_vec_perm_1): Invoke introduced function.
16949 * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
16950 it may be not valid after vectorization.
16951
16952 2016-07-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
16953
16954 PR target/63874
16955 * config/aarch64/aarch64.c (aarch64_classify_symbol): Fix
16956 typo in comment. Only force to memory if it is a weak
16957 external reference.
16958
16959 2016-07-04 Matthew Wahab <matthew.wahab@arm.com>
16960 Jiong Wang <jiong.wang@arm.com>
16961
16962 * config/aarch64/aarch64-arches.def: Add "armv8.2-a".
16963 * config/aarch64/aarch64.h (AARCH64_FL_V8_2): New.
16964 (AARCH64_FL_F16): New.
16965 (AARCH64_FL_FOR_ARCH8_2): New.
16966 (AARCH64_ISA_8_2): New.
16967 (AARCH64_ISA_F16): New.
16968 (TARGET_FP_F16INST): New.
16969 (TARGET_SIMD_F16INST): New.
16970 * config/aarch64/aarch64-option-extensions.def ("fp16"): New entry.
16971 ("fp"): Disabling "fp" also disables "fp16".
16972 * config/aarch64/aarch64-c.c (arch64_update_cpp_builtins):
16973 Conditionally define __ARM_FEATURE_FP16_SCALAR_ARITHMETIC
16974 and __ARM_FEATURE_FP16_VECTOR_ARITHMETIC.
16975 * doc/invoke.texi (AArch64 Options): Document "armv8.2-a" and "fp16".
16976
16977 2016-07-04 Jan Beulich <jbeulich@suse.com>
16978
16979 * gcc.c (default_compilers["@c-header"]): Conditionalize "-o".
16980
16981 2016-07-01 Michael Meissner <meissner@linux.vnet.ibm.com>
16982
16983 PR target/71720
16984 * config/rs6000/vsx.md (vsx_splat_v4sf_internal): When splitting
16985 the insns, use an insn form that does not adjust the offset on
16986 little endian systems.
16987
16988 2016-07-01 Jan Beulich <jbeulich@suse.com>
16989
16990 * varasm.c (get_variable_section): Validate initializer in
16991 named .bss-like sections.
16992
16993 2016-07-01 Kelvin Nilsen <kelvin@gcc.gnu.org>
16994
16995 * config/rs6000/altivec.md (*altivec_vpermr_<mode>_internal):
16996 Exchange the order of the second and third operands in the vpermr
16997 instruction tmeplate.
16998
16999 2016-07-01 Peter Bergner <bergner@vnet.ibm.com>
17000
17001 PR target/71698
17002 * config/rs6000/rs6000.c (rs6000_secondary_reload_simple_move):
17003 Disallow TDmode values.
17004
17005 2016-07-01 Alan Modra <amodra@gmail.com>
17006
17007 PR rtl-optimization/71709
17008 * ira-lives.c (find_call_crossed_cheap_reg): Exit loop on arg reg
17009 being set, not referenced.
17010
17011 2016-07-01 Yuri Rumyantsev <ysrumyan@gmail.com>
17012
17013 PR tree-optimization/70729
17014 * tree-vectorizer.c (adjust_simduid_builtins): Nullify safelen field
17015 of loop since it can be not valid after transformation.
17016
17017 2016-07-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17018
17019 * config/arm/arm.c (thumb_reload_in_hi): Delete.
17020 * config/arm/arm-protos.h (thumb_reload_in_hi): Delete prototype.
17021
17022 2016-07-01 Eric Botcazou <ebotcazou@adacore.com>
17023
17024 * config/arm/arm.c (arm_function_ok_for_sibcall): Add another check
17025 for NULL decl.
17026
17027 2016-06-30 Michael Meissner <meissner@linux.vnet.ibm.com>
17028
17029 PR target/71677
17030 * config/rs6000/constraints.md (wY constraint): New constraint to
17031 match the requirements for the LXSD and STXSD instructions.
17032 * config/rs6000/predicates.md (offsettable_mem_14bit_operand): New
17033 predicate to match the requirements for the LXSD and STXSD
17034 instructions.
17035 * config/rs6000/rs6000.md (mov<mode>_hardfloat32, FMOVE64 case):
17036 Use constaint wY for LXSD/STXSD instructions instead of 'o' or 'Y'
17037 to make sure that the bottom 2 bits of offset are 0, the address
17038 form is offsettable, and no updating is done in the address mode.
17039 (mov<mode>_hardfloat64, FMOVE64 case): Likewise.
17040 (movdi_internal32): Likewise
17041 (movdi_internal64): Likewise.
17042
17043 2016-06-30 Jakub Jelinek <jakub@redhat.com>
17044
17045 PR tree-optimization/71707
17046 * tree-ssa-strlen.c (get_stridx_plus_constant): Handle already present
17047 strinfo even for ADDR_EXPR ptr.
17048
17049 2016-06-30 Kelvin Nilsen <kelvin@gcc.gnu.org>
17050
17051 * config/rs6000/altivec.md (darn_32): Change the condition to
17052 TARGET_P9_MISC instead of TARGET_MODULO.
17053 (darn_raw): Replace TARGET_MODULO with TARGET_P9_MISC in the
17054 condition expression.
17055 (darn): Replace TARGET_MODULO with TARGET_P9_MISC in the
17056 condition expression.
17057 * config/rs6000/dfp.md (UNSPEC_DTSTSFI): New unspec constant.
17058 (DFP_TEST): New code iterator.
17059 (dfptstsfi_<code>_mode>): New define_expand.
17060 (*dfp_sgnfcnc_<mode>): New define_insn.
17061 * config/rs6000/rs6000-builtin.def (BU_P9_MISC_0): Move this macro
17062 definition next to BU_P9_MISC_1 definition and change the MASK
17063 value to RS6000_BTM_P9_MISC.
17064 (BU_P9_MISC_1): Change the MASK value to RS6000_BTM_P9_MISC.
17065 (BU_P9_64BIT_MISC_0): Likewise.
17066 (BU_P9_DFP_MISC_0): New macro definition.
17067 (BU_P9_DFP_MISC_1): New macro definition.
17068 (BU_P9_DFP_MISC_2): New macro definition.
17069 (BU_P9_DFP_OVERLOAD_1): New macro definition.
17070 (BU_P9_DFP_OVERLOAD_2): New macro definition.
17071 (BU_P9_DFP_OVERLOAD_3): New macro definition.
17072 (TSTSFI_LT_DD): New BU_P9_DFP_MISC_2.
17073 (TSTSFI_LT_TD): Likewise.
17074 (TSTSFI_EQ_DD): Likewise.
17075 (TSTSFI_EQ_TD): Likewise.
17076 (TSTSFI_GT_DD): Likewise.
17077 (TSTSFI_GT_TD): Likewise.
17078 (TSTSFI_OV_DD): Likewise.
17079 (TSTSFI_OV_TD): Likewise.
17080 (TSTSFI_LT): New BU_P9_DFP_OVERLOAD_2.
17081 (TSTSFI_LT_DD): Likewise.
17082 (TSTSFI_LT_TD): Likewise.
17083 (TSTSFI_EQ): Likewise.
17084 (TSTSFI_EQ_DD): Likewise.
17085 (TSTSFI_EQ_TD): Likewise.
17086 (TSTSFI_GT): Likewise.
17087 (TSTSFI_GT_DD): Likewise.
17088 (TSTSFI_GT_TD): Likewise.
17089 (TSTSFI_OV): Likewise.
17090 (TSTSFI_OV_DD): Likewise.
17091 (TSTSFI_OV_TD): Likewise.
17092 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
17093 overloaded test significance functions.
17094 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
17095 OPTION_MASK_P9_MISC into the representation of this mask.
17096 (POWERPC_MASKS): Add OPTION_MASK_P9_MISC into the representation
17097 of this mask.
17098 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Set the
17099 RS6000_BTM_P9_MISC flag in the return value if TARGET_P9_MISC is
17100 non-zero.
17101 (rs6000_expand_binop_builtin): Enforce that argument 0 of the exp
17102 argument is a 6-bit unsigned literal value if the icode argument
17103 represents a DFP test significance built-in call.
17104 (rs6000_invalid_builtin): Add support for the RS6000_BTM_P9_MISC
17105 flag used independently and in combination with the
17106 RS6000_BTM_64BIT flag.
17107 (rs6000_opt_masks): Add entry for power9-misc command-line option.
17108 (rs6000_builtin_mask_names): Add entry for power9-misc
17109 command-line option.
17110 * config/rs6000/rs6000.h: Redefine TARGET_P9_MISC as 0 if
17111 HAVE_AS_POWER9 is not a defined macro. Define MASK_P9_MISC and
17112 RS6000_BTM_P9_MISC macros.
17113 * config/rs6000/rs6000.opt: Add support for the -mpower9-misc
17114 option and change the description of the -mpower9-vector option to
17115 enable only vector instructions, removing its erroneously claimed
17116 support for scalar instructions.
17117 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
17118 the ISA 3.0 digital floating point test significance built-in
17119 functions.
17120
17121 2016-06-30 Wilco Dijkstra <wdijkstr@arm.com>
17122
17123 * config/aarch64/aarch64.c (cortexa35_tunings):
17124 Enable AES fusion. Use cortexa57_branch_cost.
17125 (cortexa53_tunings): Use cortexa57_branch_cost.
17126 (cortexa72_tunings): Use cortexa57_branch_cost.
17127 Use AUTOPREFETCHER_WEAK.
17128 (cortexa73_tunings): Use cortexa57_branch_cost.
17129
17130 2016-06-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17131 James Greenhalgh <james.greenhalgh@arm.com>
17132
17133 * config/aarch64/arm_neon.h (vcopyq_lane_f32, vcopyq_lane_f64,
17134 vcopyq_lane_p8, vcopyq_lane_p16, vcopyq_lane_s8, vcopyq_lane_s16,
17135 vcopyq_lane_s32, vcopyq_lane_s64, vcopyq_lane_u8, vcopyq_lane_u16,
17136 vcopyq_lane_u32, vcopyq_lane_u64): Reimplement in C.
17137 (vcopy_lane_f32, vcopy_lane_f64, vcopy_lane_p8, vcopy_lane_p16,
17138 vcopy_lane_s8, vcopy_lane_s16, vcopy_lane_s32, vcopy_lane_s64,
17139 vcopy_lane_u8, vcopy_lane_u16, vcopy_lane_u32, vcopy_lane_u64,
17140 vcopy_laneq_f32, vcopy_laneq_f64, vcopy_laneq_p8, vcopy_laneq_p16,
17141 vcopy_laneq_s8, vcopy_laneq_s16, vcopy_laneq_s32, vcopy_laneq_s64,
17142 vcopy_laneq_u8, vcopy_laneq_u16, vcopy_laneq_u32, vcopy_laneq_u64,
17143 vcopyq_laneq_f32, vcopyq_laneq_f64, vcopyq_laneq_p8, vcopyq_laneq_p16,
17144 vcopyq_laneq_s8, vcopyq_laneq_s16, vcopyq_laneq_s32, vcopyq_laneq_s64,
17145 vcopyq_laneq_u8, vcopyq_laneq_u16, vcopyq_laneq_u32, vcopyq_laneq_u64):
17146 New intrinsics.
17147
17148 2016-06-30 James Greenhalgh <james.greenhalgh@arm.com>
17149 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17150
17151 * config/aarch64/aarch64-simd.md (*aarch64_simd_vec_copy_lane<mode>):
17152 New define_insn.
17153 (*aarch64_simd_vec_copy_lane_<vswap_width_name><mode>): Likewise.
17154
17155 2016-06-30 David Malcolm <dmalcolm@redhat.com>
17156
17157 PR driver/71651
17158 * gcc.c (driver::build_option_suggestions): Pass "option" to
17159 add_misspelling_candidates.
17160 * opts-common.c (add_misspelling_candidates): Add "option" param;
17161 use it to avoid adding negated forms for options marked with
17162 RejectNegative.
17163 * opts.h (add_misspelling_candidates): Add "option" param.
17164
17165 2016-06-30 Jakub Jelinek <jakub@redhat.com>
17166
17167 PR middle-end/71693
17168 * fold-const.c (fold_binary_loc) <case RROTATE_EXPR>: Cast
17169 TREE_OPERAND (arg0, 0) and TREE_OPERAND (arg0, 1) to type
17170 first when permuting bitwise operation with rotate. Cast
17171 TREE_OPERAND (arg0, 0) to type when cancelling two rotations.
17172
17173 2016-06-29 David Malcolm <dmalcolm@redhat.com>
17174
17175 * opts.c (handle_param): Use find_param_fuzzy to offer suggestions
17176 for misspelled param names.
17177 * params.c: Include spellcheck.h.
17178 (find_param_fuzzy): New function.
17179 * params.h (find_param_fuzzy): New prototype.
17180 * spellcheck.c (struct edit_distance_traits<const char *>): Move to...
17181 * spellcheck.h (struct edit_distance_traits<const char *>):
17182 ...here.
17183
17184 2016-06-29 Michael Meissner <meissner@linux.vnet.ibm.com>
17185
17186 * config/rs6000/predicates.md (const_0_to_7_operand): New
17187 predicate, recognize 0..7.
17188 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
17189 support for doing extracts from V16QImode, V8HImode, V4SImode
17190 under ISA 3.0.
17191 * config/rs6000/vsx.md (VSX_EXTRACT_I): Mode iterator for ISA 3.0
17192 vector extract support.
17193 (VSX_EXTRACT_PREDICATE): Mode attribute to validate element number
17194 for ISA 3.0 vector extract.
17195 (VSX_EX): Constraints to use for ISA 3.0 vector extract.
17196 (vsx_extract_<mode>, VSX_EXTRACT_I): Add support for doing
17197 extracts of a constant element number from small integer vectors
17198 on 64-bit ISA 3.0 systems.
17199 (vsx_extract_<mode>_di): Likewise.
17200 * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): New target macro to
17201 say when we can do ISA 3.0 vector extracts.
17202 * config/rs6000/rs6000.md (stfiwx): Allow DImode in Altivec
17203 registers, using the stxsiwx instruction.
17204
17205 2016-06-29 Jim Wilson <jim.wilson@linaro.org>
17206
17207 * config/aarch64/aarch64-cores.def (qdf24xx): Use qdf24xx tuning.
17208 * config/aarch64/aarch64.c (qdf24xx_addrcost_table,
17209 qdf24xx_regmove_cost, qdf24xx_tunings): New.
17210 * config/arm/aarch64-cost-tables.h (qdf24xx_extra_costs): New.
17211 * config/arm/arm-cores.def (qdf24xx): Use qdf24xx tuning.
17212 * config/arm/arm.c (arm_qdf24xx_tune): New.
17213
17214 2016-06-29 Wilco Dijkstra <wdijkstr@arm.com>
17215
17216 * config/aarch64/aarch64.c (cortexa53_tunings):
17217 Increase loop alignment to 8. Set function alignment to 16.
17218 (cortexa35_tunings): Likewise.
17219 (cortexa57_tunings): Increase loop alignment to 8.
17220 (cortexa72_tunings): Likewise.
17221 (cortexa73_tunings): Likewise.
17222
17223 2016-06-29 Matthew Wahab <matthew.wahab@arm.com>
17224
17225 * doc/sourcebuild.texi (Effective-Target keywords): Add entries
17226 for arm_fp16_ok and arm_fp16_hw.
17227 (Add Options): Add entries for arm_fp16, arm_fp16_ieee and
17228 arm_fp16_alternative.
17229
17230 2016-06-29 Ilya Enkovich <ilya.enkovich@intel.com>
17231
17232 PR tree-optimization/71655
17233 * tree-vect-stmts.c (vectorizable_comparison): Swap definition
17234 types when swapping operands.
17235
17236 2016-06-29 Martin Liska <mliska@suse.cz>
17237
17238 PR middle-end/71585
17239 * common.opt (flag_stack_protect): Mark the flag as optimization flag.
17240 * ipa-inline-transform.c (inline_call): Remove unnecessary call
17241 of build_optimization_node.
17242
17243 2016-06-29 Yuri Rumyantsev <ysrumyan@gmail.com>
17244
17245 PR tree-optimization/70729
17246 * tree-ssa-loop-im.c (ref_indep_loop_p_1): Consider memory reference as
17247 independent in loops having positive safelen value.
17248 * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
17249 it may be not valid after vectorization.
17250
17251 2016-06-29 Jakub Jelinek <jakub@redhat.com>
17252
17253 PR tree-optimization/71625
17254 * tree-ssa-strlen.c (get_addr_stridx): Add PTR argument. Assume list
17255 is sorted by ascending list->offset. If PTR is non-NULL and there is
17256 previous strinfo, call get_stridx_plus_constant.
17257 (get_stridx): Pass exp as second argument to get_addr_stridx.
17258 (addr_stridxptr): Add missing list = list->next, so that there can be
17259 more than one entries in the list. Bump limit from 16 to 32. Ensure
17260 the list is sorted by ascending list->offset.
17261 (get_stridx_plus_constant): Adjust so that it can be also called with
17262 ADDR_EXPR instead of SSA_NAME as PTR.
17263 (handle_char_store): Pass NULL_TREE as second argument to
17264 get_addr_stridx.
17265
17266 2016-06-29 Richard Biener <rguenther@suse.de>
17267
17268 PR rtl-optimization/68961
17269 * simplify-rtx.c (simplify_subreg): Handle VEC_CONCAT like CONCAT.
17270
17271 2016-06-29 Richard Biener <rguenther@suse.de>
17272
17273 PR middle-end/71002
17274 * alias.c (component_uses_parent_alias_set_from): Handle
17275 type punning through union accesses by using the union alias set.
17276 * gimple.c (gimple_get_alias_set): Remove union type punning case.
17277
17278 2016-07-29 Richard Biener <rguenther@suse.de>
17279
17280 * match.pd ((T)(T2)x -> (T)x): Remove restriction on final
17281 precision not matching mode precision.
17282
17283 2016-06-28 John David Anglin <danglin@gcc.gnu.org>
17284
17285 * config/pa/pa.md (call_symref_64bit_post_reload): Don't call
17286 pa_output_arg_descriptor.
17287 (call_val_symref_64bit_post_reload): Likewise.
17288 (call_val_powf_64bit_post_reload): Likewise.
17289 (sibcall_internal_symref_64bit): Likewise.
17290 (sibcall_value_internal_symref_64bit): Likewise.
17291
17292 2016-06-28 Jakub Jelinek <jakub@redhat.com>
17293
17294 PR middle-end/71626
17295 * config/i386/i386.c (ix86_expand_vector_move): For SUBREG of
17296 a constant, force its SUBREG_REG into memory or register instead
17297 of whole op1.
17298
17299 2016-06-28 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
17300
17301 PR target/58655
17302 * config/avr/avr.opt (-mfract-convert-truncate): Update description.
17303 * doc/invoke.texi (AVR Options): Document it.
17304
17305 2016-06-28 Walter Lee <walt@tilera.com>
17306
17307 * config/tilegx/linux.h: Do not include arch/icache.h
17308 (CLEAR_INSN_CACHE): Provide inlined definition directly.
17309 * config/tilepro/linux.h: Do not include arch/icache.h
17310 (CLEAR_INSN_CACHE): Provide inlined definition directly.
17311
17312 2016-06-28 Wilco Dijkstra <wdijkstr@arm.com>
17313
17314 * tree-ssa-math-opts.c (find_bswap_or_nop_1): Adjust bitnumbering
17315 for big-endian BIT_FIELD_REF.
17316
17317 2016-06-28 Pat Haugen <pthaugen@us.ibm.com>
17318
17319 * config/rs6000/rs6000.md ('type' attribute): Add htmsimple/dfp types.
17320 ('size' attribute): Add '128'.
17321 Include power9.md.
17322 (*mov<mode>_hardfloat32, *mov<mode>_hardfloat64, *movdi_internal32,
17323 *movdi_internal64, *movdf_update1): Set size attribute to '64'.
17324 (add<mode>3, sub<mode>3, mul<mode>3, div<mode>3, sqrt<mode>2,
17325 copysign<mode>3, neg<mode>2_hw, abs<mode>2_hw, *nabs<mode>2_hw,
17326 *fma<mode>4_hw, *fms<mode>4_hw, *nfma<mode>4_hw, *nfms<mode>4_hw,
17327 extend<SFDF:mode><IEEE128:mode>2_hw, trunc<mode>df2_hw,
17328 *xscvqp<su>wz_<mode>, *xscvqp<su>dz_<mode>, *xscv<su>dqp_<mode>,
17329 *trunc<mode>df2_odd): Set size attribute to '128'.
17330 (*cmp<mode>_hw): Change type to veccmp and set size attribute to '128'.
17331 * config/rs6000/power6.md (power6-fp): Include dfp type.
17332 * config/rs6000/power7.md (power7-fp): Likewise.
17333 * config/rs6000/power8.md (power8-fp): Likewise.
17334 * config/rs6000/power9.md: New file.
17335 * config/rs6000/t-rs6000 (MD_INCLUDES): Add power9.md.
17336 * config/rs6000/htm.md (*tabort, *tabort<wd>c, *tabort<wd>ci,
17337 *trechkpt, *treclaim, *tsr, *ttest): Change type attribute to
17338 htmsimple.
17339 * config/rs6000/dfp.md (extendsddd2, truncddsd2, extendddtd2,
17340 trunctddd2, adddd3, addtd3, subdd3, subtd3, muldd3, multd3, divdd3,
17341 divtd3, *cmpdd_internal1, *cmptd_internal1, floatdidd2, floatditd2,
17342 ftruncdd2, fixdddi2, ftrunctd2, fixtddi2, dfp_ddedpd_<mode>,
17343 dfp_denbcd_<mode>, dfp_dxex_<mode>, dfp_diex_<mode>, dfp_dscli_<mode>,
17344 dfp_dscri_<mode>): Change type attribute to dfp.
17345 * config/rs6000/crypto.md (crypto_vshasigma<CR_char>): Change type
17346 attribute to vecsimple.
17347 * config/rs6000/rs6000.c (power9_cost): Update costs, cache size
17348 and prefetch streams.
17349 (rs6000_option_override_internal): Remove temporary code setting
17350 tuning to power8. Don't set rs6000_sched_groups for power9.
17351 (last_scheduled_insn): Change to rtx_insn *.
17352 (divide_cnt, vec_load_pendulum): New variables.
17353 (rs6000_adjust_cost): Add Power9 to test for store->load separation.
17354 (rs6000_issue_rate): Set issue rate for Power9.
17355 (is_power9_pairable_vec_type): New.
17356 (power9_sched_reorder2): New.
17357 (rs6000_sched_reorder2): Call new function for Power9 specific
17358 reordering.
17359 (insn_must_be_first_in_group): Remove Power9.
17360 (insn_must_be_last_in_group): Likewise.
17361 (force_new_group): Likewise.
17362 (rs6000_sched_init): Fix initialization of last_scheduled_insn.
17363 Initialize divide_cnt/vec_load_pendulum.
17364 (_rs6000_sched_context, rs6000_init_sched_context,
17365 rs6000_set_sched_context): Handle context save/restore of new
17366 variables.
17367
17368 2016-06-28 Richard Biener <rguenther@suse.de>
17369
17370 * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
17371 Properly handle DECL_BIT_FIELD_REPRESENTATIVE occuring as
17372 COMPONENT_REF operand.
17373 (nonoverlapping_component_refs_p): Likewise.
17374 * stor-layout.c (start_bitfield_representative): Mark
17375 DECL_BIT_FIELD_REPRESENTATIVE as DECL_NONADDRESSABLE_P.
17376
17377 2016-06-28 Jakub Jelinek <jakub@redhat.com>
17378
17379 * Makefile.in: Don't cat ../stage_current if it does not exist.
17380
17381 * doc/extend.texi (__builtin_add_overflow_p): Clarify behavior when
17382 last argument is a bit-field.
17383
17384 PR rtl-optimization/71673
17385 * internal-fn.c (expand_arith_overflow_result_store): Use
17386 OPTAB_LIB_WIDEN instead of OPTAB_DIRECT as last argument to
17387 expand_simple_binop.
17388
17389 PR middle-end/66867
17390 * builtins.c (expand_ifn_atomic_compare_exchange_into_call,
17391 expand_ifn_atomic_compare_exchange): New functions.
17392 * internal-fn.c (expand_ATOMIC_COMPARE_EXCHANGE): New function.
17393 * tree.h (build_call_expr_internal_loc): Rename to ...
17394 (build_call_expr_internal_loc_array): ... this. Fix up type of
17395 last argument.
17396 * internal-fn.def (ATOMIC_COMPARE_EXCHANGE): New internal fn.
17397 * predict.c (expr_expected_value_1): Handle IMAGPART_EXPR of
17398 ATOMIC_COMPARE_EXCHANGE result.
17399 * builtins.h (expand_ifn_atomic_compare_exchange): New prototype.
17400 * gimple-fold.h (optimize_atomic_compare_exchange_p,
17401 fold_builtin_atomic_compare_exchange): New prototypes.
17402 * gimple-fold.c (optimize_atomic_compare_exchange_p,
17403 fold_builtin_atomic_compare_exchange): New functions..
17404 * tree-ssa.c (execute_update_addresses_taken): If
17405 optimize_atomic_compare_exchange_p, ignore &var in 2nd argument
17406 of call when finding addressable vars, and if such var becomes
17407 non-addressable, call fold_builtin_atomic_compare_exchange.
17408
17409 2016-06-27 Segher Boessenkool <segher@kernel.crashing.org>
17410
17411 PR target/71670
17412 * config/rs6000/rs6000.md (ashdi3_extswsli_dot): Use
17413 gen_ashdi3_extswsli_dot2 instead of gen_ashdi3_extswsli_dot.
17414
17415 2016-06-27 Pat Haugen <pthaugen@us.ibm.com>
17416
17417 * config/rs6000/rs6000.md ('type' attribute): Add
17418 veclogical,veccmpfx,vecexts,vecmove insn types.
17419 (*abs<mode>2_fpr, *nabs<mode>2_fpr, *neg<mode>2_fpr, *extendsfdf2_fpr,
17420 copysign<mode>3_fcpsgn, trunc<mode>df2_internal1, neg<mode>2_internal,
17421 p8_fmrgow_<mode>, pack<mode>): Change type to fpsimple.
17422 (*xxsel<mode>, copysign<mode>3_hard, neg<mode>2_hw, abs<mode>2_hw,
17423 *nabs<mode>2_hw): Change type to vecmove.
17424 (*and<mode>3_internal, *bool<mode>3_internal, *boolc<mode>3_internal,
17425 *boolcc<mode>3_internal, *eqv<mode>3_internal,
17426 *one_cmpl<mode>3_internal, *ieee_128bit_vsx_neg<mode>2_internal,
17427 *ieee_128bit_vsx_abs<mode>2_internal,
17428 *ieee_128bit_vsx_nabs<mode>2_internal, extendkftf2, trunctfkf2,
17429 *ieee128_mfvsrd_64bit, *ieee128_mfvsrd_32bit, *ieee128_mtvsrd_64bit,
17430 *ieee128_mtvsrd_32bit): Change type to veclogical.
17431 (mov<mode>_hardfloat, *mov<mode>_hardfloat32, *mov<mode>_hardfloat64,
17432 *movdi_internal32, *movdi_internal64): Update insn types.
17433 * config/rs6000/vsx.md (*vsx_le_undo_permute_<mode>,
17434 vsx_extract_<mode>): Change type to veclogical.
17435 (*vsx_xxsel<mode>, *vsx_xxsel<mode>_uns): Change type to vecmove.
17436 (vsx_sign_extend_qi_<mode>, *vsx_sign_extend_hi_<mode>,
17437 *vsx_sign_extend_si_v2di): Change type to vecexts.
17438 * config/rs6000/altivec.md (*altivec_mov<mode>, *altivec_movti): Change
17439 type to veclogical.
17440 (*altivec_eq<mode>, *altivec_gt<mode>, *altivec_gtu<mode>,
17441 *altivec_vcmpequ<VI_char>_p, *altivec_vcmpgts<VI_char>_p,
17442 *altivec_vcmpgtu<VI_char>_p): Change type to veccmpfx.
17443 (*altivec_vsel<mode>, *altivec_vsel<mode>_uns): Change type to vecmove.
17444 * config/rs6000/dfp.md (*negdd2_fpr, *absdd2_fpr, *nabsdd2_fpr,
17445 negtd2, *abstd2_fpr, *nabstd2_fpr): Change type to fpsimple.
17446 * config/rs6000/40x.md (ppc405-float): Add fpsimple.
17447 * config/rs6000/440.md (ppc440-fp): Add fpsimple.
17448 * config/rs6000/476.md (ppc476-fp): Add fpsimple.
17449 * config/rs6000/601.md (ppc601-fp): Add fpsimple.
17450 * config/rs6000/603.md (ppc603-fp): Add fpsimple.
17451 * config/rs6000/6xx.md (ppc604-fp): Add fpsimple.
17452 * config/rs6000/7xx.md (ppc750-fp): Add fpsimple.
17453 (ppc7400-vecsimple): Add veclogical, vecmove, veccmpfx.
17454 * config/rs6000/7450.md (ppc7450-fp): Add fpsimple.
17455 (ppc7450-vecsimple): Add veclogical, vecmove.
17456 (ppc7450-veccmp): Add veccmpfx.
17457 * config/rs6000/8540.md (ppc8540_simple_vector): Add veclogical,
17458 vecmove.
17459 (ppc8540_vector_compare): Add veccmpfx.
17460 * config/rs6000/a2.md (ppca2-fp): Add fpsimple.
17461 * config/rs6000/cell.md (cell-fp): Add fpsimple.
17462 (cell-vecsimple): Add veclogical, vecmove.
17463 (cell-veccmp): Add veccmpfx.
17464 * config/rs6000/e300c2c3.md (ppce300c3_fp): Add fpsimple.
17465 * config/rs6000/e6500.md (e6500_vecsimple): Add veclogical, vecmove,
17466 veccmpfx.
17467 * config/rs6000/mpc.md (mpccore-fp): Add fpsimple.
17468 * config/rs6000/power4.md (power4-fp): Add fpsimple.
17469 (power4-vecsimple): Add veclogical, vecmove.
17470 (power4-veccmp): Add veccmpfx.
17471 * config/rs6000/power5.md (power5-fp): Add fpsimple.
17472 * config/rs6000/power6.md (power6-fp): Add fpsimple.
17473 (power6-vecsimple): Add veclogical, vecmove.
17474 (power6-veccmp): Add veccmpfx.
17475 * config/rs6000/power7.md (power7-fp): Add fpsimple.
17476 (power7-vecsimple): Add veclogical, vecmove, veccmpfx.
17477 * config/rs6000/power8.md (power8-fp): Add fpsimple.
17478 (power8-vecsimple): Add veclogical, vecmove, veccmpfx.
17479 * config/rs6000/rs64.md (rs64a-fp): Add fpsimple.
17480 * config/rs6000/titan.md (titan_fp): Add fpsimple.
17481 * config/rs6000/xfpu.md (fp-default, fp-addsub-s, fp-addsub-d): Add
17482 fpsimple.
17483 * config/rs6000/rs6000.c (rs6000_adjust_cost): Add TYPE_FPSIMPLE.
17484
17485 2016-06-27 Peter Bergner <bergner@vnet.ibm.com>
17486
17487 PR target/71656
17488 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
17489 OPTION_MASK_P9_DFORM_VECTOR.
17490 * config/rs6000/rs6000.c (rs6000_option_override_internal): Do not
17491 disable -mpower9-dform-vector when using reload.
17492 (quad_address_p): Remove 'gpr_p' argument and all associated code.
17493 New 'strict' argument. Update all callers. Add strict addressing
17494 support.
17495 (rs6000_legitimate_offset_address_p): Remove call to
17496 virtual_stack_registers_memory_p.
17497 (rs6000_legitimize_reload_address): Add quad address support.
17498 (rs6000_legitimate_address_p): Move call to quad_address_p above
17499 call to virtual_stack_registers_memory_p. Adjust quad_address_p args
17500 to account for new strict usage.
17501 (rs6000_output_move_128bit): Adjust quad_address_p args to account
17502 for new strict usage.
17503 * config/rs6000/predicates.md (quad_memory_operand): Likewise.
17504
17505 2016-06-26 Uros Bizjak <ubizjak@gmail.com>
17506
17507 PR target/70902
17508 PR target/71453
17509 PR target/71555
17510 PR target/71596
17511 PR target/71657
17512 * config/i386/i386.c (ix86_spill_class): Disable condition to
17513 always return NO_REGS.
17514
17515 2016-06-26 Jan Hubicka <hubicka@ucw.cz>
17516
17517 * predict.c: Include gimple-pretty-print.h
17518 (predicted_by_loop_heuristics_p): Check also
17519 PRED_LOOP_EXIT_WITH_RECURSION
17520 (predict_loops): Find self recursive calls and use special purpose
17521 predictors for them; dump log about decisions.
17522 (pass_profile::execute): Dump info about #of iterations.
17523 * predict.def (PRED_LOOP_EXIT_WITH_RECURSION,
17524 (PRED_LOOP_GUARD_WITH_RECURSION): New predictors.
17525
17526 2016-06-26 John David Anglin <danglin@gcc.gnu.org>
17527
17528 * config/pa/pa.c (pa_output_indirect_call): Rework to combine
17529 output_asm_insn calls and shorten long lines. Output .CALL
17530 argument descriptor using pa_output_arg_descriptor. Add various
17531 inline $$dyncall and other optimizations.
17532 (pa_attr_length_indirect_call): Adjust ordering and lengths.
17533
17534 2016-06-25 Jakub Jelinek <jakub@redhat.com>
17535
17536 PR tree-optimization/71643
17537 * tree-ssa-tail-merge.c (find_clusters_1): Ignore basic blocks with
17538 EH preds.
17539
17540 * tree-ssa-tail-merge.c (deps_ok_for_redirect_from_bb_to_bb): Don't
17541 leak a bitmap if dep_bb is NULL.
17542
17543 PR tree-optimization/71631
17544 * tree-ssa-reassoc.c (reassociate_bb): Pass true as last argument
17545 to rewrite_expr_tree even if negate_result, move new_lhs var
17546 declaration and initialization earlier, for powi_result set afterwards
17547 new_lhs to lhs. For negate_result, use new_lhs instead of tmp
17548 if new_lhs != lhs, and don't shadow gsi var.
17549
17550 2016-06-24 Jan Hubicka <hubicka@ucw.cz>
17551
17552 * predict.c (predict_paths_leading_to, predict_paths_leading_to_edge):
17553 Add in_loop parameter.
17554 (predict_loops): Add loop guard heuristics.
17555 * predict.def (PRED_LOOP_GUARD): New heuristics.
17556
17557 2016-06-24 Jan Hubicka <hubicka@ucw.cz>
17558
17559 * predict.c: Include ipa-utils.h
17560 (tree_bb_level_prediction): Predict recursive calls.
17561 (tree_estimate_probability_bb): Skip inexpensive calls for call
17562 predictor.
17563 * predict.def (PRED_RECURSIVE_CALL): New.
17564
17565 2016-06-24 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
17566
17567 * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): New #define.
17568 (BU_FLOAT128_1): Likewise.
17569 (FABSQ): Likewise.
17570 (COPYSIGNQ): Likewise.
17571 (RS6000_BUILTIN_NANQ): Likewise.
17572 (RS6000_BUILTIN_NANSQ): Likewise.
17573 (RS6000_BUILTIN_INFQ): Likewise.
17574 (RS6000_BUILTIN_HUGE_VALQ): Likewise.
17575 * config/rs6000/rs6000.c (rs6000_fold_builtin): New prototype.
17576 (TARGET_FOLD_BUILTIN): New #define.
17577 (rs6000_builtin_mask_calculate): Add TARGET_FLOAT128 entry.
17578 (rs6000_invalid_builtin): Add handling for RS6000_BTM_FLOAT128.
17579 (rs6000_fold_builtin): New target hook implementation, handling
17580 folding of 128-bit NaNs and infinities.
17581 (rs6000_init_builtins): Initialize const_str_type_node; ensure all
17582 entries are filled in to avoid problems during bootstrap
17583 self-test; define builtins for 128-bit NaNs and infinities.
17584 (rs6000_opt_mask): Add entry for float128.
17585 * config/rs6000/rs6000.h (RS6000_BTM_FLOAT128): New #define.
17586 (RS6000_BTM_COMMON): Include RS6000_BTM_FLOAT128.
17587 (rs6000_builtin_type_index): Add RS6000_BTI_const_str.
17588 (const_str_type_node): New #define.
17589 * config/rs6000/rs6000.md (copysign<mode>3 for IEEE128): Convert
17590 to a define_expand that dispatches to either copysign<mode>3_soft
17591 or copysign<mode>3_hard.
17592 (copysign<mode>3_hard): Rename from copysign<mode>3.
17593 (copysign<mode>3_soft): New define_insn.
17594 * doc/extend.texi: Document new builtins.
17595
17596 2016-06-24 Jakub Jelinek <jakub@redhat.com>
17597
17598 * cfgloop.c (flow_loop_dump): Cast nit to uint64_t and print it using
17599 PRIu64 instead of lu.
17600
17601 2016-06-24 Eric Botcazou <ebotcazou@adacore.com>
17602
17603 PR debug/71642
17604 * tree-inline.c (remap_decl): When fixing up DECL_ORIGINAL_TYPE, just
17605 copy the type name.
17606
17607 2016-06-24 Jakub Jelinek <jakub@redhat.com>
17608
17609 PR tree-optimization/71647
17610 * omp-low.c (lower_rec_input_clauses): Convert
17611 omp_clause_aligned_alignment (c) to size_type_node for the
17612 last argument of __builtin_assume_aligned.
17613
17614 2016-06-24 H.J. Lu <hongjiu.lu@intel.com>
17615
17616 * configure.ac (calling ___tls_get_addr via GOT): New
17617 assembler/linker check.
17618 (HAVE_AS_IX86_TLS_GET_ADDR_GOT): New. Defined to 1 if 32-bit
17619 assembler and linker supports calling ___tls_get_addr via GOT.
17620 Otherise, defined to 0.
17621 * config.in: Regenerated.
17622 * configure: Likewise.
17623 * config/i386/constraints.md (Yb): New constraint.
17624 * config/i386/i386.h (reg_class): Add TLS_GOTBASE_REGS.
17625 (REG_CLASS_NAMES): Likewise.
17626 (REG_CLASS_CONTENTS): Likewise.
17627 * config/i386/i386.md (*tls_global_dynamic_32_gnu): Replace
17628 the b constraint with the Yb constraint. Call ___tls_get_addr
17629 via GOT for GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT
17630 is 1.
17631 (*tls_local_dynamic_base_32_gnu): Likewise.
17632 (*tls_global_dynamic_64_<mode>): Call _tls_get_addr via GOT for
17633 GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT is 1.
17634 (*tls_local_dynamic_base_64_<mode>): Likewise.
17635
17636 2016-06-24 Martin Liska <mliska@suse.cz>
17637
17638 * cfgloop.c (flow_loop_dump): Dump average number of loop iterations.
17639 * cfgloop.h: Change 'struct loop' to 'const struct loop' for a
17640 few functions.
17641 * cfgloopanal.c (expected_loop_iterations_unbounded): Set a new
17642 argument to true if the expected number of iterations is
17643 loop-based.
17644
17645 2016-06-24 Uros Bizjak <ubizjak@gmail.com>
17646
17647 * configure.ac (HAVE_AS_GOTOF_IN_DATA): Use $as_ix86_gas_32_opt to
17648 assemble for 32bit target.
17649 (HAVE_AS_IX86_TLSGDPLT): Use $as_ix86_gas_32_opt to assemble
17650 and $ld_ix86_gld_32_opt to link for 32bit target.
17651 (HAVE_AS_IX86_TLSLDMPLT): Ditto.
17652 * configure: Regenerate.
17653
17654 2016-06-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17655
17656 * config/arm/arm.c (int_log2): Delete definition and prototype.
17657 (shift_op): Use exact_log2 instead of int_log2.
17658 (vfp3_const_double_for_fract_bits): Likewise.
17659
17660 2016-06-24 Jakub Jelinek <jakub@redhat.com>
17661
17662 * internal-fn.c (expand_arith_set_overflow): New function.
17663 (expand_addsub_overflow, expand_neg_overflow, expand_mul_overflow):
17664 Use it.
17665 (expand_arith_overflow_result_store): Likewise. Handle precision
17666 smaller than mode precision.
17667 * tree-vrp.c (extract_range_basic): For imag part, handle
17668 properly signed 1-bit precision result.
17669 * doc/extend.texi (__builtin_add_overflow): Document that last
17670 argument can't be pointer to enumerated or boolean type.
17671 (__builtin_add_overflow_p): Document that last argument can't
17672 have enumerated or boolean type.
17673
17674 2016-06-23 Michael Meissner <meissner@linux.vnet.ibm.com>
17675 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
17676
17677 * config/rs6000/predicates.md (splat_input_operand): Rework.
17678 Don't allow constants, since the insns that use this predicate
17679 don't support constants. Constants are handled by other insns
17680 that are created via combine. During and after register
17681 allocation, only allow indexed or indirect addresses, and not
17682 general addresses. Only allow modes supported by the hardware.
17683 * config/rs6000/rs6000.c (xxsplitb_constant_p): Update usage
17684 comment. Move check for using VSPLTIS<x> to a common location,
17685 instead of doing it in two different places.
17686
17687 2016-06-23 Jocelyn Mayer <l_indien@magic.fr>
17688
17689 * config/i386/driver-i386.c (host_detect_local_cpu): Set
17690 PROCESSOR_PENTIUMPRO for signature_CENTAUR_ebx family >= 9.
17691 <case PROCESSOR_PENTIMUMPRO>: Pass c7 or nehemiah for
17692 signature_CENTAUR_ebx.
17693
17694 2016-06-23 H.J. Lu <hongjiu.lu@intel.com>
17695
17696 PR target/66232
17697 PR target/67400
17698 * configure.ac (as_ix86_tls_ldm_opt): Renamed to ...
17699 (as_ix86_gas_32_opt): This.
17700 (ld_ix86_tls_ldm_opt): Renamed to ...
17701 (ld_ix86_gld_32_opt): This.
17702 (R_386_TLS_LDM reloc): Updated.
17703 (R_386_GOT32X reloc): New assembler/linker check.
17704 (HAVE_AS_IX86_GOT32X): New. Defined to 1 if 32-bit assembler and
17705 linker support "jmp *_start@GOT" and "cmpl $0, bar@GOT". Otherise,
17706 defined to 0.
17707 * config.in: Regenerated.
17708 * configure: Likewise.
17709 * config/i386/i386.c (ix86_force_load_from_GOT_p): Return
17710 true if HAVE_AS_IX86_GOT32X is 1 in 32-bit mode.
17711 (ix86_legitimate_address_p): Allow UNSPEC_GOT for -fno-plt
17712 if ix86_force_load_from_GOT_p returns true.
17713 (ix86_print_operand_address_as): Also support UNSPEC_GOT if
17714 ix86_force_load_from_GOT_p returns true.
17715 (ix86_expand_move): Generate UNSPEC_GOT in 32-bit mode to load
17716 the external function address via the GOT slot.
17717 (ix86_nopic_noplt_attribute_p): Check both TARGET_64BIT and
17718 HAVE_AS_IX86_GOT32X before returning false.
17719 (ix86_output_call_insn): Generate "%!jmp/call\t*%p0@GOT" in
17720 32-bit mode if ix86_nopic_noplt_attribute_p returns true.
17721
17722 2016-06-23 Eric Botcazou <ebotcazou@adacore.com>
17723
17724 * tree-inline.c (remap_decl): Preserve DECL_ORIGINAL_TYPE invariant.
17725
17726 2016-06-23 Andi Kleen <ak@linux.intel.com>
17727
17728 * Makefile.in: Regenerate.
17729 * doc/install.texi: Document autoprofiledbootstrap.
17730
17731 2016-06-23 Andi Kleen <ak@linux.intel.com>
17732
17733 * config/i386/gcc-auto-profile: New file.
17734
17735 2016-06-23 Martin Liska <mliska@suse.cz>
17736
17737 PR middle-end/71619
17738 * predict.c (predict_loops): Revert the hunk that was removed
17739 in r237103.
17740
17741 2016-06-23 Jakub Sejdak <jakub.sejdak@phoesys.com>
17742
17743 * config.gcc: Add support for arm*-*-phoenix* targets.
17744 * config/arm/t-phoenix: New.
17745 * config/phoenix.h: New.
17746
17747 2016-06-23 Uros Bizjak <ubizjak@gmail.com>
17748 H.J. Lu <hongjiu.lu@intel.com>
17749
17750 PR target/67400
17751 * config/i386/i386-protos.h (ix86_force_load_from_GOT_p): New.
17752 * config/i386/i386.c (ix86_force_load_from_GOT_p): New function.
17753 (ix86_legitimate_constant_p): Do not allow UNSPEC_GOTPCREL if
17754 ix86_force_load_from_GOT_p returns true.
17755 (ix86_legitimate_address_p): Allow UNSPEC_GOTPCREL if
17756 ix86_force_load_from_GOT_p returns true.
17757 (ix86_print_operand_address_as): Support UNSPEC_GOTPCREL if
17758 ix86_force_load_from_GOT_p returns true.
17759 (ix86_expand_move): Load the external function address via the
17760 GOT slot if ix86_force_load_from_GOT_p returns true.
17761 * config/i386/predicates.md (x86_64_immediate_operand): Return
17762 false for SYMBOL_REFs where ix86_force_load_from_GOT_p returns true.
17763 (x86_64_zext_immediate_operand): Ditto.
17764
17765 2016-06-22 Uros Bizjak <ubizjak@gmail.com>
17766
17767 * config/i386/i386.c (ix86_expand_move): Simplify SYMBOL_REF handling.
17768
17769 2016-06-22 David Malcolm <dmalcolm@redhat.com>
17770
17771 PR c/70339
17772 * diagnostic-core.h (pedwarn_at_rich_loc): New prototype.
17773 * diagnostic.c (pedwarn_at_rich_loc): New function.
17774 * spellcheck.h (best_match::best_match): Add a
17775 "best_distance_so_far" optional parameter.
17776 (best_match::set_best_so_far): New method.
17777 (best_match::get_best_distance): New accessor.
17778 (best_match::get_best_candidate_length): New accessor.
17779
17780 2016-06-22 Nick Clifton <nickc@redhat.com>
17781
17782 * dwarf2out.c (scompare_loc_descriptor): Use SCALAR_INT_MODE_P() in
17783 place of GET_MODE_CLASS() == MODE_INT, so that partial integer
17784 modes are accepted as well.
17785 (ucompare_loc_descriptor): Likewise.
17786 (minmax_loc_descriptor): Likewise.
17787 (clz_loc_descriptor): Likewise.
17788 (popcount_loc_descriptor): Likewise.
17789 (bswap_loc_descriptor): Likewise.
17790 (rotate_loc_descriptor): Likewise.
17791 (mem_loc_descriptor): Likewise.
17792 (loc_descriptor): Likewise.
17793
17794 2016-06-22 David Malcolm <dmalcolm@redhat.com>
17795
17796 * common.opt (fdiagnostics-parseable-fixits): New option.
17797 * diagnostic.c: Include "selftest.h".
17798 (print_escaped_string): New function.
17799 (print_parseable_fixits): New function.
17800 (diagnostic_report_diagnostic): Call print_parseable_fixits.
17801 (selftest::assert_print_escaped_string): New function.
17802 (ASSERT_PRINT_ESCAPED_STRING_STREQ): New macro.
17803 (selftest::test_print_escaped_string): New function.
17804 (selftest::test_print_parseable_fixits_none): New function.
17805 (selftest::test_print_parseable_fixits_insert): New function.
17806 (selftest::test_print_parseable_fixits_remove): New function.
17807 (selftest::test_print_parseable_fixits_replace): New function.
17808 (selftest::diagnostic_c_tests): New function.
17809 * diagnostic.h (struct diagnostic_context): Add field
17810 "parseable_fixits_p".
17811 * doc/invoke.texi (Diagnostic Message Formatting Options): Add
17812 -fdiagnostics-parseable-fixits.
17813 (-fdiagnostics-parseable-fixits): New option.
17814 * opts.c (common_handle_option): Handle
17815 -fdiagnostics-parseable-fixits.
17816 * selftest-run-tests.c (selftest::run_tests): Call
17817 selftest::diagnostic_c_tests.
17818 * selftest.h (selftest::diagnostic_c_tests): New prototype.
17819
17820 2016-06-22 Ilya Enkovich <ilya.enkovich@intel.com>
17821
17822 PR tree-optimization/71488
17823 * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Support
17824 comparison of boolean vectors.
17825 * tree-vect-stmts.c (vectorizable_comparison): Vectorize comparison
17826 of boolean vectors using bitwise operations.
17827
17828 2016-06-22 Andreas Schwab <schwab@suse.de>
17829
17830 * config/aarch64/aarch64-protos.h (aarch64_elf_asm_named_section):
17831 Remove declaration.
17832
17833 2016-06-22 Eric Botcazou <ebotcazou@adacore.com>
17834
17835 * function.c (assign_parm_setup_reg): Prevent sharing in another case.
17836
17837 2016-06-22 Bernd Edlinger <bernd.edlinger@hotmail.de>
17838
17839 * config/i386/i386.c (print_reg): Emit an error message on attempt to
17840 print FLAGS_REG.
17841
17842 2016-06-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17843
17844 * config/arm/arm.c (arm_cortex_a73_tune): New struct.
17845 * config/arm/arm-cores.def (cortex-a73): New entry.
17846 (cortex-a73.cortex-a35): Likewise.
17847 (cortex-a73.cortex-a53): Likewise.
17848 * config/arm/arm-tables.opt: Regenerate.
17849 * config/arm/arm-tune.md: Likewise.
17850 * config/arm/bpabi.h (BE8_LINK_SPEC): Handle mcpu=cortex-a73,
17851 mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
17852 * config/arm/t-aprofile: Handle mcpu=cortex-a73,
17853 mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
17854 * doc/invoke.texi (ARM Options): Document cortex-a73,
17855 cortex-a73.cortex-a35 and cortex-a73.cortex-a53.
17856
17857 2016-06-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17858
17859 * config/aarch64/aarch64.c (cortexa73_tunings): New struct.
17860 * config/aarch64/aarch64-cores.def (cortex-a73): New entry.
17861 (cortex-a73.cortex-a35): Likewise.
17862 (cortex-a73.cortex-a53): Likewise.
17863 * config/aarch64/aarch64-tune.md: Regenerate.
17864 * doc/invoke.texi (AArch64 Options): Document cortex-a73,
17865 cortex-a73.cortex-a35 and cortex-a73.cortex-a53 arguments to
17866 -mcpu and -mtune.
17867
17868 2016-06-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
17869
17870 * configure.ac (gcc_cv_as_compress_debug): Remove
17871 --compress-debug-sections as extra as switch.
17872 Handle gas --compress-debug-sections=type.
17873 (gcc_cv_ld_compess_debug): Remove bogus ld_date check.
17874 Handle gld --compress-debug-sections=type.
17875 * configure: Regenerate.
17876
17877 2016-06-21 Andrew Burgess <andrew.burgess@embecosm.com>
17878
17879 * bb-reorder.c (pass_partition_blocks::gate): Update comment.
17880
17881 2016-06-21 John David Anglin <danglin@gcc.gnu.org>
17882
17883 * gcov-tool.c (profile_rewrite): Use int64_t instead of long long.
17884 (do_rewrite): likewise.
17885
17886 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
17887
17888 * common/config/mep/mep-common.c: Remove.
17889 * config.gcc: Remove mep-* support.
17890 * config/mep/constraints.md: Remove.
17891 * config/mep/default.h: Remove.
17892 * config/mep/intrinsics.h: Remove.
17893 * config/mep/intrinsics.md: Remove.
17894 * config/mep/ivc2-template.h: Remove.
17895 * config/mep/mep-c5.cpu: Remove.
17896 * config/mep/mep-core.cpu: Remove.
17897 * config/mep/mep-default.cpu: Remove.
17898 * config/mep/mep-ext-cop.cpu: Remove.
17899 * config/mep/mep-intrin.h: Remove.
17900 * config/mep/mep-ivc2.cpu: Remove.
17901 * config/mep/mep-pragma.c: Remove.
17902 * config/mep/mep-protos.h: Remove.
17903 * config/mep/mep.c: Remove.
17904 * config/mep/mep.cpu: Remove.
17905 * config/mep/mep.h: Remove.
17906 * config/mep/mep.md: Remove.
17907 * config/mep/mep.opt: Remove.
17908 * config/mep/predicates.md: Remove.
17909 * config/mep/t-mep: Remove.
17910 * doc/install.texi: Remove mep-* documentation.
17911 * doc/md.texi: Likewise.
17912
17913 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
17914
17915 * config.gcc: Remove support for avr-rtems.
17916 * config/avr/gen-avr-mmcu-specs.c: Likewise.
17917 * config/avr/rtems.h: Remove.
17918 * config/avr/t-rtems: Remove.
17919
17920 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
17921
17922 * config.gcc: Remove m32r-rtems support.
17923 * config/m32r/rtems.h: Remove.
17924
17925 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
17926
17927 * config.gcc: Remove h8300-rtems support.
17928 * config/h8300/rtems.h: Remove.
17929 * config/h8300/t-rtems: Remove.
17930
17931 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
17932
17933 * config.gcc: Remove support for knetbsd.
17934 * configure.ac: Likewise.
17935 * config/i386/knetbsd-gnu.h: Remove. * config/i386/knetbsd-gnu64.h: Remove.
17936 * config/knetbsd-gnu.h: Remove.
17937 * configure: Regenerate.
17938
17939 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
17940
17941 * config.gcc: Remove support for openbsd 2 and 3.
17942 * config/openbsd-oldgas.h: Remove.
17943
17944 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
17945
17946 * config.gcc: Remove interix support.
17947 * config/i386/i386-interix.h: Remove.
17948 * config/i386/interix.opt: Remove.
17949 * config/i386/t-interix: Remove.
17950 * configure: Regenerate.
17951 * configure.ac: Remove interix support.
17952 * doc/install.texi: Remove interix documentation.
17953
17954 2016-06-21 Kelvin Nilsen <kelvin@gcc.gnu.org>
17955
17956 * config/rs6000/rs6000.h: Add conditional preprocessing directives
17957 to disable Power9-specific compiler features if HAVE_AS_POWER9 is
17958 not defined.
17959
17960 2016-06-21 Eric Botcazou <ebotcazou@adacore.com>
17961
17962 * tree.c (verify_type_variant): Skip TYPE_SIZE and TYPE_SIZE_UNIT if
17963 they are both PLACEHOLDER_EXPRs.
17964
17965 2016-06-21 Michael Meissner <meissner@linux.vnet.ibm.com>
17966
17967 * stor-layout.c (layout_type): Move setting complex MODE to
17968 layout_type, instead of setting it ahead of time by the caller.
17969 * tree.c (build_complex_type): Likewise.
17970
17971 2016-06-21 Martin Liska <mliska@suse.cz>
17972
17973 * predict.c (force_edge_cold): Replace imposisble with
17974 impossible.
17975
17976 2016-06-21 Ilya Verbin <ilya.verbin@intel.com>
17977
17978 * config/i386/i386.c (ix86_emit_swsqrtsf): Emit vrsqrt28ps.
17979 * config/i386/sse.md (define_expand "rsqrtv16sf2"): New.
17980
17981 2016-06-21 Ilya Verbin <ilya.verbin@intel.com>
17982
17983 * config/i386/i386.c (ix86_emit_swdivsf): Emit vrcp28ps.
17984
17985 2016-06-21 H.J. Lu <hongjiu.lu@intel.com>
17986 Ilya Enkovich <ilya.enkovich@intel.com>
17987
17988 PR target/71549
17989 * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
17990 New member function to convert V1TImode register to SUBREG
17991 TImode in debug insn.
17992 (timode_scalar_chain::convert_insn): Call fix_debug_reg_uses
17993 after changing register mode to V1TImode.
17994
17995 2016-06-21 Virendra Pathak <virendra.pathak@broadcom.com>
17996
17997 * config/aarch64/aarch64-cores.def (vulcan): New core.
17998 * config/aarch64/aarch64-tune.md: Regenerate.
17999 * doc/invoke.texi: Document vulcan as an available option.
18000
18001 2016-06-21 Eric Botcazou <ebotcazou@adacore.com>
18002
18003 * cse.c (canon_asm_operands): New function extracted from...
18004 (canonicalize_insn): ...here. Call it to canonicalize an ASM_OPERANDS
18005 either standalone or member of a PARALLEL.
18006
18007 2016-06-21 Georg-Johann Lay <avr@gjlay.de>
18008
18009 PR target/30417
18010 * config/avr/gen-avr-mmcu-specs.c (print_mcu):
18011 [*link_data_start]: Wrap -Tdata into %{!Tdata:...}.
18012 [*link_text_start]: Wrap -Ttext into %{!Ttext:...}.
18013
18014 2016-06-21 Georg-Johann Lay <avr@gjlay.de>
18015
18016 PR target/71103
18017 * config/avr/avr.md (movqi): Only handle loading subreg:qi of
18018 constant addresses if can_create_pseudo_p.
18019
18020 2016-06-21 Jakub Jelinek <jakub@redhat.com>
18021
18022 PR tree-optimization/71588
18023 * tree-ssa-strlen.c (valid_builtin_call): New function.
18024 (adjust_last_stmt, handle_builtin_memset, strlen_optimize_stmt): Use
18025 it.
18026
18027 2016-06-20 Jakub Jelinek <jakub@redhat.com>
18028
18029 PR middle-end/71581
18030 * tree-ssa-uninit.c (warn_uninit): If EXPR and VAR are NULL,
18031 see if T isn't anonymous SSA_NAME with COMPLEX_EXPR created
18032 for conversion of scalar user var to complex type and use the
18033 underlying SSA_NAME_VAR in that case. If EXPR is still NULL,
18034 punt.
18035
18036 PR rtl-optimization/71591
18037 * toplev.c (toplev::run_self_tests): If no_backend, complain and
18038 don't run any tests.
18039
18040 2016-06-20 Hans-Peter Nilsson <hp@axis.com>
18041
18042 PR target/71571
18043 * config/cris/cris.c (cris_asm_output_mi_thunk): Add missing "ba"
18044 delay-slot "nop" for PIC with CRIS v32. Also add missing leading
18045 space for PIC with non-v32 and the common non-PIC "jump".
18046
18047 2016-06-20 Jakub Jelinek <jakub@redhat.com>
18048
18049 PR target/71559
18050 * config/i386/i386.c (ix86_fp_cmp_code_to_pcmp_immediate): Fix up
18051 returned values and add UN*/LTGT/*ORDERED cases with values matching
18052 D operand modifier on vcmp for AVX.
18053
18054 2016-06-20 Wilco Dijkstra <wdijkstr@arm.com>
18055
18056 * config/aarch64/aarch64.opt
18057 (mpc-relative-literal-loads): Rename internal option name.
18058 * config/aarch64/aarch64.c
18059 (aarch64_nopcrelative_literal_loads): Rename to
18060 aarch64_pcrelative_literal_loads.
18061 (aarch64_expand_mov_immediate): Likewise.
18062 (aarch64_secondary_reload): Likewise.
18063 (aarch64_can_use_per_function_literal_pools_p): Likewise.
18064 (aarch64_override_options_after_change_1): Rename and simplify logic.
18065 (aarch64_classify_symbol): Merge large model checks into switch,
18066 remove pc-relative load check.
18067
18068 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
18069
18070 * config/arm/aarch-cost-tables.h (cortexa53_extra_costs): Make FP
18071 costs relative to the cost of a register move.
18072
18073 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
18074
18075 * config/aarch64/arm_neon.h (vcvt_n_f64_s64): New.
18076 (vcvt_n_f64_u64): Likewise.
18077 (vcvt_n_s64_f64): Likewise.
18078 (vcvt_n_u64_f64): Likewise.
18079 (vcvt_f64_s64): Likewise.
18080 (vrecpe_f64): Likewise.
18081 (vcvt_f64_u64): Likewise.
18082 (vrecps_f64): Likewise.
18083
18084 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
18085
18086 * config/aarch64/aarch64.md
18087 (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3): Add attributes to
18088 iterators.
18089 (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>3): Likewise. Correct
18090 attributes.
18091 * config/aarch64/aarch64-builtins.c
18092 (aarch64_types_binop_uss_qualifiers): Delete.
18093 (TYPES_BINOP_USS): Likewise.
18094 (aarch64_types_binop_sus_qualifiers): Likewise.
18095 (TYPES_BINOP_SUS): Likewise.
18096 (aarch64_types_fcvt_from_unsigned_qualifiers): New.
18097 (TYPES_FCVTIMM_SUS): Likewise.
18098 * config/aarch64/aarch64-simd-builtins.def (scvtf): Use SHIFTIMM
18099 rather than BINOP.
18100 (ucvtf): Use FCVTIMM_SUS rather than BINOP_SUS.
18101 (fcvtzs): Use SHIFTIMM rather than BINOP.
18102 (fcvtzu): Use SHIFTIMM_USS rather than BINOP_USS.
18103
18104 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
18105
18106 * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): Make FP
18107 costs relative to the cost of a register move.
18108
18109 2016-06-20 Wilco Dijkstra <wdijkstr@arm.com>
18110
18111 * config/aarch64/aarch64.c (aarch64_modes_tieable_p):
18112 Allow scalar/single vector modes to be tieable.
18113
18114 2016-06-20 Wilco Dijkstra <wdijkstr@arm.com>
18115
18116 * config/arm/cortex-a57.md (cortex_a57_fp_cpys): Add fcsel.
18117
18118 2016-06-20 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18119
18120 * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of
18121 "alignement".
18122 * tree.h (TYPE_ALIGN): Likewise.
18123
18124 2016-06-20 Georg-Johann Lay <avr@gjlay.de>
18125
18126 PR target/71103
18127 * config/avr/avr.md (movqi): Handle loading subreg:qi (const).
18128
18129 2016-06-20 Georg-Johann Lay <avr@gjlay.de>
18130
18131 * config/avr/avr.c (avr_print_operand): Fix "format not a string
18132 literal" build warnings.
18133 (avr_print_operand_address): Dito.
18134
18135 2016-06-19 David Edelsohn <dje.gcc@gmail.com>
18136
18137 PR target/71375
18138 * config/rs6000/aix51.h (TARGET_EXTRA_BUILTINS): Define as 0.
18139 * config/rs6000/aix43.h (TARGET_EXTRA_BUILTINS): Same.
18140
18141 2016-06-18 John David Anglin <danglin@gcc.gnu.org>
18142
18143 * config/pa/pa.h (TARGET_LONG_PIC_PCREL_CALL): Remove.
18144
18145 2016-06-18 Eric Botcazou <ebotcazou@adacore.com>
18146
18147 PR bootstrap/71435
18148 * reload1.c (reload): Pass 0 to finish_spills when called because
18149 update_eliminables_and_spill returns true and remove did_spill.
18150 (finish_spills): Adjust comment and document GLOBAL parameter.
18151
18152 2016-06-17 DJ Delorie <dj@redhat.com>
18153
18154 PR target/71338
18155 * config/rl78/rl78-expand.c (umulqihi3): Enable for G10.
18156 * config/rl78/rl78-virtual.c (umulhi3_shift_virt): Likewise.
18157 (umulqihi3_virt): Likewise.
18158 * config/rl78/rl78-real.c (umulhi3_shift_real): Likewise.
18159 (umulqihi3_real): Likewise.
18160
18161 2016-06-17 Martin Liska <mliska@suse.cz>
18162
18163 * tree-ssa-reassoc.c (transform_add_to_multiply): Use auto_vec.
18164
18165 2016-06-17 Martin Liska <mliska@suse.cz>
18166
18167 * predict.def: PRED_LOOP_EXIT from 92 to 85.
18168
18169 2016-06-17 James Greenhalgh <james.greenhalgh@arm.com>
18170
18171 * config/arm/arm_neon.h (vadd_f32): replace __FAST_MATH with
18172 __FAST_MATH__.
18173 (vaddq_f32): Likewise.
18174 (vmul_f32): Likewise.
18175 (vmulq_f32): Likewise.
18176 (vsub_f32): Likewise.
18177 (vsubq_f32): Likewise.
18178
18179 2016-06-17 Bin Cheng <bin.cheng@arm.com>
18180
18181 PR tree-optimization/71347
18182 * tree-ssa-loop-ivopts.c (determine_group_iv_cost_address): Compute
18183 cost for all uses in group.
18184
18185 2016-06-17 Bin Cheng <bin.cheng@arm.com>
18186
18187 * tree-vect-loop.c (vect_create_epilog_for_reduction): Only
18188 insert gimple seq if it's not empty.
18189
18190 2016-06-17 Bin Cheng <bin.cheng@arm.com>
18191
18192 * tree-vectorizer.h (struct dr_with_seg_len): Remove class
18193 member OFFSET.
18194 * tree-vect-data-refs.c (operator ==): Handle DR_OFFSET directly,
18195 rather than OFFSET.
18196 (comp_dr_with_seg_len_pair): Ditto.
18197 (vect_prune_runtime_alias_test_list): Ditto. Also Canonicalize
18198 struct dr_with_seg_len_pair against DR_OFFSET.
18199 * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks): Handle
18200 DR_OFFSET directly.
18201
18202 2016-06-17 Szabolcs Nagy <szabolcs.nagy@arm.com>
18203
18204 * config/aarch64/geniterators.sh: Handle parenthesised conditions.
18205
18206 2016-06-16 John David Anglin <danglin@gcc.gnu.org>
18207
18208 * config/pa/pa.c (pa_output_pic_pcrel_sequence): New.
18209 (pa_output_lbranch): Use pa_output_pic_pcrel_sequence.
18210 (pa_output_millicode_call): Likewise.
18211 (pa_output_call): Likewise.
18212 (pa_output_indirect_call): Likewise.
18213 (pa_asm_output_mi_thunk): Likewise.
18214
18215 2016-06-16 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
18216
18217 * doc/invoke.texi (x86 Options): Fix -mno-fp-ret-in-387 typo.
18218
18219 2016-06-16 Martin Liska <mliska@suse.cz>
18220
18221 * predict.c (combine_predictions_for_insn): When we find a first
18222 match predictor, we should consider just predictors with
18223 PRED_FLAG_FIRST_MATCH. Print either first match (if any) or
18224 DS theory predictor.
18225 (combine_predictions_for_bb): Likewise.
18226
18227 2016-06-16 Jakub Jelinek <jakub@redhat.com>
18228
18229 * gimplify.c (gimplify_scan_omp_clauses): Handle COMPONENT_REFs
18230 with base of reference to struct.
18231
18232 2016-06-16 Uros Bizjak <ubizjak@gmail.com>
18233
18234 * doc/invoke.texi (x86 Options): Document -m80387 and -mhard-float.
18235
18236 2016-06-16 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
18237
18238 PR target/71151
18239 * config/avr/avr.c (avr_asm_init_sections): Remove setup of
18240 progmem_swtable_section.
18241 (progmem_swtable_section): Remove.
18242 (avr_asm_function_rodata_section): Remove.
18243 (TARGET_ASM_FUNCTION_RODATA_SECTION): Remove.
18244 * config/avr/avr.h (JUMP_TABLES_IN_TEXT_SECTION: Define to 1.
18245
18246 2016-06-16 Jocelyn Mayer <l_indien@magic.fr>
18247
18248 * config/i386/driver-i386.c (host_detect_local_cpu): Set
18249 PROCESSOR_K8 for signature_CENTAUR_ebx with has_longmode.
18250 <case PROCESSOR_K8>: Pass nano-3000, nano, eden-x2 or k8 for
18251 signature_CENTAUR_ebx.
18252 * config/i386/i386.c (ix86_option_override_internal): Add
18253 definitions for VIA c7, samuel-2, nehemiah, esther, eden-x2, eden-x4,
18254 nano, nano-1000, nano-2000, nano-3000, nano-x2 and nano-x4.
18255 * doc/invoke.texi (x86 Options): Document new VIA -march entries.
18256
18257 2016-06-16 Martin Liska <mliska@suse.cz>
18258
18259 * predict.def: Add fortran loop preheader predictor.
18260 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Properly
18261 fold IFN_BUILTIN_EXPECT with a known constant argument.
18262
18263 2016-06-16 Martin Liska <mliska@suse.cz>
18264
18265 * predict.def: Add 'Fortran' to display text of all
18266 PRED_FORTRAN_* predictors.
18267
18268 2016-06-16 Uros Bizjak <ubizjak@gmail.com>
18269
18270 PR target/71242
18271 * config/ia64/ia64.c (enum ia64_builtins) [IA64_BUILTIN_NANQ]: New.
18272 [IA64_BUILTIN_NANSQ]: Ditto.
18273 (ia64_fold_builtin): New function.
18274 (TARGET_FOLD_BUILTIN): New define.
18275 (ia64_init_builtins) Declare const_string_type node.
18276 Add __builtin_nanq and __builtin_nansq builtin functions.
18277 (ia64_expand_builtin): Handle IA64_BUILTIN_NANQ and IA64_BUILTIN_NANSQ.
18278
18279 2016-06-16 Nick Clifton <nickc@redhat.com>
18280
18281 * config/msp430/msp430-opts.h (msp430_hwmult_types): Add
18282 MSP430_HWMULT_ prefix to enum values.
18283 (msp430_regions): Add MSP430_REGION_ prefix to enum values.
18284 * config/msp430/msp430.c: Update use of enum values.
18285 * config/msp430/msp430.md: Likewise.
18286 * config/msp430/msp430.opt: Likewise.
18287
18288 2016-06-16 Jan Hubicka <hubicka@ucw.cz>
18289
18290 * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Fix estimation
18291 of comparsions in the last iteration.
18292
18293 2016-06-16 Claudiu Zissulescu <claziss@synopsys.com>
18294 Joern Rennecke <joern.rennecke@embecosm.com>
18295
18296 * config/arc/arc.c (arc_print_operand_address): Handle pc-relative
18297 addresses.
18298 (arc_needs_pcl_p): Add GOTOFFPC.
18299 (arc_legitimate_pic_addr_p): Likewise.
18300 (arc_output_pic_addr_const): Likewise.
18301 (arc_legitimize_pic_address): Generate a pc-relative address using
18302 GOTOFFPC.
18303 (arc_output_libcall): Use @pcl syntax.
18304 (arc_delegitimize_address_0): Delegitimize ARC_UNSPEC_GOTOFFPC.
18305 * config/arc/arc.md ("unspec"): Add ARC_UNSPEC_GOTOFFPC.
18306 (*movsi_insn): Use @pcl syntax.
18307 (doloop_begin_i): Likewise.
18308
18309 2016-06-16 Martin Liska <mliska@suse.cz>
18310
18311 * predict.def: Define a new predictor.
18312
18313 2016-06-16 Claudiu Zissulescu <claziss@synopsys.com>
18314
18315 * config/arc/arc.opt (mtp-regno): Update text.
18316
18317 2016-06-16 Renlin Li <renlin.li@arm.com>
18318
18319 * config/aarch64/aarch64.c (aarch64_legitimize_address): Fix a typo.
18320
18321 2016-06-16 Jakub Jelinek <jakub@redhat.com>
18322
18323 PR target/71554
18324 * config/i386/i386.md (setcc + movzbl peephole2): Use reg_set_p.
18325 (setcc + and peephole2): Likewise.
18326
18327 PR rtl-optimization/71532
18328 * cse.c (cse_insn): For const/pure calls, invalidate argument passing
18329 memory slots.
18330
18331 2016-06-15 Michael Meissner <meissner@linux.vnet.ibm.com>
18332
18333 * config/rs6000/vsx.md (VSINT_84): Add DImode to enable loading
18334 DImode constants with XXSPLTIB in vector registers.
18335 (vsx_extract_<mode>, V2DImode/V2DFmode): Combine both
18336 vsx_extract_<mode>_internal{1,2} into a single insn that handles
18337 direct move (both ISA 2.07 and ISA 3.0 versions), and optimizes
18338 extraction of the element at the top of the register as a scalar
18339 value.
18340 (vsx_extract_<mode>_internal1): Likewise.
18341 (vsx_extract_<mode>_internal2): Likewise.
18342 * config/rs6000/constraints.md (wi constraint): Remove a comment
18343 about DImode not being allowed in Altivec registers.
18344 (wB constraint): New constraint for constants that can be
18345 generated in Altivec registers with VSPLTISW/VUPKHSW.
18346 * config/rs6000/predicates.md (xxspltib_constant_split): Update
18347 comments.
18348 (xxspltib_constant_nosplit): Likewise.
18349 * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Add
18350 support for -mupper-regs-di to enable DImode to go into Altivec
18351 registers.
18352 (POWERPC_MASKS): Likewise.
18353 (power7 cpu): Likewise.
18354 * config/rs6000/rs6000.opt (-mupper-regs-di): Likewise.
18355 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Add support
18356 for DImode being allowed in Altivec registers. Update wi/wj
18357 constraints. Set scalar_in_vmx_p flag.
18358 (rs6000_option_override_internal): Add checks for -mupper-regs-di.
18359 (xxspltib_constant_p): Allow CONST_INT's with VOIDmode. Don't
18360 return true if we could use VSPLTISW/VUPKHSW instead of XXSPLTIB.
18361 (rs6000_opt_masks): Add -mupper-regs-di.
18362 * config/rs6000/rs6000.md (lfiwax): Update clobbers that don't use
18363 direct move to use wi and not wj.
18364 (lfiwzx): Likewise.
18365 (floatsi<mode>2_lfiwax_mem): Combine alternatives into a single
18366 alternative.
18367 (floatunssi<mode>2_lfiwzx_mem): Likewise.
18368 (fix_trunc<mode>di2_fctidz): Change second alternative to allow
18369 any VSX register, instead of just Altivec registers, to allow
18370 either operand to be an Altivec register or both.
18371 (fixuns_trunc<mode>di2_fctiduz): Likewise.
18372 (movdi_internal32): Add support for -mupper-regs-di. Add support
18373 to load constants via XXSPLTIB or VSPLTISW. Add spacing to allow
18374 the alternatives and attributes to be lined up to be easier to
18375 read.
18376 (movdi_internal64): Likewise.
18377 (64-bit DImode splitters): Change predicates to only split loading
18378 up GPR registers. Add splits for using XXSPLTIB or VSPLTISW to
18379 load constants in ISA 3.0 or ISA 2.07 respectively.
18380 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
18381 -mupper-regs-di. Update -mupper-regs-df and -mupper-regs-sf to
18382 mention -mcpu=power9 sets these options.
18383 * doc/md.texi (PowerPC and IBM RS6000 constraints): Document the
18384 wB constraint.
18385
18386 2016-06-15 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
18387
18388 PR target/67353
18389 * config/avr/avr.c (avr_set_current_function): Warn misspelled
18390 interrupt/ signal handler if -Wmisspelled-isr flag is enabled.
18391 * config/avr/avr.opt (Wmisspelled-isr): New warning flag. Enabled
18392 by default to warn misspelled interrupt/ signal handler.
18393 * doc/invoke.texi (AVR Options): Document it. Update description
18394 for -nodevicelib option.
18395
18396 2016-06-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18397
18398 * config/aarch64/aarch64-simd.md (aarch64_<sur>shll_n<mode>): Clean
18399 up parentheses. Use GET_MODE_UNIT_BITSIZE.
18400 (aarch64_<sur>shll2_n<mode>): Likewise.
18401
18402 2016-06-15 Ilya Enkovich <ilya.enkovich@intel.com>
18403
18404 PR middle-end/71529
18405 * ipa-chkp.c (chkp_build_instrumented_fndecl): Fix
18406 DECL_CONTEXT for copied arguments.
18407
18408 2016-06-15 Alan Hayward <alan.hayward@arm.com>
18409
18410 PR tree-optimization/71483
18411 * tree-vect-loop.c (vectorizable_live_operation): Pick correct index
18412 for slp
18413
18414 2016-06-15 Martin Liska <mliska@suse.cz>
18415
18416 * predict.c (tree_predict_by_opcode): Call predict_edge_def
18417 instead of predict_edge w/o a probability.
18418
18419 2016-06-15 Alan Hayward <alan.hayward@arm.com>
18420
18421 PR tree-optimization/71439
18422 * tree-vect-loop.c (vect_analyze_loop_operations): Additional check for
18423 live PHIs.
18424
18425 2016-06-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18426
18427 * ifcvt.c (bb_ok_for_noce_multiple_sets): Allow simple lowpart
18428 register subregs in SET_SRC.
18429
18430 2016-06-15 Richard Biener <rguenther@suse.de>
18431
18432 * tree-vect-stmts.c (vectorizable_store): Remove strided grouped
18433 store restrictions.
18434
18435 2016-06-15 Richard Biener <rguenther@suse.de>
18436
18437 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Do
18438 not consider dependences between accesses that belong to the
18439 same group.
18440 (vect_analyze_data_ref_dependences): Do not analyze read-read
18441 or self-dependences.
18442
18443 2016-06-14 David Malcolm <dmalcolm@redhat.com>
18444
18445 * spellcheck-tree.c: Include spellcheck-tree.h rather than
18446 spellcheck.h.
18447 (find_closest_identifier): Reimplement in terms of
18448 best_match<tree,tree>.
18449 * spellcheck-tree.h: New file.
18450 * spellcheck.c (struct edit_distance_traits<const char *>): New
18451 struct.
18452 (find_closest_string): Reimplement in terms of
18453 best_match<const char *, const char *>.
18454 * spellcheck.h (levenshtein_distance): Move prototype of tree-based
18455 overload to spellcheck-tree.h.
18456 (find_closest_identifier): Likewise.
18457 (struct edit_distance_traits<T>): New template.
18458 (class best_match): New class.
18459
18460 2016-06-14 David Malcolm <dmalcolm@redhat.com>
18461
18462 * selftest-run-tests.c (selftest::run_tests): Call
18463 selftest::spellcheck_tree_c_tests.
18464 * selftest.h (selftest::spellcheck_tree_c_tests): New decl.
18465 * spellcheck-tree.c: Include selftest.h and stringpool.h.
18466 (selftest::test_find_closest_identifier): New function.
18467 (selftest::spellcheck_tree_c_tests): New function.
18468 * spellcheck.c (selftest::test_find_closest_string): Verify that
18469 the order of the vec does not affect the results for this case.
18470 (selftest::test_data): New array.
18471 (selftest::test_metric_conditions): New function.
18472 (selftest::spellcheck_c_tests): Add a test of case-comparison.
18473 Call selftest::test_metric_conditions.
18474
18475 2016-06-14 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
18476
18477 * config/rs6000/rs6000-builtin.def (commentary): Typo.
18478 (BU_P9_MISC_1): Likewise.
18479 (BU_P9_64BIT_MISC_0): Likewise.
18480 (BU_P9_MISC_0): Likewise.
18481
18482 2016-06-14 David Malcolm <dmalcolm@redhat.com>
18483
18484 * gcc-rich-location.c
18485 (gcc_rich_location::add_fixit_misspelled_id): New method.
18486 * gcc-rich-location.h
18487 (gcc_rich_location::add_fixit_misspelled_id): Add decl.
18488
18489 2016-06-14 Andreas Tobler <andreast@gcc.gnu.org>
18490
18491 * config/arm/freebsd.h: Only enable unaligned access for armv6 on
18492 FreeBSD 11 and above.
18493
18494 2016-06-14 Uros Bizjak <ubizjak@gmail.com>
18495
18496 * config/i386/i386.md (signbittf2): Emit sse_movmskps for TARGET_SSE.
18497
18498 2016-06-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18499
18500 * expmed.h: Close parenthesis in "at your option" in copyright
18501 boilerplate.
18502 * lower-subreg.h: Likewise.
18503
18504 2016-06-14 Richard Biener <rguenther@suse.de>
18505
18506 PR middle-end/71526
18507 * genmatch.c (expr::gen_transform): Use in_type for comparisons
18508 if available.
18509
18510 2015-06-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18511
18512 * config/aarch64/aarch64.c (aarch64_mask_and_shift_for_ubfiz_p):
18513 New function.
18514 (aarch64_rtx_costs): Use it. Rewrite CONST_INT_P (op1) case to handle
18515 mask+shift version.
18516 * config/aarch64/aarch64-protos.h (aarch64_mask_and_shift_for_ubfiz_p):
18517 New prototype.
18518 * config/aarch64/aarch64.md (*andim_ashift<mode>_bfiz): Replace
18519 matching condition with aarch64_mask_and_shift_for_ubfiz_p.
18520
18521 2016-06-14 Richard Biener <rguenther@suse.de>
18522
18523 PR tree-optimization/71522
18524 * tree-ssa.c (non_rewritable_lvalue_p): Do not rewrite non-float
18525 copying into float copying.
18526
18527 2016-06-14 Jakub Jelinek <jakub@redhat.com>
18528
18529 PR tree-optimization/71520
18530 * tree-ssa-tail-merge.c (find_duplicate): Handle labels.
18531 (replace_block_by): Move user labels from bb1 to bb2.
18532
18533 2016-06-14 Richard Biener <rguenther@suse.de>
18534
18535 PR middle-end/71310
18536 PR bootstrap/71510
18537 * expr.h (get_bit_range): Declare.
18538 * expr.c (get_bit_range): Export.
18539 * fold-const.c (optimize_bit_field_compare): Use get_bit_range and
18540 word_mode again to constrain the bitfield access.
18541
18542 2016-06-14 Richard Biener <rguenther@suse.de>
18543
18544 PR tree-optimization/71521
18545 * tree-vrp.c (extract_range_from_binary_expr_1): Guard
18546 division int_const_binop against zero divisor.
18547
18548 2016-06-13 Uros Bizjak <ubizjak@gmail.com>
18549
18550 * config/i386/i386.md (signbittf2): New expander.
18551 * config/i386/sse.md (ptesttf2): New insn pattern.
18552
18553 2016-06-13 David Malcolm <dmalcolm@redhat.com>
18554
18555 PR bootstrap/71481
18556 * input.c (selftest::test_reading_source_line): Avoid reading from
18557 __FILE__ by creating a tempfile with known content and reading
18558 from that instead.
18559
18560 2016-06-13 David Malcolm <dmalcolm@redhat.com>
18561
18562 * pretty-print.c (assert_pp_format_colored): Skip the test if
18563 GCC_COLORS is set.
18564 (test_pp_format): Remove comment about GCC_COLORS.
18565
18566 2016-06-13 David Malcolm <dmalcolm@redhat.com>
18567
18568 * input.c (test_reading_source_line): Use SELFTEST_LOCATION.
18569 * pretty-print.c (assert_pp_format_va): Add location param and use
18570 it with ASSERT_STREQ_AT.
18571 (assert_pp_format): Add location param and pass it to
18572 assert_pp_format_va.
18573 (assert_pp_format_colored): Likewise.
18574 (ASSERT_PP_FORMAT_1): New.
18575 (ASSERT_PP_FORMAT_2): New.
18576 (ASSERT_PP_FORMAT_3): New.
18577 (test_pp_format): Provide SELFTEST_LOCATION throughout, either
18578 explicitly, or implicitly via the above macros.
18579 * selftest.c (selftest::pass): Use a selftest::location rather
18580 than file and line.
18581 (selftest::fail): Likewise. Print the function name.
18582 (selftest::fail_formatted): Likewise.
18583 (selftest::assert_streq): Use a selftest::location rather than
18584 file and line.
18585 * selftest.h (selftest::location): New struct.
18586 (SELFTEST_LOCATION): New macro.
18587 (selftest::pass): Accept a const location & rather than file
18588 and line.
18589 (selftest::fail): Likewise.
18590 (selftest::fail_formatted): Likewise.
18591 (selftest::assert_streq): Likewise.
18592 (ASSERT_TRUE): Update for above changes, using SELFTEST_LOCATION.
18593 (ASSERT_FALSE): Likewise.
18594 (ASSERT_EQ): Likewise.
18595 (ASSERT_NE): Likewise.
18596 (ASSERT_STREQ): Likewise.
18597 (ASSERT_PRED1): Likewise.
18598 (ASSERT_STREQ_AT): New macro.
18599
18600 2016-06-13 David Malcolm <dmalcolm@redhat.com>
18601
18602 * selftest.c (selftest::fail_formatted): New function.
18603 (selftest::assert_streq): New function.
18604 * selftest.h (selftests::fail_formatted): New decl.
18605 (selftest::assert_streq): New decl.
18606 (ASSERT_STREQ): Reimplement in terms of selftest::assert_streq.
18607
18608 2016-06-13 Jeff Law <law@redhat.com>
18609
18610 PR tree-optimization/71403
18611 * tree-ssa-threadbackward.c
18612 (convert_and_register_jump_thread_path): No longer accept reference
18613 to path. Do not pop items off the path anymore.
18614 (fsm_find_control_statement_thread_paths): Do not allow threading
18615 to a deeper loop nest. Pop the last item off the path here rather
18616 than in convert_and_register_jump_thread_path.
18617
18618 2016-06-13 Evandro Menezes <e.menezes@samsung.com>
18619 Wilco Dijkstra <Wilco.Dijkstra@arm.com>
18620
18621 [AArch64] Emit division using the Newton series
18622
18623 * config/aarch64/aarch64-protos.h
18624 (cpu_approx_modes): Add new member "division".
18625 (aarch64_emit_approx_div): Declare new function.
18626 * config/aarch64/aarch64.c
18627 (generic_approx_modes): New member "division".
18628 (exynosm1_approx_modes): Likewise.
18629 (xgene1_approx_modes): Likewise.
18630 (aarch64_emit_approx_div): Define new function.
18631 * config/aarch64/aarch64.md ("div<mode>3"): New expansion.
18632 * config/aarch64/aarch64-simd.md ("div<mode>3"): Likewise.
18633 * config/aarch64/aarch64.opt (-mlow-precision-div): Add new option.
18634 * doc/invoke.texi (-mlow-precision-div): Describe new option.
18635
18636 2016-06-13 Evandro Menezes <e.menezes@samsung.com>
18637 Wilco Dijkstra <wilco.dijkstra@arm.com>
18638
18639 [AArch64] Emit square root using the Newton series
18640
18641 * config/aarch64/aarch64-protos.h
18642 (aarch64_emit_approx_rsqrt): Replace with new function
18643 "aarch64_emit_approx_sqrt".
18644 (cpu_approx_modes): New member "sqrt".
18645 * config/aarch64/aarch64.c
18646 (generic_approx_modes): New member "sqrt".
18647 (exynosm1_approx_modes): Likewise.
18648 (xgene1_approx_modes): Likewise.
18649 (aarch64_emit_approx_rsqrt): Replace with new function
18650 "aarch64_emit_approx_sqrt".
18651 (aarch64_override_options_after_change_1): Handle new option.
18652 * config/aarch64/aarch64-simd.md
18653 (rsqrt<mode>2): Use new function instead.
18654 (sqrt<mode>2): New expansion and insn definitions.
18655 * config/aarch64/aarch64.md: Likewise.
18656 * config/aarch64/aarch64.opt
18657 (mlow-precision-sqrt): Add new option description.
18658 * doc/invoke.texi (mlow-precision-sqrt): Likewise.
18659
18660 2016-06-13 Evandro Menezes <e.menezes@samsung.com>
18661
18662 [AArch64] Add more choices for the reciprocal square root approximation
18663
18664 Allow a target to prefer such operation depending on the operation mode.
18665
18666 * config/aarch64/aarch64-protos.h
18667 (AARCH64_APPROX_MODE): New macro.
18668 (AARCH64_APPROX_{NONE,ALL}): Likewise.
18669 (cpu_approx_modes): New structure.
18670 (tune_params): New member "approx_modes".
18671 * config/aarch64/aarch64-tuning-flags.def
18672 (AARCH64_EXTRA_TUNE_APPROX_RSQRT): Remove macro.
18673 * config/aarch64/aarch64.c
18674 (generic_approx_modes): New core "cpu_approx_modes" structure.
18675 (exynosm1_approx_modes): Likewise.
18676 (xgene1_approx_modes): Likewise.
18677 (generic_tunings): New member "approx_modes".
18678 (cortexa35_tunings): Likewise.
18679 (cortexa53_tunings): Likewise.
18680 (cortexa57_tunings): Likewise.
18681 (cortexa72_tunings): Likewise.
18682 (exynosm1_tunings): Likewise.
18683 (thunderx_tunings): Likewise.
18684 (xgene1_tunings): Likewise.
18685 (use_rsqrt_p): New argument for the mode and use new member from
18686 "tune_params".
18687 (aarch64_builtin_reciprocal): Devise mode from builtin.
18688 (aarch64_optab_supported_p): New argument for the mode.
18689 * doc/invoke.texi (-mlow-precision-recip-sqrt): Reword description.
18690
18691 2016-06-13 Kelvin Nilsen <kelvin@gcc.gnu.org>
18692
18693 * config/rs6000/rs6000.h (RS6000_BTM_COMMON): Add the
18694 RS6000_BTM_MODULO flag into the set of flags that are considered
18695 to be part of the common configuration.
18696
18697 2016-06-13 Kelvin Nilsen <kelvin@gcc.gnu.org>
18698
18699 * config/rs6000/altivec.h (vec_absd): New macro for vector absolute
18700 difference unsigned.
18701 (vec_absdb): New macro for vector absolute difference unsigned
18702 byte.
18703 (vec_absdh): New macro for vector absolute difference unsigned
18704 half-word.
18705 (vec_absdw): New macro for vector absolute difference unsigned word.
18706 * config/rs6000/altivec.md (UNSPEC_VADU): New value.
18707 (vadu<mode>3): New insn.
18708 (*p9_vadu<mode>3): New insn.
18709 * config/rs6000/rs6000-builtin.def (vadub): New built-in
18710 definition.
18711 (vaduh): New built-in definition.
18712 (vaduw): New built-in definition.
18713 (vadu): New overloaded built-in definition.
18714 (vadub): New overloaded built-in definition.
18715 (vaduh): New overloaded built-in definition.
18716 (vaduw): New overloaded built-in definition.
18717 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
18718 overloaded vector absolute difference unsigned functions.
18719 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
18720 the ISA 3.0 vector absolute difference unsigned built-in functions.
18721
18722 2016-06-13 Eric Botcazou <ebotcazou@adacore.com>
18723
18724 * tree-ssa-sccvn.c (vn_reference_lookup_3): Use a uniform test and
18725 update shared_lookup_references only once after changing operands.
18726
18727 2016-06-13 Thomas Schwinge <thomas@codesourcery.com>
18728
18729 PR middle-end/71373
18730 * tree-nested.c (convert_nonlocal_omp_clauses)
18731 (convert_local_omp_clauses): Document missing OMP_CLAUSE_*.
18732
18733 * tree-cfg.c (edge_to_cases_cleanup): Fix CASE_CHAIN typo.
18734 * tree.def (CASE_LABEL_EXPR): Likewise.
18735
18736 2016-06-13 Bernd Edlinger <bernd.edlinger@hotmail.de>
18737
18738 PR bootstrap/71481
18739 * input.c (test_builtins): Fix an assertion.
18740
18741 2016-06-13 Uros Bizjak <ubizjak@gmail.com>
18742
18743 * config/i386/i386.md (paritydi2): Use ix86_expand_setcc.
18744 (paritysi2): Ditto.
18745 (isinfxf2): Ditto.
18746 (isinf<mode>2): Ditto.
18747
18748 2016-06-13 Uros Bizjak <ubizjak@gmail.com>
18749
18750 * ggc-tests.c (test_finalization): Only test need_finalization_p
18751 for GCC_VERSION >= 4003.
18752
18753 2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
18754
18755 * config/s390/vecintrin.h: Fix file description in comment.
18756
18757 2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
18758
18759 * config/s390/s390-builtin-types.def: Change builtin type naming
18760 scheme to match builtin-types.def.
18761
18762 2016-06-13 Marc Glisse <marc.glisse@inria.fr>
18763
18764 * fold-const.c (optimize_minmax_comparison): Remove.
18765 (fold_comparison): Remove call to the above.
18766 * match.pd (MIN (X, Y) == X, MIN (X, 5) == 0, MIN (X, C1) < C2):
18767 New transformations.
18768
18769 2016-06-13 Alan Hayward <alan.hayward@arm.com>
18770
18771 PR tree-optimization/71416
18772 * tree-vect-loop.c (vectorizable_live_operation): Let worklist have
18773 multiple entries
18774
18775 2016-06-13 Martin Liska <mliska@suse.cz>
18776
18777 * predict.c (enum predictor_reason): Prefix enum with REASON_.
18778 (combine_predictions_for_insn): Likewise.
18779 (prune_predictions_for_bb): Likewise.
18780 (combine_predictions_for_bb): Likewise.
18781
18782 2016-06-13 Richard Biener <rguenther@suse.de>
18783
18784 PR tree-optimization/71505
18785 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Make
18786 assert match comment.
18787
18788 2016-06-13 Marek Polacek <polacek@redhat.com>
18789
18790 PR middle-end/71476
18791 * gimplify.c (maybe_warn_switch_unreachable): Factored out of
18792 gimplify_switch_expr.
18793 (warn_switch_unreachable_r): New function.
18794
18795 2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
18796
18797 PR target/71379
18798 * config/s390/s390.c (s390_expand_builtin): Increase MAX_ARGS by
18799 one.
18800
18801 2016-06-13 Richard Biener <rguenther@suse.de>
18802
18803 PR middle-end/64516
18804 * fold-const.c (fold_unary_loc): Preserve alignment when
18805 folding a VIEW_CONVERT_EXPR into a MEM_REF.
18806
18807 2016-06-13 Martin Liska <mliska@suse.cz>
18808
18809 PR sanitizer/71458
18810 * toplev.c (process_options): Do not enable -fcheck-pointer-bounds
18811 w/ -fsanitize=bounds.
18812
18813 2016-06-12 Uros Bizjak <ubizjak@gmail.com>
18814
18815 * config/i386/i386.c (ix86_init_builtins): Calculate
18816 FLOAT128_FTYPE_CONST_STRING function type only once.
18817 * doc/extend.texi (x86 Built-in Functions): Update text, __float128
18818 built-in functions are available for x86-32 and x86-64 targets.
18819
18820 2016-06-12 Uros Bizjak <ubizjak@gmail.com>
18821
18822 PR target/71241
18823 * config/i386/i386.i386-builtin-types.def (CONST_STRING):
18824 New primitive type.
18825 (FLOAT128_FTYPE_CONST_STRING): New function type.
18826 * config/i386/i386.c (enum ix86_builtins) [IX86_BUILTIN_NANQ]: New.
18827 [IX86_BUILTIN_NANSQ]: Ditto.
18828 (ix86_fold_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
18829 (ix86_init_builtin_types): Declare const_string_type_node.
18830 (ix86_init_builtins): Add __builtin_nanq and __builtin_nansq
18831 builtin functions.
18832 (ix86_expand_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
18833 * doc/extend.texi (x86 Built-in Functions): Document
18834 __builtin_nanq and __builtin_nansq.
18835
18836 2016-06-11 Jiong Wang <jiong.wang@arm.com>
18837
18838 PR target/71061
18839 * config/arm/arm-protos.h (arm_attr_length_pop_multi): New declaration.
18840 * config/arm/arm.c (arm_attr_length_pop_multi): New function to return
18841 length for pop patterns.
18842 (arm_attr_length_push_multi): Update comments.
18843 * config/arm/arm.md (*load_multiple_with_writeback): Set "length"
18844 attribute.
18845 (*pop_multiple_with_writeback_and_return): Likewise.
18846 (*pop_multiple_with_return): Likewise.
18847
18848 2016-06-11 Segher Boessenkool <segher@kernel.crashing.org>
18849
18850 PR middle-end/71310
18851 * fold-const.c (optimize_bit_field_compare): Don't try to use
18852 word_mode unconditionally for reading the bit field, look at
18853 DECL_BIT_FIELD_REPRESENTATIVE instead.
18854
18855 2016-06-11 Kugan Vivekanandarajah <kuganv@linaro.org>
18856
18857 PR middle-end/71478
18858 * tree-ssa-reassoc.c (reassociate_bb): Remove (-1) from ops list for
18859 vector integer type.
18860
18861 2016-06-10 Jakub Jelinek <jakub@redhat.com>
18862
18863 PR middle-end/71494
18864 * tree-nested.c (convert_nonlocal_reference_stmt): For GIMPLE_GOTO
18865 without LABEL_DECL, set *handled_ops_p to false instead of true.
18866
18867 2016-06-10 Martin Sebor <msebor@redhat.com>
18868
18869 PR c/71392
18870 * builtin-attrs.def (ATTR_NOTHROW_NONNULL_LEAF_LIST): New macro.
18871 (ATTR_NOTHROW_NONNULL_TYPEGENERIC_LEAF): Same.
18872 * builtins.def (BUILT_IN_SADD_OVERFLOW, BUILT_IN_SADDL_OVERFLOW): Use
18873 them.
18874 (BUILT_IN_SADDLL_OVERFLOW, BUILT_IN_SSUB_OVERFLOW): Same.
18875 (BUILT_IN_SSUBL_OVERFLOW, BUILT_IN_SSUBLL_OVERFLOW): Same.
18876 (BUILT_IN_SMUL_OVERFLOW, BUILT_IN_SMULL_OVERFLOW): Same.
18877 (BUILT_IN_SMULLL_OVERFLOW, BUILT_IN_UADD_OVERFLOW): Same.
18878 (BUILT_IN_UADDL_OVERFLOW, BUILT_IN_UADDLL_OVERFLOW): Same.
18879 (BUILT_IN_USUB_OVERFLOW, BUILT_IN_USUBL_OVERFLOW): Same.
18880 (BUILT_IN_USUBLL_OVERFLOW, BUILT_IN_UMUL_OVERFLOW): Same.
18881 (BUILT_IN_UMULL_OVERFLOW, BUILT_IN_UMULLL_OVERFLOW): Same.
18882
18883 2016-06-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
18884
18885 * config/arm/arm.h (pool_vector_label,
18886 return_used_this_function): Remove.
18887
18888 2016-06-10 Jeff Law <law@redhat.com>
18889
18890 PR tree-optimization/71335
18891 * tree-ssa-threadbackward.c (profitable_jump_thread_path): Filter out
18892 zero length paths here.
18893 (convert_and_register_jump_thread_path): Remove hacks related to
18894 duplicated blocks in the jump thread path.
18895 (fsm_find_control_statement_thread_paths): Avoid putting the same
18896 block on the thread path twice, but ensure the thread path is
18897 unchanged from the caller's point of view.
18898
18899 2016-06-10 Jan Hubicka <hubicka@ucw.cz>
18900
18901 * predict.c (predict_loops): Remove PRED_LOOP_BRANCH.
18902 * predict.def (PRED_LOOP_BRANCH): Remove.
18903
18904 2016-06-10 David Malcolm <dmalcolm@redhat.com>
18905
18906 * Makefile.in (OBJS): Add ggc-tests.o.
18907 (GTFILES): Add ggc-tests.c.
18908 * ggc-tests.c: New file.
18909 * selftest-run-tests.c (selftest::run_tests): Call
18910 selftest::ggc_tests_c_tests.
18911 * selftest.h (selftest::ggc_tests_c_tests): New prototype.
18912
18913 2016-06-10 Alexander Monakov <amonakov@ispras.ru>
18914
18915 * match.pd (-1 / B < A): Use :c to avoid pattern duplication.
18916
18917 2016-06-10 Maxim Ostapenko <m.ostapenko@samsung.com>
18918
18919 PR sanitizer/71480
18920 * varasm.c (place_block_symbol): Adjust alignment for asan protected
18921 STRING_CSTs even if TREE_CONSTANT_POOL_ADDRESS_P.
18922
18923 2016-06-10 Jan Hubicka <hubicka@ucw.cz>
18924
18925 * profile.c: Include cfgloop.h.
18926 (branch_prob): Compute estimated number of iterations.
18927 * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Do not
18928 recompute estimate number of iterations from profile.
18929
18930 2016-06-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
18931
18932 PR inline-asm/68843
18933 * reg-stack.c (check_asm_stack_operands): Explicit input arguments
18934 must be grouped on top of stack. Don't force early clobber
18935 on ordinary reg outputs.
18936
18937 2016-06-10 Richard Biener <rguenther@suse.de>
18938
18939 * targhooks.c (default_builtin_vectorization_cost): Adjust
18940 vec_construct cost.
18941
18942 2016-06-10 Richard Biener <rguenther@suse.de>
18943
18944 * gimple-fold.c (gimple_fold_builtin_memory_op): Make sure
18945 to fold the RHS to a constant if possible.
18946
18947 2016-06-10 Thomas Schwinge <thomas@codesourcery.com>
18948
18949 PR middle-end/71373
18950 * tree-nested.c (convert_nonlocal_omp_clauses)
18951 (convert_local_omp_clauses): Handle OMP_CLAUSE_ASYNC,
18952 OMP_CLAUSE_WAIT, OMP_CLAUSE_INDEPENDENT, OMP_CLAUSE_AUTO,
18953 OMP_CLAUSE__CACHE_, OMP_CLAUSE_TILE.
18954
18955 * gimplify.c (gimplify_adjust_omp_clauses): Discard
18956 OMP_CLAUSE_TILE.
18957 * omp-low.c (scan_sharing_clauses): Don't expect OMP_CLAUSE_TILE.
18958
18959 * omp-low.c (scan_sharing_clauses): Don't expect
18960 OMP_CLAUSE__CACHE_.
18961
18962 2016-06-10 Alan Hayward <alan.hayward@arm.com>
18963
18964 PR tree-optimization/71407
18965 PR tree-optimization/71416
18966 * tree-vect-loop.c (vectorizable_live_operation): Use vectype for
18967 BIT_FIELD_REF type.
18968
18969 2016-06-10 Richard Biener <rguenther@suse.de>
18970
18971 PR middle-end/71477
18972 * cfgloop.c (alloc_loop): Initialize nb_iterations_likely_upper_bound.
18973
18974 2016-06-09 Eric Botcazou <ebotcazou@adacore.com>
18975
18976 * df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.
18977
18978 2016-06-09 Vladimir Makarov <vmakarov@redhat.com>
18979 Jiong Wang <jiong.wang@arm.com>
18980
18981 PR rtl-optimization/70751
18982 * lra-constraints.c (process_alt_operands): Recognize Non-pseudo
18983 spilled into memory.
18984
18985 2016-06-09 Jonathan Yong <10walls@gmail.com>
18986
18987 Revert:
18988 2015-09-21 Jonathan Yong <10walls@gmail.com>
18989
18990 * config/i386/cygwin.h (STARTFILE_SPEC): Explicitly search
18991 sysroot/usr/lib/32api for additional win32 libraries,
18992 fixes failing Cygwin bootstrapping.
18993
18994 2016-06-09 Marcin Baczyński <marbacz@gmail.com>
18995
18996 * diagnostic.h (diagnostic_line_cutoff, diagnostic_flush_buffer):
18997 Delete.
18998
18999 2016-06-09 David Malcolm <dmalcolm@redhat.com>
19000
19001 PR bootstrap/71471
19002 * pretty-print.c (pp_indent): Specify that %p is printed in a
19003 host-dependent manner.
19004 (test_pp_format): Remove the test for %p.
19005
19006 2016-06-09 Maciej W. Rozycki <macro@imgtec.com>
19007
19008 * config/mips/mips.c (mips_output_jump): Fix formatting.
19009
19010 2016-06-09 Richard Biener <rguenther@suse.de>
19011
19012 PR tree-optimization/71462
19013 * tree-ssa-loop-manip.c (find_uses_to_rename): Guard against
19014 removed blocks.
19015
19016 2016-06-09 Martin Liska <mliska@suse.cz>
19017
19018 * predict.c (dump_prediction): Add new argument.
19019 (enum predictor_reason): New enum.
19020 (struct predictor_hash): New struct.
19021 (predictor_hash::hash): New function.
19022 (predictor_hash::equal): Likewise.
19023 (not_removed_prediction_p): New function.
19024 (prune_predictions_for_bb): Likewise.
19025 (combine_predictions_for_bb): Prune predictions.
19026
19027 2016-06-09 Martin Liska <mliska@suse.cz>
19028
19029 * predict.c (filter_predictions): New function.
19030 (remove_predictions_associated_with_edge): Use the filter
19031 function.
19032 (equal_edge_p): New function.
19033
19034 2016-06-09 Stefan Bruens <stefan.bruens@rwth-aachen.de>
19035
19036 * doc/invoke.texi (ARM Options): Use lexicographical ordering.
19037 Correct usage of @samp vs @option, add @samp where appropriate.
19038 Add -march={armv6k,armv6z,arm6zk}, remove -march=ep9312.
19039 Add armv6s-m and document it, as it is no official ARM name.
19040
19041 2016-06-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19042
19043 * ifcvt.c (struct noce_if_info): Add transform_name field.
19044 (noce_try_move): Set if_info->transform_name to the function name.
19045 (noce_try_ifelse_collapse): Likewise.
19046 (noce_try_store_flag): Likewise.
19047 (noce_try_inverse_constants): Likewise.
19048 (noce_try_store_flag_constants): Likewise.
19049 (noce_try_addcc): Likewise.
19050 (noce_try_store_flag_mask): Likewise.
19051 (noce_try_cmove): Likewise.
19052 (noce_try_cmove_arith): Likewise.
19053 (noce_try_minmax): Likewise.
19054 (noce_try_abs): Likewise.
19055 (noce_try_sign_mask): Likewise.
19056 (noce_try_bitop): Likewise.
19057 (noce_convert_multiple_sets): Likewise.
19058 (noce_process_if_block): Print if_info->transform_name to
19059 dump_file if transformation succeeded.
19060
19061 2016-06-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19062
19063 * config/arm/cortex-a57.md (cortex_a57_alu):
19064 Handle csel type.
19065
19066 2016-06-08 Martin Sebor <msebor@redhat.com>
19067 Jakub Jelinek <jakub@redhat.com>
19068
19069 PR c++/70507
19070 PR c/68120
19071 * builtins.def (BUILT_IN_ADD_OVERFLOW_P, BUILT_IN_SUB_OVERFLOW_P,
19072 BUILT_IN_MUL_OVERFLOW_P): New builtins.
19073 * builtins.c: Include gimple-fold.h.
19074 (fold_builtin_arith_overflow): Handle
19075 BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
19076 (fold_builtin_3): Likewise.
19077 * doc/extend.texi (Integer Overflow Builtins): Document
19078 __builtin_{add,sub,mul}_overflow_p.
19079
19080 2016-06-08 Jose E. Marchesi <jose.marchesi@oracle.com>
19081
19082 * config/sparc/driver-sparc.c (cpu_names): Fix the entry for the
19083 SPARC-M7 and add an entry for SPARC-S7 cpus (Sonoma).
19084
19085 2016-06-08 Alan Lawrence <alan.lawrence@arm.com>
19086
19087 * config/aarch64/aarch64.c (aarch64_function_arg_alignment):
19088 Rewrite, looking one level down for records and arrays.
19089
19090 2016-06-08 David Malcolm <dmalcolm@redhat.com>
19091
19092 * pretty-print.c: Include "selftest.h".
19093 (pp_format): Fix comment.
19094 (identifier_to_locale): Likewise.
19095 (selftest::test_basic_printing): New function.
19096 (selftest::assert_pp_format): New function.
19097 (selftest::test_pp_format): New function.
19098 (selftest::pretty_print_c_tests): New function.
19099 * selftest-run-tests.c (selftest::run_tests): Call
19100 selftest::pretty_print_c_tests.
19101 * selftest.h (pretty_print_c_tests): New declaration.
19102
19103 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
19104
19105 * invoke.texi (max-loop-headers-insns): Document.
19106 * params.def (PARAM_MAX_LOOP_HEADER_INSNS): New.
19107 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Update comment.
19108 (ch_base::copy_headers): Use PARAM_MAX_LOOP_HEADER_INSNS.
19109
19110 2016-06-08 Richard Biener <rguenther@suse.de>
19111
19112 * tree-vect-stmts.c (vectorizable_load): Remove restrictions
19113 on strided SLP loads and fall back to scalar loads in case
19114 we can't chunk them.
19115
19116 2016-06-08 Richard Biener <rguenther@suse.de>
19117
19118 PR tree-optimization/71452
19119 * tree-ssa.c (non_rewritable_lvalue_p): Make sure that the
19120 type used for the SSA rewrite has enough precision to cover
19121 the dynamic type of the location.
19122
19123 2016-06-08 Jakub Jelinek <jakub@redhat.com>
19124 Richard Biener <rguenther@suse.de>
19125
19126 PR c++/71448
19127 * fold-const.c (fold_comparison): Handle CONSTANT_CLASS_P (base0)
19128 the same as DECL_P (base0) for indirect_base0. Use equality_code
19129 in one further place.
19130
19131 2016-06-08 Richard Sandiford <richard.sandiford@arm.com>
19132
19133 * expmed.c (store_bit_field_1): Do not restrict a multiword op0
19134 to one word if the field is known to overlap other words.
19135 (extract_bit_field_1): Likewise.
19136 (store_split_bit_field): Remove compensating code.
19137 (extract_split_bit_field): Likewise.
19138
19139 2016-06-08 Bernd Schmidt <bschmidt@redhat.com>
19140
19141 PR debug/71432
19142 PR ada/71413
19143 * tree-ssa-strlen.c (handle_builtin_memcmp): Ignore debug insns.
19144
19145 2016-06-08 Jiong Wang <jiong.wang@arm.com>
19146
19147 * config/aarch64/aarch64-builtins.def (faddp): New builtins for modes in
19148 VDQF.
19149 * config/aarch64/aarch64-simd.md (aarch64_faddp<mode>): New.
19150 (arch64_addpv4sf): Delete.
19151 (reduc_plus_scal_v4sf): Use "gen_aarch64_faddpv4sf" instead of
19152 "gen_aarch64_addpv4sf".
19153 * config/aarch64/arm_neon.h (vpadd_f32): Remove inline assembly. Use
19154 builtin.
19155 (vpadds_f32): Likewise.
19156 (vpaddq_f32): Likewise.
19157 (vpaddq_f64): Likewise.
19158
19159 2016-06-08 Jiong Wang <jiong.wang@arm.com>
19160
19161 * config/aarch64/aarch64-builtins.def (fabd): New builtins for modes
19162 VALLF.
19163 * config/aarch64/aarch64-simd.md (fabd<mode>_3): Extend modes from VDQF
19164 to VALLF. Rename to "fabd<mode>3".
19165 "*fabd_scalar<mode>3): Delete.
19166 * config/aarch64/arm_neon.h (vabds_f32): Remove inline assembly.
19167 Use builtin.
19168 (vabdd_f64): Likewise.
19169 (vabd_f32): Likewise.
19170 (vabd_f64): Likewise.
19171 (vabdq_f32): Likewise.
19172 (vabdq_f64): Likewise.
19173
19174 2016-06-08 Jiong Wang <jiong.wang@arm.com>
19175
19176 * config/aarch64/aarch64-builtins.def (rsqrts): New builtins for modes
19177 VALLF.
19178 * config/aarch64/aarch64-simd.md (aarch64_rsqrts_<mode>3): Rename to
19179 "aarch64_rsqrts<mode>".
19180 * config/aarch64/aarch64.c (get_rsqrts_type): Update gen* name.
19181 * config/aarch64/arm_neon.h (vrsqrtss_f32): Remove inline assembly. Use
19182 builtin.
19183 (vrsqrtsd_f64): Likewise.
19184 (vrsqrts_f32): Likewise.
19185 (vrsqrts_f64): Likewise.
19186 (vrsqrtsq_f32): Likewise.
19187 (vrsqrtsq_f64): Likewise.
19188
19189 2016-06-08 Jiong Wang <jiong.wang@arm.com>
19190
19191 * config/aarch64/aarch64-builtins.def (rsqrte): New builtins for modes
19192 VALLF.
19193 * config/aarch64/aarch64-simd.md (aarch64_rsqrte_<mode>2): Rename to
19194 "aarch64_rsqrte<mode>".
19195 * config/aarch64/aarch64.c (get_rsqrte_type): Update gen* name.
19196 * config/aarch64/arm_neon.h (vrsqrts_f32): Remove inline assembly. Use
19197 builtin.
19198 (vrsqrted_f64): Likewise.
19199 (vrsqrte_f32): Likewise.
19200 (vrsqrte_f64): Likewise.
19201 (vrsqrteq_f32): Likewise.
19202 (vrsqrteq_f64): Likewise.
19203
19204 2016-06-08 Jiong Wang <jiong.wang@arm.com>
19205
19206 * config/aarch64/aarch64-builtins.def (scvtf): Register vector modes.
19207 (ucvtf): Likewise.
19208 (fcvtzs): Likewise.
19209 (fcvtzu): Likewise.
19210 * config/aarch64/aarch64-simd.md
19211 (<FCVT_F2FIXED:fcvt_fixed_insn><VDQF:mode>3): New.
19212 (<FCVT_FIXED2F:fcvt_fixed_insn><VDQ_SDI:mode>3): Likewise.
19213 * config/aarch64/arm_neon.h (vcvt_n_f32_s32): Remove inline assembly.
19214 Use builtin.
19215 (vcvt_n_f32_u32): Likewise.
19216 (vcvt_n_s32_f32): Likewise.
19217 (vcvt_n_u32_f32): Likewise.
19218 (vcvtq_n_f32_s32): Likewise.
19219 (vcvtq_n_f32_u32): Likewise.
19220 (vcvtq_n_f64_s64): Likewise.
19221 (vcvtq_n_f64_u64): Likewise.
19222 (vcvtq_n_s32_f32): Likewise.
19223 (vcvtq_n_s64_f64): Likewise.
19224 (vcvtq_n_u32_f32): Likewise.
19225 (vcvtq_n_u64_f64): Likewise.
19226 * config/aarch64/iterators.md (VDQ_SDI): New mode iterator.
19227 (VSDQ_SDI): Likewise.
19228 (fcvt_target): Support V4DI, V4SI and V2SI.
19229 (FCVT_TARGET): Likewise.
19230
19231 2016-06-08 Jiong Wang <jiong.wang@arm.com>
19232
19233 * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New
19234 (TYPES_BINOP_SUS): Likewise.
19235 (aarch64_simd_builtin_data): Update include file name.
19236 (aarch64_builtins): Likewise.
19237 * config/aarch64/aarch64-simd-builtins.def (scvtf): New entries
19238 for conversion between scalar float-point and fixed-point.
19239 (ucvtf): Likewise.
19240 (fcvtzs): Likewise.
19241 (fcvtzu): Likewise.
19242 * config/aarch64/aarch64.md
19243 (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3: New
19244 pattern for conversion between scalar float to fixed-pointer.
19245 (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>: Likewise.
19246 (UNSPEC_FCVTZS): New UNSPEC enumeration.
19247 (UNSPEC_FCVTZU): Likewise.
19248 (UNSPEC_SCVTF): Likewise.
19249 (UNSPEC_UCVTF): Likewise.
19250 * config/aarch64/arm_neon.h (vcvtd_n_f64_s64): Remove inline assembly.
19251 Use builtin.
19252 (vcvtd_n_f64_u64): Likewise.
19253 (vcvtd_n_s64_f64): Likewise.
19254 (vcvtd_n_u64_f64): Likewise.
19255 (vcvtd_n_f32_s32): Likewise.
19256 (vcvts_n_f32_u32): Likewise.
19257 (vcvtd_n_s32_f32): Likewise.
19258 (vcvts_n_u32_f32): Likewise.
19259 * config/aarch64/iterators.md (fcvt_target): Support integer to float
19260 mapping.
19261 (FCVT_TARGET): Likewise.
19262 (FCVT_FIXED2F): New iterator.
19263 (FCVT_F2FIXED): Likewise.
19264 (fcvt_fixed_insn): New define_int_attr.
19265
19266 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
19267
19268 * predict.c (pass_strip_predict_hints::execute): Cleanup CFG if
19269 some statements was removed.
19270
19271 2016-06-08 Alan Hayward <alan.hayward@arm.com>
19272
19273 * tree-vect-data-refs.c (vect_analyze_data_refs): Remove debug newline.
19274 * tree-vect-loop-manip.c (slpeel_make_loop_iterate_ntimes): likewise.
19275 (vect_can_advance_ivs_p): likewise.
19276 (vect_update_ivs_after_vectorizer): likewise.
19277 * tree-vect-loop.c (vect_determine_vectorization_factor): likewise.
19278 (vect_analyze_scalar_cycles_1): likewise.
19279 (vect_analyze_loop_operations): likewise.
19280 (report_vect_op): likewise.
19281 (vect_is_slp_reduction): likewise.
19282 (vect_is_simple_reduction): likewise.
19283 (get_initial_def_for_induction): likewise.
19284 (vect_transform_loop): likewise.
19285 * tree-vect-patterns.c (vect_recog_dot_prod_pattern): likewise.
19286 (vect_recog_sad_pattern): likewise.
19287 (vect_recog_widen_sum_pattern): likewise.
19288 (vect_recog_widening_pattern): likewise.
19289 (vect_recog_divmod_pattern): likewise.
19290 * tree-vect-slp.c (vect-build-slp_tree_1): likewise.
19291 (vect_analyze_slp_instance): likewise.
19292 (vect_transform_slp_perm_load): likewise.
19293 (vect_schedule_slp_instance): likewise.
19294
19295 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
19296
19297 * predict.c (predict_iv_comparison): Mention that heuristics is broken.
19298 (return_prediction): PRED_CONST_RETURN predict return as not taken.
19299 * predict.def (PRED_CONTINUE): Change hitrate 50->67
19300 (PRED_LOOP_BRANCH): Document predictor as broken.
19301 (PRED_LOOP_EXIT): Change hitrate 91->92.
19302 (PRED_LOOP_EXTRA_EXIT): Change hitrate 91->83.
19303 (PRED_POINTER, PRED_TREE_POINTER): Change hitrate 85->70.
19304 (PRED_OPCODE_POSITIVE): Change hitrate 79->64.
19305 (PRED_OPCODE_NONEQUAL): Change hitrate 91->66.
19306 (PRED_TREE_OPCODE_POSITIVE): Change hitrate 73->64
19307 (PRED_TREE_OPCODE_NONEQUAL): Chnage hitrate 72->66
19308 (PRED_CALL): Chane hitrate 71->67.
19309 (PRED_TREE_EARLY_RETURN): Document issues, change hitrate 61->54.
19310 (PRED_GOTO): Document as unused right now.
19311 (PRED_CONST_RETURN): Change hitrate 67->69
19312 (PRED_NEGATIVE_RETURN): Change hitrate 96->98
19313 (PRED_NULL_RETURN): Change hitrate 91->90.
19314 (PRED_LOOP_IV_COMPARE_GUESS): Change hitrate to 98.
19315 (PRED_FORTRAN_FAIL_ALLOC): Change hitrate to 62; document issues.
19316 (PRED_FORTRAN_SIZE_ZERO): Change hitrate to 99.
19317
19318 2016-06-07 Bill Seurer <seurer@linux.vnet.ibm.com>
19319
19320 * config/rs6000/altivec.h: Add __builtin_vec_mul.
19321 * config/rs6000/rs6000-builtin.def (vec_mul): Change vec_mul to a
19322 special case Altivec builtin.
19323 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
19324 VSX_BUILTIN_VEC_MUL (replaced with special case code).
19325 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
19326 code for ALTIVEC_BUILTIN_VEC_MUL.
19327 * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
19328 for __builtin_vec_mul.
19329
19330 2016-06-07 Peter Bergner <bergner@vnet.ibm.com>
19331
19332 * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mhtm and
19333 -mno-htm.
19334
19335 2016-06-07 David Malcolm <dmalcolm@redhat.com>
19336
19337 * spellcheck.c (selftest::test_find_closest_string): New function.
19338 (spellcheck_c_tests): Call the above.
19339
19340 2016-06-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19341
19342 * simplify-rtx.c (simplify_cond_clz_ctz): Delete 'mode' local variable.
19343
19344 2016-06-07 Jakub Jelinek <jakub@redhat.com>
19345
19346 * config/i386/sse.md (avx_vec_concat<mode>): Add v=v,vm and
19347 Yv=Yv,C alternatives.
19348
19349 2016-06-07 Richard Biener <rguenther@suse.de>
19350
19351 PR c/61564
19352 * common.opt (ffast-math): Make Optimization.
19353
19354 2016-06-07 Simon Dardis <simon.dardis@imgtec.com>
19355 Prachi Godbole <prachi.godbole@imgtec.com>
19356
19357 * config/mips/p5600.md (p5600_fpu_fadd): Remove checking for
19358 `fabs' and `fneg' type attributes.
19359 (p5600_fpu_fabs): Add `fmove' to the comment.
19360
19361 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
19362
19363 * gimple.c: Include builtins.h
19364 (gimple_inexpensive_call_p): New function.
19365 * gimple.h (gimple_inexpensive_call_p): Declare.
19366 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Use it.
19367 * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Likewise;
19368 fix formatting.
19369
19370 2016-06-07 Paolo Carlini <paolo.carlini@oracle.com>
19371
19372 * diagnostic.c (diagnostic_impl, diagnostic_n_impl): New.
19373 (inform, inform_at_rich_loc, inform_n, warning, warning_at,
19374 warning_at_rich_loc, warning_n, pedwarn, permerror,
19375 permerror_at_rich_loc, error, error_n, error_at, error_at_rich_loc,
19376 sorry, fatal_error, internal_error, internal_error_no_backtrace):
19377 Use the above.
19378
19379 2016-06-07 Richard Biener <rguenther@suse.de>
19380
19381 PR tree-optimization/71428
19382 * tree-ssa-math-opts.c (perform_symbolic_merge): Properly distinguish
19383 BIT_FIELD_REF op vs. load.
19384
19385 2016-06-07 Richard Biener <rguenther@suse.de>
19386
19387 PR middle-end/71423
19388 * match.pd ((X | ~Y) -> Y <= X): Properly invert the comparison
19389 for signed ops.
19390
19391 2016-06-06 John David Anglin <danglin@gcc.gnu.org>
19392
19393 * config/pa/pa.md (call): Generate indirect long calls to non-local
19394 functions on TARGET_64BIT.
19395 (call_value): Likewise.
19396
19397 2016-06-06 John David Anglin <danglin@gcc.gnu.org>
19398
19399 * config/pa/pa.md (call_val_reg_64bit): Remove "reg: DI " clobber from
19400 pattern and subsequent splitters.
19401 (call_val_reg_64bit_post_reload): Likewise.
19402
19403 2016-06-07 Kugan Vivekanandarajah <kuganv@linaro.org>
19404
19405 PR middle-end/71408
19406 * tree-ssa-reassoc.c (zero_one_operation): Fix NEGATE_EXPR operand for
19407 propagate_op_to_single_use.
19408
19409 2016-06-07 Kugan Vivekanandarajah <kuganv@linaro.org>
19410
19411 PR middle-end/71281
19412 * tree-ssa-reassoc.c (reassociate_bb): Set uid for negate stmt.
19413
19414 2016-06-07 Uros Bizjak <ubizjak@gmail.com>
19415
19416 * config/i386/i386.h (enum ix86_enitity): Add X86_DIRFLAG.
19417 (enum x86_dirflag_state): New enum.
19418 (NUM_MODES_FOR_MODE_SWITCHING): Add X86_DIRFLAG_ANY.
19419 (machine_function): Remove needs_cld.
19420 (ix86_current_function_needs_cld): Remove.
19421 * config/i386/i386.c (ix86_set_func_type): Set
19422 ix86_optimize_mode_switching[X86_DIRFLAG] to 1.
19423 (ix86_expand_prologue): Do not emit CLD here.
19424 (ix86_dirflag_mode_needed): New function.
19425 (ix86_dirflag_mode_entry): Ditto.
19426 (ix86_mode_needed): Handle X86_DIRFLAG entity.
19427 (ix86_mode_after): Ditto.
19428 (ix86_mode_entry): Ditto.
19429 (ix86_mode_exit): Ditto.
19430 (ix86_emit_mode_set): Ditto.
19431 * config/i386/i386.md (strmov_singleop): Set
19432 ix86_optimize_mode_switching[X86_DIRFLAG] to 1 for TARGET_CLD.
19433 Do not set ix86_current_function_needs_cld.
19434 (rep_mov): Ditto.
19435 (strset_singleop): Ditto.
19436 (rep_stos): Ditto.
19437 (cmpstrnqi_nz_1): Ditto.
19438 (cmpstrnqi_1): Ditto.
19439 (strlenqi_1): Ditto.
19440
19441 2016-06-06 Jakub Jelinek <jakub@redhat.com>
19442
19443 PR tree-optimization/71259
19444 * tree-vect-slp.c (vect_get_constant_vectors): For
19445 VECTOR_BOOLEAN_TYPE_P, return all ones constant instead of
19446 one for constant op, and use COND_EXPR for non-constant.
19447
19448 2016-06-06 David Malcolm <dmalcolm@redhat.com>
19449
19450 * Makefile.in (OBJS): Add function-tests.o,
19451 hash-map-tests.o, hash-set-tests.o, rtl-tests.o,
19452 selftest-run-tests.o.
19453 (OBJS-libcommon): Add selftest.o.
19454 (OBJS-libcommon-target): Add selftest.o.
19455 (all.internal): Add "selftest".
19456 (all.cross): Likewise.
19457 (selftest): New phony target.
19458 (s-selftest): New target.
19459 (selftest-gdb): New phony target.
19460 (COLLECT2_OBJS): Add selftest.o.
19461 * bitmap.c: Include "selftest.h".
19462 (selftest::test_gc_alloc): New function.
19463 (selftest::test_set_range): New function.
19464 (selftest::test_clear_bit_in_middle): New function.
19465 (selftest::test_copying): New function.
19466 (selftest::test_bitmap_single_bit_set_p): New function.
19467 (selftest::bitmap_c_tests): New function.
19468 * common.opt (fself-test): New.
19469 * diagnostic-show-locus.c: Include "selftest.h".
19470 (make_range): New function.
19471 (test_range_contains_point_for_single_point): New function.
19472 (test_range_contains_point_for_single_line): New function.
19473 (test_range_contains_point_for_multiple_lines): New function.
19474 (assert_eq): New function.
19475 (test_get_line_width_without_trailing_whitespace): New function.
19476 (selftest::diagnostic_show_locus_c_tests): New function.
19477 * et-forest.c: Include "selftest.h".
19478 (selftest::test_single_node): New function.
19479 (selftest::test_simple_tree): New function.
19480 (selftest::test_disconnected_nodes): New function.
19481 (selftest::et_forest_c_tests): New function.
19482 * fold-const.c: Include "selftest.h".
19483 (selftest::assert_binop_folds_to_const): New function.
19484 (selftest::assert_binop_folds_to_nonlvalue): New function.
19485 (selftest::test_arithmetic_folding): New function.
19486 (selftest::fold_const_c_tests): New function.
19487 * function-tests.c: New file.
19488 * gimple.c: Include "selftest.h".
19489 Include "gimple-pretty-print.h".
19490 (selftest::verify_gimple_pp): New function.
19491 (selftest::test_assign_single): New function.
19492 (selftest::test_assign_binop): New function.
19493 (selftest::test_nop_stmt): New function.
19494 (selftest::test_return_stmt): New function.
19495 (selftest::test_return_without_value): New function.
19496 (selftest::gimple_c_tests): New function.
19497 * hash-map-tests.c: New file.
19498 * hash-set-tests.c: New file.
19499 * input.c: Include "selftest.h".
19500 (selftest::assert_loceq): New function.
19501 (selftest::test_accessing_ordinary_linemaps): New function.
19502 (selftest::test_unknown_location): New function.
19503 (selftest::test_builtins): New function.
19504 (selftest::test_reading_source_line): New function.
19505 (selftest::input_c_tests): New function.
19506 * rtl-tests.c: New file.
19507 * selftest-run-tests.c: New file.
19508 * selftest.c: New file.
19509 * selftest.h: New file.
19510 * spellcheck.c: Include "selftest.h".
19511 (selftest::levenshtein_distance_unit_test_oneway): New function,
19512 adapted from testsuite/gcc.dg/plugin/levenshtein_plugin.c.
19513 (selftest::levenshtein_distance_unit_test): Likewise.
19514 (selftest::spellcheck_c_tests): Likewise.
19515 * toplev.c: Include selftest.h.
19516 (toplev::run_self_tests): New.
19517 (toplev::main): Handle -fself-test.
19518 * toplev.h (toplev::run_self_tests): New.
19519 * tree.c: Include "selftest.h".
19520 (selftest::test_integer_constants): New function.
19521 (selftest::test_identifiers): New function.
19522 (selftest::test_labels): New function.
19523 (selftest::tree_c_tests): New function.
19524 * tree-cfg.c: Include "selftest.h".
19525 (selftest::push_fndecl): New function.
19526 (selftest::test_linear_chain): New function.
19527 (selftest::test_diamond): New function.
19528 (selftest::test_fully_connected): New function.
19529 (selftest::tree_cfg_c_tests): New function.
19530 * vec.c: Include "selftest.h".
19531 (selftest::safe_push_range): New function.
19532 (selftest::test_quick_push): New function.
19533 (selftest::test_safe_push): New function.
19534 (selftest::test_truncate): New function.
19535 (selftest::test_safe_grow_cleared): New function.
19536 (selftest::test_pop): New function.
19537 (selftest::test_safe_insert): New function.
19538 (selftest::test_ordered_remove): New function.
19539 (selftest::test_unordered_remove): New function.
19540 (selftest::test_block_remove): New function.
19541 (selftest::reverse_cmp): New function.
19542 (selftest::test_qsort): New function.
19543 (selftest::vec_c_tests): New function.c.
19544 * wide-int.cc: Include selftest.h and wide-int-print.h.
19545 (selftest::from_int <wide_int>): New function.
19546 (selftest::from_int <offset_int>): New function.
19547 (selftest::from_int <widest_int>): New function.
19548 (selftest::assert_deceq): New function.
19549 (selftest::assert_hexeq): New function.
19550 (selftest::test_printing <VALUE_TYPE>): New function template.
19551 (selftest::test_ops <VALUE_TYPE>): New function template.
19552 (selftest::test_comparisons <VALUE_TYPE>): New function template.
19553 (selftest::run_all_wide_int_tests <VALUE_TYPE>): New function
19554 template.
19555 (selftest::wide_int_cc_tests): New function.
19556
19557 2016-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19558
19559 PR middle-end/37780
19560 * ifcvt.c (noce_try_ifelse_collapse): New function.
19561 Declare prototype.
19562 (noce_process_if_block): Call noce_try_ifelse_collapse.
19563 * simplify-rtx.c (simplify_cond_clz_ctz): New function.
19564 (simplify_ternary_operation): Use the above to simplify
19565 conditional CLZ/CTZ expressions.
19566
19567 2016-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19568
19569 PR middle-end/37780
19570 * config/aarch64/aarch64.md (ctz<mode>2): Convert to
19571 define_insn_and_split.
19572
19573 2016-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19574
19575 PR middle-end/37780
19576 * config/arm/arm.md (ctzsi2): Convert to define_insn_and_split.
19577
19578 2016-06-06 Bernd Edlinger <bernd.edlinger@hotmail.de>
19579
19580 PR c/24414
19581 * cfgexpand.c (expand_asm_loc): Remove handling for ADDR_EXPR.
19582 Implicitly clobber memory for basic asm with non-empty assembler
19583 string. Use targetm.md_asm_adjust also here.
19584 * compare-elim.c (arithmetic_flags_clobber_p): Use asm_noperands here.
19585 * final.c (final_scan_insn): Handle basic asm in PARALLEL block.
19586 * gimple.c (gimple_asm_clobbers_memory_p): Handle basic asm with
19587 non-empty assembler string.
19588 * ira.c (compute_regs_asm_clobbered): Use asm_noperands here.
19589 * recog.c (asm_noperands): Handle basic asm in PARALLEL block.
19590 (decode_asm_operands): Handle basic asm in PARALLEL block.
19591 (extract_insn): Handle basic asm in PARALLEL block.
19592 * doc/extend.texi: Mention new behavior of basic asm.
19593 * config/ia64/ia64 (rtx_needs_barrier): Handle ASM_INPUT here.
19594 * config/pa/pa.c (branch_to_delay_slot_p, branch_needs_nop_p,
19595 branch_needs_nop_p): Use asm_noperands.
19596
19597 2016-06-06 Jose E. Marchesi <jose.marchesi@oracle.com>
19598
19599 * config/sparc/sparc.md (cpu): Add niagara7 cpu type.
19600 Include the M7 SPARC DFA scheduler.
19601 New attribute v3pipe.
19602 Annotate insns with v3pipe where appropriate.
19603 Define cpu_feature vis4.
19604 Add lzd instruction type and set it on clzdi_sp64 and clzsi_sp64.
19605 Add (V8QI "8") to vbits.
19606 Add insns {add,sub}v8qi3
19607 Add insns ss{add,sub}v8qi3
19608 Add insns us{add,sub}{v8qi,v4hi}3
19609 Add insns {min,max}{v8qi,v4hi,v2si}3
19610 Add insns {minu,maxu}{v8qi,v4hi,v2si}3
19611 Add insns fpcmp{le,gt,ule,ug,ule,ugt}{8,16,32}_vis.
19612 * config/sparc/niagara4.md: Add a comment explaining the
19613 discrepancy between the documented latenty numbers and the
19614 implemented ones.
19615 * config/sparc/niagara7.md: New file.
19616 * configure.ac (HAVE_AS_SPARC5_VIS4): Define if the assembler
19617 supports SPARC5 and VIS 4.0 instructions.
19618 * configure: Regenerate.
19619 * config.in: Likewise.
19620 * config.gcc: niagara7 is a supported cpu in sparc*-*-* targets.
19621 * config/sparc/sol2.h (ASM_CPU32_DEFAUILT_SPEC): Set for
19622 TARGET_CPU_niagara7.
19623 (ASM_CPU64_DEFAULT_SPEC): Likewise.
19624 (CPP_CPU_SPEC): Handle niagara7.
19625 (ASM_CPU_SPEC): Likewise.
19626 * config/sparc/sparc-opts.h (processor_type): Add
19627 PROCESSOR_NIAGARA7.
19628 (mvis4): New option.
19629 * config/sparc/sparc.h (TARGET_CPU_niagara7): Define.
19630 (AS_NIAGARA7_FLAG): Define.
19631 (ASM_CPU64_DEFAULT_SPEC): Set for niagara7.
19632 (CPP_CPU64_DEFAULT_SPEC): Likewise.
19633 (CPP_CPU_SPEC): Handle niagara7.
19634 (ASM_CPU_SPEC): Likewise.
19635 * config/sparc/sparc.c (niagara7_costs): Define.
19636 (sparc_option_override): Handle niagara7 and adjust cache-related
19637 parameters with better values for niagara cpus. Also support VIS4.
19638 (sparc32_initialize_trampoline): Likewise.
19639 (sparc_use_sched_lookahead): Likewise.
19640 (sparc_issue_rate): Likewise.
19641 (sparc_register_move_cost): Likewise.
19642 (dump_target_flag_bits): Support VIS4.
19643 (sparc_vis_init_builtins): Likewise.
19644 (sparc_builtins): Likewise.
19645 * config/sparc/sparc-c.c (sparc_target_macros): Define __VIS__ for
19646 VIS4 4.0.
19647 * config/sparc/driver-sparc.c (cpu_names): Add SPARC-M7 and
19648 UltraSparc M7.
19649 * config/sparc/sparc.opt (sparc_processor_type): New value
19650 niagara7.
19651 * config/sparc/visintrin.h (__attribute__): Prototypes for the
19652 VIS4 builtins.
19653 * doc/invoke.texi (SPARC Options): Document -mcpu=niagara7 and
19654 -mvis4.
19655 * doc/extend.texi (SPARC VIS Built-in Functions): Document the
19656 VIS4 builtins.
19657
19658 2016-06-06 Jonathan Wakely <jwakely@redhat.com>
19659
19660 * doc/sourcebuild.texi (Directives): Remove extra closing braces.
19661
19662 2016-06-06 Richard Biener <rguenther@suse.de>
19663
19664 PR tree-optimization/71398
19665 * tree-ssa-loop-ivcanon.c (unloop_loops): First unloop, then
19666 remove edges.
19667
19668 2016-06-05 James Bowman <james.bowman@ftdichip.com>
19669
19670 * config/ft32/ft32.c (ft32_setup_incoming_varargs,
19671 ft32_expand_prolog, ft32_expand_epilogue):
19672 Handle pretend_args.
19673 * config/ft32/ft32.h: Remove OUTGOING_REG_PARM_STACK_SPACE.
19674 * config/ft32/ft32.md: Add pretend_returner.
19675
19676 2016-06-06 Uros Bizjak <ubizjak@gmail.com>
19677
19678 PR target/71389
19679 * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
19680 Copy op1 RTX to avoid invalid sharing.
19681 (ix86_expand_vector_move_misalign): Ditto.
19682
19683 2016-06-05 John David Anglin <danglin@gcc.gnu.org>
19684
19685 * expr.c (move_by_pieces_d::generate): Mark mode parameter with
19686 ATTRIBUTE_UNUSED.
19687
19688 2016-06-05 Jan Hubicka <hubicka@ucw.cz>
19689
19690 * predict.c (predicted_by_loop_heuristics_p): New function.
19691 (predict_iv_comparison): Use it.
19692 (predict_loops): Walk from innermost loops; do not predict edges
19693 leaving multiple loops multiple times; implement
19694 PRED_LOOP_ITERATIONS_MAX heuristics.
19695 * predict.def (PRED_LOOP_ITERATIONS_MAX): New predictor.
19696
19697 2016-06-05 Jan Hubicka <hubicka@ucw.cz>
19698
19699 * cfg.c (check_bb_profile): Do not report mismatched profiles when
19700 only edges out of BB are EH edges.
19701
19702 2016-06-04 Martin Sebor <msebor@redhat.com>
19703 Marcin Baczyński <marbacz@gmail.com>
19704
19705 PR c/48116
19706 * doc/invoke.texi (-Wreturn-type): Mention not warning on return with
19707 a void expression in a void function.
19708
19709 2016-06-03 Jan Hubicka <hubicka@ucw.cz>
19710
19711 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Do not check
19712 aux; dump reasons of decisions.
19713 (should_duplicate_loop_header_p): Likewise.
19714 (do_while_loop_p): Likewise.
19715 (ch_base::copy_headers): Dump asi num insns duplicated.
19716
19717 2016-06-04 Jakub Jelinek <jakub@redhat.com>
19718
19719 PR tree-optimization/71405
19720 * tree-ssa.c (execute_update_addresses_taken): For clobber with
19721 incompatible type, build a new clobber with the right type instead
19722 of building a VIEW_CONVERT_EXPR around it.
19723
19724 2016-06-04 Oleg Endo <olegendo@gcc.gnu.org>
19725
19726 PR tree-optimization/52171
19727 * config/sh/sh.c (sh_use_by_pieces_infrastructure_p): Use
19728 by_pieces_ninsns instead of move_by_pieces_ninsns.
19729
19730 2016-06-04 Oleg Endo <olegendo@gcc.gnu.org>
19731
19732 * config/sh/sh.c (sh_print_operand_address): Don't use hardcoded 'r0'
19733 for reg+reg addressing mode.
19734
19735 2016-06-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
19736
19737 * rs6000-c.c (c/c-tree.h): Add #include.
19738 (altivec_resolve_overloaded_builtin): Handle ARRAY_TYPE arguments
19739 in C++ when found in the base position of vec_ld or vec_st.
19740
19741 2016-06-03 Jan Hubicka <hubicka@ucw.cz>
19742
19743 * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Avoid
19744 use of profile unless profile status is PROFILE_READ.
19745 * profile.c (compute_branch_probabilities): Set profile status
19746 only after reporting predictor hitrates.
19747
19748 2016-06-03 Joseph Myers <joseph@codesourcery.com>
19749
19750 PR target/71276
19751 PR target/71277
19752 * common.opt (ffp-int-builtin-inexact): New option.
19753 * doc/invoke.texi (-fno-fp-int-builtin-inexact): Document.
19754 * doc/md.texi (floor@var{m}2, btrunc@var{m}2, round@var{m}2)
19755 (ceil@var{m}2): Document dependence on this option.
19756 * ipa-inline-transform.c (inline_call): Handle
19757 flag_fp_int_builtin_inexact.
19758 * ipa-inline.c (can_inline_edge_p): Likewise.
19759 * config/i386/i386.md (rintxf2): Do not test
19760 flag_unsafe_math_optimizations.
19761 (rint<mode>2_frndint): New define_insn.
19762 (rint<mode>2): Do not test flag_unsafe_math_optimizations for 387
19763 or !flag_trapping_math for SSE. Just use gen_rint<mode>2_frndint
19764 for 387 instead of extending and truncating.
19765 (frndintxf2_<rounding>): Test flag_fp_int_builtin_inexact ||
19766 !flag_trapping_math instead of flag_unsafe_math_optimizations.
19767 Change to frndint<mode>2_<rounding>.
19768 (frndintxf2_<rounding>_i387): Likewise. Change to
19769 frndint<mode>2_<rounding>_i387.
19770 (<rounding_insn>xf2): Likewise.
19771 (<rounding_insn><mode>2): Test flag_fp_int_builtin_inexact ||
19772 !flag_trapping_math instead of flag_unsafe_math_optimizations for
19773 x87. Test TARGET_ROUND || !flag_trapping_math ||
19774 flag_fp_int_builtin_inexact instead of !flag_trapping_math for
19775 SSE. Use ROUND_NO_EXC in constant operand of
19776 gen_sse4_1_round<mode>2. Just use gen_frndint<mode>2_<rounding>
19777 for 387 instead of extending and truncating.
19778
19779 2016-06-03 H.J. Lu <hongjiu.lu@intel.com>
19780 Julia Koval <julia.koval@intel.com>
19781
19782 PR target/66960
19783 PR target/67630
19784 PR target/67634
19785 PR target/67841
19786 PR target/68037
19787 PR target/68618
19788 PR target/68661
19789 PR target/69575
19790 PR target/69596
19791 PR target/69734
19792 * config/i386/i386-protos.h (ix86_epilogue_uses): New prototype.
19793 * config/i386/i386.c (ix86_conditional_register_usage): Preserve
19794 all registers, except for function return registers if there are
19795 no caller-saved registers.
19796 (ix86_set_func_type): New function.
19797 (ix86_set_current_function): Call ix86_set_func_type to set
19798 no_caller_saved_registers and func_type. Call reinit_regs if
19799 caller-saved registers are changed. Don't allow MPX, SSE, MMX
19800 nor x87 instructions in interrupt handler nor function with
19801 no_caller_saved_registers attribute.
19802 (ix86_function_ok_for_sibcall): Return false if there are no
19803 caller-saved registers.
19804 (type_natural_mode): Don't warn ABI change for MMX in interrupt
19805 handler.
19806 (ix86_function_arg_advance): Skip for callee in interrupt handler.
19807 (ix86_function_arg): Return special arguments in interrupt handler.
19808 (ix86_promote_function_mode): Promote pointer to word_mode only
19809 for normal functions.
19810 (ix86_can_use_return_insn_p): Don't use `ret' instruction in
19811 interrupt handler.
19812 (ix86_epilogue_uses): New function.
19813 (ix86_hard_regno_scratch_ok): Likewise.
19814 (ix86_save_reg): Preserve all registers in interrupt handler
19815 after reload. Preserve all registers, except for function return
19816 registers, if there are no caller-saved registers after reload.
19817 (find_drap_reg): Always use callee-saved register if there are
19818 no caller-saved registers.
19819 (ix86_minimum_incoming_stack_boundary): Return MIN_STACK_BOUNDARY
19820 for interrupt handler.
19821 (ix86_expand_prologue): Don't allow DRAP in interrupt handler.
19822 Emit cld instruction if stringops are used in interrupt handler
19823 or interrupt handler isn't a leaf function.
19824 (ix86_expand_epilogue): Generate interrupt return for interrupt
19825 handler and pop the 'ERROR_CODE' off the stack before interrupt
19826 return in exception handler.
19827 (ix86_expand_call): Disallow calling interrupt handler directly.
19828 If there are no caller-saved registers, mark all registers that
19829 are clobbered by the call which returns as clobbered.
19830 (ix86_handle_no_caller_saved_registers_attribute): New function.
19831 (ix86_handle_interrupt_attribute): Likewise.
19832 (ix86_attribute_table): Add interrupt and no_caller_saved_registers
19833 attributes.
19834 (TARGET_HARD_REGNO_SCRATCH_OK): Likewise.
19835 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use argument
19836 accumulation in interrupt function if stack may be realigned to
19837 avoid DRAP.
19838 (EPILOGUE_USES): New.
19839 (function_type): New enum.
19840 (machine_function): Add func_type and no_caller_saved_registers.
19841 * config/i386/i386.md (UNSPEC_INTERRUPT_RETURN): New.
19842 (interrupt_return): New pattern.
19843 * doc/extend.texi: Document x86 interrupt and
19844 no_caller_saved_registers attributes.
19845
19846 2016-06-03 Bernd Schmidt <bschmidt@redhat.com>
19847
19848 PR tree-optimization/52171
19849 * builtins.c (expand_cmpstrn_or_cmpmem): Delete, moved elsewhere.
19850 (expand_builtin_memcmp): New arg RESULT_EQ. All callers changed.
19851 Look for constant strings. Move some code to emit_block_cmp_hints
19852 and use it.
19853 * builtins.def (BUILT_IN_MEMCMP_EQ): New.
19854 * defaults.h (COMPARE_MAX_PIECES): New macro.
19855 * expr.c (move_by_pieces_d, store_by_pieces_d): Remove old structs.
19856 (move_by_pieces_1, store_by_pieces_1, store_by_pieces_2): Remvoe.
19857 (clear_by_pieces_1): Don't declare. Move definition before use.
19858 (can_do_by_pieces): New static function.
19859 (can_move_by_pieces): Use it. Return bool.
19860 (by_pieces_ninsns): Renamed from move_by_pieces_ninsns. New arg
19861 OP. All callers changed. Handle COMPARE_BY_PIECES.
19862 (class pieces_addr); New.
19863 (pieces_addr::pieces_addr, pieces_addr::decide_autoinc,
19864 pieces_addr::adjust, pieces_addr::increment_address,
19865 pieces_addr::maybe_predec, pieces_addr::maybe_postinc): New member
19866 functions for it.
19867 (class op_by_pieces_d): New.
19868 (op_by_pieces_d::op_by_pieces_d, op_by_pieces_d::run): New member
19869 functions for it.
19870 (class move_by_pieces_d, class compare_by_pieces_d,
19871 class store_by_pieces_d): New subclasses of op_by_pieces_d.
19872 (move_by_pieces_d::prepare_mode, move_by_pieces_d::generate,
19873 move_by_pieces_d::finish_endp, store_by_pieces_d::prepare_mode,
19874 store_by_pieces_d::generate, store_by_pieces_d::finish_endp,
19875 compare_by_pieces_d::generate, compare_by_pieces_d::prepare_mode,
19876 compare_by_pieces_d::finish_mode): New member functions.
19877 (compare_by_pieces, emit_block_cmp_via_cmpmem): New static
19878 functions.
19879 (expand_cmpstrn_or_cmpmem): Moved here from builtins.c.
19880 (emit_block_cmp_hints): New function.
19881 (move_by_pieces, store_by_pieces, clear_by_pieces): Rewrite to just
19882 use the newly defined classes.
19883 * expr.h (by_pieces_constfn): New typedef.
19884 (can_store_by_pieces, store_by_pieces): Use it in arg declarations.
19885 (emit_block_cmp_hints, expand_cmpstrn_or_cmpmem): Declare.
19886 (move_by_pieces_ninsns): Don't declare.
19887 (can_move_by_pieces): Change return value to bool.
19888 * target.def (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): Update docs.
19889 (compare_by_pieces_branch_ratio): New hook.
19890 * target.h (enum by_pieces_operation): Add COMPARE_BY_PIECES.
19891 (by_pieces_ninsns): Declare.
19892 * targethooks.c (default_use_by_pieces_infrastructure_p): Handle
19893 COMPARE_BY_PIECES.
19894 (default_compare_by_pieces_branch_ratio): New function.
19895 * targhooks.h (default_compare_by_pieces_branch_ratio): Declare.
19896 * doc/tm.texi.in (STORE_MAX_PIECES, COMPARE_MAX_PIECES): Document.
19897 * doc/tm.texi: Regenerate.
19898 * tree-ssa-strlen.c: Include "builtins.h".
19899 (handle_builtin_memcmp): New static function.
19900 (strlen_optimize_stmt): Call it for BUILT_IN_MEMCMP.
19901 * tree.c (build_common_builtin_nodes): Create __builtin_memcmp_eq.
19902
19903 2016-06-03 Alan Hayward <alan.hayward@arm.com>
19904
19905 * tree-vect-stmts.c (vect_stmt_relevant_p): Do not vectorize non live
19906 relevant stmts which are simple and invariant.
19907 * tree-vect-loop.c (vectorizable_live_operation): Check relevance
19908 instead of simple and invariant
19909
19910 2016-06-03 Alan Hayward <alan.hayward@arm.com>
19911
19912 * tree-vect-loop.c (vect_analyze_loop_operations): Allow live stmts.
19913 (vectorizable_reduction): Check for new relevant state.
19914 (vectorizable_live_operation): vectorize live stmts using
19915 BIT_FIELD_REF. Remove special case for gimple assigns stmts.
19916 * tree-vect-stmts.c (is_simple_and_all_uses_invariant): New function.
19917 (vect_stmt_relevant_p): Check for stmts which are only used live.
19918 (process_use): Use of a stmt does not inherit it's live value.
19919 (vect_mark_stmts_to_be_vectorized): Simplify relevance inheritance.
19920 (vect_analyze_stmt): Check for new relevant state.
19921 * tree-vectorizer.h (vect_relevant): New entry for a stmt which is used
19922 outside the loop, but not inside it.
19923
19924 2016-06-03 Alan Hayward <alan.hayward@arm.com>
19925
19926 * tree-vectorizer.h (vect_get_vec_def_for_operand_1): New.
19927 * tree-vect-stmts.c (vect_get_vec_def_for_operand_1): New.
19928 (vect_get_vec_def_for_operand): Split out code.
19929
19930 2016-06-03 Segher Boessenkool <segher@kernel.crashing.org>
19931
19932 * config/rs6000/rs6000.md (define_peepholes for two mfcr's): Delete.
19933
19934 2016-06-03 Alan Hayward <alan.hayward@arm.com>
19935
19936 * tree-vect-stmts.c (vectorizable_call) Remove GOMP_SIMD_LANE code.
19937
19938 2016-06-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19939
19940 * config/arm/thumb1.md (*thumb1_mulsi3): Fix typos in comment.
19941
19942 2016-06-03 Jakub Jelinek <jakub@redhat.com>
19943
19944 PR middle-end/71387
19945 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): If redirecting
19946 to noreturn e->callee->decl that has void return type and void
19947 arguments, adjust gimple_call_fntype and remove lhs even if it had
19948 previously addressable type.
19949
19950 2016-06-02 Jeff Law <law@redhat.com>
19951
19952 PR tree-optimization/71328
19953 * tree-ssa-threadupdate.c (duplicate_thread_path): Fix off-by-one
19954 error when checking for a jump back onto the copied path.
19955
19956 2016-06-02 David Malcolm <dmalcolm@redhat.com>
19957
19958 * config/microblaze/microblaze.c (get_branch_target): Add return
19959 NULL_RTX for the non-CALL_P case.
19960 (insert_wic_for_ilb_runout): Remove unused local "wic_addr1".
19961 (insert_wic): Remove unused local "j".
19962
19963 2016-06-02 Martin Liska <mliska@suse.cz>
19964
19965 * predict.def: Fix typo in PRED_FORTRAN_FAIL_IO display name.
19966
19967 2016-06-02 H.J. Lu <hongjiu.lu@intel.com>
19968 Julia Koval <julia.koval@intel.com>
19969
19970 * function.c (assign_parm_setup_stack): Force source into a
19971 register if needed.
19972 * target.def (function_incoming_arg): Update documentation to
19973 allow arbitrary address computation based on hard register.
19974 * doc/tm.texi: Regenerated.
19975
19976 2016-06-02 Martin Liska <mliska@suse.cz>
19977
19978 * predict.c (combine_predictions_for_bb): Fix first match in
19979 cases where a first predictor contains more than one occurence
19980 in list of predictors. Take the best value in such case.
19981
19982 2016-06-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19983
19984 PR rtl-optimization/71295
19985 * rtlanal.c (subreg_get_info): If taking a subreg at the requested
19986 offset would go over the size of the inner mode reject it.
19987
19988 2016-06-02 Jakub Jelinek <jakub@redhat.com>
19989
19990 * config/i386/sse.md (*vec_concatv4si): Use v=v,v instead of
19991 x=x,x and v=v,m instead of x=x,m.
19992
19993 * config/i386/sse.md (*vec_concatv2si_sse4_1): Add avx512dq v=Yv,rm
19994 alternative. Change x=x,x alternative to v=Yv,Yv and x=rm,C
19995 alternative to v=rm,C.
19996
19997 * config/i386/sse.md (*vec_concatv2di): Add x86_avx512dq v=Yv,rm
19998 alternative. Change x=xm,C alternative to v=vm,C, x=x,x alternative
19999 to v=Yv,Yv and x=x,m to v=v,m. Use maybe_evex prefix attribute
20000 instead of vex for the last two above mentioned alternatives.
20001
20002 2016-06-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20003
20004 PR target/70830
20005 * config/arm/arm.c (arm_output_multireg_pop): Guard "pop" on update.
20006
20007 2016-06-02 Segher Boessenkool <segher@kernel.crashing.org>
20008
20009 * config/rs6000/dfp.md (trunctddd2): Correct the "length" attribute.
20010
20011 2016-06-01 David Malcolm <dmalcolm@redhat.com>
20012
20013 * config/rl78/rl78.c (rl78_expand_prologue): Convert local
20014 from int to unsigned.
20015
20016 2016-05-31 Michael Meissner <meissner@linux.vnet.ibm.com>
20017
20018 * config/rs6000/vsx.md (vsx_splat_<mode>, V2DI/V2DF): Simplify
20019 alternatives, eliminating preferred register class. Add support
20020 for the MTVSRDD instruction in ISA 3.0.
20021 (vsx_splat_v4si_internal): Use splat_input_operand instead of
20022 reg_or_indexed_operand.
20023 (vsx_splat_v4sf_internal): Likewise.
20024
20025 2016-05-31 Michael Meissner <meissner@linux.vnet.ibm.com>
20026
20027 PR target/71186
20028 * config/rs6000/vsx.md (xxspltib_<mode>_nosplit): Add alternatives
20029 for loading up all 0's or all 1's.
20030
20031 2016-06-01 Thomas Preud'homme <thomas.preudhomme@arm.com>
20032
20033 * doc/sourcebuild.texi (arm_acq_rel): Document new effective target.
20034
20035 2016-06-01 Eduard Sanou <dhole@openmailbox.org>
20036
20037 * doc/cppenv.texi: Note that the `%s` in `date` is a non-standard
20038 extension.
20039 * gcc.c (driver_handle_option): Call set_source_date_epoch_envvar.
20040 * gcc.c (set_source_date_epoch_envvar): New function, sets
20041 the SOURCE_DATE_EPOCH environment variable to the current time.
20042
20043 2016-06-01 Eric Botcazou <ebotcazou@adacore.com>
20044
20045 * tree-vect-loop.c (vect_determine_vectorization_factor): Also compute
20046 the factor for live Phi nodes.
20047
20048 2016-06-01 Jan Hubicka <hubicka@ucw.cz>
20049
20050 * loop-dolop.c (doloop_optimize): Us likely max iteration bound.
20051 * tree-parloops.c (parallelize_loops): likewise.
20052 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop,
20053 tree_unswitch_outer_loop): likewise.
20054
20055 2016-06-01 Jakub Jelinek <jakub@redhat.com>
20056
20057 PR middle-end/71371
20058 * gimplify.c (gimplify_omp_for): Temporarily clear gimplify_omp_ctxp
20059 around creation of the temporary.
20060
20061 2016-06-01 Richard Biener <rguenther@suse.de>
20062
20063 PR tree-optimization/71366
20064 * tree-ssa-loop-ivcanon.c (edges_to_remove): New global.
20065 (unloop_loops): Move removing edges here ...
20066 (try_unroll_loop_completely): ... from here.
20067 (try_peel_loop): ... and here.
20068 (tree_unroll_loops_completely_1): Track parent loops via
20069 bitmap of header BBs.
20070 (tree_unroll_loops_completely): Adjust for that.
20071
20072 2016-06-01 Kelvin Nilsen <kelvin@gcc.gnu.org>
20073
20074 * config/rs6000/altivec.h (vec_slv): New macro.
20075 (vec_srv): New macro.
20076 * config/rs6000/altivec.md (UNSPEC_VSLV): New value.
20077 (UNSPEC_VSRV): New value.
20078 (vslv): New insn.
20079 (vsrv): New insn.
20080 * config/rs6000/rs6000-builtin.def (vslv): New builtin definition.
20081 (vsrv): New builtin definition.
20082 * config/rs6000/rs6000-c.c (P9V_BUILTIN_VSLV): Macro expansion to
20083 define argument types for new builtin.
20084 (P9V_BUILTIN_VSRV): Macro expansion to define argument types for
20085 new builtin.
20086 * doc/extend.texi: Document the new vec_vslv and vec_srv built-in
20087 functions.
20088
20089 2016-06-01 Uros Bizjak <ubizjak@gmail.com>
20090 Jocelyn Mayer <l_indien@magic.fr>
20091
20092 PR target/67310
20093 * config/i386/driver-i386.c (host_detect_local_cpu): Correctly
20094 detect processor family for signature_CENTAUR_ebx.
20095 <case PROCESSOR_I486>: Pass c3, winchip2 or winchip-c6 for
20096 signature_CENTAUR_ebx.
20097 <case PROCESSOR _PENTIUMPRO>: Pass c3-2 for signature_CENTAUR_ebx.
20098 <default>: Pass x86-64 for has_longmode.
20099
20100 2016-06-01 Nathan Sidwell <nathan@acm.org>
20101
20102 * config/nvptx/nvptx.c (nvptx_assemble_undefined_decl): Reject
20103 undefined weak.
20104
20105 2016-06-01 Richard Biener <rguenther@suse.de>
20106
20107 PR tree-optimization/71261
20108 * tree-vect-patterns.c (check_bool_pattern): Gather a hash-set
20109 of stmts successfully put in the bool pattern. Remove
20110 single-use restriction.
20111 (adjust_bool_pattern_cast): Add cast at the use site via the
20112 pattern def sequence.
20113 (adjust_bool_pattern): Remove recursion, maintain a hash-map
20114 of patterned defs. Use the pattern def seqence instead of
20115 multiple independent patterns.
20116 (sort_after_uid): New qsort compare function.
20117 (adjust_bool_stmts): New function to process stmts in the bool
20118 pattern in IL order.
20119 (vect_recog_bool_pattern): Adjust.
20120 * tree-if-conv.c (ifcvt_split_def_stmt): Remove.
20121 (ifcvt_walk_pattern_tree): Likewise.
20122 (stmt_is_root_of_bool_pattern): Likewise.
20123 (ifcvt_repair_bool_pattern): Likewise.
20124 (tree_if_conversion): Do not call ifcvt_repair_bool_pattern.
20125
20126 2016-06-01 Jan Hubicka <hubicka@ucw.cz>
20127
20128 * loop-unroll.c (decide_unroll_constant_iterations,
20129 decide_unroll_runtime_iterations, decide_unroll_stupid): Use
20130 likely upper bounds.
20131 * loop-iv.c (find_simple_exit): Dump likely upper bounds.
20132
20133 2016-06-01 Thomas Schwinge <thomas@codesourcery.com>
20134
20135 * tree-core.h (enum omp_clause_code): Remove
20136 OMP_CLAUSE_DEVICE_RESIDENT. Adjust all users.
20137
20138 2016-06-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20139
20140 * config/arm/sync.md (arm_store_exclusive<mode>):
20141 Use 'H' output modifier on operands[2] rather than creating a new
20142 entry in out-of-bounds memory of the operands array.
20143 (arm_store_release_exclusivedi): Likewise.
20144
20145 2016-06-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20146
20147 * config/arm/arm.c (arm_fusion_enabled_p): New function.
20148 * config/arm/arm-protos.h (arm_fusion_enabled_p): Declare prototype.
20149 * config/arm/crypto.md (crypto_<crypto_pattern>, CRYPTO_UNARY):
20150 Add "=w,0" alternative. Enable it when AES/AESMC fusion is enabled.
20151
20152 2016-06-01 Eric Botcazou <ebotcazou@adacore.com>
20153
20154 * tree-vect-loop.c (vect_determine_vectorization_factor): Also take
20155 into account live statements for mask producers.
20156
20157 2016-06-01 Richard Biener <rguenther@suse.de>
20158
20159 PR tree-optimization/71311
20160 * match.pd (@0 < @1 && @0 < @2 -> @0 < min(@1,@2)): Add :c and
20161 restrict to non-INTEGER_CST @0.
20162
20163 2016-06-01 Richard Biener <rguenther@suse.de>
20164
20165 * match.pd ((A & B) - (A & ~B) -> B - (A ^ B)): Add missing :c.
20166 (relational patterns): Use :c to avoid pattern duplications.
20167
20168 2016-06-01 Richard Biener <rguenther@suse.de>
20169
20170 * genmatch.c (comparison_code_p): New predicate.
20171 (swap_tree_comparison): New function.
20172 (commutate): Add for_vec parameter to append new for entries.
20173 Support commutating relational operators by swapping it alongside
20174 operands.
20175 (lower_commutative): Adjust.
20176 (dt_simplify::gen): Do not pass artificial operators to gen
20177 functions.
20178 (decision_tree::gen): Do not add artificial operators as parameters.
20179 (parser::parse_expr): Verify operator commutativity when :c is
20180 applied. Allow :C to override this.
20181 * match.pd: Adjust patterns to use :C instead of :c where required.
20182
20183 2016-06-01 Patrick Palka <ppalka@gcc.gnu.org>
20184
20185 PR tree-optimization/71077
20186 * tree-ssa-threadedge.c (simplify_control_stmt_condition_1): In
20187 the combining step, use boolean_false_node and boolean_true_node
20188 as the designated false/true return values.
20189
20190 2016-05-31 Jan Hubicka <hubicka@ucw.cz>
20191
20192 * predict.def (PRED_LOOP_EXTRA_EXIT): Define.
20193 * predict.c (predict_iv_comparison): Also check PRED_LOOP_EXTRA_EXIT.
20194 (predict_extra_loop_exits): Use PRED_LOOP_EXTRA_EXIT instead of
20195 PRED_LOOP_EXIT.
20196
20197 2016-05-31 Jan Hubicka <hubicka@ucw.cz>
20198
20199 * doc/invoke.texi (-frename-registers): Drop -fpeel-loops from list
20200 of flags impliying the register renaming.
20201 * toplev.c (process_options): Do not imply flag_rename_registers with
20202 loop peeling.
20203
20204 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
20205
20206 * config/sh/sh.h (ASM_OUTPUT_SYMBOL_REF): Remove macro and use the
20207 default implementation.
20208
20209 2016-05-31 Nathan Sidwell <nathan@acm.org>
20210
20211 * dwarf2out.c (cur_line_info_table): Add GTY marker.
20212
20213 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
20214
20215 * config/sh/constraints.md (b): Remove constraint.
20216 * config/sh/predicates.md (arith_reg_operand): Remove
20217 TARGET_REGISTER_P.
20218 * config/sh/sh-modes.def (PDI): Remove.
20219 * config/sh/sh.c (sh_target_reg_class,
20220 sh_optimize_target_register_callee_saved): Remove functions.
20221 (sh_option_override): Don't set MASK_SAVE_ALL_TARGET_REGS.
20222 (sh_expand_epilogue): Update comment.
20223 (sh_hard_regno_mode_ok, sh_register_move_cost, calc_live_regs,
20224 sh_secondary_reload): Remove TARGET_REGS related code.
20225 * config/sh/sh.h (FIRST_TARGET_REG, LAST_TARGET_REG,
20226 TARGET_REGISTER_P): Remove macros.
20227 (SH_DBX_REGISTER_NUMBER, REG_ALLOC_ORDER): Remove target regs.
20228 * config/sh/sh.md (PR_MEDIA_REG, T_MEDIA_REG, FR23_REG, TR0_REG,
20229 TR1_REG, TR2_REG): Remove constants.
20230 * config/sh/sh.opt (SAVE_ALL_TARGET_REGS): Remove.
20231
20232 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
20233
20234 * config/sh/sh.md (adddi3, subdi3, negdi2, abs<mode>2): Remove
20235 define_expand patterns.
20236 (adddi3_compact): Rename to adddi3.
20237 (subdi3_compact): Rename to subdi3.
20238 (*negdi2): Rename to negdi2.
20239 (*abs<mode>2): Rename to abs<mode>2.
20240
20241 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
20242
20243 * config/rx/rx.md (FETCHOP_NO_MINUS): New code iterator.
20244 (atomic_<fetchop_name>_fetchsi): Extract minus operator into ...
20245 (atomic_sub_fetchsi): ... this new pattern.
20246 (mvtc): Add CC_REG clobber.
20247
20248 2016-05-31 Marek Polacek <polacek@redhat.com>
20249
20250 * gimplify.c (gimplify_switch_expr): Also handle GIMPLE_TRY.
20251
20252 2016-05-31 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20253
20254 * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Use
20255 aarch64_fusion_enabled_p to check for fusion capabilities.
20256
20257 2016-05-31 Richard Biener <rguenther@suse.de>
20258
20259 PR tree-optimization/71352
20260 * tree-ssa-reassoc.c (zero_one_operation): Handle op equal to
20261 minus one and a negate.
20262
20263 2016-05-31 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20264
20265 * config/aarch64/aarch64.c (aarch64_simd_attr_length_move): Delete.
20266 * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_move):
20267 Delete prototype.
20268 * config/aarch64/iterators.md (insn_count): Add descriptive comment.
20269 * config/aarch64/aarch64-simd.md (*aarch64_mov<mode>, VSTRUCT modes):
20270 Remove use of aarch64_simd_attr_length_move, set length attribute
20271 directly.
20272 (*aarch64_be_movoi): Likewise.
20273 (*aarch64_be_movci): Likewise.
20274 (*aarch64_be_movxi): Likewise.
20275
20276 2016-05-31 Jan Hubicka <hubicka@ucw.cz>
20277
20278 * loop-init.c (gate): Do not enale RTL loop unroller with -fpeel-loops.
20279 It no longer does that.
20280 * toplev.c (process_options): Do not enable flag_web with -fpeel-loops.
20281
20282 2016-05-31 Wladimir J. van der Laan <laanwj@gmail.com>
20283
20284 * config/aarch64/arm_neon.h (vdupb_laneq_s8): Remove spurious
20285 attribute __unused__.
20286
20287 2016-05-31 Thomas Preud'homme <thomas.preudhomme@arm.com>
20288
20289 * config/arm/arm-protos.h (arm_arch_thumb1): Declare.
20290 * config/arm/arm.c (arm_arch_thumb1): Define.
20291 (arm_option_override): Initialize arm_arch_thumb1.
20292 * config/arm/arm.h (arm_arch_thumb1): Declare.
20293 (TARGET_ARM_ARCH_ISA_THUMB): Use arm_arch_thumb to determine if target
20294 support Thumb-1 ISA.
20295
20296 2016-05-31 Kirill Yukhin <kirill.yukhin@intel.com>
20297
20298 PR target/71346
20299 * config/i386/sse.md (define_insn_and_split "*vec_extractv4sf_0"): Use
20300 `Yv' for scalar operand.
20301
20302 2016-05-31 Tom de Vries <tom@codesourcery.com>
20303
20304 PR tree-optimization/69068
20305 * graphite-isl-ast-to-gimple.c (copy_bb_and_scalar_dependences): Handle
20306 phis with more than two args.
20307
20308 2016-05-30 Andreas Tobler <andreast@gcc.gnu.org>
20309
20310 * config.gcc: Move hard float support for arm*hf*-*-freebsd* into
20311 armv6*-*-freebsd* for FreeBSD 11. Eliminate the arm*hf*-*-freebsd*
20312 target.
20313
20314 2016-05-30 Jose E. Marchesi <jose.marchesi@oracle.com>
20315
20316 * config.gcc (sparc*-*-*): Support cpu_32, cpu_64, tune_32 and
20317 tune_64.
20318 * doc/install.texi (--with-cpu-32, --with-cpu-64): Document
20319 support on SPARC.
20320 * config/sparc/linux64.h (OPTION_DEFAULT_SPECS): Add entries for
20321 cpu_32, cpu_64, tune_32 and tune_64.
20322 * config/sparc/sol2.h (OPTION_DEFAULT_SPECS): Likewise.
20323
20324 2016-05-30 Uros Bizjak <ubizjak@gmail.com>
20325
20326 * config/i386/sync.md (mfence_nosse): Use "lock orl $0, -4(%esp)".
20327
20328 2016-05-30 Andi Kleen <ak@linux.intel.com>
20329
20330 * auto-profile.c (read_profile): Replace asserts with errors
20331 when file does not exist.
20332 * gcov-io.c (gcov_read_words): Dito.
20333
20334 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
20335
20336 * tree-cfg.c (print_loop): Print likely upper bounds.
20337
20338 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
20339
20340 * doc/invoke.texi (-fpeel-loops,-O3): Update documentation.
20341 * opts.c (default_options): Enable peel loops at -O3.
20342 * tree-ssa-loop-ivcanon.c (peeled_loops): New static var.
20343 (try_peel_loop): Do not re-peel already peeled loops;
20344 use likely upper bounds; fix profile updating.
20345 (pass_complete_unroll::execute): Initialize peeled_loops.
20346
20347 2016-05-30 Martin Liska <mliska@suse.cz>
20348
20349 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Scale
20350 computed costs by frequency of BB they belong to.
20351 (get_scaled_computation_cost_at): New function.
20352
20353 2016-05-30 Alexander Monakov <amonakov@ispras.ru>
20354 Marc Glisse <marc.glisse@inria.fr>
20355
20356 PR tree-optimization/71289
20357 * match.pd (-1 / B < A, A > -1 / B): New transformations.
20358
20359 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
20360
20361 * tree-vect-loop.c (vect_transform_loop): Update likely bounds.
20362
20363 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
20364
20365 * tree-ssa-loop-ivcanon.c (try_peel_loop): Correctly set wont_exit
20366 for peeled copies; avoid underflow when updating estimates; correctly
20367 scale loop profile.
20368
20369 2016-05-30 Kugan Vivekanandarajah <kuganv@linaro.org>
20370
20371 * tree-ssa-reassoc.ci (swap_ops_for_binary_stmt): Fix typo from commit
20372 r236875. Corrected oe3 to oe2 as obvious.
20373
20374 2016-05-30 Kugan Vivekanandarajah <kuganv@linaro.org>
20375
20376 PR middle-end/71269
20377 PR middle-end/71252
20378 * tree-ssa-reassoc.c (insert_stmt_before_use): Use find_insert_point so
20379 that inserted stmt will not dominate stmts that defines its operand.
20380 (rewrite_expr_tree): Add stmt_to_insert before adding the use stmt.
20381 (rewrite_expr_tree_parallel): Likewise.
20382
20383 2016-05-30 Kugan Vivekanandarajah <kuganv@linaro.org>
20384
20385 PR middle-end/71252
20386 * tree-ssa-reassoc.c (swap_ops_for_binary_stmt): Fix swap such that
20387 all fields including stmt_to_insert are swapped.
20388
20389 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
20390
20391 * predict.h (force_edge_cold): Declare.
20392 * predict.c (force_edge_cold): New function.
20393 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Fix profile
20394 updating.
20395 (canonicalize_loop_induction_variables): Fix formating.
20396
20397 2016-05-30 Eric Botcazou <ebotcazou@adacore.com>
20398
20399 * config/visium/visium.c (visium_split_double_add): Minor tweaks.
20400 (visium_expand_copysign): Use gen_int_mode directly.
20401 (visium_compute_frame_size): Minor tweaks.
20402
20403 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
20404
20405 * tree-vect-loop.c (vect_analyze_loop_2): Use
20406 likely_max_stmt_executions_int.
20407
20408 2016-05-30 Tom de Vries <tom@codesourcery.com>
20409
20410 PR tree-optimization/69067
20411 * graphite-isl-ast-to-gimple.c (get_def_bb_for_const): Remove assert.
20412
20413 2016-05-29 Uros Bizjak <ubizjak@gmail.com>
20414
20415 PR target/71245
20416 * config/i386/sync.md (define_peephole2 atomic_storedi_fpu):
20417 New peepholes to remove unneeded fild/fistp pairs.
20418 (define_peephole2 atomic_loaddi_fpu): Ditto.
20419
20420 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
20421
20422 * predict.c (maybe_hot_frequency_p): Avoid division.
20423
20424 2016-05-28 Gerald Pfeifer <gerald@pfeifer.com>
20425
20426 * doc/install.texi: Use https for shop.fsf.org.
20427
20428 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
20429
20430 * tree-ssa-loop-ivopts.c (estimated_stmt_executions_int): Use
20431 likely_max_stmt_executions_int.
20432
20433 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
20434
20435 * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Use
20436 likely_max_stmt_executions_int.
20437
20438 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
20439
20440 * profile.c (compute_branch_probabilities): Do not report hitrates
20441 here.
20442 (branch_prob): Report hitrates here.
20443 * predict.c (gimple_predict_edge): Do not assert profile status;
20444 fix formatting issues.
20445
20446 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
20447
20448 * predict.c (edge_predicted_by_p): New function.
20449 (predict_paths_for_bb): Do not put multiple predictions of the same type
20450 on one edge.
20451
20452 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
20453
20454 * tree-ssa-loop-niter.c (number_of_iterations_exit): Revert accidental
20455 commit.
20456
20457 2016-05-28 Alan Modra <amodra@gmail.com>
20458
20459 * dominance.c (verify_dominators): Don't segfault on NULL imm_bb.
20460
20461 2016-05-28 Alan Modra <amodra@gmail.com>
20462
20463 PR rtl-optimization/71275
20464 * ira.c (ira): Free dominance info.
20465
20466 2016-05-27 Gerald Pfeifer <gerald@pfeifer.com>
20467
20468 * doc/sourcebuild.texi: New address for upstream Go repository.
20469
20470 2016-05-27 Thomas Preud'homme <thomas.preudhomme@arm.com>
20471
20472 * config/arm/arm.h (TARGET_ARM_V6M): Remove.
20473 (TARGET_ARM_V7M): Likewise.
20474
20475 2016-05-26 Jeff Law <law@redhat.com>
20476
20477 * tree-ssa-threadedge.c: Remove include of tree-ssa-threadbackward.h.
20478 (thread_across_edge): Remove calls to find_jump_threads_backwards.
20479 * passes.def: Add jump threading passes before DOM/VRP.
20480 * tree-ssa-threadbackward.c (find_jump_threads_backwards): Change
20481 argument to a basic block from an edge. Remove tests which are
20482 handled elsewhere.
20483 (pass_data_thread_jumps, class pass_thread_jumps): New.
20484 (pass_thread_jumps::gate, pass_thread_jumps::execute): New.
20485 (make_pass_thread_jumps): Likewise.
20486 * tree-pass.h (make_pass_thread_jumps): Declare.
20487
20488 2016-05-27 Eric Botcazou <ebotcazou@adacore.com>
20489
20490 * config/visium/visium-protos.h (split_double_move): Rename into...
20491 (visium_split_double_move): ...this.
20492 (visium_split_double_add): Declare.
20493 * config/visium/visium.c (split_double_move): Rename into...
20494 (visium_split_double_move): ...this.
20495 (visium_split_double_add): New function.
20496 (visium_expand_copysign): Renumber operands for consistency.
20497 * config/visium/visium.md (DImode move splitter): Adjust to renaming.
20498 (DFmode move splitter): Likewise.
20499 (*addi3_insn): Split by means of visium_split_double_add.
20500 (*adddi3_insn_flags): Delete.
20501 (*plus_plus_sltu<subst_arith>): New insn.
20502 (*subdi3_insn): Split by means of visium_split_double_add.
20503 (subdi3_insn_flags): Delete.
20504 (*minus_minus_sltu<subst_arith>): New insn.
20505 (*negdi2_insn): Split by means of visium_split_double_add.
20506 (*negdi2_insn_flags): Delete.
20507
20508 2016-05-27 Ulrich Weigand <uweigand@de.ibm.com>
20509
20510 * configure.ac: Treat a --with-headers option without argument
20511 the same as the default (i.e. consult sys-include directory).
20512 * configure: Regenerate.
20513
20514 2016-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20515
20516 * config/aarch64/aarch64.c (aarch64_fusion_enabled_p): New function.
20517 * config/aarch64/aarch64-protos.h (aarch64_fusion_enabled_p): Declare
20518 prototype.
20519 * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aesmc_op>v16qi):
20520 Add "=w,0" alternative. Enable it when AES/AESMC fusion is enabled.
20521
20522 2016-05-27 Jiong Wang <jiong.wang@arm.com>
20523
20524 PR target/63596
20525 * config/aarch64/aarch64.c (aarch64_expand_builtin_va_start): Honor
20526 tree-stdarg analysis results.
20527 (aarch64_setup_incoming_varargs): Likewise.
20528
20529 2016-05-27 Jiong Wang <jiong.wang@arm.com>
20530
20531 * config/aarch64/aarch64.c (aarch64_build_builtin_va_list): Initialize
20532 va_list_gpr_counter_field and va_list_fpr_counter_field.
20533
20534 2016-05-27 Wilco Dijkstra <wdijkstr@arm.com>
20535
20536 PR67609
20537 * config/aarch64/aarch64.h (CANNOT_CHANGE_MODE_CLASS): Remove.
20538 * config/aarch64/aarch64.c
20539 (aarch64_cannot_change_mode_class): Remove function.
20540 * config/aarch64/aarch64-protos.h
20541 (aarch64_cannot_change_mode_class): Remove.
20542
20543 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
20544
20545 * cfgloop.c (record_niter_bound): Record likely upper bounds.
20546 (likely_max_stmt_executions_int, get_likely_max_loop_iterations,
20547 get_likely_max_loop_iterations_int): New.
20548 * cfgloop.h (struct loop): Add nb_iterations_likely_upper_bound,
20549 any_likely_upper_bound.
20550 (get_likely_max_loop_iterations_int, get_likely_max_loop_iterations):
20551 Declare.
20552 * cfgloopmanip.c (copy_loop_info): Copy likely upper bounds.
20553 * loop-unroll.c (unroll_loop_constant_iterations): Update likely
20554 upper bound.
20555 (unroll_loop_constant_iterations): Likewise.
20556 (unroll_loop_runtime_iterations): Likewise.
20557 * lto-streamer-in.c (input_cfg): Stream likely upper bounds.
20558 * lto-streamer-out.c (output_cfg): Likewise.
20559 * tree-ssa-loop-ivcanon.c (try_peel_loop): Update likely upper
20560 bounds.
20561 (canonicalize_loop_induction_variables): Dump likely upper bounds.
20562 * tree-ssa-loop-niter.c (record_estimate): Record likely upper bounds.
20563 (likely_max_loop_iterations): New.
20564 (likely_max_loop_iterations_int): New.
20565 (likely_max_stmt_executions): New.
20566 * tree-ssa-loop-niter.h (likely_max_loop_iterations,
20567 likely_max_loop_iterations_int, likely_max_stmt_executions_int,
20568 likely_max_stmt_executions): Declare.
20569
20570 2016-05-27 Marek Polacek <polacek@redhat.com>
20571
20572 PR middle-end/71308
20573 * gimple-fold.c (gimple_fold_call): Check that LHS is not null.
20574
20575 2016-05-27 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
20576
20577 * config/s390/s390.md (2x risbg splitters): Use
20578 reg_overlap_mentioned_p instead of rtx_equal_p.
20579
20580 2016-05-27 Dominik Vogt <vogt@linux.vnet.ibm.com>
20581
20582 * combine.c (make_compound_operation): Take known zero bits into
20583 account when checking for possible zero_extend.
20584
20585 2016-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20586
20587 * config/aarch64/aarch64.md (ashl<mode>3, SHORT modes):
20588 Use const_int_operand for operand 2 predicate. Simplify expand code
20589 as a result.
20590
20591 2016-05-27 Ilya Enkovich <ilya.enkovich@intel.com>
20592
20593 PR middle-end/71279
20594 * fold-const.c (fold_ternary_loc): Don't fold VEC_COND_EXPR
20595 into comparison.
20596
20597 2016-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20598
20599 * config/aarch64/aarch64-modes.def (CC_ZESWP, CC_SESWP): Delete.
20600 * config/aarch64/aarch64.c (aarch64_select_cc_mode): Remove condition
20601 that returns CC_SESWPmode and CC_ZESWPmode.
20602 (aarch64_get_condition_code_1): Remove handling of CC_SESWPmode
20603 and CC_SESWPmode.
20604 (aarch64_rtx_costs): Likewise.
20605
20606 2016-05-26 Michael Meissner <meissner@linux.vnet.ibm.com>
20607
20608 * config/rs6000/rs6000.c (rs6000_emit_p9_fp_minmax): New function
20609 for ISA 3.0 min/max support.
20610 (rs6000_emit_p9_fp_cmove): New function for ISA 3.0 floating point
20611 conditional move support.
20612 (rs6000_emit_cmove): Call rs6000_emit_p9_fp_minmax and
20613 rs6000_emit_p9_fp_cmove if the ISA 3.0 instructions are
20614 available.
20615 * config/rs6000/rs6000.md (SFDF2): New iterator to allow doing
20616 conditional moves where the comparison type is different from move
20617 type.
20618 (fp_minmax): New code iterator for smin/smax.
20619 (minmax): New code attributes for min/max.
20620 (SMINMAX): Likewise.
20621 (smax<mode>3): Combine min, max insns into one insn using the
20622 fp_minmax code iterator. Add support for ISA 3.0 min/max
20623 instructions that don't need -ffast-math.
20624 (s<minmax><mode>3): Likewise.
20625 (smax<mode>3_vsx): Likewise.
20626 (smin<mode>3): Likewise.
20627 (s<minmax><mode>3_vsx): Likewise.
20628 (smin<mode>3_vsx): Likewise.
20629 (pre-VSX min/max splitters): Likewise.
20630 (s<minmax><mode>3_fpr): Likewise.
20631 (movsfcc): Rewrite floating point conditional moves to combine
20632 SFmode/DFmode into a single insn.
20633 (mov<mode>cc): Likewise.
20634 (movdfcc): Likewise.
20635 (fselsfsf4): Combine FSEL cases into a single insn, using SFDF and
20636 SFDF2 iterators to handle all combinations.
20637 (fseldfsf4): Likewise.
20638 (fsel<SFDF:mode><SFDF2:mode>4): Likewise.
20639 (fseldfdf4): Likewise.
20640 (fselsfdf4): Likewise.
20641 (mov<SFDF:mode><SFDF2:mode>cc_p9): Add support for the ISA 3.0
20642 comparison instructions that set a 0/-1 mask, and use it for
20643 floating point conditional move via XXSEL.
20644 (fpmask<mode>): Likewise.
20645 (xxsel<mode>): Likewise.
20646 * config/rs6000/predicates.md (min_max_operator): Delete, no
20647 longer used.
20648 (fpmask_comparison_operaton): New insn for ISA 3.0 comparison
20649 instructions that generate a 0/-1 mask for use with XXSEL.
20650 * config/rs6000/rs6000.h (TARGET_MINMAX_SF): New helper macros to
20651 say whether floating point min/max is available, either through
20652 FSEL, ISA 2.06 min/max, and ISA 3.0 min/max instrucitons.
20653 (TARGET_MINMAX_DF): Likewise.
20654
20655 2016-05-27 Alan Modra <amodra@gmail.com>
20656
20657 PR rtl-optimization/71275
20658 * ira.c (ira): Call loop_optimizer_init to set up bb_loop_depth
20659 for update_equiv_regs and combine_and_move_insns.
20660
20661 2016-05-26 Uros Bizjak <ubizjak@gmail.com>
20662
20663 * config/i386/i386.md (*movqi_internal) <attr "isa">: Use
20664 if_then_else or cond RTXes to calculate attribute value.
20665 * config/i386/mmx.md (*vec_extractv2sf_1) <attr "prefix_rep">: Ditto.
20666 <attr "length_immediate>: Ditto.
20667 (*vec_extractv2sf_1) <attr "length_immediate">: Ditto.
20668 * config/i386/sse.md (sse_loadlps) <attr "length_immediate">: Ditto.
20669 (*vec_concatv2sf_sse4_1) <attr "isa">: Ditto.
20670 <attr "type">: Ditto.
20671 <attr "prefix_data16">: Ditto.
20672 <attr "prefix_extra">: Ditto.
20673 <attr "length_immediate">: Ditto.
20674 <attr "prefix">: Ditto.
20675 (vec_set<mode>_0) <attr "isa">: Ditto.
20676 <attr "prefix_extra">: Ditto.
20677 <attr "length_immediate">: Ditto.
20678 <attr "prefix">: Ditto.
20679 (*vec_interleave_highv2df) <attr "prefix_data16">: Ditto.
20680 (*vec_interleave_lowv2df) <attr "prefix_data16">: Ditto.
20681 (sse2_storelpd) <attr "prefix_data16">: Ditto.
20682 (sse2_loadhpd) <attr "prefix_data16">: Ditto.
20683 (sse2_loadlpd) <attr "prefix_data16">: Ditto.
20684 <attr "length_immediate">: Ditto.
20685 <attr "prefix">: Ditto.
20686 (sse2_movsd) <attr "length_immediate">: Ditto.
20687 <attr "prefix">: Ditto.
20688 (vec_concatv2df) <attr "isa">: Ditto.
20689 <attr "prefix">: Ditto.
20690 (*vec_extractv4si) <attr "prefix_extra">: Ditto.
20691 (*vec_extractv2di_1) <attr "isa">: Ditto.
20692 <attr "type">: Ditto.
20693 <attr "length_immediate">: Ditto.
20694 <attr "prefix_rex">: Ditto.
20695 <attr "prefix_extra">: Ditto.
20696 (*vec_concatv2si_sse4_1) <attr "type">: Ditto.
20697 <attr "prefix_extra">: Ditto.
20698 <attr "length_immediate">: Ditto.
20699 (vec_concatv2di) <attr "isa">: Ditto.
20700 <attr "prefix_extra">: Ditto.
20701 <attr "length_immediate">: Ditto.
20702 <attr "prefix">: Ditto.
20703
20704 2016-05-26 Martin Liska <mliska@suse.cz>
20705
20706 * tree-ssa-loop-ivopts.c (comp_cost::infinite_cost_p): New
20707 function.
20708 (operator+): Likewise.
20709 (operator-): Likewise.
20710 (comp_cost::operator+=): Likewise.
20711 (comp_cost::operator-=): Likewise.
20712 (comp_cost::operator/=): Likewise.
20713 (comp_cost::operator*=): Likewise.
20714 (operator<): Likewise.
20715 (operator==): Likewise.
20716 (operator<=): Likewise.
20717 (new_cost): Remove.
20718 (infinite_cost_p): Likewise.
20719 (add_costs): Likewise.
20720 (sub_costs): Likewise.
20721 (compare_costs): Likewise.
20722 (set_group_iv_cost): Use the newly introduced functions.
20723 (get_address_cost): Likewise.
20724 (get_shiftadd_cost): Likewise.
20725 (force_expr_to_var_cost): Likewise.
20726 (split_address_cost): Likewise.
20727 (ptr_difference_cost): Likewise.
20728 (difference_cost): Likewise.
20729 (get_computation_cost_at): Likewise.
20730 (determine_group_iv_cost_generic): Likewise.
20731 (determine_group_iv_cost_address): Likewise.
20732 (determine_group_iv_cost_cond): Likewise.
20733 (autoinc_possible_for_pair): Likewise.
20734 (determine_group_iv_costs): Likewise.
20735 (cheaper_cost_pair): Likewise.
20736 (iv_ca_recount_cost): Likewise.
20737 (iv_ca_set_no_cp): Likewise.
20738 (iv_ca_set_cp): Likewise.
20739 (iv_ca_cost): Likewise.
20740 (iv_ca_new): Likewise.
20741 (iv_ca_dump): Likewise.
20742 (iv_ca_narrow): Likewise.
20743 (iv_ca_prune): Likewise.
20744 (iv_ca_replace): Likewise.
20745 (try_add_cand_for): Likewise.
20746 (try_improve_iv_set): Likewise.
20747 (find_optimal_iv_set): Likewise.
20748
20749 2016-05-26 Richard Sandiford <richard.sandiford@arm.com>
20750
20751 * tree-ssa-loop-ivopts.c (loop_body_includes_call): Don't assume
20752 that internal functions will clobber all caller-saved registers.
20753
20754 2016-05-26 Wilco Dijkstra <wdijkstr@arm.com>
20755
20756 * config/aarch64/aarch64.c (aarch64_case_values_threshold):
20757 Return a better case_values_threshold when optimizing.
20758
20759 2016-05-26 Wilco Dijkstra <wdijkstr@arm.com>
20760
20761 * config/aarch64/aarch64-simd.md (aarch64_combinez):
20762 Add ? to integer variant.
20763 (aarch64_combinez_be): Likewise.
20764
20765 2016-05-26 Jakub Jelinek <jakub@redhat.com>
20766
20767 * config/i386/sse.md (*vcvtps2ph_store<mask_name>): Use v constraint
20768 instead of x constraint.
20769 (vcvtps2ph256<mask_name>): Likewise.
20770
20771 * config/i386/sse.md (*ssse3_palignr<mode>_perm): Add avx512bw
20772 alternative. Formatting fix.
20773
20774 * config/i386/sse.md
20775 (<mask_codefor>avx512vl_shuf_<shuffletype>32x4_1<mask_name>): Rename
20776 to ...
20777 (avx512vl_shuf_<shuffletype>32x4_1<mask_name>): ... this.
20778 (*avx_vperm_broadcast_v4sf): Use v constraint instead of x. Use
20779 maybe_evex prefix instead of vex.
20780 (*avx_vperm_broadcast_<mode>): Use v constraint instead of x. Handle
20781 EXT_REX_SSE_REG_P (op0) case in the splitter.
20782
20783 2016-05-25 Jeff Law <law@redhat.com>
20784
20785 PR tree-optimization/71272
20786 * tree-ssa-threadbackward.c (convert_and_register_jump_thread_path):
20787 Update comments. Add test for empty path.
20788
20789 2016-05-25 Bill Seurer <seurer@linux.vnet.ibm.com>
20790
20791 * config/rs6000/altivec.h (vec_cmpne): Add #define for vec_cmpne.
20792 * config/rs6000/rs6000-builtin.def (vec_cmpne): Add vec_cmpne as a
20793 special case builtin.
20794 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
20795 code for ALTIVEC_BUILTIN_VEC_CMPNE.
20796 * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
20797 for __builtin_vec_cmpne.
20798
20799 2016-05-25 Eric Botcazou <ebotcazou@adacore.com>
20800
20801 * tree-ssa-phiopt.c (factor_out_conditional_conversion): Remove
20802 redundant test and bail out if the type of the new operand is not
20803 a GIMPLE register type after stripping a VIEW_CONVERT_EXPR.
20804
20805 2016-05-25 Uros Bizjak <ubizjak@gmail.com>
20806
20807 * config/i386/i386.opt (ix86_target_flags_explicit): Remove.
20808 (x_ix86_target_flags_explicit): Remove.
20809 * config/i386/i386.c (ix86_function_specific_save): Do not copy
20810 x_ix86_target_flags_explicit.
20811 (ix86_function_specific_restore): Ditto.
20812
20813 2016-05-25 Uros Bizjak <ubizjak@gmail.com>
20814 H.J. Lu <hongjiu.lu@intel.com>
20815
20816 PR target/70738
20817 * common/config/i386/i386-common.c
20818 (OPTION_MASK_ISA_GENERAL_REGS_ONLY_UNSET): New.
20819 (ix86_handle_option) <case OPT_mgeneral_regs_only>: Disable
20820 MPX, MMX, SSE and x87 instructions for -mgeneral-regs-only.
20821 * config/i386/i386.opt (ix86_target_flags): Add new Variable.
20822 (-mgeneral-regs-only): Add new option.
20823 * config/i386/i386.c (ix86_option_override_internal): Don't enable
20824 x87 instructions if only general registers are allowed.
20825 (ix86_target_string): Add ix86_flags argument. Handle additional
20826 flags options through ix86_flags argument. Update all callers.
20827 * doc/invoke.texi (x86 Options): Document -mgeneral-regs-only.
20828
20829 2016-05-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20830
20831 PR rtl-optimization/66940
20832 * ifcvt.c (noce_get_alt_condition): Check that incrementing or
20833 decrementing desired_val will not overflow before performing these
20834 operations.
20835
20836 2016-05-25 Ilya Verbin <ilya.verbin@intel.com>
20837
20838 * config/i386/i386-builtin-types.def: Add V16SI_FTYPE_V16SF,
20839 V8DF_FTYPE_V8DF_ROUND, V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND.
20840 * config/i386/i386.c (enum ix86_builtins): Add
20841 IX86_BUILTIN_CVTPS2DQ512_MASK, IX86_BUILTIN_FLOORPS512,
20842 IX86_BUILTIN_FLOORPD512, IX86_BUILTIN_CEILPS512, IX86_BUILTIN_CEILPD512,
20843 IX86_BUILTIN_TRUNCPS512, IX86_BUILTIN_TRUNCPD512,
20844 IX86_BUILTIN_CVTPS2DQ512, IX86_BUILTIN_VEC_PACK_SFIX512,
20845 IX86_BUILTIN_FLOORPS_SFIX512, IX86_BUILTIN_CEILPS_SFIX512,
20846 IX86_BUILTIN_ROUNDPS_AZ_SFIX512.
20847 (builtin_description bdesc_args): Add __builtin_ia32_floorps512,
20848 __builtin_ia32_ceilps512, __builtin_ia32_truncps512,
20849 __builtin_ia32_floorpd512, __builtin_ia32_ceilpd512,
20850 __builtin_ia32_truncpd512, __builtin_ia32_cvtps2dq512,
20851 __builtin_ia32_vec_pack_sfix512, __builtin_ia32_roundps_az_sfix512,
20852 __builtin_ia32_floorps_sfix512, __builtin_ia32_ceilps_sfix512.
20853 Change IX86_BUILTIN_CVTPS2DQ512 to IX86_BUILTIN_CVTPS2DQ512_MASK for
20854 __builtin_ia32_cvtps2dq512_mask.
20855 (ix86_expand_args_builtin): Handle V8DF_FTYPE_V8DF_ROUND,
20856 V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF.
20857 (ix86_builtin_vectorized_function): Handle builtins mentioned above.
20858 * config/i386/sse.md
20859 (<mask_codefor>avx512f_fix_notruncv16sfv16si<mask_name><round_name>):
20860 Rename to ...
20861 (avx512f_fix_notruncv16sfv16si<mask_name><round_name>): ... this.
20862 (<mask_codefor>avx512f_cvtpd2dq512<mask_name><round_name>): Rename
20863 to ...
20864 (avx512f_cvtpd2dq512<mask_name><round_name>): ... this.
20865 (avx512f_vec_pack_sfix_v8df): New define_expand.
20866 (avx512f_roundpd512): Rename to ...
20867 (avx512f_round<castmode>512): ... this. Change iterator.
20868 (avx512f_roundps512_sfix): New define_expand.
20869 (round<mode>2_sfix): Change iterator.
20870
20871 2016-05-25 Nick Clifton <nickc@redhat.com>
20872
20873 * config/msp430/msp430.c (msp430_attr): Produce an error if a
20874 static interrupt handler is detected.
20875 * config/msp430/msp430.h (LIB_SPEC): Do not use msp430.ld as the
20876 default linker script.
20877 * config/msp430/msp430.md (movpsihi2_lo): New pattern for loading
20878 the low part of a symbolic pointer.
20879
20880 2016-05-25 Richard Biener <rguenther@suse.de>
20881
20882 PR tree-optimization/71261
20883 * tree-if-conv.c (ifcvt_split_def_stmt): Walk uses on the
20884 interesting stmt instead of immediate uses when looking
20885 for the use operand to replace.
20886
20887 2016-05-25 Martin Liska <mliska@suse.cz>
20888
20889 * ipa-inline.c (edge_badness): Use 'w/' instead of 'w'.
20890
20891 2016-05-25 Richard Biener <rguenther@suse.de>
20892
20893 PR tree-optimization/71264
20894 * tree-vect-stmts.c (vect_init_vector): Properly deal with
20895 vector type val.
20896
20897 2016-05-25 Martin Liska <mliska@suse.cz>
20898
20899 PR tree-optimization/71239
20900 * tree.c (array_at_struct_end_p): Do not call operand_equal_p
20901 if DECL_SIZE is NULL.
20902
20903 2016-05-25 Richard Biener <rguenther@suse.de>
20904
20905 * timevar.def (TV_TREE_LOOP_IFCVT): Add.
20906 * tree-if-conv.c (pass_data_if_conversion): Use it.
20907
20908 2016-05-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
20909
20910 * cgraph.c (cgraph_node::get_availability): Fix typo in comment.
20911 * symtab.c (symtab_node::binds_to_current_def_p): Likewise.
20912 * varpool.c (varpool_node::get_availability): Likewise.
20913
20914 2016-05-24 Michael Meissner <meissner@linux.vnet.ibm.com>
20915
20916 * config/rs6000/altivec.md (VNEG iterator): New iterator for
20917 VNEGW/VNEGD instructions.
20918 (p9_neg<mode>2): New insns for ISA 3.0 VNEGW/VNEGD.
20919 (neg<mode>2): Add expander for V2DImode added in ISA 2.07, and
20920 support for ISA 3.0 VNEGW/VNEGD instructions.
20921
20922 2016-05-24 Cesar Philippidis <cesar@codesourcery.com>
20923
20924 * gimplify.c (omp_notice_variable): Use zero-length arrays for data
20925 pointers inside OACC_DATA regions.
20926 (gimplify_scan_omp_clauses): Prune firstprivate clause associated
20927 with OACC_DATA, OACC_ENTER_DATA and OACC_EXIT data regions.
20928 (gimplify_adjust_omp_clauses): Fix typo in comment.
20929
20930 2016-05-24 Michael Meissner <meissner@linux.vnet.ibm.com>
20931
20932 * config/rs6000/altivec.md (VParity): New mode iterator for vector
20933 parity built-in functions.
20934 (p9v_ctz<mode>2): Add support for ISA 3.0 vector count trailing
20935 zeros.
20936 (p9v_parity<mode>2): Likewise.
20937 * config/rs6000/vector.md (VEC_IP): New mode iterator for vector
20938 parity.
20939 (ctz<mode>2): ISA 3.0 expander for vector count trailing zeros.
20940 (parity<mode>2): ISA 3.0 expander for vector parity.
20941 * config/rs6000/rs6000-builtin.def (BU_P9_MISC_1): New macros for
20942 power9 built-ins.
20943 (BU_P9_64BIT_MISC_0): Likewise.
20944 (BU_P9_MISC_0): Likewise.
20945 (BU_P9V_AV_1): Likewise.
20946 (BU_P9V_AV_2): Likewise.
20947 (BU_P9V_AV_3): Likewise.
20948 (BU_P9V_AV_P): Likewise.
20949 (BU_P9V_VSX_1): Likewise.
20950 (BU_P9V_OVERLOAD_1): Likewise.
20951 (BU_P9V_OVERLOAD_2): Likewise.
20952 (BU_P9V_OVERLOAD_3): Likewise.
20953 (VCTZB): Add vector count trailing zeros support.
20954 (VCTZH): Likewise.
20955 (VCTZW): Likewise.
20956 (VCTZD): Likewise.
20957 (VPRTYBD): Add vector parity support.
20958 (VPRTYBQ): Likewise.
20959 (VPRTYBW): Likewise.
20960 (VCTZ): Add overloaded vector count trailing zeros support.
20961 (VPRTYB): Add overloaded vector parity support.
20962 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
20963 overloaded vector count trailing zeros and parity instructions.
20964 * config/rs6000/rs6000.md (wd mode attribute): Add V1TI and TI for
20965 vector parity support.
20966 * config/rs6000/altivec.h (vec_vctz): Add ISA 3.0 vector count
20967 trailing zeros support.
20968 (vec_cntlz): Likewise.
20969 (vec_vctzb): Likewise.
20970 (vec_vctzd): Likewise.
20971 (vec_vctzh): Likewise.
20972 (vec_vctzw): Likewise.
20973 (vec_vprtyb): Add ISA 3.0 vector parity support.
20974 (vec_vprtybd): Likewise.
20975 (vec_vprtybw): Likewise.
20976 (vec_vprtybq): Likewise.
20977 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
20978 the ISA 3.0 vector count trailing zeros and vector parity built-in
20979 functions.
20980
20981 2016-05-24 Kugan Vivekanandarajah <kuganv@linaro.org>
20982
20983 * tree-ssa-reassoc.c (sort_by_operand_rank): Skip checking gimple_bb
20984 when there is stmt_to_insert.
20985
20986 2016-05-24 Martin Sebor <msebor@redhat.com>
20987
20988 PR c++/71147
20989 * tree.h (complete_or_array_type_p): New inline function.
20990
20991 2016-05-24 Jakub Jelinek <jakub@redhat.com>
20992
20993 * config/i386/i386.h (TARGET_AVOID_4BYTE_PREFIXES): Define.
20994 * config/i386/constraints.md (Yr): Test TARGET_AVOID_4BYTE_PREFIXES
20995 rather than X86_TUNE_AVOID_4BYTE_PREFIXES.
20996
20997 * config/i386/sse.md (<sse4_1>_round<ssemodesuffix><avxsizesuffix>):
20998 Limit 1st alternative to noavx isa, split 2nd alternative into one
20999 noavx and one avx alternative, use *x and Bm in the former and
21000 x and m in the latter.
21001
21002 * config/i386/sse.md (vec_set<mode>_0): Use sse4_noavx isa instead
21003 of sse4 for the first alternative, drop %v from the template
21004 and d operand modifier. Split second alternative into one sse4_noavx
21005 and one avx alternative, use *x instead of *v in the former and v
21006 instead of *v in the latter.
21007 (*sse4_1_extractps): Use noavx isa instead of * for the first
21008 alternative, drop %v from the template. Split second alternative into
21009 one noavx and one avx alternative, use *x instead of *v in the
21010 former and v instead of *v in the latter.
21011 (<vi8_sse4_1_avx2_avx512>_movntdqa): Guard the first 2 alternatives
21012 with noavx and the last one with avx.
21013 (sse4_1_phminposuw): Guard first alternative with noavx isa,
21014 split the second one into one noavx and one avx alternative,
21015 use *x and Bm in the former and x and m in the latter one.
21016 (<sse4_1>_ptest<mode>): Use noavx instead of * for the first two
21017 alternatives.
21018
21019 * config/i386/sse.md (sse4_1_<code>v8qiv8hi2<mask_name>): Limit
21020 first two alternatives to noavx, use *x instead of *v in the second
21021 one, add avx alternative without *.
21022 (sse4_1_<code>v4qiv4si2<mask_name>, sse4_1_<code>v4hiv4si2<mask_name>,
21023 sse4_1_<code>v2qiv2di2<mask_name>, sse4_1_<code>v2hiv2di2<mask_name>,
21024 sse4_1_<code>v2siv2di2<mask_name>): Likewise.
21025
21026 2016-05-24 Jeff Law <law@redhat.com>
21027
21028 * tree-ssa-threadbackwards.c (convert_and_register_jump_thread_path):
21029 New function, extracted from...
21030 (fsm_find_control_statement_thread_paths): Here. Use the new function.
21031 Allow simple copies and constant initializations in the SSA chain.
21032
21033 2016-05-24 Marek Polacek <polacek@redhat.com>
21034
21035 PR c/71249
21036 * gimplify.c (gimplify_switch_expr): Look into the innermost lexical
21037 scope.
21038
21039 2016-05-24 Jakub Jelinek <jakub@redhat.com>
21040
21041 PR c++/71257
21042 * tree-vect-stmts.c (vectorizable_simd_clone_call): Handle
21043 SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP like
21044 SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP. Add
21045 SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP and
21046 SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP cases explicitly.
21047
21048 2016-05-24 Richard Biener <rguenther@suse.de>
21049
21050 PR tree-optimization/71240
21051 * tree-ssa-math-opts.c (init_symbolic_number): Verify the source
21052 has integral type.
21053
21054 2016-05-24 Richard Biener <rguenther@suse.de>
21055
21056 PR tree-optimization/71230
21057 * tree-ssa-reassoc.c (zero_one_operation): Handle negate special ops.
21058
21059 2016-05-24 Richard Sandiford <richard.sandiford@arm.com>
21060
21061 * tree-vectorizer.h (vectorizable_comparison): Delete.
21062 * tree-vect-loop.c (vectorizable_reduction): Remove redundant
21063 PURE_SLP_STMT check.
21064 * tree-vect-stmts.c (vectorizable_call): Likewise.
21065 (vectorizable_simd_clone_call): Likewise.
21066 (vectorizable_conversion): Likewise.
21067 (vectorizable_assignment): Likewise.
21068 (vectorizable_shift): Likewise.
21069 (vectorizable_operation): Likewise.
21070 (vectorizable_load): Likewise.
21071 (vectorizable_condition): Likewise.
21072 (vectorizable_store): Likewise. Assert that we don't have
21073 hybrid SLP.
21074 (vectorizable_comparison): Make static. Remove redundant
21075 PURE_SLP_STMT check.
21076 (vect_transform_stmt): Assert that we always have an slp_node
21077 if PURE_SLP_STMT.
21078
21079 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21080
21081 * config/arm/neon.md (ashldi3_neon): Replace comparison of INTVAL of
21082 operands[2] against 1 with comparison against CONST1_RTX.
21083 (<shift>di3_neon): Likewise.
21084 * config/arm/predicates.md (const0_operand): Replace with comparison
21085 against CONST0_RTX.
21086
21087 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21088
21089 * config/arm/arm.md (ashldi3): Replace comparison of INTVAL of
21090 operands[2] against 1 with comparison against CONST1_RTX.
21091 (ashrdi3): Likewise.
21092 (lshrdi3): Likewise.
21093 (ashlsi3): Replace cast of INTVAL to unsigned HOST_WIDE_INT with
21094 UINTVAL.
21095 (ashrsi3): Likewise.
21096 (lshrsi3): Likewise.
21097 (rotrsi3): Likewise.
21098 (define_split above *compareqi_eq0): Likewise.
21099 (define_split above "prologue"): Likewise.
21100 * config/arm/arm.c (thumb1_size_rtx_costs): Likewise.
21101 * config/arm/predicates.md (shift_operator): Likewise.
21102 (shift_nomul_operator): Likewise.
21103 (sat_shift_operator): Likewise.
21104 (thumb1_cmp_operand): Likewise.
21105 (const_neon_scalar_shift_amount_operand): Replace manual range
21106 check with IN_RANGE.
21107 * config/arm/thumb1.md (define_peephole2 above *thumb_subdi3):
21108 Replace cast of INTVAL to unsigned HOST_WIDE_INT with UINTVAL.
21109
21110 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21111
21112 * config/arm/arm.md (andsi3): Replace cast of 1 to HOST_WIDE_INT
21113 with HOST_WIDE_INT_1.
21114 (insv): Likewise.
21115 * config/arm/arm.c (optimal_immediate_sequence): Replace cast of
21116 1 to unsigned HOST_WIDE_INT with HOST_WIDE_INT_1U.
21117 (arm_canonicalize_comparison): Likewise.
21118 (thumb1_rtx_costs): Replace cast of 1 to HOST_WIDE_INT with
21119 HOST_WIDE_INT_1.
21120 (thumb1_size_rtx_costs): Likewise.
21121 (vfp_const_double_index): Replace cast of 1 to unsigned
21122 HOST_WIDE_INT with HOST_WIDE_INT_1U.
21123 (get_jump_table_size): Replace cast of 1 to HOST_WIDE_INT with
21124 HOST_WIDE_INT_1.
21125 (arm_asan_shadow_offset): Replace cast of 1 to unsigned
21126 HOST_WIDE_INT with HOST_WIDE_INT_1U.
21127 * config/arm/neon.md (vec_set<mode>): Replace cast of 1 to
21128 HOST_WIDE_INT with HOST_WIDE_INT_1.
21129
21130 2016-05-24 Marek Polacek <polacek@redhat.com>
21131
21132 * tree-cfg.h (should_remove_lhs_p): New predicate.
21133 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Use it.
21134 * gimplify.c (gimplify_modify_expr): Likewise.
21135 * tree-cfg.c (verify_gimple_call): Likewise.
21136 * tree-cfgcleanup.c (fixup_noreturn_call): Likewise.
21137 * gimple-fold.c: Include "tree-cfg.h".
21138 (gimple_fold_call): Use should_remove_lhs_p.
21139
21140 2016-05-24 Richard Biener <rguenther@suse.de>
21141
21142 PR tree-optimization/71253
21143 * cfganal.h (control_dependences): Make robust against edge
21144 and BB removal.
21145 (control_dependences::control_dependences): Remove edge_list argument.
21146 (control_dependences::get_edge): Remove.
21147 (control_dependences::get_edge_src): Add.
21148 (control_dependences::get_edge_dest): Likewise.
21149 (control_dependences::m_el): Make a vector of edge src/dest index.
21150 * cfganal.c (control_dependences::find_control_dependence): Adjust.
21151 (control_dependences::control_dependences): Likewise.
21152 (control_dependences::~control_dependence): Likewise.
21153 (control_dependences::get_edge): Remove.
21154 (control_dependences::get_edge_src): Add.
21155 (control_dependences::get_edge_dest): Likewise.
21156 * tree-ssa-dce.c (mark_control_dependent_edges_necessary): Use
21157 get_edge_src.
21158 (perform_tree_ssa_dce): Adjust.
21159 * tree-loop-distribution.c (create_edge_for_control_dependence): Use
21160 get_edge_src.
21161 (pass_loop_distribution::execute): Adjust. Do loop destroying
21162 conditional on changed.
21163
21164 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21165
21166 PR target/69857
21167 * config/arm/arm.c (gen_operands_ldrd_strd): Remove bogus early
21168 return. Reindent transformation comment and mention the ARM state
21169 behavior.
21170
21171 2016-05-24 Kugan Vivekanandarajah <kuganv@linaro.org>
21172
21173 PR middle-end/71252
21174 * tree-ssa-reassoc.c (rewrite_expr_tree_parallel): Add stmt_to_insert
21175 after build_and_add_sum creates new use stmt.
21176
21177 2016-05-24 Richard Sandiford <richard.sandiford@arm.com>
21178
21179 * tree-vect-stmts.c (vectorizable_load): Reorder checks so that
21180 load_lanes/grouped_load classification comes first. Don't check
21181 whether the vectorization factor is a multiple of the group size
21182 for load_lanes.
21183
21184 2016-05-24 Richard Sandiford <richard.sandiford@arm.com>
21185
21186 * tree-vect-data-refs.c (vect_analyze_group_access_1): Set
21187 GROUP_GAP for single-element interleaving.
21188 * tree-vect-stmts.c (vectorizable_load): Remove force_peeling
21189 variable.
21190
21191 2016-05-24 Richard Biener <rguenther@suse.de>
21192
21193 PR middle-end/70434
21194 PR c/69504
21195 * tree-ssa.c (non_rewritable_mem_ref_base): Make sure to mark
21196 bases which are accessed with non-invariant indices.
21197 * gimple-fold.c (maybe_canonicalize_mem_ref_addr): Re-write
21198 constant index ARRAY_REFs of vectors into BIT_FIELD_REFs.
21199
21200 2016-05-24 Kugan Vivekanandarajah <kuganv@linaro.org>
21201
21202 PR middle-end/71170
21203 * tree-ssa-reassoc.c (struct operand_entry): Add field stmt_to_insert.
21204 (add_to_ops_vec): Add stmt_to_insert.
21205 (add_repeat_to_ops_vec): Init stmt_to_insert.
21206 (insert_stmt_before_use): New.
21207 (transform_add_to_multiply): Remove mult_stmt insertion and add it
21208 to ops vector.
21209 (get_ops): Init stmt_to_insert.
21210 (maybe_optimize_range_tests): Likewise.
21211 (rewrite_expr_tree): Insert stmt_to_insert before use stmt.
21212 (rewrite_expr_tree_parallel): Likewise.
21213 (reassociate_bb): Likewise.
21214
21215 2016-05-23 Michael Meissner <meissner@linux.vnet.ibm.com>
21216
21217 PR target/71201
21218 * config/rs6000/altivec.md (altivec_vperm_<mode>_internal): Drop
21219 ISA 3.0 xxperm fusion alternative.
21220 (altivec_vperm_v8hiv16qi): Likewise.
21221 (altivec_vperm_<mode>_uns_internal): Likewise.
21222 (vperm_v8hiv4si): Likewise.
21223 (vperm_v16qiv8hi): Likewise.
21224
21225 2016-05-23 Michael Meissner <meissner@linux.vnet.ibm.com>
21226 Kelvin Nilsen <kelvin@gcc.gnu.org>
21227
21228 * config/rs6000/rs6000.c (rs6000_expand_vector_set): Generate
21229 vpermr/xxpermr on ISA 3.0.
21230 (altivec_expand_vec_perm_le): Likewise.
21231 * config/rs6000/altivec.md (UNSPEC_VPERMR): New unspec.
21232 (altivec_vpermr_<mode>_internal): Add VPERMR/XXPERMR support for
21233 ISA 3.0.
21234
21235 2016-05-23 Uros Bizjak <ubizjak@gmail.com>
21236
21237 * config/i386/i386.h (IS_STACK_MODE): Enable for
21238 TARGET_MIX_SSE_I387. Rewrite using X87_FLOAT_MODE_P and
21239 SSE_FLOAT_MODE_P macros.
21240 * config/i386/i386.c (ix86_preferred_reload_class): Use
21241 IS_STACK_MODE, INTEGER_CLASS_P, FLOAT_CLASS_P and Q_CLASS_P macros.
21242 Cleanup regclass processing for CONST_DOUBLE_P.
21243 (ix86_preferred_output_reload_class): Use IS_STACK_MODE macro.
21244 (ix86_rtx_costs): Remove redundant TARGET_80387 check
21245 with IS_STACK_MODE macro.
21246 * config/i386/i386.md: Replace SSE_FLOAT_MODE_P (DFmode)
21247 with TARGET_SSE2.
21248 (*movdf_internal): Use IS_STACK_MODE macro.
21249 (*movsf_internal): Ditto.
21250
21251 2016-05-23 Marc Glisse <marc.glisse@inria.fr>
21252
21253 * match.pd (a * (1 << b), ~x & ~y, ~X ^ ~Y, (X ^ Y) ^ Y, ~ (-A),
21254 ~ (A - 1), ~(~X >> Y), ~(~X >>r Y)): Relax constraints.
21255
21256 2016-05-23 Jeff Law <law@redhat.com>
21257
21258 * tree-ssa-threadbackward.c (profitable_jump_thread_path): New function
21259 extracted from ...
21260 (fsm_find_control_statement_thread_paths): Call it.
21261
21262 2016-05-23 Martin Jambor <mjambor@suse.cz>
21263
21264 PR ipa/71234
21265 * ipa-cp.c (ipa_get_indirect_edge_target_1): Only check value of
21266 from_global_constant if t is not NULL.
21267
21268 2016-05-23 Marek Polacek <polacek@redhat.com>
21269
21270 PR c/49859
21271 * common.opt (Wswitch-unreachable): New option.
21272 * doc/invoke.texi: Document -Wswitch-unreachable.
21273 * gimplify.c (gimplify_switch_expr): Implement the -Wswitch-unreachable
21274 warning.
21275
21276 2016-05-23 Bin Cheng <bin.cheng@arm.com>
21277
21278 * tree-ssa-address.c (copy_ref_info): Check NULL TMR_STEP when
21279 TMR_INDEX is non-NULL.
21280
21281 2016-05-23 Richard Biener <rguenther@suse.de>
21282
21283 PR tree-optimization/71230
21284 * tree-ssa-reassoc.c (acceptable_pow_call): Move initial condition...
21285 (try_special_add_to_ops): ... here. Always test for single-use.
21286
21287 2016-05-23 Martin Jambor <mjambor@suse.cz>
21288
21289 * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Create an empty
21290 default block if a PHI node in the original one would be resized.
21291
21292 2016-05-23 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
21293
21294 PR tree-optimization/58135
21295 * tree-vect-slp.c: When group size is not multiple
21296 of vector size, allow splitting of store group at
21297 vector boundary.
21298
21299 2016-05-23 Christophe Lyon <christophe.lyon@linaro.org>
21300
21301 * config/arm/arm_neon.h (vtst_p16, vtstq_p16): New.
21302
21303 2016-05-22 Jakub Jelinek <jakub@redhat.com>
21304
21305 * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
21306 vec_set_hi_<mode><mask_name>): Add && <mask_avx512dq_condition>
21307 condition. For !TARGET_AVX512DQ, emit 32x4 instruction instead
21308 of 64x2.
21309
21310 * config/i386/sse.md (vec_set_lo_v16hi, vec_set_hi_v16hi,
21311 vec_set_lo_v32qi, vec_set_hi_v32qi): Add alternative with
21312 v constraint instead of x and vinserti32x4 insn.
21313
21314 * config/i386/sse.md (i128vldq): New mode iterator.
21315 (avx2_vbroadcasti128_<mode>, avx_vbroadcastf128_<mode>): Add
21316 avx512dq and avx512vl alternatives.
21317
21318 * config/i386/sse.md (avx2_vec_dupv4df): Use v instead of x
21319 constraint, use maybe_evex prefix instead of vex.
21320 (vec_dupv4sf): Use v constraint instead of x for output
21321 operand except for noavx alternative, use Yv constraint
21322 instead of x for input. Use maybe_evex prefix instead of vex.
21323 (*vec_dupv4si): Likewise.
21324 (*vec_dupv2di): Likewise.
21325
21326 2016-05-22 Kugan Vivekanandarajah <kuganv@linaro.org>
21327
21328 PR middle-end/40921
21329 * tree-ssa-reassoc.c (try_special_add_to_ops): New.
21330 (linearize_expr_tree): Call try_special_add_to_ops.
21331 (reassociate_bb): Convert MULT_EXPR by (-1) to NEGATE_EXPR.
21332
21333 2016-05-21 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
21334
21335 * config/avr/avr.c (avr_expand_prologue): Add INCOMING_FRAME_SP_OFFSET
21336 to computed stack_usage.
21337
21338 2016-05-21 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
21339
21340 PR target/71103
21341 * config/avr/avr.md (define_expand "mov<mode>"): If the source
21342 operand is subreg (symbol_ref) then move the symbol ref to register.
21343
21344 2016-05-21 Jan Hubicka <hubicka@ucw.cz>
21345
21346 * tree.c (array_at_struct_end_p): Look through MEM_REF.
21347
21348 2016-05-21 Kugan Vivekanandarajah <kuganv@linaro.org>
21349
21350 PR middle-end/71179
21351 * tree-ssa-reassoc.c (transform_add_to_multiply): Disallow float
21352 VECTOR type.
21353
21354 2016-05-20 Eric Botcazou <ebotcazou@adacore.com>
21355
21356 * tree-vrp.c (compare_values_warnv): Simplify handling of symbolic
21357 ranges by calling get_single_symbol and tidy up. Look more closely
21358 into NAME + CST1 vs CST2 comparisons if type overflow is undefined.
21359
21360 2016-05-20 Jeff Law <law@redhat.com>
21361
21362 * bitmap.c (bitmap_find_bit): Remove useless test.
21363
21364 2016-05-20 Segher Boessenkool <segher@kernel.crashing.org>
21365
21366 * function.c (thread_prologue_and_epilogue_insns): Commit the
21367 insertion of the epilogue.
21368
21369 2016-05-20 Martin Jambor <mjambor@suse.cz>
21370
21371 PR tree-optimization/70884
21372 * tree-sra.c (initialize_constant_pool_replacements): Do not check
21373 should_scalarize_away_bitmap and cannot_scalarize_away_bitmap bits.
21374 (sort_and_splice_var_accesses): Do not consider multiple scalar reads
21375 of constant pool data as a reason for scalarization.
21376
21377 2016-05-20 Eric Botcazou <ebotcazou@adacore.com>
21378
21379 * config/arm/arm.c (arm_expand_prologue): Set the stack usage to 0
21380 for naked functions.
21381 (thumb1_expand_prologue): Likewise.
21382
21383 2016-05-20 Nathan Sidwell <nathan@acm.org>
21384
21385 * config/nvptx/nptx.c (nvptx_option_override): Only set
21386 flag_toplevel_reorder, if not explicitly specified. Set
21387 flag_no_common, unless explicitly specified.
21388
21389 2016-05-20 David Malcolm <dmalcolm@redhat.com>
21390
21391 * calls.c (can_implement_as_sibling_call_p): Mark param
21392 reg_parm_stack_space with ATTRIBUTE_UNUSED.
21393
21394 2016-05-20 Uros Bizjak <ubizjak@gmail.com>
21395
21396 * config/i386/i386.c (ix86_rtx_costs) <case CONST_DOUBLE>:
21397 Use IS_STACK_MODE when calculating cost of standard 80387 constants.
21398 Fallthru to CONST_VECTOR case to calculate cost of standard SSE
21399 constants.
21400 <case CONST_WIDE_INT>: Calculate cost of (MEM (SYMBOL_REF)).
21401 (ix86_legitimate_constant_p): Use CASE_CONST_SCALAR_INT
21402 and CASE_CONST_ANY.
21403
21404 2016-05-20 Cesar Philippidis <cesar@codesourcery.com>
21405
21406 * config/nvptx/nvptx.md (sincossf3): New pattern.
21407
21408 2016-05-20 David Malcolm <dmalcolm@redhat.com>
21409
21410 * calls.c (maybe_complain_about_tail_call): New function.
21411 (initialize_argument_information): Call
21412 maybe_complain_about_tail_call when clearing *may_tailcall.
21413 (can_implement_as_sibling_call_p): Call
21414 maybe_complain_about_tail_call when returning false.
21415 (expand_call): Read CALL_EXPR_MUST_TAIL_CALL and, if set,
21416 ensure try_tail_call is set. Call maybe_complain_about_tail_call
21417 if tail-call optimization fails.
21418 * cfgexpand.c (expand_call_stmt): Initialize
21419 CALL_EXPR_MUST_TAIL_CALL from gimple_call_must_tail_p.
21420 * gimple-pretty-print.c (dump_gimple_call): Dump
21421 gimple_call_must_tail_p.
21422 * gimple.c (gimple_build_call_from_tree): Call
21423 gimple_call_set_must_tail with the value of
21424 CALL_EXPR_MUST_TAIL_CALL.
21425 * gimple.h (enum gf_mask): Add GF_CALL_MUST_TAIL_CALL.
21426 (gimple_call_set_must_tail): New function.
21427 (gimple_call_must_tail_p): New function.
21428 * print-tree.c (print_node): Update printing of TREE_STATIC
21429 to reflect its use for CALL_EXPR_MUST_TAIL_CALL.
21430 * tree-core.h (struct tree_base): Add MUST_TAIL_CALL to the
21431 trailing comment listing applicable flags.
21432 * tree.h (CALL_EXPR_MUST_TAIL_CALL): New macro.
21433
21434 2016-05-20 David Malcolm <dmalcolm@redhat.com>
21435
21436 * calls.c (expand_call): Move "Rest of purposes for tail call
21437 optimizations to fail" to...
21438 (can_implement_as_sibling_call_p): ...this new function, and
21439 split into multiple "if" statements.
21440
21441 2016-05-20 Jan Hubicka <hubicka@ucw.cz>
21442
21443 * cfgloop.h (expected_loop_iterations_unbounded,
21444 expected_loop_iterations): Unconstify.
21445 * cfgloopanal.c (expected_loop_iterations_unbounded): Sanity check the
21446 profile with known upper bound; return 3 when profile is absent.
21447 (expected_loop_iterations): Update.
21448
21449 2016-05-20 Jan Hubicka <hubicka@ucw.cz>
21450
21451 * loop-doloop.c (doloop_optimize): Use get_estimated_loop_iterations_int
21452 and get_max_loop_iterations_int.
21453
21454 2016-05-20 Jan Hubicka <hubicka@ucw.cz>
21455
21456 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can not produce
21457 realistic upper bounds here.
21458
21459 2016-05-20 Jakub Jelinek <jakub@redhat.com>
21460
21461 PR c++/71210
21462 * gimple-fold.c (gimple_fold_call): Do not remove lhs of noreturn
21463 calls if the LHS is variable length or has addressable type.
21464 If targets[0]->decl is a noreturn call with void return type and
21465 zero arguments, adjust fntype and remove lhs in that case.
21466
21467 2016-05-20 Marc Glisse <marc.glisse@inria.fr>
21468
21469 PR tree-optimization/71079
21470 PR tree-optimization/71206
21471 * match.pd ((X ^ Y) ^ (X ^ Z)): Convert the arguments.
21472
21473 2016-05-20 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
21474
21475 * tree-vectorizer.c (get_vec_alignment_for_decl): New static function.
21476 (get_vec_alignment_for_array_decl): Likewise.
21477 (get_vec_alignment_for_record_decl): Likewise.
21478 (increase_alignment::execute): Move code to find alignment to
21479 get_vec_alignment_for_array_decl and call get_vec_alignment_for_decl.
21480 (type_align_map): New hash_map.
21481
21482 2016-05-20 Richard Guenther <rguenther@suse.de>
21483
21484 PR tree-optimization/29756
21485 * tree.def (BIT_INSERT_EXPR): New tcc_expression tree code.
21486 * expr.c (expand_expr_real_2): Handle BIT_INSERT_EXPR.
21487 * fold-const.c (operand_equal_p): Likewise.
21488 (fold_ternary_loc): Add constant folding of BIT_INSERT_EXPR.
21489 * gimplify.c (gimplify_expr): Handle BIT_INSERT_EXPR.
21490 * tree-inline.c (estimate_operator_cost): Likewise.
21491 * tree-pretty-print.c (dump_generic_node): Likewise.
21492 * tree-ssa-operands.c (get_expr_operands): Likewise.
21493 * cfgexpand.c (expand_debug_expr): Likewise.
21494 * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
21495 * gimple.c (get_gimple_rhs_num_ops): Handle BIT_INSERT_EXPR.
21496 * tree-cfg.c (verify_gimple_assign_ternary): Verify BIT_INSERT_EXPR.
21497 * tree-ssa.c (non_rewritable_lvalue_p): We can rewrite
21498 vector inserts using BIT_FIELD_REF or MEM_REF on the lhs.
21499 (execute_update_addresses_taken): Do it.
21500
21501 2016-05-20 Richard Biener <rguenther@suse.de>
21502
21503 PR tree-optimization/71185
21504 * tree-ssa-loop-prefetch.c (gather_memory_references): Drop
21505 register operations.
21506
21507 2016-05-20 Richard Biener <rguenther@suse.de>
21508
21509 * tree-if-conv.c (add_bb_predicate_gimplified_stmts): Use
21510 gimple_seq_add_seq_without_update.
21511 (release_bb_predicate): Assert we have no operands to free.
21512 (if_convertible_loop_p_1): Calculate post dominators later.
21513 Do not free BB predicates here.
21514 (combine_blocks): Do not recompute BB predicates.
21515 (version_loop_for_if_conversion): Save BB predicates around
21516 loop versioning.
21517
21518 2016-05-19 Segher Boessenkool <segher@kernel.crashing.org>
21519
21520 * function.c (make_epilogue_seq): Remove epilogue_end parameter.
21521 (thread_prologue_and_epilogue_insns): Remove bb_flags. Restructure
21522 code. Ignore sibcalls on EDGE_IGNORE edges.
21523 * shrink-wrap.c (handle_simple_exit): New function. Set EDGE_IGNORE
21524 on edges for sibcalls that run without prologue. The rest of the
21525 function is combined from...
21526 (fix_fake_fallthrough_edge): ... this, and ...
21527 (try_shrink_wrapping): ... a part of this. Remove the bb_with
21528 function argument, make it a local variable.
21529
21530 2016-05-19 Sandra Loosemore <sandra@codesourcery.com>
21531
21532 * config/i386/cygming.h (DWARF2_UNWIND_INFO): Allow
21533 --disable-sjlj-exceptions for TARGET_BI_ARCH to select DWARF-2 EH
21534 for 32-bit mode and SEH for 64-bit.
21535 * config/i386/mingw32.h (SHARED_LIBGCC_UNDEFS_SPEC): Handle
21536 TARGET_64BIT_DEFAULT.
21537
21538 2016-05-19 Ryan Burn <contact@rnburn.com>
21539
21540 * Makefile.in (GTFILES): Add cilk.h and cilk-common.c.
21541 * gengtype.c (open_base_files): Add cilk.h to ifiles.
21542
21543 2016-05-19 Uros Bizjak <ubizjak@gmail.com>
21544
21545 * sched-deps.c (sched_analyze_2) <case TRAP_IF>: Also
21546 force pending loads from memory.
21547
21548 2016-05-19 Kelvin Nilsen <kelvin@gcc.gnu.org>
21549
21550 * config/rs6000/altivec.md (UNSPEC_DARN): New unspec constant.
21551 (UNSPEC_DARN_32): New unspec constant.
21552 (UNSPEC_DARN_RAW): New unspec constant.
21553 (darn_32): New instruction.
21554 (darn_raw): New instruction.
21555 (darn): New instruction.
21556 * config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_0): Add
21557 support and documentation for this macro.
21558 (BU_P9_MISC_1): New macro definition.
21559 (BU_P9_64BIT_MISC_0): New macro definition.
21560 (BU_P9_MISC_0): New macro definition.
21561 (darn_32): New builtin definition.
21562 (darn_raw): New builtin definition.
21563 (darn): New builtin definition.
21564 * config/rs6000/rs6000.c: Add #define RS6000_BUILTIN_0 and #undef
21565 RS6000_BUILTIN_0 directives to surround each occurrence of
21566 #include "rs6000-builtin.def".
21567 (rs6000_builtin_mask_calculate): Add in the RS6000_BTM_MODULO and
21568 RS6000_BTM_64BIT flags to the returned mask, depending on
21569 configuration.
21570 (def_builtin): Correct an error in the assignments made to the
21571 debugging variable attr_string.
21572 (rs6000_expand_builtin): Add support for no-operand built-in
21573 functions.
21574 (builtin_function_type): Remove fatal_error assertion that is no
21575 longer valid.
21576 (rs6000_common_init_builtins): Add support for no-operand built-in
21577 functions.
21578 * config/rs6000/rs6000.h (RS6000_BTM_MODULO): New macro
21579 definition.
21580 (RS6000_BTM_PURE): Enhance comment to clarify intent of this flag
21581 definition.
21582 (RS6000_BTM_64BIT): New macro definition.
21583 * doc/extend.texi: Document __builtin_darn (void),
21584 __builtin_darn_raw (void), and __builtin_darn_32 (void) built-in
21585 functions.
21586
21587 2016-05-19 Jan Hubicka <hubicka@ucw.cz>
21588
21589 * tree-vect-loop.c (vect_analyze_loop_2): Use also
21590 max_loop_iterations_int.
21591
21592 2016-05-19 Marek Polacek <polacek@redhat.com>
21593
21594 PR tree-optimization/71031
21595 * tree-vrp.c (extract_range_from_binary_expr_1): Turn assert into a
21596 condition and adjust the code a bit.
21597
21598 2016-05-19 Martin Liska <mliska@suse.cz>
21599
21600 * tree-vect-stmts.c (vectorizable_simd_clone_call): Utilize
21601 auto_vec instead of vec.
21602
21603 2016-05-19 Martin Liska <mliska@suse.cz>
21604
21605 * tree-parloops.c (oacc_entry_exit_ok): Release a vector.
21606
21607 2016-05-19 Martin Liska <mliska@suse.cz>
21608
21609 * tree-if-conv.c (ifcvt_repair_bool_pattern): Utilize auto_vecs.
21610
21611 2016-05-19 Martin Liska <mliska@suse.cz>
21612
21613 * ipa-pure-const.c (set_function_state): Remove an existing
21614 funct_state.
21615 (remove_node_data): Do not free it as it's released
21616 in set_function_state.
21617
21618 2016-05-19 Martin Liska <mliska@suse.cz>
21619
21620 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Release
21621 bitmap.
21622
21623 2016-05-19 Martin Liska <mliska@suse.cz>
21624
21625 * omp-simd-clone.c (simd_clone_adjust): Release vector.
21626
21627 2016-05-19 Martin Liska <mliska@suse.cz>
21628
21629 * tree-ssa-reassoc.c (eliminate_duplicate_pair): Truncate
21630 an auto_vec instead of re-creating it.
21631
21632 2016-05-19 Martin Liska <mliska@suse.cz>
21633
21634 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Use
21635 auto_vec instead of vec.
21636
21637 2016-05-19 Martin Liska <mliska@suse.cz>
21638
21639 * lto-section-in.c (lto_get_section_data): Call
21640 lto_check_version with additional argument.
21641 * lto-streamer.c (lto_check_version): Add new argument.
21642 * lto-streamer.h (lto_check_version): Likewise.
21643
21644 2016-05-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21645
21646 * config/arm/arm.c (arm_new_rtx_costs, SIGN_EXTEND case):
21647 Don't add cost of inner memory when handling sign-extended loads.
21648
21649 2016-05-19 Ilya Enkovich <ilya.enkovich@intel.com>
21650
21651 PR rtl-optimization/71148
21652 * cse.c (cse_main): Free dominance info.
21653 (rest_of_handle_cse): Don't free dominance info.
21654 (rest_of_handle_cse2): Likewise.
21655 (rest_of_handle_cse_after_global_opts): Likewise.
21656
21657 2016-05-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21658
21659 PR target/71056
21660 * config/arm/arm-builtins.c (arm_builtin_vectorized_function): Return
21661 NULL_TREE early if NEON is not available. Remove now redundant check
21662 in ARM_CHECK_BUILTIN_MODE.
21663
21664 2016-05-19 Maxim Ostapenko <m.ostapenko@samsung.com>
21665
21666 PR sanitizer/64354
21667 * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Add new
21668 builtin __SANITIZE_THREAD__ macros for fsanitize=thread switch.
21669 * doc/cpp.texi: Document new macros.
21670
21671 2016-05-19 Bin Cheng <bin.cheng@arm.com>
21672
21673 PR tree-optimization/69848
21674 * tree-vect-loop.c (vectorizable_reduction): Don't factor
21675 comparison expr out of VEC_COND_EXPR for COND_REDUCTION.
21676
21677 2016-05-19 Segher Boessenkool <segher@kernel.crashing.org>
21678
21679 * function.c (thread_prologue_and_epilogue_insn): Move the
21680 "goto epilogue_done" one block later.
21681
21682 2016-05-19 Richard Biener <rguenther@suse.de>
21683
21684 PR tree-optimization/70729
21685 * passes.def: Move LIM pass before PRE. Remove no longer
21686 required copyprop and move first DCE out of the loop pipeline.
21687
21688 2016-05-18 David Malcolm <dmalcolm@redhat.com>
21689
21690 PR driver/69265
21691 * Makefile.in (GCC_OBJS): Move spellcheck.o to...
21692 (OBJS-libcommon-target): ...here.
21693 * opts-common.c: Include spellcheck.h.
21694 (cmdline_handle_error): Build a vec of valid options and use it
21695 to suggest provide hints for misspelled arguments.
21696
21697 2016-05-18 Jakub Jelinek <jakub@redhat.com>
21698
21699 PR c++/71100
21700 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Don't drop
21701 lhs if it has TREE_ADDRESSABLE type.
21702
21703 2016-05-18 Uros Bizjak <ubizjak@gmail.com>
21704
21705 PR target/71145
21706 * config/alpha/alpha.md (trap): Add (use (reg:DI 29)).
21707 (*exception_receiver_1): Return "#" for TARGET_EXPLICIT_RELOCS.
21708
21709 2016-05-18 Martin Jambor <mjambor@suse.cz>
21710
21711 PR ipa/69708
21712 * ipa-cp.c (ipa_get_jf_pass_through_result): Allow non-ip constant
21713 input for NOP_EXPR pass-through functions.
21714 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Allow
21715 aggregate global constant VAR_DECLs in constant jump functions.
21716
21717 2016-05-18 Martin Jambor <mjambor@suse.cz>
21718
21719 PR ipa/69708
21720 * ipa-prop.c (parm_preserved_before_stmt_p): Return true for loads
21721 from TREE_READONLY parameters.
21722
21723 2016-05-18 Martin Jambor <mjambor@suse.cz>
21724
21725 PR ipa/69708
21726 * cgraph.h (cgraph_indirect_call_info): New field
21727 guaranteed_unmodified.
21728 * ipa-cp.c (ipa_get_indirect_edge_target_1): Also pass parameter value
21729 to ipa_find_agg_cst_for_param, check guaranteed_unmodified when
21730 appropriate.
21731 * ipa-inline-analysis.c (evaluate_conditions_for_known_args): Also
21732 pass the parameter value to ipa_find_agg_cst_for_param.
21733 * ipa-prop.c (ipa_load_from_parm_agg): New parameter
21734 guaranteed_unmodified, store AA results there instead of bailing out
21735 if present.
21736 (ipa_note_param_call): Also initialize guaranteed_unmodified flag.
21737 (ipa_analyze_indirect_call_uses): Also set guaranteed_unmodified flag.
21738 (find_constructor_constant_at_offset): New function.
21739 (ipa_find_agg_cst_from_init): Likewise.
21740 (ipa_find_agg_cst_for_param): Also seearch for aggregate values in
21741 static initializers of contants, report back through a new paameter
21742 from_global_constant if that was the case.
21743 (try_make_edge_direct_simple_call): Also pass parameter value to
21744 ipa_find_agg_cst_for_param, check guaranteed_unmodified when
21745 appropriate.
21746 (ipa_write_indirect_edge_info): Stream new flag guaranteed_unmodified.
21747 (ipa_read_indirect_edge_info): Likewise.
21748 * ipa-prop.h (ipa_find_agg_cst_for_param): Update declaration.
21749 (ipa_load_from_parm_agg): Likewise.
21750
21751 2016-05-18 Jiong Wang <jiong.wang@arm.com>
21752
21753 PR rtl-optimization/71150
21754 * lra-constraint (process_addr_reg): Guard "in_class_p" with REG_P
21755 check.
21756
21757 2016-05-18 Michael Meissner <meissner@linux.vnet.ibm.com>
21758
21759 PR target/70915
21760 * config/rs6000/constraints.md (wE constraint): New constraint
21761 for a vector constant that can be loaded with XXSPLTIB.
21762 (wM constraint): New constraint for a vector constant of a 1's.
21763 (wS constraint): New constraint for a vector constant that can be
21764 loaded with XXSPLTIB and a vector sign extend instruction.
21765 * config/rs6000/predicates.md (xxspltib_constant_split): New
21766 predicates for wE/wS constraints.
21767 (xxspltib_constant_nosplit): Likewise.
21768 (easy_vector_constant): Add support for constants that can be
21769 loaded via XXSPLTIB.
21770 (all_ones_constant): New predicate for vector constant with all
21771 1's set.
21772 (splat_input_operand): Add support for ISA 3.0 word splat operations.
21773 * config/rs6000/rs6000.c (xxspltib_constant_p): New function to
21774 return if a constant can be loaded with the ISA 3.0 XXSPLTIB
21775 instruction and possibly with a sign extension.
21776 (output_vec_const_move): Add support for XXSPLTIB. If we are
21777 loading up 0/-1 into Altivec registers, prefer using VSPLTISW
21778 instead of XXLXOR/XXLORC.
21779 (rs6000_expand_vector_init): Add support for ISA 3.0 word splat
21780 operations.
21781 (rs6000_legitimize_reload_address): Likewise.
21782 (rs6000_output_move_128bit): Use output_vec_const_move to emit
21783 constants.
21784 * config/rs6000/vsx.md (VSX_M): Add TImode (if -mvsx-timode) and
21785 combine VSX_M and VSX_M2 into one iterator.
21786 (VSX_M2): Likewise.
21787 (VSINT_84): New iterators for loading constants with XXSPLTIB.
21788 (VSINT_842): Likewise.
21789 (UNSPEC_VSX_SIGN_EXTEND): New UNSPEC.
21790 (xxspltib_v16qi): New insns to load up constants with the ISA 3.0
21791 XXSPLTIB instruction.
21792 (xxspltib_<mode>_nosplit): Likewise.
21793 (xxspltib_<mode>_split): New insn to load up constants with
21794 XXSPLTIB and a sign extend instruction.
21795 (vsx_mov<mode>): Replace single move that handled all vector types
21796 with separate 32-bit and 64-bit moves. Combine the movti_<bit>
21797 moves (when -mvsx-timode is in effect) into the main vector
21798 moves. Eliminate separate moves for <VSr> <VSa>, where the
21799 preferred register class (<VSr>) is listed first, and the
21800 secondary register class (<VSa>) is listed second with a '?' to
21801 discourage use. Prefer loading 0/-1 in any VSX register for ISA
21802 3.0, and Altivec registers for ISA 2.06/2.07 (PR target/70915) so
21803 that if the register was involved in a slow operation, the
21804 clear/set operation does not wait for the slow operation to
21805 finish. Adjust the length attributes for 32-bit mode. Use
21806 rs6000_output_move_128bit and drop the use of the string
21807 instructions for 32-bit movti when -mvsx-timode is in effect. Use
21808 spacing so that the alternatives and attributes don't generate
21809 long lines, and put things in columns, so that it is easier to
21810 match up the operands and attributes with the insn alternatives.
21811 (vsx_mov<mode>_64bit): Likewise.
21812 (vsx_mov<mode>_32bit): Likewise.
21813 (vsx_movti_64bit): Fold movti into normal vector moves.
21814 (vsx_movti_32bit): Likewise.
21815 (vsx_splat_<mode>, V4SI/V4SF modes): Add support for ISA 3.0 word
21816 splat instructions.
21817 (vsx_splat_v4si_internal): Likewise.
21818 (vsx_splat_v4sf_internal): Likewise.
21819 (vector fusion peepholes): Use VSX_M instead of VSX_M2.
21820 (vsx_sign_extend_qi_<mode>): New ISA 3.0 instructions to sign
21821 extend vector elements.
21822 (vsx_sign_extend_hi_<mode>): Likewise.
21823 (vsx_sign_extend_si_v2di): Likewise.
21824 * config/rs6000/rs6000-protos.h (xxspltib_constant_p): Add
21825 declaration.
21826 * doc/md.texi (PowerPC constraints): Document the wE, wM, and wS
21827 constraints. Add trailing period to wL documentation.
21828
21829 2016-05-18 Richard Sandiford <richard.sandiford@arm.com>
21830
21831 PR middle-end/71020
21832 * tree-dfa.h (replace_abnormal_ssa_names): Declare.
21833 * tree-dfa.c (replace_abnormal_ssa_names): New function.
21834 * tree-call-cdce.c: Include tree-dfa.h.
21835 (can_guard_call_p): New function, extracted from...
21836 (can_use_internal_fn): ...here.
21837 (shrink_wrap_one_built_in_call_with_conds): Remove failure path
21838 and return void.
21839 (shrink_wrap_one_built_in_call): Likewise.
21840 (use_internal_fn): Likewise.
21841 (shrink_wrap_conditional_dead_built_in_calls): Update accordingly
21842 and return void. Call replace_abnormal_ssa_names.
21843 (pass_call_cdce::execute): Check can_guard_call_p during the
21844 initial walk. Assume shrink_wrap_conditional_dead_built_in_calls
21845 will always change something.
21846
21847 2016-05-18 Martin Jambor <mjambor@suse.cz>
21848
21849 PR ipa/70646
21850 * ipa-prop.c (determine_locally_known_aggregate_parts): Bail out early
21851 if parameter PARAM_IPA_MAX_AGG_ITEMS is zero.
21852
21853 2016-05-18 Martin Jambor <mjambor@suse.cz>
21854
21855 PR ipa/70646
21856 * ipa-inline.h (condition): New field size.
21857 * ipa-inline-analysis.c (add_condition): New parameter SIZE, use it
21858 for comaprison and store it into the new condition.
21859 (evaluate_conditions_for_known_args): Use condition size to check
21860 access sizes for all but CHANGED conditions.
21861 (unmodified_parm_1): New parameter size_p, store access size into it.
21862 (unmodified_parm): Likewise.
21863 (unmodified_parm_or_parm_agg_item): Likewise.
21864 (eliminated_by_inlining_prob): Pass NULL to unmodified_parm as size_p.
21865 (set_cond_stmt_execution_predicate): Extract access sizes and store
21866 them to conditions.
21867 (set_switch_stmt_execution_predicate): Likewise.
21868 (will_be_nonconstant_expr_predicate): Likewise.
21869 (will_be_nonconstant_predicate): Likewise.
21870 (inline_read_section): Stream condition size.
21871 (inline_write_summary): Likewise.
21872
21873 2016-05-18 Richard Biener <rguenther@suse.de>
21874
21875 * tree-ssa-loop-im.c (determine_max_movement): Properly add
21876 condition cost to PHI cost instead of total_cost.
21877
21878 2016-05-18 Martin Liska <mliska@suse.cz>
21879
21880 PR fortran/70856
21881 * ipa-icf.c (sem_variable::merge): Set DECL_PT_UID for
21882 merged variables.
21883
21884 2016-05-18 Richard Biener <rguenther@suse.de>
21885
21886 * lto-streamer.h (LTO_major_version): Bump to 6.
21887
21888 2016-05-18 Segher Boessenkool <segher@kernel.crashing.org>
21889
21890 * function.c (make_split_prologue_seq, make_prologue_seq,
21891 make_epilogue_seq): New functions, factored out from...
21892 (thread_prologue_and_epilogue_insns): Here.
21893
21894 2016-05-18 Segher Boessenkool <segher@kernel.crashing.org>
21895
21896 * function.c (rest_of_handle_thread_prologue_and_epilogue): Call
21897 cleanup_cfg with CLEANUP_EXPENSIVE after shrink-wrapping instead
21898 of before. Add a comment.
21899
21900 2016-05-18 Bin Cheng <bin.cheng@arm.com>
21901
21902 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check invariant
21903 expression pointer, not pointer to the pointer.
21904
21905 2016-05-18 Jakub Jelinek <jakub@redhat.com>
21906
21907 * config/i386/sse.md (pbroadcast_evex_isa): New mode attr.
21908 (avx2_pbroadcast<mode>): Add another alternative with v instead
21909 of x constraints in it, using <pbroadcast_evex_isa> isa.
21910 (avx2_pbroadcast<mode>_1): Similarly, add two such alternatives.
21911
21912 * config/i386/sse.md (<ssse3_avx2>_palignr<mode>): Use
21913 constraint x instead of v in second alternative, add avx512bw
21914 alternative.
21915
21916 * config/i386/sse.md (<ssse3_avx2>_pshufb<mode>3<mask_name>): Use
21917 constraint x instead of v in second alternative, add avx512bw
21918 alternative.
21919
21920 * config/i386/sse.md (*<ssse3_avx2>_pmulhrsw<mode>3<mask_name>): Use
21921 constraint x instead of v in second alternative, add avx512bw
21922 alternative.
21923
21924 * config/i386/sse.md (avx2_pmaddubsw256, ssse3_pmaddubsw128): Add
21925 avx512bw alternative.
21926
21927 2016-05-18 Kirill Yukhin <kirill.yukhin@intel.com>
21928
21929 * config/i386/sse.md (define_insn "*andnot<mode>3"): Extend static
21930 array to 128 chars.
21931 (define_insn "*andnottf3"): Ditto.
21932 (define_insn "*<code><mode>3"/any_logic): Ditto.
21933 (define_insn "*<code>tf3"/any_logic): Ditto.
21934 (define_insn "sse2_storehpd"): Use Yv constraint for scalar
21935 operand to block AVX-512VL insn variant emit when it is not enabled.
21936
21937 2016-05-18 Kirill Yukhin <kirill.yukhin@intel.com>
21938
21939 * config/i386/sse.md (define_insn "*vec_concatv2sf_sse4_1"): Use 'Yv'
21940 constraint fot SF mode.
21941
21942 2016-05-18 Petr Murzin <petr.murzin@intel.com>
21943 Kirill Yukhin <kirill.yukhin@intel.com>
21944
21945 * config/i386/sse.md (define_insn "srcp14<mode>"): Use proper operand
21946 modifiers.
21947 (define_insn "rsqrt14<mode>"): Ditto.
21948 (define_insn "<mask_codefor>avx512dq_cvtps2qqv2di<mask_name>"): Ditto.
21949 (define_insn "<fixsuffix>fix_truncv2sfv2di2<mask_name>"): Ditto.
21950 (define_insn "avx512f_<code>v8div16qi2_mask_store"): Ditto.
21951 (define_insn "vec_set_hi_<mode><mask_name>"): Ditto.
21952 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>"):
21953 Ditto.
21954 (define_insn "*avx512f_gatherdi<mode>"): Ditto.
21955 (define_insn "*avx512f_scatterdi<mode>"): Ditto.
21956 * config/i386/i386.c (ix86_print_operand): Expand check for size
21957 override codes for Intel syntax.
21958
21959 2016-05-18 Richard Biener <rguenther@suse.de>
21960
21961 PR tree-optimization/71168
21962 * tree-loop-distribution.c (distribute_loop): Move *destroy_p
21963 initialization earlier.
21964
21965 2016-05-18 James Greenhalgh <james.greenhalgh@arm.com>
21966
21967 * config/aarch64/aarch64-simd.md
21968 (aarch64_reduc_plus_internal<mode>): Rename to...
21969 (reduc_plus_scal): ...This, and remove previous implementation.
21970
21971 2016-05-18 Richard Biener <rguenther@suse.de>
21972
21973 * passes.def: Put late dse and cd_dce in canonical order.
21974
21975 2016-05-17 Jan Hubicka <hubicka@ucw.cz>
21976
21977 * ipa-inline-transform.c (preserve_function_body_p): Look for
21978 first non-thunk clone.
21979 (save_function_body): Save into first non-thunk.
21980 * lto-cgraph.c (lto_output_edge): When streaming thunk do not look
21981 up call stmt id.
21982 (lto_output_node): Inline thunks don't need body in every
21983 partition.
21984 * lto-streamer-in.c: Do not fixup thunk clones.
21985 * cgraphclones.c (cgraph_node::create_edge_including_clone): Skip
21986 thunks.
21987 * tree-inline.c (copy_bb): Be prepared for target node to be new after
21988 folding suceeds.
21989
21990 2016-05-17 Kugan Vivekanandarajah <kuganv@linaro.org>
21991
21992 PR middle-end/63586
21993 * tree-ssa-reassoc.c (transform_add_to_multiply): New.
21994 (reassociate_bb): Call transform_add_to_multiply.
21995
21996 2016-05-17 Kugan Vivekanandarajah <kuganv@linaro.org>
21997
21998 * config/aarch64/aarch64.c (all_extensions): Removed unused
21999 static variable.
22000
22001 2016-05-17 Nathan Sidwell <nathan@acm.org>
22002
22003 * config/nvptx/nvptx.c (nvptx_function_arg_boundary): New.
22004 (TARGET_FUNCTION_ARG_BOUNDARY): Override.
22005
22006 2016-05-17 Mikhail Maltsev <maltsevm@gmail.com>
22007
22008 PR tree-optimization/54579
22009 PR middle-end/55299
22010 * match.pd (~(~X >> Y), ~(~X >>r Y), ~(~X <<r Y)): New patterns.
22011
22012 2016-05-17 Marek Polacek <polacek@redhat.com>
22013
22014 PR ipa/71146
22015 * tree-inline.c (expand_call_inline): Call
22016 maybe_remove_unused_call_args.
22017
22018 2016-05-17 Jim Wilson <jim.wilson@linaro.org>
22019
22020 * doc/cpp.texi (__GNUC__): Major version changes are no longer rare.
22021 * doc/invoke.texi (-mnan=2008): Change signalling to signaling.
22022 * doc/md.texi (fmin@var{m}3): Likewise.
22023
22024 2016-05-17 Marc Glisse <marc.glisse@inria.fr>
22025
22026 * match.pd (X & C): New transformation.
22027
22028 2016-05-17 Marc Glisse <marc.glisse@inria.fr>
22029
22030 * match.pd (~X & Y): New transformation.
22031
22032 2016-05-17 Marc Glisse <marc.glisse@inria.fr>
22033
22034 * tree-vrp.c (simplify_truth_ops_using_ranges): Set range
22035 information for new SSA_NAME.
22036 (simplify_conversion_using_ranges): Get range through get_range_info
22037 instead of get_value_range.
22038
22039 2016-05-17 Jiong Wang <jiong.wang@arm.com>
22040
22041 * config/aarch64/arm_neon.h (vmvn_s8): Reimplement using C operator.
22042 Remove inline assembly.
22043 (vmvn_s16): Likewise.
22044 (vmvn_s32): Likewise.
22045 (vmvn_u8): Likewise.
22046 (vmvn_u16): Likewise.
22047 (vmvn_u32): Likewise.
22048 (vmvnq_s8): Likewise.
22049 (vmvnq_s16): Likewise.
22050 (vmvnq_s32): Likewise.
22051 (vmvnq_u8): Likewise.
22052 (vmvnq_u16): Likewise.
22053 (vmvnq_u32): Likewise.
22054 (vmvn_p8): Likewise.
22055 (vmvnq_p16): Likewise.
22056
22057 2016-05-17 Jiong Wang <jiong.wang@arm.com>
22058
22059 * config/aarch64/aarch64-simd.md (vmul_n_f32): Remove inline assembly.
22060 Use builtin.
22061 (vmul_n_s16): Likewise.
22062 (vmul_n_s32): Likewise.
22063 (vmul_n_u16): Likewise.
22064 (vmul_n_u32): Likewise.
22065 (vmulq_n_f32): Likewise.
22066 (vmulq_n_f64): Likewise.
22067 (vmulq_n_s16): Likewise.
22068 (vmulq_n_s32): Likewise.
22069 (vmulq_n_u16): Likewise.
22070 (vmulq_n_u32): Likewise.
22071
22072 2016-05-17 Jiong Wang <jiong.wang@arm.com>
22073
22074 * config/aarch64/aarch64-simd.md (*aarch64_mul3_elt_to_128df): Extend
22075 to all supported modes. Rename to "*aarch64_mul3_elt_from_dup".
22076
22077 2016-05-17 Jiong Wang <jiong.wang@arm.com>
22078
22079 * config/aarch64/aarch64-simd.md (*aarch64_fma4_elt_to_128df): Rename
22080 to *aarch64_fma4_elt_from_dup<mode>.
22081 (*aarch64_fnma4_elt_to_128df): Rename to
22082 *aarch64_fnma4_elt_from_dup<mode>.
22083 * config/aarch64/arm_neon.h (vfma_n_f64): New.
22084 (vfms_n_f32): Likewise.
22085 (vfms_n_f64): Likewise.
22086 (vfmsq_n_f32): Likewise.
22087 (vfmsq_n_f64): Likewise.
22088
22089 2016-05-17 Gerald Pfeifer <gerald@pfeifer.com>
22090
22091 * wide-int.h: Change fixed_wide_int_storage from class to struct.
22092
22093 2016-05-17 Richard Biener <rguenther@suse.de>
22094
22095 PR tree-optimization/71132
22096 * tree-loop-distribution.c (create_rdg_cd_edges): Pass in loop.
22097 Only add control dependences for blocks in the loop.
22098 (build_rdg): Adjust.
22099 (generate_code_for_partition): Return whether loop should
22100 be destroyed and delay that.
22101 (distribute_loop): Likewise.
22102 (pass_loop_distribution::execute): Record loops to be destroyed
22103 and perform delayed destroying of loops.
22104
22105 2016-05-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22106
22107 PR target/70809
22108 * config/aarch64/aarch64-simd.md (aarch64_vmls<mode>): Delete.
22109
22110 2016-05-17 James Greenhalgh <james.greenhalgh@arm.com>
22111
22112 * config/aarch64/aarch64-elf.h (ASM_OUTPUT_DEF): Delete.
22113
22114 2016-05-17 Ilya Enkovich <ilya.enkovich@intel.com>
22115
22116 PR target/71114
22117 * config/i386/i386.c (dimode_scalar_chain::convert_op): Fix
22118 insertion point for instructions generated by validize_mem.
22119
22120 2016-05-17 James Greenhalgh <james.greenhalgh@arm.com>
22121
22122 * config/aarch64/aarch64.c (SHIFT_COUNT_TRUNCATED): Wrap definition
22123 in brackets.
22124
22125 2016-05-17 James Greenhalgh <james.greenhalgh@arm.com>
22126
22127 * config/aarch64/aarch64.c
22128 (aarch64_output_simd_mov_immediate): Make "buf_size" a variable
22129 rather than a macro.
22130
22131 2016-05-16 Wilco Dijkstra <wdijkstr@arm.com>
22132
22133 * doc/invoke.texi (AArch64 Options): Various updates.
22134
22135 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
22136
22137 * ipa-inline-analysis.c (compute_inline_parameters): Disable inlinig
22138 into instrumentation thunks.
22139 * cif-code.def (CIF_CHKP): New.
22140
22141 2016-05-16 Uros Bizjak <ubizjak@gmail.com>
22142
22143 * config/i386/xopintrin.h: Correct "unsinged" typo in the comments.
22144
22145 2016-05-16 Martin Jambor <mjambor@suse.cz>
22146
22147 * hsa-gen.c (fillup_for_decl): Increase alignment to natural one.
22148 (get_symbol_for_decl): Sorry if a global symbol in under-aligned.
22149
22150 2016-05-16 Marek Polacek <polacek@redhat.com>
22151
22152 * gimple.c (maybe_remove_unused_call_args): Fix typos in the
22153 commentary.
22154
22155 2016-05-16 Martin Jambor <mjambor@suse.cz>
22156
22157 PR hsa/70857
22158 * omp-low.c (grid_expand_target_grid_body): Copy RESULT_DECL of
22159 the outlined kernel function.
22160
22161 2016-05-16 Robert Suchanek <robert.suchanek@imgtec.com>
22162
22163 * config/mips/mips.h (ISA_HAS_LSA): Enable for -mmsa.
22164 (ISA_HAS_DLSA): Ditto.
22165
22166 2016-05-16 Matthew Fortune <matthew.fortune@imgtec.com>
22167
22168 * config/mips/m5100.md (m51_int_load): Update the latency to 2.
22169
22170 2016-05-16 Nathan Sidwell <nathan@acm.org>
22171
22172 * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): Revert.
22173 (nvptx_name_replacement): Restore. Add comment.
22174 (write_fn_proto, write_fn_proto_from_insn,
22175 nvptx_output_call_insn): Restore
22176 (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Delete.
22177
22178 2016-05-16 Wilco Dijkstra <wdijkstr@arm.com>
22179
22180 * config/aarch64/aarch64.md
22181 (add<mode>3_compareC_cconly_imm): Remove use of %w.
22182 (add<mode>3_compareC_imm): Likewise.
22183 (<optab>si3_uxtw): Split into register and immediate variants.
22184 (andsi3_compare0_uxtw): Likewise.
22185 (and<mode>3_compare0): Likewise.
22186 (and<mode>3nr_compare0): Likewise.
22187 (stack_protect_test_<mode>): Don't use %x for memory operands.
22188
22189 2016-05-16 Matthew Fortune <matthew.fortune@imgtec.com>
22190
22191 * config/mips/mips-cpus.def (p5600): Add multi-line brackets.
22192
22193 2016-05-16 Wilco Dijkstra <wdijkstr@arm.com>
22194
22195 * config/aarch64/aarch64.md (aarch64_ashl_sisd_or_int_<mode>3):
22196 Split integer shifts into shift_reg and bfm.
22197 (aarch64_lshr_sisd_or_int_<mode>3): Likewise.
22198 (aarch64_ashr_sisd_or_int_<mode>3): Likewise.
22199 (ror<mode>3_insn): Likewise.
22200 (<optab>si3_insn_uxtw): Likewise.
22201 (<optab><mode>3_insn): Change to rotate_imm.
22202 (extr<mode>5_insn_alt): Likewise.
22203 (extrsi5_insn_uxtw): Likewise.
22204 (extrsi5_insn_uxtw_alt): Likewise.
22205
22206 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
22207
22208 * doc/tm.texi: Regenerate.
22209 * doc/tm.texi.in (TARGET_INVALID_PARAMETER_TYPE): Remove.
22210 (TARGET_INVALID_RETURN_TYPE): Remove.
22211 * system.h: Poison TARGET_INVALID_PARAMETER_TYPE and
22212 TARGET_INVALID_RETURN_TYPE.
22213 * target.def (invalid_parameter_type): Remove.
22214 (invalid_return_type): Remove.
22215
22216 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
22217
22218 * ipa-inline-analysis.c (compute_inline_parameters): Be more reailistic
22219 on estimating thunk bodies; do not set inline_failed to CIF_THUNK for
22220 calls from thunk.
22221 * ipa-inline-transform.c (inline_call): When inlining into thunk produce
22222 gimple body.
22223 (preserve_function_body_p): No need to preserve function body
22224 * cif-codes.def (CIF_THUNK): Remove.
22225 * cgraphclones.c (duplicate_thunk_for_node): Thunks calls are inlinable.
22226
22227 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
22228
22229 * tree-inline.c (expand_call_inline): recurse after inlining thunk.
22230
22231 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
22232
22233 * tree.c (free_lang_data_in_decl): Also set target/optimization flags
22234 for thunks.
22235
22236 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
22237
22238 * ipa-inline.c (report_inline_failed_reason): Look into thunks, too
22239 (inline_small_functions): Do not look for function symbol when
22240 resetting caches.
22241
22242 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
22243
22244 * lto-cgraph.c (compute_ltrans_boundary, output_symtab): Fix handling
22245 of inline thunks
22246
22247 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
22248 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
22249 Jiong Wang <jiong.wang@arm.com>
22250
22251 * config/arm/arm-c.c (arm_cpu_builtins): Use def_or_undef_macro
22252 for __ARM_FP16_FORMAT_IEEE and __ARM_FP16_FORMAT_ALTERNATIVE.
22253 Define __ARM_FP16_ARGS when appropriate.
22254 * config/arm/arm.c (arm_invalid_parameter_type): Remove
22255 declaration.
22256 (arm_invalid_return_type): Likewise.
22257 (TARGET_INVALID_PARAMETER_TYPE): Remove.
22258 (TARGET_INVALID_RETURN_TYPE): Remove.
22259 (aapcs_vfp_sub_candidate): Allow HFmode.
22260 (aapcs_vfp_allocate): Add comment. Support HFmode.
22261 (aapcs_vfp_allocate_return_reg): Likewise.
22262 (struct aapcs_cp_arg_layout): Slightly reword comments for
22263 is_return_candidate and allocate_return_reg.
22264 (output_mov_vfp): Update assert.
22265 (arm_hard_regno_mode_ok): Remove comment, update HF-mode
22266 condition.
22267 (arm_invalid_parameter_type): Remove.
22268 (amr_invalid_return_type): Remove.
22269 * config/arm/arm.h (TARGET_NEON_FP16): Fix definition.
22270 * config/arm/arm.md (*arm32_movhf): Disable for TARGET_VFP.
22271 * config/arm/vfp.md (*movhf_vfp): Enable for TARGET_VFP.
22272
22273 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
22274
22275 * config/aarch64/aarch64.h (LEGITIMIZE_RELOAD_ADDRESS): Remove.
22276 * config/aarch64/arch64-protos.h
22277 (aarch64_legitimize_reload_address): Remove.
22278 * config/aarch64/aarch64.c (aarch64_legitimize_reload_address):
22279 Remove.
22280
22281 2016-05-16 Eric Botcazou <ebotcazou@adacore.com>
22282
22283 * configure.ac: Add ACX_NONCANONICAL_HOST.
22284 * configure: Regenerate.
22285 * Makefile.in: Set host_noncanonical.
22286
22287 2016-05-14 Uros Bizjak <ubizjak@gmail.com>
22288
22289 PR target/71097
22290 * config/i386/i386.md (*movtf_internal): Before register allocation,
22291 do not allow FP constants for CM_MEDIUM memory model, allow only
22292 standard FP constants for CM_LARGE and CM_LARGE_PIC models.
22293 (*movxf_internal): Ditto.
22294 (*movdf_internal): Ditto.
22295 (*movsf_internal): Ditto.
22296
22297 2016-05-13 Segher Boessenkool <segher@kernel.crashing.org>
22298
22299 PR rtl-optimization/67483
22300 * combine.c (make_compound_operation): Don't call extract_left_shift
22301 with negative shift amounts.
22302
22303 2016-05-13 Jakub Jelinek <jakub@redhat.com>
22304
22305 PR bootstrap/71071
22306 * fold-const.c (fold_checksum_tree): Allow modification
22307 of TYPE_ALIAS_SET during folding.
22308
22309 * config/i386/i386.c (ix86_compute_frame_layout, ix86_expand_prologue,
22310 ix86_expand_split_stack_prologue): Use HOST_WIDE_INT_C macro.
22311 (ix86_split_to_parts): Likewise. Fix up formatting.
22312
22313 2016-05-13 H.J. Lu <hongjiu.lu@intel.com>
22314
22315 * tree-ssa-loop-ivopts.c (create_new_ivs): Cast to
22316 unsigned HOST_WIDE_INT with HOST_WIDE_INT_PRINT_UNSIGNED in
22317 printf format.
22318
22319 2016-05-13 Nathan Sidwell <nathan@acm.org>
22320
22321 * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): New.
22322 (nvptx_name_replacement): Delete.
22323 (write_fn_proto, write_fn_proto_from_insn,
22324 nvptx_output_call_insn): Remove nvptx_name_replacement call.
22325 (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Override.
22326 * langhooks.c (add_builtin_funcction_common): Call
22327 targetm.mangle_decl_assembler_name.
22328
22329 * config/nvptx/nvptx.c (write_fn_proto): Handle
22330 BUILT_IN_ATOMIC_COMPARE_EXCHANGE_n oddity.
22331
22332 2016-05-13 Martin Liska <mliska@suse.cz>
22333
22334 * tree-ssa-loop-ivopts.c (create_new_ivs): Use HOST_WIDE_INT_PRINT_DEC
22335 and PRIu64 in printf format.
22336
22337 2016-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22338
22339 * tree-ssa-loop-ivanon.c (try_unroll_loop_completely): Typo fix in
22340 comment.
22341
22342 2016-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22343
22344 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
22345 Change --param max-completely-peeled-times to
22346 --param max-completely-peel-times in dump file printing.
22347
22348 2016-05-13 Richard Biener <rguenther@suse.de>
22349
22350 PR tree-optimization/42587
22351 * tree-ssa-math-opts.c (perform_symbolic_merge): Handle BIT_FIELD_REF.
22352 (find_bswap_or_nop_1): Likewise.
22353 (bswap_replace): Likewise.
22354
22355 2016-05-13 Martin Liska <mliska@suse.cz>
22356
22357 * tree-vect-patterns.c (vect_recog_mask_conversion_pattern):
22358 Initialize a variable with default value.
22359
22360 2016-05-13 Martin Liska <mliska@suse.cz>
22361
22362 * doc/invoke.texi: Enhance explanation of error recovery
22363 of sanitizers.
22364
22365 2016-05-13 Martin Liska <mliska@suse.cz>
22366
22367 * tree-ssa-loop-ivopts.c (avg_loop_niter): Fix coding style.
22368 (struct cost_pair): Change inv_expr_id (int) to inv_expr
22369 (iv_inv_expr_ent *).
22370 (struct iv_inv_expr_ent): Comment struct fields.
22371 (sort_iv_inv_expr_ent): New function.
22372 (struct ivopts_data): Rename inv_expr_id to max_inv_expr_id.
22373 (struct iv_ca): Replace used_inv_expr and num_used_inv_expr with
22374 a hash_map between iv_inv_expr_ent and number of usages.
22375 (niter_for_exit): Fix coding style.
22376 (tree_ssa_iv_optimize_init): Use renamed variable.
22377 (determine_base_object): Fix coding style.
22378 (alloc_iv): Likewise.
22379 (find_interesting_uses_outside): Likewise.
22380 (add_candidate_1): Likewise.
22381 (add_standard_iv_candidates): Likewise.
22382 (set_group_iv_cost): Replace inv_expr_id with inv_expr.
22383 (prepare_decl_rtl): Fix coding style.
22384 (get_address_cost): Likewise.
22385 (get_shiftadd_cost): Likewise.
22386 (force_expr_to_var_cost): Likewise.
22387 (compare_aff_trees): Likewise.
22388 (get_expr_id): Restructure the function.
22389 (get_loop_invariant_expr_id): Renamed to
22390 get_loop_invariant_expr.
22391 (get_computation_cost_at): Replace usage of inv_expr_id with
22392 inv_expr.
22393 (get_computation_cost): Likewise.
22394 (determine_group_iv_cost_generic): Likewise.
22395 (determine_group_iv_cost_address): Likewise.
22396 (iv_period): Fix coding style.
22397 (iv_elimination_compare_lt): Likewise.
22398 (may_eliminate_iv): Likewise.
22399 (determine_group_iv_cost_cond): Replace usage of inv_expr_id with
22400 inv_expr.
22401 (determine_group_iv_costs): Dump invariant expressions.
22402 (iv_ca_recount_cost): Use the newly added hash_map.
22403 (iv_ca_set_remove_invariants): Fix coding style.
22404 (iv_ca_set_add_invariants): Fix coding style.
22405 (iv_ca_set_no_cp): Utilize the newly added hash_map for used
22406 invariants.
22407 (iv_ca_set_cp): Likewise.
22408 (iv_ca_new): Initialize the newly added hash_map and remove
22409 initialization of fields.
22410 (iv_ca_free): Delete the hash_map.
22411 (iv_ca_dump): Dump invariant expressions.
22412 (iv_ca_extend): Fix coding style.
22413 (try_add_cand_for): Likewise.
22414 (create_new_ivs): Dump information about # of avg iterations and
22415 # of used invariant expressions.
22416 (rewrite_use_compare): Fix coding style.
22417 (free_loop_data): Set default value for max_inv_expr_id.
22418
22419 2016-05-13 Ilya Enkovich <ilya.enkovich@intel.com>
22420
22421 * cse.c (rest_of_handle_cse): Use cleanup_cfg
22422 returned value cse_cfg_altered computation.
22423 (rest_of_handle_cse2): Likewise.
22424 (rest_of_handle_cse_after_global_opts): Likewise.
22425
22426 2016-05-13 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
22427
22428 PR target/53440
22429 * config/arm/arm.c (arm32_output_mi_thunk): New.
22430 (arm_output_mi_thunk): Rename to arm_thumb1_mi_thunk. Rework
22431 to split Thumb1 vs TARGET_32BIT functionality.
22432 (arm_thumb1_mi_thunk): New.
22433
22434 2016-05-13 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
22435
22436 * config/aarch64/aarch64.c (TARGET_OMIT_STRUCT_RETURN_REG): Set
22437 to true.
22438
22439 2016-05-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
22440
22441 PR target/71080
22442 * config/i386/i386.c (ix86_in_large_data_p): Guard against NULL exp.
22443
22444 2016-05-13 Eric Botcazou <ebotcazou@adacore.com>
22445
22446 * builtins.c (expand_builtin_memcmp): Do not emit the call here.
22447 (expand_builtin_trap): Emit a regular call.
22448 (set_builtin_user_assembler_name): Remove obsolete cases.
22449 * dse.c (scan_insn): Adjust.
22450 * except.c: Include calls.h.
22451 (sjlj_emit_function_enter): If DONT_USE_BUILTIN_SETJMP is defined,
22452 emit a regular call to setjmp.
22453 * expr.c (emit_block_move_hints): Call emit_block_copy_via_libcall.
22454 (block_move_libcall_safe_for_call_parm): Use memcpy builtin.
22455 (emit_block_move_via_libcall): Delete.
22456 (block_move_fn): Delete.
22457 (init_block_move_fn): Likewise.
22458 (emit_block_move_libcall_fn): Likewise.
22459 (emit_block_op_via_libcall): New function.
22460 (set_storage_via_libcall): Tidy up and use memset builtin.
22461 (block_clear_fn): Delete.
22462 (init_block_clear_fn): Likewise.
22463 (clear_storage_libcall_fn): Likewise.
22464 (expand_assignment): Call emit_block_move_via_libcall.
22465 Do not include gt-expr.h.
22466 * expr.h (emit_block_op_via_libcall): Declare.
22467 (emit_block_copy_via_libcall): New inline function.
22468 (emit_block_move_via_libcall): Likewise.
22469 (emit_block_comp_via_libcall): Likewise.
22470 (block_clear_fn): Delete.
22471 (init_block_move_fn): Likewise.
22472 (init_block_clear_fn): Likewise.
22473 (emit_block_move_via_libcall): Likewise.
22474 (set_storage_via_libcall): Add default parameter value.
22475 * libfuncs.h (enum libfunc_index): Remove obsolete values.
22476 (abort_libfunc): Delete.
22477 (memcpy_libfunc): Likewise.
22478 (memmove_libfunc): Likewise.
22479 (memcmp_libfunc): Likewise.
22480 (memset_libfunc): Likewise.
22481 (setbits_libfunc): Likewise.
22482 (setjmp_libfunc): Likewise.
22483 (longjmp_libfunc): Likewise.
22484 (profile_function_entry_libfunc): Likewise.
22485 (profile_function_exit_libfunc): Likewise.
22486 (gcov_flush_libfunc): Likewise.
22487 * optabs-libfuncs.c (build_libfunc_function): Set DECL_ARTIFICIAL
22488 and DECL_VISIBILITY on the declaration.
22489 (init_optabs): Do not initialize obsolete libfuncs.
22490 * optabs.c (prepare_cmp_insn): Call emit_block_comp_via_libcall.
22491 * tree-core.h (ECF_RET1): Define.
22492 (ECF_TM_PURE): Adjust.
22493 (ECF_TM_BUILTIN): Likewise.
22494 * tree.c (set_call_expr_flags): Deal with ECF_RET1.
22495 (build_common_builtin_nodes): Initialize abort builtin.
22496 Add ECF_RET1 on memcpy, memmove and memset builtins.
22497 Pass final flags for alloca and alloca_with_align builtins.
22498 * config/alpha/alpha.c (alpha_init_libfuncs): Do not initialize
22499 obsolete builtins.
22500 * config/ia64/ia64.c (ia64_vms_init_libfuncs): Likewise.
22501 * config/i386/i386.c (ix86_expand_set_or_movmem): Adjust call to
22502 set_storage_via_libcall and call emit_block_copy_via_libcall.
22503
22504 2016-05-12 Uros Bizjak <ubizjak@gmail.com>
22505
22506 * config/i386/i386.md (*call_got_x32): Change operand 0 to
22507 DImode before it is passed to ix86_output_call_operand.
22508 (*call_value_got_x32): Ditto for operand 1.
22509
22510 2016-05-12 Jiong Wang <jiong.wang@arm.com>
22511
22512 PR rtl-optimization/70904
22513 * lra-constraint.c (process_addr_reg): Relax the restriction on subreg
22514 reload for wide mode.
22515
22516 2016-05-12 Marek Polacek <polacek@redhat.com>
22517
22518 PR c/70756
22519 * langhooks-def.h (lhd_incomplete_type_error): Adjust declaration.
22520 * langhooks.c (lhd_incomplete_type_error): Add location parameter.
22521 * langhooks.h (incomplete_type_error): Likewise.
22522 * tree.c (size_in_bytes_loc): Renamed from size_in_bytes. Add location
22523 parameter, pass it down to incomplete_type_error.
22524 * tree.h (size_in_bytes): New inline overload.
22525 (size_in_bytes_loc): Renamed from size_in_bytes.
22526
22527 2016-05-12 Richard Biener <rguenther@suse.de>
22528
22529 PR tree-optimization/71059
22530 * tree-ssa-pre.c (phi_translate_1): Fully fold translated
22531 nary before looking up or entering the expression into the VN
22532 hashes.
22533 * tree-ssa-sccvn.c (vn_nary_build_or_lookup): Fix comment typo.
22534 Make sure to re-use NARYs without result as inserted by
22535 phi-translation.
22536
22537 2016-05-12 Richard Biener <rguenther@suse.de>
22538
22539 PR tree-optimization/71062
22540 * tree-ssa-alias.h (struct pt_solution): Add vars_contains_restrict
22541 field.
22542 * tree-ssa-structalias.c (set_uids_in_ptset): Set
22543 vars_contains_restrict if the var is a restrict tag.
22544 * tree-ssa-alias.c (ptrs_compare_unequal): If vars_contains_restrict
22545 do not disambiguate pointers against it.
22546 (dump_points_to_solution): Re-structure and adjust for new
22547 vars_contains_restrict flag.
22548 * gimple-pretty-print.c (pp_points_to_solution): Likewise.
22549
22550 2016-05-12 Martin Liska <mliska@suse.cz>
22551
22552 * doc/invoke.texi: Explain connection between
22553 -fsanitize-recover=address and ASAN_OPTIONS="halt_on_error=1".
22554
22555 2016-05-12 Ilya Enkovich <ilya.enkovich@intel.com>
22556
22557 PR tree-optimization/71006
22558 * tree-vect-loop.c (vect_determine_vectorization_factor): Don't
22559 consider COND_EXPR as a mask producer.
22560
22561 2016-05-12 Marek Polacek <polacek@redhat.com>
22562
22563 PR driver/71063
22564 * opts.c (common_handle_option): Detect missing argument for --help^.
22565
22566 2016-05-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22567
22568 PR target/70830
22569 * config/arm/arm.c (arm_output_multireg_pop): Avoid POP instruction
22570 when popping the PC and within an interrupt handler routine.
22571 Add missing tab to output of "ldmfd".
22572 (output_return_instruction): Output LDMFD with SP update rather
22573 than POP when returning from interrupt handler.
22574
22575 2016-05-12 Jakub Jelinek <jakub@redhat.com>
22576
22577 * config/i386/i386.md (isa): Add x64_avx512dq, enable if
22578 TARGET_64BIT && TARGET_AVX512DQ.
22579 * config/i386/sse.md (*vec_extract<mode>): Add avx512bw alternatives.
22580 (*vec_extract<PEXTR_MODE12:mode>_zext): Add avx512bw alternative.
22581 (*vec_extract<ssevecmodelower>_0, *vec_extractv4si_0_zext,
22582 *vec_extractv2di_0_sse): Use v constraint instead of x constraint.
22583 (*vec_extractv4si): Add avx512dq and avx512bw alternatives.
22584 (*vec_extractv4si_zext): Add avx512dq alternative.
22585 (*vec_extractv2di_1): Add x64_avx512dq and avx512bw alternatives,
22586 use v instead of x constraint in other alternatives where possible.
22587
22588 * config/i386/sse.md (sse2_loadld): Use v instead of x
22589 constraint in alternatives 0,1,4.
22590
22591 * config/i386/sse.md (pinsr_evex_isa): New mode attr.
22592 (<sse2p4_1>_pinsr<ssemodesuffix>): Add 2 alternatives with
22593 v constraints instead of x and <pinsr_evex_isa> isa attribute.
22594
22595 PR target/71019
22596 * config/i386/sse.md (<sse2_avx2>_packssdw<mask_name>,
22597 <sse4_1_avx2>_packusdw<mask_name>): Make sure EVEX encoded insn
22598 is not emitted unless TARGET_AVX512BW.
22599 (<sse2_avx2>_packuswb<mask_name>, <sse2_avx2>_packsswb<mask_name>):
22600 Likewise. For TARGET_AVX512BW, use "=v" constraint instead of "=x"
22601 for the result operand.
22602
22603 * config/i386/sse.md (*vec_setv4sf_sse4_1, sse4_1_insertps): Use v
22604 constraint instead of x in avx alternatives. Use maybe_evex instead
22605 of vex prefix.
22606
22607 * config/i386/constraints.md (Yv): New constraint.
22608 * config/i386/i386.h (VALID_AVX512VL_128_REG_MODE): Allow
22609 TFmode and V1TImode in xmm16+ registers for TARGET_AVX512VL.
22610 * config/i386/i386.md (avx512fvecmode): New mode attr.
22611 (*pushtf): Use v constraint instead of x.
22612 (*movtf_internal): Likewise. For TARGET_AVX512VL and
22613 xmm16+ registers, use vmovdqu64 or vmovdqa64 instructions.
22614 (*absneg<mode>2): Use Yv constraint instead of x constraint.
22615 (*absnegtf2_sse): Likewise.
22616 (copysign<mode>3_const, copysign<mode>3_var): Likewise.
22617 * config/i386/sse.md (*andnot<mode>3): Add avx512vl and
22618 avx512f alternatives.
22619 (*andnottf3, *<code><mode>3, *<code>tf3): Likewise.
22620
22621 2016-05-12 Richard Biener <rguenther@suse.de>
22622
22623 PR tree-optimization/71060
22624 * tree-data-ref.c (initialize_data_dependence_relation): Do not
22625 require exact match of DR_BASE_OBJECT but only matching address and
22626 type.
22627
22628 2016-05-12 Richard Biener <rguenther@suse.de>
22629
22630 PR tree-optimization/70986
22631 * cfganal.c: Include cfgloop.h.
22632 (dfs_find_deadend): Prefer to take edges exiting loops.
22633
22634 2016-05-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
22635
22636 * gcc.target/powerpc/pr70963.c: Require at least power8 at both
22637 compile and run time.
22638
22639 2016-05-11 Mikhail Maltsev <maltsevm@gmail.com>
22640
22641 PR c/43651
22642 * doc/invoke.texi (Wduplicate-decl-specifier): Document new option.
22643
22644 2016-05-11 Uros Bizjak <ubizjak@gmail.com>
22645
22646 * config/i386/i386.c (legitimize_pic_address): Use
22647 copy_to_suggested_reg instead of gen_movsi.
22648
22649 2016-05-11 Michael Meissner <meissner@linux.vnet.ibm.com>
22650
22651 * config/rs6000/predicates.md (quad_memory_operand): Move most of
22652 the code into quad_address_p and call it to share code with
22653 vsx_quad_dform_memory_operand.
22654 (vsx_quad_dform_memory_operand): New predicate for ISA 3.0 vector
22655 d-form support.
22656 * config/rs6000/rs6000.opt (-mlra): Switch to being an option mask
22657 bit instead of being a separate word. Split -mpower9-dform into
22658 two switches, -mpower9-dform-scalar and -mpower9-dform-vector.
22659 * config/rs6000/rs6000.c (RELOAD_REG_QUAD_OFFSET): New addr_mask
22660 for the register class supporting 128-bit quad word memory offsets.
22661 (mode_supports_vsx_dform_quad): Helper function to return if the
22662 register class uses quad word memory offsets.
22663 (rs6000_debug_addr_mask): Add support for quad word memory offsets.
22664 (rs6000_debug_reg_global): Always print if we are using LRA or not.
22665 (rs6000_setup_reg_addr_masks): If ISA 3.0 vector d-form
22666 instructions are enabled, set up the appropriate addr_masks for
22667 128-bit types.
22668 (rs6000_init_hard_regno_mode_ok): wb constraint is now based on
22669 -mpower9-dform-scalar, instead of -mpower9-dform.
22670 (rs6000_option_override_internal): Split -mpower9-dform into two
22671 switches, -mpower9-dform-scalar and -mpower9-dform-vector. The
22672 -mpower9-dform switch sets or clears both. If we are not using
22673 the LRA register allocator, do not enable -mpower9-dform-vector by
22674 default. If we are using LRA, enable -mpower9-dform-vector and
22675 -mvsx-timode if it is appropriate. Issue a warning if either
22676 -mpower9-dform-vector or -mvsx-timode are explicitly used without
22677 enabling LRA.
22678 (quad_address_offset_p): New helper function to return if the
22679 offset is legal for quad word memory instructions.
22680 (quad_address_p): New function to determin if GPR or vector
22681 register quad word memory addresses are legal.
22682 (mem_operand_gpr): Validate quad word address offsets.
22683 (reg_offset_addressing_ok_p): Add support for ISA 3.0 vector
22684 d-form (register + offset) instructions.
22685 (offsettable_ok_by_alignment): Likewise.
22686 (rs6000_legitimate_offset_address_p): Likewise.
22687 (legitimate_lo_sum_address_p): Likewise.
22688 (rs6000_legitimize_address): Likewise.
22689 (rs6000_legitimize_reload_address): Add more debug statements for
22690 -mdebug=addr.
22691 (rs6000_legitimate_address_p): Add support for ISA 3.0 vector
22692 d-form instructions.
22693 (rs6000_secondary_reload_memory): Add support for ISA 3.0 vector
22694 d-form instructions. Distinguish different cases in debug
22695 output. (rs6000_secondary_reload_inner): Add support for ISA 3.0 vector
22696 d-form instructions.
22697 (rs6000_preferred_reload_class): Likewise.
22698 (rs6000_output_move_128bit): Add support for ISA 3.0 d-form
22699 instructions. If ISA 3.0 is available, generate lxvx/stxvx instead
22700 of the ISA 2.06 indexed memory instructions.
22701 (rs6000_emit_prologue): If we have ISA 3.0 d-form instructions,
22702 use them to save/restore the saved vector registers instead of
22703 using Altivec instructions.
22704 (rs6000_emit_epilogue): Likewise.
22705 (rs6000_lra_p): Use TARGET_LRA instead of the old option word.
22706 (rs6000_opt_masks): Split -mpower9-dform into
22707 -mpower9-dform-scalar and -mpower9-dform-vector.
22708 (rs6000_print_options_internal): Print -mno-<switch> if <switch>
22709 was not selected.
22710 * config/rs6000/vsx.md (p9_vecload_<mode>): Delete hack to emit
22711 ISA 3.0 vector indexed memory instructions, and fold the code into
22712 the normal mov<mode> patterns.
22713 (p9_vecstore_<mode>): Likewise.
22714 (vsx_mov<mode>): Add support for ISA 3.0 vector d-form
22715 instructions.
22716 (vsx_movti_64bit): Likewise.
22717 (vsx_movti_32bit): Likewise.
22718 * config/rs6000/constraints.md (wO constraint): New constraint for
22719 ISA 3.0 vector d-form support.
22720 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Use
22721 -mpower9-dform-scalar instead of -mpower9-dform. Add note not to
22722 include -mpower9-dform-vector until we switch over to LRA.
22723 (POWERPC_MASKS): Add -mlra. Split -mpower9-dform into two.
22724 switches, -mpower9-dform-scalar and -mpower9-dform-vector.
22725 * config/rs6000/rs6000-protos.h (quad_address_p): Add declaration.
22726 * doc/invoke.texi (RS/6000 and PowerPC Options): Add documentation
22727 for -mpower9-dform and -mlra.
22728 * doc/md.texi (wO constraint): Document wO constraint.
22729
22730 2016-05-11 Alexander Monakov <amonakov@ispras.ru>
22731
22732 * genattr.c (main): Change 'rtx' to 'rtx_insn *' in prototypes of
22733 'insn_latency', 'maximal_insn_latency', 'min_insn_conflict_delay'.
22734 * genautomata.c (output_internal_insn_code_evaluation): Simplify.
22735 Move handling of non-insn arguments inline into the sole user:
22736 (output_trans_func): ...here.
22737 (output_min_insn_conflict_delay_func): Change 'rtx' to 'rtx_insn *'
22738 in emitted function prototype.
22739 (output_internal_insn_latency_func): Ditto. Simplify.
22740 (output_internal_maximal_insn_latency_func): Ditto. Delete
22741 always-unused argument.
22742 (output_insn_latency_func): Ditto.
22743 (output_maximal_insn_latency_func): Ditto.
22744
22745 2016-05-11 Richard Biener <rguenther@suse.de>
22746
22747 PR tree-optimization/71055
22748 * tree-ssa-sccvn.c (vn_reference_lookup_3): When native-interpreting
22749 sth with precision not equal to access size verify we don't chop
22750 off bits.
22751
22752 2016-05-11 Richard Biener <rguenther@suse.de>
22753
22754 PR debug/71057
22755 * dwarf2out.c (retry_incomplete_types): Set early_dwarf.
22756 (dwarf2out_finish): Move retry_incomplete_types call ...
22757 (dwarf2out_early_finish): ... here.
22758
22759 2016-05-11 Richard Biener <rguenther@suse.de>
22760
22761 PR middle-end/71002
22762 * alias.c (reference_alias_ptr_type): Preserve alias-set zero
22763 if the langhook insists on it.
22764 * fold-const.c (make_bit_field_ref): Add arg for the original
22765 reference and preserve its alias-set.
22766 (decode_field_reference): Take exp by reference and adjust it
22767 to the original memory reference.
22768 (optimize_bit_field_compare): Adjust callers.
22769 (fold_truth_andor_1): Likewise.
22770 * gimplify.c (gimplify_expr): Adjust in-SSA form test.
22771
22772 2016-05-11 Ilya Enkovich <ilya.enkovich@intel.com>
22773
22774 PR middle-end/70807
22775 * cfgrtl.h (delete_insn_and_edges): Now return bool.
22776 * cfgrtl.c (delete_insn_and_edges): Likewise.
22777 * config/i386/i386.c (convert_scalars_to_vector): Remove
22778 redundant code.
22779 * cse.c (cse_insn): Compute cse_cfg_altered.
22780 (delete_trivially_dead_insns): Likewise.
22781 (cse_cc_succs): Likewise.
22782 (rest_of_handle_cse): Free dominance info if required.
22783 (rest_of_handle_cse2): Likewise.
22784 (rest_of_handle_cse_after_global_opts): Likewise.
22785
22786 2016-05-11 Alan Modra <amodra@gmail.com>
22787
22788 * config/rs6000/rs6000.c (is_complex_IBM_long_double,
22789 abi_v4_pass_in_fpr): New functions.
22790 (rs6000_function_arg_boundary): Exclude complex IBM long double
22791 from 64-bit alignment when ABI_V4.
22792 (rs6000_function_arg, rs6000_function_arg_advance_1,
22793 rs6000_gimplify_va_arg): Use abi_v4_pass_in_fpr.
22794
22795 2016-05-10 Segher Boessenkool <segher@kernel.crashing.org>
22796
22797 PR rtl-optimization/71028
22798 * cfgcleanup.c (try_optimize_cfg): Do not flip a conditional
22799 jump with just a return in the fallthrough block if the branch
22800 block contains just a return as well.
22801
22802 2016-05-10 Marc Glisse <marc.glisse@inria.fr>
22803
22804 * fold-const.c (fold_binary_loc) [(X ^ Y) & Y]: Remove and merge with...
22805 * match.pd ((X & Y) ^ Y): ... this.
22806 ((X & Y) & Y, (X | Y) | Y, (X ^ Y) ^ Y, (X & Y) & (X & Z), (X | Y)
22807 | (X | Z), (X ^ Y) ^ (X ^ Z)): New transformations.
22808
22809 2016-05-10 David Malcolm <dmalcolm@redhat.com>
22810
22811 * read-md.c (require_char_ws): New function.
22812 (read_string): Simplify using require_char_ws.
22813 (handle_constants): Likewise.
22814 (handle_enum): Likewise.
22815 (handle_file): Likewise.
22816 * read-md.h (require_char_ws): New declaration.
22817 * read-rtl.c (read_conditions): Simplify using require_char_ws.
22818 (read_mapping): Likewise.
22819 (read_rtx_code): Likewise.
22820 (read_nested_rtx): Likewise.
22821
22822 2016-05-10 James Norris <jnorris@codesourcery.com>
22823
22824 * config/rs6000/sysv4.h (CRTOFFLOADBEGIN): Define. Add crtoffloadbegin.o
22825 if offloading is enabled and -fopenacc or -fopenmp is specified.
22826 (CRTOFFLOADEND): Likewise.
22827 (STARTFILE_LINUX_SPEC): Add CRTOFFLOADBEGIN.
22828 (ENDFILE_LINUX_SPEC): Add CRTOFFLOADEND.
22829
22830 2016-05-10 Uros Bizjak <ubizjak@gmail.com>
22831
22832 * config/i386/i386.c (legitimize_pic_address): Merge 64-bit and 32-bit
22833 gotoff_operand code paths. Use copy_to_suggested_regs and
22834 expand_simple_binop where appropriate. Cleanup.
22835
22836 2016-05-10 Ilya Enkovich <ilya.enkovich@intel.com>
22837
22838 PR target/70799
22839 * config/i386/i386.c (dimode_scalar_to_vector_candidate_p): Allow
22840 integer constants.
22841 (dimode_scalar_chain::vector_const_cost): New.
22842 (dimode_scalar_chain::compute_convert_gain): Handle constants.
22843 (dimode_scalar_chain::convert_op): Likewise.
22844 (dimode_scalar_chain::convert_insn): Likewise.
22845
22846 2016-05-10 Pierre-Marie de Rodat <derodat@adacore.com>
22847
22848 * dwarf2out.c (resolve_args_picking_1): Consider DW_OP_neg as an
22849 unary operation, not a binary one.
22850
22851 2016-05-10 Ilya Enkovich <ilya.enkovich@intel.com>
22852
22853 PR middle-end/70877
22854 * tree-chkp.c (chkp_add_bounds_to_call_stmt): Handle
22855 calls with type casted fndecl.
22856
22857 2016-05-10 Ilya Enkovich <ilya.enkovich@intel.com>
22858
22859 PR tree-optimization/70786
22860 * tree-chkp.c (chkp_find_bounds_1): Support WITH_SIZE_EXPR.
22861 * calls.c (initialize_argument_information): Bind bounds
22862 with corresponding args passed by reference.
22863
22864 2016-05-10 Jakub Jelinek <jakub@redhat.com>
22865
22866 PR target/70927
22867 * config/i386/sse.md (<sse>_andnot<mode>3<mask_name>),
22868 *<code><mode>3<mask_name>): For !TARGET_AVX512DQ and EVEX encoding,
22869 use vp*[dq] instead of v*p[sd] instructions and adjust mode attribute
22870 accordingly.
22871
22872 2016-05-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
22873
22874 PR target/70963
22875 * config/rs6000/vsx.md (vsx_xvcvdpsxds_scale): Generate correct
22876 code for a zero scale factor.
22877 (vsx_xvcvdpuxds_scale): Likewise.
22878
22879 2016-05-10 David Malcolm <dmalcolm@redhat.com>
22880
22881 * diagnostic-show-locus.c (layout::layout): Call show_ruler
22882 if show_ruler_p was set on the context.
22883 (layout::show_ruler): New method.
22884 * diagnostic.h (struct diagnostic_context): Add field
22885 "show_ruler_p".
22886
22887 2016-05-10 Richard Biener <rguenther@suse.de>
22888
22889 PR tree-optimization/71039
22890 * tree-ssa-phiprop.c: Include tree-ssa-loop.h.
22891 (chk_uses): New function.
22892 (propagate_with_phi): Verify we can safely replicate the lhs of an
22893 aggregate assignment on all incoming edges.
22894
22895 2016-05-10 Oleg Endo <olegendo@gcc.gnu.org>
22896
22897 * config/rx/rx-protos.h (is_interrupt_func, is_fast_interrupt_func):
22898 Forward declare.
22899 (rx_atomic_sequence): New class.
22900 * config/rx/rx.c (rx_print_operand): Use symbolic names for PSW bits.
22901 (is_interrupt_func, is_fast_interrupt_func): Make non-static and
22902 non-inline.
22903 (rx_atomic_sequence::rx_atomic_sequence,
22904 rx_atomic_sequence::~rx_atomic_sequence): New functions.
22905 * config/rx/rx.md (CTRLREG_PSW, CTRLREG_USP, CTRLREG_FPSW, CTRLREG_CPEN,
22906 CTRLREG_BPSW, CTRLREG_BPC, CTRLREG_ISP, CTRLREG_FINTV,
22907 CTRLREG_INTB): New constants.
22908 (FETCHOP): New code iterator.
22909 (fethcop_name, fetchop_name2): New iterator code attributes.
22910 (QIHI): New mode iterator.
22911 (atomic_exchange<mode>, atomic_exchangesi, xchg_mem<mode>,
22912 atomic_fetch_<fetchop_name>si, atomic_fetch_nandsi,
22913 atomic_<fetchop_name>_fetchsi, atomic_nand_fetchsi): New patterns.
22914
22915 2016-05-10 Martin Liska <mliska@suse.cz>
22916
22917 * tree-inline.c (remap_dependence_clique): Do not remap
22918 debugging statements.
22919
22920 2016-05-10 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22921
22922 * config/s390/s390.md ("*vec_cmp<insn_cmp>df_cconly")
22923 ("*fixuns_truncdfdi2_z13")
22924 ("*fixuns_trunc<FP:mode><GPR:mode>2_z196")
22925 ("*fix_truncdfdi2_bfp_z13", "*floatunsdidf2_z13")
22926 ("*extendsfdf2_z13"): Replace TARGET_Z13 with TARGET_VX.
22927
22928 2016-05-10 Richard Biener <rguenther@suse.de>
22929
22930 PR tree-optimization/70497
22931 PR tree-optimization/28367
22932 * tree-ssa-sccvn.c (vn_nary_build_or_lookup): New function
22933 split out from ...
22934 (visit_reference_op_load): ... here.
22935 (vn_reference_lookup_3): Use it to handle subreg-like accesses
22936 with simplified BIT_FIELD_REFs.
22937 * tree-ssa-pre.c (eliminate_insert): Handle inserting BIT_FIELD_REFs.
22938 * tree-complex.c (extract_component): Handle BIT_FIELD_REFs
22939 correctly.
22940
22941 2016-05-10 Pierre-Marie de Rodat <derodat@adacore.com>
22942
22943 * dwarf2out.c (add_abstract_origin_attribute): Adjust
22944 documentation comment. For BLOCK nodes, add a
22945 DW_AT_abstract_origin attribute that points to the DIE generated
22946 for the origin BLOCK.
22947 (gen_lexical_block_die): Call add_abstract_origin_attribute for
22948 blocks from inlined functions.
22949
22950 2016-05-10 Alan Modra <amodra@gmail.com>
22951
22952 PR target/70947
22953 * config/rs6000/rs6000.c (rs6000_expand_split_stack_prologue): Stop
22954 regrename modifying insns saving lr before __morestack call.
22955 * config/rs6000/rs6000.md (split_stack_return): Similarly for
22956 insns restoring lr after __morestack call.
22957
22958 2016-05-09 Jakub Jelinek <jakub@redhat.com>
22959
22960 * config/i386/i386.md (set_got, set_got_labelled, lwp_llwpcb,
22961 lwp_lwpval<mode>3, lwp_lwpins<mode>3): Remove constraints from
22962 expanders.
22963 * config/i386/sse.md (vec_interleave_high<mode>,
22964 vec_interleave_low<mode>, <avx512>_vpermi2var<mode>3_maskz,
22965 <avx512>_vpermt2var<mode>3_maskz): Likewise.
22966
22967 2016-05-04 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
22968
22969 * config/rs6000/rs6000.c (rs6000_reassociation_width): Add
22970 function for TARGET_SCHED_REASSOCIATION_WIDTH to enable
22971 parallel reassociation for power8 and forward.
22972
22973 2016-05-09 Uros Bizjak <ubizjak@gmail.com>
22974
22975 * config/i386/i386.md (absneg splitters with general regs): Use
22976 general_reg_operand predicate.
22977 (btsq peephole2): Use x86_64_immediate_operand to check if new
22978 value is suitable for immediate operand. Generate emitted insn
22979 using RTL expressions.
22980 (btcq peephole2): Ditto.
22981 (btrq peephole2): Ditto. Generate correct immediate operand
22982 for AND masking.
22983
22984 2016-05-09 Richard Sandiford <richard.sandiford@arm.com>
22985
22986 * cfgexpand.c (expand_debug_expr): Fix address offset for negative
22987 bitpos.
22988
22989 2016-05-09 Richard Sandiford <richard.sandiford@arm.com>
22990
22991 * tree-affine.c (wide_int_constant_multiple_p): Add missing
22992 pointer dereference.
22993
22994 2016-05-09 Richard Biener <rguenther@suse.de>
22995
22996 PR tree-optimization/70985
22997 * match.pd (BIT_FIELD_REF -> (type)): Disable on GIMPLE when
22998 op0 isn't a gimple register.
22999
23000 2016-05-09 Prachi Godbole <prachi.godbole@imgtec.com>
23001
23002 * config/mips/i6400.md (i6400_fpu_intadd, i6400_fpu_logic)
23003 (i6400_fpu_div, i6400_fpu_cmp, i6400_fpu_float, i6400_fpu_store)
23004 (i6400_fpu_long_pipe, i6400_fpu_logic_l, i6400_fpu_float_l)
23005 (i6400_fpu_mult): New cpu units.
23006 (i6400_msa_add_d, i6400_msa_int_add, i6400_msa_short_logic3)
23007 (i6400_msa_short_logic2, i6400_msa_short_logic, i6400_msa_move)
23008 (i6400_msa_cmp, i6400_msa_short_float2, i6400_msa_div_d)
23009 (i6400_msa_div_w, i6400_msa_div_h, i6400_msa_div_b)
23010 (i6400_msa_copy, i6400_msa_branch, i6400_fpu_msa_store)
23011 (i6400_fpu_msa_load, i6400_fpu_msa_move, i6400_msa_long_logic1)
23012 (i6400_msa_long_logic2, i6400_msa_mult, i6400_msa_long_float2)
23013 (i6400_msa_long_float4, i6400_msa_long_float5)
23014 (i6400_msa_long_float8, i6400_msa_fdiv_df)
23015 (i6400_msa_fdiv_sf): New reservations.
23016 * config/mips/p5600.md (p5600_fpu_intadd, p5600_fpu_cmp)
23017 (p5600_fpu_float, p5600_fpu_logic_a, p5600_fpu_logic_b)
23018 (p5600_fpu_div, p5600_fpu_logic, p5600_fpu_float_a)
23019 (p5600_fpu_float_b, p5600_fpu_float_c, p5600_fpu_float_d)
23020 (p5600_fpu_mult, p5600_fpu_fdiv, p5600_fpu_load): New cpu units.
23021 (msa_short_int_add, msa_short_logic, msa_short_logic_move_v)
23022 (msa_short_cmp, msa_short_float2, msa_short_logic3)
23023 (msa_short_store4, msa_long_load, msa_short_store)
23024 (msa_long_logic, msa_long_float2, msa_long_float4)
23025 (msa_long_float5, msa_long_float8, msa_long_mult)
23026 (msa_long_fdiv, msa_long_div): New reservations.
23027
23028 2016-05-09 Robert Suchanek <robert.suchanek@imgtec.com>
23029 Sameera Deshpande <sameera.deshpande@imgtec.com>
23030 Matthew Fortune <matthew.fortune@imgtec.com>
23031 Graham Stott <graham.stott@imgtec.com>
23032 Chao-ying Fu <chao-ying.fu@imgtec.com>
23033
23034 * config.gcc: Add MSA header file for mips*-*-* target.
23035 * config/mips/constraints.md (YI, YC, YZ, Unv5, Uuv5, Usv5, Uuv6)
23036 (Ubv8i, Urv8): New constraints.
23037 * config/mips/mips-ftypes.def: Add function types for MSA
23038 builtins.
23039 * config/mips/mips-modes.def (V16QI, V8HI, V4SI, V2DI, V4SF)
23040 (V2DF, V32QI, V16HI, V8SI, V4DI, V8SF, V4DF): New modes.
23041 * config/mips/mips-msa.md: New file.
23042 * config/mips/mips-protos.h
23043 (mips_split_128bit_const_insns): New prototype.
23044 (mips_msa_idiv_insns): Likewise.
23045 (mips_split_128bit_move): Likewise.
23046 (mips_split_128bit_move_p): Likewise.
23047 (mips_split_msa_copy_d): Likewise.
23048 (mips_split_msa_insert_d): Likewise.
23049 (mips_split_msa_fill_d): Likewise.
23050 (mips_expand_msa_branch): Likewise.
23051 (mips_const_vector_same_val_p): Likewise.
23052 (mips_const_vector_same_bytes_p): Likewise.
23053 (mips_const_vector_same_int_p): Likewise.
23054 (mips_const_vector_shuffle_set_p): Likewise.
23055 (mips_const_vector_bitimm_set_p): Likewise.
23056 (mips_const_vector_bitimm_clr_p): Likewise.
23057 (mips_msa_vec_parallel_const_half): Likewise.
23058 (mips_msa_output_division): Likewise.
23059 (mips_ldst_scaled_shift): Likewise.
23060 (mips_expand_vec_cond_expr): Likewise.
23061 * config/mips/mips.c (enum mips_builtin_type): Add
23062 MIPS_BUILTIN_MSA_TEST_BRANCH.
23063 (mips_gen_const_int_vector_shuffle): New prototype.
23064 (mips_const_vector_bitimm_set_p): New function.
23065 (mips_const_vector_bitimm_clr_p): Likewise.
23066 (mips_const_vector_same_val_p): Likewise.
23067 (mips_const_vector_same_bytes_p): Likewise.
23068 (mips_const_vector_same_int_p): Likewise.
23069 (mips_const_vector_shuffle_set_p): Likewise.
23070 (mips_symbol_insns): Forbid loading symbols via immediate for
23071 MSA.
23072 (mips_valid_offset_p): Limit offset to 10-bit for MSA loads and
23073 stores.
23074 (mips_valid_lo_sum_p): Forbid loadings symbols via %lo(base) for
23075 MSA.
23076 (mips_lx_address_p): Add support load indexed address for MSA.
23077 (mips_address_insns): Add calculation of instructions needed for
23078 stores and loads for MSA.
23079 (mips_const_insns): Move CONST_DOUBLE below CONST_VECTOR. Handle
23080 CONST_VECTOR for MSA and let it fall through.
23081 (mips_ldst_scaled_shift): New function.
23082 (mips_subword_at_byte): Likewise.
23083 (mips_msa_idiv_insns): Likewise.
23084 (mips_legitimize_move): Validate MSA moves.
23085 (mips_rtx_costs): Add UNGE, UNGT, UNLE, UNLT cases. Add
23086 calculation of costs for MSA division.
23087 (mips_split_move_p): Check if MSA moves need splitting.
23088 (mips_split_move): Split MSA moves if necessary.
23089 (mips_split_128bit_move_p): New function.
23090 (mips_split_128bit_move): Likewise.
23091 (mips_split_msa_copy_d): Likewise.
23092 (mips_split_msa_insert_d): Likewise.
23093 (mips_split_msa_fill_d): Likewise.
23094 (mips_output_move): Handle MSA moves.
23095 (mips_expand_msa_branch): New function.
23096 (mips_print_operand): Add 'E', 'B', 'w', 'v' and 'V' modifiers.
23097 Reinstate 'y' modifier.
23098 (mips_file_start): Add MSA .gnu_attribute.
23099 (mips_hard_regno_mode_ok_p): Allow TImode and 128-bit vectors in
23100 FPRs.
23101 (mips_hard_regno_nregs): Always return 1 for MSA supported mode.
23102 (mips_class_max_nregs): Add register size for MSA supported mode.
23103 (mips_cannot_change_mode_class): Allow conversion between MSA
23104 vector modes and TImode.
23105 (mips_mode_ok_for_mov_fmt_p): Allow MSA to use move.v
23106 instruction.
23107 (mips_secondary_reload_class): Force MSA loads/stores via memory.
23108 (mips_preferred_simd_mode): Add preffered modes for MSA.
23109 (mips_vector_mode_supported_p): Add MSA supported modes.
23110 (mips_autovectorize_vector_sizes): New function.
23111 (mips_msa_output_division): Likewise.
23112 (MSA_BUILTIN, MIPS_BUILTIN_DIRECT_NO_TARGET)
23113 (MSA_NO_TARGET_BUILTIN, MSA_BUILTIN_TEST_BRANCH): New macros.
23114 (CODE_FOR_msa_adds_s_b, CODE_FOR_msa_adds_s_h)
23115 (CODE_FOR_msa_adds_s_w, CODE_FOR_msa_adds_s_d)
23116 (CODE_FOR_msa_adds_u_b, CODE_FOR_msa_adds_u_h)
23117 (CODE_FOR_msa_adds_u_w, CODE_FOR_msa_adds_u_du
23118 (CODE_FOR_msa_addv_b, CODE_FOR_msa_addv_h, CODE_FOR_msa_addv_w)
23119 (CODE_FOR_msa_addv_d, CODE_FOR_msa_and_v, CODE_FOR_msa_bmnz_v)
23120 (CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bmz_v, CODE_FOR_msa_bmzi_b)
23121 (CODE_FOR_msa_bnz_v, CODE_FOR_msa_bz_v, CODE_FOR_msa_bsel_v)
23122 (CODE_FOR_msa_bseli_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w)
23123 (CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b)
23124 (CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w)
23125 (CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clti_u_b)
23126 (CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w)
23127 (CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_s_b)
23128 (CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w)
23129 (CODE_FOR_msa_clei_s_d, CODE_FOR_msa_clei_u_b)
23130 (CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w)
23131 (CODE_FOR_msa_clei_u_d, CODE_FOR_msa_div_s_b)
23132 (CODE_FOR_msa_div_s_h, CODE_FOR_msa_div_s_w)
23133 (CODE_FOR_msa_div_s_d, CODE_FOR_msa_div_u_b)
23134 (CODE_FOR_msa_div_u_h, CODE_FOR_msa_div_u_w)
23135 (CODE_FOR_msa_div_u_d, CODE_FOR_msa_fadd_w, CODE_FOR_msa_fadd_d)
23136 (CODE_FOR_msa_fexdo_w, CODE_FOR_msa_ftrunc_s_w)
23137 (CODE_FOR_msa_ftrunc_s_d, CODE_FOR_msa_ftrunc_u_w)
23138 (CODE_FOR_msa_ftrunc_u_d, CODE_FOR_msa_ffint_s_w)
23139 (CODE_FOR_msa_ffint_s_d, CODE_FOR_msa_ffint_u_w)
23140 (CODE_FOR_msa_ffint_u_d, CODE_FOR_msa_fsub_w)
23141 (CODE_FOR_msa_fsub_d, CODE_FOR_msa_fmsub_d, CODE_FOR_msa_fmadd_w)
23142 (CODE_FOR_msa_fmadd_d, CODE_FOR_msa_fmsub_w, CODE_FOR_msa_fmul_w)
23143 (CODE_FOR_msa_fmul_d, CODE_FOR_msa_fdiv_w, CODE_FOR_msa_fdiv_d)
23144 (CODE_FOR_msa_fmax_w, CODE_FOR_msa_fmax_d, CODE_FOR_msa_fmax_a_w)
23145 (CODE_FOR_msa_fmax_a_d, CODE_FOR_msa_fmin_w, CODE_FOR_msa_fmin_d)
23146 (CODE_FOR_msa_fmin_a_w, CODE_FOR_msa_fmin_a_d)
23147 (CODE_FOR_msa_fsqrt_w, CODE_FOR_msa_fsqrt_d)
23148 (CODE_FOR_msa_max_s_b, CODE_FOR_msa_max_s_h)
23149 (CODE_FOR_msa_max_s_w, CODE_FOR_msa_max_s_d)
23150 (CODE_FOR_msa_max_u_b, CODE_FOR_msa_max_u_h)
23151 (CODE_FOR_msa_max_u_w, CODE_FOR_msa_max_u_d)
23152 (CODE_FOR_msa_min_s_b, CODE_FOR_msa_min_s_h)
23153 (CODE_FOR_msa_min_s_w, CODE_FOR_msa_min_s_d)
23154 (CODE_FOR_msa_min_u_b, CODE_FOR_msa_min_u_h)
23155 (CODE_FOR_msa_min_u_w, CODE_FOR_msa_min_u_d)
23156 (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
23157 (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
23158 (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
23159 (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
23160 (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
23161 (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
23162 (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
23163 (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
23164 (CODE_FOR_msa_mulv_b, CODE_FOR_msa_mulv_h, CODE_FOR_msa_mulv_w)
23165 (CODE_FOR_msa_mulv_d, CODE_FOR_msa_nlzc_b, CODE_FOR_msa_nlzc_h)
23166 (CODE_FOR_msa_nlzc_w, CODE_FOR_msa_nlzc_d, CODE_FOR_msa_nor_v)
23167 (CODE_FOR_msa_or_v, CODE_FOR_msa_ori_b, CODE_FOR_msa_nori_b)
23168 (CODE_FOR_msa_pcnt_b, CODE_FOR_msa_pcnt_h, CODE_FOR_msa_pcnt_w)
23169 (CODE_FOR_msa_pcnt_d, CODE_FOR_msa_xor_v, CODE_FOR_msa_xori_b)
23170 (CODE_FOR_msa_sll_b, CODE_FOR_msa_sll_h, CODE_FOR_msa_sll_w)
23171 (CODE_FOR_msa_sll_d, CODE_FOR_msa_slli_b, CODE_FOR_msa_slli_h)
23172 (CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d, CODE_FOR_msa_sra_b)
23173 (CODE_FOR_msa_sra_h, CODE_FOR_msa_sra_w, CODE_FOR_msa_sra_d)
23174 (CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w)
23175 (CODE_FOR_msa_srai_d, CODE_FOR_msa_srl_b, CODE_FOR_msa_srl_h)
23176 (CODE_FOR_msa_srl_w, CODE_FOR_msa_srl_d, CODE_FOR_msa_srli_b)
23177 (CODE_FOR_msa_srli_h, CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d)
23178 (CODE_FOR_msa_subv_b, CODE_FOR_msa_subv_h, CODE_FOR_msa_subv_w)
23179 (CODE_FOR_msa_subv_d, CODE_FOR_msa_subvi_b, CODE_FOR_msa_subvi_h)
23180 (CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d, CODE_FOR_msa_move_v)
23181 (CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h, CODE_FOR_msa_vshf_w)
23182 (CODE_FOR_msa_vshf_d, CODE_FOR_msa_ilvod_d, CODE_FOR_msa_ilvev_d)
23183 (CODE_FOR_msa_pckod_d, CODE_FOR_msa_pckdev_d, CODE_FOR_msa_ldi_b)
23184 (CODE_FOR_msa_ldi_hi, CODE_FOR_msa_ldi_w)
23185 (CODE_FOR_msa_ldi_d): New code_aliasing macros.
23186 (mips_builtins): Add MSA sll_b, sll_h, sll_w, sll_d, slli_b,
23187 slli_h, slli_w, slli_d, sra_b, sra_h, sra_w, sra_d, srai_b,
23188 srai_h, srai_w, srai_d, srar_b, srar_h, srar_w, srar_d, srari_b,
23189 srari_h, srari_w, srari_d, srl_b, srl_h, srl_w, srl_d, srli_b,
23190 srli_h, srli_w, srli_d, srlr_b, srlr_h, srlr_w, srlr_d, srlri_b,
23191 srlri_h, srlri_w, srlri_d, bclr_b, bclr_h, bclr_w, bclr_d,
23192 bclri_b, bclri_h, bclri_w, bclri_d, bset_b, bset_h, bset_w,
23193 bset_d, bseti_b, bseti_h, bseti_w, bseti_d, bneg_b, bneg_h,
23194 bneg_w, bneg_d, bnegi_b, bnegi_h, bnegi_w, bnegi_d, binsl_b,
23195 binsl_h, binsl_w, binsl_d, binsli_b, binsli_h, binsli_w,
23196 binsli_d, binsr_b, binsr_h, binsr_w, binsr_d, binsri_b, binsri_h,
23197 binsri_w, binsri_d, addv_b, addv_h, addv_w, addv_d, addvi_b,
23198 addvi_h, addvi_w, addvi_d, subv_b, subv_h, subv_w, subv_d,
23199 subvi_b, subvi_h, subvi_w, subvi_d, max_s_b, max_s_h, max_s_w,
23200 max_s_d, maxi_s_b, maxi_s_h, maxi_s_w, maxi_s_d, max_u_b,
23201 max_u_h, max_u_w, max_u_d, maxi_u_b, maxi_u_h, maxi_u_w,
23202 maxi_u_d, min_s_b, min_s_h, min_s_w, min_s_d, mini_s_b, mini_s_h,
23203 mini_s_w, mini_s_d, min_u_b, min_u_h, min_u_w, min_u_d, mini_u_b,
23204 mini_u_h, mini_u_w, mini_u_d, max_a_b, max_a_h, max_a_w, max_a_d,
23205 min_a_b, min_a_h, min_a_w, min_a_d, ceq_b, ceq_h, ceq_w, ceq_d,
23206 ceqi_b, ceqi_h, ceqi_w, ceqi_d, clt_s_b, clt_s_h, clt_s_w,
23207 clt_s_d, clti_s_b, clti_s_h, clti_s_w, clti_s_d, clt_u_b,
23208 clt_u_h, clt_u_w, clt_u_d, clti_u_b, clti_u_h, clti_u_w,
23209 clti_u_d, cle_s_b, cle_s_h, cle_s_w, cle_s_d, clei_s_b, clei_s_h,
23210 clei_s_w, clei_s_d, cle_u_b, cle_u_h, cle_u_w, cle_u_d, clei_u_b,
23211 clei_u_h, clei_u_w, clei_u_d, ld_b, ld_h, ld_w, ld_d, st_b, st_h,
23212 st_w, st_d, sat_s_b, sat_s_h, sat_s_w, sat_s_d, sat_u_b, sat_u_h,
23213 sat_u_w, sat_u_d, add_a_b, add_a_h, add_a_w, add_a_d, adds_a_b,
23214 adds_a_h, adds_a_w, adds_a_d, adds_s_b, adds_s_h, adds_s_w,
23215 adds_s_d, adds_u_b, adds_u_h, adds_u_w, adds_u_d, ave_s_b,
23216 ave_s_h, ave_s_w, ave_s_d, ave_u_b, ave_u_h, ave_u_w, ave_u_d,
23217 aver_s_b, aver_s_h, aver_s_w, aver_s_d, aver_u_b, aver_u_h,
23218 aver_u_w, aver_u_d, subs_s_b, subs_s_h, subs_s_w, subs_s_d,
23219 subs_u_b, subs_u_h, subs_u_w, subs_u_d, subsuu_s_b, subsuu_s_h,
23220 subsuu_s_w, subsuu_s_d, subsus_u_b, subsus_u_h, subsus_u_w,
23221 subsus_u_d, asub_s_b, asub_s_h, asub_s_w, asub_s_d, asub_u_b,
23222 asub_u_h, asub_u_w, asub_u_d, mulv_b, mulv_h, mulv_w, mulv_d,
23223 maddv_b, maddv_h, maddv_w, maddv_d, msubv_b, msubv_h, msubv_w,
23224 msubv_d, div_s_b, div_s_h, div_s_w, div_s_d, div_u_b, div_u_h,
23225 div_u_w, div_u_d, hadd_s_h, hadd_s_w, hadd_s_d, hadd_u_h,
23226 hadd_u_w, hadd_u_d, hsub_s_h, hsub_s_w, hsub_s_d, hsub_u_h,
23227 hsub_u_w, hsub_u_d, mod_s_b, mod_s_h, mod_s_w, mod_s_d, mod_u_b,
23228 mod_u_h, mod_u_w, mod_u_d, dotp_s_h, dotp_s_w, dotp_s_d,
23229 dotp_u_h, dotp_u_w, dotp_u_d, dpadd_s_h, dpadd_s_w, dpadd_s_d,
23230 dpadd_u_h, dpadd_u_w, dpadd_u_d, dpsub_s_h, dpsub_s_w, dpsub_s_d,
23231 dpsub_u_h, dpsub_u_w, dpsub_u_d, sld_b, sld_h, sld_w, sld_d,
23232 sldi_b, sldi_h, sldi_w, sldi_d, splat_b, splat_h, splat_w,
23233 splat_d, splati_b, splati_h, splati_w, splati_d, pckev_b,
23234 pckev_h, pckev_w, pckev_d, pckod_b, pckod_h, pckod_w, pckod_d,
23235 ilvl_b, ilvl_h, ilvl_w, ilvl_d, ilvr_b, ilvr_h, ilvr_w, ilvr_d,
23236 ilvev_b, ilvev_h, ilvev_w, ilvev_d, ilvod_b, ilvod_h, ilvod_w,
23237 ilvod_d, vshf_b, vshf_h, vshf_w, vshf_d, and_v, andi_b, or_v,
23238 ori_b, nor_v, nori_b, xor_v, xori_b, bmnz_v, bmnzi_b, bmz_v,
23239 bmzi_b, bsel_v, bseli_b, shf_b, shf_h, shf_w, bnz_v, bz_v,
23240 fill_b, fill_h, fill_w, fill_d, pcnt_b, pcnt_h, pcnt_w,
23241 pcnt_d, nloc_b, nloc_h, nloc_w, nloc_d, nlzc_b, nlzc_h, nlzc_w,
23242 nlzc_d, copy_s_b, copy_s_h, copy_s_w, copy_s_d, copy_u_b,
23243 copy_u_h, copy_u_w, copy_u_d, insert_b, insert_h, insert_w,
23244 insert_d, insve_b, insve_h, insve_w, insve_d, bnz_b, bnz_h,
23245 bnz_w, bnz_d, bz_b, bz_h, bz_w, bz_d, ldi_b, ldi_h, ldi_w, ldi_d,
23246 fcaf_w, fcaf_d, fcor_w, fcor_d, fcun_w, fcun_d, fcune_w, fcune_d,
23247 fcueq_w, fcueq_d, fceq_w, fceq_d, fcne_w, fcne_d, fclt_w, fclt_d,
23248 fcult_w, fcult_d, fcle_w, fcle_d, fcule_w, fcule_d, fsaf_w,
23249 fsaf_d, fsor_w, fsor_d, fsun_w, fsun_d, fsune_w, fsune_d,
23250 fsueq_w, fsueq_d, fseq_w, fseq_d, fsne_w, fsne_d, fslt_w,
23251 fslt_d, fsult_w, fsult_d, fsle_w, fsle_d, fsule_w, fsule_d,
23252 fadd_w, fadd_d, fsub_w, fsub_d, fmul_w, fmul_d, fdiv_w, fdiv_d,
23253 fmadd_w, fmadd_d, fmsub_w, fmsub_d, fexp2_w, fexp2_d, fexdo_h,
23254 fexdo_w, ftq_h, ftq_w, fmin_w, fmin_d, fmin_a_w, fmin_a_d,
23255 fmax_w, fmax_d, fmax_a_w, fmax_a_d, mul_q_h, mul_q_w, mulr_q_h,
23256 mulr_q_w, madd_q_h, madd_q_w, maddr_q_h, maddr_q_w, msub_q_h,
23257 msub_q_w, msubr_q_h, msubr_q_w, fclass_w, fclass_d, fsqrt_w,
23258 fsqrt_d, frcp_w, frcp_d, frint_w, frint_d, frsqrt_w, frsqrt_d,
23259 flog2_w, flog2_d, fexupl_w, fexupl_d, fexupr_w, fexupr_d, ffql_w,
23260 ffql_d, ffqr_w, ffqr_d, ftint_s_w, ftint_s_d, ftint_u_w,
23261 ftint_u_d, ftrunc_s_w, ftrunc_s_d, ftrunc_u_w, ftrunc_u_d,
23262 ffint_s_w, ffint_s_d, ffint_u_w, ffint_u_d, ctcmsa, cfcmsa,
23263 move_v builtins.
23264 (mips_get_builtin_decl_index): New array.
23265 (MIPS_ATYPE_QI, MIPS_ATYPE_HI, MIPS_ATYPE_V2DI, MIPS_ATYPE_V4SI)
23266 (MIPS_ATYPE_V8HI, MIPS_ATYPE_V16QI, MIPS_ATYPE_V2DF)
23267 (MIPS_ATYPE_V4SF, MIPS_ATYPE_UV2DI, MIPS_ATYPE_UV4SI)
23268 (MIPS_ATYPE_UV8HI, MIPS_ATYPE_UV16QI): New.
23269 (mips_init_builtins): Initialize mips_get_builtin_decl_index
23270 array.
23271 (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION): Define target
23272 hook.
23273 (mips_expand_builtin_insn): Prepare operands for
23274 CODE_FOR_msa_addvi_b, CODE_FOR_msa_addvi_h, CODE_FOR_msa_addvi_w,
23275 CODE_FOR_msa_addvi_d, CODE_FOR_msa_clti_u_b,
23276 CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w,
23277 CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_u_b,
23278 CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w,
23279 CODE_FOR_msa_clei_u_d, CODE_FOR_msa_maxi_u_b,
23280 CODE_FOR_msa_maxi_u_h, CODE_FOR_msa_maxi_u_w,
23281 CODE_FOR_msa_maxi_u_d, CODE_FOR_msa_mini_u_b,
23282 CODE_FOR_msa_mini_u_h, CODE_FOR_msa_mini_u_w,
23283 CODE_FOR_msa_mini_u_d, CODE_FOR_msa_subvi_b,
23284 CODE_FOR_msa_subvi_h, CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d,
23285 CODE_FOR_msa_ceqi_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w,
23286 CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b,
23287 CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w,
23288 CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clei_s_b,
23289 CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w,
23290 CODE_FOR_msa_clei_s_d, CODE_FOR_msa_maxi_s_b,
23291 CODE_FOR_msa_maxi_s_h, CODE_FOR_msa_maxi_s_w,
23292 CODE_FOR_msa_maxi_s_d, CODE_FOR_msa_mini_s_b,
23293 CODE_FOR_msa_mini_s_h, CODE_FOR_msa_mini_s_w,
23294 CODE_FOR_msa_mini_s_d, CODE_FOR_msa_andi_b, CODE_FOR_msa_ori_b,
23295 CODE_FOR_msa_nori_b, CODE_FOR_msa_xori_b, CODE_FOR_msa_bmzi_b,
23296 CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bseli_b, CODE_FOR_msa_fill_b,
23297 CODE_FOR_msa_fill_h, CODE_FOR_msa_fill_w, CODE_FOR_msa_fill_d,
23298 CODE_FOR_msa_ilvl_b, CODE_FOR_msa_ilvl_h, CODE_FOR_msa_ilvl_w,
23299 CODE_FOR_msa_ilvl_d, CODE_FOR_msa_ilvr_b, CODE_FOR_msa_ilvr_h,
23300 CODE_FOR_msa_ilvr_w, CODE_FOR_msa_ilvr_d, CODE_FOR_msa_ilvev_b,
23301 CODE_FOR_msa_ilvev_h, CODE_FOR_msa_ilvev_w, CODE_FOR_msa_ilvod_b,
23302 CODE_FOR_msa_ilvod_h, CODE_FOR_msa_ilvod_w, CODE_FOR_msa_pckev_b,
23303 CODE_FOR_msa_pckev_h, CODE_FOR_msa_pckev_w, CODE_FOR_msa_pckod_b,
23304 CODE_FOR_msa_pckod_h, CODE_FOR_msa_pckod_w, CODE_FOR_msa_slli_b,
23305 CODE_FOR_msa_slli_h, CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d,
23306 CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w,
23307 CODE_FOR_msa_srai_d, CODE_FOR_msa_srli_b, CODE_FOR_msa_srli_h,
23308 CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d, CODE_FOR_msa_insert_b,
23309 CODE_FOR_msa_insert_h, CODE_FOR_msa_insert_w,
23310 CODE_FOR_msa_insert_d, CODE_FOR_msa_insve_b,
23311 CODE_FOR_msa_insve_h, CODE_FOR_msa_insve_w, CODE_FOR_msa_insve_d,
23312 CODE_FOR_msa_shf_b, CODE_FOR_msa_shf_h, CODE_FOR_msa_shf_w,
23313 CODE_FOR_msa_shf_w_f, CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h,
23314 CODE_FOR_msa_vshf_w, CODE_FOR_msa_vshf_d.
23315 (mips_expand_builtin): Add case for MIPS_BULTIN_MSA_TEST_BRANCH.
23316 (mips_set_compression_mode): Disallow MSA with MIPS16 code.
23317 (mips_option_override): -mmsa requires -mfp64 and -mhard-float.
23318 These are set implicitly and an error is reported if overridden.
23319 (mips_expand_builtin_msa_test_branch): New function.
23320 (mips_expand_msa_shuffle): Likewise.
23321 (MAX_VECT_LEN): Increase maximum length of a vector to 16 bytes.
23322 (TARGET_SCHED_REASSOCIATION_WIDTH): Define target hook.
23323 (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Likewise.
23324 (mips_expand_vec_unpack): Add support for MSA.
23325 (mips_expand_vector_init): Likewise.
23326 (mips_expand_vi_constant): Use CONST0_RTX (element_mode)
23327 instead of const0_rtx.
23328 (mips_msa_vec_parallel_const_half): New function.
23329 (mips_gen_const_int_vector): Likewise.
23330 (mips_gen_const_int_vector_shuffle): Likewise.
23331 (mips_expand_msa_cmp): Likewise.
23332 (mips_expand_vec_cond_expr): Likewise.
23333 * config/mips/mips.h
23334 (TARGET_CPU_CPP_BUILTINS): Add __mips_msa and __mips_msa_width.
23335 (OPTION_DEFAULT_SPECS): Ignore --with-fp-32 if -mmsa is
23336 specified.
23337 (ASM_SPEC): Pass mmsa and mno-msa to the assembler.
23338 (ISA_HAS_MSA): New macro.
23339 (UNITS_PER_MSA_REG): Likewise.
23340 (BITS_PER_MSA_REG): Likewise.
23341 (BIGGEST_ALIGNMENT): Redefine using ISA_HAS_MSA.
23342 (MSA_REG_FIRST): New macro.
23343 (MSA_REG_LAST): Likewise.
23344 (MSA_REG_NUM): Likewise.
23345 (MSA_REG_P): Likewise.
23346 (MSA_REG_RTX_P): Likewise.
23347 (MSA_SUPPORTED_MODE_P): Likewise.
23348 (HARD_REGNO_CALL_PART_CLOBBERED): Redefine using TARGET_MSA.
23349 (ADDITIONAL_REGISTER_NAMES): Add named registers $w0-$w31.
23350 * config/mips/mips.md: Include mips-msa.md.
23351 (alu_type): Add simd_add.
23352 (mode): Add V2DI, V4SI, V8HI, V16QI, V2DF, V4SF.
23353 (type): Add simd_div, simd_fclass, simd_flog2, simd_fadd,
23354 simd_fcvt, simd_fmul, simd_fmadd, simd_fdiv, simd_bitins,
23355 simd_bitmov, simd_insert, simd_sld, simd_mul, simd_fcmp,
23356 simd_fexp2, simd_int_arith, simd_bit, simd_shift, simd_splat,
23357 simd_fill, simd_permute, simd_shf, simd_sat, simd_pcnt,
23358 simd_copy, simd_branch, simd_cmsa, simd_fminmax, simd_logic,
23359 simd_move, simd_load, simd_store. Choose "multi" for moves
23360 for "qword_mode".
23361 (qword_mode): New attribute.
23362 (insn_count): Add instruction count for quad moves.
23363 Increase the count for MIPS SIMD division.
23364 (UNITMODE): Add UNITMODEs for vector types.
23365 (addsub): New code iterator.
23366 * config/mips/mips.opt (mmsa): New option.
23367 * config/mips/msa.h: New file.
23368 * config/mips/mti-elf.h: Don't infer -mfpxx if -mmsa is
23369 specified.
23370 * config/mips/mti-linux.h: Likewise.
23371 * config/mips/predicates.md
23372 (const_msa_branch_operand): New constraint.
23373 (const_uimm3_operand): Likewise.
23374 (const_uimm4_operand): Likewise.
23375 (const_uimm5_operand): Likewise.
23376 (const_uimm8_operand): Likewise.
23377 (const_imm5_operand): Likewise.
23378 (aq10b_operand): Likewise.
23379 (aq10h_operand): Likewise.
23380 (aq10w_operand): Likewise.
23381 (aq10d_operand): Likewise.
23382 (const_m1_operand): Likewise.
23383 (reg_or_m1_operand): Likewise.
23384 (const_exp_2_operand): Likewise.
23385 (const_exp_4_operand): Likewise.
23386 (const_exp_8_operand): Likewise.
23387 (const_exp_16_operand): Likewise.
23388 (const_vector_same_val_operand): Likewise.
23389 (const_vector_same_simm5_operand): Likewise.
23390 (const_vector_same_uimm5_operand): Likewise.
23391 (const_vector_same_uimm6_operand): Likewise.
23392 (const_vector_same_uimm8_operand): Likewise.
23393 (par_const_vector_shf_set_operand): Likewise.
23394 (reg_or_vector_same_val_operand): Likewise.
23395 (reg_or_vector_same_simm5_operand): Likewise.
23396 (reg_or_vector_same_uimm6_operand): Likewise.
23397 * doc/extend.texi (MIPS SIMD Architecture Functions): New
23398 section.
23399 * doc/invoke.texi (-mmsa): Document new option.
23400
23401 2016-05-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
23402
23403 * configure.ac (enable_vtable_verify): Handle --enable-vtable-verify.
23404 * configure: Regenerate.
23405 * config.in: Regenerate.
23406 * gcc.c (VTABLE_VERIFICATION_SPEC) [!ENABLE_VTABLE_VERIFY]: Error
23407 on -fvtable-verify.
23408 * config/sol2.h [!ENABLE_VTABLE_VERIFY] (STARTFILE_VTV_SPEC): Define.
23409 (ENDFILE_VTV_SPEC): Define.
23410
23411 2016-05-09 Kaushik Phatak <kaushik.phatak@kpit.com>
23412
23413 * config/rl78/rl78.c (rl78_expand_prologue): Save the MDUC related
23414 registers in all interrupt handlers if necessary.
23415 (rl78_option_override): Add warning.
23416 (MUST_SAVE_MDUC_REGISTERS): New macro.
23417 (rl78_expand_epilogue): Restore the MDUC registers if necessary.
23418 * config/rl78/rl78.c (check_mduc_usage): New function.
23419 (mduc_regs): New structure to hold MDUC register data.
23420 * config/rl78/rl78.md (is_g13_muldiv_insn): New attribute.
23421 (mulsi3_g13): Add is_g13_muldiv_insn attribute.
23422 (udivmodsi4_g13): Add is_g13_muldiv_insn attribute.
23423 (mulhi3_g13): Add is_g13_muldiv_insn attribute.
23424 * config/rl78/rl78.opt (msave-mduc-in-interrupts): New option.
23425 * doc/invoke.texi (RL78 Options): Add -msave-mduc-in-interrupts.
23426
23427 2016-05-09 Bin Cheng <bin.cheng@arm.com>
23428
23429 * tree-if-conv.c (tree-ssa-loop.h): Include header file.
23430 (tree-ssa-loop-niter.h): Ditto.
23431 (idx_within_array_bound, ref_within_array_bound): New functions.
23432 (ifcvt_memrefs_wont_trap): Check if array ref is within bound.
23433 Factor out check on writable base object to ...
23434 (base_object_writable): ... here.
23435
23436 2016-05-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23437
23438 * config/arm/arm.md (probe_stack): Add modes to set source
23439 and destination.
23440
23441 2016-05-09 Bernd Schmidt <bschmidt@redhat.com>
23442
23443 * regrename.c (base_reg_class_for_rename): New static function.
23444 (scan_rtx_address, scan_rtx): Use it instead of base_reg_class.
23445
23446 2016-05-08 Jan Hubicka <hubicka@ucw.cz>
23447
23448 * cgraph.c (thunk_adjust): Export.
23449 * cgraphclones.c (cgraph_node::create_clone): Clone thunk info.
23450 * cgraphunit.c (thunk_adjust): Export.
23451 (cgraph_node::assemble_thunks_and_aliases): Do not assemble inlined
23452 thunks.
23453 * ipa-inline-analyssi.c (compute_inline_parameters): Thunks are
23454 inlinable.
23455 * tree-inline.c (expand_call_inline): Expand thunks inline.
23456
23457 2016-05-08 Uros Bizjak <ubizjak@gmail.com>
23458
23459 PR target/70998
23460 * config/i386/sse.md (*sse2_vd_cvtsd2ss): New insn pattern.
23461 (*sse2_vd_cvtss2sd): Ditto.
23462 * config/i386/i386.md
23463 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf splitter):
23464 Generate *sse2_vd_cvtsd2ss pattern.
23465 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df splitter):
23466 Generate *sse2_vd_cvtss2sd pattern.
23467
23468 2016-05-08 Oleg Endo <olegendo@gcc.gnu.org>
23469
23470 * config/sh/sh.h (GET_SH_ARG_CLASS): Convert macro into ...
23471 * config/sh/sh.c (get_sh_arg_class): ... this new function. Update its
23472 users.
23473
23474 2016-05-08 Oleg Endo <olegendo@gcc.gnu.org>
23475
23476 * config/sh/sh-protos.h (sh_media_register_for_return): Remove.
23477 * config/sh/sh.c: Define and declare variables on first use throughout
23478 the file.
23479 (current_function_interrupt): Change to bool type.
23480 (frame_insn): Rename to emit_frame_insn and update users.
23481 (push_regs): Use bool for 'interrupt_handler' argument.
23482 (save_schedule_s): Remove.
23483 (TARGET_ASM_UNALIGNED_DI_OP, TARGET_ASM_ALIGNED_DI_OP): Remove.
23484 (sh_option_override): Don't nullify targetm.asm_out.aligned_op.di and
23485 targetm.asm_out.unaligned_op.di.
23486 (gen_far_branch): Remove redundant forward declaration.
23487 (sh_media_register_for_return, MAX_SAVED_REGS, save_entry_s, save_entry,
23488 MAX_TEMPS, save_schedule_ssave_schedule): Remove.
23489 (sh_set_return_address, sh_function_ok_for_sibcall,
23490 scavenge_reg): Update comments.
23491 (sh_builtin_saveregs): Use TRAGET_FPU_ANY condition.
23492 (sh2a_get_function_vector_number, sh2a_function_vector_p): Use for loop.
23493 (sh_attr_renesas_p): Remove unnecessary parentheses.
23494 (branch_dest): Simplify.
23495 * config/sh/sh.h (sh_args): Remove byref, byref_regs, stack_regs fields.
23496 Change force_mem, prototype_p, outgoing, renesas_abi fields to bool.
23497 (CUMULATIVE_ARGS): Change macro to typedef.
23498 (current_function_interrupt): Change to bool type.
23499 (sh_arg_class, sh_args, CUMULATIVE_ARGS, current_function_interrupt):
23500 Surround with __cplusplus ifdef.
23501 (sh_compare_op0, sh_compare_op1): Remove.
23502 (EPILOGUE_USES): Use TARGET_FPU_ANY condition.
23503
23504 2016-05-07 Jim Wilson <jim.wilson@linaro.org>
23505
23506 * config/arm/arm.md (arch): Add neon.
23507 (arch_enabled): Return yes for arch neon when TARGET_NEON.
23508 * config/arm/vfp.md (movdf_vfp): Add w/G as alternative 3. Add
23509 neon_move as type for alt 3. Add arch attr enabling alt 3 for neon.
23510 Emit vmov.i64 for alt 3. Renumber alternatives 3 to 8. Adjust
23511 attributes for alt renumbering. Mark alt 3 as non-predicable.
23512 (thumb2_movdf_vfp): Likewise.
23513
23514 2016-05-07 Uros Bizjak <ubizjak@gmail.com>
23515
23516 * config/i386/i386.md (*addqi_1): Add preferred_for_speed attribute
23517 to disparage alternatives 3 and 4 for TARGET_PARTIAL_REG_STALL targets.
23518 (*andqi_1): Add preferred_for_speed attribute to disparage
23519 alternative 2 for TARGET_PARTIAL_REG_STALL targets.
23520 (*<code>qi_1): Ditto.
23521 (*one_cmplqi2_1): Add preferred_for_speed attribute to disparage
23522 alternative 1 for TARGET_PARTIAL_REG_STALL targets.
23523 (*ashlqi3_1): Ditto.
23524 (*swap<mode>): Merge from *swap<mode>_1 and *swap<mode>_2 patterns.
23525 Add preferred_for_size attribute to disparage alternative 0 and
23526 preferred_for_speed attribute to disparage alternative 1 for
23527 TARGET_PARTIAL_REG_STALL targets.
23528
23529 2016-05-07 Tom de Vries <tom@codesourcery.com>
23530
23531 PR tree-optimization/70956
23532 * graphite-scop-detection.c (build_cross_bb_scalars_def): Handle NULL
23533 def.
23534
23535 2016-05-07 Oleg Endo <olegendo@gcc.gnu.org>
23536
23537 * config/sh/sh-protos.h (sh_cbranch_distance): Declare new function.
23538 * config/sh/sh.c (sh_cbranch_distance): Implement it.
23539 * config/sh/sh.md (branch_zero): Remove define_attr.
23540 (define_delay): Disable delay slot if branch distance is one insn.
23541
23542 2016-05-06 Uros Bizjak <ubizjak@gmail.com>
23543
23544 * config/i386/i386.md (LEAMODE): New mode attribute.
23545 (plus to LEA splitter): Rewrite splitter using LEAMODE mode attribute.
23546 (ashift to LEA splitter): Rewrte splitter using SWI mode iterator
23547 and LEAMODE mode attribute. Use VOIDmode const_0_to_3_operand as
23548 operand 2 predicate.
23549 (*lea<mode>_general_2): Use VOIDmode for const248_operand.
23550 (*lea<mode>_general_3): Ditto.
23551 (*lea<mode>_general_4): Use VOIDmode for const_0_to_3_operand.
23552
23553 2016-05-06 Jakub Jelinek <jakub@redhat.com>
23554
23555 * genmddump.c (main): Convert argv from char ** to const char **.
23556
23557 2016-05-06 David Malcolm <dmalcolm@redhat.com>
23558
23559 * coretypes.h (OVERRIDE): New macro.
23560 (FINAL): New macro.
23561
23562 2016-05-06 Eric Botcazou <ebotcazou@adacore.com>
23563
23564 * tree-ssa-coalesce.c (gimple_can_coalesce_p): In the optimized case,
23565 allow coalescing if the types are compatible.
23566
23567 2016-05-06 David Malcolm <dmalcolm@redhat.com>
23568
23569 * pass_manager.h (pass_manager::register_pass_name): New method.
23570 (pass_manager::get_pass_by_name): New method.
23571 (pass_manager::create_pass_tab): New method.
23572 (pass_manager::m_name_to_pass_map): New field.
23573 * passes.c (name_to_pass_map): Delete global in favor of field
23574 "m_name_to_pass_map" of pass_manager.
23575 (register_pass_name): Rename from a function to...
23576 (pass_manager::register_pass_name): ...this method, updating
23577 for renaming of global "name_to_pass_map" to field
23578 "m_name_to_pass_map".
23579 (create_pass_tab): Rename from a function to...
23580 (pass_manager::create_pass_tab): ...this method, updating
23581 for renaming of global "name_to_pass_map" to field.
23582 (get_pass_by_name): Rename from a function to...
23583 (pass_manager::get_pass_by_name): ...this method.
23584 (enable_disable_pass): Convert use of get_pass_by_name to
23585 a method call, locating the pass_manager singleton.
23586
23587 2016-05-06 David Malcolm <dmalcolm@redhat.com>
23588
23589 * genattr-common.c (main): Convert argv from char ** to const char **.
23590 * genattr.c (main): Likewise.
23591 * genattrtab.c (main): Likewise.
23592 * genautomata.c (initiate_automaton_gen): Likewise.
23593 (main): Likewise.
23594 * gencodes.c (main): Likewise.
23595 * genconditions.c (main): Likewise.
23596 * genconfig.c (main): Likewise.
23597 * genconstants.c (main): Likewise.
23598 * genemit.c (main): Likewise.
23599 * genenums.c (main): Likewise.
23600 * genextract.c (main): Likewise.
23601 * genflags.c (main): Likewise.
23602 * genmddeps.c (main): Likewise.
23603 * genopinit.c (main): Likewise.
23604 * genoutput.c (main): Likewise.
23605 * genpeep.c (main): Likewise.
23606 * genpreds.c (main): Likewise.
23607 * genrecog.c (main): Likewise.
23608 * gensupport.c (init_rtx_reader_args_cb): Likewise.
23609 (init_rtx_reader_args): Likewise.
23610 * gensupport.h (init_rtx_reader_args_cb): Likewise.
23611 (init_rtx_reader_args): Likewise.
23612 * gentarget-def.c (main): Likewise.
23613 * read-md.c (read_md_files): Likewise.
23614 * read-md.h (read_md_files): Likewise.
23615
23616 2016-05-06 Uros Bizjak <ubizjak@gmail.com>
23617
23618 * config/i386/i386.md (int cmove peephole2s): Use general_reg_operand
23619 instead of register_and_not_any_fp_reg_operand as operand 0 predicate.
23620 * config/i386/predicates.md (register_and_not_any_fp_reg_operand):
23621 Remove unused predicate.
23622 (register_and_not_fp_reg_operand): Ditto.
23623
23624 2016-05-06 Martin Liska <mliska@suse.cz>
23625
23626 * tree-if-conv.c (ifcvt_split_critical_edges): Use auto_vec
23627 instead of vec as the vector is local to the function.
23628
23629 2016-05-06 Jakub Jelinek <jakub@redhat.com>
23630
23631 * config/i386/sse.md (*<code>v8hi3, *<code>v16qi3): Add
23632 avx512bw alternative.
23633
23634 * config/i386/sse.md (<mask_codefor>ashr<mode>3<mask_name>): Move
23635 before the ashr<mode>3 pattern.
23636
23637 * config/i386/sse.md (*avx2_pmaddwd, *sse2_pmaddwd): Use
23638 v instead of x in vex or maybe_vex alternatives, use
23639 maybe_evex instead of vex in prefix.
23640
23641 * config/i386/sse.md (*vec_extractv4sf_0, *sse4_1_extractps,
23642 *vec_extractv4sf_mem, vec_extract_lo_v16hi, vec_extract_hi_v16hi,
23643 vec_extract_lo_v32qi, vec_extract_hi_v32qi): Use v instead of x
23644 in vex or maybe_vex alternatives, use maybe_evex instead of vex
23645 in prefix.
23646
23647 * config/i386/sse.md (*vec_concatv2sf_sse4_1, *vec_concatv4sf): Use
23648 v instead of x in vex or maybe_vex alternatives, use
23649 maybe_evex instead of vex in prefix.
23650
23651 * config/i386/sse.md (sse_shufps_<mode>, sse_storehps, sse_loadhps,
23652 sse_storelps, sse_movss, avx2_vec_dup<mode>, avx2_vec_dupv8sf_1,
23653 sse2_shufpd_<mode>, sse2_storehpd, sse2_storelpd, sse2_loadhpd,
23654 sse2_loadlpd, sse2_movsd): Use v instead of x in vex or maybe_vex
23655 alternatives, use maybe_evex instead of vex in prefix.
23656
23657 * config/i386/sse.md (vec_interleave_lowv4sf,
23658 *vec_interleave_highv2df, *vec_interleave_lowv2df): Use
23659 v instead of x in vex or maybe_vex alternatives, use
23660 maybe_evex instead of vex in prefix.
23661
23662 * config/i386/sse.md (sse_movhlps, sse_movlhps): Use
23663 v instead of x in vex or maybe_vex alternatives, use
23664 maybe_evex instead of vex in prefix.
23665
23666 * config/i386/sse.md (*avx_cvtpd2dq256_2, *avx_cvtps2pd256_2): Use
23667 v constraint instead of x.
23668
23669 2016-05-06 Nathan Sidwell <nathan@codesourcery.com>
23670
23671 * gimple.c (gimple_call_same_target_p): Unique functions are eq.
23672 * tree-ssa-tail-merge.c (same_succ::equal): Check pointer eq
23673 equality first.
23674
23675 2016-05-06 Richard Biener <rguenther@suse.de>
23676
23677 PR tree-optimization/70948
23678 * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
23679 Properly clobber all fields of va_list for __builtin_va_start.
23680
23681 2016-05-06 Yuri Rumyantsev <ysrumyan@gmail.com>
23682
23683 PR debug/70935
23684 * tree-ssa-loop-unswitch.c (find_loop_guard): Reject guard edge with
23685 loop latch destination.
23686
23687 2016-05-06 Martin Liska <mliska@suse.cz>
23688
23689 * tree-ssa-uninit.c: Apply manual changes
23690 to the GNU coding style.
23691 (prune_uninit_phi_opnds): Rename from
23692 prune_uninit_phi_opnds_in_unrealizable_paths.
23693
23694 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
23695
23696 * config/sh/sh.opt (madjust-unroll, minvalid-symbols, msoft-atomic,
23697 mspace): Remove deprecated options.
23698 * doc/invoke.texi (SH options): Remove -mspace.
23699
23700 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
23701
23702 * config/sh/sh.md (ic_invalidate_line_sh4a): Fix insn length.
23703
23704 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
23705
23706 * config/sh/sh.md (*cmpeqsi_t): Remove combine insn pattern and similar
23707 corresponding combine split pattern.
23708
23709 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
23710
23711 PR target/58219
23712 * config/sh/predicates.md (long_displacement_mem_operand): New.
23713 * config/sh/sh.md (movsi_i): Allow for SH2A, disallow for any FPU.
23714 Add movi20, movi20s alternatives. Adjust length attribute for
23715 alternatives.
23716 (movsi_ie): Allow for any FPU. Adjust length attribute for
23717 alternatives.
23718 (movsi_i_lowpart): Add movi20, movi20s alternatives. Adjust length
23719 attribute for alternatives.
23720 (*mov<mode>): Use long_displacement_mem_operand for length attribute.
23721 (*movdi_i, movdf_k, movdf_i4, movsf_i, movsf_ie, movsf_ie_ra): Adjust
23722 length attribute for alternatives.
23723
23724 2016-05-06 Richard Biener <rguenther@suse.de>
23725
23726 PR tree-optimization/70960
23727 * tree-if-conv.c (ifcvt_walk_pattern_tree): Handle non-SSA ops.
23728
23729 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
23730
23731 PR target/52933
23732 * config/sh/sh.md (*cmp_div0s_7, *cmp_div0s_8): Add div0s variants.
23733 * config/sh/sh.c (sh_rtx_costs): Add another div0s case.
23734
23735 2016-05-06 Marek Polacek <polacek@redhat.com>
23736
23737 PR sanitizer/70875
23738 * ubsan.c (get_ubsan_type_info_for_type): Remove assert.
23739
23740 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
23741
23742 PR target/54089
23743 * config/sh/sh.md (*rotcr): Add another variant.
23744
23745 2016-05-06 Richard Biener <rguenther@suse.de>
23746
23747 PR middle-end/70931
23748 * dwarf2out.c (native_encode_initializer): Skip zero-sized fields.
23749
23750 2016-05-06 Richard Biener <rguenther@suse.de>
23751
23752 PR middle-end/70941
23753 * fold-const.c (split_tree): Always convert to the original type
23754 before negating.
23755
23756 2016-05-06 Richard Biener <rguenther@suse.de>
23757
23758 * fwprop.c (fwprop): Remove duplicate cleanup_cfg call.
23759 (fwprop_addr): Likewise.
23760
23761 2016-05-06 Uros Bizjak <ubizjak@gmail.com>
23762
23763 PR target/70873
23764 * config/i386/i386-protos.h (ix86_standard_x87sse_constant_load_p):
23765 New prototype.
23766 * config/i386/i386.c (ix86_standard_x87sse_constant_load_p): New.
23767 * config/i386/i386.md (push mem splitter): Use find_constant_src in
23768 the splitter condition.
23769 (FP load splitter): Use ix86_standard_x87sse_constant_load_p in
23770 the splitter condition.
23771 (FP float_extend load splitter): Ditto.
23772
23773 2016-05-05 Uros Bizjak <ubizjak@gmail.com>
23774
23775 * config/i386/i386.md (peehole2 patterns): Change true_regnum
23776 to REGNO in all peephole2 patterns.
23777 (post-reload splitters): Change true_regnum to REGNO in
23778 post-reload splitters.
23779 (zero_extend splitters): Use general_reg_operand and
23780 nonimmediate_gr_operand predicates.
23781
23782 2016-05-05 Jakub Jelinek <jakub@redhat.com>
23783
23784 * config/i386/sse.md (<avx512>_fmadd_<mode>_mask3<round_name>): Use
23785 v constraint instead of x.
23786
23787 2016-05-05 Alan Modra <amodra@gmail.com>
23788
23789 PR target/68662
23790 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Don't
23791 set OPTION_MASK_RELOCATABLE when flag_pic == 2. Set
23792 TARGET_NO_FP_IN_TOC for -mrelocatable.
23793 (MINIMAL_TOC_SECTION_ASM_OP): Remove redundant
23794 TARGET_RELOCATABLE test.
23795 (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
23796 (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
23797 * config/rs6000/linux64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
23798 (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
23799 (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
23800 * config/rs6000/freebsd64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
23801 (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
23802 (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
23803 * config/rs6000/predicates.md (easy_fp_constant): Likewise.
23804 * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
23805 Likewise.
23806 (rs6000_assemble_integer): Update TARGET_RELOCATABLE test.
23807 (rs6000_stack_info): Likewise.
23808 (rs6000_elf_asm_out_constructor): Likewise.
23809 (rs6000_elf_asm_out_destructor): Likewise.
23810 (rs6000_elf_declare_function_name): Likewise.
23811 * config/rs6000/rs6000.md (load_toc_aix_di): Likewise.
23812 * config/rs6000/rs6000.h (MASK_RELOCATABLE, MASK_MINIMAL_TOC):
23813 Don't define.
23814
23815 2016-05-05 Alan Modra <amodra@gmail.com>
23816
23817 * config/rs6000/rs6000.c (rs6000_frame_related): Rewrite.
23818
23819 2016-05-05 Alan Modra <amodra@gmail.com>
23820
23821 * config/rs6000/rs6000.c (rs6000_savres_strategy): Don't use
23822 out-of-line gpr restore for one or two regs if that would add
23823 a save of lr.
23824
23825 2016-05-04 Uros Bizjak <ubizjak@gmail.com>
23826
23827 PR target/70873
23828 * config/i386/i386.md
23829 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df peephole2):
23830 Change to post-epilogue_completed late splitter. Use sse_reg_operand
23831 as operand 0 predicate.
23832 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf peephole2):
23833 Ditto.
23834 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float {si,di}->{sf,df} peephole2):
23835 Ditto. Emit the pattern using RTX.
23836
23837 (TARGET_USE_VECTOR_FP_CONVERTS float_extend sf->df splitter):
23838 Use sse_reg_opreand as operand 0 predicate. Do not use true_regnum in
23839 the post-reload splitter. Use lowpart_subreg instead of gen_rtx_REG.
23840 (TARGET_USE_VECTOR_FP_CONVERTS float_truncate df->sf splitter):
23841 Ditto.
23842 (TARGET_USE_VECTOR_CONVERTS float si->{sf,df} splitter): Use
23843 sse_reg_operand as operand 0 predicate.
23844
23845 (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_extend sf->df peephole2):
23846 Use sse_reg_opreand as operand 0 predicate. Use lowpart_subreg
23847 instead of gen_rtx_REG.
23848 (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_truncate sf->df peephole2):
23849 Ditto.
23850
23851 2016-05-04 Segher Boessenkool <segher@kernel.crashing.org>
23852
23853 * function.c (emit_use_return_register_into_block): Delete.
23854 (gen_return_pattern): Delete.
23855 (emit_return_into_block): Delete.
23856 (active_insn_between): Delete.
23857 (convert_jumps_to_returns): Delete.
23858 (emit_return_for_exit): Delete.
23859 (thread_prologue_and_epilogue_insns): Delete all code dealing with
23860 simple_return for shrink-wrapped blocks.
23861 * shrink-wrap.c (try_shrink_wrapping): Insert simple_return at the
23862 end of blocks that need one.
23863 (get_unconverted_simple_return): Delete.
23864 (convert_to_simple_return): Delete.
23865 * shrink-wrap.c (get_unconverted_simple_return): Delete declaration.
23866 (convert_to_simple_return): Ditto.
23867
23868 2016-05-04 Segher Boessenkool <segher@kernel.crashing.org>
23869
23870 * cfgcleanup.c (bb_is_just_return): New function.
23871 (try_optimize_cfg): Simplify jumps to return, branches to return,
23872 and branches around return.
23873
23874 2016-05-04 Segher Boessenkool <segher@kernel.crashing.org>
23875
23876 * cfgcleanup.c (try_simplify_condjump): Don't try to simplify a
23877 branch to a return.
23878
23879 2016-05-04 Jakub Jelinek <jakub@redhat.com>
23880
23881 PR c++/70906
23882 PR c++/70933
23883 * tree-core.h (enum operand_equal_flag): Add OEP_HASH_CHECK.
23884 * tree.c (inchash::add_expr): If !IS_EXPR_CODE_CLASS (tclass),
23885 assert flags & OEP_HASH_CHECK, instead of asserting it
23886 never happens. Handle TARGET_EXPR.
23887 * fold-const.c (operand_equal_p): For hash verification,
23888 or in OEP_HASH_CHECK into flags.
23889
23890 2016-05-04 Eric Botcazou <ebotcazou@adacore.com>
23891
23892 * tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head
23893 comment.
23894 (compute_samebase_partition_bases): Fix typo.
23895
23896 2016-05-04 Jakub Jelinek <jakub@redhat.com>
23897
23898 * config/i386/sse.md (vec_interleave_highv8sf,
23899 vec_interleave_lowv8sf, vec_interleave_highv4df,
23900 vec_interleave_lowv4df): Remove constraints from expanders.
23901
23902 * config/i386/sse.md (sse2_movq128): Use v constraint instead of x.
23903
23904 2016-05-04 Jan Hubicka <hubicka@ucw.cz>
23905
23906 * tree-inline.c (expand_call_inline): Fix path dealing with
23907 making lhs of call statement undefined.
23908
23909 2016-05-04 Jan Hubicka <hubicka@ucw.cz>
23910
23911 * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases):
23912 Check availability on NODE, too.
23913 * cgraph.h (symtab_node::call_for_symbol_and_aliases): Likewise.
23914 (cgraph_node::call_for_symbol_and_aliases): Likewise.
23915 (varpool_node::call_for_symbol_and_aliase): Likewise.
23916 * ipa-pure-const.c (add_new_function): Analyze all bodies.
23917 (propagate_pure_const): Propagate across interposable functions, too.
23918 (skip_function_for_local_pure_const): Do not skip interposable bodies
23919 with aliases.
23920 (pass_local_pure_const::execute): Update.
23921
23922 2016-05-04 Marek Polacek <polacek@redhat.com>
23923
23924 * doc/invoke.texi: Document -Wdangling-else.
23925
23926 2016-05-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
23927
23928 * config.gcc: Error out when conflicting multilib is detected. Do not
23929 loop over multilibs since no combination is legal.
23930
23931 2016-05-04 Alan Modra <amodra@gmail.com>
23932
23933 * config/rs6000/rs6000.h (PIC_OFFSET_TABLE_REGNUM): Correct.
23934 * config/rs6000/sysv4.h (TARGET_TOC): Simplify.
23935 * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
23936 Align .toc.
23937
23938 2016-05-04 Matthew Fortune <matthew.fortune@imgtec.com>
23939
23940 * config/mips/mips-cpus.def (p5600): Avoid IMADD by default.
23941 Clean up p5600 comments.
23942
23943 2016-05-04 Richard Biener <rguenther@suse.de>
23944
23945 * match.pd: Add BIT_FIELD_REF canonicalizations and vector
23946 constructor simplifications.
23947 * fold-const.c (fold_ternary_loc): Remove duplicate functionality here.
23948
23949 2016-05-04 Oleg Endo <olegendo@gcc.gnu.org>
23950
23951 * config/sh/predicates (post_inc_mem, pre_dec_mem): New predicates.
23952 * config/sh/sh-protos.h (sh_find_set_of_reg): Return null result if
23953 result.set_rtx is null instead of aborting.
23954 * config/sh/sh.h (USE_LOAD_POST_INCREMENT, USE_STORE_PRE_DECREMENT):
23955 Always enable.
23956 (USE_LOAD_PRE_DECREMENT, USE_STORE_POST_INCREMENT): Enable for SH2A.
23957 * config/sh/sh.md (*extend<mode>si2_predec, *mov<mode>_load_predec,
23958 *mov<mode>_store_postinc): New patterns.
23959
23960 2016-05-04 Marc Glisse <marc.glisse@inria.fr>
23961
23962 * match.pd ((A | B) & (A | C)): Generalize to BIT_XOR_EXPR. Mark
23963 as commutative. Check both conversions are NOP.
23964 ((A & B) OP (C & B)): Remove.
23965
23966 2016-05-04 Alan Modra <amodra@gmail.com>
23967
23968 * combine.c (simplify_set): Correct WORD_REGISTER_OPERATIONS test.
23969
23970 2016-05-04 Alan Modra <amodra@gmail.com>
23971
23972 PR target/70866
23973 * config/rs6000/rs6000.c (rs6000_stack_info): Don't set cr_save_p
23974 when cr2,3,4 are all fixed regs.
23975
23976 2016-05-04 Bernd Schmidt <bschmidt@redhat.com>
23977
23978 PR rtl-optimization/57193
23979 * opts.c (default_options_table): Revert OPT_frename_registers change.
23980 * doc/invoke.texi (-frename-registers, -O2): Likewise.
23981
23982 2016-05-03 Martin Sebor <msebor@redhat.com>
23983
23984 PR c++/66561
23985 * builtins.c (fold_builtin_FILE): New function.
23986 (fold_builtin_FUNCTION, fold_builtin_LINE): New functions.
23987 (fold_builtin_0): Call them.
23988 * gimplify.c (gimplify_call_expr): Remove the handling of
23989 BUILT_IN_FILE, BUILT_IN_FUNCTION, and BUILT_IN_LINE.
23990
23991 PR c++/66561
23992 * doc/extend.texi (Other Builtins): Update __builtin_FILE,
23993 __builtin_FUNCTION, and __builtin_LINE to reflect they yield
23994 constants.
23995
23996 PR c++/66639
23997 * doc/extend.texi (Function Names as Strings): Update __func__,
23998 __FUNCTION__, __PRETTY_FUNCTION__ to reflect they evaluate to
23999 constants.
24000
24001 2016-05-03 Jakub Jelinek <jakub@redhat.com>
24002 Richard Biener <rguenther@suse.de>
24003
24004 PR tree-optimization/70916
24005 * tree-if-conv.c: Include cfganal.h.
24006 (pass_if_conversion::execute): Call connect_infinite_loops_to_exit
24007 and remove_fake_exit_edges around the optimization pass.
24008
24009 2016-05-03 Jan Hubicka <hubicka@ucw.cz>
24010
24011 * cgraph.c (symbol_table::create_edge): Set inline_failed.
24012 (cgraph_edge::make_direct): Likewise.
24013 (cgraph_edge::dump_edge_flags): Dump call_stmt_cannot_inline_p.
24014 * cgraphclones.c (duplicate_thunk_for_node): Set inline_failed.
24015 * cif-code.def (CIF_LTO_MISMATCHED_DECLARATIONS): New code
24016 (CIF_THUNK): New code.
24017 * ipa-inline-analysis.c (initialize_inline_failed): Preserve
24018 CIF_FINAL_ERROR codes; do not deal with call_stmt_cannot_inline_p.
24019 (compute_inline_parameters): Set inline_failed for thunks.
24020 (inline_analyze_function): Cleanup.
24021 * ipa-inline.c (can_inline_edge_p): Do not deal with
24022 call_stmt_cannot_inline_p.
24023 (can_early_inline_edge_p): Likewise.
24024 (early_inliner): Initialize inline_failed.
24025 * lto-cgraph.c (lto_output_edge): Sanity check inline_failed.
24026
24027 2016-05-03 Uros Bizjak <ubizjak@gmail.com>
24028
24029 * config/i386/predicates.md (x87nonimm_ssenomem_operand): Rename
24030 from nonimm_ssenomem_operand.
24031 (nonimm_ssenomem_operand): New predicate.
24032 * config/i386/i386.md (extendsfdf2): Use nonimm_ssenomem_operand
24033 as operand 0 predicate.
24034 (*extendsfdf2): Merge from *extendsfdf2_mixed and *extendsfdf2_i387.
24035 Disable unsupported alternatives using "enabled" attribute.
24036 Use register_ssemem_operand as operand 0 predicate.
24037 (*fop_<mode>_1): Use x87nonimm_ssenomem_operand as operand 1 predicate.
24038
24039 2016-05-03 Marek Polacek <polacek@redhat.com>
24040
24041 PR c/70859
24042 * input.c (expansion_point_location): New function.
24043 * input.h (expansion_point_location): Declare.
24044
24045 2016-05-03 Pierre-Marie de Rodat <derodat@adacore.com>
24046
24047 * dwarf2out.c (resolve_args_picking_1): Replace the frame_offset
24048 occurence with frame_offset_ ones.
24049
24050 2016-05-03 Alan Modra <amodra@gmail.com>
24051
24052 PR rtl-optimization/70890
24053 * ira.c (combine_and_move_insns): When moving def_insn, remove
24054 equivs on use_insn.
24055
24056 2016-05-03 Dominik Vogt <vogt@linux.vnet.ibm.com>
24057
24058 * config/s390/s390.md ("*r<noxa>sbg_<mode>_sll")
24059 ("*r<noxa>sbg_<mode>_srl"): New define_insns.
24060 ("*r<noxa>sbg_<mode>_srl_bitmask"): Rename by adding "_bitmask".
24061 ("*r<noxa>sbg_<mode>_sll_bitmask"): Likewise.
24062
24063 2016-05-03 Alan Modra <amodra@gmail.com>
24064
24065 * config/rs6000/rs6000.c (rs6000_savres_strategy): Correct condition
24066 for SAVE_MULTIPLE/STORE_MULTIPLE.
24067
24068 2016-05-03 Jakub Jelinek <jakub@redhat.com>
24069
24070 * config/i386/i386.md (*truncdfsf_mixed, *truncdfsf_i387,
24071 *truncxfsf2_mixed, *truncxfdf2_mixed): Use v constraint instead of x.
24072
24073 2016-05-03 Richard Biener <rguenther@suse.de>
24074
24075 * gimplify.h (get_initialized_tmp_var): Add allow_ssa parameter
24076 default true.
24077 (gimplify_arg): Likewise.
24078 * gimplify.c (gimplify_expr): Add overload with allow_ssa parameter,
24079 re-writing the result to a decl if required.
24080 (internal_get_tmp_var): Add allow_ssa parameter
24081 and override into_ssa with it.
24082 (get_formal_tmp_var): Adjust.
24083 (get_initialized_tmp_var): Add allow_ssa parameter.
24084 (gimplify_arg): Add allow_ssa parameter and avoid generating
24085 SSA names for the result false.
24086 (gimplify_call_expr): If the call may return twice do not
24087 gimplify parameters into SSA.
24088 (prepare_gimple_addressable): Do not allow an SSA name as temporary.
24089 (gimplify_modify_expr): Adjust assert. For noreturn calls
24090 with a SSA name LHS adjust its def.
24091 (gimplify_save_expr): Do not allow an SSA name as save-expr result.
24092 (gimplify_one_sizepos): Do not allow an SSA name as a sizepos.
24093 (gimplify_body): Init GIMPLE SSA data structures and gimplify into-SSA.
24094 (gimplify_scan_omp_clauses): Make sure OMP_CLAUSE_SIZE is not
24095 an SSA name. Likewise for OMP_CLAUSE_REDUCTION operands.
24096 (gimplify_omp_for): Likewise for OMP_CLAUSE_DECL. Likewise
24097 for OMP_FOR_COND, OMP_FOR_INCR and OMP_CLAUSE_LINEAR_STEP.
24098 (optimize_target_teams): Do not allow SSA names for clause operands.
24099 (gimplify_expr): Likewise for where we mark the result addressable.
24100 * passes.def (pass_init_datastructures): Remove.
24101 * tree-into-ssa.c (mark_def_sites): Ignore existing SSA names.
24102 (rewrite_stmt): Likewise.
24103 * tree-inline.c (initialize_cfun): Properly transfer SSA state.
24104 (replace_locals_op): Replace SSA names.
24105 (copy_gimple_seq_and_replace_locals): Init src_cfun.
24106 * gimple-low.c (lower_builtin_setjmp): Deal with SSA.
24107 * cgraph.c (release_function_body): Free CFG annotations only
24108 when we have a CFG. Simplify.
24109 * gimple-fold.c (gimplify_and_update_call_from_tree): Use
24110 force_gimple_operand instead of get_initialized_tmp_var.
24111 * tree-pass.h (make_pass_init_datastructures): Remove.
24112 * tree-ssa.c (execute_init_datastructures): Remove.
24113 (pass_data_init_datastructures): Likewise.
24114 (class pass_init_datastructures): Likewise.
24115 (make_pass_init_datastructures): Likewise.
24116 * omp-low.c (create_omp_child_function): Init SSA data structures.
24117 (grid_expand_target_grid_body): Likewise.
24118 * tree-cfg.c (move_block_to_fn): Double-check the DEF is an SSA
24119 name before adding it to names_to_release.
24120 (remove_bb): Always release SSA defs.
24121 * tree-ssa-ccp.c (get_default_value): Check SSA_NAME_VAR
24122 before dereferencing it.
24123 * cgraphunit.c (init_lowered_empty_function): Always
24124 int SSA data structures.
24125 * tree-ssanames.c (release_defs): Remove assert that we are in
24126 SSA form.
24127 * trans-mem.c (diagnose_tm_1): Handle SSA name function.
24128
24129 2016-05-03 Jakub Jelinek <jakub@redhat.com>
24130 Uros Bizjak <ubizjak@gmail.com>
24131
24132 PR rtl-optimization/70467
24133 * config/i386/predicates.md (x86_64_hilo_int_operand,
24134 x86_64_hilo_general_operand): New predicates.
24135 * config/i386/constraints.md (Wd): New constraint.
24136 * config/i386/i386.md (mode attr di): Use Wd instead of e.
24137 (general_hilo_operand): New mode attr.
24138 (add<mode>3, sub<mode>3): Use <general_hilo_operand>
24139 instead of <general_operand>.
24140 (*add<dwi>3_doubleword, *sub<dwi>3_doubleword): Use
24141 x86_64_hilo_general_operand instead of <general_operand>.
24142
24143 2016-05-03 Jakub Jelinek <jakub@redhat.com>
24144
24145 PR tree-optimization/70916
24146 * tree-if-conv.c (constant_or_ssa_name): Removed.
24147 (fold_build_cond_expr): Use is_gimple_val instead of
24148 constant_or_ssa_name.
24149
24150 PR tree-optimization/70916
24151 * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Give up
24152 if COND_EXPR rhs1 is neither SSA_NAME nor COMPARISON_CLASS_P.
24153
24154 PR target/49244
24155 * tree-ssa-ccp.c: Include stor-layout.h and optabs-query.h.
24156 (optimize_atomic_bit_test_and): New function.
24157 (pass_fold_builtins::execute): Use it.
24158 * optabs.def (atomic_bit_test_and_set_optab,
24159 atomic_bit_test_and_complement_optab,
24160 atomic_bit_test_and_reset_optab): New optabs.
24161 * internal-fn.def (ATOMIC_BIT_TEST_AND_SET,
24162 ATOMIC_BIT_TEST_AND_COMPLEMENT, ATOMIC_BIT_TEST_AND_RESET): New ifns.
24163 * builtins.h (expand_ifn_atomic_bit_test_and): New prototype.
24164 * builtins.c (expand_ifn_atomic_bit_test_and): New function.
24165 * internal-fn.c (expand_ATOMIC_BIT_TEST_AND_SET,
24166 expand_ATOMIC_BIT_TEST_AND_COMPLEMENT,
24167 expand_ATOMIC_BIT_TEST_AND_RESET): New functions.
24168 * doc/md.texi (atomic_bit_test_and_set@var{mode},
24169 atomic_bit_test_and_complement@var{mode},
24170 atomic_bit_test_and_reset@var{mode}): Document.
24171 * config/i386/sync.md (atomic_bit_test_and_set<mode>,
24172 atomic_bit_test_and_complement<mode>,
24173 atomic_bit_test_and_reset<mode>): New expanders.
24174 (atomic_bit_test_and_set<mode>_1,
24175 atomic_bit_test_and_complement<mode>_1,
24176 atomic_bit_test_and_reset<mode>_1): New insns.
24177
24178 2016-05-03 Richard Sandiford <richard.sandiford@arm.com>
24179
24180 PR rtl-optimization/70687
24181 * combine.c (change_zero_ext): Check for scalar modes. Use wide_int
24182 instead of unsigned HOST_WIDE_INT.
24183
24184 2016-05-03 Bernd Schmidt <bschmidt@redhat.com>
24185
24186 PR rtl-optimization/44281
24187 * hard-reg-set.h (struct target_hard_regs): New field
24188 x_fixed_nonglobal_reg_set.
24189 (fixed_nonglobal_reg_set): New macro.
24190 * reginfo.c (init_reg_sets_1): Initialize it.
24191 * ira.c (setup_alloc_regs): Use fixed_nonglobal_reg_set instead
24192 of fixed_reg_set.
24193 * df-scan.c (df_insn_refs_collect): Asms may reference global regs.
24194
24195 2016-05-03 Bin Cheng <bin.cheng@arm.com>
24196
24197 PR tree-optimization/56541
24198 * doc/invoke.texi (@item max-tree-if-conversion-phi-args): New item.
24199 * params.def (PARAM_MAX_TREE_IF_CONVERSION_PHI_ARGS): new param.
24200 * tree-if-conv.c (MAX_PHI_ARG_NUM): new macro.
24201 (any_complicated_phi): new static variable.
24202 (aggressive_if_conv): delete.
24203 (if_convertible_phi_p): support phis with more than two arguments.
24204 (if_convertible_bb_p): remvoe check on aggressive_if_conv and
24205 critical pred edges.
24206 (ifcvt_split_critical_edges): support phis with more than two
24207 arguments by checking new parameter. only split critical edges
24208 if needed.
24209 (tree_if_conversion): handle simd pragma marked loop using new
24210 local variable aggressive_if_conv. check any_complicated_phi.
24211
24212 2016-05-03 Bin Cheng <bin.cheng@arm.com>
24213
24214 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check depends_on
24215 before using it.
24216
24217 2016-05-03 Bin Cheng <bin.cheng@arm.com>
24218
24219 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Don't clobber
24220 cbase.
24221
24222 2016-05-03 Oleg Endo <olegendo@gcc.gnu.org>
24223
24224 * config/sh/sh.md (udivsi3, divsi3, mulsi3): Simplify.
24225 (mulhisi3, umulhisi3, (smulsi3_highpart, umulsi3_highpart): Convert to
24226 define_insn_and_split.
24227 (mulsi3_i): New define_insn_and_split.
24228 (mulsi3_call): Convert to define_insn.
24229 (mulsidi3, mulsidi3_compact, umulsidi3, umulsidi3_compact):
24230 Remove constraints.
24231
24232 2016-05-02 Michael Meissner <meissner@linux.vnet.ibm.com>
24233
24234 * machmode.h (mode_complex): Add support to give the complex mode
24235 for a given mode.
24236 (GET_MODE_COMPLEX_MODE): Likewise.
24237 * stor-layout.c (layout_type): For COMPLEX_TYPE, use the mode
24238 stored by build_complex_type and gfc_build_complex_type instead of
24239 trying to figure out the appropriate mode based on the size. Raise
24240 an assertion error, if the type was not set.
24241 * genmodes.c (struct mode_data): Add field for the complex type of
24242 the given type.
24243 (blank_mode): Likewise.
24244 (make_complex_modes): Remember the complex mode created in the
24245 base type.
24246 (emit_mode_complex): Write out the mode_complex array to map a
24247 type mode to the complex version.
24248 (emit_insn_modes_c): Likewise.
24249 * tree.c (build_complex_type): Set the complex type to use before
24250 calling layout_type.
24251 * config/rs6000/rs6000.c (rs6000_hard_regno_nregs_internal): Add
24252 support for __float128 complex datatypes.
24253 (rs6000_hard_regno_mode_ok): Likewise.
24254 (rs6000_setup_reg_addr_masks): Likewise.
24255 (rs6000_complex_function_value): Likewise.
24256 * config/rs6000/rs6000.h (FLOAT128_IEEE_P): Likewise.
24257 __float128 and __ibm128 complex.
24258 (FLOAT128_IBM_P): Likewise.
24259 (ALTIVEC_ARG_MAX_RETURN): Likewise.
24260 * doc/extend.texi (Additional Floating Types): Document that
24261 -mfloat128 must be used to enable __float128. Document complex
24262 __float128 and __ibm128 support.
24263
24264 2016-05-02 Jakub Jelinek <jakub@redhat.com>
24265
24266 PR target/49244
24267 * gimple.c (gimple_builtin_call_types_compatible_p): Allow
24268 char/short arguments promoted to int because of promote_prototypes.
24269
24270 2016-05-02 Uros Bizjak <ubizjak@gmail.com>
24271
24272 * config/i386/predicates.md (register_ssemem_operand): New predicate.
24273 * config/i386/i386.md (*cmpi<FPCMP:unord><MODEF:mode>): Merge from
24274 *cmpi<FPCMP:unord><MODEF:mode>_mixed and
24275 *cmpi<FPCMP:unord><X87MODEF:mode>_i387. Disable unsupported
24276 alternatives using "enabled" attribute. Use register_ssemem_operand
24277 as operand 1 predicate.
24278 (*cmpi<unord>xf_i387): Split XFmode pattern from
24279 *cmpi<FPCMP:unord><X87MODEF:mode>_i387.
24280 (*absneg<mode>2): Merge from *absneg<mode>2_mixed and
24281 *absneg<mode>2_i387. Disable unsupported alternatives using
24282 "enabled" attribute.
24283 (*absnegxf2_i387): Split XFmode pattern from *absneg<mode>2_i387.
24284
24285 2016-05-02 Nathan Sidwell <nathan@codesourcery.com>
24286
24287 * omp-low.c (lower_oacc_head_tail): Assert there is at least one
24288 marker.
24289 (oacc_loop_process): Check mask for loop termination.
24290
24291 2016-05-02 Jan Hubicka <hubicka@ucw.cz>
24292
24293 * cif-code.def (CIF_THUNK): Add.
24294 * ipa-inline-analsysis.c (evaluate_conditions_for_known_args): Revert
24295 accidental change.
24296
24297 2016-05-02 Jan Hubicka <hubicka@ucw.cz>
24298
24299 * ipa-inline-analysis.c (reset_inline_summary): Clear fp_expressions
24300 (dump_inline_summary): Dump it.
24301 (fp_expression_p): New predicate.
24302 (estimate_function_body_sizes): Use it.
24303 (inline_merge_summary): Merge fp_expressions.
24304 (inline_read_section): Read fp_expressions.
24305 (inline_write_summary): Write fp_expressions.
24306 * ipa-inline.c (can_inline_edge_p): Permit inlining across fp math
24307 codegen boundary if either caller or callee is !fp_expressions.
24308 * ipa-inline.h (inline_summary): Add fp_expressions.
24309 * ipa-inline-transform.c (inline_call): When inlining !fp_expressions
24310 to fp_expressions be sure the fp generation flags are updated.
24311
24312 2016-05-02 Jakub Jelinek <jakub@redhat.com>
24313
24314 PR rtl-optimization/70467
24315 * cse.c (cse_insn): Handle no-op MEM moves after folding.
24316
24317 PR rtl-optimization/70467
24318 * ipa-pure-const.c (check_call): Handle internal calls even in
24319 ipa mode like in local mode.
24320
24321 2016-05-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
24322
24323 * doc/install.texi: Document supported in-tree gmp/mpfr/mpc versions.
24324
24325 2016-05-02 Marc Glisse <marc.glisse@inria.fr>
24326
24327 * match.pd (X u< X, X u> X): New transformations.
24328
24329 2016-05-02 Marc Glisse <marc.glisse@inria.fr>
24330
24331 * flag-types.h (enum warn_strict_overflow_code): Move ...
24332 * coretypes.h: ... here.
24333 * fold-const.h (fold_overflow_warning): Declare.
24334 * fold-const.c (fold_overflow_warning): Make non-static.
24335 (fold_comparison): Move the transformation of X +- C1 CMP C2
24336 into X CMP C2 -+ C1 ...
24337 * match.pd: ... here.
24338 * gimple-fold.c (fold_stmt_1): Protect with
24339 fold_defer_overflow_warnings.
24340
24341 2016-05-02 Nathan Sidwell <nathan@codesourcery.com>
24342
24343 * omp-low.c (struct oacc_loop): Add 'inner' field.
24344 (new_oacc_loop_raw): Initialize it to zero.
24345 (oacc_loop_fixed_partitions): Initialize it.
24346 (oacc_loop_auto_partitions): Partition outermost loop to outermost
24347 available partitioning.
24348
24349 2016-05-02 Claudiu Zissulescu <claziss@synopsys.com>
24350
24351 * config/arc/arc.md (mulsidi3): Change operand 0 predicate to
24352 register_operand.
24353 (umulsidi3): Likewise.
24354 (indirect_jump): Fix jump instruction assembly patterns.
24355
24356 2016-05-02 Thomas Schwinge <thomas@codesourcery.com>
24357
24358 PR target/70860
24359 * config/nvptx/nvptx.c (nvptx_libcall_value): Handle NULL cfun.
24360 (nvptx_function_value): Assert non-NULL cfun.
24361
24362 2016-05-02 Eric Botcazou <ebotcazou@adacore.com>
24363
24364 PR rtl-optimization/70886
24365 * sched-deps.c (estimate_dep_weak): Canonicalize cselib values.
24366
24367 * cselib.h (rtx_equal_for_cselib_1): Declare.
24368 (rtx_equal_for_cselib_p: New inline function.
24369 * cselib.c (rtx_equal_for_cselib_p): Delete.
24370 (rtx_equal_for_cselib_1): Make public.
24371
24372 2016-05-02 Uros Bizjak <ubizjak@gmail.com>
24373
24374 * config/i386/predicates.md (nonimm_ssenomem_operand): New predicate.
24375 (register_mixssei387nonimm_operand): Remove predicate.
24376 * config/i386/i386.md (*fop_<mode>_comm): Merge from
24377 *fop_<mode>_comm_mixed and *fop_<mode>_comm_i387. Disable unsupported
24378 alternatives using "enabled" attribute. Also check X87_ENABLE_ARITH
24379 for TARGET_MIX_SSE_I387 alternatives.
24380 (*fop_<mode>_1): Merge from *fop_<mode>_1_mixed and *fop_<mode>_1_i387.
24381 Disable unsupported alternatives using "enabled" attribute. Use
24382 nonimm_ssenomem_operand as operand 1 predicate. Also check
24383 X87_ENABLE_ARITH for TARGET_MIX_SSE_I387 alternatives.
24384
24385 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
24386
24387 * tree.c (cst_and_fits_in_hwi): Simplify.
24388
24389 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
24390
24391 * tree.h (wi::to_wide): New function.
24392 * expr.c (expand_expr_real_1): Use wi::to_wide.
24393 * fold-const.c (int_const_binop_1): Likewise.
24394 (extract_muldiv_1): Likewise.
24395
24396 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
24397
24398 * wide-int.h: Update offset_int and widest_int documentation.
24399 (WI_SIGNED_SHIFT_RESULT): New macro.
24400 (wi::binary_shift): Define signed_shift_result_type for
24401 shifts on offset_int- and widest_int-like types.
24402 (generic_wide_int): Support <<= and >>= if << and >> are supported.
24403 * tree.h (int_bit_position): Use shift operators instead of wi::
24404 shifts.
24405 * alias.c (adjust_offset_for_component_ref): Likewise.
24406 * expr.c (get_inner_reference): Likewise.
24407 * fold-const.c (fold_comparison): Likewise.
24408 * gimple-fold.c (fold_nonarray_ctor_reference): Likewise.
24409 * gimple-ssa-strength-reduction.c (restructure_reference): Likewise.
24410 * tree-dfa.c (get_ref_base_and_extent): Likewise.
24411 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Likewise.
24412 (stmt_kills_ref_p): Likewise.
24413 * tree-ssa-ccp.c (bit_value_binop_1): Likewise.
24414 * tree-ssa-math-opts.c (find_bswap_or_nop_load): Likewise.
24415 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
24416 (ao_ref_init_from_vn_reference): Likewise.
24417
24418 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
24419
24420 * wide-int.h: Update offset_int and widest_int documentation.
24421 (WI_SIGNED_BINARY_PREDICATE_RESULT): New macro.
24422 (wi::binary_traits): Allow ordered comparisons between offset_int and
24423 offset_int, between widest_int and widest_int, and between either
24424 of these types and basic C types.
24425 (operator <, <=, >, >=): Define for the same combinations.
24426 * tree.h (tree_int_cst_lt): Use comparison operators instead
24427 of wi:: comparisons.
24428 (tree_int_cst_le): Likewise.
24429 * gimple-fold.c (fold_array_ctor_reference): Likewise.
24430 (fold_nonarray_ctor_reference): Likewise.
24431 * gimple-ssa-strength-reduction.c (record_increment): Likewise.
24432 * tree-affine.c (aff_comb_cannot_overlap_p): Likewise.
24433 * tree-parloops.c (try_transform_to_exit_first_loop_alt): Likewise.
24434 * tree-sra.c (completely_scalarize): Likewise.
24435 * tree-ssa-alias.c (stmt_kills_ref_p): Likewise.
24436 * tree-ssa-reassoc.c (extract_bit_test_mask): Likewise.
24437 * tree-vrp.c (extract_range_from_binary_expr_1): Likewise.
24438 (check_for_binary_op_overflow): Likewise.
24439 (search_for_addr_array): Likewise.
24440 * ubsan.c (ubsan_expand_objsize_ifn): Likewise.
24441
24442 2016-05-02 Claudiu Zissulescu <claziss@synopsys.com>
24443
24444 * config/arc/arc.c (arc_preferred_simd_mode): Remove enum keyword.
24445 (arc_save_restore): Likewise.
24446 (arc_dwarf_register_span): Likewise.
24447 (arc_output_pic_addr_const): Initialize suffix variable.
24448
24449 2016-05-02 Martin Liska <mliska@suse.cz>
24450
24451 * symbol-summary.h (function_summary::function_summary):
24452 Remove checking assert for all cgraph nodes.
24453 (function_summary::get): Check summary_uid.
24454 (symtab_insertion): Check summary_uid.
24455
24456 2016-05-02 Claudiu Zissulescu <claziss@synopsys.com>
24457
24458 * config/arc/arc-protos.h (compact_memory_operand_p): Declare.
24459 * config/arc/arc.c (arc_output_commutative_cond_exec): Consider
24460 bmaskn instruction.
24461 (arc_dwarf_register_span): Remove enum keyword.
24462 (compact_memory_operand_p): New function.
24463 * config/arc/arc.h (reg_class): Add code density register classes.
24464 (REG_CLASS_NAMES): Likewise.
24465 (REG_CLASS_CONTENTS): Likewise.
24466 * config/arc/arc.md (*movqi_insn): Add code density instructions.
24467 (*movhi_insn, *movsi_insn, *movsf_insn): Likewise.
24468 (*extendhisi2_i, andsi3_i, cmpsi_cc_insn_mixed): Likewise.
24469 (*cmpsi_cc_c_insn, *movsi_ne): Likewise.
24470 * config/arc/constraints.md (C2p, Uts, Cm1, Cm3, Ucd): New
24471 constraints.
24472 (h, Rcd, Rsd, Rzd): New register constraints.
24473 (T): Use compact_memory_operand_p function.
24474 * config/arc/predicates.md (compact_load_memory_operand): Remove.
24475
24476 2016-05-02 Oleg Endo <olegendo@gcc.gnu.org>
24477
24478 * config/sh/sh.md (*negnegt, *movtt): Remove.
24479
24480 2016-05-02 Marek Polacek <polacek@redhat.com>
24481 Tom de Vries <tom@codesourcery.com>
24482
24483 PR tree-optimization/70700
24484 * tree-ssa-structalias.c (dump_pred_graph): Fix getting varinfo for ids
24485 bigger than FIRST_REF_NODE.
24486
24487 2016-05-02 Oleg Endo <olegendo@gcc.gnu.org>
24488
24489 PR target/52898
24490 * config/sh/sh.c (sh_option_override): Remove TARGET_CBRANCHDI4,
24491 TARGET_CMPEQDI_T.
24492 (prepare_cbranch_operands): Don't use scratch register. Assume that
24493 function is used when pseudos can be created.
24494 (expand_cbranchdi4): Likewise. Remove unused TARGET_CMPEQDI_T paths.
24495 * config/sh/sh.md (cbranchsi4): Allow only when pseudos can be created.
24496 (cbranchdi4, cbranchdi4_i): Simplify to single cbranchdi4
24497 define_expand. Allow it only when pseudos can be created.
24498 * config/sh/sh.opt (mcbranchdi, mcmpeqdi): Delete.
24499
24500 2016-05-01 Uros Bizjak <ubizjak@gmail.com>
24501
24502 * config/i386/constraints.md (BC): Only allow -1 operands.
24503 * config/i386/sse.md (mov<mode>_internal): Add (v,C) alternative.
24504 Add "enabled" attribute. Update XI mode attribute calculation.
24505 * config/i386/i386.md (*movxi_internal_avx512f): Add (v,C) alternative.
24506 (*movoi_internal_avx): Update XI mode attribute calculation.
24507 (*movti_internal): Ditto.
24508
24509 2016-05-01 Oleg Endo <olegendo@gcc.gnu.org>
24510
24511 * config/sh/sh.md (push, pop, ic_invalidate_line, cstoresi4, cstoredi4,
24512 cstoresf4, cstoredf4, fix_truncsfsi2): Remove constraints.
24513
24514 2016-05-01 Eric Botcazou <ebotcazou@adacore.com>
24515
24516 * config/rs6000/rs6000.c (altivec_expand_lv_builtin): Do not use switch
24517 statement on instruction code. Remove trailing spaces.
24518 (altivec_expand_stv_builtin): Likewise.
24519
24520 2016-05-01 Oleg Endo <olegendo@gcc.gnu.org>
24521
24522 * config/sh/sh.h (TARGET_SH4): Remove and use default implementation.
24523 (TARGET_FPU_DOUBLE): Simplify.
24524 (BASE_ARG_REG, DOUBLE_TYPE_SIZE, OPTIMIZE_MODE_SWITCHING): Replace
24525 'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions with 'TARGET_FPU_DOUBLE'.
24526 * config/sh/sh.c: Replace 'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions
24527 with 'TARGET_FPU_DOUBLE'.
24528 * config/sh/sh.md: Likewise.
24529
24530 2016-05-01 Yoshinori Sato <ysato@users.sourceforge.jp>
24531
24532 * config/sh/linux.h (SH_DIV_STRATEGY_DEFAULT,
24533 SH_DIV_STR_FOR_SIZE): Remove.
24534 * config/sh/netbsd-elf.h (SH_DIV_STRATEGY_DEFAULT,
24535 SH_DIV_STR_FOR_SIZE): Remove.
24536
24537 2016-05-01 Oleg Endo <olegendo@gcc.gnu.org>
24538
24539 * config/sh/predicates.md (any_register_operand, zero_extend_operand,
24540 logical_reg_operand): Delete.
24541 (arith_operand, arith_reg_dest, arith_or_int_operand, cmpsi_operand,
24542 arith_reg_or_0_operand, arith_reg_or_0_or_1_operand, logical_operand,
24543 logical_and_operand, movsrc_no_disp_mem_operand): Rewrite using
24544 match_operand and match_test.
24545 (sh_const_vec, sh_1el_vec): Remove redundant checks. Declare local
24546 variables on their first use. Return bool values.
24547 * config/sh/sh.h (LOAD_EXTEND_OP): Update comment.
24548 * config/sh/sh.md (andsi3, iorsi3): Use arith_reg_dest for result and
24549 arith_reg_operand for input operand. Remove empty constraints.
24550 (xorsi3): Delete.
24551 (*xorsi3_compact): Rename to xorsi3.
24552 (zero_extend<mode>si2): Use arith_reg_operand for input operand.
24553 (*zero_extend<mode>si2_disp_mem): Update comment.
24554 (mov_nop): Delete.
24555
24556 2016-04-30 Oleg Endo <olegendo@gcc.gnu.org>
24557
24558 * config/sh/t-sh: Remove SH5 support.
24559 * config.gcc: Likewise.
24560 * configure: Likewise.
24561
24562 2016-04-30 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
24563
24564 * config/darwin.h (LINK_COMMAND_SPEC_A): Handle -fcilkplus.
24565
24566 2016-04-30 Oleg Endo <olegendo@gcc.gnu.org>
24567
24568 * config/sh/sh.c (register_sh_passes, sh_option_override,
24569 sh_print_operand, prepare_move_operands,
24570 sh_can_follow_jump): Remove TARGET_SH1 checks.
24571 * config/sh/sh.h (TARGET_VARARGS_PRETEND_ARGS, VALID_REGISTER_P,
24572 PROMOTE_MODE): Likewise.
24573 * config/sh/sh.md (adddi3, addsi3, subdi3, subsi3, andsi3,
24574 movdi): Likewise.
24575
24576 2016-04-30 Alan Modra <amodra@gmail.com>
24577
24578 * config/rs6000/rs6000.c (rs6000_savres_strategy): Force inline
24579 restoring when fixed_reg_p, but allow out-of-line or stmw save.
24580 Check for user regs later to avoid unnecessary looping over regs.
24581 Merge user reg check with non-saved reg check. Don't force
24582 inline VR restore when static chain used.
24583 (rs6000_frame_related): Omit eh_frame info for user regs when
24584 saving.
24585 (fixed_regs_p): Delete.
24586
24587 2016-04-30 Alan Modra <amodra@gmail.com>
24588
24589 * config/rs6000/rs6000.c (SAVRES_MULTIPLE): Replace with..
24590 (SAVE_STRATEGY, REST_STRATEGY): ..this. Renumber and sort enum.
24591 Update all uses.
24592
24593 2016-04-30 Alan Modra <amodra@gmail.com>
24594
24595 PR target/69645
24596 * config/rs6000/rs6000.c (fixed_reg_p): New function.
24597 (fixed_regs_p): Rename from global_regs_p. Call fixed_reg_p.
24598 Update all uses.
24599
24600 2016-04-30 Alan Modra <amodra@gmail.com>
24601
24602 * config/rs6000/rs6000.c (rs6000_conditional_register_usage):
24603 Remove redundant PIC_OFFSET_TABLE_REGNUM test. Replace with
24604 flag_pic test for Darwin.
24605
24606 2016-04-30 Alan Modra <amodra@gmail.com>
24607
24608 * regs.h (struct reg_info_t): Delete freq_calls_crossed and
24609 throw_calls_crossed.
24610 (REG_FREQ_CALLS_CROSSED): Delete.
24611 (REG_N_THROWING_CALLS_CROSSED): Delete.
24612 * regstat.c (regstat_bb_compute_ri): Don't calculate
24613 REG_FREQ_CALLS_CROSSED and REG_N_THROWING_CALLS_CROSSED.
24614 (dump_reg_info): Don't print call cross frequency.
24615 * ira.c (combine_and_move_insns): Don't set REG_FREQ_CALLS_CROSSED
24616 and REG_N_THROWING_CALLS_CROSSED.
24617
24618 2016-04-30 Alan Modra <amodra@gmail.com>
24619
24620 * regs.h (struct reg_info_t): Delete live_length.
24621 (REG_LIVE_LENGTH): Delete macro.
24622 * regstat.c (regstat_bb_compute_ri): Delete artificial_uses,
24623 local_live, local_processed and local_live_last_luid params.
24624 Replace bb_index param with bb. Don't set REG_LIVE_LENGTH.
24625 Formatting fixes.
24626 (regstat_compute_ri): Adjust for above. Don't set
24627 REG_LIVE_LENGTH.
24628 (dump_reg_info): Don't print live length.
24629 * ira.c (update_equiv_regs): Replace test of REG_LIVE_LENGTH
24630 with test of setjmp_crosses. Don't set REG_LIVE_LENGTH.
24631 Localize loop_depth var.
24632
24633 2016-04-30 Alan Modra <amodra@gmail.com>
24634
24635 * ira.c (enum valid_equiv): New.
24636 (validate_equiv_mem): Return enum.
24637 (update_equiv_mem): Create replacement in more cases.
24638 (add_store_equivs): Update validate_equiv_mem call.
24639
24640 2016-04-30 Alan Modra <amodra@gmail.com>
24641
24642 * ira.c (combine_and_move_insns): Rather than scanning insns,
24643 use DF infrastucture to find use and def insns.
24644
24645 2016-04-30 Alan Modra <amodra@gmail.com>
24646
24647 ira.c (combine_and_move_insns): Move invariant conditions..
24648 (ira.c): ..to here. Call combine_and_move_insns before
24649 add_store_equivs. Call grow_reg_equivs later. Allocate
24650 req_equiv later using max_reg_num() rather than global max_regno.
24651 (contains_replace_regs): Delete.
24652 (add_store_equivs): Remove contains_replace_regs test.
24653
24654 2016-04-30 Alan Modra <amodra@gmail.com>
24655
24656 * ira.c (struct equiv_mem_data): New.
24657 (equiv_mem, equiv_mem_modified): Delete static vars.
24658 (validate_equiv_mem_from_store): Use "data" param to communicate..
24659 (validate_equiv_mem): ..from here.
24660
24661 2016-04-30 Alan Modra <amodra@gmail.com>
24662
24663 * ira.c (add_store_equivs, combine_and_move_insns): New functions,
24664 split out from..
24665 (update_reg_equivs): ..here. Move allocation and freeing of
24666 reg_equiv, and calls to grow_reg_equivs, init_alias_analysis,
24667 end_alias_analysis to..
24668 (ira): ..here.
24669
24670 2016-04-30 Alan Modra <amodra@gmail.com>
24671
24672 * ira.c (pdx_subregs): Delete.
24673 (struct equivalence): Add pdx_subregs field.
24674 (set_paradoxical_subreg): Remove pdx_subregs param. Update
24675 pdx_subregs access.
24676 (update_equiv_regs): Don't create or free pdx_subregs. Update
24677 pdx_subregs access.
24678
24679 2016-04-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
24680
24681 * config/rs6000/altivec.h: Change definitions of vec_xl and
24682 vec_xst.
24683 * config/rs6000/rs6000-builtin.def (LD_ELEMREV_V2DF): New.
24684 (LD_ELEMREV_V2DI): New.
24685 (LD_ELEMREV_V4SF): New.
24686 (LD_ELEMREV_V4SI): New.
24687 (LD_ELEMREV_V8HI): New.
24688 (LD_ELEMREV_V16QI): New.
24689 (ST_ELEMREV_V2DF): New.
24690 (ST_ELEMREV_V2DI): New.
24691 (ST_ELEMREV_V4SF): New.
24692 (ST_ELEMREV_V4SI): New.
24693 (ST_ELEMREV_V8HI): New.
24694 (ST_ELEMREV_V16QI): New.
24695 (XL): New.
24696 (XST): New.
24697 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
24698 descriptions for VSX_BUILTIN_VEC_XL and VSX_BUILTIN_VEC_XST.
24699 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Map from
24700 TARGET_P9_VECTOR to RS6000_BTM_P9_VECTOR.
24701 (altivec_expand_builtin): Add handling for
24702 VSX_BUILTIN_ST_ELEMREV_<MODE> and VSX_BUILTIN_LD_ELEMREV_<MODE>.
24703 (rs6000_invalid_builtin): Add error-checking for
24704 RS6000_BTM_P9_VECTOR.
24705 (altivec_init_builtins): Define builtins used to implement vec_xl
24706 and vec_xst.
24707 (rs6000_builtin_mask_names): Define power9-vector.
24708 * config/rs6000/rs6000.h (MASK_P9_VECTOR): Define.
24709 (RS6000_BTM_P9_VECTOR): Define.
24710 (RS6000_BTM_COMMON): Include RS6000_BTM_P9_VECTOR.
24711 * config/rs6000/vsx.md (vsx_ld_elemrev_v2di): New define_insn.
24712 (vsx_ld_elemrev_v2df): Likewise.
24713 (vsx_ld_elemrev_v4sf): Likewise.
24714 (vsx_ld_elemrev_v4si): Likewise.
24715 (vsx_ld_elemrev_v8hi): Likewise.
24716 (vsx_ld_elemrev_v16qi): Likewise.
24717 (vsx_st_elemrev_v2df): Likewise.
24718 (vsx_st_elemrev_v2di): Likewise.
24719 (vsx_st_elemrev_v4sf): Likewise.
24720 (vsx_st_elemrev_v4si): Likewise.
24721 (vsx_st_elemrev_v8hi): Likewise.
24722 (vsx_st_elemrev_v16qi): Likewise.
24723 * doc/extend.texi: Add prototypes for vec_xl and vec_xst. Correct
24724 grammar.
24725
24726 2016-04-29 Patrick Palka <ppalka@gcc.gnu.org>
24727
24728 * tree-ssa-threadedge.c (simplify_control_stmt_condition): Split
24729 out into ...
24730 (simplify_control_stmt_condition_1): ... here. Recurse into
24731 BIT_AND_EXPRs and BIT_IOR_EXPRs.
24732
24733 2016-04-29 David Edelsohn <dje.gcc@gmail.com>
24734
24735 PR target/69810
24736 * config/rs6000/rs6000.md (EXTQI): Don't allow extension to HImode.
24737 (zero_extendqi<mode>2_dot): Revert earlier conversion from
24738 define_insn_and_split to define_insn.
24739 (zero_extendqi<mode>2_dot2): Same.
24740 (extendqi<mode>2_dot): Same.
24741 (extendqi<mode>2_dot2): Same.
24742
24743 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
24744
24745 * config/i386/i386.md (unspec): Add UNSPEC_PROBE_STACK.
24746 (probe_stack): New expander.
24747 (probe_stack_<mode>): New insn pattern.
24748
24749 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
24750
24751 * config/i386/i386.md
24752 (operations with memory inputs setting flags peephole2):
24753 Remove uneeded REG_P checks. Cleanup pattern generation.
24754
24755 2016-04-29 Ilya Enkovich <ilya.enkovich@intel.com>
24756
24757 * tree-vect-loop.c (vect_transform_loop): Fix
24758 nb_iterations_upper_bound computation for vectorized loop.
24759
24760 2016-04-29 Marek Polacek <polacek@redhat.com>
24761 Jakub Jelinek <jakub@redhat.com>
24762
24763 PR sanitizer/70342
24764 * fold-const.c (tree_single_nonzero_warnv_p): For TARGET_EXPR, use
24765 TARGET_EXPR_SLOT as a base.
24766
24767 2016-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
24768
24769 * config/arc/arc.md (*loadqi_update): Replace use of 'rI' constraint
24770 with 'rCm2' constraints to limit possible immediate size.
24771 (*load_zeroextendqisi_update): Likewise.
24772 (*load_signextendqisi_update): Likewise.
24773 (*loadhi_update): Likewise.
24774 (*load_zeroextendhisi_update): Likewise.
24775 (*load_signextendhisi_update): Likewise.
24776 (*loadsi_update): Likewise.
24777 (*loadsf_update): Likewise.
24778
24779 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
24780
24781 * config/i386/predicates.md (constm1_operand): Fix comparison.
24782
24783 2016-04-29 Claudiu Zissulescu <claziss@synopsys.com>
24784
24785 * testsuite/gcc.target/arc/ieee_eq.c: New test.
24786
24787 2016-04-29 Oleg Endo <olegendo@gcc.gnu.org>
24788
24789 * common/config/sh/sh-common.c (sh_option_optimization_table): Remove
24790 remaining SH5 related settings.
24791 * config/sh/sh-protos.h (shmedia_cleanup_truncate,
24792 shmedia_prepare_call_address): Delete.
24793 * config/sh/sh.c (sh_print_operand, output_stack_adjust,
24794 DWARF_CIE_DATA_ALIGNMENT, LOCAL_ALIGNMENT): Update comments.
24795 * config/sh/sh.h (SUBTARGET_ASM_RELAX_SPEC,
24796 UNSUPPORTED_SH2A): Remove m5 checks.
24797 (sh_divide_strategy_e): Remove SH5 division strategies.
24798 (TARGET_PTRMEMFUNC_VBIT_LOCATION): Remove and use default.
24799 * config/sh/sh.md (divsf3): Reinstate define_expand pattern.
24800
24801 2016-04-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
24802
24803 * config/s390/s390.c (s390_rtx_costs): Update documentation.
24804
24805 2016-04-29 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24806
24807 * config/s390/2964.md ("z13_unit_fxu", "z13_0"): Remove lder.
24808 * config/s390/s390.md ("movsi_larl", "*movsi_esa", "mov<mode>"):
24809 Change lder to ldr.
24810 * config/s390/vector.md ("mov<mode>"): Likewise.
24811
24812 2016-04-29 Ulrich Weigand <uweigand@de.ibm.com>
24813
24814 * config/s390/constraints.md ("U", "W"): Invoke
24815 s390_mem_constraint with "ZR" and "ZT".
24816 * config/s390/s390.c (s390_check_qrst_address): Reject invalid
24817 addresses when using LRA. Accept also short displacements for S
24818 and T constraints. Do not check for long displacement target for
24819 S and T constraints.
24820 (s390_mem_constraint): Remove handling of U and W constraints.
24821 * config/s390/s390.md (various patterns): Remove the short
24822 displacement constraints (Q and R) if a long displacement
24823 constraint is present. Add longdisp as required CPU capability.
24824 * config/s390/vector.md: Likewise.
24825 * config/s390/vx-builtins.md: Likewise.
24826
24827 2016-04-29 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
24828
24829 PR target/60040
24830 * reload1.c (reload): Call finish_spills before
24831 restarting reload loop. Skip select_reload_regs
24832 if update_eliminables_and_spill returns true.
24833
24834 2016-04-29 Claudiu Zissulescu <claziss@synopsys.com>
24835
24836 * config/arc/arc.h (UNSIGNED_INT12, UNSIGNED_INT16): Define.
24837 * config/arc/arc.md (umulhisi3): Use arc_short_operand predicate.
24838 (umulhisi3_imm): Update predicates and constraint letters.
24839 (umulhisi3_reg): Declare instruction as commutative.
24840 * config/arc/constraints.md (J12, J16): New constraints.
24841 * config/arc/predicates.md (short_unsigned_const_operand): New
24842 predicate.
24843 (arc_short_operand): Likewise.
24844 * testsuite/gcc.target/arc/umulsihi3_z.c: New file.
24845
24846 2016-04-29 Richard Biener <rguenther@suse.de>
24847
24848 PR tree-optimization/13962
24849 PR tree-optimization/65686
24850 * tree-ssa-alias.h (ptrs_compare_unequal): Declare.
24851 * tree-ssa-alias.c (ptrs_compare_unequal): New function
24852 using PTA to compare pointers.
24853 * match.pd: Add pattern for pointer equality compare simplification
24854 using ptrs_compare_unequal.
24855
24856 2016-04-29 Richard Biener <rguenther@suse.de>
24857
24858 * stor-layout.c (layout_type): Do not build a pointer-to-element
24859 type for arrays.
24860
24861 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
24862
24863 * config/i386/i386.md (Load+RegOp to Mov+MemOp peephole2):
24864 Use SWI mode iterator. Use general_reg_operand predicate.
24865 (Load+RegOp to Mov+MemOp peephole2 with vector regs): Split
24866 peephole to MMX and SSE part. Use mmx_reg_operand and sse_reg_operand
24867 predicates.
24868
24869 2016-04-29 Jakub Jelinek <jakub@redhat.com>
24870
24871 PR middle-end/70843
24872 * fold-const.c (operand_equal_p): Don't verify hash value equality
24873 if arg0 == arg1.
24874 * tree.c (inchash::add_expr): Handle STATEMENT_LIST. Ignore BLOCK
24875 and OMP_CLAUSE.
24876
24877 2016-04-28 Jakub Jelinek <jakub@redhat.com>
24878
24879 PR target/70858
24880 * config/i386/i386.c (bdesc_special_args): Add | OPTION_MASK_ISA_64BIT
24881 to __builtin_ia32_lwpval64 and __builtin_ia32_lwpins64.
24882 (bdesc_args): Add | OPTION_MASK_ISA_64BIT to __builtin_ia32_bextr_u64,
24883 __builtin_ia32_bextri_u64, __builtin_ia32_bzhi_di,
24884 __builtin_ia32_pdep_di and __builtin_ia32_pext_di.
24885
24886 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
24887
24888 * config/rs6000/rs6000.c (compute_save_world_info): Rename info_ptr
24889 to info. Don't initialize separate fields to 0. Clean up
24890 formatting a bit.
24891
24892 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
24893
24894 * config/i386/i386.md (peephole2s for operations with memory inputs):
24895 Use SWI mode iterator.
24896 (peephole2s for operations with memory outputs): Ditto.
24897 Do not check for stack checking probe.
24898
24899 (probe_stack): Remove expander.
24900
24901 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
24902 Andrew Burgess <andrew.burgess@embecosm.com>
24903
24904 * config/arc/arc.c (arc_print_operand): Print integer 'H' / 'L'
24905 operands as 32-bits.
24906
24907 2016-04-28 Jason Merrill <jason@redhat.com>
24908
24909 * gdbinit.in: Skip line-map.h.
24910
24911 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
24912 Andrew Burgess <andrew.burgess@embecosm.com>
24913
24914 * config/arc/arc.c (arc_conditional_register_usage): Take
24915 TARGET_RRQ_CLASS into account.
24916 (arc_print_operand): Support printing 'p' and 's' operands.
24917 * config/arc/arc.h (TARGET_NPS_BITOPS_DEFAULT): Provide default
24918 as 0.
24919 (TARGET_RRQ_CLASS): Define.
24920 (IS_POWEROF2_OR_0_P): Define.
24921 * config/arc/arc.md (*movsi_insn): Add w/Clo, w/Chi, and w/Cbi
24922 alternatives.
24923 (*tst_movb): New define_insn.
24924 (*tst): Avoid recognition if it could prevent '*tst_movb'
24925 combination; replace c/CnL with c/Chs alternative.
24926 (*tst_bitfield_tst): New define_insn.
24927 (*tst_bitfield_asr): New define_insn.
24928 (*tst_bitfield): New define_insn.
24929 (andsi3_i): Add Rrq variant.
24930 (extzv): New define_expand.
24931 (insv): New define_expand.
24932 (*insv_i): New define_insn.
24933 (*movb): New define_insn.
24934 (*movb_signed): New define_insn.
24935 (*movb_high): New define_insn.
24936 (*movb_high_signed): New define_insn.
24937 (*movb_high_signed + 1): New define_split pattern.
24938 (*mrgb): New define_insn.
24939 (*mrgb + 1): New define_peephole2 pattern.
24940 (*mrgb + 2): New define_peephole2 pattern.
24941 * config/arc/arc.opt (mbitops): New option for nps400, uses
24942 TARGET_NPS_BITOPS_DEFAULT.
24943 * config/arc/constraints.md (q): Make register class conditional.
24944 (Rrq): New register constraint.
24945 (Chs): New constraint.
24946 (Clo): New constraint.
24947 (Chi): New constraint.
24948 (Cbf): New constraint.
24949 (Cbn): New constraint.
24950 (C18): New constraint.
24951 (Cbi): New constraint.
24952
24953 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
24954
24955 * cfganal.c (bitmap_intersection_of_succs): Delete assert checking
24956 dst->popcount.
24957 (bitmap_intersection_of_preds): Ditto.
24958 (bitmap_union_of_succs): Ditto.
24959 (bitmap_union_of_preds): Ditto.
24960 * sbitmap.c (do_popcount): Delete.
24961 (BITMAP_DEBUGGING): Delete.
24962 (sbitmap_verify_popcount): Delete.
24963 (sbitmap_alloc): Don't initialize the popcount field.
24964 (sbitmap_alloc_with_popcount): Delete.
24965 (sbitmap_resize): Don't resize the popcount array.
24966 (sbitmap_vector_alloc): Don't initialize the popcount field.
24967 (bitmap_copy): Don't copy the popcount array.
24968 (bitmap_clear): Don't clear the popcount array.
24969 (bitmap_clear): Delete the popcount array handling.
24970 (bitmap_ior_and_compl): Delete the popcount assert.
24971 (bitmap_not): Ditto.
24972 (bitmap_and_compl): Ditto.
24973 (bitmap_and): Delete the popcount array handling.
24974 (bitmap_xor): Ditto.
24975 (bitmap_ior): Ditto.
24976 (bitmap_or_and): Delete the popcount assert.
24977 (bitmap_and_or): Ditto.
24978 (popcount_table): Delete.
24979 (sbitmap_elt_popcount): Delete.
24980 * sbitmap.h (simple_bitmap_def): Delete the popcount field.
24981 (bitmap_set_bit): Delete the popcount assert.
24982 (bitmap_clear_bit): Ditto.
24983 (sbitmap_free): Don't free the popcount array.
24984 (sbitmap_alloc_with_popcount): Delete declaration.
24985 (sbitmap_popcount): Ditto.
24986
24987 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
24988 Andrew Burgess <andrew.burgess@embecosm.com>
24989
24990 * config/arc/arc.h (SYMBOL_FLAG_CMEM): Define.
24991 (TARGET_NPS_CMEM_DEFAULT): Provide default definition.
24992 * config/arc/arc.c (arc_address_cost): Return 0 for cmem_address.
24993 (arc_encode_section_info): Set SYMBOL_FLAG_CMEM where indicated.
24994 * config/arc/arc.opt (mcmem): New option.
24995 * config/arc/arc.md (*extendqihi2_i): Add r/Uex alternative,
24996 supply length for r/m alternative.
24997 (*extendqisi2_ac): Likewise.
24998 (*extendhisi2_i): Add r/Uex alternative, supply length for r/m and
24999 r/Uex alternative.
25000 (movqi_insn): Add r/Ucm and Ucm/?Rac alternatives.
25001 (movhi_insn): Likewise.
25002 (movsi_insn): Add r/Ucm,Ucm/w alternatives.
25003 (*zero_extendqihi2_i): Add r/Ucm alternative.
25004 (*zero_extendqisi2_ac): Likewise.
25005 (*zero_extendhisi2_i): Likewise.
25006 * config/arc/constraints.md (Uex): New memory constraint.
25007 (Ucm): New define_constraint.
25008 * config/arc/predicates.md (long_immediate_loadstore_operand):
25009 Return 0 for MEM with cmem_address address.
25010 (cmem_address_0): New predicates.
25011 (cmem_address_1): Likewise.
25012 (cmem_address_2): Likewise.
25013 (cmem_address): Likewise.
25014
25015 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
25016
25017 * config/rs6000/rs6000.c (machine_function): Rename
25018 insn_chain_scanned_p to spe_insn_chain_scanned_p.
25019 (rs6000_stack_info): Adjust.
25020
25021 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
25022 Andrew Burgess <andrew.burgess@embecosm.com>
25023
25024 * config/arc/constraints.md (Usd): Convert to define_constraint.
25025 (Us<): Likewise.
25026 (Us>): Likewise.
25027
25028 2016-04-28 Jakub Jelinek <jakub@redhat.com>
25029
25030 PR target/70821
25031 * config/i386/sync.md (define_peephole2 *atomic_fetch_add_cmp<mode>):
25032 Add new peephole2 where the first insn is *mov<mode>_or instead of
25033 *mov<mode>_internal.
25034
25035 2016-04-28 Segher Boesssenkool <segher@kernel.crashing.org>
25036
25037 * tracer.c (bb_seen): Make static.
25038
25039 2016-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
25040
25041 * common/config/arc/arc-common.c (arc_handle_option): Add NPS400
25042 support, setup defaults.
25043 * config/arc/arc-opts.h (enum processor_type): Add NPS400.
25044 * config/arc/arc.c (arc_init): Add NPS400 support.
25045 * config/arc/arc.h (CPP_SPEC): Add NPS400 defines.
25046 (TARGET_ARC700): NPS400 is also an ARC700.
25047 * config/arc/arc.opt: Add NPS400 options to -mcpu=.
25048
25049 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
25050
25051 PR target/70668
25052 * config/nds32/nds32.md (casesi): Don't access the operands array
25053 out of bounds.
25054
25055 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
25056
25057 * config/i386/i386.md (zeroing peephole2): Use general_reg_operand.
25058 (or $-1,reg peephole2): Ditto.
25059 (strict_low_part zeroing peephole2): Use SWI12 mode iterator.
25060
25061 2016-04-28 Markus Trippelsdorf <markus@trippelsdorf.de>
25062
25063 * doc/extend.texi (Common Function Attributes) [optimize]:
25064 Discourage use of the optimize attribute.
25065
25066 2016-04-28 Bill Seurer <seurer@linux.vnet.ibm.com>
25067
25068 * config/rs6000/rs6000-builtin.def (vec_adde): Change vec_adde to a
25069 special case builtin.
25070 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
25071 ALTIVEC_BUILTIN_VEC_ADDE.
25072 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
25073 support for ALTIVEC_BUILTIN_VEC_ADDE.
25074 * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
25075 for __builtin_vec_adde.
25076
25077 2016-04-28 Jakub Jelinek <jakub@redhat.com>
25078
25079 * config/i386/i386.md (sse4_1_round<mode>2): Add avx512f alternative.
25080 * config/i386/sse.md (sse4_1_round<ssescalarmodesuffix>): Likewise.
25081
25082 2016-04-28 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
25083
25084 PR testsuite/70595
25085 * doc/sourcebuild.texi (Effective-Target Keywords, Other
25086 attributes): Document cilkplus_runtime.
25087
25088 2016-04-28 Martin Jambor <mjambor@suse.cz>
25089
25090 * tree-cfg.c (verify_expr): Verify that local declarations belong to
25091 this function. Call verify_expr on MEM_REFs and bases of other
25092 handled_components.
25093
25094 2016-04-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25095
25096 * internal-fn.c (expand_arith_overflow): Convert preprocessor check
25097 for WORD_REGISTER_OPERATIONS to runtime check.
25098
25099 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
25100
25101 * config/arc/arc.h (ASM_SPEC): Pass mfpuda to assembler.
25102
25103 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
25104
25105 * config/arc/arc.c (arc_process_double_reg_moves): Fix for
25106 big-endian compilation.
25107 * config/arc/arc.md (addf3): Likewise.
25108 (subdf3): Likewise.
25109 (muldf3): Likewise.
25110
25111 2016-04-28 Richard Biener <rguenther@suse.de>
25112
25113 PR tree-optimization/70840
25114 * match.pd: powi(-x, y) and powi(|x|,y) -> powi(x,y) if y is even;
25115 Fix pow(copysign(x, y), z) -> pow(x, z) and add powi variant;
25116 Mark x * pow(x,c) -> pow(x,c+1) commutative.
25117 Add powi(x,y) * powi(z,y) -> powi(x*z,y).
25118
25119 2015-04-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25120
25121 * config/aarch64/aarch64.h (WORD_REGISTER_OPERATIONS): Define to 0
25122 and explain why in a comment.
25123
25124 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
25125
25126 * config/arc/arc.md (cpu_facility): Add fpx variant.
25127 (subdf3): Prohibit use reverse sub when assist operations option
25128 is enabled.
25129 * config/arc/fpx.md (subdf3_insn, *dsubh_peep2_insn): Allow drsub
25130 instructions only when FPX is enabled.
25131 * testsuite/gcc.target/arc/trsub.c: New test.
25132
25133 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
25134
25135 * config/i386/i386.md (*fop_<mode>_1_mixed): Do not check for
25136 mult_operator when calculating "type" attribute.
25137 (*fop_<mode>_1_i387): Ditto.
25138 (*fop_xf_1_i387): Ditto.
25139 (x87 stack loads peephole2): Add "reg = op (mem, reg)" peephole2.
25140 Use std::swap to swap operands. Use RTL expressions to generate
25141 converted pattern.
25142
25143 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
25144 Joern Rennecke <joern.rennecke@embecosm.com>
25145
25146 * config/arc/arc-protos.h (arc_legitimize_pic_address): Remove
25147 declaration.
25148 (emit_pic_move): Remove.
25149 (arc_eh_uses, insn_is_tls_gd_dispatch): Declare.
25150 * config/arc/arc.c (emit_pic_move): Removed.
25151 (TARGET_HAVE_TLS): Define.
25152 (arc_conditional_register_usage): Test for arc_tp_regno.
25153 (arc_print_operand, arc_print_operand_address): Handle TLS
25154 unspecs.
25155 (arc_needs_pcl_p): New function.
25156 (arc_legitimate_pc_offset_p): Use arc_needs_pcl_p.
25157 (arc_legitimate_pic_addr_p): Handle TLS unspecs.
25158 (arc_raw_symbolic_reference_mentioned_p): Likewise.
25159 (arc_get_tp, arc_emit_call_tls_get_addr): New function.
25160 (arc_legitimize_tls_address): Likewise.
25161 (DTPOFF_ZERO_SYM): Define.
25162 (arc_legitimize_pic_address): Make it static, handle TLS cases.
25163 (arc_output_pic_addr_const): Print TLS unspecs.
25164 (prepare_pic_move): New function, replaces emit_pic_move.
25165 (arc_legitimate_constant_p): Handle TLS unspecs.
25166 (arc_legitimate_address_p): Likewise.
25167 (arc_rewrite_small_data_p): Use assert for TLS constants.
25168 (prepare_move_operands): Use prepare_pic_move.
25169 (arc_legitimize_address): Legitimize tls addresses.
25170 (arc_epilogue_uses): Check for arc_tp_regno.
25171 (arc_eh_uses, insn_is_tls_gd_dispatch): New function.
25172 * config/arc/arc.h [DEFAULT_LIBC != LIBC_UCLIBC] (EXTRA_SPECS):
25173 Define.
25174 [DEFAULT_LIBC != LIBC_UCLIBC] (ARC_TLS_EXTRA_START_SPEC):
25175 Likewise.
25176 [DEFAULT_LIBC != LIBC_UCLIBC] (STARTFILE_SPEC): Add
25177 %(arc_tls_extra_start_spec).
25178 (TARGET_CPU_CPP_BUILTINS): Define __ARC_TLS_REGNO__.
25179 (REGNO_OK_FOR_BASE_P): Check for arc_tp_regno.
25180 (EH_USES): Define.
25181 (INSN_REFERENCES_ARE_DELAYED): Use insn_is_tls_gd_dispatch.
25182 * config/arc/arc.md (UNSPEC_TLS_GD, UNSPEC_TLS_LD, UNSPEC_TLS_IE)
25183 (UNSPEC_TLS_OFF): Add.
25184 (R10_REG): Define.
25185 (tls_load_tp_soft, tls_gd_load, tls_gd_get_addr, tls_gd_dispatch)
25186 (get_thread_pointersi): New patterns.
25187 * config/arc/arc.opt (mtp-regno): New option.
25188 * config/arc/predicates.md (move_src_operand): Handle TLS symbols.
25189 (move_dest_operand): Likewise.
25190 * configure: Regenerate.
25191 * configure.ac: Add arc*-*-* case to test for tls.
25192 * doc/invoke.texi (ARC options): Document mtp-regno.
25193
25194 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
25195
25196 * config/arc/arc.c (arc_vector_mode_supported_p): Add support for
25197 the new ARC HS SIMD instructions.
25198 (arc_preferred_simd_mode): New function.
25199 (arc_autovectorize_vector_sizes): Likewise.
25200 (TARGET_VECTORIZE_PREFERRED_SIMD_MODE)
25201 (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Define.
25202 (arc_init_reg_tables): Accept new ARC HS SIMD modes.
25203 (arc_init_builtins): Add new SIMD builtin types.
25204 (arc_split_move): Handle 64 bit vector moves.
25205 * config/arc/arc.h (TARGET_PLUS_DMPY, TARGET_PLUS_MACD)
25206 (TARGET_PLUS_QMACW): Define.
25207 * config/arc/builtins.def (QMACH, QMACHU, QMPYH, QMPYHU, DMACH)
25208 (DMACHU, DMPYH, DMPYHU, DMACWH, DMACWHU, VMAC2H, VMAC2HU, VMPY2H)
25209 (VMPY2HU, VADDSUB2H, VSUBADD2H, VADDSUB, VSUBADD, VADDSUB4H)
25210 (VSUBADD4H): New builtins.
25211 * config/arc/simdext.md: Add new ARC HS SIMD instructions.
25212 * testsuite/gcc.target/arc/builtin_simdarc.c: New file.
25213
25214 2016-04-28 Eduard Sanou <dhole@openmailbox.org>
25215 Matthias Klose <doko@debian.org>
25216
25217 * doc/cppenv.texi: Document SOURCE_DATE_EPOCH environment variable.
25218
25219 2016-04-28 Richard Biener <rguenther@suse.de>
25220
25221 PR middle-end/70777
25222 * fold-const.c (fold_binary_loc): Remove x*x to pow(x,2.0)
25223 canonicalization.
25224
25225 2016-04-28 Oleg Endo <olegendo@gcc.gnu.org>
25226
25227 * common/config/sh/sh-common.c: Remove SH5 support.
25228 * config/sh/constraints.md: Likewise.
25229 * config/sh/config/sh/elf.h: Likewise.
25230 * config/sh/linux.h: Likewise.
25231 * config/sh/netbsd-elf.h: Likewise.
25232 * config/sh/predicates.md: Likewise.
25233 * config/sh/sh-c.c: Likewise.
25234 * config/sh/sh-protos.h: Likewise.
25235 * config/sh/sh.c: Likewise.
25236 * config/sh/sh.h: Likewise.
25237 * config/sh/sh.md: Likewise.
25238 * config/sh/sh.opt: Likewise.
25239 * config/sh/sync.md: Likewise.
25240 * config/sh/sh64.h: Delete.
25241 * config/sh/shmedia.h: Likewise.
25242 * config/sh/shmedia.md: Likewise.
25243 * config/sh/sshmedia.h: Likewise.
25244 * config/sh/t-netbsd-sh5-64: Likewise.
25245 * config/sh/t-sh64: Likewise.
25246 * config/sh/ushmedia.h: Likewise.
25247
25248 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
25249
25250 * config/i386/i386.md (sign_extend to memory peephole2s): Use
25251 general_reg_operand instead of register_operand predicate.
25252
25253 2016-04-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
25254
25255 * params.def (MIN_PARTITION_SIZE): Set default value to 10000.
25256
25257 2016-04-27 Marc Glisse <marc.glisse@inria.fr>
25258
25259 * match.pd (A - B > A, A + B < A): New transformations.
25260
25261 2016-04-27 Patrick Palka <ppalka@gcc.gnu.org>
25262
25263 * genattrtab.c (write_test_expr): New parameter EMIT_PARENS
25264 which defaults to true. Emit an outer pair of parentheses only if
25265 EMIT_PARENS. When continuing a chain of && or || (or & or |),
25266 don't emit parentheses for the right-hand operand.
25267
25268 2016-04-27 Jeff Law <law@redhat.com>
25269
25270 * tree-ssa-dom.c (record_temporary_equivalences): Fix typo in comment.
25271
25272 2016-04-27 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25273
25274 * config/rs6000/altivec.md (altivec_lvx_<mode>): Remove.
25275 (altivec_lvx_<mode>_internal): Document.
25276 (altivec_lvx_<mode>_2op): New define_insn.
25277 (altivec_lvx_<mode>_1op): Likewise.
25278 (altivec_lvx_<mode>_2op_si): Likewise.
25279 (altivec_lvx_<mode>_1op_si): Likewise.
25280 (altivec_stvx_<mode>): Remove.
25281 (altivec_stvx_<mode>_internal): Document.
25282 (altivec_stvx_<mode>_2op): New define_insn.
25283 (altivec_stvx_<mode>_1op): Likewise.
25284 (altivec_stvx_<mode>_2op_si): Likewise.
25285 (altivec_stvx_<mode>_1op_si): Likewise.
25286 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
25287 Expand vec_ld and vec_st during parsing.
25288 * config/rs6000/rs6000.c (altivec_expand_lvx_be): Commentary
25289 changes.
25290 (altivec_expand_stvx_be): Likewise.
25291 (altivec_expand_lv_builtin): Expand lvx built-ins to expose the
25292 address-masking behavior in RTL.
25293 (altivec_expand_stv_builtin): Expand stvx built-ins to expose the
25294 address-masking behavior in RTL.
25295 (altivec_expand_builtin): Change builtin code arguments for calls
25296 to altivec_expand_stv_builtin and altivec_expand_lv_builtin.
25297 (insn_is_swappable_p): Avoid incorrect swap optimization in the
25298 presence of lvx/stvx patterns.
25299 (alignment_with_canonical_addr): New function.
25300 (alignment_mask): Likewise.
25301 (find_alignment_op): Likewise.
25302 (recombine_lvx_pattern): Likewise.
25303 (recombine_stvx_pattern): Likewise.
25304 (recombine_lvx_stvx_patterns): Likewise.
25305 (rs6000_analyze_swaps): Perform a pre-pass to recognize lvx and
25306 stvx patterns from expand.
25307 * config/rs6000/vector.md (vector_altivec_load_<mode>): Use new
25308 expansions.
25309 (vector_altivec_store_<mode>): Likewise.
25310
25311 2016-04-26 Evandro Menezes <e.menezes@samsung.com>
25312
25313 * config/aarch64/aarch64.md
25314 (*movhf_aarch64): Add "movi %0, #0" to zero up register and
25315 remove the "fp" attributes.
25316 (*movsf_aarch64): Add "movi %0, #0" to zero up register and
25317 add the "simd" attributes.
25318 (*movdf_aarch64): Likewise.
25319 (*movtf_aarch64): Remove the "fp" attributes.
25320 * testsuite/gcc.target/aarch64/fmovf-zero-reg.c: Update accordingly.
25321 * testsuite/gcc.target/aarch64/fmovd-zero-reg.c: Likewise.
25322
25323 2016-04-27 David Malcolm <dmalcolm@redhat.com>
25324
25325 * emit-rtl.c (maybe_set_first_label_num): Strengthen param from
25326 rtx to rtx_code_label *.
25327 * rtl.h (maybe_set_first_label_num): Likewise.
25328
25329 2016-04-27 David Malcolm <dmalcolm@redhat.com>
25330
25331 * df-core.c (df_add_problem): Make the problem param be const.
25332 (df_remove_problem): Make local "problem" be const.
25333 * df-problems.c (problem_RD): Make const.
25334 (problem_LR): Likewise.
25335 (problem_LIVE): Likewise.
25336 (problem_MIR): Likewise.
25337 (problem_CHAIN): Likewise.
25338 (problem_WORD_LR): Likewise.
25339 (problem_NOTE): Likewise.
25340 (problem_MD): Likewise.
25341 * df-scan.c (problem_SCAN): Likewise.
25342 * df.h (struct df_problem): Make field "dependent_problem" be
25343 const.
25344 (struct dataflow): Likewise for field "problem".
25345 (df_add_problem): Make param const.
25346
25347 2016-04-27 Uros Bizjak <ubizjak@gmail.com>
25348
25349 * config/i386/i386.c (ix86_spill_class): Enable for TARGET_SSE2 when
25350 inter-unit moves to/from vector registers are enabled. Do not disable
25351 for TARGET_MMX.
25352
25353 2016-04-27 David Malcolm <dmalcolm@redhat.com>
25354
25355 * df.h (DF_SCAN, DF_LR, DF_LIVE, DF_RD, DF_CHAIN, DF_WORD_LR,
25356 DF_NOTE, DF_MD, DF_MIR, DF_LAST_PROBLEM_PLUS1): Convert from
25357 #define to...
25358 (enum df_problem_id): ...this new enum.
25359 (struct df_problem): Convert field "id" from "int" to
25360 enum df_problem_id.
25361
25362 2016-04-27 David Malcolm <dmalcolm@redhat.com>
25363
25364 * rtl.def: Update comment for "things in the instruction chain" to
25365 reflect the removal of the leading "i" field for INSN_UID in
25366 r210360. Fix bogus apostrophe.
25367
25368 2016-04-27 Uros Bizjak <ubizjak@gmail.com>
25369
25370 * config/i386/i386.md
25371 (lea arith with mem operand + setcc peephole2): Set operator mode.
25372
25373 2016-04-27 H.J. Lu <hongjiu.lu@intel.com>
25374
25375 PR target/70155
25376 * config/i386/i386.c (scalar_to_vector_candidate_p): Renamed to ...
25377 (dimode_scalar_to_vector_candidate_p): This.
25378 (timode_scalar_to_vector_candidate_p): New function.
25379 (scalar_to_vector_candidate_p): Likewise.
25380 (timode_check_non_convertible_regs): Likewise.
25381 (timode_remove_non_convertible_regs): Likewise.
25382 (remove_non_convertible_regs): Likewise.
25383 (remove_non_convertible_regs): Renamed to ...
25384 (dimode_remove_non_convertible_regs): This.
25385 (scalar_chain::~scalar_chain): Make it virtual.
25386 (scalar_chain::compute_convert_gain): Make it pure virtual.
25387 (scalar_chain::mark_dual_mode_def): Likewise.
25388 (scalar_chain::convert_insn): Likewise.
25389 (scalar_chain::convert_registers): Likewise.
25390 (scalar_chain::add_to_queue): Make it protected.
25391 (scalar_chain::emit_conversion_insns): Likewise.
25392 (scalar_chain::replace_with_subreg): Likewise.
25393 (scalar_chain::replace_with_subreg_in_insn): Likewise.
25394 (scalar_chain::convert_op): Likewise.
25395 (scalar_chain::convert_reg): Likewise.
25396 (scalar_chain::make_vector_copies): Likewise.
25397 (scalar_chain::convert_registers): New pure virtual function.
25398 (class dimode_scalar_chain): New class.
25399 (class timode_scalar_chain): Likewise.
25400 (scalar_chain::mark_dual_mode_def): Renamed to ...
25401 (dimode_scalar_chain::mark_dual_mode_def): This.
25402 (timode_scalar_chain::mark_dual_mode_def): New function.
25403 (timode_scalar_chain::convert_insn): Likewise.
25404 (dimode_scalar_chain::convert_registers): Likewise.
25405 (scalar_chain::compute_convert_gain): Renamed to ...
25406 (dimode_scalar_chain::compute_convert_gain): This.
25407 (scalar_chain::replace_with_subreg): Renamed to ...
25408 (dimode_scalar_chain::replace_with_subreg): This.
25409 (scalar_chain::replace_with_subreg_in_insn): Renamed to ...
25410 (dimode_scalar_chain::replace_with_subreg_in_insn): This.
25411 (scalar_chain::make_vector_copies): Renamed to ...
25412 (dimode_scalar_chain::make_vector_copies): This.
25413 (scalar_chain::convert_reg): Renamed to ...
25414 (dimode_scalar_chain::convert_reg ): This.
25415 (scalar_chain::convert_op): Renamed to ...
25416 (dimode_scalar_chain::convert_op): This.
25417 (scalar_chain::convert_insn): Renamed to ...
25418 (dimode_scalar_chain::convert_insn): This.
25419 (scalar_chain::convert): Call convert_registers.
25420 (convert_scalars_to_vector): Change to scalar_chain pointer to
25421 use timode_scalar_chain in 64-bit mode and dimode_scalar_chain
25422 in 32-bit mode. Delete scalar_chain pointer. Call
25423 free_dominance_info in 64-bit mode.
25424 (pass_stv::gate): Remove TARGET_64BIT check.
25425 (ix86_option_override): Put the 64-bit STV pass before the CSE
25426 pass.
25427
25428 2016-04-27 Pierre-Marie de Rodat <derodat@adacore.com>
25429
25430 * dwarf2out.h (struct dw_loc_descr_node): Remove the
25431 dw_loc_frame_offset field.
25432 * dwarf2out.c (new_loc_descr): Likewise.
25433 (resolve_args_picking_1): Turn the VISITED hash set into a
25434 FRAME_OFFSET hash map. Use it to associate a frame offset to
25435 visited nodes. Remove uses of the CHECKING_P macro.
25436 (resolve_args_picking): Update call to resolve_args_picking_1.
25437
25438 2016-04-27 Martin Liska <mliska@suse.cz>
25439
25440 * tree-ssa-loop-ivopts.c (iv_ca_dump): Fix level of indentation.
25441 (free_loop_data): Release vuses of groups.
25442
25443 2016-04-27 Bin Cheng <bin.cheng@arm.com>
25444
25445 * tree-ssa-loop-ivopts.c (struct iv): Use pointer to struct iv_use
25446 instead of redundant use_id and boolean have_use_for.
25447 (struct iv_use): Change sub_id into group_id. Remove field next.
25448 Move fields: related_cands, n_map_members, cost_map and selected
25449 to ...
25450 (struct iv_group): ... here. New structure.
25451 (struct iv_common_cand): Use structure declaration directly.
25452 (struct ivopts_data, iv_ca, iv_ca_delta): Rename fields.
25453 (MAX_CONSIDERED_USES): Rename macro to ...
25454 (MAX_CONSIDERED_GROUPS): ... here.
25455 (n_iv_uses, iv_use, n_iv_cands, iv_cand): Delete.
25456 (dump_iv, dump_use, dump_cand): Refactor format of dump information.
25457 (dump_uses): Rename to ...
25458 (dump_groups): ... here. Update all uses.
25459 (tree_ssa_iv_optimize_init, alloc_iv): Update all uses.
25460 (find_induction_variables): Refactor format of dump information.
25461 (record_sub_use): Delete.
25462 (record_use): Update all uses.
25463 (record_group): New function.
25464 (record_group_use, find_interesting_uses_op): Call above functions.
25465 Update all uses.
25466 (find_interesting_uses_cond): Ditto.
25467 (group_compare_offset): New function.
25468 (split_all_small_groups): Rename to ...
25469 (split_small_address_groups_p): ... here. Update all uses.
25470 (split_address_groups): Update all uses.
25471 (find_interesting_uses): Refactor format of dump information.
25472 (add_candidate_1): Update all uses. Remove redundant check on iv,
25473 base and step.
25474 (add_candidate, record_common_cand): Remove redundant assert.
25475 (add_iv_candidate_for_biv): Update use.
25476 (add_iv_candidate_derived_from_uses): Update all uses.
25477 (add_iv_candidate_for_groups, record_important_candidates): Ditto.
25478 (alloc_use_cost_map): Ditto.
25479 (set_use_iv_cost, get_use_iv_cost): Rename to ...
25480 (set_group_iv_cost, get_group_iv_cost): ... here. Update all uses.
25481 (determine_use_iv_cost_generic): Ditto.
25482 (determine_group_iv_cost_generic): Ditto.
25483 (determine_use_iv_cost_address): Ditto.
25484 (determine_group_iv_cost_address): Ditto.
25485 (determine_use_iv_cost_condition): Ditto.
25486 (determine_group_iv_cost_cond): Ditto.
25487 (determine_use_iv_cost): Ditto.
25488 (determine_group_iv_cost): Ditto.
25489 (set_autoinc_for_original_candidates): Update all uses.
25490 (find_iv_candidates): Update all uses. Refactor dump information.
25491 (determine_use_iv_costs): Ditto.
25492 (determine_iv_costs): Ditto.
25493 (iv_ca_cand_for_use): Rename to ...
25494 (iv_ca_cand_for_group): ... here. Update all uses.
25495 (iv_ca_add_use, iv_ca_add_group): Ditto.
25496 (iv_ca_set_cp, iv_ca_cost, iv_ca_delta_add): Update all uses.
25497 (iv_ca_delta_join, iv_ca_delta_reverse, iv_ca_delta_free): Ditto.
25498 (iv_ca_new, iv_ca_dump, iv_ca_extend, iv_ca_narrow): Ditto.
25499 (iv_ca_prune, cheaper_cost_with_cand, iv_ca_replace): Ditto.
25500 (try_add_cand_for, try_improve_iv_set, find_optimal_iv_set): Ditto.
25501 (create_new_iv, adjust_iv_update_pos): Ditto.
25502 (rewrite_use_address): Delete.
25503 (rewrite_use_address_1): Rename to ...
25504 (rewrite_use_address): ... here.
25505 (rewrite_use_compare): Update all uses.
25506 (rewrite_use): Delete.
25507 (rewrite_uses): Rename to ...
25508 (rewrite_groups): ... here. Update all uses.
25509 (remove_unused_ivs, free_loop_data): Update all uses.
25510 (tree_ssa_iv_optimize_finalize, tree_ssa_iv_optimize_loop): Ditto.
25511
25512 2016-04-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25513
25514 * rtlanal.c (nonzero_bits1): Convert preprocessor check
25515 for WORD_REGISTER_OPERATIONS to runtime check.
25516
25517 2016-04-27 Richard Biener <rguenther@suse.de>
25518
25519 PR ipa/70760
25520 * tree-ssa-structalias.c (find_func_aliases_for_call): Use
25521 aggregate_value_p to determine if a function result is
25522 returned by reference.
25523 (ipa_pta_execute): Functions having their address taken are
25524 not automatically nonlocal.
25525
25526 2016-04-27 Jakub Jelinek <jakub@redhat.com>
25527
25528 PR sanitizer/70683
25529 * tree-core.h (enum operand_equal_flag): Add OEP_NO_HASH_CHECK.
25530 * fold-const.c (operand_equal_p): If flag_checking and
25531 OEP_NO_HASH_CHECK is not set in flag, recurse with OEP_NO_HASH_CHECK
25532 and if it returns non-zero, assert iterative_hash_expr on both
25533 args is the same.
25534
25535 2016-04-27 Bernd Schmidt <bschmidt@redhat.com>
25536
25537 * doc/invoke.texi (-frename-registers): Also enabled at -Os.
25538
25539 2016-04-27 Nick Clifton <nickc@redhat.com>
25540
25541 PR middle-end/49889
25542 * varasm.c (merge_weak): Generate an error if an attempt is made
25543 to convert a non-weak static function into a weak, public function.
25544
25545 2016-04-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
25546
25547 * params.def (MAX_PARTITION_SIZE): New param.
25548 * doc/invoke.texi: Document lto-max-partition.
25549
25550 2016-04-27 Richard Biener <rguenther@suse.de>
25551
25552 PR ipa/70785
25553 * tree-ssa-structalias.c (refered_from_nonlocal_fn): New
25554 function cummulating used_from_other_partition, externally_visible
25555 and force_output from aliases.
25556 (refered_from_nonlocal_var): Likewise.
25557 (ipa_pta_execute): Use call_for_symbol_and_aliases to cummulate
25558 node flags properly.
25559
25560 2016-04-27 Bernd Schmidt <bschmidt@redhat.com>
25561
25562 * doc/invoke.texi (Warning Options): Add -Wmemset-elt-size.
25563 (-Wmemset-elt-size): New item.
25564
25565 2016-04-27 Eric Botcazou <ebotcazou@adacore.com>
25566
25567 PR ada/70759
25568 * stor-layout.h (internal_reference_types): Delete.
25569 * stor-layout.c (reference_types_internal): Likewise.
25570 (internal_reference_types): Likewise.
25571 (layout_type) <REFERENCE_TYPE>: Adjust.
25572
25573 2016-04-27 Jakub Jelinek <jakub@redhat.com>
25574
25575 PR sanitizer/70683
25576 * tree.h (inchash::add_expr): Add FLAGS argument.
25577 * tree.c (inchash::add_expr): Likewise. If not OEP_ADDRESS_OF,
25578 use STRIP_NOPS first. For INTEGER_CST assert not OEP_ADDRESS_OF.
25579 For REAL_CST and !HONOR_SIGNED_ZEROS (t) hash +/- 0 the same.
25580 Formatting fix. Adjust recursive calls. For tcc_comparison,
25581 if swap_tree_comparison (code) is smaller than code, hash that
25582 and arguments in the other order. Hash CONVERT_EXPR the same
25583 as NOP_EXPR. For OEP_ADDRESS_OF hash MEM_REF with 0 offset
25584 of ADDR_EXPR of decl as the decl itself. Add or remove
25585 OEP_ADDRESS_OF from recursive flags as needed. For
25586 FMA_EXPR, WIDEN_MULT_{PLUS,MINUS}_EXPR hash the first two
25587 operands commutatively and only the third one normally.
25588 For internal CALL_EXPR hash in CALL_EXPR_IFN.
25589
25590 2016-04-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
25591
25592 * config/rtems.h (LIB_SPEC): Add -latomic.
25593
25594 2016-04-27 Joel Sherrill <joel@rtems.org>
25595
25596 * config/microblaze/rtems.h: Redefine LINK_SPEC to avoid
25597 xilink.ld and flags not relevant to RTEMS.
25598
25599 2016-04-26 Zhouyi Zhou <yizhouzhou@ict.ac.cn>
25600
25601 * toplev.c (backend_init_target): Avoid calling init_reload when using
25602 LRA.
25603
25604 2016-04-26 Jakub Jelinek <jakub@redhat.com>
25605
25606 * reorg.c (try_merge_delay_insns): Declare i and j inside the
25607 for loops rather than one for the whole function.
25608
25609 2016-04-26 Marc Glisse <marc.glisse@inria.fr>
25610
25611 * match.pd (X + CST CMP X): New transformation.
25612
25613 2016-04-26 Marc Glisse <marc.glisse@inria.fr>
25614
25615 * genmatch.c (write_predicate): Add ATTRIBUTE_UNUSED.
25616 * fold-const.c (fold_binary_loc): Remove 2 transformations
25617 superseded by match.pd.
25618 * match.pd (x+x -> x*2): Generalize to integers.
25619
25620 2016-04-26 Bernd Schmidt <bschmidt@redhat.com>
25621
25622 * config/i386/i386.md (operation on memory peephole): Duplicate an
25623 existing peephole and adapt it to match lea rather than an operation
25624 that clobbers CC.
25625
25626 PR rtl-optimization/57193
25627 * opts.c (default_options_table): Add OPT_frename_registers at -O2
25628 and above.
25629 * doc/invoke.texi (-frename-registers, -O2): Update documentation.
25630
25631 2016-04-26 Bin Cheng <bin.cheng@arm.com>
25632
25633 * tree-if-conv.c (any_pred_load_store): New static variable.
25634 (if_convertible_gimple_assign_stmt_p): Remove parameter. Use
25635 any_pred_load_store instead of and_mask_load_store.
25636 (if_convertible_stmt_p, if_convertible_loop_p_1): Ditto.
25637 (if_convertible_loop_p, insert_gimplified_predicates): Ditto.
25638 (combine_blocks, tree_if_conversion): Ditto.
25639
25640 2016-04-26 Bin Cheng <bin.cheng@arm.com>
25641
25642 PR tree-optimization/70771
25643 PR tree-optimization/70775
25644 * tree-if-conv.c (if_convertible_phi_p): Remove check on special
25645 virtual PHI nodes. Delete parameter.
25646 (if_convertible_loop_p_1): Delete argument to above function.
25647 (predicate_all_scalar_phis): Delete code handling single-argument
25648 PHIs.
25649 (tree_if_conversion): Mark and update virtual SSA.
25650
25651 2016-04-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
25652
25653 PR target/61821
25654 * config/i386/i386.c (LARGECOMM_SECTION_ASM_OP): Define default.
25655 (x86_elf_aligned_common): Rename to ...
25656 (x86_elf_aligned_decl_common): ... this.
25657 Add decl arg. Switch to .lbss for largecomm object. Use
25658 LARGECOMM_SECTION_ASM_OP.
25659 * config/i386/i386-protos.h (x86_elf_aligned_common): Reflect
25660 renaming.
25661 * config/i386/x86-64.h (ASM_OUTPUT_ALIGNED_COMMON): Rename to ...
25662 (ASM_OUTPUT_ALIGNED_DECL_COMMON): ... this.
25663 Pass new decl arg.
25664 * config/i386/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
25665 [!USE_GAS] (LARGECOMM_SECTION_ASM_OP): Define.
25666
25667 2016-04-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
25668
25669 PR target/59407
25670 * config/i386/i386.c (SECTION_LARGE): Define.
25671 (x86_64_elf_select_section): Set it for large data/bss sections.
25672 Only clear SECTION_WRITE for .lrodata.
25673 (x86_64_elf_section_type_flags): Set SECTION_LARGE for large
25674 data/bss sections.
25675 * config/i386/sol2.h (MACH_DEP_SECTION_ASM_FLAG): Define.
25676 * varasm.c (default_elf_asm_named_section): Grow flagchars.
25677 [MACH_DEP_SECTION_ASM_FLAG] Emit MACH_DEP_SECTION_ASM_FLAG for
25678 SECTION_MACH_DEP.
25679 * doc/tm.texi.in (Sections, MACH_DEP_SECTION_ASM_FLAG): Describe.
25680 * doc/tm.texi: Regenerate.
25681
25682 2016-04-26 Jakub Jelinek <jakub@redhat.com>
25683
25684 PR bootstrap/70704
25685 * configure.ac (--enable-checking): Document extra flag, for
25686 non-release builds default to --enable-checking=yes,extra.
25687 If misc checking and extra checking, define CHECKING_P to 2 instead
25688 of 1.
25689 * common.opt (fchecking=): Add.
25690 * doc/invoke.texi (-fchecking=): Document.
25691 * doc/install.texi: Document --enable-checking changes.
25692 * configure: Regenerated.
25693 * config.in: Regenerated.
25694
25695 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
25696
25697 * config/i386/i386.md (*movxi_internal_avx512f): Use insn type
25698 attribute instead of which_alternative.
25699 * config/i386/sse.md (*mov<mode>_internal): Ditto.
25700 Use EXT_REX_SSE_REG_P where appropriate.
25701
25702 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
25703
25704 * config/i386/predicates.md (const0_operand): Do not match
25705 const_wide_int code.
25706 (const1_operand): Ditto.
25707
25708 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
25709
25710 * config/i386/i386.md (*movoi_internal_avx): Set mode attribute to XI
25711 for SSE constm1 operands and TARGET_AVX512VL.
25712 (*movti_internal): Ditto.
25713 (*mov<mode>_or): Use constm1_operand predicate.
25714 * config/i386/sse.md (*mov<mode>_internal): Set mode attribute to XI
25715 for SSE vector_all_ones operands and TARGET_AVX512VL.
25716 * config/i386/predicates.md (constm1_operand): New predicate.
25717 * config/i386/i386.c (standard_sse_constant_opcode): Simplify
25718 emission of constant -1 load.
25719
25720 2016-04-25 Jason Merrill <jason@redhat.com>
25721
25722 * gdbinit.in: Skip is-a.h.
25723
25724 * attribs.c (register_scoped_attributes): Fix logic.
25725 * attribs.h: Declare register_scoped_attributes.
25726
25727 2016-04-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25728
25729 * config/rs6000/rs6000-builtin.def: Correct pasto error for
25730 stxvd2x and stxvw4x built-in functions.
25731
25732 2016-04-25 DJ Delorie <dj@redhat.com>
25733
25734 * config/msp430/msp430.md (ashlhi3): Optimize one bit shifts.
25735 (ashrhi3): Likewise.
25736 (lshrhi3): Likewise.
25737
25738 2016-04-25 Richard Biener <rguenther@suse.de>
25739
25740 PR tree-optimization/70780
25741 * tree-ssa-pre.c (compute_antic_aux): Also return true if the block
25742 wasn't visited yet.
25743 (compute_antic): Mark blocks with abnormal preds as visited as
25744 they have a final empty antic-in solution already.
25745
25746 2016-04-25 Michael Collison <michael.collison@linaro.org>
25747
25748 * ChangeLog(2016-04-25): Fix ChangeLog formatting.
25749
25750 2016-04-25 Michael Collison <michael.collison@linaro.org>
25751
25752 * config/arm/neon.md (widen_<us>sum<mode>): New patterns where
25753 mode is VQI to improve mixed mode vectorization.
25754 * config/arm/neon.md (vec_sel_widen_ssum_lo<VQI:mode><VW:mode>3): New
25755 define_insn to match low half of signed vaddw.
25756 * config/arm/neon.md (vec_sel_widen_ssum_hi<VQI:mode><VW:mode>3): New
25757 define_insn to match high half of signed vaddw.
25758 * config/arm/neon.md (vec_sel_widen_usum_lo<VQI:mode><VW:mode>3): New
25759 define_insn to match low half of unsigned vaddw.
25760 * config/arm/neon.md (vec_sel_widen_usum_hi<VQI:mode><VW:mode>3): New
25761 define_insn to match high half of unsigned vaddw.
25762 * config/arm/arm.c (arm_simd_vect_par_cnst_half): New function.
25763 (arm_simd_check_vect_par_cnst_half_p): Likewise.
25764 * config/arm/arm-protos.h (arm_simd_vect_par_cnst_half): Prototype
25765 for new function.
25766 (arm_simd_check_vect_par_cnst_half_p): Likewise.
25767 * config/arm/predicates.md (vect_par_constant_high): Support
25768 big endian and simplify by calling
25769 arm_simd_check_vect_par_cnst_half
25770 (vect_par_constant_low): Likewise.
25771
25772 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
25773
25774 * config/i386/i386.md (*lea<mode>_general_4): Use const_0_to_3_operand
25775 predicate for operand 2.
25776
25777 2016-04-24 Uros Bizjak <ubizjak@gmail.com>
25778 H.J. Lu <hongjiu.lu@intel.com>
25779
25780 * config/i386/i386-protos.h (standard_sse_constant_p): Add
25781 machine_mode argument.
25782 * config/i386/i386.c (standard_sse_constant_p): Return 2 for
25783 constm1_rtx operands. For VOIDmode constants, get mode from
25784 pred_mode. Check mode size if the mode is supported by ABI.
25785 (standard_sse_constant_opcode): Do not use standard_constant_p.
25786 Strictly check ABI support for all-ones operands.
25787 (ix86_legitimate_constant_p): Handle TImode, OImode and XImode
25788 immediates. Update calls to standard_sse_constant_p.
25789 (ix86_expand_vector_move): Update calls to standard_sse_constant_p.
25790 (ix86_rtx_costs): Ditto.
25791 * config/i386/i386.md (*movxi_internal_avx512f): Use
25792 nonimmediate_or_sse_const_operand instead of vector_move_operand.
25793 Use (v,BC) alternative instead of (v,C). Use register_operand
25794 checks instead of MEM_P.
25795 (*movoi_internal_avx): Use nonimmediate_or_sse_const_operand instead
25796 of vector_move_operand. Add (v,BC) alternative and corresponding avx2
25797 isa attribute. Use register_operand checks instead of MEM_P.
25798 (*movti_internal): Use nonimmediate_or_sse_const_operand for
25799 TARGET_SSE. Improve TARGET_SSE insn constraint. Add (v,BC)
25800 alternative and corresponding sse2 isa attribute.
25801 (*movtf_internal, *movdf_internal, *movsf_interal): Update calls
25802 to standard_sse_constant_p.
25803 (FP constant splitters): Ditto.
25804 * config/i386/constraints.md (BC): Do not use standard_sse_constant_p.
25805 (C): Ditto.
25806 * config/i386/predicates.md (constm1_operand): Remove.
25807 (nonimmediate_or_sse_const_operand): Rewrite using RTX.
25808 * config/i386/sse.md (*<avx512>_cvtmask2<ssemodesuffix><mode>): Use
25809 vector_all_ones_operand instead of constm1_operand.
25810
25811 2016-04-24 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
25812
25813 * print-rtl.c (print_rtx_insn_vec): New function.
25814 * print-rtl.h: New prototype.
25815 * store-motion.c (struct st_expr): Make avail_stores a vector.
25816 (st_expr_entry): Adjust.
25817 (free_st_expr_entry): Likewise.
25818 (print_store_motion_mems): Likewise.
25819 (find_moveable_store): Likewise.
25820 (compute_store_table): Likewise.
25821 (delete_store): Likewise.
25822 (build_store_vectors): Likewise.
25823
25824 2016-04-24 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
25825
25826 * reorg.c (try_merge_delay_insns): Make merged_insns a vector.
25827
25828 2016-04-24 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
25829
25830 * vec.h (vec_safe_contains): New function.
25831 (vec::contains): Likewise.
25832 (vec::begin): Likewise.
25833 (vec::end): Likewise.
25834
25835 2016-04-23 Jakub Jelinek <jakub@redhat.com>
25836
25837 PR sanitizer/70712
25838 * cfgexpand.c (expand_stack_vars): Fix typo.
25839
25840 2016-04-22 Szabolcs Nagy <szabolcs.nagy@arm.com>
25841
25842 * system.h (list, map, set, vector): Include conditionally.
25843 * auto-profile.c (INCLUDE_MAP, INCLUDE_SET): Define.
25844 * graphite-isl-ast-to-gimple.c (INCLUDE_MAP): Define.
25845 * ipa-icf.c (INCLUDE_LIST): Define.
25846 * config/aarch64/cortex-a57-fma-steering.c (INCLUDE_LIST): Define.
25847 * config/sh/sh.c (INCLUDE_VECTOR): Define.
25848 * config/sh/sh_treg_combine.cc (INCLUDE_ALGORITHM): Define.
25849 (INCLUDE_LIST, INCLUDE_VECTOR): Define.
25850 * cp/logic.cc (INCLUDE_LIST): Define.
25851 * fortran/trans-common.c (INCLUDE_MAP): Define.
25852
25853 2016-04-22 Szabolcs Nagy <szabolcs.nagy@arm.com>
25854
25855 * auto-profile.c: Remove <string.h> include.
25856 * ipa-icf-gimple.c: Remove <list> include.
25857 * diagnostic.c: Remove <new> include.
25858 * genmatch.c: Likewise.
25859 * pretty-print.c: Likewise.
25860 * toplev.c: Likewise
25861 * c/c-objc-common.c: Likewise.
25862 * cp/error.c: Likewise.
25863 * fortran/error.c: Likewise.
25864
25865 2016-04-22 Richard Biener <rguenther@suse.de>
25866
25867 * lto-streamer-in.c (input_ssa_names): Do not allocate
25868 GIMPLE_NOP for all SSA names.
25869 * lto-streamer-out.c (output_ssa_names): Do not output
25870 SSA names that should have been released.
25871
25872 2016-04-22 Richard Biener <rguenther@suse.de>
25873
25874 PR tree-optimization/70740
25875 * tree-ssa-phiprop.c (propagate_with_phi): Handle inserted
25876 VDEF.
25877
25878 2016-04-21 H.J. Lu <hongjiu.lu@intel.com>
25879
25880 PR target/70750
25881 * config/i386/predicates.md (call_insn_operand): Replace
25882 sibcall_memory_operand with memory_operand.
25883
25884 2016-04-21 Patrick Palka <ppalka@gcc.gnu.org>
25885
25886 * tree-vrp.c (register_edge_assert_for_2): Remove redundant
25887 has_single_use() tests.
25888 (register_edge_assert_for_1): Likewise.
25889 (find_assert_locations_1): Check the liveness bitmap instead of
25890 checking has_single_use().
25891
25892 2016-04-21 Kirill Yukhin <kirill.yukhin@intel.com>
25893
25894 PR target/70728
25895 * config/i386/sse.md (define_insn "<shift_insn><mode>3<mask_name>"):
25896 Extract AVX-512BW constraint from AVX.
25897
25898 2016-04-21 Richard Biener <rguenther@suse.de>
25899
25900 PR tree-optimization/70725
25901 * tree-if-conv.c (if_convertible_phi_p): Adjust guard
25902 for phi_convertible_by_degenerating_args.
25903 (predicate_all_scalar_phis): Handle single-argument PHIs.
25904
25905 2016-04-21 Richard Biener <rguenther@suse.de>
25906
25907 PR middle-end/70747
25908 * fold-const.c (fold_comparison): Return properly typed
25909 constant boolean.
25910
25911 2016-04-21 Bin Cheng <bin.cheng@arm.com>
25912
25913 PR tree-optimization/70715
25914 * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
25915 after expanding BASE using expand_simple_operations.
25916
25917 2016-04-21 Marc Glisse <marc.glisse@inria.fr>
25918
25919 * match.pd (min(-x, -y), max(-x, -y), min(~x, ~y), max(~x, ~y)):
25920 New transformations.
25921
25922 2016-04-21 Marc Glisse <marc.glisse@inria.fr>
25923
25924 * match.pd (min(int_max, x), max(int_min, x)): New transformations.
25925
25926 2016-04-20 Jan Hubicka <jh@suse.cz>
25927
25928 * ipa-inline.c (can_inline_edge_p): Pass caller info to
25929 ultiimate_alias_target.
25930 (update_callee_keys): Likewise.
25931 (lookup_recursive_calls): Likewise.
25932 (speculation_useful_p): Likewise.
25933
25934 2016-04-20 Jan Hubicka <jh@suse.cz>
25935
25936 PR ipa/70018
25937 * cgraph.c (cgraph_set_nothrow_flag_1): Rename to ...
25938 (set_nothrow_flag_1): ... this; handle interposition correctly;
25939 recurse on aliases and thunks.
25940 (cgraph_node::set_nothrow_flag): New.
25941 * ipa-pure-const.c (ignore_edge_for_nothrow): Ignore calls to
25942 functions compiled with non-call exceptions that binds to current
25943 def.
25944 (propagate_nothrow): Be safe WRT interposition.
25945 * cgraph.h (set_nothrow_flag): Update prototype.
25946
25947 2016-04-18 Jan Hubicka <jh@suse.cz>
25948
25949 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
25950 max_loop_iterations_int.
25951 (tree_unswitch_outer_loop): Likewise.
25952
25953 2016-04-20 Bin Cheng <bin.cheng@arm.com>
25954
25955 PR tree-optimization/69489
25956 * tree-if-conv.c (phi_convertible_by_degenerating_args): New.
25957 (if_convertible_phi_p): Call phi_convertible_by_degenerating_args.
25958 Revise dump message.
25959 (if_convertible_bb_p): Remove check on edge count of basic block's
25960 predecessors.
25961
25962 2016-04-20 Bin Cheng <bin.cheng@arm.com>
25963
25964 PR tree-optimization/56625
25965 PR tree-optimization/69489
25966 * tree-data-ref.h (DR_INNERMOST): New macro.
25967 * tree-if-conv.c (innermost_loop_behavior_hash): New class for
25968 hashing struct innermost_loop_behavior.
25969 (ref_DR_map): Remove.
25970 (innermost_DR_map): New map.
25971 (baseref_DR_map): Revise comment.
25972 (hash_memrefs_baserefs_and_store_DRs_read_written_info): Store DR
25973 to innermost_DR_map accroding to its innermost loop behavior.
25974 (ifcvt_memrefs_wont_trap): Get DR from innermost_DR_map according
25975 to its innermost loop behavior.
25976 (if_convertible_loop_p_1): Remove intialization for ref_DR_map.
25977 Add initialization for innermost_DR_map. Record memory reference
25978 in DR_BASE_ADDRESS if the reference is compound one or it doesn't
25979 have innermost loop behavior.
25980 (if_convertible_loop_p): Remove release for ref_DR_map. Release
25981 innermost_DR_map.
25982
25983 2016-04-20 Uros Bizjak <ubizjak@gmail.com>
25984
25985 * config/i386/i386.md (*lea<mode>_general_1): Rename from
25986 *lea_general_1. Use explicit SWI12 mode interator.
25987 (*lea<mode>_general_2): Rename from *lea_general_2.
25988 Use explicit SWI12 mode interator.
25989 (*lea<mode>_general_3): Rename from *lea_general_3.
25990 Use explicit SWI12 mode interator.
25991 (*lea<SWI12:mode>_general_4): Split from *lea_general_4.
25992 Use explicit SWI12 mode interator.
25993 (*lea<SWI48:mode>_general_4): Split from *lea_general_4.
25994 Use explicit SWI48 mode interator.
25995
25996 2016-04-20 H.J. Lu <hongjiu.lu@intel.com>
25997
25998 * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
25999 Short-cut unaligned load and store cases. Handle all integer
26000 vector modes.
26001 (ix86_expand_vector_move_misalign): Short-cut unaligned load
26002 and store cases. Call ix86_avx256_split_vector_move_misalign
26003 directly without checking mode class.
26004
26005 2016-04-20 Andrew Pinski <apinski@cavium.com>
26006 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26007
26008 PR target/64971
26009 * config/aarch64/aarch64.md (sibcall): Force call
26010 address to be DImode for ILP32.
26011 (sibcall_value): Likewise.
26012
26013 2016-04-20 H.J. Lu <hongjiu.lu@intel.com>
26014
26015 * doc/invoke.texi: Replace -skip-rax-setup with -mskip-rax-setup.
26016
26017 2016-04-20 Richard Biener <rguenther@suse.de>
26018
26019 * gimple-match.h (maybe_build_generic_op): Adjust prototype.
26020 * gimple-match-head.c (maybe_build_generic_op): Pass all ops
26021 by reference, clear op1 and op2 when GENERICizing BIT_FIELD_REF.
26022 (maybe_push_res_to_seq): Adjust.
26023 * gimple-fold.c (maybe_build_generic_op): Likewise.
26024
26025 2016-04-20 Marek Polacek <polacek@redhat.com>
26026
26027 * tree-if-conv.c (is_false_predicate): For NULL_TREE return false
26028 rather than true.
26029
26030 2016-04-20 Ilya Enkovich <ilya.enkovich@intel.com>
26031
26032 * config/i386/sse.md (vec_unpacks_lo_hi): Always
26033 use kmovw to support AVX512F target.
26034
26035 2016-04-20 Bin Cheng <bin.cheng@arm.com>
26036
26037 * tree-scalar-evolution.c (interpret_rhs_expr): Handle BIT_AND_EXPR.
26038
26039 2016-04-20 Marek Polacek <polacek@redhat.com>
26040
26041 PR tree-optimization/70725
26042 * tree-if-conv.c (is_false_predicate): New function.
26043 (predicate_mem_writes): Use it.
26044
26045 2016-04-20 Richard Biener <rguenther@suse.de>
26046
26047 PR tree-optimization/70726
26048 * tree-vect-stmts.c (vectorizable_shift): Do not use scalar
26049 shift amounts from a pattern stmt operand.
26050
26051 2016-04-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
26052
26053 PR target/70674
26054 * config/s390/s390.c (s390_restore_gprs_from_fprs): Pick the new
26055 stack_restore_from_fpr pattern when restoring r15.
26056 (s390_optimize_prologue): Strip away the memory barrier in the
26057 parallel when trying to get rid of restore insns.
26058 * config/s390/s390.md ("stack_restore_from_fpr"): New insn
26059 definition for loading the stack pointer from an FPR. Compared to
26060 the normal move insn this pattern includes a full memory barrier.
26061
26062 2016-04-19 Jakub Jelinek <jakub@redhat.com>
26063
26064 PR middle-end/70680
26065 * gimplify.c (gimplify_omp_for): Call omp_notice_variable for
26066 implicitly linear or lastprivate iterator on the outer context.
26067
26068 2016-04-19 H.J. Lu <hongjiu.lu@intel.com>
26069
26070 * config/i386/i386.c (ix86_legitimate_combined_insn): Remove
26071 alignment check.
26072 * config/i386/i386.md (ssememalign): Removed.
26073 * config/i386/sse.md: Remove ssememalign attribute from patterns.
26074
26075 2016-04-19 H.J. Lu <hongjiu.lu@intel.com>
26076
26077 PR target/69201
26078 * config/i386/avx512bwintrin.h (_mm512_mask_loadu_epi16): Pass
26079 const short * to __builtin_ia32_loaddquhi512_mask.
26080 (_mm512_maskz_loadu_epi16): Likewise.
26081 (_mm512_mask_storeu_epi16): Pass short * to
26082 __builtin_ia32_storedquhi512_mask.
26083 (_mm512_mask_loadu_epi8): Pass const char * to
26084 __builtin_ia32_loaddquqi512_mask.
26085 (_mm512_maskz_loadu_epi8): Likewise.
26086 (_mm512_mask_storeu_epi8): Pass char * to
26087 __builtin_ia32_storedquqi512_mask.
26088 * config/i386/avx512fintrin.h (_mm512_loadu_pd): Pass
26089 const double * to __builtin_ia32_loadupd512_mask.
26090 (_mm512_mask_loadu_pd): Likewise.
26091 (_mm512_maskz_loadu_pd): Likewise.
26092 (_mm512_storeu_pd): Pass double * to
26093 __builtin_ia32_storeupd512_mask.
26094 (_mm512_mask_storeu_pd): Likewise.
26095 (_mm512_loadu_ps): Pass const float * to
26096 __builtin_ia32_loadups512_mask.
26097 (_mm512_mask_loadu_ps): Likewise.
26098 (_mm512_maskz_loadu_ps): Likewise.
26099 (_mm512_storeu_ps): Pass float * to
26100 __builtin_ia32_storeups512_mask.
26101 (_mm512_mask_storeu_ps): Likewise.
26102 (_mm512_mask_loadu_epi64): Pass const long long * to
26103 __builtin_ia32_loaddqudi512_mask.
26104 (_mm512_maskz_loadu_epi64): Likewise.
26105 (_mm512_mask_storeu_epi64): Pass long long *
26106 to __builtin_ia32_storedqudi512_mask.
26107 (_mm512_loadu_si512): Pass const int * to
26108 __builtin_ia32_loaddqusi512_mask.
26109 (_mm512_mask_loadu_epi32): Likewise.
26110 (_mm512_maskz_loadu_epi32): Likewise.
26111 (_mm512_storeu_si512): Pass int * to
26112 __builtin_ia32_storedqusi512_mask.
26113 (_mm512_mask_storeu_epi32): Likewise.
26114 * config/i386/avx512vlbwintrin.h (_mm256_mask_storeu_epi8): Pass
26115 char * to __builtin_ia32_storedquqi256_mask.
26116 (_mm_mask_storeu_epi8): Likewise.
26117 (_mm256_mask_loadu_epi16): Pass const short * to
26118 __builtin_ia32_loaddquhi256_mask.
26119 (_mm256_maskz_loadu_epi16): Likewise.
26120 (_mm_mask_loadu_epi16): Pass const short * to
26121 __builtin_ia32_loaddquhi128_mask.
26122 (_mm_maskz_loadu_epi16): Likewise.
26123 (_mm256_mask_loadu_epi8): Pass const char * to
26124 __builtin_ia32_loaddquqi256_mask.
26125 (_mm256_maskz_loadu_epi8): Likewise.
26126 (_mm_mask_loadu_epi8): Pass const char * to
26127 __builtin_ia32_loaddquqi128_mask.
26128 (_mm_maskz_loadu_epi8): Likewise.
26129 (_mm256_mask_storeu_epi16): Pass short * to.
26130 __builtin_ia32_storedquhi256_mask.
26131 (_mm_mask_storeu_epi16): Pass short * to.
26132 __builtin_ia32_storedquhi128_mask.
26133 * config/i386/avx512vlintrin.h (_mm256_mask_loadu_pd): Pass
26134 const double * to __builtin_ia32_loadupd256_mask.
26135 (_mm256_maskz_loadu_pd): Likewise.
26136 (_mm_mask_loadu_pd): Pass onst double * to
26137 __builtin_ia32_loadupd128_mask.
26138 (_mm_maskz_loadu_pd): Likewise.
26139 (_mm256_mask_storeu_pd): Pass double * to
26140 __builtin_ia32_storeupd256_mask.
26141 (_mm_mask_storeu_pd): Pass double * to
26142 __builtin_ia32_storeupd128_mask.
26143 (_mm256_mask_loadu_ps): Pass const float * to
26144 __builtin_ia32_loadups256_mask.
26145 (_mm256_maskz_loadu_ps): Likewise.
26146 (_mm_mask_loadu_ps): Pass const float * to
26147 __builtin_ia32_loadups128_mask.
26148 (_mm_maskz_loadu_ps): Likewise.
26149 (_mm256_mask_storeu_ps): Pass float * to
26150 __builtin_ia32_storeups256_mask.
26151 (_mm_mask_storeu_ps): ass float * to
26152 __builtin_ia32_storeups128_mask.
26153 (_mm256_mask_loadu_epi64): Pass const long long * to
26154 __builtin_ia32_loaddqudi256_mask.
26155 (_mm256_maskz_loadu_epi64): Likewise.
26156 (_mm_mask_loadu_epi64): Pass const long long * to
26157 __builtin_ia32_loaddqudi128_mask.
26158 (_mm_maskz_loadu_epi64): Likewise.
26159 (_mm256_mask_storeu_epi64): Pass long long * to
26160 __builtin_ia32_storedqudi256_mask.
26161 (_mm_mask_storeu_epi64): Pass long long * to
26162 __builtin_ia32_storedqudi128_mask.
26163 (_mm256_mask_loadu_epi32): Pass const int * to
26164 __builtin_ia32_loaddqusi256_mask.
26165 (_mm256_maskz_loadu_epi32): Likewise.
26166 (_mm_mask_loadu_epi32): Pass const int * to
26167 __builtin_ia32_loaddqusi128_mask.
26168 (_mm_maskz_loadu_epi32): Likewise.
26169 (_mm256_mask_storeu_epi32): Pass int * to
26170 __builtin_ia32_storedqusi256_mask.
26171 (_mm_mask_storeu_epi32): Pass int * to
26172 __builtin_ia32_storedqusi128_mask.
26173 * config/i386/i386-builtin-types.def (PCSHORT): New.
26174 (PINT64): Likewise.
26175 (V64QI_FTYPE_PCCHAR_V64QI_UDI): Likewise.
26176 (V32HI_FTYPE_PCSHORT_V32HI_USI): Likewise.
26177 (V32QI_FTYPE_PCCHAR_V32QI_USI): Likewise.
26178 (V16SF_FTYPE_PCFLOAT_V16SF_UHI): Likewise.
26179 (V8DF_FTYPE_PCDOUBLE_V8DF_UQI): Likewise.
26180 (V16SI_FTYPE_PCINT_V16SI_UHI): Likewise.
26181 (V16HI_FTYPE_PCSHORT_V16HI_UHI): Likewise.
26182 (V16QI_FTYPE_PCCHAR_V16QI_UHI): Likewise.
26183 (V8SF_FTYPE_PCFLOAT_V8SF_UQI): Likewise.
26184 (V8DI_FTYPE_PCINT64_V8DI_UQI): Likewise.
26185 (V8SI_FTYPE_PCINT_V8SI_UQI): Likewise.
26186 (V8HI_FTYPE_PCSHORT_V8HI_UQI): Likewise.
26187 (V4DF_FTYPE_PCDOUBLE_V4DF_UQI): Likewise.
26188 (V4SF_FTYPE_PCFLOAT_V4SF_UQI): Likewise.
26189 (V4DI_FTYPE_PCINT64_V4DI_UQI): Likewise.
26190 (V4SI_FTYPE_PCINT_V4SI_UQI): Likewise.
26191 (V2DF_FTYPE_PCDOUBLE_V2DF_UQI): Likewise.
26192 (V2DI_FTYPE_PCINT64_V2DI_UQI): Likewise.
26193 (VOID_FTYPE_PDOUBLE_V8DF_UQI): Likewise.
26194 (VOID_FTYPE_PDOUBLE_V4DF_UQI): Likewise.
26195 (VOID_FTYPE_PDOUBLE_V2DF_UQI): Likewise.
26196 (VOID_FTYPE_PFLOAT_V16SF_UHI): Likewise.
26197 (VOID_FTYPE_PFLOAT_V8SF_UQI): Likewise.
26198 (VOID_FTYPE_PFLOAT_V4SF_UQI): Likewise.
26199 (VOID_FTYPE_PINT64_V8DI_UQI): Likewise.
26200 (VOID_FTYPE_PINT64_V4DI_UQI): Likewise.
26201 (VOID_FTYPE_PINT64_V2DI_UQI): Likewise.
26202 (VOID_FTYPE_PINT_V16SI_UHI): Likewise.
26203 (VOID_FTYPE_PINT_V8SI_UHI): Likewise.
26204 (VOID_FTYPE_PINT_V4SI_UHI): Likewise.
26205 (VOID_FTYPE_PSHORT_V32HI_USI): Likewise.
26206 (VOID_FTYPE_PSHORT_V16HI_UHI): Likewise.
26207 (VOID_FTYPE_PSHORT_V8HI_UQI): Likewise.
26208 (VOID_FTYPE_PCHAR_V64QI_UDI): Likewise.
26209 (VOID_FTYPE_PCHAR_V32QI_USI): Likewise.
26210 (VOID_FTYPE_PCHAR_V16QI_UHI): Likewise.
26211 (V64QI_FTYPE_PCV64QI_V64QI_UDI): Removed.
26212 (V32HI_FTYPE_PCV32HI_V32HI_USI): Likewise.
26213 (V32QI_FTYPE_PCV32QI_V32QI_USI): Likewise.
26214 (V16HI_FTYPE_PCV16HI_V16HI_UHI): Likewise.
26215 (V16QI_FTYPE_PCV16QI_V16QI_UHI): Likewise.
26216 (V8HI_FTYPE_PCV8HI_V8HI_UQI): Likewise.
26217 (VOID_FTYPE_PV32HI_V32HI_USI): Likewise.
26218 (VOID_FTYPE_PV16HI_V16HI_UHI): Likewise.
26219 (VOID_FTYPE_PV8HI_V8HI_UQI): Likewise.
26220 (VOID_FTYPE_PV64QI_V64QI_UDI): Likewise.
26221 (VOID_FTYPE_PV32QI_V32QI_USI): Likewise.
26222 (VOID_FTYPE_PV16QI_V16QI_UHI): Likewise.
26223 * config/i386/i386.c (ix86_emit_save_reg_using_mov): Don't
26224 use UNSPEC_STOREU.
26225 (ix86_emit_restore_sse_regs_using_mov): Don't use UNSPEC_LOADU.
26226 (ix86_avx256_split_vector_move_misalign): Don't use unaligned
26227 load nor store.
26228 (ix86_expand_vector_move_misalign): Likewise.
26229 (bdesc_special_args): Use CODE_FOR_movvNXY_internal and pointer
26230 to scalar function prototype for unaligned load/store builtins.
26231 (ix86_expand_special_args_builtin): Updated.
26232 * config/i386/sse.md (UNSPEC_LOADU): Removed.
26233 (UNSPEC_STOREU): Likewise.
26234 (VI_ULOADSTORE_BW_AVX512VL): Likewise.
26235 (VI_ULOADSTORE_F_AVX512VL): Likewise.
26236 (ssescalarsize): Handle V4TI, V2TI and V1TI.
26237 (<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
26238 (*<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
26239 (<sse>_storeu<ssemodesuffix><avxsizesuffix>): Likewise.
26240 (<avx512>_storeu<ssemodesuffix><avxsizesuffix>_mask): Likewise.
26241 (<sse2_avx_avx512f>_loaddqu<mode><mask_name>): Likewise.
26242 (*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"): Likewise.
26243 (sse2_avx_avx512f>_storedqu<mode>): Likewise.
26244 (<avx512>_storedqu<mode>_mask): Likewise.
26245 (*sse4_2_pcmpestr_unaligned): Likewise.
26246 (*sse4_2_pcmpistr_unaligned): Likewise.
26247 (*mov<mode>_internal): Renamed to ...
26248 (mov<mode>_internal): This. Remove check of AVX and IAMCU on
26249 misaligned operand. Replace vmovdqu64 with vmovdqu<ssescalarsize>.
26250 (movsd/movhpd to movupd peephole): Don't use UNSPEC_LOADU.
26251 (movlpd/movhpd to movupd peephole): Don't use UNSPEC_STOREU.
26252
26253 2016-04-19 Richard Biener <rguenther@suse.de>
26254
26255 PR tree-optimization/70171
26256 * tree-ssa-phiprop.c: Include stor-layout.h.
26257 (phiprop_insert_phi): Handle the aggregate copy case.
26258 (propagate_with_phi): Likewise.
26259
26260 2016-04-19 Uros Bizjak <ubizjak@gmail.com>
26261
26262 * config/i386/i386.c (ix86_decompose_address): Use lowpart_subreg
26263 instead of simplify_gen_subreg (... , 0).
26264 (ix86_delegitimize_address): Ditto.
26265 (ix86_split_divmod): Ditto.
26266 (ix86_split_copysign_const): Ditto.
26267 (ix86_split_copysign_var): Ditto.
26268 (ix86_expand_args_builtin): Ditto.
26269 (ix86_expand_round_builtin): Ditto.
26270 (ix86_expand_special_args_builtin): Ditto.
26271 * config/i386/i386.md (TARGET_USE_VECTOR_FP_CONVERTS splitters): Ditto.
26272 (TARGET_SSE_PARTIAL_REG_DEPENDENCY splitters and peephole2s): Ditto.
26273 (udivmodqi4): Ditto.
26274 (absneg splitters): Ditto.
26275 (*jcc_bt<mode>_1): Ditto.
26276
26277 2016-04-19 Richard Biener <rguenther@suse.de>
26278
26279 PR tree-optimization/70724
26280 * tree-ssa-sccvn.c (scc_vn_restore_ssa_info): Split SSA info
26281 restoring out from ...
26282 (free_scc_vn): ... here.
26283 * tree-ssa-sccvn.h (scc_vn_restore_ssa_info): Declare.
26284 * tres-ssa-pre.c (pass_pre::execute): Restore SSA info before
26285 tail merging.
26286 (pass_fre::execute): Restore SSA info.
26287
26288 2016-04-19 Richard Biener <rguenther@suse.de>
26289
26290 * gimple-walk.h (struct walk_stmt_info): Add stmt member.
26291 * gimple-walk.c (walk_gimple_op): Initialize it.
26292 (walk_gimple_asm): Set wi->is_lhs before each callback invocation.
26293 * tree-inline.c (remap_gimple_op_r): Set SSA_NAME_DEF_STMT when
26294 remapping SSA names of defs.
26295 (copy_bb): Remove walk over all SSA defs and SSA_NAME_DEF_STMT
26296 adjustment.
26297
26298 2016-04-18 Vladimir Makarov <vmakarov@redhat.com>
26299
26300 PR middle-end/70689
26301 * lra-constraints.c (equiv_substition_p): New.
26302 (process_alt_operands): Use it.
26303 (swap_operands): Swap it.
26304 (curr_insn_transform): Update it.
26305
26306 2016-04-18 Michael Matz <matz@suse.de>
26307
26308 * tree.h (TYPE_ALIGN, DECL_ALIGN): Return shifted amount.
26309 (SET_TYPE_ALIGN, SET_DECL_ALIGN): New.
26310 * tree-core.h (tree_type_common.align): Use bit-field.
26311 (tree_type_common.spare): New.
26312 (tree_decl_common.off_align): Make smaller.
26313 (tree_decl_common.align): Use bit-field.
26314
26315 * expr.c (expand_expr_addr_expr_1): Use SET_TYPE_ALIGN.
26316 * omp-low.c (install_var_field): Use SET_DECL_ALIGN.
26317 (scan_sharing_clauses): Ditto.
26318 (finish_taskreg_scan): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
26319 (omp_finish_file): Ditto.
26320 * stor-layout.c (do_type_align): Use SET_DECL_ALIGN.
26321 (layout_decl): Ditto.
26322 (relayout_decl): Ditto.
26323 (finalize_record_size): Use SET_TYPE_ALIGN.
26324 (finalize_type_size): Ditto.
26325 (finish_builtin_struct): Ditto.
26326 (layout_type): Ditto.
26327 (initialize_sizetypes): Ditto.
26328 * targhooks.c (std_gimplify_va_arg_expr): Use SET_TYPE_ALIGN.
26329 * tree-nested.c (insert_field_into_struct): Use SET_TYPE_ALIGN.
26330 (lookup_field_for_decl): Use SET_DECL_ALIGN.
26331 (get_chain_field): Ditto.
26332 (get_trampoline_type): Ditto.
26333 (get_nl_goto_field): Ditto.
26334 * tree-streamer-in.c (unpack_ts_decl_common_value_fields): Use
26335 SET_DECL_ALIGN.
26336 (unpack_ts_type_common_value_fields): Use SET_TYPE_ALIGN.
26337 * gimple-expr.c (copy_var_decl): Use SET_DECL_ALIGN.
26338 * tree.c (make_node_stat): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
26339 (build_qualified_type): Use SET_TYPE_ALIGN.
26340 (build_aligned_type, build_range_type_1): Ditto.
26341 (build_atomic_base): Ditto.
26342 (build_common_tree_nodes): Ditto.
26343 * cfgexpand.c (align_local_variable): Use SET_DECL_ALIGN.
26344 (expand_one_stack_var_at): Ditto.
26345 * coverage.c (build_var): Use SET_DECL_ALIGN.
26346 * except.c (init_eh): Ditto.
26347 * function.c (assign_parm_setup_block): Ditto.
26348 * symtab.c (increase_alignment_1): Ditto.
26349 * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Ditto.
26350 * tree-vect-stmts.c (ensure_base_align): Ditto.
26351 * varasm.c (align_variable): Ditto.
26352 (assemble_variable): Ditto.
26353 (build_constant_desc): Ditto.
26354 (output_constant_def_contents): Ditto.
26355
26356 * config/arm/arm.c (arm_relayout_function): Use SET_DECL_ALIGN.
26357 * config/avr/avr.c (avr_adjust_type_node): Use SET_TYPE_ALIGN.
26358 * config/mips/mips.c (mips_std_gimplify_va_arg_expr): Ditto.
26359 * config/msp430/msp430.c (msp430_gimplify_va_arg_expr): Ditto.
26360 * config/spu/spu.c (spu_build_builtin_va_list): Use SET_DECL_ALIGN.
26361
26362 2016-04-18 H.J. Lu <hongjiu.lu@intel.com>
26363
26364 PR target/70708
26365 * config/i386/sse.md (sse2_loadlpd): Accept load from "xm" and
26366 replace %vmovsd with "%vmovq".
26367 (vec_concatv2df): Likewise.
26368
26369 2016-04-18 Uros Bizjak <ubizjak@gmail.com>
26370
26371 * config/i386/mmx.md (*vec_extractv2sf_0): Use gen_lowpart.
26372 (*vec_extractv2si_0): Ditto.
26373 * config/i386/sse.md (*vec_extractv4sf_0): Ditto.
26374 (zero_extended_scalar_load_operand splitters): Ditto.
26375 (vec_extract splitters): Ditto.
26376 (*vec_extractv4si_0_zext): Ditto.
26377 (avx_<castmode><avxsizesuffix>_<castmode>): Use gen_lowpart
26378 and lowpart_subreg.
26379 (avx512f_<castmode><avxsizesuffix>_<castmode>): Ditto.
26380 (avx512f_<castmode><avxsizesuffix>_256<castmode>): Ditto.
26381 (*sse4_1_extractps): Use lowpart_subreg.
26382 * config/i386/i386.md (x87 floatsplitter): Use gen_lowpart.
26383
26384 2016-04-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
26385
26386 * doc/install.texi (Specific, i?86-*-solaris2.10): Update gas and
26387 gld requirements.
26388 (Specific, *-*-solaris2*): Update Solaris 11 bundled gcc versions.
26389 Mention Solaris 11 packaging changes.
26390 Update gas and gld requirements.
26391 Remove reference to pre-Solaris 10 bug.
26392 (Specific, sparc-sun-solaris2*): Remove reference to pre-Solaris 10
26393 systems and bugs.
26394 (Specific, sparc64-*-solaris2*): Remove reference to bootstrap
26395 with cc.
26396
26397 2016-04-17 Jan Hubicka <jh@suse.cz>
26398
26399 * tree-ssa-loop-ivopts.c (avg_loop_niter): Use also
26400 max_loop_iterations_int.
26401
26402 2016-04-18 Richard Biener <rguenther@suse.de>
26403
26404 PR tree-optimization/43434
26405 * tree-ssa-structalias.c (struct vls_data): New.
26406 (visit_loadstore): Handle all pointer-based accesses.
26407 (compute_dependence_clique): Compute a bitmap of restrict tags
26408 assigned bases and pass it to visit_loadstore.
26409
26410 2016-04-18 Matthew Wahab <matthew.wahab@arm.com>
26411
26412 PR target/70711
26413 * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for armv8+crc,
26414 armv8.1-a and armv8.1-a+crc.
26415
26416 2016-04-18 Richard Biener <rguenther@suse.de>
26417
26418 PR tree-optimization/70701
26419 * tree-ssa-sccvn.c (vn_reference_lookup_3): Resolve fully constant
26420 references after translating through a memcpy.
26421
26422 2016-04-18 Richard Biener <rguenther@suse.de>
26423
26424 * tree-ssa-pre.c (postorder, postorder_num): Make locals ...
26425 (compute_antic): ... here. For partial antic use regular
26426 postorder and scrap iteration.
26427 (compute_partial_antic_aux): Remove unused return value.
26428 (init_pre): Do not allocate postorder.
26429 (fini_pre): Do not free postorder.
26430
26431 2016-04-18 Richard Biener <rguenther@suse.de>
26432
26433 PR middle-end/37870
26434 * expmed.c (extract_bit_field_1): Remove broken case
26435 using a wider MODE_INT mode.
26436
26437 2016-04-18 Segher Boessenkool <segher@kernel.crashing.org>
26438
26439 * has-brig.c (lendian16): Don't try to use __builtin_bswap16
26440 unless compiling with at least GCC-4.8.
26441
26442 2016-04-17 Jan Hubicka <jh@suse.cz>
26443
26444 PR bootstrap/70706
26445 * graphite.c (graphite_finalize): Update call to
26446 tree_estimate_probability.
26447 * predict.h (tree_estimate_probability): Update prototype.
26448
26449 2016-04-17 Jan Hubicka <jh@suse.cz>
26450
26451 * predict.c (combine_predictions_for_bb): Add dry_run parmaeter.
26452 (tree_estimate_probability): Likewise.
26453 (pass_profile::execute): Update.
26454 (report_predictor_hitrates): New function.
26455 * profile.c (compute_branch_probabilities): Use it.
26456 * predict.h (report_predictor_hitrates): Declare.
26457
26458 2016-04-17 Jan Hubicka <jh@suse.cz>
26459
26460 PR ipa/70018
26461 * cgraph.h (cgraph_node::set_const_flag,
26462 cgraph_node::set_pure_flag): Update prototype to return bool;
26463 update comment.
26464 * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases): Thunks
26465 of interposable symbol are interposable, too.
26466 (cgraph_set_const_flag_1): Rename to ...
26467 (set_const_flag_1): ... this one; change to self recursive function
26468 instead of call_for_symbol_thunks_and_aliases. Handle correctly
26469 clearnig the flag in all variants and also virtual thunks of const
26470 functions are pure; track if any change was done.
26471 (cgraph_node::set_const_flag): Update.
26472 (struct set_pure_flag_info): New struct.
26473 (cgraph_set_pure_flag_1): Rename to ...
26474 (set_pure_flag_1): ... this one; take set_pure_flag_info parameter
26475 rather than pointer encoded flags; track if any changes was done;
26476 handle correctly clearning flag and setting flag of aliases already
26477 declared const.
26478 (cgraph_node::set_pure_flag): Update.
26479 (cgraph_node::set_nothrow_flag): Handle correctly clearning the flag.
26480
26481 2016-04-17 Tom de Vries <tom@codesourcery.com>
26482
26483 PR other/70433
26484 * pretty-print.c (pp_write_text_as_dot_label_to_stream): Escape
26485 backslash in label.
26486
26487 2016-04-17 Tom de Vries <tom@codesourcery.com>
26488
26489 * pretty-print.c (pp_write_text_as_dot_label_to_stream): Classify chars
26490 '{}<> ' as escape-for-record.
26491
26492 2016-04-17 Tom de Vries <tom@codesourcery.com>
26493
26494 * pretty-print.c (pp_write_text_as_dot_label_to_stream): Simplify loop
26495 structure.
26496
26497 2016-04-17 Tom de Vries <tom@codesourcery.com>
26498
26499 PR other/70185
26500 * tree-pass.h (class opt_pass): Remove graph_dump_initialized member.
26501 * dumpfile.h (struct dump_file_info): Add graph_dump_initialized field.
26502 * dumpfile.c (dump_files): Initialize graph_dump_initialized field.
26503 * passes.c (finish_optimization_passes): Only call
26504 finish_graph_dump_file if dfi->graph_dump_initialized.
26505 (execute_function_dump, pass_init_dump_file): Use
26506 dfi->graph_dump_initialized instead of pass->graph_dump_initialized.
26507
26508 2016-04-17 Tom de Vries <tom@codesourcery.com>
26509
26510 PR tree-optimization/70256
26511 * tree-ssa-structalias.c (dump_varinfo, debug_varinfo, dump_varmap)
26512 (debug_varmap): New function.
26513
26514 2016-04-17 Tom de Vries <tom@codesourcery.com>
26515
26516 PR other/70183
26517 * passes.c (pass_manager::register_pass): Propagate pflags.
26518
26519 2016-04-17 Tom de Vries <tom@codesourcery.com>
26520
26521 PR other/68875
26522 * pass_manager.h (TERMINATE_PASS_LIST): Add pass argument.
26523 * passes.c (pass_manager::pass_manager): Declare and init p_start in
26524 INSERT_PASSES_AFTER. Add pass parameter to TERMINATE_PASS_LIST, and
26525 check if it's equal to p_start.
26526 * passes.def: Add arguments to TERMINATE_PASS_LISTs.
26527
26528 2016-04-15 Jan Hubicka <jh@suse.cz>
26529
26530 PR ipa/70018
26531 * cgraph.c (cgraph_set_const_flag_1): Only set as pure if
26532 function does not bind to current def.
26533 * ipa-pure-const.c (worse_state): Add FROM and TO parameters;
26534 handle conservatively calls to functions that does not need to bind
26535 to current def.
26536 (check_call): Update call of worse_state.
26537 (ignore_edge_for_nothrow): Update.
26538 (ignore_edge_for_pure_const): Likewise.
26539 (propagate_pure_const): Update calls to worse_state.
26540 (skip_function_for_local_pure_const): Reformat comments.
26541
26542 2016-04-15 Jan Hubicka <jh@suse.cz>
26543
26544 PR ipa/70018
26545 * cgraph.c (cgraph_node::get_availability): Add REF parameter.
26546 (cgraph_node::function_symbol): Likewise.
26547 (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
26548 * cgraph.h (symtab_node::get_availabbility): Add REF parameter.
26549 (symtab_node::ultimate_alias_target): Add REF parameter.
26550 (symtab_node::binds_to_current_def_p): Declare.
26551 (symtab_node;:ultimate_alias_target_1): Add REF parameter.
26552 (cgraph_node::function_symbol): Likewise.
26553 (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
26554 (cgraph_node::get_availability): Likewise.
26555 (cgraph_edge::binds_to_current_def_p): New inline function.
26556 (varpool_node::get_availability): Add REF parameter.
26557 (varpool_node::ultimate_alias_target): Likewise.
26558 * symtab.c (symtab_node::ultimate_alias_target_1): Likewise.
26559 (symtab_node::binds_to_current_def_p): Likewise.
26560 * varpool.c (varpool_node::get_availability): Likewise.
26561
26562 2016-04-15 Kirill Yukhin <kirill.yukhin@intel.com>
26563
26564 PR target/70662
26565 * config/i386/sse.md(define_insn "<avx512>_vec_dup<mode><mask_name>"):
26566 Fix mode size check.
26567
26568 2016-04-15 Jakub Jelinek <jakub@redhat.com>
26569
26570 * BASE-VER: Set to 7.0.0.
26571
26572 2016-04-15 Alexander Monakov <amonakov@ispras.ru>
26573
26574 * config/nvptx/nvptx.opt (moptimize): Add a period at end of help text.
26575
26576 2016-04-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26577
26578 * doc/invoke.texi (ARM Options): Add note on deprecation of pre-ARMv4T
26579 architecture revisions.
26580
26581 2016-04-15 Bernd Schmidt <bschmidt@redhat.com>
26582
26583 * config/i386/i386-protos.h (ix86_using_red_zone): Declare.
26584 * config/i386/i386.c (ix86_using_red_zone): No longer static.
26585 * config/i386/i386.md (stack decrement to push peepholes): Guard
26586 with !x86_using_red_zone ().
26587
26588 2016-04-15 Jakub Jelinek <jakub@redhat.com>
26589
26590 PR c++/70675
26591 * tree-pretty-print.c (do_niy): Add FLAGS argument, pass it down
26592 to dump_generic_node.
26593 (NIY): Pass also flags to do_niy.
26594
26595 2016-04-15 Thomas Schwinge <thomas@codesourcery.com>
26596
26597 * omp-low.c (simd_clone_struct_alloc, simd_clone_struct_copy)
26598 (simd_clone_vector_of_formal_parm_types)
26599 (simd_clone_clauses_extract, simd_clone_compute_base_data_type)
26600 (simd_clone_mangle, simd_clone_create)
26601 (simd_clone_adjust_return_type, create_tmp_simd_array)
26602 (simd_clone_adjust_argument_types, simd_clone_init_simd_arrays)
26603 (struct modify_stmt_info, ipa_simd_modify_stmt_ops)
26604 (ipa_simd_modify_function_body, simd_clone_linear_addend)
26605 (simd_clone_adjust, expand_simd_clones, ipa_omp_simd_clone)
26606 (pass_data_omp_simd_clone, class pass_omp_simd_clone)
26607 (pass_omp_simd_clone::gate, make_pass_omp_simd_clone): Move into...
26608 * omp-simd-clone.c: ... this new file.
26609 (simd_clone_vector_of_formal_parm_types): Make it static.
26610 * Makefile.in (OBJS): Add omp-simd-clone.o.
26611
26612 2016-04-15 Kirill Yukhin <kirill.yukhin@intel.com>
26613
26614 PR target/70662
26615 * config/i386/sse.md: Use proper memory operand modifiers.
26616
26617
26618 2016-04-15 Richard Biener <rguenther@suse.de>
26619 Alan Modra <amodra@gmail.com>
26620
26621 PR tree-optimization/70130
26622 * tree-vect-data-refs.c (vect_supportable_dr_alignment): Detect
26623 when alignment stays not the same and no not use the realign
26624 scheme then.
26625
26626 2016-04-14 Michael Meissner <meissner@linux.vnet.ibm.com>
26627
26628 PR target/70669
26629 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Add
26630 direct move handlers for KFmode. Change TFmode handlers test from
26631 FLOAT128_IEEE_P to FLOAT128_VECTOR_P.
26632
26633 2016-04-14 Jakub Jelinek <jakub@redhat.com>
26634
26635 PR c++/70594
26636 * ipa-utils.h (polymorphic_ctor_dtor_p): New prototype.
26637 * ipa-polymorphic-call.c (polymorphic_ctor_dtor_p): New function.
26638 (inlined_polymorphic_ctor_dtor_block_p): Use it.
26639 * tree-ssa-live.c (remove_unused_scope_block_p): When
26640 in_ctor_dtor_block, avoid discarding not just BLOCKs with
26641 BLOCK_ABSTRACT_ORIGIN being FUNCTION_DECL, but even when
26642 block_ultimate_origin is FUNCTION_DECL.
26643 (remove_unused_locals): If current_function_decl is
26644 polymorphic_ctor_dtor_p, pass initial true to
26645 remove_unused_scope_block_p' is_ctor_dtor_block.
26646
26647 2016-04-14 Martin Sebor <msebor@redhat.com>
26648
26649 PR c++/69517
26650 PR c++/70019
26651 PR c++/70588
26652 * doc/extend.texi (Variable Length): Revert.
26653
26654 2016-04-14 Marek Polacek <polacek@redhat.com>
26655 Jan Hubicka <hubicka@ucw.cz>
26656
26657 PR c++/70029
26658 * tree.c (verify_type): Disable the canonical type of main variant
26659 check.
26660
26661 2016-04-14 Jason Merrill <jason@redhat.com>
26662
26663 * cfgexpand.c, expr.c: Revert previous change.
26664
26665 2016-04-14 Cesar Philippidis <cesar@codesourcery.com>
26666
26667 PR middle-end/70643
26668 * omp-low.c (lower_oacc_reductions): Check for TREE_CONSTANT
26669 when building a mem ref for the incoming reduction variable.
26670
26671 2016-04-14 Richard Biener <rguenther@suse.de>
26672
26673 PR tree-optimization/70614
26674 * tree-scalar-evolution.c (analyze_evolution_in_loop): Terminate
26675 loop if the evolution dropped to chrec_dont_know.
26676 (interpret_condition_phi): Likewise.
26677
26678 2016-04-14 Richard Biener <rguenther@suse.de>
26679
26680 PR tree-optimization/70623
26681 * tree-ssa-pre.c (changed_blocks): Make global ...
26682 (compute_antic): ... local here. Move and fix worklist
26683 handling here. Do not clear EDGE_DFS_BACK or call mark_dfs_back_edges.
26684 (compute_antic_aux): Add dumping for MAX assumed succs. Remove
26685 worklist handling, dump when ANTIC_IN changed.
26686 (compute_partial_antic_aux): Remove worklist handling.
26687 (init_pre): Do not compute post dominators. Add a comment about
26688 the CFG order chosen.
26689 (fini_pre): Do not free post dominators.
26690
26691 2016-04-13 Martin Sebor <msebor@redhat.com>
26692
26693 PR c++/69517
26694 PR c++/70019
26695 PR c++/70588
26696 * doc/extend.texi (Variable Length): Document C++ specifics.
26697
26698 2016-04-13 Jakub Jelinek <jakub@redhat.com>
26699
26700 PR c++/70641
26701 * ipa-pure-const.c (pass_nothrow::execute): Call maybe_clean_eh_stmt
26702 on all recursive call stmts. Return TODO_cleanup_cfg if any dead
26703 eh edges have been purged.
26704
26705 PR c++/70594
26706 * tree-sra.c (create_access_replacement,
26707 get_replaced_param_substitute): Set DECL_NAMELESS on repl if it
26708 gets fancy name.
26709 * tree-pretty-print.c (dump_fancy_name): New function.
26710 (dump_decl_name, dump_generic_node): Use it.
26711
26712 2016-04-13 Jason Merrill <jason@redhat.com>
26713
26714 * cfgexpand.c (pass_expand::execute): Handle attribute "abi warning".
26715 * expr.c (expand_expr_real_1): Likewise.
26716
26717 2016-04-13 Ilya Enkovich <ilya.enkovich@intel.com>
26718
26719 * config/i386/i386.md (kunpckhi): Swap operands.
26720 (kunpcksi): Likewise.
26721 (kunpckdi): Likewise.
26722 * config/i386/sse.md (vec_pack_trunc_qi): Likewise.
26723 (vec_pack_trunc_<mode>): Likewise.
26724
26725 2016-04-13 Jakub Jelinek <jakub@redhat.com>
26726
26727 PR debug/70628
26728 * explow.c (convert_memory_address_addr_space_1): Formatting fix.
26729
26730 PR middle-end/70633
26731 * gimplify.c (gimplify_init_constructor): Clear TREE_STATIC if
26732 gimplification turns some element into non-constant.
26733
26734 PR debug/70628
26735 * rtl.h (convert_memory_address_addr_space_1): New prototype.
26736 * explow.c (convert_memory_address_addr_space_1): No longer static,
26737 add NO_EMIT argument and don't call convert_modes if true, pass
26738 it down recursively, remove break after return.
26739 (convert_memory_address_addr_space): Adjust caller.
26740 * simplify-rtx.c (simplify_unary_operation_1): Call
26741 convert_memory_address_addr_space_1 instead of convert_memory_address,
26742 if it returns NULL, don't simplify.
26743
26744 2016-04-12 Eric Botcazou <ebotcazou@adacore.com>
26745
26746 PR target/70630
26747 * config/sparc/sparc.c (sparc_compute_frame_size): Add parentheses.
26748
26749 2016-04-12 Jakub Jelinek <jakub@redhat.com>
26750
26751 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
26752 Bump the upper SIMDLEN limits, so that if the return type or
26753 characteristic type if the return type is void can be passed in
26754 all available SSE2/AVX/AVX2/AVX512-F registers, the SIMDLEN is
26755 allowed.
26756
26757 2016-04-12 Michael Meissner <meissner@linux.vnet.ibm.com>
26758
26759 PR target/70640
26760 * config/rs6000/rs6000.md (ieee_128bit_vsx_neg<mode>2_internal):
26761 Do not use "=" constraint on an input constraint.
26762 (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
26763 (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
26764 (ieee_128bit_vsx_nabs<mode>2): Correct splitter so that it
26765 generates (neg (abs ...)) instead of (abs ...).
26766
26767 2016-04-12 Jakub Jelinek <jakub@redhat.com>
26768
26769 PR rtl-optimization/70596
26770 * lra-spills.c (spill_pseudos): Don't delete debug insns, instead
26771 just invalidate LRA data and reset them. Adjust dump wording.
26772
26773 2016-04-12 Martin Liska <mliska@suse.cz>
26774
26775 Revert
26776 2016-03-30 Jan Hubicka <hubicka@ucw.cz>
26777
26778 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
26779 estimates here.
26780 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
26781 max_loop_iterations_int.
26782 (tree_unswitch_outer_loop): Likewise.
26783 * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
26784 * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
26785
26786 2016-04-12 Tom de Vries <tom@codesourcery.com>
26787
26788 PR tree-optimization/68756
26789 * graphite-isl-ast-to-gimple.c (copy_cond_phi_args): Use new_expr
26790 instead of new_name.
26791
26792 2016-04-12 Jakub Jelinek <jakub@redhat.com>
26793
26794 PR tree-optimization/70602
26795 * tree-sra.c (generate_subtree_copies): Don't write anything into
26796 constant pool decls.
26797
26798 * omp-low.c (lower_omp_target): Use GOMP_MAP_FIRSTPRIVATE_INT
26799 regardless whether there are depend clauses or not.
26800
26801 2016-04-11 Michael Meissner <meissner@linux.vnet.ibm.com>
26802
26803 PR target/70381
26804 * config/rs6000/rs6000.c (rs6000_opt_masks): Disable using the
26805 target attribute and pragma from changing the -mfloat128
26806 and -mfloat128-hardware options.
26807
26808 * doc/extend.texi (Additional Floating Types): Document PowerPC
26809 __float128 restrictions.
26810
26811 2016-04-11 James Greenhalgh <james.greenhalgh@arm.com>
26812
26813 PR target/70133
26814 * config/aarch64/driver-aarch64.c
26815 (aarch64_get_extension_string_for_isa_flags): New.
26816 (arch_extension): Rename to...
26817 (aarch64_arch_extension): ...This.
26818 (ext_to_feat_string): Rename to...
26819 (aarch64_extensions): ...This.
26820 (aarch64_core_data): Keep track of architecture extension flags.
26821 (cpu_data): Rename to...
26822 (aarch64_cpu_data): ...This.
26823 (aarch64_arch_driver_info): Keep track of architecture extension
26824 flags.
26825 (get_arch_name_from_id): Rename to...
26826 (get_arch_from_id): ...This, change return type.
26827 (host_detect_local_cpu): Update and reformat for renames, handle
26828 extensions through common infrastructure.
26829
26830 2016-04-11 James Greenhalgh <james.greenhalgh@arm.com>
26831
26832 PR target/70133
26833 * config/aarch64/aarch64-common.c (aarch64_option_extension): Keep
26834 track of a canonical flag name.
26835 (all_extensions): Likewise.
26836 (arch_to_arch_name): Also track extension flags enabled by the arch.
26837 (all_architectures): Likewise.
26838 (aarch64_parse_extension): Move to here.
26839 (aarch64_get_extension_string_for_isa_flags): Take a new argument,
26840 rework.
26841 (aarch64_rewrite_selected_cpu): Update for above change.
26842 * config/aarch64/aarch64-option-extensions.def: Rework the way flags
26843 are handled, such that the single explicit value enabled by an
26844 extension is kept seperate from the implicit values it also enables.
26845 * config/aarch64/aarch64-protos.h (aarch64_parse_opt_result): Move
26846 to here.
26847 (aarch64_parse_extension): New.
26848 * config/aarch64/aarch64.c (aarch64_parse_opt_result): Move from
26849 here to config/aarch64/aarch64-protos.h.
26850 (aarch64_parse_extension): Move from here to
26851 common/config/aarch64/aarch64-common.c.
26852 (aarch64_option_print): Update.
26853 (aarch64_declare_function_name): Likewise.
26854 (aarch64_start_file): Likewise.
26855 * config/aarch64/driver-aarch64.c (arch_extension): Keep track of
26856 the canonical flag for extensions.
26857 * config.gcc (aarch64*-*-*): Extend regex for capturing extension
26858 flags.
26859
26860 2016-04-11 James Greenhalgh <james.greenhalgh@arm.com>
26861
26862 * config/aarch64/aarch64.h (AARCH64_FL_FOR_ARCH8_1): Also add
26863 AARCH64_FL_CRC.
26864
26865 2016-04-09 Tom de Vries <tom@codesourcery.com>
26866
26867 PR tree-optimization/68953
26868 * graphite-sese-to-poly.c (pdr_add_memory_accesses): Order accesses from
26869 first to last subscript.
26870
26871 2016-04-09 Jakub Jelinek <jakub@redhat.com>
26872
26873 PR tree-optimization/70586
26874 * tree-ssa-ifcombine.c (bb_no_side_effects_p): Return false
26875 for any calls.
26876
26877 2016-04-08 Cesar Philippidis <cesar@codesourcery.com>
26878
26879 PR lto/70289
26880 PR ipa/70348
26881 PR tree-optimization/70373
26882 PR middle-end/70533
26883 PR middle-end/70534
26884 PR middle-end/70535
26885 * gimplify.c (gimplify_adjust_omp_clauses): Add or adjust data
26886 clauses for acc parallel reductions as necessary. Error on those
26887 that are private.
26888 * omp-low.c (scan_sharing_clauses): Don't install variables which
26889 are used in acc parallel reductions.
26890 (lower_rec_input_clauses): Remove dead code.
26891 (lower_oacc_reductions): Add support for reference reductions.
26892 (lower_reduction_clauses): Remove dead code.
26893 (lower_omp_target): Don't remap variables appearing in acc parallel
26894 reductions.
26895 * tree.h (OMP_CLAUSE_MAP_IN_REDUCTION): New macro.
26896
26897 2016-04-08 Jakub Jelinek <jakub@redhat.com>
26898
26899 PR middle-end/70593
26900 * tree-ssa-coalesce.c (build_ssa_conflict_graph): For stmt
26901 with multiple SSA_NAME defs, force the outputs other than first
26902 to be live before calling live_track_process_def on each output.
26903
26904 PR rtl-optimization/70574
26905 * fwprop.c (forward_propagate_and_simplify): Don't add
26906 REG_EQUAL note if DF_REF_REG (use) is a paradoxical subreg.
26907 (try_fwprop_subst): Don't add REG_EQUAL note if there are any
26908 paradoxical subregs within *loc.
26909
26910 2016-04-08 Thomas Schwinge <thomas@codesourcery.com>
26911
26912 * config/arc/arc.h (LINK_COMMAND_SPEC): Use gt to ignore
26913 -ftree-parallelize-loops={0,1}.
26914 * config/darwin.h (LINK_COMMAND_SPEC_A): Likewise.
26915 * config/i386/mingw32.h (GOMP_SELF_SPECS): Likewise.
26916 * config/ia64/hpux.h (LIB_SPEC): Likewise.
26917 * config/pa/pa-hpux11.h (LIB_SPEC): Likewise.
26918 * config/pa/pa64-hpux.h (LIB_SPEC): Likewise.
26919
26920 2016-04-08 Maxim Ostapenko <m.ostapenko@samsung.com>
26921
26922 PR sanitizer/70541
26923 * asan.c (instrument_derefs): If we get unknown location, extract it
26924 with EXPR_LOCATION.
26925 (maybe_instrument_call): Instrument gimple_call's arguments if needed.
26926
26927 2016-04-08 Tom de Vries <tom@codesourcery.com>
26928
26929 * omp-low.c (lower_omp_target): Set TREE_NO_WARNING for oacc
26930 implicit firstprivate clause.
26931
26932 2016-04-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26933
26934 PR target/70566
26935 * config/arm/thumb2.md (tst + branch-> lsls + branch
26936 peephole below *orsi_not_shiftsi_si): Require that condition
26937 register is dead after the peephole.
26938 (second peephole after the above): Likewise.
26939
26940 2016-04-08 Alan Modra <amodra@gmail.com>
26941
26942 PR target/70117
26943 * builtins.c (fold_builtin_classify): For IBM extended precision,
26944 look at just the high-order double to test for NaN.
26945 (fold_builtin_interclass_mathfn): Similarly for Inf. For isnormal
26946 test just the high double for Inf but both doubles for subnormal
26947 limit.
26948
26949 2016-04-07 Jakub Jelinek <jakub@redhat.com>
26950
26951 * cgraph.h (struct cgraph_simd_clone): Add mask_mode field.
26952 * omp-low.c (simd_clone_init_simd_arrays, simd_clone_adjust): Handle
26953 node->simdclone->mask_mode != VOIDmode masks.
26954 (simd_clone_adjust_argument_types): Likewise. Move sc var definition
26955 earlier, use it instead of node->simdclone.
26956 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
26957 Set clonei->mask_mode.
26958
26959 2016-04-06 Patrick Palka <ppalka@gcc.gnu.org>
26960
26961 PR c/70436
26962 * parser.c (cp_parser_iteration_statement): New parameter IF_P.
26963 Pass it through to cp_parser_already_scoped_statement.
26964 (cp_parser_already_scoped_statement): New parameter IF_P. Pass
26965 it through to cp_parser_statement.
26966 (cp_parser_statement): Pass IF_P through to
26967 cp_parser_iteration_statement.
26968 (cp_parser_pragma): Adjust call to
26969 cp_parser_iteration_statement.
26970
26971 2016-04-06 Patrick Palka <ppalka@gcc.gnu.org>
26972
26973 PR c/70436
26974 * gimplify.c (gimplify_omp_ordered): Add explicit braces to
26975 resolve a future -Wparentheses warning.
26976 * omp-low.c (scan_sharing_clauses): Likewise.
26977 * tree-parloops.c (eliminate_local_variables): Likewise.
26978
26979 2016-04-06 Vladimir Makarov <vmakarov@redhat.com>
26980
26981 PR rtl-optimization/70398
26982 * lra-constraints.c (process_address_1): Check zero scale and code
26983 for reloading with zero scale.
26984
26985 2016-04-06 Uros Bizjak <ubizjak@gmail.com>
26986
26987 * config/i386/sse.md (shuffletype): Add V32HI and V4TI modes.
26988 (ssescalarsize): Add V8SF, V4SF, V4DF and V2DF modes.
26989
26990 2016-04-06 Jakub Jelinek <jakub@redhat.com>
26991
26992 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
26993 Add support for AVX512F clones, include them by default for
26994 exported OpenMP declare simd functions. For AVX2 allow simdlen 32
26995 and use it if charasteric type is 8-bit, for AVX512F allow simdlen
26996 up to 128.
26997
26998 PR middle-end/70550
26999 * tree.h (OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT): Define.
27000 * gimplify.c (gimplify_adjust_omp_clauses_1): Set it for implicit
27001 firstprivate clauses.
27002 * omp-low.c (lower_send_clauses): Set TREE_NO_WARNING for
27003 OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT !by_ref vars in task contexts.
27004 (lower_omp_target): Set TREE_NO_WARNING for
27005 non-addressable possibly uninitialized vars which are copied into
27006 addressable temporaries or copied for GOMP_MAP_FIRSTPRIVATE_INT.
27007
27008 2016-04-05 John David Anglin <danglin@gcc.gnu.org>
27009
27010 * config/pa/predicates.md (integer_store_memory_operand): Accept
27011 REG+D operands with a large offset when reload_in_progress is true.
27012 (floating_point_store_memory_operand): Likewise.
27013
27014 2016-04-05 Jakub Jelinek <jakub@redhat.com>
27015
27016 PR c++/70336
27017 * match.pd (nested int casts): Limit to GIMPLE.
27018
27019 2016-04-05 Jan Hubicka <hubicka@ucw.cz>
27020
27021 PR ipa/66223
27022 * ipa-devirt.c (maybe_record_node): Fix comment; use
27023 SANITIZE_UNREACHABLE instead of SANITIZE_UNDEFINED.
27024
27025 2016-04-05 Jakub Jelinek <jakub@redhat.com>
27026
27027 PR rtl-optimization/70542
27028 * ree.c (add_removable_extension): For VECTOR_MODE_P punt
27029 if there are any uses other than insn or debug insns.
27030
27031 2016-04-05 Marc Glisse <marc.glisse@inria.fr>
27032 Jakub Jelinek <jakub@redhat.com>
27033
27034 PR tree-optimization/70509
27035 * simplify-rtx.c (simplify_binary_operation_1) <case VEC_SELECT>:
27036 Shift HOST_WIDE_INT_1U instead of 1.
27037
27038 2016-04-05 Zdenek Sojka <zsojka@seznam.cz>
27039
27040 PR tree-optimization/70509
27041 * tree-ssa-forwprop.c (simplify_bitfield_ref): Use bitsize_int instead
27042 of the vector base type for index.
27043
27044 2016-04-05 Uros Bizjak <ubizjak@gmail.com>
27045
27046 PR target/70510
27047 * config/i386/sse.md (iptr): Add V64QI, V32HI, V16SI and V8DI modes.
27048
27049 2016-04-05 Richard Biener <rguenther@suse.de>
27050
27051 PR tree-optimization/70526
27052 * tree-sra.c (build_ref_for_offset): Use prev_base to
27053 extract the alias pointer type.
27054
27055 2016-04-05 Richard Biener <rguenther@suse.de>
27056
27057 * dse.c (struct store_info): Remove alias_set member.
27058 (struct read_info_type): Likewise.
27059 (clear_alias_group, clear_alias_mode_table, clear_alias_mode_holder,
27060 spill_deleted, clear_alias_set_lookup): Remove.
27061 (get_group_info): Remove dead base == NULL_RTX case.
27062 (dse_step0): Remove initialization of removed variables.
27063 (delete_dead_store_insn): Reomve alias set dumping.
27064 (free_read_records): Remove alias_set handling.
27065 (canon_address): Remove alias_set_out parameter.
27066 (record_store): Remove spill_alias_set, it's always zero.
27067 (check_mem_read_rtx): Likewise.
27068 (dse_step2): Rename from ...
27069 (dse_step2_nospill): ... this. Adjust.
27070 (scan_stores): Rename from ...
27071 (scan_stores_nospill): ... this.
27072 (scan_reads): Rename from ...
27073 (scan_reads_nospill): ... this.
27074 (scan_stores_spill, scan_reads_spill): Remove.
27075 (dse_step3_scan): Remove for_spills argument which is always false.
27076 (dse_step3): Likewise.
27077 (dse_step5): Rename from ...
27078 (dse_step5_nospill): ... this. Remove alias_set handling.
27079 (rest_of_handle_dse): Adjust.
27080
27081 2016-04-05 Jakub Jelinek <jakub@redhat.com>
27082
27083 PR target/70525
27084 * config/i386/sse.md (*andnot<mode>3): Simplify assertions.
27085 Use vpandn<ssemodesuffix> for V16SI/V8DImode, vpandnq for
27086 V32HI/V64QImode, don't use <mask_operand3_1>, fix up formatting.
27087 (*andnot<mode>3_mask): Remove insn with VI12_AVX512VL iterator.
27088
27089 2016-04-05 Richard Biener <rguenther@suse.de>
27090
27091 PR middle-end/70499
27092 * gimplify-me.c (gimple_regimplify_operands): Do not rewrite
27093 non-register type temporaries into SSA.
27094
27095 2016-04-04 Jan Hubicka <hubicka@ucw.cz>
27096
27097 PR ipa/66223
27098 * ipa-devirt.c (maybe_record_node): Do not optimize cxa_pure_virtual
27099 calls when sanitizing.
27100 (possible_polymorphic_call_target_p): Fix formatting.
27101
27102 2016-04-04 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
27103 Jakub Jelinek <jakub@redhat.com>
27104
27105 PR middle-end/70457
27106 * tree-inline.c (estimate_num_insn): Use gimple_call_builtin_p
27107 to ensure a call statement is compatible with a built-in's
27108 prototype.
27109 * tree-ssa-math-opts.c (pass_optimize_windening_mul::execute):
27110 Likewise.
27111
27112 2016-04-04 Richard Biener <rguenther@suse.de>
27113
27114 PR rtl-optimization/70484
27115 * rtl.h (canon_output_dependence): Declare.
27116 * alias.c (canon_output_dependence): New function.
27117 * dse.c (record_store): Use canon_output_dependence rather
27118 than canon_true_dependence.
27119
27120 2016-03-30 Jan Hubicka <hubicka@ucw.cz>
27121
27122 PR ipa/68881
27123 * cgraph.h (symtab_node::copy_visibility_from): New function.
27124 * symtab.c (symtab_node::copy_visibility_from): New function.
27125 * ipa-visibility.c (optimize_weakref): New function.
27126 (function_and_variable_visibility): Use it.
27127
27128 2016-04-04 Martin Liska <mliska@suse.cz>
27129
27130 PR hsa/70402
27131 * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Guard index
27132 value that is really in range handled by SBR instruction.
27133 * hsa-brig.c (emit_switch_insn): Do not emit unconditional jump.
27134 * hsa-dump.c (dump_hsa_insn_1): Do not dump default BB.
27135 * hsa.h (hsa_insn_sbr::m_default_bb): Remove field.
27136
27137 2016-04-03 Oleg Endo <olegendo@gcc.gnu.org>
27138
27139 PR target/70416
27140 PR target/67391
27141 * config/sh/sh.md (*addsi3): Allow pattern when reload_in_progress is
27142 set, but not for SP_REG operands.
27143
27144 2016-04-02 Martin Sebor <msebor@redhat.com>
27145
27146 PR c++/67376
27147 * fold-const.c (maybe_nonzero_address): New function.
27148 (fold_comparison): Call it. Fold equality and relational
27149 expressions involving null pointers.
27150 (tree_single_nonzero_warnv_p): Call maybe_nonzero_address.
27151
27152 2016-03-31 Evandro Menezes <e.menezes@samsung.com>
27153
27154 Fix the predicate "aarch64_simd_reg_or_zero" to correctly validate
27155 the "Y" constraint (scalar FP 0.0 immediate).
27156
27157 * config/aarch64/predicates.md (aarch64_simd_reg_or_zero):
27158 Add the "const_double" to the list of operand constraints.
27159
27160 2016-04-01 Jakub Jelinek <jakub@redhat.com>
27161
27162 PR rtl-optimization/70467
27163 * config/i386/i386.md (*add<dwi>3_doubleword, *sub<dwi>3_doubleword):
27164 If low word of the last operand is 0, just emit addition/subtraction
27165 for the high word.
27166
27167 2016-04-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
27168
27169 PR target/70404
27170 * config/s390/s390.c (s390_expand_insv): Check for everything
27171 constant instead of just VOIDmode stuff.
27172
27173 2016-04-01 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
27174
27175 PR target/70496
27176 * config/arm/arm.h (ASM_APP_OFF): Handle TARGET_ARM and TARGET_THUMB.
27177
27178 2016-04-01 Nathan Sidwell <nathan@acm.org>
27179
27180 * tree.def (TRY_CATCH_EXPR): Correct documentation.
27181
27182 2016-03-31 Vladimir Makarov <vmakarov@redhat.com>
27183
27184 PR rtl-optimization/70461
27185 * ira-color.c (allocno_copy_cost_saving): Use allocno class if it
27186 is necessary.
27187
27188 2016-03-31 Martin Liska <mliska@suse.cz>
27189
27190 PR hsa/70399
27191 * hsa-brig.c (hsa_op_immed::emit_to_buffer): Emit either
27192 a tree value or an immediate integer value to a buffer
27193 that is eventually copied to a BRIG section.
27194 (emit_immediate_operand): Call the function here.
27195 * hsa-dump.c (dump_hsa_immed): Remove checking assert.
27196 * hsa-gen.c (hsa_op_immed::hsa_op_immed): Remove initialization
27197 of class' fields that are removed.
27198 (hsa_op_immed::~hsa_op_immed): Remove deinitialization.
27199 * hsa.h (class hsa_op_immed): Remove m_brig_repr and
27200 m_brig_repr_size fields.
27201
27202 2016-03-31 Martin Liska <mliska@suse.cz>
27203
27204 PR hsa/70391
27205 * hsa-gen.c (hsa_function_representation::update_dominance): New
27206 function.
27207 (convert_addr_to_flat_segment): Likewise.
27208 (gen_hsa_memory_set): New alignment argument.
27209 (gen_hsa_ctor_assignment): Likewise.
27210 (gen_hsa_insns_for_single_assignment): Provide alignment
27211 to gen_hsa_ctor_assignment.
27212 (gen_hsa_insns_for_direct_call): Add new argument.
27213 (expand_lhs_of_string_op): New function.
27214 (expand_string_operation_builtin): Likewise.
27215 (expand_memory_copy): New function.
27216 (expand_memory_set): New function.
27217 (gen_hsa_insns_for_call): Use HOST_WIDE_INT.
27218 (convert_switch_statements): Change signature.
27219 (generate_hsa): Use a return value of the function.
27220 (pass_gen_hsail::execute): Do not call
27221 convert_switch_statements here.
27222 * hsa-regalloc.c (hsa_regalloc): Call update_dominance.
27223 * hsa.h (hsa_function_representation::m_modified_cfg): New flag.
27224 (hsa_function_representation::update_dominance): New function.
27225
27226 2016-03-31 Martin Liska <mliska@suse.cz>
27227
27228 PR hsa/70391
27229 * hsa-brig.c (emit_directive_variable): Emit alignment
27230 according to hsa_symbol::m_align.
27231 * hsa-dump.c (hsa_byte_alignment): Move the function to another file.
27232 (dump_hsa_symbol): Dump alignment of HSA symbols.
27233 * hsa-gen.c (get_symbol_for_decl): Set-up alignment of a symbol.
27234 (gen_hsa_addr_with_align): New function.
27235 (hsa_bitmemref_alignment): Use newly added function.
27236 (gen_hsa_insns_for_load): Likewise.
27237 (gen_hsa_insns_for_store): Likewise.
27238 (gen_hsa_memory_copy): New argument added.
27239 (gen_hsa_insns_for_single_assignment): Respect
27240 alignment for assignments processed via gen_hsa_memory_copy.
27241 (gen_hsa_insns_for_direct_call): Likewise.
27242 (gen_hsa_insns_for_return): Likewise.
27243 (gen_function_def_parameters): Set default alignment.
27244 * hsa.c (hsa_object_alignment): New function.
27245 (hsa_byte_alignment): Pasted function.
27246 * hsa.h (hsa_symbol::m_align): New field.
27247
27248 2016-03-31 Bin Cheng <bin.cheng@arm.com>
27249
27250 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Initialize
27251 scratch field for goto case.
27252
27253 2016-03-31 James Greenhalgh <james.greenhalgh@arm.com>
27254
27255 * config/arm/linux-elf.h (ASM_OUTPUT_DEF): Delete.
27256
27257 2016-03-31 Ilya Enkovich <enkovich.gnu@gmail.com>
27258
27259 PR target/70442
27260 * config/i386/i386.c (scalar_chain::convert_op): Fix description.
27261 (scalar_chain::convert_insn): Call convert_op for reg
27262 moves to handle undefined registers.
27263
27264 2016-03-31 Nathan Sidwell <nathan@acm.org>
27265
27266 PR c++/70393
27267 * varasm.c (output_constructor_regular_field): Flush bitfield earlier.
27268 Assert we don't want to move backwards.
27269
27270 2016-03-31 Kirill Yukhin <kirill.yukhin@intel.com>
27271
27272 PR target/70453
27273 * config/i386/sse.md (define_mode_attr shuffletype): Fix typo.
27274
27275 2016-03-31 Jakub Jelinek <jakub@redhat.com>
27276
27277 PR rtl-optimization/70460
27278 * ira.c (indirect_jump_optimize): Don't substitute LABEL_REF
27279 with operand from REG_LABEL_OPERAND, instead substitute
27280 SET_SRC or REG_EQUAL note content if it is a LABEL_REF.
27281 Don't do anything for REG_NON_LOCAL_GOTO jumps.
27282
27283 2016-03-31 Martin Liska <mliska@suse.cz>
27284
27285 * passes.c (execute_one_pass): Do not call
27286 todo_after for a discarded function.
27287
27288 2016-03-31 Bin Cheng <bin.cheng@arm.com>
27289
27290 * tree-ssa-loop-ivopts.c (struct comp_cost): New scrach field.
27291 (no_cost, infinite_cost): Initialize the new field.
27292 (get_computation_cost_at): Record setup cost.
27293 (determine_use_iv_cost_address): Skip cost computation for sub
27294 uses if we can estimate it without losing accuracy.
27295
27296 2016-03-30 Jan Hubicka <hubicka@ucw.cz>
27297
27298 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
27299 estimates here.
27300 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
27301 max_loop_iterations_int.
27302 (tree_unswitch_outer_loop): Likewise.
27303 * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
27304 * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
27305
27306 2016-03-30 Richard Biener <rguenther@suse.de>
27307
27308 PR middle-end/70450
27309 * fold-const.c (extract_muldiv_1): Fix thinko in wide_int::from usage.
27310
27311 2016-03-30 Jakub Jelinek <jakub@redhat.com>
27312
27313 PR target/70421
27314 * config/i386/i386.c (ix86_expand_vector_set): Fix up argument order
27315 in gen_blendm expander.
27316
27317 2016-03-30 Nick Clifton <nickc@redhat.com>
27318
27319 PR target/62254
27320 * config/arm/arm.c (arm_reload_out_hi): Add code to handle the
27321 case where we are already provided with an SImode SUBREG.
27322
27323 2016-03-30 H.J. Lu <hongjiu.lu@intel.com>
27324
27325 PR target/70439
27326 * config/i386/i386.c (ix86_expand_epilogue): Properly check
27327 conflict between DRAP register and __builtin_eh_return.
27328
27329 2016-03-30 Michael Matz <matz@suse.de>
27330 Richard Biener <rguenther@suse.de>
27331
27332 PR ipa/12392
27333 * ipa-polymorphic-call.c (struct type_change_info): Change
27334 speculative to an unsigned allowing to limit the work we do.
27335 (csftc_abort_walking_p): New inline function..
27336 (check_stmt_for_type_change): Limit the number of may-defs
27337 skipped for speculative devirtualization to
27338 max-speculative-devirt-maydefs.
27339 * params.def (max-speculative-devirt-maydefs): New param.
27340 * doc/invoke.texi (--param max-speculative-devirt-maydefs): Document.
27341
27342 2016-03-30 Mike Stump <mrs@gcc.gnu.org>
27343
27344 PR target/63890
27345 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use when profiling
27346 and TARGET_MACHO.
27347
27348 2016-03-30 Patrick Palka <ppalka@gcc.gnu.org>
27349
27350 PR tree-optimization/59124
27351 * tree-vrp.c (register_edge_assert_for_2): For NAME != CST1
27352 where NAME = A +- CST2 add the assertion A != (CST1 -+ CST2).
27353
27354 2016-03-29 Jeff Law <law@redhat.com>
27355
27356 * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in comment.
27357
27358 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
27359
27360 * tree-ssa-loop-ivcanon.c (try_peel_loop): Change type of peel
27361 to HOST_WIDE_INT.
27362
27363 2016-03-29 Thomas Schwinge <thomas@codesourcery.com>
27364
27365 * config/gnu.h (CPP_SPEC, LIB_SPEC): Don't override.
27366 * config/i386/gnu.h (STARTFILE_SPEC): Use gcrt1.o instead of
27367 gcrt0.o if linking dynamically.
27368
27369 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
27370
27371 PR ipa/70283
27372 * ipa-devirt.c (methods_equal_p): New function.
27373 (compare_virtual_tables): Use it.
27374 * cgraph.h (symbol_table::symbol_suffix_separator): Declare.
27375 * cgraphclones.c (clone_function_name_1): Use
27376 symbol_table::symbol_suffix_separator.
27377 * coverage.c (build_var): Likewise.
27378 * symtab.c (symbol_table::symbol_suffix_separator): New.
27379
27380 2016-03-29 Jakub Jelinek <jakub@redhat.com>
27381
27382 PR rtl-optimization/70429
27383 * combine.c (simplify_shift_const_1): For ASHIFTRT don't optimize
27384 (cst1 >> count) >> cst2 into (cst1 >> cst2) >> count if
27385 mode != result_mode.
27386
27387 PR c++/70353
27388 * tree-inline.c (remap_decls): Don't add_local_decl if cfun is null.
27389
27390 PR tree-optimization/70405
27391 * ssa-iterators.h (num_imm_uses): Add missing braces.
27392
27393 2016-03-29 Vladimir Makarov <vmakarov@redhat.com>
27394
27395 PR rtl-optimization/68695
27396 * ira-color.c (allocno_copy_cost_saving): New.
27397 (improve_allocation): Use it.
27398
27399 2016-03-29 Richard Henderson <rth@redhat.com>
27400
27401 PR middle-end/70355
27402 * lower-subreg.c (simplify_subreg_concatn): Reject paradoxical subregs.
27403
27404 2016-03-29 Richard Biener <rguenther@suse.de>
27405
27406 PR middle-end/70424
27407 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Always
27408 use alignment returned by get_pointer_alignment_1 if it is
27409 bigger than BITS_PER_UNIT.
27410 * builtins.c (get_pointer_alignment_1): Do not return true
27411 for alignment extracted from SSA info.
27412
27413 2016-03-28 James Bowman <james.bowman@ftdichip.com>
27414
27415 * config/ft32/ft32.opt (mnodiv): New.
27416 * config/ft32/ft32.md (*divsi3, *modsi3): Qualify with TARGET_NODIV.
27417 * doc/invoke.texi (FT32 Options -mnodiv): New.
27418
27419 2016-03-28 Kirill Yukhin <kirill.yukhin@intel.com>
27420
27421 PR target/70406
27422 * config/i386/i386.md (define_split, andn): Fix modes.
27423
27424 2016-03-26 Richard Biener <rguenther@suse.de>
27425 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
27426
27427 PR ipa/70366
27428 * ipa-inline-transform.c (inline_call): Pass opts_for_fn (to->decl)
27429 instead of
27430 TREE_OPTIMIZATION (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (to->decl))
27431 as 2nd argument to cl_optimization_restore().
27432
27433 2016-03-25 Richard Henderson <rth@redhat.com>
27434
27435 PR target/70120
27436 * config/aarch64/aarch64.c (aarch64_asm_output_pool_epilogue): New.
27437 * config/aarch64/aarch64-protos.h: Declare it.
27438 * config/aarch64/aarch64.h (ASM_OUTPUT_POOL_EPILOGUE): New.
27439
27440 2016-03-25 Alan Modra <amodra@gmail.com>
27441
27442 PR target/70052
27443 * config/rs6000/constraints.md (j): Simplify.
27444 * config/rs6000/predicates.md (easy_fp_constant): Exclude
27445 decimal float 0.D.
27446 * config/rs6000/rs6000.md (zero_fp): New mode_attr.
27447 (mov<mode>_hardfloat, mov<mode>_hardfloat32, mov<mode>_hardfloat64,
27448 mov<mode>_64bit_dm, mov<mode>_32bit): Use zero_fp in place of j
27449 in all constraint alternatives.
27450 (movtd_64bit_nodm): Delete "j" constraint alternative.
27451
27452 2016-03-24 Aldy Hernandez <aldyh@redhat.com>
27453
27454 * tree-ssa-propagate.c: Enhance docs for
27455 SSA_PROP_NOT_INTERESTING.
27456
27457 2016-03-24 Aldy Hernandez <aldyh@redhat.com>
27458
27459 * doc/extend.texi: Fix typo in documentation to pure attribute.
27460
27461 2016-03-24 John David Anglin <danglin@gcc.gnu.org>
27462
27463 PR target/70319
27464 * config/pa/pa.md (bswapdi2): Use a scratch register.
27465
27466 2016-03-24 Richard Henderson <rth@redhat.com>
27467
27468 PR middle-end/69845
27469 * fold-const.c (extract_muldiv_1): Correct test for multiplication
27470 overflow.
27471
27472 2016-03-24 Uros Bizjak <ubizjak@gmail.com>
27473
27474 * config/i386/i386.md (*anddi3_doubleword): Generate AND insn
27475 using ix86_expand_binary_operator instead of gen_andsi3.
27476
27477 2016-03-24 Richard Biener <rguenther@suse.de>
27478
27479 PR tree-optimization/70396
27480 * tree-vect-stmts.c (vectorizable_comparison): Use
27481 get_vectype_for_scalar_type.
27482
27483 2016-03-24 Richard Biener <rguenther@suse.de>
27484
27485 PR middle-end/70370
27486 * gimplify.c (gimplify_asm_expr): Handle !allows_mem outputs
27487 with register bases.
27488
27489 2016-03-24 Richard Biener <rguenther@suse.de>
27490
27491 PR tree-optimization/70372
27492 * tree-ssa-reassoc.c (eliminate_plus_minus_pair): Use
27493 build_all_ones_cst to also handle vector types correctly.
27494
27495 2016-03-23 Michael Meissner <meissner@linux.vnet.ibm.com>
27496
27497 PR target/70381
27498 * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Do not set
27499 -mfloat128 here.
27500
27501 2016-03-23 Marek Polacek <polacek@redhat.com>
27502
27503 PR c++/69884
27504 * doc/invoke.texi: Document -Wignored-attributes.
27505
27506 2016-03-23 Bin Cheng <bin.cheng@arm.com>
27507
27508 PR tree-optimization/69042
27509 * params.def (PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND): Increase the
27510 parameter from 30 to 40.
27511
27512 2016-03-23 Bin Cheng <bin.cheng@arm.com>
27513
27514 PR tree-optimization/69042
27515 * tree-ssa-loop-ivopts.c (add_iv_candidate_for_use): Add IV cand
27516 for use with constant offset stripped in base.
27517
27518 2016-03-23 Richard Biener <rguenther@suse.de>
27519
27520 PR middle-end/70251
27521 * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Adjust
27522 mode compatibility check.
27523 (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
27524
27525 2016-03-23 Jeff Law <law@redhat.com>
27526
27527 PR tree-optimization/64058
27528 * tree-ssa-coalesce.c (struct coalesce_pair): Add new field
27529 CONFLICT_COUNT.
27530 (struct ssa_conflicts): Move up earlier in the file.
27531 (conflicts_, var_map_): New static variables.
27532 (initialize_conflict_count): New function to initialize the
27533 CONFLICT_COUNT field for each conflict pair.
27534 (compare_pairs): Lazily initialize the conflict count and use it
27535 as the first tie-breaker.
27536 (sort_coalesce_list): Add new arguments conflicts, map. Initialize
27537 and wipe conflicts_ and map_ around the call to qsort. Remove
27538 special case for 2 coalesce pairs.
27539 * bitmap.c (bitmap_count_unique_bits): New function.
27540 (bitmap_count_bits_in_word): New function, extracted from
27541 bitmap_count_bits.
27542 (bitmap_count_bits): Use bitmap_count_bits_in_word.
27543 * bitmap.h (bitmap_count_unique_bits): Declare it.
27544
27545 2016-03-23 Ilya Enkovich <enkovich.gnu@gmail.com>
27546
27547 PR target/69917
27548 * config/i386/sol2.h (ASM_OUTPUT_DEF_FROM_DECLS): Follow
27549 transparent alias chain for decl assembler name.
27550 * config/sol2.c (solaris_assemble_visibility): Likewise.
27551
27552 2016-03-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27553
27554 * config/arm/arm1020e.md (1020call_op): Reduce reservation
27555 duration.
27556 (v10_fdivs): Likewise.
27557 (v10_fdivd): Likewise.
27558
27559 2016-03-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27560
27561 PR driver/70132
27562 * config/arm/driver-arm.c (host_detect_local_cpu): Reorder exit logic
27563 to not call fclose twice on file.
27564
27565 2016-03-23 Jakub Jelinek <jakub@redhat.com>
27566
27567 PR tree-optimization/70354
27568 * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
27569 oprnd0 is wider than oprnd1 and there is a cast from the wider
27570 type to oprnd1, mask it with the mask of the narrower type.
27571
27572 PR target/70321
27573 * config/i386/i386.md (*anddi3_doubleword, *<code>di3_doubleword):
27574 Optimize TARGET_STV splitters, if high or low word of last argument
27575 is 0 or -1.
27576
27577 2016-03-22 Jeff Law <law@redhat.com>
27578
27579 PR target/70232
27580 tree-ssa-threadbackward.c
27581 (fsm_find_control_statement_thread_paths): Correctly distinguish
27582 between old style jump threads vs FSM jump threads.
27583
27584 2016-03-22 Ilya Enkovich <enkovich.gnu@gmail.com>
27585
27586 PR target/70302
27587 * config/i386/i386.c (scalar_chain::convert_op): Support
27588 uninitialized register usage case.
27589
27590 2016-03-22 Richard Biener <rguenther@suse.de>
27591
27592 PR middle-end/70251
27593 * genmatch.c (gen_transform): Adjust last parameter to a three-state
27594 int...
27595 (capture::gen_transform): ... to change behavior when substituting
27596 a condition into cond or not-cond expr context.
27597 (dt_simplify::gen_1): Adjust.
27598 * gimple-match-head.c: Include gimplify.h for unshare_expr.
27599 * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Revert
27600 last change and instead change to
27601 A + (B vcmp C ? 1 : 0) -> A - (B vcmp C ? -1 : 0).
27602 (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
27603
27604 2016-03-22 Anthony Green <green@moxielogic.com>
27605
27606 * config/moxie/moxiebox.h (CC1_SPEC): Define. Fix endianness
27607 issue for moxiebox targets.
27608 (CC1PLUS_SPEC): Ditto.
27609
27610 2016-03-22 Richard Biener <rguenther@suse.de>
27611
27612 PR middle-end/70333
27613 * fold-const.c (extract_muldiv_1): Properly perform multiplication
27614 in the wide type.
27615
27616 2016-03-22 Kirill Yukhin <kirill.yukhin@intel.com>
27617
27618 * config/i386/i386.c (def_builtin): Remove duplicated functionality.
27619
27620 2016-03-22 Kirill Yukhin <kirill.yukhin@intel.com>
27621
27622 PR target/70325
27623 * config/i386/i386.c (def_builtin): Handle
27624 OPTION_MASK_ISA_AVX512VL to be and-ed with other
27625 bits.
27626 (const struct builtin_description bdesc_special_args[]):
27627 Remove duplicate ISA bits.
27628
27629 2016-03-22 Jakub Jelinek <jakub@redhat.com>
27630
27631 PR target/70329
27632 * config/i386/i386.c (ix86_expand_vecop_qihi): Don't bother computing
27633 d.perm[i] for i >= d.nelt. If not full_interleave, compute d.perm[i]
27634 in a way that works also for AVX512BW.
27635
27636 PR target/70300
27637 * config/i386/i386.md (cvtsd2ss splitter): Unpack in destination
27638 instead of source if operands[1] is xmm16 and above and
27639 !TARGET_AVX512VL. Use avx512f_vec_dupv16sf_1 instead of
27640 vec_interleave_lowv4sf if we need to unpack xmm16 and above.
27641
27642 PR c++/70295
27643 * gimplify.c (gimplify_modify_expr): Call gimple_set_no_warning
27644 on assign if (*from_p) is a comparison, set it to
27645 TREE_NO_WARNING (*from_p).
27646
27647 2016-03-21 Jakub Jelinek <jakub@redhat.com>
27648
27649 PR middle-end/70326
27650 * lra.c (restore_scratches): Ignore deleted insns.
27651
27652 2016-03-21 Marc Glisse <marc.glisse@inria.fr>
27653 Jakub Jelinek <jakub@redhat.com>
27654
27655 PR tree-optimization/70317
27656 * match.pd (cmp @0 @0): Pass @0 instead of TYPE_MODE (TREE_TYPE (@0))
27657 to HONOR_NANS.
27658
27659 2016-03-21 Uros Bizjak <ubizjak@gmail.com>
27660
27661 PR target/70327
27662 * config/i386/i386.md (movxi): Use ix86_expand_vector_move instead
27663 of ix86_expand_move.
27664 (movoi): Ditto.
27665 (movti): Use general_operand for operand 1 predicate.
27666
27667 2016-03-21 Martin Liska <mliska@suse.cz>
27668
27669 * hsa-dump.c (dump_hsa_insn_1): dump default branch of SBR
27670 insns.
27671 (dump_hsa_symbol): Dump BRIG offset of hsa_symbols.
27672
27673 2016-03-21 Martin Liska <mliska@suse.cz>
27674
27675 PR ipa/70306
27676 * ipa-icf.c (sem_function::parse): Skip static
27677 constructors and destructors.
27678
27679 2016-03-21 Jakub Jelinek <jakub@redhat.com>
27680
27681 PR target/70296
27682 * config/rs6000/rs6000-c.c (rs6000_macro_to_expand): If IDENT is
27683 function-like macro, peek following token(s) if it is followed
27684 by CPP_OPEN_PAREN token with optional padding in between, and
27685 if not, don't treat it like a macro.
27686
27687 2016-03-21 Thomas Schwinge <thomas@codesourcery.com>
27688 Alexander Monakov <amonakov@ispras.ru>
27689
27690 * config/nvptx/nvptx.c (nvptx_option_override): Don't emit sorry
27691 for the stabs debug format.
27692
27693 2016-03-21 Richard Biener <rguenther@suse.de>
27694
27695 PR tree-optimization/70310
27696 * tree-vect-generic.c (expand_vector_condition): Fold the built
27697 condition.
27698
27699 2016-03-21 Kirill Yukhin <kirill.yukhin@intel.com>
27700
27701 PR target/70293
27702 * config/i386/sse.md (define_insn "*vec_dup<mode>"/AVX2):
27703 Block third alternative for AVX-512VL target,
27704
27705 2016-03-21 Martin Liska <mliska@suse.cz>
27706
27707 PR hsa/70234
27708 * hsa-brig.c (emit_function_directives): Mark unemitted
27709 global variables for emission.
27710 * hsa-gen.c (hsa_symbol::hsa_symbol): Initialize a new flag.
27711 (get_symbol_for_decl): Likewise.
27712 * hsa.h (struct hsa_symbol): New flag.
27713
27714 2016-03-21 Richard Biener <rguenther@suse.de>
27715
27716 PR tree-optimization/70288
27717 * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Make sure
27718 we do not estimate unsimplified all-constant conditionals or
27719 switches as optimized away.
27720
27721 2016-03-21 Andrey Belevantsev <abel@ispras.ru>
27722
27723 PR rtl-optimization/69102
27724 * sched-deps.c (sched_analyze_insn): Do not set last_args_size field
27725 when we have a readonly dependency context.
27726
27727 2016-03-18 Jeff Law <law@redhat.com>
27728
27729 PR rtl-optimization/70263
27730 * ira.c (memref_used_between_p): Assert we found END in the insn chain.
27731 (update_equiv_regs): When trying to move a store to after the insn
27732 that sets the source of the store, make sure the store occurs after
27733 the insn that sets the source of the store. When successful note
27734 the REG_EQUIV note created in the dump file.
27735
27736 2016-03-16 David Wohlferd <dw@LimeGreenSocks.com>
27737 Bernd Schmidt <bschmidt@redhat.com>
27738
27739 * doc/extend.texi: Document more potential problems with basic asms.
27740
27741 2016-03-18 Bernd Schmidt <bschmidt@redhat.com>
27742
27743 PR rtl-optimization/70278
27744 * lra-constraints.c (split_reg): Handle the case where biggest_mode is
27745 VOIDmode.
27746
27747 2016-03-18 Jason Merrill <jason@redhat.com>
27748
27749 * calls.c (load_register_parameters): Fix zero size sibcall logic.
27750
27751 2016-03-18 Kirill Yukhin <kirill.yukhin@intel.com>
27752
27753 * config/i386/sse.md: Use vpbroadcastq for broadcasting DF
27754 values to 128b regs.
27755
27756 2016-03-18 Ilya Enkovich <enkovich.gnu@gmail.com>
27757
27758 PR tree-optimization/70252
27759 * tree-vect-stmts.c (supportable_widening_operation): Check resulting
27760 boolean vector has a proper number of elements.
27761 (supportable_narrowing_operation): Likewise.
27762
27763 2016-03-18 Tom de Vries <tom@codesourcery.com>
27764
27765 PR ipa/70269
27766 * cgraph.c (cgraph_node::get_body): Set dump_file to NULL after save.
27767
27768 2016-03-18 Jakub Jelinek <jakub@redhat.com>
27769
27770 * reload1.c (emit_input_reload_insns): Use simplify_replace_rtx
27771 instead of replace_rtx for DEBUG_INSNs.
27772
27773 2016-03-18 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
27774
27775 * config/i386/znver1.md : Fix latencies of FP/SSE/AVX
27776 load type reservations.
27777
27778 2016-03-17 John David Anglin <danglin@gcc.gnu.org>
27779
27780 PR target/70188
27781 * config/pa/constraints.md: Revert 2015-02-13 change. Use
27782 define_constraint for "Q" and "T" constraints.
27783
27784 2016-03-17 Evandro Menezes <e.menezes@samsung.com>
27785
27786 Tweak the pipeline model for Exynos M1
27787
27788 * config/aarch64/aarch64.c (exynosm1_tunings): Enable weak prefetching
27789 model.
27790
27791 2016-03-17 David Malcolm <dmalcolm@redhat.com>
27792
27793 PR c/70264
27794 * diagnostic-show-locus.c (compatible_locations_p): Handle the case
27795 where one or both locations aren't within a line_map.
27796
27797 2016-03-17 H.J. Lu <hongjiu.lu@intel.com>
27798
27799 PR driver/70192
27800 * opts.c (finish_options): Don't set flag_pie to the default if
27801 -fpic, -fPIC, -fno-pic or -fno-PIC is used. Set flag_pic to 0
27802 if it is -1.
27803
27804 2016-03-17 Joern Rennecke <joern.rennecke@embecosm.com>
27805
27806 * config/i386/i386.md (*movv4qicc_insn+1..36): Pass
27807 true as ALL_REGS argument to replace_rtx.
27808
27809 2016-03-17 Richard Biener <rguenther@suse.de>
27810
27811 PR debug/70271
27812 * dwarf2out.c (dwarf2out_early_finish): Process deferred_asm_name
27813 last.
27814
27815 2016-03-17 Jakub Jelinek <jakub@redhat.com>
27816
27817 PR target/70245
27818 * rtl.h (replace_rtx): Add ALL_REGS argument.
27819 * rtlanal.c (replace_rtx): Likewise. If true, use REGNO
27820 equality and assert mode is the same, instead of just rtx pointer
27821 equality.
27822 * config/i386/i386.md (mov + arithmetics with load peephole): Pass
27823 true as ALL_REGS argument to replace_rtx.
27824
27825 2016-03-17 Ilya Enkovich <enkovich.gnu@gmail.com>
27826
27827 * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Apply
27828 for boolean vector with vector mode only.
27829 (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
27830
27831 2016-03-17 Nick Clifton <nickc@redhat.com>
27832
27833 PR target/70162
27834 * config/rx/rx.c (rx_print_integer): Print negative constants in
27835 decimal.
27836
27837 2016-03-17 Jakub Jelinek <jakub@redhat.com>
27838
27839 PR target/70261
27840 * rtlanal.c (replace_rtx): Revert 2016-03-16 change.
27841
27842 2016-03-16 Richard Henderson <rth@redhat.com>
27843 Richard Biener <rguenth@suse.de>
27844
27845 PR middle-end/70240
27846 PR middle-end/68215
27847 PR tree-opt/68714
27848 * gimplify.c (gimplify_expr) [VEC_COND_EXPR]: Gimplify the
27849 first operand as is_gimple_condexpr.
27850
27851 PR middle-end/70240
27852 PR middle-end/68215
27853 Revert r231575
27854 2015-12-11 Eric Botcazou <ebotcazou@adacore.com>
27855 * tree-vect-generic.c (tree_vec_extract): Remove GSI parameter.
27856 Do not gimplify the result.
27857 (do_unop): Adjust call to tree_vec_extract.
27858 (do_binop): Likewise.
27859 (do_compare): Likewise.
27860 (do_plus_minus): Likewise.
27861 (do_negate): Likewise.
27862 (expand_vector_condition): Likewise.
27863 (do_cond): Likewise.
27864
27865 2016-03-16 Richard Henderson <rth@redhat.com>
27866
27867 PR target/70048
27868 * config/aarch64/aarch64.c (virt_or_elim_regno_p): New.
27869 (aarch64_classify_address): Use it.
27870 (aarch64_legitimize_address): Force all subexpressions of PLUS
27871 into registers. Simplify as (sfp+const)+reg or (reg+reg)+const.
27872
27873 2016-03-16 Jakub Jelinek <jakub@redhat.com>
27874 Richard Biener <rguenth@suse.de>
27875
27876 PR target/70245
27877 * rtlanal.c (replace_rtx): For REG, if from is a REG,
27878 return to even if only REGNO is equal, and assert
27879 mode is the same.
27880
27881 2016-03-11 Jeff Law <law@redhat.com>
27882
27883 PR rtl-optimization/70224
27884 * reorg.c (relax_delay_slots): Pass right argument to CROSSING_JUMP_P.
27885
27886 2016-03-16 Richard Henderson <rth@redhat.com>
27887
27888 PR middle-end/70199
27889 * function.h (struct function): Add has_forced_label_in_static.
27890 * gimplify.c (force_labels_r): Set it.
27891 * lto-streamer-in.c (input_struct_function_base): Read it.
27892 * lto-streamer-out.c (output_struct_function_base): Write it.
27893 * tree-inline.c (has_label_address_in_static_1): Remove.
27894 (copy_forbidden): Remove fndecl parameter; test
27895 has_forced_label_in_static.
27896 (inline_forbidden_p): Update call to copy_forbidden.
27897 (tree_versionable_function_p): Likewise.
27898 * ipa-chkp.c (chkp_instrumentable_p): Likewise.
27899 (chkp_versioning): Likewise.
27900 * tree-inline.h (copy_forbidden): Update decl.
27901
27902 2016-03-16 Marek Polacek <polacek@redhat.com>
27903
27904 PR c/70093
27905 * cgraphunit.c (cgraph_node::expand_thunk): Also build call to the
27906 function being thunked if the result type doesn't have fixed size.
27907 * gimplify.c (gimplify_modify_expr): Also set LHS if the result type
27908 doesn't have fixed size.
27909
27910 2016-03-16 Bin Cheng <bin.cheng@arm.com>
27911
27912 * tree-vect-loop.c (vect_analyze_loop_2): Fix wrong dump info by
27913 reporting malformed loop nest.
27914
27915 2016-03-16 Tom de Vries <tom@codesourcery.com>
27916
27917 PR lto/70187
27918 * ipa-devirt.c (possible_polymorphic_call_targets): Move
27919 nodes.length () == 1 test to before first nodes[0] access.
27920
27921 2016-03-16 Tom de Vries <tom@codesourcery.com>
27922
27923 PR tree-optimization/68715
27924 * graphite-scop-detection.c (scop_detection::merge_sese): Add missing
27925 single_pred_p test.
27926
27927 2016-03-16 Tom de Vries <tom@codesourcery.com>
27928
27929 PR tree-optimization/68809
27930 * graphite-scop-detection.c (same_close_phi_node): Test if result types
27931 are the same.
27932
27933 2016-03-16 Carlos O'Donell <carlos@redhat.com>
27934 Sandra Loosemore <sandra@codesourcery.com>
27935
27936 * doc/extend.texi (Common Function Attributes): Describe ifunc impact
27937 on leaf attribute. Mention ELF interposition problems.
27938
27939 2016-03-16 Alan Modra <amodra@gmail.com>
27940
27941 PR rtl-optimization/69195
27942 PR rtl-optimization/47992
27943 * ira.c (indirect_jump_optimize): Ignore artificial defs.
27944 Add comments.
27945
27946 2016-03-15 Eric Botcazou <ebotcazou@adacore.com>
27947
27948 PR bootstrap/69513
27949 * dwarf2out.c (flush_limbo_die_list): Really flush the limbo list.
27950
27951 2016-03-15 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
27952
27953 * config/avr/avr.md (rotl<mode>3): Set mode for operand 2.
27954
27955 2016-03-15 Jakub Jelinek <jakub@redhat.com>
27956
27957 PR rtl-optimization/70222
27958 * combine.c (simplify_shift_const_1): For A >> B >> C LSHIFTRT
27959 optimization if mode is different from result_mode, queue up masking
27960 of the result in outer_op. Formatting fix.
27961
27962 PR middle-end/70239
27963 * tree-ssa-sccvn.c (VN_INFO_GET): Use safe_grow_cleared instead
27964 of safe_grow.
27965
27966 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
27967
27968 PR rtl-optimization/69032
27969 * sel-sched-ir.c (get_seqno_by_preds): Include both insn and head when
27970 looping backwards over basic block insns.
27971
27972 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
27973
27974 PR target/66660
27975 * sel-sched-ir.c (merge_expr): Avoid changing the speculative pattern
27976 to non-speculative when propagating trap bits.
27977
27978 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
27979
27980 PR rtl-optimization/63384
27981 * sel-sched.c (invoke_aftermath_hooks): Do not decrease issue_more on
27982 DEBUG_INSN_P insns.
27983
27984 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
27985
27986 PR target/64411
27987 * sched-deps.c (get_implicit_reg_pending_clobbers): New function,
27988 factored out from ...
27989 (sched_analyze_insn): ... here.
27990 * sched-int.h (get_implicit_reg_pending_clobbers): Declare it.
27991 * sel-sched-ir.c (setup_id_implicit_regs): New function, use
27992 get_implicit_reg_pending_clobbers in it.
27993 (setup_id_reg_sets): Use setup_id_implicit_regs.
27994 (deps_init_id): Ditto.
27995
27996 2016-03-15 Tom de Vries <tom@codesourcery.com>
27997
27998 PR ipa/70161
27999 * cgraph.c (cgraph_node::get_body): Save, reset and restore
28000 dump_file_name.
28001 * passes.c (execute_one_ipa_transform_pass): Add missing argument to
28002 execute_function_dump.
28003 (execute_one_pass): Don't dump function if it will be dumped after ipa
28004 transform.
28005
28006 2016-03-15 Segher Boessenkool <segher@kernel.crashing.org>
28007
28008 * genrecog.c (match_pattern_2): If pred is NULL don't call
28009 safe_predicate_mode on it.
28010
28011 2016-03-14 Jakub Jelinek <jakub@redhat.com>
28012
28013 PR middle-end/70219
28014 * lra-constraints.c (delete_move_and_clobber): Change assertion
28015 to also allow dregno == 0.
28016
28017 2016-03-14 Richard Henderson <rth@redhat.com>
28018
28019 PR tree-opt/68714
28020 * tree-ssa-reassoc.c (ovce_extract_ops, optimize_vec_cond_expr): New.
28021 (can_reassociate_p): Allow ANY_INTEGRAL_TYPE_P.
28022 (reassociate_bb): Use optimize_vec_cond_expr; avoid
28023 optimize_range_tests, attempt_builtin_copysign and attempt_builtin_powi
28024 on vectors.
28025
28026 2016-03-14 Bernd Schmidt <bschmidt@redhat.com>
28027
28028 PR target/70083
28029 * lra-lives.c (process_bb_lives): Also update biggest mode for hard
28030 regs.
28031 (lra_create_live_ranges_1): initialize hard register biggest_mode to
28032 VOIDmode.
28033 * lra-constraints.c (split_reg): For hard regs, try to find the
28034 biggest single-register mode used in the function.
28035
28036 2016-03-14 Richard Biener <rguenther@suse.de>
28037
28038 PR tree-optimization/56365
28039 * tree-ssa-phiopt.c (minmax_replacement): Handle alternate
28040 constants to compare against.
28041
28042 2016-03-14 Segher Boessenkool <segher@kernel.crashing.org>
28043
28044 PR target/70098
28045 * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
28046 *ctr<mode>_internal5, *ctr<mode>_internal6): Also allow "d" as output.
28047 (define_split for the GPR case): Use int_reg_operand instead of
28048 gpc_reg_operand for the output.
28049
28050 2016-03-14 Tom de Vries <tom@codesourcery.com>
28051
28052 PR tree-optimization/70045
28053 * graphite-isl-ast-to-gimple.c (graphite_create_new_loop_guard): Unshare
28054 create_empty_if_region_on_edge argument.
28055
28056 2016-03-13 Eric Botcazou <ebotcazou@adacore.com>
28057
28058 * config/arm/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Define.
28059 (STACK_CHECK_PROTECT): Likewise.
28060 * config/i386/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
28061 (STACK_CHECK_PROTECT): Likewise.
28062 * config/rs6000/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
28063 (STACK_CHECK_PROTECT): Likewise.
28064 * config/rs6000/vxworksae.h (STACK_CHECK_PROTECT): Likewise.
28065 * config/sparc/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
28066 (STACK_CHECK_PROTECT): Likewise.
28067
28068 2016-03-12 Andrey Belevantsev <abel@ispras.ru>
28069
28070 PR rtl-optimization/69307
28071 * sel-sched.c (choose_best_pseudo_reg): Properly check for hard
28072 registers in modes that span more than one register.
28073
28074 2016-03-12 Vladimir Makarov <vmakarov@redhat.com>
28075
28076 PR target/69614
28077 * lra-constraints.c (delete_move_and_clobber): New.
28078 (remove_inheritance_pseudos): Use it.
28079
28080 2016-03-12 Eric Botcazou <ebotcazou@adacore.com>
28081
28082 PR ada/70017
28083 * calls.c (emit_library_call_value_1): Clear the ECF_NOTHROW flag if
28084 the libcall is LCT_THROW.
28085 * explow.c (probe_stack_range): Pass LCT_THROW to emit_library_call
28086 for the checking routine.
28087
28088 2016-03-11 Michael Meissner <meissner@linux.vnet.ibm.com>
28089
28090 PR target/70131
28091 * config/rs6000/rs6000.md (round32<mode>2_fprs): Do not do the
28092 optimization if we have direct move.
28093 (roundu32<mode>2_fprs): Likewise.
28094
28095 2016-03-11 Bernd Schmidt <bschmidt@redhat.com>
28096
28097 PR target/70123
28098 * lra-remat.c (operand_to_remat): Disallow hard regs in the value t
28099 be rematerialized.
28100 (reg_overlap_for_remat_p): Renamed from input_regno_present_p.
28101 Arguments swapped. All callers changed. Take reg_renumber into
28102 account, and Calculate and compare register ranges for hard regs.
28103
28104 2016-03-11 Jeff Law <law@redhat.com>
28105
28106 PR tree-optimization/70190
28107 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
28108 Handle cases where we can not extract the taken edge, even though we
28109 found a constant value.
28110
28111 PR tree-optimization/64058
28112 * tree-ssa-coalesce.c (struct coalesce_pair): Add new field INDEX.
28113 (num_coalesce_pairs): Move up earlier in file.
28114 (find_coalesce_pair): Initialize the INDEX field for each pair
28115 discovered.
28116 (compare_pairs): No longer sort on the elements in each pair.
28117 Instead break ties with the index of the coalesce pair.
28118
28119 2016-03-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28120
28121 PR target/70002
28122 * config/aarch64/aarch64-protos.h
28123 (aarch64_save_restore_target_globals): New prototype.
28124 * config/aarch64/aarch64-c.c (aarch64_pragma_target_parse):
28125 Call the above when popping pragma.
28126 * config/aarch64/aarch64.c (aarch64_save_restore_target_globals):
28127 New function.
28128 (aarch64_set_current_function): Rewrite using the above.
28129
28130 2016-03-11 Jakub Jelinek <jakub@redhat.com>
28131
28132 PR tree-optimization/70177
28133 * gimple-expr.h (extract_ops_from_tree_1): Renamed to ...
28134 (extract_ops_from_tree): ... this. In the 2 argument
28135 overload remove _1 suffix.
28136 * gimple-expr.c (extract_ops_from_tree_1): Renamed to ...
28137 (extract_ops_from_tree): ... this.
28138 * gimple.c (gimple_build_assign, gimple_assign_set_rhs_from_tree):
28139 Adjust callers.
28140 * tree-ssa-loop-niter.c (derive_constant_upper_bound): Likewise.
28141 * tree-ssa-forwprop.c (defcodefor_name): Call 3 operand
28142 extract_ops_from_tree instead of 2 operand one.
28143
28144 2016-03-11 Alan Lawrence <alan.lawrence@arm.com>
28145
28146 PR tree-optimization/70013
28147 * tree-sra.c (analyze_access_subtree): Also set grp_unscalarized_data
28148 for constant-pool entries.
28149
28150 2016-03-11 Jakub Jelinek <jakub@redhat.com>
28151
28152 PR rtl-optimization/70174
28153 * expmed.c (store_bit_field_using_insv): Use gen_lowpart_if_possible
28154 followed by gen_lowpart on force_reg instead of just gen_lowpart.
28155
28156 PR tree-optimization/70169
28157 * tree-ssa-loop.c (gen_lsm_tmp_name): Handle FUNCTION_DECL and
28158 LABEL_DECL like VAR_DECL. Emit nothing instead of gcc_unreachable
28159 for unknown codes.
28160
28161 2016-03-11 Ilya Enkovich <enkovich.gnu@gmail.com>
28162 Jakub Jelinek <jakub@redhat.com>
28163
28164 PR target/70160
28165 * config/i386/i386.c (scalar_chain::convert_reg): Skip uses
28166 of uninitialized values.
28167
28168 2016-03-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28169
28170 * config/s390/s390.md ("trunctddd2"): Turn former define_insn into
28171 define_expand.
28172 ("*trunctddd2"): New pattern definition.
28173 ("trunctdsd2"): Set prep_for_short_prec rounding mode for the
28174 TD->DD truncation.
28175
28176 2016-03-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28177
28178 * config/s390/s390.md (BFP_RND_*, DFP_RND_*): Add new constant
28179 definitions for BFP and DFP rounding modes.
28180 ("fixuns_truncdddi2", "fixuns_trunctddi2")
28181 ("fixuns_trunc<BFP:mode><GPR:mode>2", "fixuns_trunc<mode>si2")
28182 ("fix_trunc<DSF:mode><GPR:mode>2", "fix_trunc<mode>di2")
28183 ("fix_trunctf<mode>2"): Use the new constants instead of magic
28184 numbers.
28185
28186 2016-03-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28187
28188 * config/s390/constraints.md: Adjust comment.
28189 ("Y"): Adjust comment. Rename s390_decompose_shift_count to
28190 s390_decompose_addrstyle_without_index.
28191 * config/s390/predicates.md (shift_count_or_setmem_operand):
28192 Rename to setmem_operand.
28193 * config/s390/s390-protos.h
28194 (s390_decompose_shift_count): Rename to
28195 s390_decompose_addrstyle_without_index.
28196 * config/s390/s390.c (s390_decompose_shift_count)
28197 (s390_mem_constraint, print_shift_count_operand)
28198 (print_operand_address, print_operand): Rename
28199 s390_decompose_shift_count to
28200 s390_decompose_addrstyle_without_index and rename
28201 print_shift_count_operand to print_addrstyle_operand troughout the
28202 file.
28203 * config/s390/s390.md ("setmem_long_<P:mode>", "*setmem_long")
28204 ("*setmem_long_and", "*setmem_long_31z", "*setmem_long_and_31z"):
28205 Rename shift_count_or_setmem_operand to setmem_operand.
28206 * config/s390/vx-builtins.md ("vec_insert<mode>")
28207 ("vec_promote<mode>"): Replace shift_count_or_setmem_operand with
28208 nonmemory_operand.
28209
28210 2016-03-10 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
28211
28212 PR target/70168
28213 * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
28214 Handle overlapping retval and newval.
28215
28216 2016-03-10 Nick Clifton <nickc@redhat.com>
28217
28218 PR target/7044
28219 * config/aarch64/aarch64.c
28220 (aarch64_override_options_after_change_1): When forcing
28221 flag_omit_frame_pointer to be true, use a special value that can
28222 be detected if this function is called again, thus preventing
28223 flag_omit_leaf_frame_pointer from being forced to be false.
28224
28225 2016-03-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28226
28227 * common/config/aarch64/aarch64-common.c (aarch64_handle_option):
28228 Set x_flag_omit_leaf_frame_pointer when handling
28229 -momit-leaf-frame-pointer.
28230
28231 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
28232
28233 PR lto/69589
28234 * cgraph.c (cgraph_node::dump): Dump split_part and
28235 indirect_call_target.
28236 * cgraph.h (cgraph_node): Add indirect_call_target flag.
28237 * ipa.c (has_addr_references_p): Cleanup.
28238 (is_indirect_call_target_p): New.
28239 (walk_polymorphic_call_targets): Do not mark virtuals that may be
28240 called indirectly as local.
28241 (symbol_table::remove_unreachable_nodes): Compute indirect_call_target.
28242
28243 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
28244
28245 PR ipa/69630
28246 * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
28247 on cxa_pure_virtual.
28248
28249 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
28250
28251 PR lto/69589
28252 * tree.c (free_lang_data_in_decl): Clear visibility of TYPE_DECL.
28253
28254 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
28255
28256 PR lto/69589
28257 * tree.c (need_assembler_name_p): Only record main variant type names.
28258
28259 2016-03-10 Christophe Lyon <christophe.lyon@linaro.org>
28260
28261 PR target/70113.
28262 * config/aarch64/aarch64.h (TARGET_FIX_ERR_A53_843419_DEFAULT):
28263 Always define to 0 or 1.
28264 (TARGET_FIX_ERR_A53_843419): New macro.
28265 * config/aarch64/aarch64-elf-raw.h
28266 (TARGET_FIX_ERR_A53_843419_DEFAULT): Update for above changes.
28267 * config/aarch64/aarch64-linux.h: Likewise.
28268 * config/aarch64/aarch64.c
28269 (aarch64_override_options_after_change_1): Do not default
28270 aarch64_nopcrelative_literal_loads to true if Cortex-A53 erratum
28271 843419 is on.
28272 (aarch64_attributes): Handle fix-cortex-a53-843419.
28273 (aarch64_can_inline_p): Likewise.
28274 * config/aarch64/aarch64.opt (aarch64_fix_a53_err843419): Save.
28275
28276 2016-03-10 Alan Lawrence <alan.lawrence@arm.com>
28277 Jakub Jelinek <jakub@redhat.com>
28278
28279 * common.opt (funconstrained-commons, flag_unconstrained_commons): New.
28280 * tree.c (array_at_struct_end_p): Do not limit to size of decl for
28281 DECL_COMMONS if flag_unconstrained_commons is set.
28282 * tree-dfa.c (get_ref_base_and_extent): Likewise.
28283 * doc/invoke.texi (Optimize Options): Add -funconstrained-commons.
28284 (funconstrained-commons): Document.
28285
28286 2016-03-10 Christophe Lyon <christophe.lyon@linaro.org>
28287
28288 * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add
28289 aarch64-fusion-pairs.def and aarch64-tuning-flags.def
28290
28291 2016-03-10 Ilya Enkovich <enkovich.gnu@gmail.com>
28292
28293 * tree-vect-stmts.c (vectorizable_mask_load_store): Check mask
28294 has a proper number of elements.
28295
28296 2016-03-10 Alan Modra <amodra@gmail.com>
28297
28298 PR rtl-optimization/69195
28299 PR rtl-optimization/47992
28300 * ira.c (recorded_label_ref): Delete.
28301 (update_equiv_regs): Return void.
28302 (indirect_jump_optimize): New function.
28303 (ira): Call indirect_jump_optimize and delete_trivially_dead_insns
28304 before regstat_compute_ri. Don't rebuild_jump_labels here.
28305 Delete update_regstat.
28306
28307 2016-03-10 Richard Biener <rguenther@suse.de>
28308
28309 PR tree-optimization/70128
28310 * tree-ssa-structalias.c (set_uids_in_ptset): Set
28311 vars_contains_nonlocal for any FUNCTION_DECL or LABEL_DECL.
28312
28313 2016-03-09 Jakub Jelinek <jakub@redhat.com>
28314
28315 PR tree-optimization/70152
28316 * tree-sra.c (replace_removed_params_ssa_names): Copy over
28317 SSA_NAME_OCCURS_IN_ABNORMAL_PHI from old_name to new_name.
28318
28319 PR target/70086
28320 * config/i386/i386.md (truncdfsf2 splitter): Use gen_vec_concatv2df
28321 instead of gen_sse2_loadlpd.
28322 * config/i386/sse.md (*vec_concatv2df): Rename to...
28323 (vec_concatv2df): ... this.
28324
28325 PR tree-optimization/70127
28326 * fold-const.c (operand_equal_p): Revert the 2015-10-28 change.
28327
28328 2016-03-09 David Malcolm <dmalcolm@redhat.com>
28329
28330 PR c/68473
28331 PR c++/70105
28332 * diagnostic-show-locus.c (compatible_locations_p): New function.
28333 (layout::layout): Sanitize ranges using compatible_locations_p.
28334
28335 2016-03-09 David Malcolm <dmalcolm@redhat.com>
28336
28337 PR c/68473
28338 PR c++/70105
28339 * diagnostic-show-locus.c (layout_range::layout_range): Replace
28340 location_range param with three const expanded_locations * and a
28341 bool.
28342 (layout::layout): Replace call to
28343 rich_location::lazily_expand_location with get_expanded_location.
28344 Extract the range and perform location expansion here, passing
28345 the results to the layout_range ctor.
28346 * diagnostic.c (source_range::debug): Delete.
28347 * diagnostic.h (diagnostic_expand_location): Reimplement in terms
28348 of rich_location::get_expanded_location.
28349 * gcc-rich-location.c (get_range_for_expr): Delete.
28350 (gcc_rich_location::add_expr): Reimplement to avoid the
28351 rich_location::add_range overload that took a location_range,
28352 passing a location_t instead.
28353
28354 2016-03-09 Richard Biener <rguenther@suse.de>
28355 Jakub Jelinek <jakub@redhat.com>
28356
28357 PR tree-optimization/70138
28358 * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer):
28359 Also skip vect_double_reduction_def.
28360
28361 2016-03-09 Jakub Jelinek <jakub@redhat.com>
28362
28363 PR target/70049
28364 * config/i386/sse.md (*vec_extract<mode>): Use %0 instead of %k0
28365 if the operand is "m".
28366
28367 2016-03-09 Nathan Sidwell <nathan@acm.org>
28368
28369 * config/nvptx/nvptx.c (nvptx_option_override): Don't kill debug level.
28370
28371 2016-03-09 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
28372
28373 * config/i386/i386.c (processor_target_table): Fix cost table
28374 intialization order for znver1.
28375
28376 2016-03-08 Jakub Jelinek <jakub@redhat.com>
28377
28378 * ipa-polymorphic-call.c (walk_ssa_copies): Fix spelling
28379 - becuase -> because.
28380 * ipa-reference.c (ignore_module_statics): Likewise.
28381 * cgraph.c (cgraph_node::get_body): Likewise.
28382 * ipa-inline.c (early_inliner): Likewise.
28383 * ipa-devirt.c (types_same_for_odr): Likewise.
28384 * tree-streamer-out.c (pack_ts_type_common_value_fields): Likewise.
28385 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Likewise.
28386
28387 2016-03-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28388
28389 * tree-ssa-math-opts.c: Fix typo in comment.
28390
28391 2016-03-08 Jakub Jelinek <jakub@redhat.com>
28392
28393 PR target/70110
28394 * config/i386/i386.c (scalar_chain::make_vector_copies,
28395 scalar_chain::convert_reg): Call end_sequence in between
28396 get_insns and emit_conversion_insns rather than after both
28397 calls.
28398
28399 2016-03-07 Uros Bizjak <ubizjak@gmail.com>
28400
28401 PR target/70064
28402 * config/i386/i386.h (machine_function): Add
28403 pc_thunk_call_expanded flag.
28404 (ix86_pc_thunk_call_expanded): New define.
28405 * config/i386/i386.md (set_got, set_got_labelled): New expanders.
28406 (*set_got): Rename insn pattern from set_got.
28407 (*set_got_labelled): Rename inst pattern from set_got_labelled.
28408 * config/i386/i386.c (ix86_compute_frame_layout): Use
28409 ix86_pc_thunk_call_expanded to prevent red-zone.
28410
28411 2016-03-07 Martin Jambor <mjambor@suse.cz>
28412
28413 * hsa.h (hsa_get_ctor_statements): Declare.
28414 (hsa_get_dtor_statements): Likewise.
28415 (hsa_get_kernel_dispatch_type): Likewise.
28416 * hsa.c (hsa_get_ctor_statements): New function.
28417 (hsa_get_dtor_statements): Likewise.
28418 (hsa_get_kernel_dispatch_type): Likewise.
28419 * hsa-brig.c (hsa_cdtor_statements): Removed.
28420 (hsa_output_libgomp_mapping): Use hsa_get_ctor_statements and
28421 hsa_get_dtor_statements.
28422 * hsa-gen.c (hsa_kernel_dispatch_type): Removed.
28423 (get_hsa_kernel_dispatch_offset): Use hsa_get_kernel_dispatch_type.
28424
28425 2016-03-07 Andre Vieira <andre.simoesdiasvieira@arm.com>
28426
28427 * config/arm/arm-cores.def (cortex-r8): New.
28428 * config/arm/arm-tables.opt (cortex-r8): Regenerate.
28429 * config/arm/arm-tune.md: Likewise.
28430 * doc/invoke.texi: Add cortex-r8 to list of cpu values.
28431
28432 2016-03-07 Martin Sebor <msebor@redhat.com>
28433
28434 PR rtl-optimization/19705
28435 * doc/invoke.texi (Options That Control Optimization): Clarify
28436 -fno-branch-count-reg.
28437
28438 2016-02-26 Richard Biener <rguenther@suse.de>
28439 Jeff Law <law@redhat.com>
28440
28441 PR tree-optimization/69740
28442 * cfghooks.c (remove_edge): Request loop fixups if we delete
28443 an edge that might turn an irreducible loop into a natural
28444 loop.
28445 * cfgloop.h (check_verify_loop_structure): Clear LOOPS_NEED_FIXUP.
28446 Move after definition of loops_state_clear.
28447
28448 2016-03-07 Bin Cheng <bin.cheng@arm.com>
28449
28450 PR rtl-optimization/69052
28451 * rtlanal.c (commutative_operand_precedence): Set higher precedence
28452 to CONST_WIDE_INT.
28453
28454 2016-03-07 Tom de Vries <tom@codesourcery.com>
28455
28456 PR tree-optimization/70116
28457 * tree-ssa-tail-merge.c (merge_stmts_p): New function, handling
28458 is_tm_ending stmts and ubsan/asan internal functions.
28459 (find_duplicate): Use it. Don't test is_tm_ending here.
28460
28461 2016-03-07 Richard Biener <rguenther@suse.de>
28462
28463 PR tree-optimization/70115
28464 * tree-ssa-loop-ivcanon.c (propagate_into_all_uses): Remove.
28465 (propagate_constants_for_unrolling): Use replace_uses_by.
28466
28467 2016-03-07 Nathan Sidwell <nathan@codesourcery.com>
28468
28469 PR middle-end/69916
28470 * omp-low.c (struct oacc_loop): Add ifns.
28471 (new_oacc_loop_raw): Initialize it.
28472 (finish_oacc_loop): Clear mask & flags if no ifns.
28473 (oacc_loop_discover_walk): Count IFN_GOACC_LOOP calls.
28474 (oacc_loop_xform_loop): Add ifns arg & adjust.
28475 (oacc_loop_process): Adjust oacc_loop_xform_loop call.
28476
28477 2016-03-07 Richard Henderson <rth@redhat.com>
28478
28479 PR rtl-opt/70061
28480 * tree-outofssa.c (emit_partition_copy): Flush pending stack adjust.
28481 (insert_value_copy_on_edge): Likewise.
28482
28483 2016-03-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28484
28485 * config/arm/arm_neon.h: Show error if using with soft-float ABI.
28486
28487 2016-03-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
28488
28489 PR target/62281
28490 * config/i386/sol2.h (STACK_REALIGN_DEFAULT): Define.
28491
28492 2016-03-05 Venkataramanan Kumar <Venkataramanan.kumar@amd.com>
28493
28494 * config/i386/i386.c (znver1_cost): Fix Multiply cost.
28495
28496 2016-03-05 Venkataramanan Kumar <Venkataramanan.kumar@amd.com>
28497
28498 Fix sseimul type attribute.
28499 * config/i386/znver1.md
28500 (znver1_sseimul, znver1_sseimul_avx256, znver1_sseimul_load,
28501 znver1_sseimul_avx256_load) : Fix the type attribute.
28502 (znver1_sseimul_di, znver1_sseimul_load_di): Fix type attribute,
28503 pipe usage and latency.
28504
28505 2016-03-05 Jakub Jelinek <jakub@redhat.com>
28506
28507 PR c++/70084
28508 * tree-inline.c (copy_tree_body_r): When cancelling ADDR_EXPR
28509 of INDIRECT_REF and ADDR_EXPR changed type, fold_convert it
28510 to the right type.
28511
28512 2016-03-04 Bernd Schmidt <bschmidt@redhat.com>
28513
28514 PR c/69973
28515 * targhooks.c (default_vector_alignment): Limit to MAX_OFILE_ALIGNMENT.
28516
28517 PR rtl-optimization/69941
28518 * postreload.c (reload_combine_recognize_pattern): Ensure all uses of
28519 the reg share its mode.
28520
28521 2016-03-04 Jeff Law <law@redhat.com>
28522
28523 PR tree-optimization/69196
28524 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
28525 If the both SSA_NAMEs are anonymous, then consider them unassociated
28526 and include the PHI in the statement count.
28527
28528 2016-03-05 Tom de Vries <tom@codesourcery.com>
28529
28530 * omp-low.c (check_omp_nesting_restrictions): Check for non-oacc
28531 construct in oacc routine. Check for oacc region in oacc routine.
28532
28533 2016-03-04 Jakub Jelinek <jakub@redhat.com>
28534
28535 PR target/70062
28536 * config/i386/i386.c (decide_alg): Add RECUR argument. Revert
28537 2016-02-22 changes, instead don't recurse if RECUR is already true.
28538 Don't change *dynamic_check if RECUR. Adjust recursive caller
28539 to pass true to the new argument.
28540 (ix86_expand_set_or_movmem): Adjust decide_alg caller.
28541
28542 PR target/70059
28543 * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
28544 <extract_type_2>_vinsert<shuffletype><extract_suf_2>_mask): Formatting
28545 fixes.
28546 (vec_set_hi_<mode><mask_name>): Likewise. Swap VEC_CONCAT operands.
28547
28548 2016-03-04 Bernd Schmidt <bschmidt@redhat.com>
28549
28550 PR rtl-optimization/57676
28551 * lra-assigns.c (lra_assign): Guard test for maximum iterations
28552 with flag_checking.
28553
28554 2016-03-04 Ilya Enkovich <enkovich.gnu@gmail.com>
28555
28556 * tree-vect-patterns.c (search_type_for_mask): Handle
28557 comparison of booleans.
28558
28559 2016-03-04 Jakub Jelinek <jakub@redhat.com>
28560
28561 * doc/extend.texi (__builtin_alloca, __builtin_alloca_with_align):
28562 Fix @xref usage.
28563
28564 PR debug/69947
28565 * dwarf2out.c (prune_unused_types_walk_loc_descr): Handle
28566 all other ops that have dw_val_class_die_ref operands,
28567 and DW_OP_GNU_entry_value.
28568
28569 2016-03-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28570
28571 PR rtl-optimization/69904
28572 * config/arm/arm.c (arm_cannot_copy_insn_p):
28573 Return true for load-exclusive instructions.
28574
28575 2016-03-03 Jakub Jelinek <jakub@redhat.com>
28576
28577 PR target/70021
28578 * tree-vect-stmts.c (vect_mark_relevant): Remove USED_IN_PATTERN
28579 argument, if STMT_VINFO_IN_PATTERN_P (stmt_info), always mark
28580 the pattern no matter if it is used just by non-pattern, pattern
28581 or mix thereof.
28582 (process_use, vect_mark_stmts_to_be_vectorized): Adjust callers.
28583 * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
28584 oprnd1 def_stmt is in pattern, don't look through it.
28585
28586 2016-03-03 Marek Polacek <polacek@redhat.com>
28587
28588 PR middle-end/70050
28589 * match.pd (X % -Y): Add INTEGRAL_TYPE_P check.
28590
28591 2016-03-03 Martin Liska <mliska@suse.cz>
28592
28593 PR tree-optimization/70043
28594 * tree-vect-loop.c (optimize_mask_stores): Move iterator to
28595 previous statement if we see a debug statement.
28596
28597 2016-03-03 Richard Biener <rguenther@suse.de>
28598
28599 PR tree-optimization/55936
28600 * tree-vrp.c (compare_name_with_value): Add use_equiv_p
28601 parameter and guard unsafe equivalence use.
28602 (vrp_evaluate_conditional_warnv_with_ops): Always use
28603 safe equivalences but not via the quadratic compare_names
28604 helper.
28605
28606 2016-03-03 Michael Collison <michael.collison@linaro.org>
28607
28608 PR target/70014
28609 * config/arm/arm.md (*subsi3_carryin_const): Change predicate
28610 for operand 1 to s_register_operand. Change predicate for operand
28611 2 to arm_not_immediate_operand.
28612
28613 2016-03-02 H.J. Lu <hongjiu.lu@intel.com>
28614
28615 * doc/tm.texi: Regenerated.
28616
28617 2016-03-02 Richard Henderson <rth@redhat.com>
28618
28619 PR rtl-opt/67145
28620 * simplify-rtx.c (simplify_plus_minus): Allow reassoc without
28621 simplification when all args are positive non-fixed registers.
28622
28623 2016-03-02 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
28624
28625 * target.def (lra_p): Specify that new ports should use LRA.
28626
28627 2016-03-02 Jakub Jelinek <jakub@redhat.com>
28628
28629 PR libgomp/69555
28630 * gimplify.c (gimplify_decl_expr): For decls with REFERENCE_TYPE, also
28631 gimplify_type_sizes the type they refer to.
28632 (omp_notice_variable): Handle reference vars to VLAs.
28633 * omp-low.c (lower_omp_target): Emit setup of OMP_CLAUSE_PRIVATE
28634 reference to VLA decls in the second pass instead of first pass.
28635
28636 2016-03-02 Tom de Vries <tom@codesourcery.com>
28637
28638 PR tree-optimization/68659
28639 * graphite-isl-ast-to-gimple.c (collect_all_ssa_names): Handle
28640 new_expr == NULL_TREE.
28641 (get_new_name): Handle ADDR_EXPR.
28642
28643 2016-03-02 Bin Cheng <bin.cheng@arm.com>
28644
28645 PR rtl-optimization/69052
28646 * loop-invariant.c (canonicalize_address): New function.
28647 (inv_can_prop_to_addr_use): Check validity of address expression
28648 which is canonicalized by above function.
28649
28650 2016-03-02 Alan Modra <amodra@gmail.com>
28651
28652 PR ipa/69990
28653 * ipa-icf.c (sem_variable::merge): Do not merge an alias with
28654 larger alignment.
28655
28656 2016-03-02 Jakub Jelinek <jakub@redhat.com>
28657
28658 PR target/70028
28659 * config/i386/i386.md (kmovw): Move m constraint to 2nd alternative.
28660 (*movhi_internal): Put mask moves from and to memory separately
28661 from moves from/to GPRs.
28662
28663 2016-03-02 Richard Biener <rguenther@suse.de>
28664
28665 * genmatch.c (dt_node::gen_kids): Fix match code-gen for embedded
28666 GENERIC expressions in GIMPLE.
28667
28668 2016-03-02 Richard Biener <rguenther@suse.de>
28669
28670 * config/i386/i386.c (type_natural_mode): Fix typo.
28671
28672 2016-03-02 Nick Clifton <nickc@redhat.com>
28673
28674 * config.gcc (mep-*-elf): Add newlib-stdint.h to tm_file.
28675
28676 2016-03-02 Richard Biener <rguenther@suse.de>
28677 Uros Bizjak <ubizjak@gmail.com>
28678
28679 PR target/67278
28680 * config/i386/i386.c (type_natural_mode): Handle XFmode vectors.
28681
28682 2016-03-02 Richard Biener <rguenther@suse.de>
28683
28684 PR middle-end/67278
28685 * tree-cfg.c (verify_expr): Adjust BIT_FIELD_REF case.
28686
28687 2016-03-02 Marek Polacek <polacek@redhat.com>
28688
28689 PR c/67854
28690 * gimplify.c (gimplify_va_arg_expr): Use expanded location for the
28691 "is promoted to" warning.
28692
28693 2016-03-01 DJ Delorie <dj@redhat.com>
28694
28695 * config.gcc: Deprecate mep-*.
28696
28697 2016-03-01 Vladimir Makarov <vmakarov@redhat.com>
28698
28699 PR middle-end/70025
28700 * lra-constraints.c (regno_val_use_in): New.
28701 (match_reload): Use it instead of regno_use_in.
28702
28703 2016-03-01 Eric Botcazou <ebotcazou@adacore.com>
28704
28705 PR rtl-optimization/70007
28706 * gcse.c (compute_ld_motion_mems): Tidy up and also invalidate memory
28707 references present in REG_EQUAL notes attached to non-SET patterns.
28708
28709 2016-03-01 Jeff Law <law@redhat.com>
28710
28711 PR tree-optimization/69196
28712 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
28713 Appropriately clamp the number of statements to copy when the
28714 thread path does not traverse a loop backedge.
28715
28716 PR tree-optimization/69196
28717 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
28718 Do count some PHIs in the thread path against the insn count. Decrease
28719 final statement count by one as the control statement in the last
28720 block will get removed. Remove special cased code for handling PHIs
28721 in the last block.
28722
28723 2016-03-01 Uros Bizjak <ubizjak@gmail.com>
28724
28725 PR target/70027
28726 * config/i386/i386.c (ix86_output_call_insn): Add -masm=intel
28727 asm dialect alternatives to explicit GOTPCREL calls.
28728
28729 2016-03-01 Eric Botcazou <ebotcazou@adacore.com>
28730
28731 PR ada/70017
28732 * ira.c (do_reload): Issue warning for generic stack checking here...
28733 * reload1.c (reload): ...instead of here and streamline it.
28734
28735 2016-03-01 Nick Clifton <nickc@redhat.com>
28736
28737 * config.gcc (cr16-*-elf): Add newlib-stdint.h to tm_file.
28738
28739 2016-03-01 Richard Biener <rguenther@suse.de>
28740
28741 PR tree-optimization/69983
28742 * tree-chrec.c (eq_evolutions_p): Handle conversions, compare
28743 types and fall back to operand_equal_p.
28744
28745 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28746
28747 Revert
28748 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28749
28750 * config/s390/constraints.md ("jm8"): New constraint.
28751 * config/s390/predicates.md ("const_int_8bitset_operand"): New
28752 predicate.
28753 * config/s390/s390.md ("*setmem_long", "*setmem_long_and"): Merge
28754 into ...
28755 ("*setmem_long<setmem_and>"): New pattern.
28756 ("*setmem_long_31z", "*setmem_long_and_31z"): Merge
28757 into ...
28758 ("*setmem_long_31z<setmem_and>"): New pattern.
28759 * config/s390/subst.md ("setmem_31z_subst", "setmem_and_subst"):
28760 New substitution rules with the required attributes.
28761
28762
28763 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28764
28765 Revert
28766 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28767
28768 * gensupport.c (process_substs_on_one_elem): Split loop to
28769 complete mark_operands_used_in_match_dup on all expressions in the
28770 vector first.
28771 (adjust_operands_numbers): Inline into process_substs_on_one_elem
28772 and remove function.
28773
28774 2016-03-01 Richard Biener <rguenther@suse.de>
28775
28776 PR middle-end/70022
28777 * fold-const.c (fold_indirect_ref_1): Fix range checking for
28778 vector BIT_FIELD_REF extract.
28779
28780 2016-03-01 Richard Biener <rguenther@suse.de>
28781
28782 PR tree-optimization/69994
28783 * tree-ssa-reassoc.c (ops_equal_values_p): Handle missing case.
28784
28785 2016-03-01 Ilya Enkovich <enkovich.gnu@gmail.com>
28786
28787 PR tree-optimization/69956
28788 * tree-vect-stmts.c (supportable_widening_operation): Support
28789 multi-step conversion of boolean vectors.
28790 (supportable_narrowing_operation): Likewise.
28791
28792 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28793
28794 * config/s390/s390.c (s390_decompose_address): Don't accept SImode
28795 anymore.
28796
28797 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28798
28799 * config/s390/subst.md (DSI_VI): New mode iterator.
28800 ("addr_style_op_subst"): Use DSI_VI instead of DSI.
28801 * config/s390/vector.md ("vec_set<mode>"): Move expander before
28802 the insn definition.
28803 ("*vec_set<mode>"): Change predicate and add alternative to
28804 support only either register or const_int operands as element
28805 selector.
28806 ("*vec_set<mode>_plus"): New pattern to support reg + const_int
28807 operands.
28808 ("vec_extract<mode>"): New expander.
28809 ("*vec_extract<mode>"): New insn definition supporting reg and
28810 const_int element selectors.
28811 ("*vec_extract<mode>_plus"): New insn definition supporting
28812 reg+const_int element selectors.
28813 ("rotl<mode>3", "ashl<mode>3", "ashr<mode>3"): Merge into the
28814 following expander+insn definition.
28815 ("<vec_shifts_name><mode>3"): New expander.
28816 ("*<vec_shifts_name><mode>3<addr_style_op>"): New insn definition.
28817
28818 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28819
28820 * config/s390/s390.md ("*tabort_1"): Change predicate to
28821 nonmemory_operand. Add a second alternative to cover
28822 register as well as const int operands.
28823 ("*tabort_1_plus"): New pattern definition.
28824
28825 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28826
28827 * config/s390/s390.md ("*ashrdi3_cc_31")
28828 ("*ashrdi3_cconly_31""*ashrdi3_cc_31_and")
28829 ("*ashrdi3_cconly_31_and", "*ashrdi3_31_and", "*ashrdi3_31"):
28830 Merge insn definitions into ...
28831 ("*ashrdi3_31<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
28832 New pattern definition.
28833 ("*ashr<mode>3_cc", "*ashr<mode>3_cconly", "ashr<mode>3", )
28834 ("*ashr<mode>3_cc_and", "*ashr<mode>3_cconly_and")
28835 ("*ashr<mode>3_and"): Merge insn definitions into ...
28836 ("*ashr<mode>3<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
28837 New pattern definition.
28838 * config/s390/subst.md ("addr_style_op_cc_subst")
28839 ("masked_op_cc_subst", "setcc_subst", "cconly_subst"): New
28840 substitutions patterns plus attributes.
28841 Add ashiftrt to SUBST iterator.
28842
28843 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28844
28845 * config/s390/s390.md ("<shift><mode>3"): Change predicate of
28846 op2 to nonmemory_operand.
28847 ("*<shift>di3_31", "*<shift>di3_31_and"):
28848 Merge into single pattern definition ...
28849 ("*<shift>di3_31<addr_style_op><masked_op>"): New pattern.
28850 ("*<shift><mode>3", "*<shift><mode>3_and"): Merge into single
28851 pattern definition ...
28852 ("*<shift><mode>3<addr_style_op><masked_op>"): New pattern.
28853 * config/s390/subst.md: Add ashift and lshiftrt to SUBST
28854 iterator.
28855
28856 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28857
28858 * config/s390/predicates.md (const_int_6bitset_operand): New
28859 predicate.
28860 * config/s390/s390.md: Include subst.md.
28861 ("rotl<mode>3"): New expander.
28862 ("rotl<mode>3", "*rotl<mode>3_and"): Merge insn definitions into
28863 ...
28864 ("*rotl<mode>3<addr_style_op><masked_op>"): New insn definition.
28865 * config/s390/subst.md: New file.
28866
28867 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28868
28869 * config/s390/s390.md ("op_type", "atype", "length" attributes):
28870 Remove RRR type. It doesn't really exist.
28871 ("RRer", "f0", "v0", "vf", "vd", "op1", "Rf"): Remove mode
28872 attributes.
28873 ("BFP", "DFP", "nDSF", "nDFDI"): Add mode attributes.
28874 ("*cmp<mode>_ccs", "floatdi<mode>2", "add<mode>3")
28875 ("*add<mode>3_cc", "*add<mode>3_cconly", "sub<mode>3")
28876 ("*sub<mode>3_cc", "*sub<mode>3_cconly", "mul<mode>3")
28877 ("fma<mode>4", "fms<mode>4", "div<mode>3", "*neg<mode>2")
28878 ("*abs<mode>2", "*negabs<mode>2", "sqrt<mode>2"): Override
28879 `enabled' attribute.
28880
28881 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28882
28883 * gensupport.c (process_substs_on_one_elem): Split loop to
28884 complete mark_operands_used_in_match_dup on all expressions in the
28885 vector first.
28886 (adjust_operands_numbers): Inline into process_substs_on_one_elem
28887 and remove function.
28888
28889 2016-02-29 Eric Botcazou <ebotcazou@adacore.com>
28890
28891 PR target/69706
28892 * config/sparc/sparc.c (NWORDS_UP): Rename to...
28893 (CEIL_NWORDS): ...this. Use CEIL macro.
28894 (compute_fp_layout): Adjust to above renaming.
28895 (function_arg_union_value): Likewise.
28896 (sparc_arg_partial_bytes): Likewise.
28897 (sparc_function_arg_advance): Likewise.
28898
28899 2016-02-29 Jeff Law <law@redhat.com>
28900
28901 PR tree-optimization/70005
28902 * tree-ssa-uncprop.c (associate_equivalences_with_edges): Handle case
28903 where an object with a boolean range is compared against a value
28904 outside [0..1].
28905
28906 PR tree-optimization/69999
28907 * gimple-ssa-split-paths.c (split_paths): When duplicating a block
28908 with an outgoing edge marked with EDGE_IRREDUCIBLE_LOOP, schedule
28909 loop cleanups.
28910
28911 2016-02-29 Richard Biener <rguenther@suse.de>
28912
28913 PR tree-optimization/69994
28914 * tree-ssa-reassoc.c (gimple_nop_conversion_p): New function.
28915 (get_unary_op): Look through nop conversions.
28916 (ops_equal_values_p): New function, look for equality diregarding
28917 nop conversions.
28918 (eliminate_plus_minus_pair): Use ops_equal_values_p
28919 (repropagate_negates): Do not use get_unary_op here.
28920
28921 2016-02-29 Martin Liska <mliska@suse.cz>
28922
28923 * system.h: Poison ENABLE_CHECKING macro.
28924
28925 2016-02-29 Martin Liska <mliska@suse.cz>
28926
28927 * hsa-gen.c (gen_body_from_gimple): Dump only if TDF_DETAILS
28928 is presented in dump flags.
28929 * hsa-regalloc.c (linear_scan_regalloc): Likewise.
28930 (hsa_regalloc): Likewise.
28931
28932 2016-02-19 Richard Biener <rguenther@suse.de>
28933
28934 PR tree-optimization/69980
28935 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Update
28936 permutation of those we need to keep.
28937
28938 2016-02-29 Eric Botcazou <ebotcazou@adacore.com>
28939
28940 PR target/69706
28941 * config/sparc/sparc.c (ROUND_ADVANCE): Rename to...
28942 (NWORDS_UP): ...this
28943 (init_cumulative_args): Minor tweaks.
28944 (sparc_promote_function_mode): Likewise.
28945 (scan_record_type): Delete.
28946 (traverse_record_type): New function template.
28947 (classify_data_t): New structure type.
28948 (classify_registers): New inline function.
28949 (function_arg_slotno): In 64-bit mode, bail out early if FP slots are
28950 exhausted. Instantiate traverse_record_type on classify_registers and
28951 deal with the case of a structure passed in slot #15 with no FP field
28952 in the first word.
28953 (assign_data_t): New structure type.
28954 (compute_int_layout): New static function.
28955 (compute_fp_layout): Likewise.
28956 (count_registers): New inline function.
28957 (assign_int_registers): New static function.
28958 (assign_fp_registers): Likewise.
28959 (assign_registers): New inline function.
28960 (function_arg_record_value_1): Delete.
28961 (function_arg_record_value_2): Likewise.
28962 (function_arg_record_value_3): Likewise.
28963 (function_arg_record_value): Adjust to above changes. Instantiate
28964 traverse_record_type on count_registers to first count the number of
28965 registers to be used and then on assign_registers to assign them.
28966 (function_arg_union_value): Adjust to above renaming.
28967 (sparc_function_arg_1); Minor tweaks. Remove commented out code.
28968 (sparc_arg_partial_bytes): Adjust to above renaming. Deal with the
28969 case of a structure passed in slot #15
28970 (sparc_function_arg_advance): Likewise.
28971 (function_arg_padding): Minor tweak.
28972
28973 2016-02-29 Richard Biener <rguenther@suse.de>
28974
28975 PR tree-optimization/69720
28976 * tree-vect-loop.c (get_initial_def_for_reduction): Avoid
28977 the adjustment_def path for possibly vectorized defs.
28978 (vect_create_epilog_for_reduction): Handle vectorized initial
28979 defs properly.
28980
28981 2016-02-28 Eric Botcazou <ebotcazou@adacore.com>
28982
28983 * config/i386/cygming.h (STACK_REALIGN_DEFAULT): Define.
28984
28985 2016-02-27 Jeff Law <law@redhat.com>
28986
28987 Revert
28988 2016-02-26 Richard Biener <rguenther@suse.de>
28989 Jeff Law <law@redhat.com>
28990
28991 PR tree-optimization/69740
28992 * cfghooks.c (remove_edge): Request loop fixups if we delete
28993 an edge that might turn an irreducible loop into a natural
28994 loop.
28995
28996 2016-02-27 Jakub Jelinek <jakub@redhat.com>
28997
28998 PR rtl-optimization/69896
28999 * tree-vect-generic.c (get_compute_type): Avoid single element
29000 vector types.
29001
29002 2016-02-26 Evandro Menezes <e.menezes@samsung.com>
29003
29004 Rename the AArch64 tuning option and related functions to enable the
29005 Newton series for the reciprocal square root to reflect its
29006 approximative characteristic.
29007
29008 * config/aarch64/aarch64-protos.h (aarch64_emit_swrsqrt): Rename
29009 function to "aarch64_emit_approx_rsqrt".
29010 * config/aarch64/aarch64-tuning-flags.def: Rename tuning flag to
29011 AARCH64_EXTRA_TUNE_APPROX_RSQRT.
29012 * config/aarch64/aarch64.c (exynosm1_tunigs): Use new flag name.
29013 (xgene1_tunings): Likewise.
29014 (use_rsqrt_p): Likewise.
29015 (aarch64_emit_swrsqrt): Use new function name.
29016 * config/aarch64/aarch64-simd.md (aarch64_rsqrts_*): Likewise.
29017 * config/aarch64/aarch64.opt (mlow-precision-recip-sqrt): Reword the
29018 text explaining this option.
29019 * doc/invoke.texi (-mlow-precision-recip-sqrt): Likewise.
29020
29021 2016-02-26 Jakub Jelinek <jakub@redhat.com>
29022
29023 PR target/69969
29024 * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
29025 complain about -mallow-movmisalign without -mvsx if
29026 TARGET_ALLOW_MOVMISALIGN was not set explicitly.
29027
29028 2016-02-26 Joel Sherrill <joel@rtems.org>
29029
29030 * config.gcc: Add x86_64-*-rtems*.
29031 * config/i386/rtems-64.h: New file.
29032
29033 2016-02-26 Joel Sherrill <joel@rtems.org>
29034
29035 * config.gcc: Add aarch64-*-rtems*.
29036 * config/aarch64/rtems.h: New file.
29037
29038 2016-02-26 Segher Boessenkool <segher@kernel.crashing.org>
29039
29040 PR target/69946
29041 * config/rs6000/rs6000.c (rs6000_insn_for_shift_mask): Print rlwinm
29042 shift amount using %h. Add comment.
29043
29044 2016-02-26 Richard Biener <rguenther@suse.de>
29045 Jeff Law <law@redhat.com>
29046
29047 PR tree-optimization/69740
29048 * cfghooks.c (remove_edge): Request loop fixups if we delete
29049 an edge that might turn an irreducible loop into a natural
29050 loop.
29051
29052 2016-02-26 Martin Jambor <mjambor@suse.cz>
29053
29054 PR middle-end/69920
29055 * tree-sra.c (sra_modify_assign): Do not remove loads of
29056 uninitialized aggregates to SSA_NAMEs.
29057
29058 2016-02-26 Richard Henderson <rth@redhat.com>
29059
29060 PR target/69709
29061 * config/s390/s390.md (risbg and risbgn splitters): Allocate new
29062 pseudo in case the target rtx matches the source of the left
29063 shift.
29064
29065 2016-02-26 Martin Jambor <mjambor@suse.cz>
29066
29067 PR hsa/69568
29068 * hsa.h (hsa_type_packed_p): Declare.
29069 * hsa.c (hsa_type_packed_p): New function.
29070 * hsa-gen.c (mem_type_for_type): Use unsigned type for packed
29071 loads.
29072 (gen_hsa_insns_for_store): Use hsa_type_packed_p.
29073 * hsa-brig.c (emit_basic_insn): Likewise.
29074
29075 2016-02-26 Martin Jambor <mjambor@suse.cz>
29076
29077 pr hsa/69674
29078 * hsa-gen.c (gen_hsa_phi_from_gimple_phi): Use proper hsa type for
29079 pointers.
29080 (gen_hsa_addr): Allow integer constants in TMR_INDEX2.
29081
29082 2016-02-26 Martin Jambor <mjambor@suse.cz>
29083
29084 * hsa.h (is_a_helper): New overload for hsa_op_immed for
29085 hsa_op_with_type operands.
29086 (hsa_unsigned_type_for_type): Declare.
29087 * hsa.c (hsa_unsigned_type_for_type): New function.
29088 * hsa-gen.c (gen_hsa_binary_operation): Use hsa_unsigned_type_for_type.
29089 (gen_hsa_insns_for_operation_assignment): Satisfy constrains of
29090 the finalizer. Do not emit extra move.
29091
29092 2016-02-26 Martin Jambor <mjambor@suse.cz>
29093
29094 * hsa-gen.c (gen_hsa_ternary_atomic_for_builtin): Fail in presence of
29095 atomic operations in private segment.
29096
29097 2016-02-26 Martin Jambor <mjambor@suse.cz>
29098
29099 * omp-low.c (grid_find_ungridifiable_statement): Store problematic
29100 statements to wi->info. Also disallow omp simd constructs.
29101 (grid_target_follows_gridifiable_pattern): Use wi.info to dump reason
29102 for not gridifying. Dump special string for omp_for.
29103
29104 2016-02-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29105
29106 PR target/69245
29107 * config/aarch64/aarch64.c (aarch64_set_current_function):
29108 Save/restore target globals when switching to
29109 target_option_default_node.
29110
29111 2016-02-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29112
29113 PR target/69613
29114 * config/aarch64/aarch64.c (aarch64_shift_truncation_mask):
29115 Return 0 if !SHIFT_COUNT_TRUNCATED.
29116
29117 2016-02-26 Jakub Jelinek <jakub@redhat.com>
29118 Eric Botcazou <ebotcazou@adacore.com>
29119
29120 PR rtl-optimization/69891
29121 * dse.c (scan_insn): If we can't figure out memset arguments
29122 or they are non-constant, call clear_rhs_from_active_local_stores.
29123
29124 2016-02-26 Martin Liska <mliska@suse.cz>
29125
29126 * doc/extend.texi: Mention clog10, clog10f an clog10l
29127 in Builtins section.
29128
29129 2016-02-26 Martin Liska <mliska@suse.cz>
29130
29131 * dwarf2out.c (new_loc_descr): Replace ENABLE_CHECKING with
29132 CHECKING_P.
29133 (resolve_args_picking_1): Likewise.
29134 * dwarf2out.h (struct GTY): Likewise.
29135
29136 2016-02-26 Martin Liska <mliska@suse.cz>
29137
29138 * hsa-gen.c (generate_hsa): Replace ENABLE_CHECKING macro
29139 with flag_checking.
29140 * hsa-regalloc.c (linear_scan_regalloc): Likewise.
29141
29142 2016-02-26 Markus Trippelsdorf <markus@trippelsdorf.de>
29143 Martin Liska <mliska@suse.cz>
29144
29145 * doc/install.texi: Mention --enable-valgrind-annotations.
29146
29147 2016-02-26 Richard Biener <rguenther@suse.de>
29148
29149 PR tree-optimization/69551
29150 * tree-ssa-structalias.c (get_constraint_for_ssa_var): When
29151 looking through aliases adjust DECL_PT_UID to refer to the
29152 ultimate alias target.
29153
29154 2016-02-25 Martin Liska <mliska@suse.cz>
29155
29156 PR middle-end/69919
29157 * alloc-pool.c (after_memory_report): New variable.
29158 * alloc-pool.h (base_pool_allocator ::release): Do not use
29159 the infrastructure if after_memory_report.
29160 * toplev.c (toplev::main): Mark after memory report.
29161
29162 2016-02-25 Richard Biener <rguenther@suse.de>
29163
29164 PR tree-optimization/48795
29165 * tree-vrp.c (check_array_ref): Use array_at_struct_end_p.
29166
29167 2016-02-25 Ilya Verbin <ilya.verbin@intel.com>
29168
29169 PR driver/68463
29170 * config/gnu-user.h (CRTOFFLOADBEGIN): Define. Add crtoffloadbegin.o if
29171 offloading is enabled and -fopenacc or -fopenmp is specified.
29172 (CRTOFFLOADEND): Likewise.
29173 (GNU_USER_TARGET_STARTFILE_SPEC): Add CRTOFFLOADBEGIN.
29174 (GNU_USER_TARGET_ENDFILE_SPEC): Add CRTOFFLOADEND.
29175 * lto-wrapper.c (offloadbegin, offloadend): Remove static vars.
29176 (offload_objects_file_name): New static var.
29177 (tool_cleanup): Remove offload_objects_file_name file.
29178 (find_offloadbeginend): Replace with ...
29179 (find_crtoffloadtable): ... this.
29180 (run_gcc): Remove offload_argc and offload_argv.
29181 Get offload_objects_file_name from -foffload-objects=... option.
29182 Read names of object files with offload from this file, pass them to
29183 compile_images_for_offload_targets. Don't call find_offloadbeginend and
29184 don't pass offloadbegin and offloadend to the linker. Don't pass
29185 offload non-LTO files to the linker, because now they're not claimed.
29186
29187 2016-02-25 Jan Hubicka <hubicka@ucw.cz>
29188
29189 PR ipa/69630
29190 * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
29191 on builtin_unreachable.
29192
29193 2016-02-25 Jakub Jelinek <jakub@redhat.com>
29194
29195 PR rtl-optimization/69896
29196 * regcprop.c: Include cfgrtl.h.
29197 (copyprop_hardreg_forward_1): If noop_p insn uses narrower
29198 than remembered mode, either delete it (if noop_move_p), or
29199 treat like copy_p but not noop_p instruction.
29200
29201 2016-02-24 Jakub Jelinek <jakub@redhat.com>
29202
29203 PR debug/69705
29204 * dwarf2out.c (gen_variable_die): Work around buggy LTO
29205 - allow NULL decl for Fortran DW_TAG_common_block variables.
29206
29207 2016-02-24 Jason Merrill <jason@redhat.com>
29208
29209 * common.opt (flifetime-dse): Add -flifetime-dse=1.
29210
29211 2016-02-24 Richard Biener <rguenther@suse.de>
29212 Jakub Jelinek <jakub@redhat.com>
29213
29214 PR middle-end/69760
29215 * tree-scalar-evolution.c (interpret_rhs_expr): Re-write
29216 conditionally executed ops to well-defined overflow behavior.
29217
29218 2016-02-24 Jakub Jelinek <jakub@redhat.com>
29219
29220 PR middle-end/69915
29221 * tree.c (build_vector_from_ctor): Fix handling of VECTOR_CST
29222 elements.
29223
29224 2016-02-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29225
29226 PR rtl-optimization/69886
29227 * gcse.c (can_assign_to_reg_without_clobbers_p): Accept mode
29228 argument. Use it when checking validity of set instructions.
29229 (want_to_gcse_p): Pass mode to can_assign_to_reg_without_clobbers_p.
29230 (compute_ld_motion_mems): Update can_assign_to_reg_without_clobbers_p
29231 callsite.
29232 * rtl.h (can_assign_to_reg_without_clobbers_p): Update prototype.
29233 * store-motion.c (find_moveable_store): Update
29234 can_assign_to_reg_without_clobbers_p callsite.
29235
29236 2016-02-24 Richard Biener <rguenther@suse.de>
29237
29238 PR middle-end/68963
29239 * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Fix
29240 bogus check.
29241 (record_nonwrapping_iv): Do not fall back to the low/high bound
29242 for non-constant IV bases if the stmt is not always executed.
29243
29244 2016-02-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29245
29246 * config/arm/arm-cores.def (cortex-a32): New entry.
29247 * config/arm/arm-tables.opt: Regenerate.
29248 * config/arm/arm-tune.md: Regenerate.
29249 * config/arm/bpabi.h (BE8_LINK_SPEC): Add mcpu=cortex-a32.
29250 * config/arm/t-aprofile: Handle mcpu=cortex-a32.
29251 * doc/invoke.texi (ARM Options): Document cortex-a32 as value
29252 for -mcpu and -mtune.
29253
29254 2016-02-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29255
29256 PR target/69875
29257 * config/arm/arm.h (TARGET_HAVE_LPAE): Define.
29258 * config/arm/unspecs.md (VUNSPEC_LDRD_ATOMIC): New value.
29259 * config/arm/sync.md (arm_atomic_loaddi2_ldrd): New pattern.
29260 (atomic_loaddi_1): Delete.
29261 (atomic_loaddi): Rewrite expander using the above changes.
29262
29263 2016-02-24 Jakub Jelinek <jakub@redhat.com>
29264
29265 PR c/69918
29266 * params.def (PARAM_MAX_SSA_NAME_QUERY_DEPTH): Bump default from
29267 2 to 3.
29268
29269 2016-02-24 Jakub Jelinek <jakub@redhat.com>
29270 Richard Biener <rguenth@suse.de>
29271
29272 PR middle-end/69909
29273 * expr.c (expand_expr_real_1) <normal_inner_ref>: Avoid
29274 set_mem_attributes if tem is SSA_NAME which got expanded
29275 as a MEM.
29276
29277 2016-02-24 Richard Biener <rguenther@suse.de>
29278
29279 PR tree-optimization/69907
29280 * tree-vect-stmts.c (vectorizable_load): Check for gaps at the
29281 end of permutations for BB vectorization.
29282
29283 2016-02-24 Christian Bruel <christian.bruel@st.com>
29284
29285 * config/arm/arm-c.c (arm_option_override): Initialize
29286 target_option_current_node.
29287 * config/arm/arm.c (arm_pragma_target_parse): Replace
29288 build_target_option_node call by target_option_current_node.
29289 Set target_option_current_node.
29290 Fix comments.
29291
29292 2016-02-23 David Edelsohn <dje.gcc@gmail.com>
29293
29294 PR target/69810
29295 * config/rs6000/rs6000.md (zero_extendqi<mode>2_dot): Convert from
29296 define_insn_and_split to define_insn.
29297 (zero_extendqi<mode>2_dot2): Same.
29298 (extendqi<mode>2_dot): Same.
29299 (extendqi<mode>2_dot2): Same.
29300
29301 2016-02-23 Evandro Menezes <e.menezes@samsung.com>
29302
29303 * config/arm/exynos-m1.md: Change cost of STP, fix bypass for stores
29304 and add bypass for AES{D,E} and AESMC pairs.
29305 * config/aarch64/aarch64.c (exynosm1_tunings): Enable fusion of AES{D,E}
29306 and AESMC pairs.
29307
29308 2016-02-23 Evandro Menezes <e.menezes@samsung.com>
29309
29310 * config/aarch64/aarch64.c (exynosm1_tunings): Enable the Newton
29311 series for reciprocal square root in Exynos M1.
29312
29313 2016-02-23 Martin Sebor <msebor@redhat.com>
29314
29315 PR c/69759
29316 * doc/extend.texi (Other Builtins): Document __builtin_alloca and
29317 __builtin_alloca_with_align.
29318
29319 2016-02-23 Richard Henderson <rth@redhat.com>
29320
29321 * config/i386/i386-c.c (ix86_target_macros): Remove __SEG_TLS.
29322 (ix86_register_pragmas): Remove __seg_tls.
29323 * config/i386/i386-protos.h (ADDR_SPACE_SEG_TLS): Remove.
29324 * config/i386/i386.c (ix86_print_operand_address_as): Don't handle it.
29325 (ix86_addr_space_subset_p, TARGET_ADDR_SPACE_SUBSET_P): Remove.
29326 (ix86_addr_space_convert, TARGET_ADDR_SPACE_CONVERT): Remove.
29327 (ix86_addr_space_debug, TARGET_ADDR_SPACE_DEBUG): Remove.
29328 * doc/extend.texi (__seg_tls): Remove item.
29329
29330 2016-02-23 Richard Biener <rguenther@suse.de>
29331
29332 * alloc-pool.h (struct allocation_object): Make id member
29333 conditional on CHECKING_P again.
29334 (get_instance): Adjust.
29335 (base_pool_allocator): Likewise.
29336
29337 2016-02-23 Thomas Schwinge <thomas@codesourcery.com>
29338
29339 * tree-parloops.c (create_parallel_loop, gen_parallel_loop)
29340 (parallelize_loops): In OpenACC kernels mode, set n_threads to
29341 zero.
29342 (pass_parallelize_loops::gate): In OpenACC kernels mode, gate on
29343 flag_openacc.
29344 * tree-ssa-loop.c (gate_oacc_kernels): Likewise.
29345
29346 2016-02-23 Richard Biener <rguenther@suse.de>
29347
29348 * mem-stats.h (struct mem_usage): Use PRIu64 for printing size_t.
29349 * bitmap.h (struct bitmap_usage): Likewise.
29350 (bitmap_move): Declare.
29351 * bitmap.c (register_overhead): Take size_t argument.
29352 (bitmap_move): New function.
29353 * df-problems.c (df_rd_transfer_function): Use bitmap_move
29354 to properly account overhead.
29355 * tree.c (free_node): Use tree_size.
29356
29357 2016-02-23 Jakub Jelinek <jakub@redhat.com>
29358
29359 PR c++/69902
29360 * fold-const.c (fold_truth_not_expr): Propagate TREE_NO_WARNING
29361 when inverting comparison.
29362
29363 PR c/69900
29364 * common.opt (Wunreachable-code): Add Warning flag.
29365
29366 2016-02-23 Mark Wielaard <mjw@redhat.com>
29367 Jakub Jelinek <jakub@redhat.com>
29368
29369 PR c/69911
29370 * cgraphunit.c (check_global_declaration): Check main_input_filename
29371 and DECL_SOURCE_FILE are not NULL.
29372
29373 2016-02-23 Martin Jambor <mjambor@suse.cz>
29374
29375 PR tree-optimization/69666
29376 * tree-sra.c (sra_modify_assign): Do not attempt to create
29377 default_def replacements for unscalarizable regions.
29378
29379 2016-02-20 Mark Wielaard <mjw@redhat.com>
29380
29381 PR c/28901
29382 * cgraphunit.c (check_global_declaration): Check level of
29383 warn_unused_const_variable and main_input_filename.
29384 * doc/invoke.texi (Warning Options): Add -Wunused-const-variable=.
29385 (-Wunused-variable): For C implies -Wunused-const-variable=1.
29386 (-Wunused-const-variable): Explain levels 1 and 2.
29387
29388 2016-02-22 Jakub Jelinek <jakub@redhat.com>
29389
29390 PR target/69888
29391 * config/i386/i386.c (decide_alg): Ensure we don't recurse with
29392 identical arguments. Formatting and spelling fixes.
29393
29394 PR target/69885
29395 * doc/md.texi (ashl@var{m}3): Document that mode of operand 2 must
29396 be specified.
29397
29398 PR target/69894
29399 PR target/69895
29400 * config/m68k/t-opts (OPTIONS_H_EXTRA): Add m68k-microarchs.def
29401 and m68k-devices.def.
29402 * config/c6x/t-c6x (OPTIONS_H_EXTRA): Add c6x-isas.def.
29403 * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add aarch64-arches.def.
29404
29405 2016-02-22 Cesar Philippidis <cesar@codesourcery.com>
29406
29407 * config/nvptx/nvptx.c (nvptx_gen_shuffle): Add support for QImode
29408 and HImode registers.
29409
29410 2016-02-22 Richard Biener <rguenther@suse.de>
29411
29412 PR tree-optimization/69882
29413 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Properly
29414 preserve permutations present because of gaps.
29415 (vect_supported_load_permutation_p): Always continue checking
29416 permutations after vect_attempt_slp_rearrange_stmts.
29417
29418 2016-02-22 Bin Cheng <bin.cheng@arm.com>
29419
29420 * tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump
29421 min_profitable_estimate, rather than min_profitable_iters.
29422
29423 2016-02-22 Jakub Jelinek <jakub@redhat.com>
29424
29425 PR target/69885
29426 * config/m68k/m68k.md (ashldi3, ashrdi3, lshrdi3): Use
29427 SImode for last match_operand.
29428
29429 2016-02-22 Martin Liska <mliska@suse.cz>
29430
29431 * hsa-gen.c (gen_hsa_clrsb): In case of zero value,
29432 return bitsize - 1 as the return value.
29433
29434 2016-02-22 Oleg Endo <olegendo@gcc.gnu.org>
29435
29436 PR target/69806
29437 PR target/54089
29438 * config/sh/sh.c (sh_lshrsi_clobbers_t_reg_p, sh_dynamicalize_shift_p):
29439 Handle negative shift counts.
29440 * config/sh/sh.md (ashlsi3, lshrsi3_n, lshrsi3_n_clobbers_t): Don't use
29441 force_reg on the shift constant.
29442 (lshrsi3): Likewise. Expand into lshrsi3_n* instead of lshrsi3_d.
29443 (lshrsi3_d): Handle negative shift counts.
29444
29445 2016-02-22 Richard Biener <rguenther@suse.de>
29446 Tom de Vries <tom@codesourcery.com>
29447
29448 * graph.c: Include dumpfile.h.
29449 (print_graph_cfg): Split into three overloads.
29450 * gdbhooks.py (class DotFn): Add and instantiate, adding command dot-fn.
29451
29452 2016-02-22 Tom de Vries <tom@codesourcery.com>
29453
29454 * gdbhooks.py (class DumpFn): Add and instantiate, adding command
29455 dump-fn.
29456
29457 2016-02-22 Richard Biener <rguenther@suse.de>
29458
29459 PR ipa/37448
29460 * ipa-inline-transform.c (inline_call): When not updating
29461 overall summaries adjust self size by the growth estimate.
29462 * ipa-inline.c (inline_to_all_callers_1): Add to the callers
29463 hash-set, do not update overall summaries here. Renamed from ...
29464 (inline_to_all_callers): ... this which is now wrapping the
29465 above and performing delayed overall summary update.
29466 (early_inline_small_functions): Delay updating of the overall
29467 summary.
29468
29469 2016-02-21 Markus Trippelsdorf <markus@trippelsdorf.de>
29470
29471 * tree-chkp.c (chkp_mark_invalid_bounds_walker): Initialize
29472 variable.
29473
29474 2016-02-19 Jakub Jelinek <jakub@redhat.com>
29475
29476 PR driver/69805
29477 * gcc.c (LINK_COMMAND_SPEC, GOMP_SELF_SPECS): Use
29478 :%* in %:gt() argument.
29479 (greater_than_spec_func): Adjust for expecting only numbers,
29480 if there are more than two numbers, compare the last two.
29481
29482 2016-02-19 Jonathan Wakely <jwakely@redhat.com>
29483
29484 * doc/invoke.texi (C++ Dialect Options): Clarify interaction of
29485 -Wnarrowing with -std.
29486
29487 2016-02-19 Jakub Jelinek <jakub@redhat.com>
29488
29489 PR c++/69851
29490 * expr.c (store_field): Don't use bit-field path if exp is
29491 COMPONENT_REF with TREE_ADDRESSABLE type, where TYPE_SIZE is
29492 different from bitsize, but DECL_SIZE of FIELD_DECL is bitsize
29493 and the assignment can be performed by bitwise copy. Formatting
29494 fix.
29495
29496 PR middle-end/69838
29497 * lra.c (lra_process_new_insns): If non-call exceptions are enabled,
29498 call copy_reg_eh_region_note_forward on before and/or after sequences
29499 and remove note from insn if it no longer can throw.
29500
29501 PR target/69820
29502 * config/i386/sse.md (VI_512): Only include V64QImode and V32HImode
29503 if TARGET_AVX512BW.
29504
29505 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
29506
29507 * config/s390/vector.md: Add missing commutative operand markers
29508 to the patterns which qualify for one.
29509 * config/s390/vx-builtins.md: Likewise.
29510
29511 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
29512
29513 * config/s390/vector.md (VI, VI_QHS): Add single element vector
29514 types to mode iterators.
29515 (vec_double): ... and mode attribute.
29516 * config/s390/vx-builtins.md (non_vec_int): Likewise.
29517
29518 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
29519
29520 * config/s390/vector.md ("<ti*>add<mode>3", "<ti*>sub<mode>3"):
29521 Change the predicate of op2 from nonimmediate to general and let
29522 reload fix it if necessary.
29523
29524 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
29525
29526 * config/s390/vecintrin.h (vec_sub_u128): Define missing macro.
29527
29528 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
29529
29530 * config/s390/s390.c (s390_expand_vcond): Use the compare operand
29531 mode.
29532
29533 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
29534
29535 * config/s390/s390-protos.h: Add s390_expand_vec_movstr prototype.
29536 * config/s390/s390.c (s390_expand_vec_movstr): New function.
29537 * config/s390/s390.md ("movstr<P:mode>"): Call
29538 s390_expand_vec_movstr.
29539
29540 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
29541
29542 * config/s390/s390.md: Add missing output modifier for operand 1
29543 to print it as address properly.
29544
29545 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
29546
29547 * config/s390/2827.md: Rename ooo_* insn attributes to zEC12_*.
29548 * config/s390/2964.md: New file.
29549 * config/s390/s390.c (s390_get_sched_attrmask): Use the right set
29550 of insn grouping attributes depending on the CPU level.
29551 (s390_get_unit_mask): New function.
29552 (s390_sched_score): Remove the OOO from the scheduling macros.
29553 Add loop to calculate a score for the instruction mix.
29554 (s390_sched_reorder): Likewise plus improve debug output.
29555 (s390_sched_variable_issue): Rename macros as above. Calculate
29556 the unit distances after actually scheduling an insn. Improve
29557 debug output.
29558 (s390_sched_init): Clear last_scheduled_unit_distance array.
29559 * config/s390/s390.md: Include 2964.md.
29560
29561 2016-02-18 Jakub Jelinek <jakub@redhat.com>
29562
29563 PR target/69671
29564 * config/i386/sse.md (*<floatsuffix>floatv2div2sf2_mask_1,
29565 *avx512vl_<code>v2div2qi2_mask_1, *avx512vl_<code><mode>v4qi2_mask_1,
29566 *avx512vl_<code><mode>v8qi2_mask_1, *avx512vl_<code><mode>v4hi2_mask_1,
29567 *avx512vl_<code>v2div2hi2_mask_1, *avx512vl_<code>v2div2si2_mask_1,
29568 *avx512f_<code>v8div16qi2_mask_1): New insns.
29569
29570 2016-02-18 Michael Meissner <meissner@linux.vnet.ibm.com>
29571
29572 PR target/68404
29573 * config/rs6000/predicates.md (fusion_gpr_addis): Revert
29574 2016-02-09 change.
29575
29576 * config/rs6000/rs6000.md (fusion_gpr_load_<mode>): Remove
29577 earlyclobber from target. Use wF constraint for fused memory
29578 address.
29579 (fusion_gpr_<P:mode>_<GPR_FUSION:mode>_load): Likewise.
29580
29581 2016-02-18 Jakub Jelinek <jakub@redhat.com>
29582 Martin Liska <mliska@suse.cz>
29583
29584 PR sanitizer/69863
29585 * cfgexpand.c (asan_sanitize_stack_p): New function.
29586 (partition_stack_vars): Use the function.
29587 (expand_stack_vars): Likewise.
29588 (defer_stack_allocation): Likewise.
29589 (expand_used_vars): Likewise.
29590
29591 2016-02-18 Richard Biener <rguenther@suse.de>
29592
29593 PR middle-end/69553
29594 * fold-const.c (operand_equal_p): Properly compare offsets for
29595 IMAGPART_EXPR and ARRAY_REF.
29596
29597 2016-02-18 Nick Clifton <nickc@redhat.com>
29598
29599 PR target/62254
29600 PR target/69610
29601 * config/arm/arm.c (arm_option_override_internal): Disable
29602 interworking if the target does not support thumb instructions.
29603 (arm_reload_in_hi): Handle the case where a register to register
29604 move needs reloading because there is no simple pattern to handle
29605 it.
29606 (arm_reload_out_hi): Likewise.
29607
29608 2016-02-18 Richard Biener <rguenther@suse.de>
29609
29610 PR middle-end/69854
29611 * match.pd: Don't use fold_binary or fold_unary for folding
29612 constants.
29613
29614 2016-02-17 Jakub Jelinek <jakub@redhat.com>
29615
29616 PR c++/69850
29617 * gimplify.c (gimplify_cond_expr): Call gimple_set_no_warning
29618 on the cond_stmt from TREE_NO_WARNING on COND_EXPR_COND.
29619 * gimple-ssa-nonnull-compare.c (do_warn_nonnull_compare): Don't
29620 warn on gimple_no_warning_p statements.
29621
29622 2016-02-17 Jonathan Wakely <jwakely@redhat.com>
29623
29624 * doc/extend.texi (C++ Attributes): Correct description of
29625 warn_unused type attribute.
29626
29627 2016-02-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
29628
29629 * config/rs6000/altivec.md (*altivec_lvxl_<mode>_internal): Output
29630 correct instruction.
29631
29632 2016-02-17 Richard Biener <rguenther@suse.de>
29633
29634 PR rtl-optimization/69609
29635 * bb-reorder.c (struct bbro_basic_block_data): Add priority member.
29636 (find_traces_1_round): When ending a trace update cached priority
29637 of successors.
29638 (bb_to_key): Use cached priority when available.
29639 (copy_bb): Initialize cached priority.
29640 (reorder_basic_blocks_software_trace_cache): Likewise.
29641
29642 2016-02-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29643
29644 PR target/69161
29645 * config/aarch64/predicates.md (aarch64_comparison_operator_mode):
29646 New predicate.
29647 (aarch64_comparison_operator): Break overly long line into two.
29648 (aarch64_comparison_operation): Likewise.
29649 * config/aarch64/aarch64.md (cstorecc4): Use
29650 aarch64_comparison_operator_mode instead of
29651 aarch64_comparison_operator.
29652 (cstore<mode>4): Likewise.
29653 (aarch64_cstore<mode>): Likewise.
29654 (*cstoresi_insn_uxtw): Likewise.
29655 (cstore<mode>_neg): Likewise.
29656 (*cstoresi_neg_uxtw): Likewise.
29657
29658 2016-02-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29659
29660 PR target/69161
29661 * config/arm/predicates.md (arm_comparison_operator_mode):
29662 New predicate.
29663 * config/arm/arm.md (*mov_scc): Use arm_comparison_operator_mode
29664 instead of arm_comparison_operator.
29665 (*mov_negscc): Likewise.
29666 (*mov_notscc): Likewise.
29667 * config/arm/thumb2.md (*thumb2_mov_scc): Likewise.
29668 (*thumb2_mov_negscc): Likewise.
29669 (*thumb2_mov_negscc_strict_it): Likewise.
29670 (*thumb2_mov_notscc): Likewise.
29671 (*thumb2_mov_notscc_strict_it): Likewise.
29672
29673 2016-02-17 Wilco Dijkstra <wdijkstr@arm.com>
29674
29675 * config/aarch64/aarch64.c (aarch64_internal_mov_immediate):
29676 Add missing return.
29677
29678 2016-02-17 Eric Botcazou <ebotcazou@adacore.com>
29679
29680 * config/visium/visium.c (machine_libfunc_index): New enum.
29681 (machine_libfuncs): New structure.
29682 (visium_libfuncs): New static variable.
29683 (TARGET_INIT_LIBFUNCS): Define to...
29684 (visium_init_libfuncs): ...this. New function.
29685 (expand_block_move_4): Use the appropriate libfunc.
29686 (expand_block_move_2): Likewise.
29687 (expand_block_move_1): Likewise.
29688 (expand_block_set_4): Likewise.
29689 (expand_block_set_2): Likewise.
29690 (expand_block_set_1): Likewise.
29691 (visium_trampoline_init): Likewise.
29692
29693 2016-02-17 Nick Clifton <nickc@redhat.com>
29694
29695 * config/msp430/msp430.c (msp430_mcu_data): Sync with data from
29696 TI's devices.csv file as of March 2016.
29697
29698 2016-02-16 Kelvin Nilsen <kelvin@gcc.gnu.org>
29699
29700 PR Target/48344
29701 * opts-global.c (handle_common_deferred_options): Introduce and
29702 initialize two global variables to remember command-line options
29703 specifying a stack-limiting register.
29704 * opts.h: Add extern declarations of the two new global variables.
29705 * emit-rtl.c (init_emit_once): Initialize the stack_limit_rtx
29706 variable based on the values of the two new global variables.
29707
29708 2016-02-16 Jakub Jelinek <jakub@redhat.com>
29709
29710 PR c/69835
29711 * common.opt (Wnonnull-compare): New warning.
29712 * doc/invoke.texi (-Wnonnull): Remove text about comparison
29713 of arguments against NULL.
29714 (-Wnonnull-compare): Document.
29715 * Makefile.in (OBJS): Add gimple-ssa-nonnull-compare.o.
29716 * tree-pass.h (make_pass_warn_nonnull_compare): Declare.
29717 * passes.def (pass_warn_nonnull_compare): Add.
29718 * gimple-ssa-nonnull-compare.c: New file.
29719
29720 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
29721
29722 * config/aarch64/aarch64.c (cortexa57_tunings): Remove
29723 AARCH64_EXTRA_TUNE_RECIP_SQRT.
29724
29725 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
29726
29727 * config/aarch64/aarch64.c (use_rsqrt_p): Always use software
29728 reciprocal sqrt for -mlow-precision-recip-sqrt.
29729
29730 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
29731 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
29732
29733 * config/aarch64/aarch64.c (aarch64_expand_vector_init): Refactor,
29734 always use lane loads to construct non-constant vectors.
29735
29736 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
29737
29738 * config/aarch64/aarch64.md
29739 (arch64_sqrdml<SQRDMLH_AS:rdma_as>h_lane<mode>): Fix register
29740 constraints for operand 3.
29741 (aarch64_sqrdml<SQRDMLH_AS:rdma_as>h_laneq<mode>): Likewise.
29742
29743 2016-02-16 Jakub Jelinek <jakub@redhat.com>
29744 Richard Biener <rguenther@suse.de>
29745
29746 PR tree-optimization/69820
29747 * tree-vect-patterns.c (type_conversion_p): Return false if
29748 *orig_type is unsigned single precision or boolean.
29749 (vect_recog_dot_prod_pattern, vect_recog_widen_mult_pattern):
29750 Formatting fix.
29751
29752 2016-02-16 Jakub Jelinek <jakub@redhat.com>
29753
29754 PR rtl-optimization/69764
29755 PR rtl-optimization/69771
29756 * optabs.c (expand_binop): Ensure for shift optabs invalid CONST_INT
29757 op1 is valid for GET_MODE_INNER (mode) and force it into a reg.
29758
29759 2016-02-16 Richard Biener <rguenther@suse.de>
29760
29761 PR tree-optimization/69776
29762 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Get alias
29763 sets from caller.
29764 (indirect_refs_may_alias_p): Likewise.
29765 (refs_may_alias_p_1): Pass alias sets as from ao_ref.
29766 * tree-ssa-sccvn.c (vn_reference_lookup): Also adjust vr alias-set
29767 according to tbaa_p.
29768 * tree-ssa-dom.c (lookup_avail_expr): Add tbaa_p flag.
29769 (optimize_stmt): For redundant store discovery do not allow tbaa.
29770
29771 2016-02-16 Bernd Schmidt <bschmidt@redhat.com>
29772
29773 PR tree-optimization/69714
29774 * tree-ssa-math-opts.c (find_bswap_or_nop): Revert previous change.
29775 Return NULL if we have irrelevant high bytes on BIG_ENDIAN.
29776
29777 2016-02-16 Claudiu Zissulescu <claziss@synopsys.com>
29778
29779 * config/arc/arc-modes.def (CC_FPU, CC_FPU_UNEQ): New modes.
29780 * config/arc/arc-opts.h (FPU_SP, FPU_SF, FPU_SC, FPU_SD, FPU_DP)
29781 (FPU_DF, FPU_DC, FPU_DD, FXP_DP): Define.
29782 * config/arc/arc.c (arc_init): Check FPU options.
29783 (get_arc_condition_code): Handle new CC_FPU* modes.
29784 (arc_select_cc_mode): Likewise.
29785 (arc_conditional_register_usage): Allow 64 bit datum into even-odd
29786 register pair only. Allow access for ARCv2 accumulator.
29787 (gen_compare_reg): Whenever we have FPU support use FPU compare
29788 instructions.
29789 (arc_reorg): Don't generate brcc insns when FPU compare
29790 instructions are involved.
29791 * config/arc/arc.h (TARGET_DPFP): Add TARGET_FP_DPAX condition.
29792 (TARGET_OPTFPE): Add condition when ARC EM can use optimized
29793 floating point emulation.
29794 (ACC_REG_FIRST, ACC_REG_LAST, ACCL_REGNO, ACCH_REGNO): Define.
29795 (REVERSE_CONDITION): Add new CC_FPU* modes.
29796 (TARGET_FP_SP_BASE): Define.
29797 (TARGET_FP_DP_BASE): Likewise.
29798 (TARGET_FP_SP_FUSED): Likewise.
29799 (TARGET_FP_DP_FUSED): Likewise.
29800 (TARGET_FP_SP_CONV): Likewise.
29801 (TARGET_FP_DP_CONV): Likewise.
29802 (TARGET_FP_SP_SQRT): Likewise.
29803 (TARGET_FP_DP_SQRT): Likewise.
29804 (TARGET_FP_DP_AX): Likewise.
29805 * config/arc/arc.md (ARCV2_ACC): New constant.
29806 (type): New fpu type attribute.
29807 (SDF): Conditional iterator.
29808 (cstore<mode>, cbranch<mode>): Change expand condition.
29809 (addsf3, subsf3, mulsf3, adddf3, subdf3, muldf3): New expands,
29810 handles FPU/FPX cases as well.
29811 * config/arc/arc.opt (mfpu): New option.
29812 * config/arc/fpx.md (addsf3_fpx, subsf3_fpx, mulsf3_fpx):
29813 Renamed.
29814 (adddf3, muldf3, subdf3): Removed.
29815 * config/arc/predicates.md (proper_comparison_operator): Recognize
29816 CC_FPU* modes.
29817 * config/arc/fpu.md: New file.
29818 * doc/invoke.texi (ARC Options): Document mfpu option.
29819
29820 2016-02-16 Richard Biener <rguenther@suse.de>
29821
29822 PR rtl-optimization/69291
29823 * ifcvt.c (noce_try_store_flag_constants): Re-instantiate
29824 noce_operand_ok check.
29825
29826 2016-02-16 Tom de Vries <tom@codesourcery.com>
29827
29828 PR lto/67709
29829 * omp-low.c (simd_clone_create): Remove call to
29830 symtab->call_cgraph_insertion_hooks.
29831
29832 2016-02-16 Jakub Jelinek <jakub@redhat.com>
29833
29834 PR tree-optimization/69802
29835 * tree-ssa-reassoc.c (update_range_test): If op is
29836 SSA_NAME_IS_DEFAULT_DEF, give up unless tem is a positive
29837 op == 1 test of precision 1 integral op, otherwise handle
29838 that case as op itself. Fix up formatting.
29839 (optimize_range_tests_to_bit_test, optimize_range_tests): Fix
29840 up formatting.
29841
29842 2016-02-16 Richard Biener <rguenther@suse.de>
29843
29844 PR tree-optimization/69586
29845 * tree-vrp.c (register_edge_assert_for_2): Handle all integral
29846 types for conversion sources.
29847
29848 2016-02-16 Richard Biener <rguenther@suse.de>
29849
29850 PR middle-end/69801
29851 * fold-const.c (operand_equal_p): For COND_EXPR zero operand
29852 mask OEP_ADDRESS_OF.
29853
29854 2016-02-16 Alan Modra <amodra@gmail.com>
29855
29856 PR target/68973
29857 * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Rewrite splitter.
29858 (p8_mtvsrd_df, p8_mtvsrd_sf): New.
29859 (p8_mtvsrd_1, p8_mtvsrd_2): Delete.
29860 (p8_mtvsrwz): New.
29861 (p8_mtvsrwz_1, p8_mtvsrwz_2): Delete.
29862 (p8_xxpermdi_<mode>): Take two DF inputs rather than one TF.
29863 (p8_fmrgow_<mode>): Likewise.
29864 (reload_vsx_from_gpr<mode>): Make clobber IF. Adjust for above
29865 changes.
29866 (reload_fpr_from_gpr<mode>): Similarly. Use "d" for op0 constraint.
29867 (reload_vsx_from_gprsf): Use p8_mtvsrd_sf rather than attempting
29868 to use movdi_internal64. Remove op0_di.
29869 * config/rs6000/vsx.md (vsx_xscvspdpn_directmove): Make op1 SFmode.
29870
29871 2016-02-15 Evandro Menezes <e.menezes@samsung.com>
29872
29873 Add support for the FCCMP insn types
29874
29875 * config/aarch64/aarch64.md (fccmp): Change insn type.
29876 (fccmpe): Likewise.
29877 * config/aarch64/thunderx.md (thunderx_fcmp): Add "fccmp{s,d}" types.
29878 * config/arm/cortex-a53.md (cortex_a53_fpalu): Likewise.
29879 * config/arm/cortex-a57.md (cortex_a57_fp_cmp): Likewise.
29880 * config/arm/xgene1.md (xgene1_fcmp): Likewise.
29881 * config/arm/exynos-m1.md (exynos_m1_fp_ccmp): New insn reservation.
29882 * config/arm/types.md (fccmps): Add new insn type.
29883 (fccmpd): Likewise.
29884
29885 2016-02-15 Bernd Edlinger <bernd.edlinger@hotmail.de>
29886
29887 * alias.c (get_alias_set): Fix a typo in comment.
29888
29889 2016-02-15 Richard Biener <rguenther@suse.de>
29890
29891 PR tree-optimization/69595
29892 * match.pd: Complete range test simplification to true.
29893
29894 2016-02-15 Bernd Schmidt <bschmidt@redhat.com>
29895
29896 PR rtl-optimization/69648
29897 * lra-constraints.c (update_ebb_live_info): Don't remove sets of
29898 pic_offset_table_rtx.
29899
29900 PR rtl-optimization/69752
29901 * ira.c (update_equiv_regs): When looking for more than a single SET,
29902 also take other side effects into account.
29903
29904 2016-02-15 Marcin Kościelnicki <koriakin@0x04.net>
29905
29906 * config/s390/s390.c (s390_function_profiler): Add a new sequence
29907 for z900+ CPUs in 31-bit mode.
29908
29909 2016-02-15 Marcin Kościelnicki <koriakin@0x04.net>
29910
29911 * common/config/s390/s390-common.c (s390_supports_split_stack):
29912 New function.
29913 (TARGET_SUPPORTS_SPLIT_STACK): New macro.
29914 * config/s390/s390-protos.h: Add s390_expand_split_stack_prologue.
29915 * config/s390/s390.c (struct machine_function): New field
29916 split_stack_varargs_pointer.
29917 (s390_register_info): Mark r12 as clobbered if it'll be used as temp
29918 in s390_emit_prologue.
29919 (s390_emit_prologue): Use r12 as temp if r1 is taken by split-stack
29920 vararg pointer.
29921 (morestack_ref): New global.
29922 (SPLIT_STACK_AVAILABLE): New macro.
29923 (s390_expand_split_stack_prologue): New function.
29924 (s390_live_on_entry): New function.
29925 (s390_va_start): Use split-stack vararg pointer if appropriate.
29926 (s390_asm_file_end): Emit the split-stack note sections.
29927 (TARGET_EXTRA_LIVE_ON_ENTRY): New macro.
29928 * config/s390/s390.md (UNSPEC_STACK_CHECK): New unspec.
29929 (UNSPECV_SPLIT_STACK_CALL): New unspec.
29930 (UNSPECV_SPLIT_STACK_DATA): New unspec.
29931 (split_stack_prologue): New expand.
29932 (split_stack_space_check): New expand.
29933 (split_stack_data): New insn.
29934 (split_stack_call): New expand.
29935 (split_stack_call_*): New insn.
29936 (split_stack_cond_call): New expand.
29937 (split_stack_cond_call_*): New insn.
29938
29939 2016-02-15 Richard Biener <rguenther@suse.de>
29940
29941 PR tree-optimization/69783
29942 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
29943 Add trivially correct cases.
29944
29945 2016-02-15 Tom de Vries <tom@codesourcery.com>
29946
29947 PR lto/69655
29948 * lto-cgraph.c (input_offload_tables): Add and handle bool parameter
29949 do_force_output.
29950 * lto-streamer.h (input_offload_tables): Add and handle bool parameter.
29951
29952 2016-02-15 Richard Biener <rguenther@suse.de>
29953
29954 PR tree-optimization/69776
29955 * tree-ssa-sccvn.h (vn_reference_lookup): Adjust prototype.
29956 * tree-ssa-sccvn.c (vn_reference_lookup): Add parameter to
29957 indicate whether we can use TBAA to disambiguate against stores.
29958 Use alias-set zero if not.
29959 (visit_reference_op_store): Do not use TBAA when looking up
29960 redundant stores.
29961 * tree-ssa-pre.c (compute_avail): Use TBAA here.
29962 (eliminate_dom_walker::before_dom_children): But not when looking
29963 up redundant stores.
29964
29965 2016-02-14 John David Anglin <danglin@gcc.gnu.org>
29966
29967 * config/pa/pa.md (absqi2, absghi2, bswaphi2, bswapsi2, bswapdi2): New.
29968
29969 2016-02-14 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
29970
29971 * config/i386/znver1.md
29972 (znver1_pop, znver1_pop_mem,
29973 znver1_load_imov_double_store,
29974 znver1_load_imov_direct_store,
29975 znver1_load_imov_direct_load,
29976 znver1_load_imov_double_load): Add new.
29977 (znver1_insn, znver1_insn_load): Add icmov type.
29978 (znver1_sseavx_fma,
29979 znver1_sseavx_fma_load,
29980 znver1_avx256_fma,
29981 znver1_avx256_fma_load): Fix pipe usage.
29982
29983 2016-02-14 Alan Modra <amodra@gmail.com>
29984
29985 PR target/68973
29986 * reload.c (find_reloads_address_1): For pre/post-inc/dec
29987 with an invalid hard reg, reload just the reg not the entire
29988 pre/post-inc/dec address expression.
29989
29990 2016-02-13 Oleg Endo <olegendo@gcc.gnu.org>
29991
29992 PR target/67260
29993 * config/sh/sh.md (sibcall_value_pcrel): Replace =&k scratch reg with
29994 fixed R1_REG scratch reg.
29995 (sibcall_value_pcrel_fdpic): Likewise.
29996
29997 2016-02-13 Oleg Endo <olegendo@gcc.gnu.org>
29998
29999 PR target/67636
30000 PR target/64345
30001 * config/sh/sh.md (*zero_extract_3): New insn_and_split pattern.
30002
30003 2016-02-12 Walter Lee <walt@tilera.com>
30004
30005 * config/tilepro/t-tilepro: Replace CC_FOR_BUILD with CXX_FOR_BUILD.
30006 * config/tilegx/t-tilegx: Likewise.
30007
30008 2016-02-12 David Malcolm <dmalcolm@redhat.com>
30009
30010 PR other/69554
30011 * diagnostic-show-locus.c (struct line_span): New struct.
30012 (layout::get_first_line): Delete.
30013 (layout::get_last_line): Delete.
30014 (layout::get_num_line_spans): New member function.
30015 (layout::get_line_span): Likewise.
30016 (layout::print_heading_for_line_span_index_p): Likewise.
30017 (layout::get_expanded_location): Likewise.
30018 (layout::calculate_line_spans): Likewise.
30019 (layout::m_first_line): Delete.
30020 (layout::m_last_line): Delete.
30021 (layout::m_line_spans): New field.
30022 (layout::layout): Update comment. Replace m_first_line and
30023 m_last_line with m_line_spans, replacing their initialization
30024 with a call to calculate_line_spans.
30025 (diagnostic_show_locus): When printing source lines and
30026 annotations, rather than looping over a single span
30027 of lines, instead loop over each line_span within
30028 the layout, with an inner loop over the lines within them.
30029 Call the context's start_span callback when changing line spans.
30030 * diagnostic.c (diagnostic_initialize): Initialize start_span.
30031 (diagnostic_build_prefix): Break out the building of the location
30032 part of the string into...
30033 (diagnostic_get_location_text): ...this new function, rewriting
30034 it from nested ternary expressions to a sequence of "if"
30035 statements.
30036 (default_diagnostic_start_span_fn): New function.
30037 * diagnostic.h (diagnostic_start_span_fn): New typedef.
30038 (diagnostic_context::start_span): New field.
30039 (default_diagnostic_start_span_fn): New prototype.
30040
30041 2016-02-12 David Malcolm <dmalcolm@redhat.com>
30042
30043 PR driver/69779
30044 * gcc.c (driver::finalize): Fix cleanup of "specs".
30045
30046 2016-02-12 David Malcolm <dmalcolm@redhat.com>
30047
30048 PR driver/69265
30049 PR driver/69453
30050 * gcc.c (driver::driver): Initialize m_option_suggestions.
30051 (driver::~driver): Clean up m_option_suggestions.
30052 (suggest_option): Convert to...
30053 (driver::suggest_option): ...this, and split out into
30054 driver::build_option_suggestions and find_closest_string.
30055 (driver::build_option_suggestions): New function, from
30056 first half of suggest_option. Special-case
30057 OPT_fsanitize_ and OPT_fsanitize_recover_, making use of
30058 the sanitizer_opts array. For options of enum types, add the
30059 various enum values to the candidate strings.
30060 (driver::handle_unrecognized_options): Remove "const".
30061 * gcc.h (driver::handle_unrecognized_options): Likewise.
30062 (driver::build_option_suggestions): New decl.
30063 (driver::suggest_option): New decl.
30064 (driver::m_option_suggestions): New field.
30065 * opts-common.c (add_misspelling_candidates): New function.
30066 * opts.c (sanitizer_opts): Remove decl of struct sanitizer_opts_s
30067 and make non-static.
30068 * opts.h (sanitizer_opts): New array decl.
30069 (add_misspelling_candidates): New function decl.
30070 * spellcheck.c (find_closest_string): New function.
30071 * spellcheck.h (find_closest_string): New function decl.
30072
30073 2016-02-12 Jakub Jelinek <jakub@redhat.com>
30074
30075 PR rtl-optimization/69764
30076 PR rtl-optimization/69771
30077 * optabs.c (expand_binop_directly): For shift_optab_p, force
30078 convert_modes with VOIDmode if xop1 has VOIDmode.
30079
30080 2016-02-12 Ilya Enkovich <enkovich.gnu@gmail.com>
30081
30082 PR target/69729
30083 * lto-streamer-out.c (lto_output): Use thunk.add_pointer_bounds_args
30084 to correctly determine instrumentation thunks.
30085
30086 2016-02-12 Jakub Jelinek <jakub@redhat.com>
30087
30088 PR ipa/69241
30089 * ipa-split.c (split_function): If split part returns TREE_ADDRESSABLE
30090 type by reference, force lhs on the call.
30091
30092 PR ipa/68672
30093 * ipa-split.c (split_function): Don't compute/use main_part_return_p.
30094 Compute retval and retbnd early in all cases if split_part_return_p
30095 and return_bb is not EXIT. Remove all clobber stmts and reset
30096 all debug stmts that refer to SSA_NAMEs defined in split part,
30097 except if it is retval, in that case replace the old retval with the
30098 lhs of the call to the split part.
30099
30100 2016-02-12 Kugan Vivekanandarajah <kuganv@linaro.org>
30101
30102 revert:
30103 2016-02-12 Kugan Vivekanandarajah <kuganv@linaro.org>
30104
30105 PR middle-end/66726
30106 * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
30107 whose result is used in PHI.
30108 (maybe_optimize_range_tests): Likewise.
30109 (final_range_test_p): Likweise.
30110
30111 2016-02-12 Kugan Vivekanandarajah <kuganv@linaro.org>
30112
30113 PR middle-end/66726
30114 * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
30115 whose result is used in PHI.
30116 (maybe_optimize_range_tests): Likewise.
30117 (final_range_test_p): Likweise.
30118
30119 2016-02-12 Jakub Jelinek <jakub@redhat.com>
30120
30121 * cgraph.c: Spelling fixes - behaviour -> behavior and
30122 neighbour -> neighbor.
30123 * target.def: Likewise.
30124 * sel-sched.c: Likewise.
30125 * config/mips/mips.c: Likewise.
30126 * config/arc/arc.md: Likewise.
30127 * config/arm/cortex-a57.md: Likewise.
30128 * config/arm/arm.c: Likewise.
30129 * config/arm/neon.md: Likewise.
30130 * config/arm/arm-c.c: Likewise.
30131 * config/vms/vms-c.c: Likewise.
30132 * config/s390/s390.c: Likewise.
30133 * config/i386/znver1.md: Likewise.
30134 * config/i386/i386.c: Likewise.
30135 * config/ia64/hpux-unix2003.h: Likewise.
30136 * config/msp430/msp430.md: Likewise.
30137 * config/rx/rx.c: Likewise.
30138 * config/rx/rx.md: Likewise.
30139 * config/aarch64/aarch64-simd.md: Likewise.
30140 * config/aarch64/aarch64.c: Likewise.
30141 * config/nvptx/nvptx.c: Likewise.
30142 * config/bfin/bfin.c: Likewise.
30143 * config/cris/cris.opt: Likewise.
30144 * config/rs6000/rs6000.c: Likewise.
30145 * target.h: Likewise.
30146 * spellcheck.c: Likewise.
30147 * ira-build.c: Likewise.
30148 * tree-inline.c: Likewise.
30149 * builtins.c: Likewise.
30150 * lra-constraints.c: Likewise.
30151 * explow.c: Likewise.
30152 * hwint.h: Likewise.
30153 * targhooks.c: Likewise.
30154 * tree-vect-data-refs.c: Likewise.
30155 * expr.c: Likewise.
30156 * doc/tm.texi: Likewise.
30157 * doc/extend.texi: Likewise.
30158 * doc/install.texi: Likewise.
30159 * doc/md.texi: Likewise.
30160 * tree-ssa-tail-merge.c: Likewise.
30161 * sched-int.h: Likewise.
30162 * match.pd: Likewise.
30163 * sched-ebb.c: Likewise.
30164 * target.def (omit_struct_return_reg): Likewise.
30165 * gimple-ssa-isolate-paths.c: Likewise.
30166 (find_implicit_erroneous_behaviour): Renamed to...
30167 (find_implicit_erroneous_behavior): ... this.
30168 (find_explicit_erroneous_behaviour): Renamed to...
30169 (find_explicit_erroneous_behavior): ... this.
30170 (gimple_ssa_isolate_erroneous_paths): Adjust caller.
30171
30172 2016-02-11 Segher Boessenkool <segher@kernel.crashing.org>
30173
30174 PR rtl-optimization/64682
30175 PR rtl-optimization/69567
30176 PR rtl-optimization/69737
30177 * combine.c (distribute_notes) <REG_DEAD>: If the register is set
30178 in I2 as well, just lose it.
30179
30180 2016-02-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30181
30182 * config/aarch64/aarch64.c (aarch64_last_printed_arch_string):
30183 New variable.
30184 (aarch64_last_printed_tune_string): Likewise.
30185 (aarch64_declare_function_name): Only output .arch assembler
30186 directive if it will be different from the previously output
30187 directive. Same for .tune comment but only if -dA is set.
30188 (aarch64_start_file): New function.
30189 (TARGET_ASM_FILE_START): Define.
30190
30191 2016-02-11 David Malcolm <dmalcolm@redhat.com>
30192
30193 PR plugins/69758
30194 * Makefile.in (PLUGIN_HEADERS): Add params.list.
30195
30196 2016-02-11 Jakub Jelinek <jakub@redhat.com>
30197
30198 PR target/65313
30199 * tree-vect-slp.c (vect_schedule_slp_instance): Avoid
30200 -Wmaybe-uninitialized warning.
30201
30202 2016-02-11 Oleg Endo <olegendo@gcc.gnu.org>
30203
30204 PR target/69713
30205 * config/sh/sh.md (casesi_worker_0): Add T_REG use.
30206
30207 2016-02-11 Richard Biener <rguenther@suse.de>
30208
30209 PR rtl-optimization/69291
30210 * ifcvt.c (noce_try_store_flag_constants): Do not allow
30211 subexpressions affected by changing the result.
30212
30213 2016-02-10 Vladimir Makarov <vmakarov@redhat.com>
30214
30215 PR target/69148
30216 * lra-constraints.c (curr_insn_transform): Find in/out operands
30217 for secondary memory moves. Update dups.
30218
30219 2016-02-10 Yuri Rumyantsev <ysrumyan@gmail.com>
30220
30221 PR tree-optimization/69652
30222 * tree-vect-loop.c (optimize_mask_stores): Move declaration of STMT1
30223 to nested loop, did source re-formatting, skip debug statements,
30224 add check on statement with volatile operand, remove dead scalar
30225 statements.
30226
30227 2016-02-10 Jakub Jelinek <jakub@redhat.com>
30228 Patrick Palka <ppalka@gcc.gnu.org>
30229
30230 PR ipa/69241
30231 PR c++/69649
30232 * gimplify.c (gimplify_modify_expr): Set lhs even for noreturn
30233 calls if the return type is TREE_ADDRESSABLE.
30234 * cgraphunit.c (cgraph_node::expand_thunk): Likewise.
30235 * ipa-split.c (split_function): Fix doubled "we" in comment.
30236 Use void return type for the split part even if
30237 !split_point->split_part_set_retval.
30238
30239 2016-02-10 Bin Cheng <bin.cheng@arm.com>
30240
30241 PR tree-optimization/68021
30242 * tree-ssa-loop-ivopts.c (get_computation_aff): Set ratio to 1 if
30243 when computing the value of biv cand by itself.
30244
30245 2016-02-10 Wilco Dijkstra <wdijkstr@arm.com>
30246
30247 * config/aarch64/aarch64.c (cortexa53_tunings): Enable AES fusion.
30248 (cortexa57_tunings): Likewise.
30249 (cortexa72_tunings): Likewise.
30250 (arch_macro_fusion_pair_p): Add support for AES fusion.
30251 * config/aarch64/aarch64-fusion-pairs.def: Add AES_AESMC entry.
30252 * config/arm/aarch-common.c (aarch_crypto_can_dual_issue):
30253 Allow virtual registers before reload so early scheduling works.
30254 * config/arm/cortex-a57.md (cortex_a57_crypto_simple): Use
30255 correct latency and pipeline.
30256 (cortex_a57_crypto_complex): Likewise.
30257 (cortex_a57_crypto_xor): Likewise.
30258 (define_bypass): Add AES bypass.
30259
30260 2016-02-10 Richard Biener <rguenther@suse.de>
30261
30262 PR tree-optimization/69726
30263 * passes.def: Add DCE pass before late uninit.
30264 * match.pd: Add A ? B : (!A ? C : X) -> A ? B : C patterns to
30265 really fixup if-conversions job.
30266
30267 2016-02-10 Wilco Dijkstra <wdijkstr@arm.com>
30268
30269 * config/arm/arm.c (arm_cortex_a53_tune): Enable AES fusion.
30270 (arm_cortex_a57_tune): Likewise.
30271 (aarch_macro_fusion_pair_p): Add support for AES fusion.
30272 * config/arm/arm-protos.h (fuse_ops): Add FUSE_AES_AESMC.
30273
30274 2016-02-10 Eric Botcazou <ebotcazou@adacore.com>
30275
30276 * timevar.def (TV_PHASE_DBGINFO): Delete.
30277 (TV_PHASE_CHECK_DBGINFO): Likewise.
30278 * varpool.c (varpool_node::assemble_decl): Do not change timevar.
30279
30280 2016-02-10 Richard Biener <rguenther@suse.de>
30281
30282 PR tree-optimization/69719
30283 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
30284 Adjust previous fix by ensuring that dr_a1 is left of dr_a2.
30285
30286 2016-02-09 Andrew Pinski <apinski@cavium.com>
30287
30288 PR tree-opt/69282
30289 * optabs-tree.c (expand_vec_cond_expr_p): Don't early return if
30290 get_vcond_mask_icode returns false.
30291
30292 2016-02-09 Michael Meissner <meissner@linux.vnet.ibm.com>
30293
30294 PR target/68404
30295 * config/rs6000/predicates.md (fusion_gpr_addis): Prevent fusing
30296 an ADDIS that adds a pointer to a large constant that sets the
30297 upper16 bits with a load operation.
30298
30299 2016-02-09 Charles Baylis <charles.baylis@linaro.org>
30300
30301 PR target/68532
30302 * config/arm/arm.c (arm_evpc_neon_vzip): Allow for big endian lane
30303 order.
30304 * config/arm/arm_neon.h (vzipq_s8): Adjust shuffle patterns for big
30305 endian.
30306 (vzipq_s16): Likewise.
30307 (vzipq_s32): Likewise.
30308 (vzipq_f32): Likewise.
30309 (vzipq_u8): Likewise.
30310 (vzipq_u16): Likewise.
30311 (vzipq_u32): Likewise.
30312 (vzipq_p8): Likewise.
30313 (vzipq_p16): Likewise.
30314
30315 2016-02-09 Charles Baylis <charles.baylis@linaro.org>
30316
30317 PR target/68532
30318 * config/arm/arm.c (neon_endian_lane_map): New function.
30319 (neon_vector_pair_endian_lane_map): New function.
30320 (arm_evpc_neon_vuzp): Allow for big endian lane order.
30321 * config/arm/arm_neon.h (vuzpq_s8): Adjust shuffle patterns for big
30322 endian.
30323 (vuzpq_s16): Likewise.
30324 (vuzpq_s32): Likewise.
30325 (vuzpq_f32): Likewise.
30326 (vuzpq_u8): Likewise.
30327 (vuzpq_u16): Likewise.
30328 (vuzpq_u32): Likewise.
30329 (vuzpq_p8): Likewise.
30330 (vuzpq_p16): Likewise.
30331
30332 2016-02-11 Alexandre Oliva <aoliva@redhat.com>
30333
30334 PR target/69634
30335 * regstat.c (regstat_bb_compute_calls_crossed): Disregard
30336 debug insns.
30337
30338 2016-02-09 Uros Bizjak <ubizjak@gmail.com>
30339
30340 * config/i386/i386.md (insv<mode>_1): Use gen_int_mode to
30341 truncate const_int operand 1 to QImode.
30342
30343 2016-02-09 Eric Botcazou <ebotcazou@adacore.com>
30344
30345 * gimple-ssa-backprop.c (optimize_phi): Do not replace an argument
30346 corresponding to an abnormal edge.
30347
30348 2016-02-09 Tom de Vries <tom@codesourcery.com>
30349
30350 PR tree-optimization/69599
30351 * tree-ssa-structalias.c (fndecl_maybe_in_other_partition): New
30352 function.
30353 (find_func_aliases_for_builtin_call, find_func_clobbers)
30354 (ipa_pta_execute): Handle case that foo and foo._0 are not in same lto
30355 partition.
30356
30357 2016-02-09 Richard Biener <rguenther@suse.de>
30358
30359 PR tree-optimization/69715
30360 * tree-ssa.c (execute_update_addresses_taken): Mark non-decl
30361 LHS on calls as non-rewritable.
30362
30363 2016-02-09 Tom de Vries <tom@codesourcery.com>
30364
30365 PR lto/69707
30366 * lto-wrapper.c (append_diag_options): New function.
30367 (compile_offload_image): Call append_diag_options.
30368
30369 2016-02-08 Sandra Loosemore <sandra@codesourcery.com>
30370
30371 PR other/69722
30372 * doc/extend.texi (Flag Output Operands): Correct sectioning.
30373 Minor copy-edit to fix verb tenses.
30374
30375 2016-02-08 Jakub Jelinek <jakub@redhat.com>
30376
30377 PR tree-optimization/69209
30378 * ipa-split.c (split_function): If split part is not
30379 returning retval, retval has gimple type but is not
30380 gimple value, force it into a SSA_NAME first.
30381
30382 2016-02-08 Nicklas Bo Jensen <nbjensen@gmail.com>
30383
30384 * doc/tree-ssa.texi (Preserving the virtual SSA form): Remove
30385 outdated section.
30386
30387 2016-02-08 Jason Merrill <jason@redhat.com>
30388
30389 PR c++/69631
30390 * convert.c (convert_to_integer_1): Check dofold on truncation
30391 distribution.
30392 (convert_to_pointer_maybe_fold, convert_to_real_maybe_fold)
30393 (convert_to_integer_maybe_fold, convert_to_complex_maybe_fold):
30394 Rename from *_nofold.
30395 * convert.h (convert_to_pointer_nofold, convert_to_integer_nofold)
30396 (convert_to_real_nofold, convert_to_complex_nofold): New inlines.
30397
30398 2016-02-08 Bernd Schmidt <bschmidt@redhat.com>
30399
30400 PR target/60410
30401 * tree.c (build_common_tree_nodes): Remove short_double argument.
30402 All callers changed.
30403 * tree.h (build_common_tree_nodes): Adjust declaration.
30404 * doc/invoke.texi (-fshort-double): Remove documentation.
30405 * config/mips/t-img-elf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
30406 MULTILIB_EXCEPTIONS): Remove -fshort-double variant.
30407 * lto-wrapper.c (merge_and_complain, append_compiler_options)
30408 (append_linker_options): Don't handle OPT_fshort_double.
30409
30410 PR rtl-optimization/68730
30411 * lra-remat.c (insn_to_cand_activation): New static variable.
30412 (lra_remat): Allocate and free it.
30413 (create_cand): New arg activation. Initialize a field in
30414 insn_to_cand_activation if it is nonnull.
30415 (create_cands): Pass the activation insn to create_cand when making
30416 a candidate involving an output reload. Reorganize code a little.
30417 (do_remat): Keep track of active status of candidates in a separate
30418 bitmap.
30419
30420 2016-02-08 Richard Biener <rguenther@suse.de>
30421
30422 PR tree-optimization/69719
30423 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
30424 Properly use absolute of the difference of the two offsets to
30425 compare or adjust the segment length.
30426
30427 2016-02-08 Richard Biener <rguenther@suse.de>
30428 Jeff Law <law@redhat.com>
30429
30430 PR target/68273
30431 * tree-ssanames.c (make_ssa_name_fn): Always use unqualified
30432 types for anonymous SSA names.
30433
30434 2016-02-08 Richard Biener <rguenther@suse.de>
30435
30436 PR rtl-optimization/69274
30437 * ira.c (ira_setup_alts): Do not change recog_data.operand order.
30438
30439 2016-02-08 Jeff Law <law@redhat.com>
30440
30441 PR tree-optimization/65917
30442 * tree-ssa-dom.c (record_temporary_equivalences): Record both
30443 equivalences from if (x == y) style conditionals.
30444 (loop_depth_of_name): Remove.
30445 (record_equality): Remove loop depth check.
30446 * tree-ssa-scopedtables.h (const_and_copies): Refine comments.
30447 (const_and_copies::record_const_or_copy_raw): New member function.
30448 * tree-ssa-scopedtables.c
30449 (const_and_copies::record_const_or_copy_raw): New, factored out of
30450 (const_and_copies::record_const_or_copy): Call new member function.
30451
30452 2016-02-05 Jeff Law <law@redhat.com>
30453
30454 PR tree-optimization/68541
30455 * gimple-ssa-split-paths.c: Include tree-cfg.h and params.h.
30456 (count_stmts_in_block): New function.
30457 (poor_ifcvt_candidate_code): Likewise.
30458 (is_feasible_trace): Add some heuristics to determine when path
30459 splitting is profitable.
30460 (find_block_to_duplicate_for_splitting_paths): Make sure the graph
30461 is a diamond with a single exit.
30462
30463 2016-02-05 Martin Sebor <msebor@redhat.com>
30464
30465 PR c++/69662
30466 * doc/invoke.texi: Update -Wplacement-new to take an optional
30467 argument.
30468
30469 2016-02-06 Richard Henderson <rth@redhat.com>
30470
30471 PR c/69643
30472 * tree.c (tree_nop_conversion_p): Do not strip casts into or
30473 out of non-standard address spaces.
30474
30475 2016-02-05 Jakub Jelinek <jakub@redhat.com>
30476
30477 PR rtl-optimization/69691
30478 * lra-eliminations.c (move_plus_up): Don't add the addend twice.
30479
30480 2016-02-05 Pat Haugen <pthaugen@us.ibm.com>
30481
30482 * config/rs6000/crypto.md (crypto_vpermxor_<mode>): Correct insn type.
30483 * config/rs6000/rs6000.md (mov<mode>_hardfloat): Likewise.
30484 (*ieee128_mfvsrd_64bit): Likewise.
30485 (*ieee128_mfvsrd_32bit): Likewise.
30486
30487 2016-02-05 Ilya Enkovich <enkovich.gnu@gmail.com>
30488
30489 PR target/69369
30490 Revert r232560:
30491 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
30492
30493 * cgraphunit.c (cgraph_node::reset): Clear thunk info and
30494 instrumented_version.
30495
30496 2016-01-05 Jeremy Bennett <jeremy.bennett@embecosm.com>
30497
30498 * doc/invoke.texi (Optimize Options): In table of --param options
30499 rename second occurrence of tracer-min-branch-ratio to
30500 tracer-min-branch-probability, rename
30501 tracer-min-branch-ratio-feedback to
30502 tracer-min-branch-probability-feedback and clarify description,
30503 rename sched-spec-state-edge-prob-cutoff to
30504 sched-state-edge-prob-cutoff, rename selsched-max-insns-to-rename
30505 to selsched-insns-to-rename, rename lto-minpartition to
30506 lto-min-partition, delete reorder-blocks-duplicate and
30507 reorder-blocks-duplicate-feedback.
30508
30509 2016-02-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
30510
30511 * config/s390/s390.c (s390_register_info_set_ranges): Remove
30512 superfluous loops.
30513
30514 2016-02-05 Dominik Vogt <vogt@linux.vnet.ibm.com>
30515
30516 * doc/extend.texi: S/390: Correct some typos.
30517
30518 2016-02-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
30519
30520 * config/s390/s390.c (s390_emit_call): Add missing 64 bit check.
30521
30522 2016-02-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
30523
30524 PR target/69625
30525 * config/s390/s390.c (SAVE_SLOT_NONE, SAVE_SLOT_STACK): New defines.
30526 (s390_register_info_gprtofpr): Use new macros above.
30527 (s390_register_info_stdarg_fpr): Adjust max_fpr to better match
30528 its name.
30529 (s390_register_info_stdarg_gpr): Adjust max_gpr to better match
30530 its name. Adjust restore and save gpr ranges.
30531 (s390_register_info_set_ranges): New function.
30532 (s390_register_info): Use new macros above. Call
30533 s390_register_info_set_ranges.
30534 (s390_optimize_register_info): Likewise.
30535 (s390_hard_regno_rename_ok): Use new macros.
30536 (s390_hard_regno_scratch_ok): Likewise.
30537 (s390_emit_epilogue): Likewise.
30538 (s390_can_use_return_insn): Likewise.
30539 (s390_optimize_prologue): Likewise.
30540 * config/s390/s390.md (GPR2_REGNUM, GPR6_REGNUM): New constants.
30541
30542 2016-02-05 Jakub Jelinek <jakub@redhat.com>
30543
30544 PR bootstrap/69677
30545 * config/i386/i386.c (convert_scalars_to_vector): Readd stack
30546 alignment fixes.
30547 (ix86_option_override_internal): Disable TARGET_STV even for
30548 -m{incoming,preferred}-stack-boundary=3.
30549
30550 2016-02-03 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
30551
30552 * config.gcc: Mark deprecated rtems targets as obsolete.
30553
30554 2016-02-04 Segher Boessenkool <segher@kernel.crashing.org>
30555
30556 PR rtl-optimization/64682
30557 PR rtl-optimization/69567
30558 * combine.c (distribute_notes) <REG_DEAD>: Place the death note
30559 before I2 only if the register is both used and set in I2.
30560
30561 2016-02-04 DJ Delorie <dj@redhat.com>
30562
30563 * config/msp430/msp430.c (msp430_start_function): Add function type.
30564
30565 2016-02-04 Jakub Jelinek <jakub@redhat.com>
30566
30567 PR fortran/69368
30568 * tree-dfa.c (get_ref_base_and_extent): Remove unreachable code.
30569
30570 2016-02-04 Uros Bizjak <ubizjak@gmail.com>
30571
30572 PR rtl-optimization/69577
30573 Revert:
30574 2015-10-29 Richard Henderson <rth@redhat.com>
30575
30576 PR target/68124
30577 PR rtl-opt/67609
30578 * config/i386/i386.c (ix86_cannot_change_mode_class): Tighten
30579 sse check to the exact conditions of PR 67609.
30580
30581 2016-02-04 Michael Meissner <meissner@linux.vnet.ibm.com>
30582
30583 PR target/69667
30584 * config/rs6000/rs6000.md (mov<mode>_64bit_dm): Use 'd' constraint
30585 instead of 'ws', and 'wh' instead of 'wm' since TFmode/IFmode are
30586 not allowed into the traditional Altivec registers.
30587 (movtd_64bit_nodm): Likewise.
30588 (mov<mode>_32bit, FMOVE128_FPR iterator): Likewise.
30589
30590 2016-02-04 David Malcolm <dmalcolm@redhat.com>
30591
30592 * config/aarch64/cortex-a57-fma-steering.c
30593 (aarch64_register_fma_steering): Remove "static" from arguments
30594 to register_pass.
30595
30596 2016-02-04 Wilco Dijkstra <wdijkstr@arm.com>
30597
30598 PR target/69619
30599 * ccmp.c (expand_ccmp_expr_1): Avoid evaluating gs0/gs1
30600 twice when complex.
30601
30602 2016-02-04 Mike Frysinger <vapier@gentoo.org>
30603
30604 * doc/invoke.texi: Delete -mno-fma4.
30605
30606 2016-02-04 Richard Sandiford <richard.sandiford@arm.com>
30607
30608 PR rtl-optimization/69577
30609 * reginfo.c (record_subregs_of_mode): Add a partial_def parameter.
30610 (find_subregs_of_mode): Update accordingly. Iterate over partial
30611 definitions.
30612
30613 2016-02-04 Alan Lawrence <alan.lawrence@arm.com>
30614
30615 * config/arm/arm-protos.h (neon_reinterpret): Remove.
30616 * config/arm/arm.c (neon_reinterpret): Remove.
30617 * config/arm/arm_neon_builtins.def (vreinterpretv8qi, vreinterpretv4hi,
30618 vreinterpretv2si, vreinterpretv2sf, vreinterpretdi, vreinterpretv16qi,
30619 vreinterpretv8hi, vreinterpretv4si, vreinterpretv4sf, vreinterpretv2di,
30620 vreinterpretti): Remove.
30621 * config/arm/neon.md (neon_vreinterpretv8qi<mode>,
30622 neon_vreinterpretv4hi<mode>, neon_vreinterpretv2si<mode>,
30623 neon_vreinterpretv2sf<mode>, neon_vreinterpretdi<mode>,
30624 neon_vreinterpretti<mode>, neon_vreinterpretv16qi<mode>,
30625 neon_vreinterpretv8hi<mode>, neon_vreinterpretv4si<mode>,
30626 neon_vreinterpretv4sf<mode>, neon_vreinterpretv2di<mode>): Remove.
30627 * config/arm/arm_neon.h (vreinterpret_p8_p16, vreinterpret_p8_f32,
30628 vreinterpret_p8_p64, vreinterpret_p8_s64, vreinterpret_p8_u64,
30629 vreinterpret_p8_s8, vreinterpret_p8_s16, vreinterpret_p8_s32,
30630 vreinterpret_p8_u8, vreinterpret_p8_u16, vreinterpret_p8_u32,
30631 vreinterpret_p16_p8, vreinterpret_p16_f32, vreinterpret_p16_p64,
30632 vreinterpret_p16_s64, vreinterpret_p16_u64, vreinterpret_p16_s8,
30633 vreinterpret_p16_s16, vreinterpret_p16_s32, vreinterpret_p16_u8,
30634 vreinterpret_p16_u16, vreinterpret_p16_u32, vreinterpret_f32_p8,
30635 vreinterpret_f32_p16, vreinterpret_f32_p64, vreinterpret_f32_s64,
30636 vreinterpret_f32_u64, vreinterpret_f32_s8, vreinterpret_f32_s16,
30637 vreinterpret_f32_s32, vreinterpret_f32_u8, vreinterpret_f32_u16,
30638 vreinterpret_f32_u32, vreinterpret_p64_p8, vreinterpret_p64_p16,
30639 vreinterpret_p64_f32, vreinterpret_p64_s64, vreinterpret_p64_u64,
30640 vreinterpret_p64_s8, vreinterpret_p64_s16, vreinterpret_p64_s32,
30641 vreinterpret_p64_u8, vreinterpret_p64_u16, vreinterpret_p64_u32,
30642 vreinterpret_s64_p8, vreinterpret_s64_p16, vreinterpret_s64_f32,
30643 vreinterpret_s64_p64, vreinterpret_s64_u64, vreinterpret_s64_s8,
30644 vreinterpret_s64_s16, vreinterpret_s64_s32, vreinterpret_s64_u8,
30645 vreinterpret_s64_u16, vreinterpret_s64_u32, vreinterpret_u64_p8,
30646 vreinterpret_u64_p16, vreinterpret_u64_f32, vreinterpret_u64_p64,
30647 vreinterpret_u64_s64, vreinterpret_u64_s8, vreinterpret_u64_s16,
30648 vreinterpret_u64_s32, vreinterpret_u64_u8, vreinterpret_u64_u16,
30649 vreinterpret_u64_u32, vreinterpret_s8_p8, vreinterpret_s8_p16,
30650 vreinterpret_s8_f32, vreinterpret_s8_p64, vreinterpret_s8_s64,
30651 vreinterpret_s8_u64, vreinterpret_s8_s16, vreinterpret_s8_s32,
30652 vreinterpret_s8_u8, vreinterpret_s8_u16, vreinterpret_s8_u32,
30653 vreinterpret_s16_p8, vreinterpret_s16_p16, vreinterpret_s16_f32,
30654 vreinterpret_s16_p64, vreinterpret_s16_s64, vreinterpret_s16_u64,
30655 vreinterpret_s16_s8, vreinterpret_s16_s32, vreinterpret_s16_u8,
30656 vreinterpret_s16_u16, vreinterpret_s16_u32, vreinterpret_s32_p8,
30657 vreinterpret_s32_p16, vreinterpret_s32_f32, vreinterpret_s32_p64,
30658 vreinterpret_s32_s64, vreinterpret_s32_u64, vreinterpret_s32_s8,
30659 vreinterpret_s32_s16, vreinterpret_s32_u8, vreinterpret_s32_u16,
30660 vreinterpret_s32_u32, vreinterpret_u8_p8, vreinterpret_u8_p16,
30661 vreinterpret_u8_f32, vreinterpret_u8_p64, vreinterpret_u8_s64,
30662 vreinterpret_u8_u64, vreinterpret_u8_s8, vreinterpret_u8_s16,
30663 vreinterpret_u8_s32, vreinterpret_u8_u16, vreinterpret_u8_u32,
30664 vreinterpret_u16_p8, vreinterpret_u16_p16, vreinterpret_u16_f32,
30665 vreinterpret_u16_p64, vreinterpret_u16_s64, vreinterpret_u16_u64,
30666 vreinterpret_u16_s8, vreinterpret_u16_s16, vreinterpret_u16_s32,
30667 vreinterpret_u16_u8, vreinterpret_u16_u32, vreinterpret_u32_p8,
30668 vreinterpret_u32_p16, vreinterpret_u32_f32, vreinterpret_u32_p64,
30669 vreinterpret_u32_s64, vreinterpret_u32_u64, vreinterpret_u32_s8,
30670 vreinterpret_u32_s16, vreinterpret_u32_s32, vreinterpret_u32_u8,
30671 vreinterpret_u32_u16, vreinterpretq_p8_p16, vreinterpretq_p8_f32,
30672 vreinterpretq_p8_p64, vreinterpretq_p8_p128, vreinterpretq_p8_s64,
30673 vreinterpretq_p8_u64, vreinterpretq_p8_s8, vreinterpretq_p8_s16,
30674 vreinterpretq_p8_s32, vreinterpretq_p8_u8, vreinterpretq_p8_u16,
30675 vreinterpretq_p8_u32, vreinterpretq_p16_p8, vreinterpretq_p16_f32,
30676 vreinterpretq_p16_p64, vreinterpretq_p16_p128, vreinterpretq_p16_s64,
30677 vreinterpretq_p16_u64, vreinterpretq_p16_s8, vreinterpretq_p16_s16,
30678 vreinterpretq_p16_s32, vreinterpretq_p16_u8, vreinterpretq_p16_u16,
30679 vreinterpretq_p16_u32, vreinterpretq_f32_p8, vreinterpretq_f32_p16,
30680 vreinterpretq_f32_p64, vreinterpretq_f32_p128, vreinterpretq_f32_s64,
30681 vreinterpretq_f32_u64, vreinterpretq_f32_s8, vreinterpretq_f32_s16,
30682 vreinterpretq_f32_s32, vreinterpretq_f32_u8, vreinterpretq_f32_u16,
30683 vreinterpretq_f32_u32, vreinterpretq_p64_p8, vreinterpretq_p64_p16,
30684 vreinterpretq_p64_f32, vreinterpretq_p64_p128, vreinterpretq_p64_s64,
30685 vreinterpretq_p64_u64, vreinterpretq_p64_s8, vreinterpretq_p64_s16,
30686 vreinterpretq_p64_s32, vreinterpretq_p64_u8, vreinterpretq_p64_u16,
30687 vreinterpretq_p64_u32, vreinterpretq_p128_p8, vreinterpretq_p128_p16,
30688 vreinterpretq_p128_f32, vreinterpretq_p128_p64, vreinterpretq_p128_s64,
30689 vreinterpretq_p128_u64, vreinterpretq_p128_s8, vreinterpretq_p128_s16,
30690 vreinterpretq_p128_s32, vreinterpretq_p128_u8, vreinterpretq_p128_u16,
30691 vreinterpretq_p128_u32, vreinterpretq_s64_p8, vreinterpretq_s64_p16,
30692 vreinterpretq_s64_f32, vreinterpretq_s64_p64, vreinterpretq_s64_p128,
30693 vreinterpretq_s64_u64, vreinterpretq_s64_s8, vreinterpretq_s64_s16,
30694 vreinterpretq_s64_s32, vreinterpretq_s64_u8, vreinterpretq_s64_u16,
30695 vreinterpretq_s64_u32, vreinterpretq_u64_p8, vreinterpretq_u64_p16,
30696 vreinterpretq_u64_f32, vreinterpretq_u64_p64, vreinterpretq_u64_p128,
30697 vreinterpretq_u64_s64, vreinterpretq_u64_s8, vreinterpretq_u64_s16,
30698 vreinterpretq_u64_s32, vreinterpretq_u64_u8, vreinterpretq_u64_u16,
30699 vreinterpretq_u64_u32, vreinterpretq_s8_p8, vreinterpretq_s8_p16,
30700 vreinterpretq_s8_f32, vreinterpretq_s8_p64, vreinterpretq_s8_p128,
30701 vreinterpretq_s8_s64, vreinterpretq_s8_u64, vreinterpretq_s8_s16,
30702 vreinterpretq_s8_s32, vreinterpretq_s8_u8, vreinterpretq_s8_u16,
30703 vreinterpretq_s8_u32, vreinterpretq_s16_p8, vreinterpretq_s16_p16,
30704 vreinterpretq_s16_f32, vreinterpretq_s16_p64, vreinterpretq_s16_p128,
30705 vreinterpretq_s16_s64, vreinterpretq_s16_u64, vreinterpretq_s16_s8,
30706 vreinterpretq_s16_s32, vreinterpretq_s16_u8, vreinterpretq_s16_u16,
30707 vreinterpretq_s16_u32, vreinterpretq_s32_p8, vreinterpretq_s32_p16,
30708 vreinterpretq_s32_f16, vreinterpretq_s32_f32, vreinterpretq_s32_p64,
30709 vreinterpretq_s32_p128, vreinterpretq_s32_s64, vreinterpretq_s32_u64,
30710 vreinterpretq_s32_s8, vreinterpretq_s32_s16, vreinterpretq_s32_u8,
30711 vreinterpretq_s32_u16, vreinterpretq_s32_u32, vreinterpretq_u8_p8,
30712 vreinterpretq_u8_p16, vreinterpretq_u8_f32, vreinterpretq_u8_p64,
30713 vreinterpretq_u8_p128, vreinterpretq_u8_s64, vreinterpretq_u8_u64,
30714 vreinterpretq_u8_s8, vreinterpretq_u8_s16, vreinterpretq_u8_s32,
30715 vreinterpretq_u8_u16, vreinterpretq_u8_u32, vreinterpretq_u16_p8,
30716 vreinterpretq_u16_p16, vreinterpretq_u16_f32, vreinterpretq_u16_p64,
30717 vreinterpretq_u16_p128, vreinterpretq_u16_s64, vreinterpretq_u16_u64,
30718 vreinterpretq_u16_s8, vreinterpretq_u16_s16, vreinterpretq_u16_s32,
30719 vreinterpretq_u16_u8, vreinterpretq_u16_u32, vreinterpretq_u32_p8,
30720 vreinterpretq_u32_p16, vreinterpretq_u32_f32, vreinterpretq_u32_p64,
30721 vreinterpretq_u32_p128, vreinterpretq_u32_s64, vreinterpretq_u32_u64,
30722 vreinterpretq_u32_s8, vreinterpretq_u32_s16, vreinterpretq_u32_s32,
30723 vreinterpretq_u32_u8, vreinterpretq_u32_u16): Rewrite using casts.
30724
30725 2016-02-04 Martin Liska <mliska@suse.cz>
30726
30727 PR sanitizer/69276
30728 * asan.c (has_stmt_been_instrumented_p): Instrument gimple calls
30729 that are gimple_store_p.
30730 (maybe_instrument_call): Likewise.
30731
30732 2016-02-04 Bin Cheng <bin.cheng@arm.com>
30733
30734 * config/aarch64/aarch64.c (aarch64_legitimize_address): Force
30735 register scaling out of memory reference and comment why.
30736
30737 2016-02-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30738
30739 PR target/65932
30740 PR target/67714
30741 * cse.c (cse_insn): Pass NULL to fold_rtx when initially
30742 folding the source of a SET.
30743
30744 2016-02-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30745
30746 PR target/65932
30747 PR target/67714
30748 * config/arm/arm.c (arm_new_rtx_costs, MULT case): Properly extract
30749 the operands of the SIGN_EXTENDs from a SMUL[TB][TB] rtx.
30750
30751 2016-02-04 Jim Wilson <jim.wilson@linaro.org>
30752
30753 PR target/65932
30754 PR target/67714
30755 * config/arm/arm.h (PROMOTE_MODE): Don't set UNSIGNEDP for QImode and
30756 HImode.
30757
30758 2016-02-04 Christian Bruel <christian.bruel@st.com>
30759
30760 * config/arm/arm-c.c (arm_reset_previous_fndecl): Style fix and typo.
30761 * config/arm/arm.c (arm_set_current_function): Likewise.
30762
30763 2016-02-04 Jakub Jelinek <jakub@redhat.com>
30764 Ilya Enkovich <enkovich.gnu@gmail.com>
30765 H.J. Lu <hongjiu.lu@intel.com>
30766
30767 PR target/69454
30768 * config/i386/i386.c (convert_scalars_to_vector): Remove
30769 stack alignment fixes.
30770 (ix86_option_override_internal): Disable TARGET_STV if stack
30771 might not be aligned enough.
30772 (ix86_minimum_alignment): Assert that TARGET_STV is false.
30773
30774 2016-02-04 Victoria Stepanyan <victoria.stepanyan@amd.com>
30775
30776 * config/i386/x86-tune.def: Disable default prefetching
30777 for -march=znver1.
30778
30779 2016-02-03 Michael Meissner <meissner@linux.vnet.ibm.com>
30780 Vladimir Makarov <vmakarov@redhat.com>
30781
30782 PR target/69461
30783 * config/rs6000/rs6000.c (rs6000_legitimate_address_p): Fix thinko
30784 in validating fused toc addresses.
30785
30786 2016-02-03 Jakub Jelinek <jakub@redhat.com>
30787
30788 PR c/69627
30789 * diagnostic-show-locus.c (layout::get_state_at_point): Don't read
30790 range->m_caret fields if range->m_show_caret_p is false.
30791
30792 PR target/69644
30793 * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
30794 Force oldval into register if it does not satisfy reg_or_short_operand
30795 predicate. Fix up formatting.
30796
30797 2016-02-03 Vladimir Makarov <vmakarov@redhat.com>
30798 Alexandre Oliva <aoliva@redhat.com>
30799
30800 PR target/69461
30801 * lra-constraints.c (simplify_operand_subreg): Check additionally
30802 address validity after potential reloading.
30803 (process_address_1): Check insns validity. In case of failure do
30804 nothing.
30805
30806 2016-02-03 Kirill Yukhin <kirill.yukhin@intel.com>
30807
30808 PR target/69118
30809 * config/i386/sse.md (define_insn "avx512f_maskcmp<mode>3"):
30810 Fix target.
30811
30812 2016-02-02 Jakub Jelinek <jakub@redhat.com>
30813
30814 * wide-int.cc (canonize_uhwi): New function.
30815 (wi::divmod_internal): Use it.
30816
30817 2016-02-02 James Norris <jnorris@codesourcery.com>
30818
30819 * gimplify.c (omp_notice_variable): Add usage check.
30820
30821 2016-02-02 Alexander Monakov <amonakov@ispras.ru>
30822
30823 * config/nvptx/nvptx.c (nvptx_print_operand): Treat LEU, GEU, LTU, GTU
30824 like LE, GE, LT, GT when emitting relational operator.
30825
30826 2016-02-02 Wilco Dijkstra <wdijkstr@arm.com>
30827
30828 * ira-costs.c (find_costs_and_classes): Add extra argument.
30829 * target.def (ira_change_pseudo_allocno_class): Add parameter.
30830 * targhooks.h (ira_change_pseudo_allocno_class): Likewise.
30831 * targhooks.c (ira_change_pseudo_allocno_class): Likewise.
30832 * config/aarch64/aarch64.c (aarch64_ira_change_pseudo_allocno_class)
30833 Add best_class parameter, and return it if not ALL_REGS.
30834 * config/mips/mips.c (mips_ira_change_pseudo_allocno_class):
30835 Add parameter.
30836 * doc/tm.texi (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS):
30837 Update target hook.
30838
30839 2016-02-02 Wilco Dijkstra <wdijkstr@arm.com>
30840
30841 * config/aarch64/aarch64.c
30842 (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS): New define.
30843 (aarch64_ira_change_pseudo_allocno_class): New function.
30844
30845 2016-02-02 Uros Bizjak <ubizjak@gmail.com>
30846
30847 PR target/67032
30848 * config/i386/i386.c (geode_cost): Increase cost of MMX and SSE moves.
30849
30850 2016-02-02 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
30851
30852 * config/avr/avr.c (avr_option_override): Set
30853 PARAM_ALLOW_STORE_DATA_RACES to 1.
30854
30855 2016-02-02 Richard Biener <rguenther@suse.de>
30856
30857 PR tree-optimization/69595
30858 * match.pd: Add range test simplifications to true/false.
30859
30860 2016-02-02 Thomas Schwinge <thomas@codesourcery.com>
30861
30862 * omp-builtins.def (BUILT_IN_GOACC_HOST_DATA): Remove.
30863 * omp-low.c (expand_omp_target): Use BUILT_IN_GOACC_DATA_START
30864 instead.
30865
30866 2016-02-02 Richard Biener <rguenther@suse.de>
30867
30868 PR tree-optimization/69606
30869 * tree-ssa-math-opts.c (bswap_replace): Clear flow sensitive
30870 info on the result before moving a stmt.
30871
30872 2016-02-02 Yuri Rumyantsev <ysrumyan@gmail.com>
30873
30874 PR middle-end/68542
30875 * config/i386/i386.c (ix86_expand_branch): Add support for conditional
30876 branch with vector comparison.
30877 * config/i386/sse.md (VI48_AVX): New mode iterator.
30878 (define_expand "cbranch<mode>4): Add support for conditional branch
30879 with vector comparison.
30880 * tree-vect-loop.c (optimize_mask_stores): New function.
30881 * tree-vect-stmts.c (vectorizable_mask_load_store): Initialize
30882 has_mask_store field of vect_info.
30883 * tree-vectorizer.c (vectorize_loops): Invoke optimaze_mask_stores for
30884 vectorized loops having masked stores after vec_info destroy.
30885 * tree-vectorizer.h (loop_vec_info): Add new has_mask_store field and
30886 correspondent macros.
30887 (optimize_mask_stores): Add prototype.
30888
30889 2016-02-02 Alan Modra <amodra@gmail.com>
30890
30891 PR target/69548
30892 * config/rs6000/predicates.md (quad_int_reg_operand): Don't
30893 allow subregs.
30894
30895 2016-02-02 Alan Modra <amodra@gmail.com>
30896
30897 PR target/68662
30898 * config/rs6000/rs6000.c (need_toc_init): New var, set it
30899 whenever toc_label_name used.
30900 (rs6000_file_start): Don't set up toc section here,
30901 (rs6000_output_function_epilogue): do so here instead,
30902 (rs6000_xcoff_file_start): and here.
30903 * config/rs6000/rs6000.md (load_toc_aix_si): Set need_toc_init.
30904 (load_toc_aix_di): Likewise.
30905
30906 2016-02-01 Jakub Jelinek <jakub@redhat.com>
30907
30908 PR rtl-optimization/69592
30909 * rtlanal.c (nonzero_bits_binary_arith_p): New inline function.
30910 (cached_nonzero_bits): Use it instead of ARITHMETIC_P.
30911 (num_sign_bit_copies_binary_arith_p): New inline function.
30912 (cached_num_sign_bit_copies): Use it instead of ARITHMETIC_P.
30913
30914 2016-02-01 Jeff Law <law@redhat.com>
30915
30916 PR tree-optimization/69580
30917 * params.def (FSM_MAXIMUM_PHI_ARGUMENTS): New param.
30918 * tree-ssa-threadbackward.c
30919 (fsm_find_control_statement_thread_paths): Do not try to walk
30920 through large PHI nodes.
30921
30922 2016-02-01 Jakub Jelinek <jakub@redhat.com>
30923
30924 * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return false
30925 when count is incremented above limit, don't analyze further
30926 insns afterwards.
30927
30928 * omp-low.c (oacc_parse_default_dims): Avoid
30929 -Wsign-compare warning, make sure value fits into int
30930 rather than just unsigned int.
30931
30932 2016-02-01 Bin Cheng <bin.cheng@arm.com>
30933
30934 PR tree-optimization/67921
30935 * fold-const.c (split_tree): New parameters. Convert pointer
30936 type variable part to proper type before negating.
30937 (fold_binary_loc): Pass new arguments to split_tree.
30938
30939 2016-02-01 Nathan Sidwell <nathan@codesourcery.com>
30940
30941 * config/nvptx/nvptx.c (PTX_GANG_DEFAULT): New.
30942 (nvptx_goacc_validate_dims): Extend to handle global defaults.
30943 * target.def (OACC_VALIDATE_DIMS): Extend documentation.
30944 * doc/tm.texti: Rebuilt.
30945 * doc/invoke.texi (fopenacc-dim): Document.
30946 * lto-wrapper.c (merge_and_complain): Add OPT_fopenacc_dim_ case.
30947 (append_compiler_options): Likewise.
30948 * omp-low.c (oacc_default_dims, oacc_min_dims): New.
30949 (oacc_parse_default_dims): New.
30950 (oacc_validate_dims): Add USED arg. Select non-unity default when
30951 possible.
30952 (oacc_loop_fixed_partitions): Return mask of used partitions.
30953 (oacc_loop_auto_partitions): Emit dump info.
30954 (oacc_loop_partition): Return mask of used partitions.
30955 (execute_oacc_device_lower): Parse default dimension arg. Adjust
30956 loop partitioning and validation calls.
30957
30958 2016-02-01 Richard Biener <rguenther@suse.de>
30959
30960 PR middle-end/69556
30961 * match.pd: Guard (C1/X)*C2 -> (C1*C2)/X with single_use.
30962
30963 2016-02-01 Richard Biener <rguenther@suse.de>
30964
30965 PR tree-optimization/69574
30966 * tree-chrec.c (hide_evolution_in_other_loops_than_loop): Instead
30967 of asserting return chrec_dont_know.
30968
30969 2016-02-01 Martin Liska <mliska@suse.cz>
30970
30971 * mem-stats-traits.h: Add copyright header.
30972 * mem-stats.h: Likewise.
30973
30974 2016-02-01 Richard Biener <rguenther@suse.de>
30975
30976 PR tree-optimization/69579
30977 * tree-ssa-loop-ivcanon.c (propagate_constants_for_unrolling):
30978 Do not propagate through abnormal PHI results.
30979
30980 2016-02-01 Eric Botcazou <ebotcazou@adacore.com>
30981
30982 * postreload.c (reload_cse_simplify): Remove dead code.
30983
30984 2016-02-01 Jakub Jelinek <jakub@redhat.com>
30985
30986 PR rtl-optimization/69570
30987 * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return true only
30988 if there is more than one set, not if there is a single set.
30989
30990 2016-02-01 Richard Henderson <rth@redhat.com>
30991
30992 PR rtl-opt/69535
30993 * combine.c (make_compound_operation): When looking through a
30994 subreg, make sure to re-extend to the width of the outer mode.
30995
30996 2016-01-30 Jakub Jelinek <jakub@redhat.com>
30997
30998 PR tree-optimization/69546
30999 * wide-int.cc (wi::divmod_internal): For unsigned division
31000 where both operands fit into uhwi, if o1 is 1 and o0 has
31001 msb set, if divident_prec is larger than bits per hwi,
31002 clear another quotient word and return 2 instead of 1.
31003 Similarly for remainder with msb in HWI set, if dividend_prec
31004 is larger than bits per hwi.
31005
31006 2016-01-29 Martin Jambor <mjambor@suse.cz>
31007
31008 * hsa-gen.c (get_memory_order_name): Mask with MEMMODEL_BASE_MASK.
31009 Use short lowercase names.
31010 (get_memory_order): Mask with MEMMODEL_BASE_MASK. Support
31011 MEMMODEL_CONSUME with acquire semantics and MEMMODEL_SEQ_CST with
31012 acq_rel one. Protect warning agains segfaults if
31013 get_memory_order_name returns NULL.
31014 (gen_hsa_ternary_atomic_for_builtin): Support with MEMMODEL_SEQ_CST
31015 with release semantics. Do not warn if get_memory_order already did.
31016 (gen_hsa_insns_for_call): Support with MEMMODEL_SEQ_CST with acquire
31017 semantics. Fix check for relaxed or acquire semantics. Do not warn
31018 if get_memory_order already did.
31019
31020 2016-01-29 Sebastian Pop <s.pop@samsung.com>
31021
31022 * doc/install.texi: Document that isl-0.16 is supported.
31023
31024 2016-01-29 Vladimir Makarov <vmakarov@redhat.com>
31025
31026 PR target/69299
31027 * config/i386/constraints.md (Bm): Describe as special memory
31028 constraint.
31029 * doc/md.texi (DEFINE_SPECIAL_MEMORY_CONSTRAINT): Describe it.
31030 * genoutput.c (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
31031 * genpreds.c (struct constraint_data): Add is_special_memory.
31032 (have_special_memory_constraints, special_memory_start): New
31033 static vars.
31034 (special_memory_end): Ditto.
31035 (add_constraint): Add new arg is_special_memory. Add code to
31036 process its true value. Update have_special_memory_constraints.
31037 (process_define_constraint): Pass the new arg.
31038 (process_define_register_constraint): Ditto.
31039 (choose_enum_order): Process special memory.
31040 (write_tm_preds_h): Generate enum const CT_SPECIAL_MEMORY and
31041 function insn_extra_special_memory_constraint.
31042 (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
31043 * gensupport.c (process_rtx): Process
31044 DEFINE_SPECIAL_MEMORY_CONSTRAINT.
31045 * ira-costs.c (record_reg_classes): Process CT_SPECIAL_MEMORY.
31046 * ira-lives.c (single_reg_class): Use
31047 insn_extra_special_memory_constraint.
31048 * ira.c (ira_setup_alts): Process CT_SPECIAL_MEMORY.
31049 * lra-constraints.c (process_alt_operands): Ditto.
31050 (curr_insn_transform): Use insn_extra_special_memory_constraint.
31051 * recog.c (asm_operand_ok, preprocess_constraints): Process
31052 CT_SPECIAL_MEMORY.
31053 * reload.c (find_reloads): Ditto.
31054 * rtl.def (DEFINE_SPECIFAL_MEMORY_CONSTRAINT): New.
31055 * stmt.c (parse_input_constraint): Use
31056 insn_extra_special_memory_constraint.
31057
31058 2016-01-29 H.J. Lu <hongjiu.lu@intel.com>
31059
31060 PR target/69530
31061 * lra-splill.c (lra_final_code_change): Revert r229087 by
31062 removing all sub-registers.
31063
31064 2016-01-29 Steve Ellcey <sellcey@imgtec.com>
31065
31066 PR target/65604
31067 * config/mips/mips.c (mips_output_division): Check flag_delayed_branch.
31068
31069 2016-01-29 Jakub Jelinek <jakub@redhat.com>
31070
31071 PR target/69551
31072 * config/i386/i386.c (ix86_expand_vector_set) <case V4SImode>: For
31073 SSE1, copy target into the temporary reg first before recursing
31074 on it.
31075
31076 2016-01-29 H.J. Lu <hongjiu.lu@intel.com>
31077
31078 * config/i386/sse.md (sse2_cvtps2pd<mask_name>): Replace vBm
31079 with vm.
31080
31081 2016-01-29 Jonathan Wakely <jwakely@redhat.com>
31082
31083 * ginclude/stdarg.h: Test __cplusplus instead of
31084 __GXX_EXPERIMENTAL_CXX0X__.
31085
31086 2016-01-29 Richard Biener <rguenther@suse.de>
31087
31088 PR tree-optimization/69547
31089 * tree-ssa-dce.c (mark_aliased_reaching_defs_necessary_1):
31090 Do not mark clobbers necessary.
31091 (mark_all_reaching_defs_necessary_1): Likewise.
31092
31093 2016-01-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
31094
31095 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Format
31096 declaration name with %qs and print it in both error messages.
31097 Also fix indentation.
31098
31099 2016-01-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
31100
31101 PR other/69006
31102 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove
31103 trailing blank line from error message.
31104
31105 2016-01-29 Jonathan Wakely <jwakely@redhat.com>
31106
31107 PR c++/69462
31108 * ginclude/float.h: Also provide FLT_EVAL_METHOD and DECIMAL_DIG
31109 for C++-11.
31110
31111 2016-01-29 Richard Biener <rguenther@suse.de>
31112
31113 PR middle-end/69537
31114 * match.pd: Allow all integral types when simplifying a
31115 widening or sign-changing conversion.
31116
31117 2016-01-28 Sebastian Pop <s.pop@samsung.com>
31118
31119 * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Revert assert
31120 back to setting codegen_error to fail codegen.
31121
31122 2016-01-28 Uros Bizjak <ubizjak@gmail.com>
31123
31124 PR target/69459
31125 * config/i386/constraints.md (C): Only accept constant zero operand.
31126 (BC): New constraint.
31127 * config/i386/sse.md (*mov<mode>_internal): Use BC constraint
31128 instead of C constraint.
31129 * doc/md.texi (Machine Constraints): Update description
31130 of C constraint.
31131
31132 2016-01-28 Steve Ellcey <sellcey@imgtec.com>
31133
31134 PR target/68400
31135 * config/mips/mips.c (and_operands_ok): Add MIPS16 check.
31136
31137 2016-01-28 Jakub Jelinek <jakub@redhat.com>
31138
31139 PR middle-end/69542
31140 * lra-remat.c (calculate_local_reg_remat_bb_data): Only consider
31141 non-debug insns.
31142
31143 2016-01-28 Pat Haugen <pthaugen@us.ibm.com>
31144
31145 * config/rs6000/rs6000.c (output_cbranch): Don't statically predict
31146 branches if using guessed profile.
31147
31148 2016-01-28 H.J. Lu <hongjiu.lu@intel.com>
31149
31150 * graphite-optimize-isl.c (optimize_isl): Fix dump.
31151
31152 2016-01-28 Richard Henderson <rth@redhat.com>
31153
31154 PR target/69305
31155 * config/aarch64/aarch64-modes.def (CC_Cmode): New
31156 * config/aarch64/aarch64-protos.h: Update.
31157 * config/aarch64/aarch64.c (aarch64_zero_extend_const_eq): New.
31158 (aarch64_select_cc_mode): Add check for use of CC_Cmode.
31159 (aarch64_get_condition_code_1): Handle CC_Cmode.
31160 * config/aarch64/aarch64.md (addti3): Use adddi3_compareC.
31161 (*add<mode>3_compareC_cconly_imm): New.
31162 (*add<mode>3_compareC_cconly): New.
31163 (*add<mode>3_compareC_imm): New.
31164 (add<mode>3_compareC): New.
31165 (add<mode>3_carryin, *addsi3_carryin_uxtw): Sort compare operand
31166 to be first. Use aarch64_carry_operation.
31167 (*add<mode>3_carryin_alt1, *addsi3_carryin_alt1_uxtw): Remove.
31168 (*add<mode>3_carryin_alt2, *addsi3_carryin_alt2_uxtw): Remove.
31169 (*add<mode>3_carryin_alt3, *addsi3_carryin_alt3_uxtw): Remove.
31170 (subti3): Use subdi3_compare1.
31171 (*sub<mode>3_compare0): Rename from sub<mode>3_compare0.
31172 (sub<mode>3_compare1): New.
31173 (*sub<mode>3_carryin0, *subsi3_carryin_uxtw): New.
31174 (*sub<mode>3_carryin): Use aarch64_borrow_operation.
31175 (*subsi3_carryin_uxtw): Likewise.
31176 (*ngc<mode>, *ngcsi_uxtw): Likewise.
31177 (*sub<mode>3_carryin_alt, *subsi3_carryin_alt_uxtw): New.
31178 * config/aarch64/iterators.md (DWI): New.
31179 * config/aarch64/predicates.md (aarch64_carry_operation): New.
31180 (aarch64_borrow_operation): New.
31181
31182 2016-01-28 Abderrazek Zaafrani <a.zaafrani@samsung.com>
31183
31184 * graphite-optimize-isl.c (optimize_isl): Print a different debug
31185 message when isl does not return a valid schedule.
31186
31187 2016-01-28 Sebastian Pop <s.pop@samsung.com>
31188
31189 * graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple):
31190 Remove comments from class declarations: they are already in the code
31191 close by the defs.
31192
31193 2016-01-28 Sebastian Pop <s.pop@samsung.com>
31194
31195 * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Call
31196 codegen_error_p.
31197 (ternary_op_to_tree): Same.
31198 (unary_op_to_tree): Same.
31199 (nary_op_to_tree): Same.
31200 (gcc_expression_from_isl_expr_op): Same.
31201 (gcc_expression_from_isl_expression): Same.
31202 (graphite_create_new_loop): Same.
31203 (graphite_create_new_loop_guard): Same.
31204 (build_iv_mapping): Same.
31205 (graphite_create_new_guard): Same.
31206 (translate_isl_ast_to_gimple::copy_loop_phi_nodes): Same.
31207 (translate_isl_ast_to_gimple::translate_pending_phi_nodes): Same.
31208
31209 2016-01-28 Sebastian Pop <s.pop@samsung.com>
31210
31211 * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Assert
31212 instead of setting codegen_error to fail codegen.
31213
31214 2016-01-28 Jason Merrill <jason@redhat.com>
31215
31216 * tree.h (BINFO_FLAG_0): Rename from BINFO_MARKED.
31217
31218 2016-01-28 Wilco Dijkstra <wdijkstr@arm.com>
31219
31220 * config/aarch64/aarch64.c (aarch64_if_then_else_costs):
31221 Remove CONST_INT_P check in CCMP cost calculation.
31222
31223 2016-01-28 Wilco Dijkstra <wdijkstr@arm.com>
31224
31225 * config/aarch64/aarch64.c (generic_vector_cost):
31226 Set vec_permute_cost.
31227 (cortexa57_vector_cost): Likewise.
31228 (exynosm1_vector_cost): Likewise.
31229 (xgene1_vector_cost): Likewise.
31230 (aarch64_builtin_vectorization_cost): Use vec_permute_cost.
31231 * config/aarch64/aarch64-protos.h (cpu_vector_cost):
31232 Add vec_permute_cost entry.
31233
31234 2016-01-28 Wilco Dijkstra <wdijkstr@arm.com>
31235
31236 * config/aarch64/aarch64.md (ccmp<mode>): Disassemble
31237 immediate as %1.
31238 (add<mode>3_compare0): Likewise.
31239 (addsi3_compare0_uxtw): Likewise.
31240 (add<mode>3nr_compare0): Likewise.
31241 (compare_neg<mode>): Likewise.
31242 (<optab><mode>3): Likewise.
31243
31244 2016-01-28 Ilya Enkovich <enkovich.gnu@gmail.com>
31245
31246 * tree-vect-stmts.c (vectorizable_comparison): Add
31247 NULL check for vectype.
31248
31249 2016-01-28 Richard Biener <rguenther@suse.de>
31250
31251 PR tree-optimization/69466
31252 * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
31253 Account for PHIs we couldn't duplicate.
31254
31255 2016-01-28 Martin Liska <mliska@suse.cz>
31256
31257 PR pch/68758
31258 * ggc-common.c (gt_pch_save): Use ENABLE_VALGRIND_ANNOTATIONS macro
31259 instead of ENABLE_VALGRIND_CHECKING.
31260
31261 2016-01-27 Richard Henderson <rth@redhat.com>
31262
31263 PR rtl-opt/69447
31264 * lra-remat.c (subreg_regs): New.
31265 (dump_candidates_and_remat_bb_data): Dump it.
31266 (operand_to_remat): Reject if operand in subreg_regs.
31267 (set_bb_regs): Collect subreg_regs.
31268 (lra_remat): Init and free subreg_regs. Compute
31269 calculate_local_reg_remat_bb_data before create_cands.
31270
31271 2016-01-27 H.J. Lu <hongjiu.lu@intel.com>
31272
31273 PR target/68986
31274 * config/i386/i386.c (ix86_update_stack_boundary): Don't
31275 change stack_alignment_needed for __tls_get_addr call.
31276
31277 2016-01-27 Segher Boessenkool <segher@kernel.crashing.org>
31278
31279 * config/rs6000/rs6000.c (print_operand): Rollback 's' removal.
31280
31281 2016-01-27 Jeff Law <law@redhat.com>
31282
31283 PR tree-optimization/68398
31284 PR tree-optimization/69196
31285 * params.def (PARAM_FSM_SCALE_PATH_STMTS): New parameter.
31286 (PARAM_FSM_SCALE_PATH_BLOCKS): Likewise.
31287 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
31288 Only count PHIs in the last block in the path. The others will
31289 const/copy propagate away. Add heuristic to allow more irreducible
31290 subloops to be created when it is likely profitable to do so.
31291
31292 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
31293 Fix typo in comment. Use gsi_after_labels and remove the GIMPLE_LABEL
31294 check from within the loop. Use gsi_next_nondebug rather than gsi_next.
31295
31296 2016-01-27 Jakub Jelinek <jakub@redhat.com>
31297
31298 PR lto/69254
31299 * sanitizer.def: Add BEGIN_SANITIZER_BUILTINS and
31300 END_SANITIZER_BUILTINS markers using DEF_BUILTIN_STUB.
31301 * asan.c (DEF_BUILTIN_STUB): Temporarily define.
31302 * tree-streamer-in.c: Include asan.h.
31303 (streamer_get_builtin_tree): For builtins in sanitizer
31304 range call initialize_sanitizer_builtins and retry.
31305
31306 2016-01-27 Ian Lance Taylor <iant@google.com>
31307
31308 * common.opt (fkeep-gc-roots-live): New undocumented option.
31309 * tree-ssa-loop-ivopts.c (add_candidate_1): If
31310 -fkeep-gc-roots-live, skip pointers.
31311 (add_iv_candidate_for_biv): Handle add_candidate_1 returning
31312 NULL.
31313
31314 2016-01-27 Uros Bizjak <ubizjak@gmail.com>
31315
31316 PR target/69512
31317 * config/i386/i386.md (*zext<mode>_doubleword_and): New pattern.
31318 (*zext<mode>_doubleword): Disable for TARGET_ZERO_EXTEND_WITH_AND.
31319
31320 2016-01-27 Thomas Klausner <wiz@NetBSD.org>
31321
31322 PR target/68380
31323 * configure.ac: NetBSD provides SSP in its C library.
31324 * configure: Updated.
31325
31326 2016-01-27 Richard Biener <rguenther@suse.de>
31327
31328 PR tree-optimization/69166
31329 * tree-vect-loop.c (vect_is_simple_reduction): Always check
31330 reduction code for commutativity / associativity.
31331
31332 2016-01-27 Martin Jambor <mjambor@suse.cz>
31333
31334 PR tree-optimization/69355
31335 * tree-sra.c (analyze_access_subtree): Correct hole detection when
31336 total_scalarization fails.
31337
31338 2016-01-27 David Edelsohn <dje.gcc@gmail.com>
31339
31340 * config/rs6000/driver-rs6000.c (detect_processor_aix): Add
31341 power9.
31342
31343 2016-01-27 Christian Bruel <christian.bruel@st.com>
31344
31345 PR target/69245
31346 * config/arm/arm-c.c (arm_pragma_target_parse): Add comments.
31347 Move arm_reset_previous_fndecl and set_target_option_current_node in
31348 the conditional part. Call save_restore_target_globals.
31349 * config/arm/arm.c (arm_set_current_function):
31350 Refactor to better support #pragma target and attribute mix.
31351 Call save_restore_target_globals.
31352 * config/arm/arm-protos.h (save_restore_target_globals): New function.
31353
31354 2016-01-27 Martin Liska <mliska@suse.cz>
31355
31356 * hsa.c (hsa_summary_t::link_functions): Create IPA_REF_ADDR
31357 reference for an HSA kernel and its host function.
31358
31359 2016-01-27 Jakub Jelinek <jakub@redhat.com>
31360
31361 PR tree-optimization/69399
31362 * wide-int.h (wi::lrshift): For larger precisions, only
31363 use fast path if shift is known to be < HOST_BITS_PER_WIDE_INT.
31364
31365 2016-01-27 Claudiu Zissulescu <claziss@synopsys.com>
31366
31367 * config/arc/predicates.md (proper_comparison_operator): Reject
31368 constant-constant comparison.
31369
31370 2016-01-26 Tom de Vries <tom@codesourcery.com>
31371
31372 PR tree-optimization/69110
31373 * tree-data-ref.c (initialize_data_dependence_relation): Handle
31374 DR_NUM_DIMENSIONS == 0.
31375
31376 2016-01-26 Abderrazek Zaafrani <a.zaafrani@samsung.com>
31377 Sebastian Pop <s.pop@samsung.com>
31378
31379 * graphite-isl-ast-to-gimple.c (ternary_op_to_tree): Handle
31380 isl_ast_op_cond and isl_ast_op_select.
31381 (gcc_expression_from_isl_expr_op): Same.
31382
31383 2016-01-26 Jason Merrill <jason@redhat.com>
31384
31385 PR c++/68782
31386 * tree.c (recompute_constructor_flags): Split out from
31387 build_constructor.
31388 (verify_constructor_flags): New.
31389 * tree.h: Declare them.
31390
31391 2016-01-26 Iain Buclaw <ibuclaw@gdcproject.org>
31392
31393 PR rtl-optimization/69217
31394 * var-tracking.c (tracked_record_parameter_p): Don't segfault if there
31395 are no TYPE_FIELDS set for the record type.
31396
31397 2016-01-26 Jakub Jelinek <jakub@redhat.com>
31398
31399 PR target/68662
31400 * config/rs6000/rs6000.c (rs6000_option_override_internal): Initialize
31401 toc_label_name unconditionally.
31402 (rs6000_emit_load_toc_table): Call ggc_strdup on toc_label_name for
31403 SYMBOL_REF string. Use toc_label_name instead of constructing
31404 LCTOC1.
31405 (rs6000_elf_declare_function_name): Use toc_label_name instead of
31406 constructing LCTOC1.
31407
31408 2016-01-26 Martin Sebor <msebor@redhat.com>
31409
31410 PR other/69477
31411 * doc/extend.texi (Common Type Attributes): Move text that talks about
31412 attribute packed from attribute aligned to the section discussing
31413 the former attribute for clarity.
31414
31415 2016-01-26 Richard Henderson <rth@redhat.com>
31416
31417 PR middle-end/60908
31418 * trans-mem.c (tm_region_init): Mark entry block as visited.
31419
31420 2016-01-26 David Malcolm <dmalcolm@redhat.com>
31421
31422 PR other/69006
31423 * diagnostic-show-locus.c (layout::print_source_line): Replace
31424 call to pp_newline with call to layout::print_newline.
31425 (layout::print_annotation_line): Likewise.
31426 (layout::move_to_column): Likewise.
31427 (layout::print_any_fixits): After printing any fixits, print a
31428 trailing newline, if necessary.
31429 (layout::print_newline): New method, resetting any colorization
31430 before a newline.
31431 (diagnostic_show_locus): Move the pp_newline to before the
31432 early bailout. Remove dummy block enclosing the layout instance.
31433 * diagnostic.c (default_diagnostic_finalizer): Replace invocation
31434 of pp_newline_and_flush with pp_flush.
31435 (diagnostic_append_note): Delete use of pp_newline.
31436 (diagnostic_append_note_at_rich_loc): Delete.
31437 * diagnostic.h (diagnostic_append_note_at_rich_loc): Delete.
31438 * pretty-print.h (output_buffer_append_r): Reset buff->line_length
31439 when newline characters are added to the buffer.
31440
31441 2016-01-26 Michael Matz <matz@suse.de>
31442
31443 * configure.ac (ac_cv_std_swap_in_utility): New test.
31444 * system.h (<algorithm>): Check HAVE_SWAP_IN_UTILITY as well.
31445 * configure: Regenerate.
31446 * config.in: Regenerate.
31447
31448 2016-01-26 Claudiu Zissulescu <claziss@synopsys.com>
31449
31450 * config/arc/arc.md (cstoresi4): Force operand into register.
31451 (arcset<code>): Fix predicate.
31452 (arcsetltu): Likewise.
31453 (arcsetgeu): Likewise.
31454 (arcsethi): Likewise.
31455 (arcsetls): Likewise.
31456
31457 2016-01-26 Jakub Jelinek <jakub@redhat.com>
31458
31459 PR tree-optimization/69483
31460 * gimple-fold.c (canonicalize_constructor_val): Return NULL
31461 if base has error_mark_node type.
31462
31463 2016-01-26 Christophe Lyon <christophe.lyon@linaro.org>
31464
31465 PR target/68620
31466 * config/arm/arm.c (neon_valid_immediate): Handle FP16 vectors.
31467 * config/arm/arm_neon.h (__ARM_NUM_LANES, __arm_lane, arm_lanq):
31468 New helper macros.
31469 (vget_lane_f16): Handle big-endian.
31470 (vgetq_lane_f16): Likewise.
31471 (vset_lane_f16): Likewise.
31472 (vsetq_lane_f16): Likewise.
31473 * config/arm/iterators.md (VQXMOV): Add V8HF.
31474 (VDQ): Add V4HF and V8HF.
31475 (V_reg): Handle V4HF and V8HF.
31476 (Is_float_mode): Likewise.
31477 * config/arm/neon.md (movv4hf, movv8hf, neon_vdup_nv4hf,
31478 neon_vdup_nv8hf): New patterns.
31479 (vec_set<mode>_internal, vec_extract<mode>, neon_vld1_dup<mode>):
31480 Use VD_LANE iterator.
31481 (neon_vld1_dup<mode>): Use VQ2 iterator.
31482
31483 2016-01-26 Nathan Sidwell <nathan@acm.org>
31484
31485 * omp-low.h (oacc_fn_attrib_kernels_p): Declare.
31486 (set_oacc_fn_attrib): Add IS_KERNEL arg.
31487 * omp-low.c (set_oacc_fn_attrib): Add IS_KERNEL arg.
31488 (oacc_fn_attrib_kernels_p, oacc_fn_attrib_level): New.
31489 (expand_omp_target): Pass is_kernel to set_oacc_fn_attrib.
31490 (oacc_validate_dims): Add LEVEL arg, don't return level.
31491 (new_oacc_loop_routine): Use oacc_fn_attrib_level, not
31492 oacc_validate_dims.
31493 (execute_oacc_device_lower): Adjust, add more dump output.
31494 * tree-ssa-loop.c (gate_oacc_kernels): Use
31495 oacc_fn_attrib_kernels_p.
31496 * tree-parloops.c (create_parallel_loop): Adjust
31497 set_oacc_fn_attrib call.
31498
31499 2016-01-26 Jakub Jelinek <jakub@redhat.com>
31500
31501 PR lto/69254
31502 * lto-wrapper.c (merge_and_complain): Handle -fcilkplus.
31503 (append_compiler_options): Handle -fcilkplus.
31504 (append_linker_options): Ignore -fno-{openmp,openacc,cilkplus}.
31505
31506 2016-01-26 Nick Clifton <nickc@redhat.com>
31507
31508 PR target/66655
31509 * config/i386/winnt.c (i386_pe_binds_local_p): If a function has
31510 been marked as DECL_ONE_ONLY but we do not the means to make it
31511 so, then do not allow it to bind locally.
31512
31513 2016-01-26 Jakub Jelinek <jakub@redhat.com>
31514
31515 PR lto/69254
31516 * opts.h (parse_sanitizer_options): New prototype.
31517 * opts.c (sanitizer_opts): New array.
31518 (parse_sanitizer_options): New function.
31519 (common_handle_option): Use parse_sanitizer_options.
31520
31521 2016-01-26 H.J. Lu <hongjiu.lu@intel.com>
31522
31523 PR target/68986
31524 * config/i386/i386.c (ix86_compute_frame_layout): Move stack
31525 alignment adjustment to ...
31526 (ix86_update_stack_boundary): Here. Don't over-align stack for
31527 __tls_get_addr.
31528 (ix86_finalize_stack_realign_flags): Use stack_alignment_needed
31529 if __tls_get_addr is called.
31530
31531 2016-01-26 Christian Bruel <christian.bruel@st.com>
31532
31533 * doc/sourcebuild.texi (arm_crypto_pragma_ok): Remove.
31534
31535 2016-01-26 Eric Botcazou <ebotcazou@adacore.com>
31536
31537 * config/ia64/ia64.c (ia64_expand_vecint_compare): Use gen_int_mode.
31538
31539 2016-01-26 Richard Biener <rguenther@suse.de>
31540
31541 PR middle-end/69467
31542 * match.pd: Guard X * CST CMP 0 pattern with single_use.
31543
31544 2016-01-26 Richard Biener <rguenther@suse.de>
31545
31546 PR tree-optimization/69452
31547 * tree-ssa-loop-im.c (move_computations_dom_walker): Remove.
31548 (move_computations_dom_walker::before_dom_children): Rename
31549 to ...
31550 (move_computations_worker): This.
31551 (move_computations): Perform an RPO rather than a DOM walk.
31552
31553 2016-01-26 Jakub Jelinek <jakub@redhat.com>
31554
31555 PR target/69442
31556 * combine.c (combine_instructions): For REG_EQUAL note with
31557 SET_DEST being ZERO_EXTRACT, also temporarily set SET_DEST
31558 to the underlying register.
31559 * doc/rtl.texi (REG_EQUAL): Document the behavior of
31560 REG_EQUAL/REG_EQUIV notes if SET_DEST is ZERO_EXTRACT.
31561
31562 2016-01-26 Roger Ferrer Ibáñez <rofirrim@gmail.com>
31563
31564 PR target/67896
31565 * config/aarch64/aarch64-builtins.c
31566 (aarch64_init_simd_builtin_types): Do not set structural
31567 equality to __Poly{8,16,64,128}_t types.
31568
31569 2016-01-26 Richard Sandiford <richard.sandiford@arm.com>
31570
31571 PR tree-optimization/69400
31572 * wide-int.cc (wi_pack): Take the precision as argument and
31573 perform canonicalization here rather than in the callers.
31574 Use the main loop to handle all full-width HWIs. Add a
31575 zero HWI if in_len isn't a full result.
31576 (wi::divmod_internal): Update accordingly.
31577 (wi::mul_internal): Likewise. Simplify.
31578
31579 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
31580 Sebastian Pop <s.pop@samsung.com>
31581
31582 * graphite-poly.c (apply_poly_transforms): Simplify.
31583 (print_isl_set): Use more readable format: ISL_YAML_STYLE_BLOCK.
31584 (print_isl_map): Same.
31585 (print_isl_union_map): Same.
31586 (print_isl_schedule): New.
31587 (debug_isl_schedule): New.
31588 * graphite-dependences.c (scop_get_reads): Do not call
31589 isl_union_map_add_map that is undocumented isl functionality.
31590 (scop_get_must_writes): Same.
31591 (scop_get_may_writes): Same.
31592 (scop_get_original_schedule): Remove.
31593 (scop_get_dependences): Do not call isl_union_map_compute_flow that
31594 is deprecated in isl 0.15. Instead, use isl_union_access_* interface.
31595 (compute_deps): Remove.
31596 * graphite-isl-ast-to-gimple.c (print_schedule_ast): New.
31597 (debug_schedule_ast): New.
31598 (translate_isl_ast_to_gimple::scop_to_isl_ast): Call
31599 set_separate_option.
31600 (graphite_regenerate_ast_isl): Add dump.
31601 (translate_isl_ast_to_gimple::scop_to_isl_ast): Generate code
31602 from scop->transformed_schedule.
31603 (graphite_regenerate_ast_isl): Add more dump.
31604 * graphite-optimize-isl.c (optimize_isl): Set
31605 scop->transformed_schedule. Check whether schedules are equal.
31606 (apply_poly_transforms): Move here.
31607 * graphite-poly.c (apply_poly_transforms): ... from here.
31608 (free_poly_bb): Static.
31609 (free_scop): Static.
31610 (pbb_number_of_iterations_at_time): Remove.
31611 (print_isl_ast): New.
31612 (debug_isl_ast): New.
31613 (debug_scop_pbb): New.
31614 * graphite-scop-detection.c (print_edge): Move.
31615 (print_sese): Move.
31616 * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Remove.
31617 (build_scop_scattering): Remove.
31618 (create_pw_aff_from_tree): Assert instead of bailing out.
31619 (add_condition_to_pbb): Remove unused code, do not fail.
31620 (add_conditions_to_domain): Same.
31621 (add_conditions_to_constraints): Remove.
31622 (build_scop_context): New.
31623 (add_iter_domain_dimension): New.
31624 (build_iteration_domains): Initialize pbb->iterators.
31625 Call add_conditions_to_domain.
31626 (nested_in): New.
31627 (loop_at): New.
31628 (index_outermost_in_loop): New.
31629 (index_pbb_in_loop): New.
31630 (outermost_pbb_in): New.
31631 (add_in_sequence): New.
31632 (add_outer_projection): New.
31633 (outer_projection_mupa): New.
31634 (add_loop_schedule): New.
31635 (build_schedule_pbb): New.
31636 (build_schedule_loop): New.
31637 (embed_in_surrounding_loops): New.
31638 (build_schedule_loop_nest): New.
31639 (build_original_schedule): New.
31640 (build_poly_scop): Call build_original_schedule.
31641 * graphite.h: Declare print_isl_schedule and debug_isl_schedule.
31642 (free_poly_dr): Remove.
31643 (struct poly_bb): Add iterators. Remove schedule, transformed, saved.
31644 (free_poly_bb): Remove.
31645 (debug_loop_vec): Remove.
31646 (print_isl_ast): Declare.
31647 (debug_isl_ast): Declare.
31648 (scop_do_interchange): Remove.
31649 (scop_do_strip_mine): Remove.
31650 (scop_do_block): Remove.
31651 (flatten_all_loops): Remove.
31652 (optimize_isl): Remove.
31653 (pbb_number_of_iterations_at_time): Remove.
31654 (debug_scop_pbb): Declare.
31655 (print_schedule_ast): Declare.
31656 (debug_schedule_ast): Declare.
31657 (struct scop): Remove schedule. Add original_schedule,
31658 transformed_schedule.
31659 (free_gimple_poly_bb): Remove.
31660 (print_generated_program): Remove.
31661 (debug_generated_program): Remove.
31662 (unify_scattering_dimensions): Remove.
31663 * sese.c (print_edge): ... here.
31664 (print_sese): ... here.
31665 (debug_edge): ... here.
31666 (debug_sese): ... here.
31667 * sese.h (print_edge): Declare.
31668 (print_sese): Declare.
31669 (dump_edge): Declare.
31670 (dump_sese): Declare.
31671
31672 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
31673 Sebastian Pop <s.pop@samsung.com>
31674
31675 * Makefile.in: Set ISLVER in site.exp.
31676
31677 2016-01-25 Jakub Jelinek <jakub@redhat.com>
31678
31679 * omp-low.c (lower_omp_target) <case USE_DEVICE_PTR>: Set
31680 DECL_VALUE_EXPR of new_var even for the non-array case. Look
31681 through DECL_VALUE_EXPR for expansion.
31682
31683 2016-01-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
31684
31685 * config/mips/mips.c (mips_compute_frame_info): Skip re-computing
31686 the frame info after reload completed.
31687
31688 2016-01-25 Jeff Law <law@redhat.com>
31689
31690 PR tree-optimization/69196
31691 PR tree-optimization/68398
31692 * tree-ssa-threadupdate.h (enum bb_dom_status): Moved here from
31693 tree-ssa-threadupdate.c.
31694 (determine_bb_domination_status): Prototype
31695 * tree-ssa-threadupdate.c (enum bb_dom_status): Remove
31696 (determine_bb_domination_status): No longer static.
31697 (valid_jump_thread_path): Remove code to detect characteristics
31698 of the jump thread path not associated with correctness.
31699 * tree-ssa-threadbackward.c (fsm_find_control_statment_thread_paths):
31700 Correct test for thread path length. Count PHIs for real operands as
31701 statements that need to be copied. Do not count ASSERT_EXPRs.
31702 Look at all the blocks in the thread path. Compute and selectively
31703 filter thread paths based on threading through the latch, threading
31704 a multiway branch or crossing a multiway branch.
31705
31706 2016-01-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
31707
31708 * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): Add
31709 decl with __attribute__ ((unused)) annotation.
31710
31711 2016-01-25 Ilya Enkovich <enkovich.gnu@gmail.com>
31712
31713 PR target/69421
31714 * tree-vect-stmts.c (vectorizable_condition): Check vectype
31715 of operands is compatible with a statement vectype.
31716
31717 2016-01-25 Eric Botcazou <ebotcazou@adacore.com>
31718
31719 * doc/extend.texi (scalar_storage_order type attribute): Fix typo and
31720 improve wording for mixed storage order support.
31721
31722 2016-01-25 Bilyan Borisov <bilyan.borisov@arm.com>
31723
31724 * config/aarch64/arm_neon.h (vcvt_s64_f64): New intrinsic.
31725 (vcvt_u64_f64): Likewise.
31726 (vcvta_s64_f64): Likewise.
31727 (vcvta_u64_f64): Likewise.
31728 (vcvtm_s64_f64): Likewise.
31729 (vcvtm_u64_f64): Likewise.
31730 (vcvtn_s64_f64): Likewise.
31731 (vcvtn_u64_f64): Likewise.
31732 (vcvtp_s64_f64): Likewise.
31733 (vcvtp_u64_f64): Likewise.
31734
31735 2016-01-25 Claudiu Zissulescu <claziss@synopsys.com>
31736
31737 * config/arc/arc.c (TARGET_DWARF_REGISTER_SPAN): Define.
31738 (arc_init): Check validity mll64 option.
31739 (arc_save_restore): Use double load/store instruction.
31740 (arc_expand_movmem): Likewise.
31741 (arc_split_move): Don't split if we have double load/store
31742 instructions. Returns a boolean.
31743 (arc_process_double_reg_moves): Change function to return boolean
31744 instead of a sequence of instructions.
31745 (arc_dwarf_register_span): New function.
31746 * config/arc/arc-protos.h (arc_split_move): Change prototype.
31747 * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Define __ARC_LL64__.
31748 * config/arc/arc.md (*movdi_insn): Emit ldd/std instructions.
31749 (*movdf_insn): Likewise.
31750 * config/arc/arc.opt (mll64): New option.
31751 * config/arc/predicates.md (even_register_operand): New predicate.
31752 * doc/invoke.texi (ARC Options): Add mll64 documentation.
31753
31754 2016-01-25 Richard Biener <rguenther@suse.de>
31755
31756 PR lto/69393
31757 * dwarf2out.c (is_naming_typedef_decl): Not when DECL_NAMELESS.
31758 * tree-streamer-out.c (pack_ts_base_value_fields): Stream
31759 DECL_NAMELESS.
31760 * tree-streamer-in.c (unpack_ts_base_value_fields): Likewise.
31761
31762 2016-01-25 Richard Biener <rguenther@suse.de>
31763
31764 PR tree-optimization/69376
31765 * tree-ssa-sccvn.h (struct vn_ssa_aux): Add range_info_anti_range_p
31766 flag.
31767 (VN_INFO_ANTI_RANGE_P): New inline.
31768 (VN_INFO_RANGE_TYPE): Likewise.
31769 * tree-ssa-sccvn.c (set_ssa_val_to): Also record and copy
31770 SSA_NAME_ANTI_RANGE_P.
31771 (free_scc_vn): Restore SSA_NAME_ANTI_RANGE_P.
31772 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
31773 Properly query VN_INFO_RANGE_TYPE.
31774
31775 2016-01-25 Nick Clifton <nickc@redhat.com>
31776
31777 PR target/66655
31778 * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Remove definition.
31779
31780 2016-01-23 Tom de Vries <tom@codesourcery.com>
31781
31782 PR tree-optimization/69426
31783 * tree-parloops.c (eliminate_local_variables_stmt): Handle vdef of
31784 removed clobber.
31785
31786 2016-01-23 Jakub Jelinek <jakub@redhat.com>
31787
31788 * tree-ssanames.c (release_free_names_and_compact_live_names): Replace
31789 "the the" with "the" in the comments.
31790 * ipa-devirt.c (build_type_inheritance_graph,
31791 update_type_inheritance_graph): Likewise.
31792 * tree.c (build_function_type_list_1): Likewise.
31793 * cfgloopmanip.c (scale_loop_profile): Likewise.
31794 * tree-ssa-loop-ivopts.c (get_shiftadd_cost): Likewise.
31795 * gimple-ssa-split-paths.c
31796 (find_block_to_duplicate_for_splitting_paths): Likewise.
31797 * tree-sra.c (init_subtree_with_zero, clobber_subtree): Likewise.
31798 * expr.c (convert_move): Likewise.
31799 * var-tracking.c (vt_stack_adjustments): Likewise.
31800 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Likewise.
31801 * tree-vrp.c (test_for_singularity): Likewise.
31802
31803 * tree-vect-stmts.c (vectorizable_condition): Build a VEC_COND_EXPR
31804 directly instead of building a temporary tree.
31805
31806 PR bootstrap/69434
31807 * genrecog.c: Define INCLUDE_ALGORITHM before including system.h,
31808 remove <algorithm> include.
31809
31810 2016-01-22 Jakub Jelinek <jakub@redhat.com>
31811
31812 PR target/69432
31813 * config/i386/i386.c: Include dojump.h.
31814 (expand_small_movmem_or_setmem,
31815 expand_set_or_movmem_prologue_epilogue_by_misaligned_moves): Spelling
31816 fixes.
31817 (ix86_expand_set_or_movmem): Call do_pending_stack_adjust () early
31818 if dynamic_check != -1.
31819
31820 2016-01-21 Jeff Law <law@redhat.com>
31821
31822 PR middle-end/69347
31823 * tree-ssa-dom.c (back_propagate_equivalences): Factored out of
31824 record_temporary_equivalences. Rewritten to avoid unnecessary calls
31825 into dominated_by_p.
31826 (cprop_into_successor_phis): Avoid unnecessary tests.
31827
31828 2016-01-22 Richard Henderson <rth@redhat.com>
31829
31830 PR target/69416
31831 * config/aarch64/aarch64.md (UNSPEC_NZCV): New.
31832 (ccmp<mode>, fccmp<mode>, fccmpe<mode>): Use it.
31833
31834 2016-01-22 Michael Matz <matz@suse.de>
31835
31836 * system.h (string, algorithm): Include only conditionally.
31837 (new): Include always under C++.
31838 * bb-reorder.c (toplevel): Define INCLUDE_ALGORITHM.
31839 * final.c (toplevel): Ditto.
31840 * ipa-chkp.c (toplevel): Define INCLUDE_STRING.
31841 * genconditions.c (write_header): Make gencondmd.c define
31842 INCLUDE_STRING.
31843 * mem-stats.h (mem_usage::print_dash_line): Don't use std::string.
31844
31845 * config/aarch64/aarch64.c (toplevel): Define INCLUDE_STRING.
31846 * common/config/aarch64/aarch64-common.c (toplevel): Ditto.
31847
31848 2016-01-22 Christian Bruel <christian.bruel@st.com>
31849
31850 PR target/68674
31851 * expr.c (expand_expr_real_1): Reset DECL_MODE if VECTOR_TYPE_P changed.
31852
31853 2016-01-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
31854
31855 PR target/69403
31856 * config/arm/thumb2.md (*thumb2_ior_scc_strict_it): Convert to
31857 define_insn_and_split. Ensure operands[1] and operands[0] do not
31858 get assigned the same register.
31859
31860 2016-01-22 Kugan Vivekanandarajah <kuganv@linaro.org>
31861
31862 * ipa-prop.c (ipa_set_jf_constant): Remove redundant unshare_expr.
31863
31864 2016-01-22 Christian Bruel <christian.bruel@st.com>
31865
31866 * config/arm/arm-c.c (arm_pragma_target_parse):
31867 Remove warn_builtin_macro_redefined overwrite.
31868
31869 2016-01-22 Eric Botcazou <ebotcazou@adacore.com>
31870
31871 * ipa-inline.c (can_inline_edge_p): Back out overzealous check on
31872 flag_non_call_exceptions compatibility.
31873
31874 2016-01-22 Jakub Jelinek <jakub@redhat.com>
31875
31876 PR debug/66668
31877 * dwarf2out.c (add_child_die_after): New function.
31878 (dwarf_qual_info_t): New type.
31879 (dwarf_qual_info): New variable.
31880 (qualified_die_p): New function.
31881 (modified_type_die): For -fdebug-types-section, ensure
31882 canonical order of qualifiers. Put qualified DIEs adjacent
31883 to the corresponding non-qualified type DIE and search there
31884 for existing qualified DIEs.
31885
31886 2016-01-22 Eric Botcazou <ebotcazou@adacore.com>
31887
31888 * doc/extend.texi (scalar_storage_order type attribute): Document
31889 restriction on type punning and aliasing, and remove future tense.
31890
31891 2016-01-21 Roman Zhuykov <zhroma@ispras.ru>
31892
31893 PR target/69252
31894 * modulo-sched.c (optimize_sc): Allow branch-scheduling to add a new
31895 first stage.
31896
31897 2016-01-21 Jeff Law <law@redhat.com>
31898
31899 PR middle-end/69347
31900 * tree-ssa-dom.c (dom_opt_dom_walker::thread_across_edge): Avoid
31901 useless call to record_temporary_equivalences.
31902 * tree-ssa-threadbackward.c (find_jump_threads_backwards): Just
31903 allocate 10 slots in the bb_path vector and let it grow as needed.
31904 (fsm_find_control_statement_thread_paths): Similarly for the next_path
31905 vector.
31906
31907 2016-01-21 David Edelsohn <dje.gcc@gmail.com>
31908
31909 * configure.ac (gcc_cv_as_powerpc_mfcrf, gcc_cv_as_machine_directive):
31910 Detangle.
31911 * configure: Regenerate.
31912
31913 2016-01-21 Pat Haugen <pthaugen@us.ibm.com>
31914
31915 * config/rs6000/aix71.h (ASM_CPU_SPEC): Add entry for Power9.
31916 * config/rs6000/driver-rs6000.c (struct asm_names): Likewise.
31917
31918 2016-01-21 Bernd Schmidt <bschmidt@redhat.com>
31919
31920 PR middle-end/66178
31921 * expr.c (expand_expr_real_2) [PLUS_EXPR, MINUS_EXPR]: Don't
31922 drop EXPAND_INITIALIZER.
31923 * rtl.h (contains_symbolic_reference_p): Declare.
31924 * rtlanal.c (contains_symbolic_reference_p): New function.
31925 * simplify-rtx.c (simplify_binary_operation_1): Don't turn
31926 a subtraction into a NOT if symbolic constants are involved.
31927
31928 2016-01-21 Anton Blanchard <anton@samba.org>
31929 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
31930
31931 PR target/63354
31932 * config/rs6000/linux64.h (TARGET_KEEP_LEAF_WHEN_PROFILED): New
31933 #define.
31934 * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): New
31935 function.
31936
31937 2016-01-21 Ajit Agarwal <ajitkum@xilinx.com>
31938
31939 * config/microblaze/microblaze.c
31940 (get_branch_target): New.
31941 (insert_wic_for_ilb_runout): New.
31942 (insert_wic): New.
31943 (microblaze_machine_dependent_reorg): New.
31944 (TARGET_MACHINE_DEPENDENT_REORG): Define macro.
31945 * config/microblaze/microblaze.md
31946 (UNSPEC_IPREFETCH): Define.
31947 (iprefetch): New pattern
31948 * config/microblaze/microblaze.opt
31949 (mxl-prefetch): New flag.
31950
31951 2016-01-21 Ajit Agarwal <ajitkum@xilinx.com>
31952
31953 * config/microblaze/microblaze.h
31954 (FIXED_REGISTERS): Update in macro.
31955 (CALL_USED_REGISTERS): Update in macro.
31956
31957 2016-01-21 Yuri Rumyantsev <ysrumyan@gmail.com>
31958
31959 PR rtl-optimization/68920
31960 * ifcvt.c (cond_move_process_if_block): Limit number of conditional
31961 moves.
31962
31963 2016-01-21 Vladimir Makarov <vmakarov@redhat.com>
31964
31965 PR rtl-optimization/68990
31966 * lra-coalesce.c (lra_coalesce): Invalidate value for the result
31967 pseudo instead of inheritance ones.
31968
31969 2016-01-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
31970 Nick Clifton <nickc@redhat.com>
31971
31972 PR target/69129
31973 PR target/69012
31974 * config/mips/mips.c (mips_compute_frame_info): Initialise
31975 args_size and hard_frame_pointer_offset fields of the frame
31976 structure before calling mips_global_pointer.
31977
31978 2016-01-21 David Edelsohn <dje.gcc@gmail.com>
31979
31980 * configure.ac (gcc_cv_as_dwloc): Test support for debug frame section
31981 label reference.
31982 * configure: Regenerate.
31983
31984 2016-01-21 Richard Biener <rguenther@suse.de>
31985
31986 * graphite-optimize-isl.c (get_schedule_map): Fix typo.
31987
31988 2016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
31989
31990 * config/s390/s390.c (s390_asm_declare_function_size): Add code
31991 to actually emit the .size directive.
31992
31993 2016-01-21 Stefan Sørensen <stefan.sorensen@spectralink.com>
31994 Jakub Jelinek <jakub@redhat.com>
31995
31996 PR target/69187
31997 PR target/65624
31998 * config/arm/arm-builtins.c (arm_expand_neon_builtin): Increase
31999 args array size by one to avoid buffer overflow.
32000
32001 2016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
32002
32003 * config/s390/s390.md (pool_section_start): Use switch_to_section
32004 to select proper read-only data section instead of hardcoding
32005 .rodata.
32006 (pool_section_end): Use switch_to_section to match the above.
32007
32008 2016-01-21 Richard Biener <rguenther@suse.de>
32009
32010 PR tree-optimization/69378
32011 * tree-ssa-sccvn.c (dominated_by_p_w_unex): New function.
32012 (set_ssa_val_to): Use it for dominance checks taking into
32013 account not executable edges.
32014
32015 2016-01-21 Jakub Jelinek <jakub@redhat.com>
32016
32017 PR c++/69355
32018 * tree-dfa.c (get_ref_base_and_extent): Use GET_MODE_BITSIZE (mode)
32019 for bitsize instead of GET_MODE_PRECISION (mode).
32020
32021 2016-01-20 Martin Sebor <msebor@redhat.com>
32022
32023 PR c/52291
32024 * extend.texi (__sync Builtins): Clarify the semantics of
32025 __sync_fetch_and_OP built-ins on pointers.
32026 (__atomic Builtins): Same.
32027
32028 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32029 Sebastian Pop <s.pop@samsung.com>
32030
32031 * graphite-isl-ast-to-gimple.c (enum phi_node_kind): New.
32032 (class translate_isl_ast_to_gimple): Use phi_node_kind instead of bool.
32033 (is_valid_rename): Same.
32034 (translate_isl_ast_to_gimple::get_rename): Same.
32035 (translate_isl_ast_to_gimple::rename_all_uses): Same.
32036 (translate_isl_ast_to_gimple::rename_uses): Same.
32037 (get_new_name): Check for close_phi nodes.
32038 (copy_loop_phi_args): Use phi_node_kind.
32039 (translate_isl_ast_to_gimple::copy_loop_close_phi_args): Same.
32040 (translate_isl_ast_to_gimple::copy_cond_phi_args): Same.
32041
32042 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32043 Sebastian Pop <s.pop@samsung.com>
32044
32045 Revert commit r229783.
32046 * graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id):
32047 Remove use of parameter_rename_map.
32048 (copy_def): Remove.
32049 (copy_internal_parameters): Remove.
32050 (graphite_regenerate_ast_isl): Remove call to copy_internal_parameters.
32051 * sese.c (new_sese_info): Do not initialize parameter_rename_map.
32052 (free_sese_info): Do not free parameter_rename_map.
32053 (set_rename): Do not use parameter_rename_map.
32054 (rename_uses): Update call to set_rename.
32055 (graphite_copy_stmts_from_block): Do not use parameter_rename_map.
32056 * sese.h (parameter_rename_map_t): Remove.
32057 (struct sese_info_t): Remove field parameter_rename_map.
32058
32059 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32060 Sebastian Pop <s.pop@samsung.com>
32061
32062 * graphite-isl-ast-to-gimple.c: Fix comment.
32063 * graphite-scop-detection.c (defined_in_loop_p): New.
32064 (canonicalize_loop_closed_ssa): Do not add close phi nodes for SSA
32065 names defined in loop.
32066
32067 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32068 Sebastian Pop <s.pop@samsung.com>
32069
32070 * graphite-scop-detection.c (scop_detection::harmful_loop_in_region):
32071 Discard unstructured if-then-else regions.
32072
32073 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32074 Sebastian Pop <s.pop@samsung.com>
32075
32076 * graphite-sese-to-poly.c (set_scop_parameter_dim): Remove.
32077 (cleanup_loop_iter_dom): Remove.
32078 (build_loop_iteration_domains): Remove.
32079 (build_scop_context): Remove.
32080 (build_scop_iteration_domain): Remove.
32081 (add_loop_constraints): New.
32082 (build_iteration_domains): New.
32083 (build_poly_scop): Call build_iteration_domains.
32084
32085 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32086 Sebastian Pop <s.pop@samsung.com>
32087
32088 * graphite-scop-detection.c
32089 (scop_detection::harmful_loop_in_region): Free dom and loops.
32090 (scop_detection::loop_body_is_valid_scop): Free bbs.
32091
32092 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32093 Sebastian Pop <s.pop@samsung.com>
32094
32095 * graphite-scop-detection.c (record_loop_in_sese): New.
32096 (gather_bbs::before_dom_children): Call record_loop_in_sese.
32097 (build_scops): Remove call to build_sese_loop_nests.
32098 * sese.c (sese_record_loop): Remove.
32099 (build_sese_loop_nests): Remove.
32100 (new_sese_info): Remove region->loops.
32101 (free_sese_info): Same.
32102 * sese.h (sese_contains_loop): Same.
32103 (build_sese_loop_nests): Remove.
32104 (sese_contains_loop): Remove.
32105
32106 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32107 Sebastian Pop <s.pop@samsung.com>
32108
32109 * graphite-scop-detection.c (loop_is_valid_scop): Renamed
32110 loop_is_valid_in_scop.
32111 (scop_detection::harmful_stmt_in_region): Renamed
32112 harmful_loop_in_region.
32113 Call loop_is_valid_in_scop.
32114
32115 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32116 Sebastian Pop <s.pop@samsung.com>
32117
32118 * graphite-isl-ast-to-gimple.c (translate_isl_ast): Also handle
32119 isl_ast_node_mark.
32120
32121 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32122 Sebastian Pop <s.pop@samsung.com>
32123
32124 * graphite-poly.c (new_poly_bb): Remove use of PBB_IS_REDUCTION.
32125 * graphite.h (struct poly_bb): Remove field is_reduction.
32126 (PBB_IS_REDUCTION): Remove.
32127
32128 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
32129 Sebastian Pop <s.pop@samsung.com>
32130
32131 * graphite-dependences.c (constrain_domain): Add call to isl_*_coalesce.
32132 (add_pdr_constraints): Same.
32133 (scop_get_reads): Same.
32134 (scop_get_must_writes): Same.
32135 (scop_get_may_writes): Same.
32136 (scop_get_original_schedule): Same.
32137 (extend_schedule): Same.
32138 (apply_schedule_on_deps): Same.
32139 (carries_deps): Same.
32140 (compute_deps): Same.
32141 (scop_get_dependences): Same.
32142 * graphite-isl-ast-to-gimple.c
32143 (translate_isl_ast_to_gimple::generate_isl_schedule): Same.
32144 * graphite-optimize-isl.c (get_schedule_for_band): Same.
32145 (get_schedule_for_band_list): Same.
32146 (get_schedule_map): Same.
32147 (apply_schedule_map_to_scop): Same.
32148 * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Same.
32149 (build_loop_iteration_domains): Same.
32150 (add_condition_to_pbb): Same.
32151 (add_param_constraints): Same.
32152 (pdr_add_memory_accesses): Same.
32153 (pdr_add_data_dimensions): Same.
32154
32155 2016-01-20 Sandra Loosemore <sandra@codesourcery.com>
32156
32157 * doc/invoke.texi (Instrumentation Options): Clarify -mmpx linking
32158 requirements.
32159
32160 2016-01-20 Sandra Loosemore <sandra@codesourcery.com>
32161
32162 * common.opt (feliminate-dwarf2-dups): Replace references to
32163 "DWARF 2" with just "DWARF".
32164 * config/ia64/ia64.opt (mdwarf2-asm): Likewise.
32165 * doc/extend.texi: Likewise.
32166 * doc/cpp.texi: Likewise.
32167 * doc/invoke.texi: Likewise.
32168 (Option Summary): Add -gdwarf to list of Debugging Options.
32169 (Debugging Options): Document -gdwarf.
32170 * doc/contrib.texi: Spell "DWARF" like that.
32171
32172 2016-01-21 Jakub Jelinek <jakub@redhat.com>
32173
32174 * omp-low.c (expand_omp_target): Avoid -Wmaybe-uninitialized
32175 warning. Fix up formatting.
32176
32177 PR middle-end/67653
32178 * gimplify.c (gimplify_asm_expr): Warn if it is too late to
32179 attempt to mark memory input operand addressable and
32180 call prepare_gimple_addressable in that case. Don't adjust
32181 input_location for diagnostics, use error_at instead.
32182
32183 2016-01-20 Peter Bergner <bergner@vnet.ibm.com>
32184
32185 * config/rs6000/ppc-auxv.h: New file.
32186 * config/rs6000/rs6000-builtin.def (cpu_init): Add new builtin.
32187 (cpu_is): Likewise.
32188 (cpu_supports): Likewise.
32189 * config/rs6000/rs6000.c: include "ppc-auxv.h".
32190 (cpu_is_info): New variable.
32191 (cpu_supports_info): Likewise.
32192 (tcb_verification_symbol): Likewise.
32193 (cpu_builtin_p): Likewise.
32194 (cpu_expand_builtin): New function.
32195 (rs6000_expand_ternop_builtin): Add support for CPU builtin functions.
32196 (rs6000_init_builtins): Likewise.
32197 (rs6000_elf_file_end): Emit HWCAP in TCB verification symbol.
32198 * config/rs6000/rs6000.h (TLS_REGNUM): New define.
32199 * configure.ac (gcc_cv_libc_provides_hwcap_in_tcb): New test.
32200 * configure: Regenerate.
32201 * config.in: Likewise.
32202 * doc/extend.texi (PowerPC Built-in Functions): Document
32203 __builtin_cpu_init, __builtin_cpu_is and __builtin_cpu_supports.
32204
32205 2016-01-20 David Edelsohn <dje.gcc@gmail.com>
32206
32207 PR target/68609
32208 * config/rs6000/rs6000.c (rs6000_emit_swsqrt): Add vector sqrt
32209 domain check.
32210 * config/rs6000/vector.md (sqrt<mode>2): Call rs6000_emit_swsqrt
32211 for V4SFmode.
32212
32213 2016-01-20 Richard Henderson <rth@redhat.com>
32214
32215 PR bootstrap/69343
32216 PR bootstrap/69339
32217 PR tree-opt/68964
32218 Revert:
32219 * tree.c (tm_define_builtin): New.
32220 (find_tm_vector_type): New.
32221 (build_tm_vector_builtins): New.
32222 (build_common_builtin_nodes): Call it.
32223
32224 2016-01-20 Christophe Lyon <christophe.lyon@linaro.org>
32225
32226 * doc/sourcebuild.texi (arm_crypto_pragma_ok): Document new entry.
32227 (arm_fp_ok): Likewise.
32228 (arm_fp): Likewise.
32229 (arm_crypto): Likewise.
32230
32231 2016-01-20 Ilya Enkovich <enkovich.gnu@gmail.com>
32232 Richard Biener <rguenther@suse.de>
32233
32234 PR tree-optimization/69328
32235 * tree-vect-stmts.c (vect_is_simple_cond): Check compared
32236 vectors have same number of elements.
32237 (vectorizable_condition): Fix masked version recognition.
32238
32239 2016-01-20 Richard Biener <rguenther@suse.de>
32240
32241 PR tree-optimization/69345
32242 * tree-ssa-sccvn.h (VN_INFO_RANGE_INFO): New inline function.
32243 (VN_INFO_PTR_INFO): Likewise.
32244 * tree-ssa-sccvn.c (set_ssa_val_to): Avoid clearing points-to
32245 info when it is equal between non-dominating SSA names.
32246 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
32247 Make sure to look at original SSA infos.
32248
32249 2016-01-20 Jeff Law <law@redhat.com>
32250
32251 PR target/25114
32252 * config/m68k/predicates.md (pow2_m1_operand): New predicate
32253 extracted from ...
32254 (reg_or_pow2_m1_operand): Call pow2_m1_operand.
32255 (pc_or_label_operand): New predicate.
32256 * config/m68k/m68k.md: Add new peephole2 patterns for GTU/LEU
32257 tests for small integers that are 2^n - 1.
32258
32259 2016-01-20 Jonathan Wakely <jwakely@redhat.com>
32260
32261 * doc/invoke.texi (Options Summary): Add '.' after @xref.
32262
32263 2016-01-19 Jeff Law <law@redhat.com>
32264
32265 PR middle-end/69347
32266 * tree-ssa-threadbackwards.c
32267 (fsm_find_control_statement_thread_paths): Do not try to lookup
32268 FSM paths for SSA_NAMEs appearing in abnormal PHIs.
32269
32270 2016-01-20 Kugan Vivekanandarajah <kuganv@linaro.org>
32271
32272 * doc/lto.texi: Remove text that says only Gold has linker plugin
32273 support.
32274
32275 2016-01-19 Eric Botcazou <ebotcazou@adacore.com>
32276
32277 * dwarf2out.c (need_endianity_attribute_p): New inline predicate.
32278 (base_type_die): Add REVERSE parameter and attach DW_AT_endianity to
32279 the DIE accordingly.
32280 (modified_type_die): Add REVERSE parameter and pass it recursively,
32281 as well as to base_type_die. Adjust presence check accordingly.
32282 (base_type_for_mode): Adjust call to modified_type_die.
32283 (add_type_attribute): Add REVERSE parameter and pass it to
32284 modified_type_die.
32285 (generic_parameter_die): Adjust call to add_type_attribute.
32286 (add_scalar_info): Likewise.
32287 (add_subscript_info): Likewise.
32288 (gen_array_type_die): Likewise.
32289 (gen_descr_array_type_die): Likewise.
32290 (gen_entry_point_die): Likewise.
32291 (gen_enumeration_type_die): Likewise.
32292 (gen_formal_parameter_die): Likewise.
32293 (gen_subprogram_die): Likewise.
32294 (gen_variable_die ): Likewise.
32295 (gen_const_die): Likewise.
32296 (gen_field_die): Likewise.
32297 (gen_pointer_type_die): Likewise.
32298 (gen_reference_type_die): Likewise.
32299 (gen_ptr_to_mbr_type_die): Likewise.
32300 (gen_inheritance_die): Likewise.
32301 (gen_subroutine_type_die): Likewise.
32302 (gen_typedef_die): Likewise.
32303 (force_type_die): Adjust call to modified_type_die.
32304
32305 2016-01-19 Sandra Loosemore <sandra@codesourcery.com>
32306
32307 * doc/standards.texi: Copy-editing for grammar, markup, and sentence
32308 flow throughout the file. Fix broken link to Objective-C 2.0
32309 documentation.
32310 * doc/invoke.texi: More copy-editing; fix numerous typos and spelling
32311 errors.
32312
32313 2016-01-19 Wilco Dijkstra <wdijkstr@arm.com>
32314
32315 * ccmp.c (expand_ccmp_expr_1): Avoid spurious unused warnings.
32316
32317 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
32318
32319 PR ipa/66223
32320 * ipa-devirt.c (is_cxa_pure_virtual_p): New function.
32321 (maybe_record_node): Record cxa_pure_virtual as the only possible
32322 target if there are not ohter candidates.
32323 (possible_polymorphic_call_target_p): Accept cxa_pure_virtual.
32324
32325 2016-01-19 Richard Biener <rguenther@suse.de>
32326
32327 * hsa-gen.c (get_memory_order_name): Use MEMMODEL_ constants.
32328 (get_memory_order): Likewise.
32329
32330 2016-01-19 Kirill Yukhin <kirill.yukhin@intel.com>
32331
32332 * tree-vect-stmts.c (vectorizable_store): Check
32333 rhs vectype.
32334
32335 2016-01-19 David Malcolm <dmalcolm@redhat.com>
32336
32337 PR jit/68446
32338 * gcc.c (driver::decode_argv): Add call to
32339 init_opts_obstack before init_options_struct.
32340 * opts.c (init_opts_obstack): Remove idempotency.
32341 (init_options_struct): Replace call to init_opts_obstack
32342 with a gcc_assert to verify that it has already been called.
32343 * toplev.c (toplev::main): Add call to init_opts_obstack before
32344 calls to init_options_struct.
32345 (toplev::finalize): Move cleanup of opts_obstack next to
32346 cleanup of save_decoded_options, clearing the latter, and
32347 save_decoded_options_count.
32348
32349 2016-01-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
32350
32351 PR target/69135
32352 * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): Set "conds"
32353 attribute to unconditional. Remove %? from output template.
32354
32355 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
32356 Jiong Wang <jiong.wang@arm.com>
32357
32358 * ccmp.c (expand_ccmp_expr_1): Cost the instruction sequences
32359 generated from different expand order.
32360
32361 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
32362
32363 * /config/aarch64/aarch64.c (aarch64_if_then_else_costs):
32364 Add support for CCMP costing.
32365
32366 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
32367
32368 * ccmp.c (ccmp_candidate_p): Remove integer-only restriction.
32369 * config/aarch64/aarch64.md (fccmp<mode>): New pattern.
32370 (fccmpe<mode>): Likewise.
32371 (fcmp): Rename to fcmp and globalize pattern.
32372 (fcmpe): Likewise.
32373 * config/aarch64/aarch64.c (aarch64_gen_ccmp_first): Add FP support.
32374 (aarch64_gen_ccmp_next): Add FP support.
32375
32376 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
32377
32378 * target.def (gen_ccmp_first): Update documentation.
32379 (gen_ccmp_next): Likewise.
32380 * doc/tm.texi (gen_ccmp_first): Update documentation.
32381 (gen_ccmp_next): Likewise.
32382 * ccmp.c (expand_ccmp_expr): Extract cmp_code from return value of
32383 expand_ccmp_expr_1. Improve comments.
32384 * config/aarch64/aarch64.md (ccmp_and): Use if_then_else for ccmp.
32385 (ccmp_ior<mode>): Remove pattern.
32386 (cmp<mode>): Remove expand.
32387 (cmp): Globalize pattern.
32388 (cstorecc4): Use cc_register.
32389 (mov<mode>cc): Remove ccmp_cc_register check.
32390 * config/aarch64/aarch64.c (aarch64_get_condition_code_1):
32391 Simplify after removal of CC_DNE/* modes.
32392 (aarch64_ccmp_mode_to_code): Remove.
32393 (aarch64_print_operand): Remove 'K' case. Merge 'm' and 'M' cases.
32394 In 'k' case use integer as condition.
32395 (aarch64_nzcv_codes): Remove inverted cases.
32396 (aarch64_code_to_ccmode): Remove.
32397 (aarch64_gen_ccmp_first): Use cmp pattern directly. Return the correct
32398 comparison with CC register to be used in folowing CCMP/branch/CSEL.
32399 (aarch64_gen_ccmp_next): Use previous comparison and mode in CCMP
32400 pattern. Return the comparison with CC register. Invert conditions
32401 when bitcode is OR.
32402 * config/aarch64/aarch64-modes.def: Remove CC_DNE/* modes.
32403 * config/aarch64/predicates.md (ccmp_cc_register): Remove.
32404
32405 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
32406
32407 * cgraphunit.c (cgraph_node::reset): Clear thunk info and
32408 instrumented_version.
32409
32410 2016-01-19 Richard Biener <rguenther@suse.de>
32411
32412 PR tree-optimization/69336
32413 * tree-ssa-scopedtables.c (avail_expr_hash): Handle all
32414 handled components with get_ref_base_and_extent.
32415 (equal_mem_array_ref_p): Adjust.
32416
32417 2016-01-19 Jakub Jelinek <jakub@redhat.com>
32418
32419 PR debug/65779
32420 * shrink-wrap.c: Include valtrack.h.
32421 (move_insn_for_shrink_wrap): Add DEBUG argument. If
32422 MAY_HAVE_DEBUG_INSNS, call dead_debug_add on DEBUG_INSNs
32423 in between insn and where it will be moved to. Call
32424 dead_debug_insert_temp.
32425 (prepare_shrink_wrap): Adjust caller. Call dead_debug_local_init
32426 first and dead_debug_local_finish at the end.
32427 For uses and defs bitmap, handle all regs in between REGNO and
32428 END_REGNO, not just the first one.
32429
32430 2016-01-19 Richard Biener <rguenther@suse.de>
32431
32432 PR tree-optimization/69352
32433 * tree-ssa-scopedtables.c (avail_expr_hash): Check for size == -1.
32434 (equal_mem_array_ref_p): Constrain size and max size properly.
32435 Compare the reverse flag.
32436
32437 2016-01-19 Bernd Schmidt <bschmidt@redhat.com>
32438
32439 * ira.c (ira): Update regstat data if we deleted insns.
32440
32441 2016-01-19 Jakub Jelinek <jakub@redhat.com>
32442
32443 PR rtl-optimization/68955
32444 PR rtl-optimization/64557
32445 * dse.c (record_store, check_mem_read_rtx): Don't call get_addr
32446 here. Fix up formatting.
32447 * alias.c (get_addr): Handle VALUE +/- CONST_SCALAR_INT_P.
32448
32449 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
32450
32451 PR lto/69133
32452 * cgraphunit.c (cgraph_node::expand_thunk): When forcing gimple
32453 assume that the node has body.
32454 * cgraph.c (cgraph_node::get_untransformed_body): Use gimple_body_p
32455 check.
32456
32457 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
32458
32459 * lto-streamer-out.c (lto_output): Do not stream instrumentation
32460 thunks.
32461
32462 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
32463
32464 * symtab.c (symtab_node::asm_name): Do not call printable name directly.
32465 (symtab_node::name): Report name as unnamed if DECL_NAME is not set.
32466
32467 2016-01-19 Martin Jambor <mjambor@suse.cz>
32468 Martin Liska <mliska@suse.cz>
32469 Michael Matz <matz@suse.de>
32470
32471 * Makefile.in (OBJS): Add new source files.
32472 (GTFILES): Add hsa.c.
32473 * common.opt (disable_hsa): New variable.
32474 (-Whsa): New warning.
32475 * config.in (ENABLE_HSA): New.
32476 * configure.ac: Treat hsa differently from other accelerators.
32477 (OFFLOAD_TARGETS): Define ENABLE_OFFLOADING according to
32478 $enable_offloading.
32479 (ENABLE_HSA): Define ENABLE_HSA according to $enable_hsa.
32480 * doc/install.texi (Configuration): Document --with-hsa-runtime,
32481 --with-hsa-runtime-include, --with-hsa-runtime-lib and
32482 --with-hsa-kmt-lib.
32483 * doc/invoke.texi (-Whsa): Document.
32484 (hsa-gen-debug-stores): Likewise.
32485 * lto-wrapper.c (compile_images_for_offload_targets): Do not attempt
32486 to invoke offload compiler for hsa acclerator.
32487 * opts.c (common_handle_option): Determine whether HSA offloading
32488 should be performed.
32489 * params.def (PARAM_HSA_GEN_DEBUG_STORES): New parameter.
32490 * builtin-types.def (BT_FN_VOID_UINT_PTR_INT_PTR): New.
32491 (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_INT_INT): Removed.
32492 (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_PTR): New.
32493 * gimple-low.c (lower_stmt): Also handle GIMPLE_OMP_GRID_BODY.
32494 * gimple-pretty-print.c (dump_gimple_omp_for): Also handle
32495 GF_OMP_FOR_KIND_GRID_LOOP.
32496 (dump_gimple_omp_block): Also handle GIMPLE_OMP_GRID_BODY.
32497 (pp_gimple_stmt_1): Likewise.
32498 * gimple-walk.c (walk_gimple_stmt): Likewise.
32499 * gimple.c (gimple_build_omp_grid_body): New function.
32500 (gimple_copy): Also handle GIMPLE_OMP_GRID_BODY.
32501 * gimple.def (GIMPLE_OMP_GRID_BODY): New.
32502 * gimple.h (enum gf_mask): Added GF_OMP_PARALLEL_GRID_PHONY,
32503 GF_OMP_FOR_KIND_GRID_LOOP, GF_OMP_FOR_GRID_PHONY and
32504 GF_OMP_TEAMS_GRID_PHONY.
32505 (gimple_statement_omp_single_layout): Updated comments.
32506 (gimple_build_omp_grid_body): New function.
32507 (gimple_has_substatements): Also handle GIMPLE_OMP_GRID_BODY.
32508 (gimple_omp_for_grid_phony): New function.
32509 (gimple_omp_for_set_grid_phony): Likewise.
32510 (gimple_omp_parallel_grid_phony): Likewise.
32511 (gimple_omp_parallel_set_grid_phony): Likewise.
32512 (gimple_omp_teams_grid_phony): Likewise.
32513 (gimple_omp_teams_set_grid_phony): Likewise.
32514 (gimple_return_set_retbnd): Also handle GIMPLE_OMP_GRID_BODY.
32515 * omp-builtins.def (BUILT_IN_GOMP_OFFLOAD_REGISTER): New.
32516 (BUILT_IN_GOMP_OFFLOAD_UNREGISTER): Likewise.
32517 (BUILT_IN_GOMP_TARGET): Updated type.
32518 * omp-low.c: Include symbol-summary.h, hsa.h and params.h.
32519 (adjust_for_condition): New function.
32520 (get_omp_for_step_from_incr): Likewise.
32521 (extract_omp_for_data): Moved parts to adjust_for_condition and
32522 get_omp_for_step_from_incr.
32523 (build_outer_var_ref): Handle GIMPLE_OMP_GRID_BODY.
32524 (fixup_child_record_type): Bail out if receiver_decl is NULL.
32525 (scan_sharing_clauses): Handle OMP_CLAUSE__GRIDDIM_.
32526 (scan_omp_parallel): Do not create child functions for phony
32527 constructs.
32528 (check_omp_nesting_restrictions): Handle GIMPLE_OMP_GRID_BODY.
32529 (scan_omp_1_op): Checking assert we are not remapping to
32530 ERROR_MARK. Also also handle GIMPLE_OMP_GRID_BODY.
32531 (parallel_needs_hsa_kernel_p): New function.
32532 (expand_parallel_call): Register apprpriate parallel child
32533 functions as HSA kernels.
32534 (grid_launch_attributes_trees): New type.
32535 (grid_attr_trees): New variable.
32536 (grid_create_kernel_launch_attr_types): New function.
32537 (grid_insert_store_range_dim): Likewise.
32538 (grid_get_kernel_launch_attributes): Likewise.
32539 (get_target_argument_identifier_1): Likewise.
32540 (get_target_argument_identifier): Likewise.
32541 (get_target_argument_value): Likewise.
32542 (push_target_argument_according_to_value): Likewise.
32543 (get_target_arguments): Likewise.
32544 (expand_omp_target): Call get_target_arguments instead of looking
32545 up for teams and thread limit.
32546 (grid_expand_omp_for_loop): New function.
32547 (grid_arg_decl_map): New type.
32548 (grid_remap_kernel_arg_accesses): New function.
32549 (grid_expand_target_kernel_body): New function.
32550 (expand_omp): Call it.
32551 (lower_omp_for): Do not emit phony constructs.
32552 (lower_omp_taskreg): Do not emit phony constructs but create for them
32553 a temporary variable receiver_decl.
32554 (lower_omp_taskreg): Do not emit phony constructs.
32555 (lower_omp_teams): Likewise.
32556 (lower_omp_grid_body): New function.
32557 (lower_omp_1): Call it.
32558 (grid_reg_assignment_to_local_var_p): New function.
32559 (grid_seq_only_contains_local_assignments): Likewise.
32560 (grid_find_single_omp_among_assignments_1): Likewise.
32561 (grid_find_single_omp_among_assignments): Likewise.
32562 (grid_find_ungridifiable_statement): Likewise.
32563 (grid_target_follows_gridifiable_pattern): Likewise.
32564 (grid_remap_prebody_decls): Likewise.
32565 (grid_copy_leading_local_assignments): Likewise.
32566 (grid_process_kernel_body_copy): Likewise.
32567 (grid_attempt_target_gridification): Likewise.
32568 (grid_gridify_all_targets_stmt): Likewise.
32569 (grid_gridify_all_targets): Likewise.
32570 (execute_lower_omp): Call grid_gridify_all_targets.
32571 (make_gimple_omp_edges): Handle GIMPLE_OMP_GRID_BODY.
32572 * tree-core.h (omp_clause_code): Added OMP_CLAUSE__GRIDDIM_.
32573 (tree_omp_clause): Added union field dimension.
32574 * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE__GRIDDIM_.
32575 * tree.c (omp_clause_num_ops): Added number of arguments of
32576 OMP_CLAUSE__GRIDDIM_.
32577 (omp_clause_code_name): Added name of OMP_CLAUSE__GRIDDIM_.
32578 (walk_tree_1): Handle OMP_CLAUSE__GRIDDIM_.
32579 * tree.h (OMP_CLAUSE_GRIDDIM_DIMENSION): New.
32580 (OMP_CLAUSE_SET_GRIDDIM_DIMENSION): Likewise.
32581 (OMP_CLAUSE_GRIDDIM_SIZE): Likewise.
32582 (OMP_CLAUSE_GRIDDIM_GROUP): Likewise.
32583 * passes.def: Schedule pass_ipa_hsa and pass_gen_hsail.
32584 * tree-pass.h (make_pass_gen_hsail): Declare.
32585 (make_pass_ipa_hsa): Likewise.
32586 * ipa-hsa.c: New file.
32587 * lto-section-in.c (lto_section_name): Add hsa section name.
32588 * lto-streamer.h (lto_section_type): Add hsa section.
32589 * timevar.def (TV_IPA_HSA): New.
32590 * hsa-brig-format.h: New file.
32591 * hsa-brig.c: New file.
32592 * hsa-dump.c: Likewise.
32593 * hsa-gen.c: Likewise.
32594 * hsa.c: Likewise.
32595 * hsa.h: Likewise.
32596 * toplev.c (compile_file): Call hsa_output_brig.
32597 * hsa-regalloc.c: New file.
32598
32599 2016-01-18 Jeff Law <law@redhat.com>
32600
32601 PR tree-optimization/69320
32602 * tree-ssa-dom.c (record_edge_info): For comparisons against a boolean
32603 ranged object, do nothing if the RHS constant is not [0..1].
32604 (optimize_stmt): Comparing a boolean ranged object against a
32605 constant outside [0..1] results in a compile-time constant.
32606
32607 * tree-ssanames.c (ssa_name_has_boolean_range): Remove unnecessary
32608 test.
32609
32610 2016-01-18 Sandra Loosemore <sandra@codesourcery.com>
32611
32612 * doc/invoke.texi (Invoking GCC): Add new section to menu.
32613 (Option Summary): Update to reflect new section and moved options.
32614 (C++ Dialect Options): Move -fstats to new section.
32615 (Debugging Options): Move all dump, statistics, and other GCC
32616 developer options to new section. Rewrite section introduction
32617 and re-order remaining options to put the more basic ones first.
32618 (Optimization Options): Move -fira-verbose and -flto-report* to
32619 new section.
32620 (Developer Options): New section incorporating moved options.
32621 * doc/cppopts.texi (-dM): Update cross-reference.
32622
32623 2016-01-18 Richard Henderson <rth@redhat.com>
32624
32625 PR target/69176
32626 * config/aarch64/aarch64.md (add<GPI>3): Move long immediate
32627 operands to pseudo only if CSE is expected. Split long immediate
32628 operands only after reload, and for the stack pointer.
32629 (*add<GPI>3_pluslong): Remove.
32630 (*addsi3_aarch64, *adddi3_aarch64): Merge into...
32631 (*add<GPI>3_aarch64): ... here. Add r/rk/Upl alternative.
32632 (*addsi3_aarch64_uxtw): Add r/rk/Upl alternative.
32633 (*add<GPI>3 peepholes): New.
32634 (*add<GPI>3 splitters): New.
32635 * config/aarch64/constraints.md (Upl): New.
32636 * config/aarch64/predicates.md (aarch64_pluslong_strict_immedate): New.
32637
32638 2016-01-18 Richard Biener <rguenther@suse.de>
32639
32640 PR tree-optimization/69297
32641 * tree-vect-slp.c (vect_bb_slp_scalar_cost): Count each scalar
32642 stmt at most once.
32643 (vect_bb_vectorization_profitable_p): Clear visited flag again.
32644
32645 2016-01-18 Yuri Rumyantsev <ysrumyan@gmail.com>
32646
32647 PR middle-end/68542
32648 * fold-const.c (fold_binary_op_with_conditional_arg): Bail out for case
32649 of mixind vector and scalar types.
32650 (fold_relational_const): Add handling of vector
32651 comparison with boolean result.
32652 * tree-cfg.c (verify_gimple_comparison): Add argument CODE, allow
32653 comparison of vector operands with boolean result for EQ/NE only.
32654 (verify_gimple_assign_binary): Adjust call for verify_gimple_comparison.
32655 (verify_gimple_cond): Likewise.
32656 * tree-vrp.c (extract_code_and_val_from_cond_with_ops): Modify check on
32657 valid type of VAL.
32658
32659 2016-01-18 Joseph Myers <joseph@codesourcery.com>
32660
32661 * config/mips/mips.h (ISA_HAS_PAIRED_SINGLE): Require
32662 !TARGET_OCTEON.
32663
32664 2016-01-18 Richard Biener <rguenther@suse.de>
32665
32666 PR middle-end/69308
32667 * gimple.c (gimple_could_trap_p_1): Handle GIMPLE_COND.
32668
32669 2016-01-18 Tom de Vries <tom@codesourcery.com>
32670
32671 * passes.def: Add pass_parallelize_loops to pass_oacc_kernels.
32672
32673 2016-01-18 Tom de Vries <tom@codesourcery.com>
32674
32675 * omp-low.c (set_oacc_fn_attrib): Make extern.
32676 * omp-low.h (set_oacc_fn_attrib): Declare.
32677 * tree-parloops.c (struct reduction_info): Add reduc_addr field.
32678 (create_call_for_reduction_1): Handle case that reduc_addr is non-NULL.
32679 (create_parallel_loop, gen_parallel_loop, try_create_reduction_list):
32680 Add and handle function parameter oacc_kernels_p.
32681 (find_reduc_addr, get_omp_data_i_param): New function.
32682 (ref_conflicts_with_region, oacc_entry_exit_ok_1)
32683 (oacc_entry_exit_single_gang, oacc_entry_exit_ok): New function.
32684 (parallelize_loops): Add and handle function parameter oacc_kernels_p.
32685 Calculate dominance info. Skip loops that are not in a kernels region
32686 in oacc_kernels_p mode. Skip inner loops of parallelized loops.
32687 (pass_parallelize_loops::execute): Call parallelize_loops with
32688 oacc_kernels_p argument.
32689 (pass_parallelize_loops::clone, pass_parallelize_loops::set_pass_param):
32690 New member function.
32691 (pass_parallelize_loops::bool oacc_kernels_p): New member var.
32692 * passes.def: Add argument to pass_parallelize_loops instantation.
32693
32694 2016-01-18 Tom de Vries <tom@codesourcery.com>
32695
32696 * tree-parloops.c (pass_parallelize_loops::execute): Allow
32697 pass_parallelize_loops to be run outside the loop pipeline.
32698
32699 2016-01-18 Alan Lawrence <alan.lawrence@arm.com>
32700
32701 * tree-scalar-evolution.c (follow_copies_to_constant): New.
32702 (analyze_initial_condition, analyze_scalar_evolution_1): Call previous.
32703
32704 2016-01-18 Alan Lawrence <alan.lawrence@arm.com>
32705
32706 PR target/63679
32707 * tree-ssa-scopedtables.c (avail_expr_hash): Hash MEM_REF and ARRAY_REF
32708 using get_ref_base_and_extent.
32709 (equal_mem_array_ref_p): New.
32710 (hashable_expr_equal_p): Add call to previous.
32711
32712 2016-01-18 Alan Lawrence <alan.lawrence@arm.com>
32713
32714 PR target/63679
32715 * tree-sra.c (disqualified_constants, constant_decl_p): New.
32716 (sra_initialize): Allocate disqualified_constants.
32717 (sra_deinitialize): Free disqualified_constants.
32718 (disqualify_candidate): Update disqualified_constants when appropriate.
32719 (create_access): Scan for constant-pool entries as we go along.
32720 (scalarizable_type_p): Add check against type_contains_placeholder_p.
32721 (maybe_add_sra_candidate): Allow constant-pool entries.
32722 (load_assign_lhs_subreplacements): Bind debug for constant pool vars.
32723 (initialize_constant_pool_replacements): New.
32724 (sra_modify_assign): Avoid mangling assignments created by previous,
32725 and don't generate writes into constant pool.
32726 (sra_modify_function_body): Call initialize_constant_pool_replacements.
32727
32728 2016-01-18 Ilya Enkovich <enkovich.gnu@gmail.com>
32729
32730 * config/i386/i386.c (scalar_to_vector_candidate_p): Support
32731 andnot instruction.
32732 (scalar_chain::convert_op): Likewise.
32733 * config/i386/i386.md (*andndi3_doubleword): New.
32734
32735 2016-01-18 Richard Biener <rguenther@suse.de>
32736
32737 PR tree-optimization/69170
32738 * tree-vect-slp.c (vect_build_slp_tree): Verify we are not
32739 building a vector from scalar results of a pattern stmt.
32740
32741 2016-01-18 Jakub Jelinek <jakub@redhat.com>
32742
32743 * haifa-sched.c (autopref_multipass_init): Work around
32744 -Wmaybe-uninitialized warning.
32745
32746 2016-01-18 Thomas Preud'homme <thomas.preudhomme@arm.com>
32747
32748 * config/arm/arm.c (thumb1_reorg): Check that the comparison is
32749 against the constant 0.
32750
32751 2016-01-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
32752
32753 PR tree-optimization/68799
32754 * gimple-ssa-strength-reduction.c (create_phi_basis): Directly
32755 look up phi candidates in the statement-candidate map.
32756 (phi_add_costs): Likewise.
32757 (record_phi_increments): Likewise.
32758 (phi_incr_cost): Likewise.
32759 (ncd_with_phi): Likewise.
32760 (all_phi_incrs_profitable): Likewise.
32761
32762 2016-01-17 Jakub Jelinek <jakub@redhat.com>
32763
32764 * omp-low.c (mark_loops_in_oacc_kernels_region): Work around
32765 -Wmaybe-uninitialized warning.
32766
32767 2016-01-16 Sandra Loosemore <sandra@codesourcery.com>
32768
32769 * doc/invoke.texi (Invoking GCC): Add new section to menu.
32770 (Option Summary): Update to reflect new section and moved options.
32771 (C++ Dialect Options): Move -fvtable-verify and related options.
32772 (Debugging Options): Move Sanitizer, Pointer Bounds Checker,
32773 and profiling-related options.
32774 (Optimization Options): Move profile generation options and
32775 -fstack-protector and related options.
32776 (Instrumentation Options): New section incorporating moved options.
32777 (Code Generation Options): Move -finstrument-functions and
32778 related options, -fstack-check, -fstack-limit*, and -fbounds-check.
32779
32780 2016-01-16 Tom de Vries <tom@codesourcery.com>
32781
32782 * passes.def: Move pass_expand_omp_ssa out of pass_parallelize_loops.
32783
32784 2016-01-16 Tom de Vries <tom@codesourcery.com>
32785
32786 * omp-low.c (expand_omp_atomic_fetch_op): Release defs of update stmt.
32787
32788 2016-01-16 Richard Sandiford <richard.sandiford@arm.com>
32789
32790 * hash-table.h (hash_table::empty): Turn into an inline wrapper
32791 that checks whether the table is already empty. Rename the
32792 original implementation to...
32793 (hash_table::empty_slot): ...this new private function.
32794
32795 2016-01-15 David Malcolm <dmalcolm@redhat.com>
32796
32797 PR diagnostic/68899
32798 * diagnostic-show-locus.c (layout::print_source_line): Move x
32799 offset of line until after call to
32800 get_line_width_without_trailing_whitespace.
32801
32802 2016-01-15 Jeff Law <law@redhat.com>
32803
32804 PR tree-optimization/69270
32805 * tree-ssanames.c (ssa_name_has_boolean_range): Moved here from
32806 tree-ssa-dom.c. Improve test for [0..1] ranve from VRP.
32807 * tree-ssa-dom.c (ssa_name_has_boolean_range): Remove.
32808 * tree-ssanames.h (ssa_name_has_boolean_range): Prototype.
32809 * tree-ssa-uncprop.c (associate_equivalences_with_edges): Use
32810 ssa_name_has_boolean_range and constant_boolean_node.
32811
32812 2016-01-15 Vladimir Makarov <vmakarov@redhat.com>
32813
32814 PR rtl-optimization/69030
32815 * lra-spills.c (remove_pseudos): Check nrefs and make the function
32816 returning bool.
32817 (spill_pseudos): Delete debug insn for dead pseudo.
32818 (lra_spill): Initiate spill_hard_reg and slots memory separately.
32819
32820 2016-01-15 Jiong Wang <jiong.wang@arm.com>
32821
32822 * config/aarch64/aarch64-builtins.c (aarch64_types_unopus_qualifiers):
32823 New.
32824 (TYPES_UNOPUS): Likewise.
32825 * config/aarch64/aarch64-simd-builtins.def (lbtruncuv2sf): Correct
32826 builtin type, from UNOP to UNOPUS.
32827 (lbtruncuv4sf): Likewise.
32828 (lbtruncuv2df): Likewise.
32829 (lrounduv2sf): Likewise.
32830 (lrounduv4sf): Likewise.
32831 (lrounduv2df): Likewise.
32832 (lroundusf): Likewise.
32833 (lroundusf): Likewise.
32834 (lceiluv2sf): Likewise.
32835 (lceiluv4sf): Likewise.
32836 (lceiluv2df): Likewise.
32837 (lceilusf): Likewise.
32838 (lceiludf): Likewise.
32839 (lflooruv2sf): Likewise.
32840 (lflooruv4sf): Likewise.
32841 (lflooruv2df): Likewise.
32842 (lfloorusf): Likewise.
32843 (lfloorudf): Likewise.
32844 (lfrintnuv2sf): Likewise.
32845 (lfrintnuv4sf): Likewise.
32846 (lfrintnuv2df): Likewise.
32847 (lfrintnusf): Likewise.
32848 (lfrintnudf): Likewise.
32849 * config/aarch64/arm_neon.h (vcvt_u32_f32): Remove unncessary type
32850 conversion.
32851 (vcvtq_u32_f32): Likewise.
32852 (vcvtq_u64_f64): Likewise.
32853 (vcvta_u32_f32): Likewise.
32854 (vcvtaq_u32_f32): Likewise.
32855 (vcvtaq_u64_f64): Likewise.
32856 (vcvtm_u32_f32): Likewise.
32857 (vcvtmq_u32_f32): Likewise.
32858 (vcvtmq_u64_f64): Likewise.
32859 (vcvtn_u32_f32): Likwise.
32860 (vcvtnq_u32_f32): Likewise.
32861 (vcvtnq_u64_f64): Likewise.
32862 (vcvtp_u32_f32): Likewise.
32863 (vcvtpq_u32_f32): Likewise.
32864 (vcvtpq_u64_f64): Likewise.
32865 (vcvtmd_u64_f64): Likewise.
32866 (vcvtms_u32_f32): Likewise.
32867 (vcvtad_u64_f64): Likewise.
32868 (vcvtas_u32_f32): Likewise.
32869 (vcvtnd_u64_f64): Likewise.
32870 (vcvtns_u32_f32): Likewise.
32871 (vcvtpd_u64_f64): Likewise.
32872 (vcvtps_u32_f32): Likewise.
32873
32874 2016-01-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
32875
32876 * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Handle
32877 CSEL of zero_extended registers.
32878
32879 2016-01-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
32880
32881 * config/aarch64/aarch64.c (aarch64_rtx_costs, COMPARE case):
32882 Handle COMPARE of ZERO_EXTRACT against zero form of TST-immediate.
32883
32884 2016-01-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
32885
32886 * config/aarch64/aarch64.c (aarch64_process_one_target_attr): Return
32887 false when argument string is not found in the attributes table
32888 at all.
32889
32890 2016-01-15 David Edelsohn <dje.gcc@gmail.com>
32891
32892 PR target/68609
32893 * config/rs6000/rs6000.c (rs6000_emit_msub): Delete.
32894 (rs6000_emit_swsqrt): Convert to Goldschmidt's Algorithm
32895 * config/rs6000/rs6000.md (sqrt<mode>2): Limit swsqrt to high
32896 precision estimate.
32897
32898 2016-01-15 Richard Biener <rguenther@suse.de>
32899
32900 PR tree-optimization/66856
32901 * tree-vect-loop.c (vect_transform_loop): Free SLP instances here.
32902 * tree-vect-slp.c (vect_free_slp_tree): Decrement stmt reference count.
32903 (vect_create_new_slp_node): Increment stmt reference count.
32904 (vect_get_and_check_slp_defs): Make sure stmts are nor already in
32905 an SLP tree before swapping operands.
32906 (vect_build_slp_tree): Likewise.
32907 (destroy_bb_vec_info): Free stmt info after SLP instances.
32908 * tree-vect-stmts.c (new_stmt_vec_info): Initialize reference count.
32909 * tree-vectorizer.h (struct _stmt_vec_info): Add num_slp_uses field.
32910 (STMT_VINFO_NUM_SLP_USES): New macro.
32911
32912 2016-01-15 Richard Biener <rguenther@suse.de>
32913
32914 PR debug/69137
32915 * dwarf2out.c (add_linkage_name_raw): New function split out from ...
32916 (add_linkage_name): ... here.
32917 (gen_typedef_die): Use add_linkage_name_raw instead of
32918 add_linkage_attr to delay DECL_ASSEMBLER_NAME computation
32919 if necessary.
32920
32921 2016-01-15 Cesar Philippidis <cesar@codesourcery.com>
32922
32923 * gimplify.c (oacc_default_clause): Decode reference and pointer
32924 types for both kernels and parallel regions.
32925
32926 2016-01-15 Richard Sandiford <richard.sandiford@arm.com>
32927
32928 PR middle-end/69246
32929 * calls.c (emit_call_1): Force n_popped to zero for sibcalls.
32930
32931 2016-01-15 Ilya Enkovich <enkovich.gnu@gmail.com>
32932
32933 * config/i386/i386.c (scalar_chain::compute_convert_gain): Fix typo.
32934 (convert_scalars_to_vector): Likewise.
32935
32936 2016-01-15 Jonathan Wakely <jwakely@redhat.com>
32937
32938 * doc/extend.texi (Type Traits): Fix grammar.
32939
32940 2016-01-15 Martin Jambor <mjambor@suse.cz>
32941
32942 * tree-inline.c (remap_decl): Use existing dclarations if
32943 remapping a type and prevent_decl_creation_for_types.
32944 (replace_locals_stmt): Do an initial remapping of non-VLA typed
32945 decls first. Do real remapping with
32946 prevent_decl_creation_for_types set.
32947 * tree-inline.h (copy_body_data): New field
32948 prevent_decl_creation_for_types, moved remap_var_for_cilk to avoid
32949 padding.
32950
32951 2016-01-15 Dominik Vogt <vogt@linux.vnet.ibm.com>
32952
32953 * config/s390/s390.opt (mmvcle): More verbose help text.
32954
32955 2016-01-15 Dominik Vogt <vogt@linux.vnet.ibm.com>
32956
32957 * config/s390/s390.opt: Add period to -mzvector option text.
32958
32959 2016-01-15 Richard Biener <rguenther@suse.de>
32960
32961 PR tree-optimization/68961
32962 * tree-vect-slp.c (vect_analyze_slp_cost_1): Consider cost
32963 of invariants in stores again.
32964
32965 2016-01-15 Sebastian Huber <sebastian.huber@embedded-brains.de>
32966
32967 * config/arm/t-rtems: Add cortex-m7/fpv5-d16 multilib.
32968
32969 2016-01-15 Ilya Enkovich <enkovich.gnu@gmail.com>
32970
32971 * config/i386/i386.c (ix86_expand_branch): Don't split
32972 DI mode xor instruction to SI mode.
32973
32974 2016-01-15 Jan Hubicka <hubicka@ucw.cz>
32975
32976 PR ipa/68148
32977 * ipa-icf.c (sem_function::merge): Virtual functions may become
32978 reachable even if they address is not taken and there are no
32979 idrect calls.
32980
32981 2016-01-15 Jan Hubicka <hubicka@ucw.cz>
32982
32983 * lto-streamer-out.c (subtract_estimated_size): New function.
32984 (get_symbol_initial_value): Use it.
32985
32986 2016-01-15 Christian Bruel <christian.bruel@st.com>
32987
32988 PR target/65837
32989 * config/arm/arm-builtins.c (ARM_BUILTIN_CRYPTO_BASE): New enum tag.
32990 (arm_init_neon_builtins_internal): Rename arm_init_neon_builtins,
32991 (arm_init_crypto_builtins_internal): Rename arm_init_crypto_builtins.
32992 use add_builtin_function_ext_scope instead of add_builtin_function.
32993 (neon_set_p, neon_crypto_set_p): Remove.
32994 (arm_init_builtins): Always call arm_init_neon_builtins and
32995 arm_init_crypto_builtins.
32996 (arm_expand_builtin): Check that builtins are allowed for the arch.
32997 * config/arm/arm-protos.h (arm_init_neon_builtins): Remove prototype.
32998 * config/arm/arm.c (arm_valid_target_attribute_tree): Remove
32999 arm_init_neon_builtins call.
33000
33001 2016-01-15 Richard Biener <rguenther@suse.de>
33002
33003 PR tree-optimization/69117
33004 * tree-ssa-sccvn.h (struct vn_ssa_aux): Add info member.
33005 * tree-ssa-sccvn.c (set_ssa_val_to): Save and adjust SSA name info
33006 of the leader conservatively.
33007 (free_scc_vn): Restore original SSA name infos.
33008
33009 2016-01-14 Jeff Law <law@redhat.com>
33010
33011 PR tree-optimization/69270
33012 * tree-ssa-dom.c (ssa_name_has_boolean_range): If the type has a
33013 single bit of precision, verify it's also unsigned.
33014 (record_edge_info): Use constant_boolean_node rather than fold_convert
33015 to convert boolean_true/boolean_false to the right type.
33016
33017 2016-01-14 Richard Henderson <rth@redhat.com>
33018
33019 PR rtl-opt/69014
33020 * loop-doloop.c (record_reg_sets): New.
33021 (doloop_optimize): Reject the transform if the sequence
33022 clobbers registers live at the end of the loop block.
33023 (doloop_optimize_loops): Enable df_live if needed.
33024
33025 2016-01-14 Michael Meissner <meissner@linux.vnet.ibm.com>
33026
33027 * config/rs6000/rs6000-builtin.def: Revert 2016-01-13 change.
33028 * config/rs6000/rs6000.c: Likewise.
33029 * config/rs6000/rs6000.h: Likewise.
33030 * config/rs6000/rs6000.md: Likewise.
33031 * doc/extend.texi: Likewsie.
33032
33033 2016-01-14 Jeff Law <law@redhat.com>
33034
33035 * tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment
33036 typo.
33037
33038 2016-01-14 Richard Henderson <rth@redhat.com>
33039
33040 PR c/69272
33041 PR tree-opt/68964
33042 * trans-mem.c (tm_log_emit_stmt): Fix unit size to bit size.
33043 * tree.c (build_tm_vector_builtins): Use builtin_decl_explicit_p
33044 instead of builtin_decl_declared_p to test for declaration.
33045
33046 2016-01-14 Nicklas Bo Jensen <nbjensen@gmail.com>
33047
33048 * doc/loop.texi (Loop Analysis and Representation): Document
33049 loop_depth function.
33050
33051 2016-01-14 Tom de Vries <tom@codesourcery.com>
33052
33053 PR tree-optimization/68773
33054 * omp-low.c (expand_omp_target): Don't set force_output.
33055 * varpool.c (varpool_node::get_create): Same.
33056 * lto-cgraph.c (input_offload_tables): Mark entries in offload_vars and
33057 offload_funcs with force_output.
33058
33059 2016-01-14 Jakub Jelinek <jakub@redhat.com>
33060
33061 PR debug/69244
33062 * lra-eliminations.c (move_plus_up): Don't change anything if either
33063 the outer or inner subreg mode is not MODE_INT.
33064 * dwarf2out.c (mem_loc_descriptor): For SUBREG, if outer mode is
33065 integral <= DWARF2_ADDR_SIZE, convert to untyped afterwards.
33066
33067 2016-01-14 Alan Lawrence <alan.lawrence@arm.com>
33068
33069 * doc/md.texi (reduc_smin_@var{m}, reduc_smax_@var{m},
33070 reduc_umin_@var{m}, reduc_umax_@var{m}, reduc_splus_@var{m},
33071 reduc_uplus_@var{m}): Remove.
33072 * expr.c (expand_expr_real_2): Remove expansion path for
33073 reduc_[us](min|max|plus) optabs.
33074 * optabs-tree.c (scalar_reduc_to_vector): Remove.
33075 * optabs-tree.h (scalar_reduc_to_vector): Remove.
33076 * optabs.def (reduc_smax_optab, reduc_smin_optab, reduc_splus_optab,
33077 reduc_umax_optab, reduc_umin_optab, reduc_uplus_optab): Remove.
33078 * tree-vect-loop.c (vectorizable_reduction): Remove test for
33079 reduc_[us](min|max|plus) optabs.
33080
33081 2016-01-14 Alan Lawrence <alan.lawrence@arm.com>
33082
33083 * config/mips/mips-ps-3d.md (reduc_splus_v2sf): Remove.
33084 (reduc_plus_scal_v2sf): New.
33085 (reduc_smax_v2sf): Rename to...
33086 (reduc_smax_scal_v2sf): ...here, make result SFmode, add vec_extract.
33087 (reduc_smin_v2sf): Rename to...
33088 (reduc_smin_scal_v2sf): ...here, make result SFmode, add vec_extract.
33089
33090 2016-01-14 Jan Hubicka <hubicka@ucw.cz>
33091
33092 * alias.c (compare_base_symbol_refs): New function.
33093 (rtx_equal_for_memref_p, base_alias_check, memrefs_conflict_p): Use
33094 it.
33095
33096 2016-01-14 Jakub Jelinek <jakub@redhat.com>
33097
33098 PR middle-end/68146
33099 PR tree-optimization/69155
33100 * tree-complex.c: Include cfganal.h.
33101 (phis_to_revisit): New variable.
33102 (extract_component): Add phiarg_p argument. Assert that returned
33103 SSA_NAME has non-NULL SSA_NAME_DEF_STMT unless phiarg_p is true.
33104 (update_phi_components): Partly rewrite to use loop over real/imag
33105 components instead of code duplication. If extract_component returns
33106 SSA_NAME with NULL SSA_NAME_DEF_STMT, store SSA_NAME_VAR or
33107 create_tmp_reg into the PHI node instead, and mention the phi triplet
33108 in phis_to_revisit.
33109 (tree_lower_complex): Walk bbs in rpo order. Adjust phis recorded
33110 in phis_to_revisit at the end.
33111
33112 2016-01-14 Richard Biener <rguenther@suse.de>
33113
33114 PR tree-optimization/68060
33115 * tree-vect-loop.c (vect_is_simple_reduction): Check the
33116 outer loop reduction is only used in the inner loop before
33117 detecting a double reduction.
33118
33119 2016-01-14 Jakub Jelinek <jakub@redhat.com>
33120
33121 PR target/68269
33122 * combine.c (expand_field_assignment): Punt if compute_mode is
33123 unsupported scalar mode.
33124
33125 2016-01-14 Richard Biener <rguenther@suse.de>
33126
33127 PR tree-optimization/66856
33128 * tree-vect-slp.c (vect_build_slp_tree): Refactor to build
33129 SLP node only if it built successfully.
33130 (vect_analyze_slp_instance): Adjust.
33131
33132 2016-01-14 Jeff Law <law@redhat.com>
33133
33134 PR tree-optimization/69270
33135 * tree-ssa-dom.c (ssa_name_has_boolean_range): New function.
33136 (record_edge_info): Use it. Convert boolean_{true,false}_node
33137 to the type of op0.
33138
33139 2016-01-13 Jan Hubicka <hubicka@ucw.cz>
33140
33141 PR ipa/66487
33142 * ipa-polymorphic-call.c (inlined_polymorphic_ctor_dtor_block_p):
33143 use block_ultimate_origin
33144 (noncall-stmt_may_be_vtbl_ptr_store): Likewise.
33145
33146 2016-01-13 Sandra Loosemore <sandra@codesourcery.com>
33147
33148 * doc/invoke.texi (Submodel Options): Rename section to
33149 "Machine-Dependent Options" to better reflect its content.
33150 Rewrite introductory text to remove archaic CPU names.
33151 Update references.
33152
33153 2016-01-13 Sandra Loosemore <sandra@codesourcery.com>
33154
33155 * doc/invoke.texi (Code Gen Options): Move section up in file,
33156 before target-specific options. Update menu and option summary
33157 to reflect the new section ordering.
33158
33159 2016-01-13 Jonathan Wakely <jwakely@redhat.com>
33160
33161 * doc/invoke.texi (C Dialect Options): Adjust -std default for C++.
33162 (C++ Dialect Options): Add cross-reference to -std option.
33163 * doc/standards.texi (C++ Language): Document C++14 support.
33164
33165 2016-01-13 Michael Meissner <meissner@linux.vnet.ibm.com>
33166
33167 * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): Add support
33168 for pack/unpack functions for __ibm128.
33169 (PACK_IF): Likewise.
33170 (UNPACK_IF): Likewise.
33171
33172 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
33173 support for __ibm128 pack/unpack functions.
33174 (rs6000_invalid_builtin): Likewise.
33175 (rs6000_init_builtins): Likewise.
33176 (rs6000_opt_masks): Likewise.
33177
33178 * config/rs6000/rs6000.h (MASK_FLOAT128): Add short name.
33179 (RS6000_BTM_FLOAT128): Add support for __ibm128 pack/unpack
33180 functions
33181 (RS6000_BTM_COMMON): Likewise.
33182
33183 * config/rs6000/rs6000.md (f128_vsx): New mode attribute.
33184 (unpack<mode>): Use FMOVE128_FPR iterator instead of FMOVE128, to
33185 disallow __builtin_{pack,unpack}_longdouble if long double is IEEE
33186 128-bit floating point. Add support for the double values to be
33187 in Altivec registers for TF/IF packing and unpacking, but restrict
33188 TD packing sub-fields to be FPR registers. Don't allow overlapped
33189 register support for packing. Allow pack inputs to be memory
33190 locations. Don't build generator functions for unpack<mode>_dm
33191 and unpack<mode>_nodm.
33192 (unpack<mode>_dm): Likewise.
33193 (unpack<mode>_nodm): Likewise.
33194 (pack<mode>): Likewise.
33195
33196 * config/rs6000/rs6000-builtin.def (__builtin_pack_ibm128): Add
33197 built-in functions to pack/unpack explicit __ibm128 values.
33198 (__builtin_unpack_ibm128): Likewise.
33199
33200 * doc/extend.texi (PowerPC Built-in Functions): Document
33201 __builtin_pack_ibm128 and __builtin_unpack_ibm128.
33202
33203 2016-01-13 Bernd Schmidt <bschmidt@redhat.com>
33204
33205 PR c/66208
33206 * c-common.c (check_function_nonnull): Remove unnecessary declaration.
33207 Add new arg loc and pass it down as context.
33208 (check_nonnull_arg): Don't mark ctx arg as unused. Use it as a pointer
33209 to the location to use for the warning.
33210 (check_function_arguments): New arg loc. All callers changed. Pass
33211 it to check_function_nonnull.
33212 * c-common.h (check_function_arguments): Adjust declaration.
33213
33214 2016-01-13 Jakub Jelinek <jakub@redhat.com>
33215
33216 PR tree-optimization/69156
33217 * gimple.c (validate_type): Removed.
33218 (gimple_builtin_call_types_compatible_p): Use
33219 useless_type_conversion_p instead of validate_type.
33220 * value-prof.c (gimple_stringop_fixed_value): Fold
33221 icall_size to correct type.
33222
33223 2016-01-13 Jonathan Wakely <jwakely@redhat.com>
33224
33225 * doc/extend.texi (__atomic Builtins): Clarify compare_exchange
33226 effects.
33227
33228 2016-01-13 Richard Henderson <rth@redhat.com>
33229
33230 PR tree-opt/68964
33231 * target.def (builtin_tm_load, builtin_tm_store): Remove.
33232 * config/i386/i386.c (ix86_builtin_tm_load): Remove.
33233 (ix86_builtin_tm_store): Remove.
33234 (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
33235 (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
33236 * doc/tm.texi.in (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
33237 (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
33238 * doc/tm.texi: Rebuild.
33239
33240 * gtm-builtins.def (BUILT_IN_TM_MEMCPY_RNWT): New.
33241 (BUILT_IN_TM_MEMCPY_RTWN): New.
33242 * trans-mem.c (tm_log_emit_stmt): Rearrange code for better
33243 fallback from vector to integer helpers.
33244 (build_tm_load): Handle vector types directly, instead of
33245 via target hook.
33246 (build_tm_store): Likewise.
33247 (expand_assign_tm): Prepare for register types not handled by
33248 the above. Copy them to memory and use memcpy.
33249 * tree.c (tm_define_builtin): New.
33250 (find_tm_vector_type): New.
33251 (build_tm_vector_builtins): New.
33252 (build_common_builtin_nodes): Call it.
33253
33254 2016-01-13 Uros Bizjak <ubizjak@gmail.com>
33255
33256 * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Return -1 for
33257 TARGET_SSE_MATH without TARGET_SSE2. Rewrite.
33258
33259 2016-01-13 Tom de Vries <tom@codesourcery.com>
33260
33261 PR tree-optimization/69169
33262 * tree-ssa-structalias.c (create_variable_info_for_1): Add and handle
33263 handled_struct_type param.
33264 (create_variable_info_for, intra_create_variable_infos): Call
33265 create_variable_info_for_1 with extra arg.
33266
33267 2016-01-13 Yvan Roux <yvan.roux@linaro.org>
33268
33269 * config/arm/arm-arches.def: Remove spurious whitespace in "armv8.1-a"
33270 and "armv8.1-a+crc" entries.
33271
33272 2016-01-13 Alexander Fomin <alexander.fomin@intel.com>
33273
33274 PR target/69228
33275 * config/i386/sse.md (define_expand "avx512pf_gatherpf<mode>sf"):
33276 Change first operand predicate from register_or_constm1_operand
33277 to register_operand.
33278 (define_expand "avx512pf_gatherpf<mode>df"): Likewise.
33279 (define_expand "avx512pf_scatterpf<mode>sf"): Likewise.
33280 (define_expand "avx512pf_scatterpf<mode>df"): Likewise.
33281 (define_insn "*avx512pf_gatherpf<mode>sf"): Remove.
33282 (define_insn "*avx512pf_gatherpf<mode>df"): Likewise.
33283 (define_insn "*avx512pf_scatterpf<mode>sf"): Likewise.
33284 (define_insn "*avx512pf_scatterpf<mode>df"): Likewise.
33285 * config/i386/i386.c (ix86_expand_builtin): Remove first operand
33286 comparison with constm1_rtx from vec_prefetch_gen part.
33287
33288 2016-01-13 Richard Biener <rguenther@suse.de>
33289
33290 PR tree-optimization/69013
33291 * tree-ssa-uninit.c (prune_uninit_phi_opnds_in_unrealizable_paths):
33292 Exchange assert for a test.
33293
33294 2016-01-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
33295
33296 PR target/69247
33297 * config/s390/s390.md (bswaphi splitter): Use simplify_gen_subreg.
33298
33299 2016-01-13 Richard Biener <rguenther@suse.de>
33300
33301 PR tree-optimization/69242
33302 * tree-ssa-sccvn.c (visit_reference_op_load): Replace bogus
33303 assert with a check.
33304
33305 2016-01-13 Richard Biener <rguenther@suse.de>
33306
33307 PR tree-optimization/69186
33308 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
33309 Properly guard vect_update_misalignment_for_peel call.
33310
33311 2016-01-12 Jeff Law <law@redhat.com>
33312
33313 PR tree-optimization/pr67755
33314 * tree-ssa-threadupdate.c (struct ssa_local_info_t): Add new field
33315 "need_profile_correction".
33316 (thread_block_1): Initialize new field to false by default. If we
33317 have multiple thread paths through a common joiner to different
33318 final targets, then set new field to true.
33319 (compute_path_counts): Only do count adjustment when it's really
33320 needed.
33321
33322 2016-01-12 Sandra Loosemore <sandra@codesourcery.com>
33323
33324 * doc/invoke.texi (Spec Files): Move section down in file, past
33325 all command-line option descriptions.
33326
33327 2016-01-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
33328
33329 PR middle-end/54809
33330 * doc/gty.texi: Remove documentation of mark_hook.
33331 * gengtype.c (struct write_types_data): Remove code to support
33332 mark_hook attribute.
33333 (walk_type): Likewise.
33334 (write_func_for_structure): Likewise.
33335
33336 2016-01-12 Sandra Loosemore <sandra@codesourcery.com>
33337
33338 * doc/invoke.texi (Option Summary) Move -no-canonical-prefixes to
33339 Directory Options, and -specs= to Overall Options.
33340 (Overall Options): Adjust similarly. Reorder to group related
33341 options together. Make -specs= cross-reference the spec file details.
33342 (Directory Options): Adjust similarly.
33343
33344 2016-01-12 Jeff Law <law@redhat.com>
33345
33346 * tree-ssa-threadupdate.c: Various whitespace and typo fixes.
33347
33348 2016-01-12 Olivier Hainque <hainque@adacore.com>
33349
33350 * gcc.c (spec_undefvar_allowed): New global.
33351 (process_command): Set to true when running for --version or --help,
33352 alone or together.
33353 (getenv_spec_function): When the variable is not defined, use the
33354 variable name as the variable value if we're allowed not to issue
33355 a fatal error.
33356
33357 2016-01-12 Bin Cheng <bin.cheng@arm.com>
33358
33359 PR tree-optimization/68911
33360 * tree-vrp.c (adjust_range_with_scev): Check overflow in range
33361 information computed for expression "init + nit * step".
33362
33363 2016-01-12 Sandra Loosemore <sandra@codesourcery.com>
33364
33365 * doc/invoke.texi (Invoking GCC): Copy-edit. Incorporate information
33366 about name of GCC executable. Remove deleted node from menu.
33367 (Directory Options) <-B>: Remove cross-reference to deleted node.
33368 (Target Options): Delete section.
33369
33370 2016-01-12 Christian Bruel <christian.bruel@st.com>
33371
33372 PR target/69180
33373 * config/arm/arm-c.c (arm_pragma_target_parse): Set NODE_CONDITIONAL
33374 for __ARM_NEON_FP, __ARM_FP, _ARM_FEATURE_LDREX.
33375
33376 2016-01-12 Jakub Jelinek <jakub@redhat.com>
33377
33378 PR target/69198
33379 * config/i386/i386.c (ix86_expand_special_args_builtin): Ensure
33380 aligned_mem is properly set for AVX512-VL floating point masked
33381 stores.
33382
33383 PR target/69175
33384 * ifcvt.c (cond_exec_process_if_block): When removing the last
33385 insn from then_bb, remove also any possible barriers that follow it.
33386
33387 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
33388
33389 PR target/68456
33390 PR target/69226
33391 * config/i386/iamcu.h (SIZE_TYPE): New macro.
33392 (PTRDIFF_TYPE): Likewise.
33393 (WCHAR_TYPE): Likewise.
33394 (WCHAR_TYPE_SIZE): Likewise.
33395 (STDINT_LONG32): Likewise.
33396
33397 2016-01-12 Richard Biener <rguenther@suse.de>
33398
33399 PR tree-optimization/69053
33400 * tree-vect-loop.c (get_initial_def_for_reduction): Properly
33401 convert initial value for cond reductions.
33402
33403 2016-01-12 Richard Biener <rguenther@suse.de>
33404
33405 PR tree-optimization/69007
33406 * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Move
33407 widen_sum after dot_prod and sad.
33408
33409 2016-01-12 Richard Biener <rguenther@suse.de>
33410
33411 PR tree-optimization/69168
33412 * tree-vect-loop.c (vect_analyze_loop_2): Reset both main and
33413 pattern stmt SLP type.
33414 * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Patterns may
33415 end up unused so cope with that case.
33416
33417 2016-01-12 Richard Biener <rguenther@suse.de>
33418
33419 PR tree-optimization/69157
33420 * tree-vect-stmts.c (vectorizable_mask_load_store): Check
33421 stmts def type only during analyze phase.
33422 (vectorizable_call): Likewise.
33423 (vectorizable_simd_clone_call): Likewise.
33424 (vectorizable_conversion): Likewise.
33425 (vectorizable_assignment): Likewise.
33426 (vectorizable_shift): Likewise.
33427 (vectorizable_operation): Likewise.
33428 (vectorizable_store): Likewise.
33429 (vectorizable_load): Likewise.
33430
33431 2016-01-12 Richard Biener <rguenther@suse.de>
33432
33433 PR tree-optimization/69174
33434 * tree-vect-stmts.c (vect_mark_relevant): Remove excessive vertical
33435 space.
33436 (vectorizable_load): Properly compute the number of loads needed
33437 for permuted strided SLP loads and do not spuriously assign
33438 to SLP_TREE_VEC_STMTS.
33439
33440 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
33441
33442 * config/i386/djgpp.h (PREFERRED_DEBUGGING_TYPE): Define to DWARF2
33443 (TARGET_ASM_OUTPUT_IDENT): Define to default_asm_output_ident_directive
33444 (MD_EXEC_PREFIX): Remove.
33445 (MD_STARTFILE_PREFIX) Removee.
33446 (FILE_NAME_ABSOLUTE_P): Remove.
33447 (CPP_SPEC): Do not read macros from sys/version.h.
33448 (LINK_COMMAND_SPEC): Remove.
33449 (LOCAL_INCLUDE_DIR): Remove.
33450 (TARGET_ASM_NAMED_SECTION): Define to i386_djgpp_asm_named_section
33451 (TARGET_OS_CPP_BUILTINS): Add DJGPP (non ISO only), __DJGPP, __DJGPP__, unix.
33452 (POST_LINK_SPEC): Define to invoke stubify after linker
33453 (LIBSTDCXX): Remove define
33454 (DBX_REGISTER_NUMBER): Define to svr4_dbx_register_map.
33455 (DEFAULT_PCC_STRUCT_RETURN): Define to 1.
33456 (SUBTARGET_OVERRIDE_OPTIONS): Remove warning about -mbnu2210.
33457 (SUBTARGET_OVERRIDE_OPTIONS): Ignore -fPIC and generate message.
33458 (SUBTARGET_OVERRIDE_OPTIONS): Default to DWARF2 debugging info.
33459 (IX86_MAYBE_NO_LIBGCC_TFMODE): Remove.
33460 (i386_djgpp_asm_named_section): Add propotype of new procedure
33461
33462 * config/i386/xm-djgpp.h (NATIVE_SYSTEM_HEADER_DIR): Define.
33463 (MD_EXEC_PREFIX): Define (moved from config/i386/djgpp.h).
33464 (STANDARD_STARTFILE_PREFIX_1): Define (moved from MD_STARTFILE_PREFIX
33465 in config/i386/djgpp.h).
33466 (STANDARD_STARTFILE_PREFIX_2): Define identical to
33467 STANDARD_STARTFILE_PREFIX_1.
33468 (LOCAL_INCLUDE_DIR): Define (moved from config/i386/djgpp.h).
33469 (GCC_DRIVER_HOST_INITIALIZATION): Fix reporting fatal
33470 installation errors.
33471 (MAX_OFILE_ALIGNMENT): Define to 128.
33472 (HAVE_FTW_H): Undefine as DJGPP do not have nftw, but have ftw.h.
33473
33474 * config/i386/djgpp.c: New file. Add implementation of
33475 i386_djgpp_asm_named_section.
33476
33477 * config/i386/djgpp.opt: Remove obsolete option -mbnu210.
33478
33479 * config/i386/t-djgpp: New file. Add djgpp.o to EXTRA_OBJS.
33480 Add rule for building djgpp.o.
33481
33482 2016-01-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
33483
33484 * config/rs6000/rs6000.c (v2df_reduction_p): New function.
33485 (rtx_is_swappable_p): Reductions are swappable.
33486 (insn_is_swappable_p): V2DF reductions are swappable.
33487
33488 2016-01-11 John David Anglin <danglin@gcc.gnu.org>
33489
33490 * config/pa/pa.c (pa_emit_move_sequence): Handle floating point
33491 reloads for other unsupported memory operands.
33492
33493 2016-01-12 Kugan Vivekanandarajah <kuganv@linaro.org>
33494 Jim Wilson <jim.wilson@linaro.org>
33495
33496 PR target/69194
33497 * config/arm/arm-builtins.c (arm_expand_neon_args): Call
33498 copy_to_mode_reg instead of force_reg.
33499
33500 2016-01-11 H.J. Lu <hongjiu.lu@intel.com>
33501
33502 PR target/69225
33503 * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Set to 2 only if
33504 TARGET_80387 is true.
33505
33506 2016-01-11 Jakub Jelinek <jakub@redhat.com>
33507
33508 PR target/69071
33509 * lra-eliminations.c (move_plus_up): Only move plus up
33510 if subreg of the constant can be simplified into constant
33511 and use the simplified subreg of the constant instead of
33512 the original constant.
33513
33514 * fold-const.c (fold_convertible_p): Don't return true
33515 for conversion of VECTOR_TYPE to same sized integral type.
33516 (fold_convert_loc): Fix up formatting. Fold conversion of
33517 VECTOR_TYPE to same sized integral type using VIEW_CONVERT_EXPR
33518 instead of NOP_EXPR.
33519
33520 PR tree-optimization/69214
33521 * tree-vrp.c (simplify_cond_using_ranges): Don't propagate
33522 innerop into a comparison if SSA_NAME_OCCURS_IN_ABNORMAL_PHI.
33523 Formatting fix.
33524
33525 PR tree-optimization/69207
33526 * tree-vect-slp.c (vect_get_constant_vectors): For
33527 VECTOR_BOOLEAN_TYPE_P, assert op has integral type instead of
33528 fold_convertible_p to vector_type's element type, and always
33529 use VCE for non-VECTOR_BOOLEAN_TYPE_P.
33530
33531 2016-01-11 Richard Biener <rguenther@suse.de>
33532
33533 PR tree-optimization/69173
33534 * tree-vect-loop.c (vect_fixup_scalar_cycles_with_patterns): Only
33535 fixup the cycle if all stmts are in a pattern.
33536
33537 2016-01-11 Uros Bizjak <ubizjak@gmail.com>
33538
33539 PR middle-end/68999
33540 * alias.c (base_alias_check): Move check for addresses with
33541 alignment ANDs before the call for compare_base_decls.
33542 (memrefs_conflict_p): Return -1 for different decls
33543 that went through alignment adjustments.
33544
33545 2016-01-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
33546
33547 PR rtl-optimization/68796
33548 * config/aarch64/aarch64.md (*and<mode>_compare0): New pattern.
33549 * config/aarch64/aarch64.c (aarch64_select_cc_mode): Handle HImode
33550 and QImode comparisons against zero with CC_NZmode.
33551 * config/aarch64/iterators.md (short_mask): New mode_attr.
33552
33553 2016-01-11 H.J. Lu <hongjiu.lu@intel.com>
33554
33555 * config/i386/sse.md (<avx512>_load<mode>_mask): Remove snprintf.
33556 (<avx512>_store<mode>_mask): Likewise.
33557
33558 2016-01-11 Bernd Schmidt <bschmidt@redhat.com>
33559 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
33560
33561 PR rtl-optimization/68841
33562 * ifcvt.c (struct noce_if_info): Add orig_x field.
33563 (bbs_ok_for_cmove_arith): Add to_rename parameter.
33564 Don't record conflicts on to_rename if it's present.
33565 Allow memory destinations in sets.
33566 (noce_try_cmove_arith): Call bbs_ok_for_cmove_arith even on simple
33567 blocks, passing orig_x to the checks.
33568 (noce_process_if_block): Set if_info->orig_x appropriately.
33569
33570 2016-01-11 Tom de Vries <tom@codesourcery.com>
33571
33572 PR tree-optimization/69069
33573 * tree-parloops.c (create_parallel_loop): Add missing phi args.
33574
33575 2016-01-11 Yuri Rumyantsev <ysrumyan@gmail.com>
33576
33577 PR rtl-optimization/68920
33578 * config/i386/i386.c (ix86_option_override_internal): Restrict number
33579 of conditional moves for RTL if-conversion to 1 for
33580 TARGET_ONE_IF_CONV_INSN.
33581 * config/i386/i386.h (TARGET_ONE_IF_CONV_INSN): New macros.
33582 * config/i386/x86-tune.def (X86_TUNE_ONE_IF_CONV_INSN): New macros.
33583 * params.def (PARAM_MAX_RTL_IF_CONVERSION_INSNS) : Introduce new
33584 parameter to restirct number of conditional moves for
33585 RTL if-conversion.
33586 * doc/invoke.texi (max-rtl-if-conversion-insns): Document it.
33587 * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Limit number of
33588 conditionl moves.
33589
33590 2016-01-11 Alexandre Oliva <aoliva@redhat.com>
33591
33592 PR bootstrap/69123
33593 * var-tracking.c (drop_overlapping_mem_locs): Operate on all
33594 onepart vars. Fix typo in comment. Fix reversed condition in
33595 unshare test.
33596 (dataflow_set_remove_mem_locs): Operate on all onepart vars.
33597
33598 PR bootstrap/69123
33599 * var-tracking.c (dump_onepart_variable_differences): New.
33600 (dataflow_set_different): If a detailed dump is requested,
33601 delay early returns and dump differences between onepart
33602 variables present before and after, and added variables.
33603
33604 2016-01-11 Ilya Enkovich <enkovich.gnu@gmail.com>
33605
33606 PR target/69010
33607 * expr.c (expand_expr_real_1): For boolean vector constants
33608 with a scalar mode use const_scalar_mask_from_tree.
33609 (const_scalar_mask_from_tree): New.
33610 * optabs.c (expand_vec_cond_mask_expr): Use mask mode
33611 assigned to a mask type to handle constants.
33612
33613 2016-01-11 Martin Jambor <mjambor@suse.cz>
33614
33615 PR ipa/69044
33616 * ipa-cp.c (estimate_local_effects): Do not clone for removal of
33617 useless parameters if we cannot change function signature.
33618
33619 2016-01-11 Martin Jambor <mjambor@suse.cz>
33620
33621 PR ipa/66616
33622 * cgraphclones.c (duplicate_thunk_for_node): Copy can_change_signature
33623 flag.
33624
33625 2016-01-11 Tom de Vries <tom@codesourcery.com>
33626
33627 PR tree-optimization/69109
33628 * tree-parloops.c (try_transform_to_exit_first_loop_alt): Don't allow
33629 latch with phi.
33630
33631 2016-01-11 Tom de Vries <tom@codesourcery.com>
33632
33633 PR tree-optimization/69108
33634 * tree-parloops.c (gather_scalar_reductions): Handle case that outer phi
33635 res is not used in a phi.
33636
33637 2016-01-11 Yury Gribov <y.gribov@samsung.com>
33638
33639 PR 67425
33640 * common.opt (frandom-seed): Fix parameter name.
33641 * doc/invoke.texi (frandom-seed): Ditto and describe parameter.
33642
33643 2016-01-11 Tom de Vries <tom@codesourcery.com>
33644
33645 PR tree-optimization/69058
33646 * tree-parloops.c (pass_parallelize_loops::execute): Return 0 if libgomp
33647 not supported.
33648
33649 2016-01-11 Andrew Burgess <andrew.burgess@embecosm.com>
33650
33651 * config/arc/arc.opt (mdiv-rem): Add period to the end.
33652 (mcode-density): Likewise.
33653
33654 2016-01-10 Tom de Vries <tom@codesourcery.com>
33655
33656 PR tree-optimization/69062
33657 * tree-parloops.c (loop_has_phi_with_address_arg): New function.
33658 (parallelize_loops): Don't paralelize loop that has phi with address
33659 arg.
33660
33661 2016-01-10 Tom de Vries <tom@codesourcery.com>
33662
33663 PR tree-optimization/69039
33664 * tree-parloops.c (try_create_reduction_list): Only allow single exit
33665 phi for reduction.
33666
33667 2016-01-09 John David Anglin <danglin@gcc.gnu.org>
33668
33669 PR middle-end/68743
33670 * match.pd: Require target has function_c99_misc before doing
33671 truncl(extend(x)) and trunc(extend(x)) -> extend(truncf(x)), etc.
33672
33673 2016-01-09 Gerald Pfeifer <gerald@pfeifer.com>
33674
33675 * configure.ac (isl_options_set_schedule_serialize_sccs): Also
33676 use GMPINC.
33677 * configure: Regenerate.
33678
33679 2016-01-09 Jakub Jelinek <jakub@redhat.com>
33680
33681 PR middle-end/50865
33682 PR tree-optimization/69097
33683 * fold-const.h (expr_not_equal_to): New prototype.
33684 * fold-const.c: Include stringpool.h and tree-ssanames.h.
33685 (expr_not_equal_to): New function.
33686 * match.pd (X % -Y is the same as X % Y): Don't optimize
33687 unless X is known not to be equal to minimum or Y is known
33688 not to be equal to -1.
33689 * tree-vrp.c (simplify_div_or_mod_using_ranges): Add GSI argument.
33690 fold TRUNC_MOD_EXPR if the second argument is not a power of two.
33691 (simplify_stmt_using_ranges): Adjust caller.
33692 (vrp_finalize): Call set_value_range on SSA_NAMEs before calling
33693 substitute_and_fold.
33694
33695 2016-01-09 Jan Hubicka <hubicka@ucw.cz>
33696
33697 * ipa-icf.c (sem_item_optimizer::merge_classes): Do not ICE on VAR_DECL
33698 w/o DECL_NAME.
33699
33700 2016-01-08 Jakub Jelinek <jakub@redhat.com>
33701
33702 PR tree-optimization/69167
33703 * gimple-fold.c (replace_stmt_with_simplification): Also punt if
33704 new SSA_NAME_OCCURS_IN_ABNORMAL_PHI SSA_NAMEs appear in operands of
33705 ops[0] comparison.
33706 * gimple-match-head.c (maybe_push_res_to_seq): Likewise.
33707
33708 2016-01-08 Alan Lawrence <alan.lawrence@arm.com>
33709 Richard Biener <rguenther@suse.de>
33710
33711 PR tree-optimization/68707
33712 * tree-vect-slp.c (vect_analyze_slp_instance): Cancel permuted SLP
33713 instances that can be handled via vect_load_lanes.
33714
33715 2016-01-08 Uros Bizjak <ubizjak@gmail.com>
33716
33717 * symtab.c (symtab_node::equal_address_to): Return -1 instead of 2
33718 if we can't determine address equivalence.
33719 * alias.c (compare_base_decl): Update for changed return value of
33720 symtab_node::equal_address_to.
33721
33722 2016-01-08 Jason Merrill <jason@redhat.com>
33723
33724 PR c++/68983
33725 PR c++/67557
33726 * function.c (assign_temp): Guard against TREE_ADDRESSABLE types here.
33727 * expr.c (store_field): Not here.
33728 * tree-cfgcleanup.c (fixup_noreturn_call): Don't clear LHS of a
33729 call with TREE_ADDRESSABLE type.
33730 * tree-cfg.c (verify_gimple_call): Adjust.
33731
33732 2016-01-08 Olivier Hainque <hainque@adacore.com>
33733
33734 * config/vxworks.h (VXWORKS_LIBGCC_SPEC): Don't link shared RTPs with
33735 libc_internal.
33736
33737 2016-01-08 Alan Lawrence <alan.lawrence@arm.com>
33738
33739 * gcc.target/rs6000/paired.md (reduc_smax_v2sf): Rename to...
33740 (reduc_smax_scal_v2sf): ...here, make result SFmode, extract element.
33741 (reduc_smin_v2sf): Rename to...
33742 (reduc_smin_scal_v2sf): ...here, make result SFmode, extract element.
33743 (reduc_splus_v2sf): Rename to...
33744 (reduc_plus_scal_v2sf): ...here, make result SFmode, extract element.
33745
33746 2016-01-08 Jakub Jelinek <jakub@redhat.com>
33747
33748 PR tree-optimization/69162
33749 * gimplify.c (gimplify_va_arg_expr): Encode original type of
33750 valist argument in another argument.
33751 (gimplify_modify_expr): Adjust for the above change. Cleanup.
33752 * tree-stdarg.c (expand_ifn_va_arg_1): Use new 3rd argument
33753 to determine the va_list type, build a MEM_REF instead of
33754 build_fold_indirect_ref.
33755
33756 PR tree-optimization/69172
33757 * gimple-fold.c (gimple_fold_builtin_memory_chk): Pass type to
33758 gimple_build.
33759
33760 2016-01-08 Thomas Preud'homme <thomas.preudhomme@arm.com>
33761
33762 PR tree-optimization/67781
33763 * tree-ssa-math-opts.c (find_bswap_or_nop): Zero out bytes in cmpxchg
33764 and cmpnop in two steps: first the ones not accessed in original
33765 gimple expression in a endian independent way and then the ones not
33766 accessed in the final result in an endian-specific way.
33767
33768 2016-01-08 Jakub Jelinek <jakub@redhat.com>
33769
33770 PR tree-optimization/69083
33771 * tree-vect-slp.c (vect_get_constant_vectors): For
33772 VECTOR_BOOLEAN_TYPE_P assert op is fold_convertible_p to vector_type's
33773 element type. If op is fold_convertible_p to vector_type's element
33774 type, use NOP_EXPR instead of VCE.
33775
33776 2016-01-08 Segher Boessenkool <segher@kernel.crashing.org>
33777
33778 PR rtl-optimization/67778
33779 PR rtl-optimization/68634
33780 PR rtl-optimization/68909
33781 * shrink-wrap.c (try_shrink_wrapping): Add comment. Don't pop
33782 block from the stack until done with it. Remove a superfluous
33783 bitmap set. Remove a superfluous bitmap test.
33784
33785 2016-01-07 Martin Sebor <msebor@redhat.com>
33786
33787 PR c/68966
33788 * doc/extend.texi (__atomic Builtins, __sync Builtins): Document
33789 constraint on the type of arguments.
33790
33791 2016-01-07 Andreas Tobler <andreast@gcc.gnu.org>
33792
33793 * config/arm/freebsd.h: Rename SUBTARGET_OVERRIDE_OPTIONS to
33794 SUBTARGET_OVERRIDE_INTERNAL_OPTIONS. Adjust to check
33795 unaligned_access on the gcc_options set.
33796 * config/arm/arm.c (arm_option_override_internal): Use
33797 SUBTARGET_OVERRIDE_INTERNAL_OPTIONS.
33798
33799 2016-01-07 Uros Bizjak <ubizjak@gmail.com>
33800
33801 PR target/69140
33802 * config/i386/i386.c (ix86_frame_pointer_required): Enable
33803 frame pointer for TARGET_64BIT_MS_ABI when stack is misaligned.
33804
33805 2016-01-07 Uros Bizjak <ubizjak@gmail.com>
33806
33807 Revert
33808 2016-01-06 Uros Bizjak <ubizjak@gmail.com>
33809
33810 PR target/69140
33811 * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
33812 depending on frame_pointer_needed before remaining integer and SSE
33813 registers are saved.
33814
33815 2016-01-07 Sandra Loosemore <sandra@codesourcery.com>
33816
33817 PR 1078
33818 * doc/extend.texi (Nvidia PDX Function Attributes): New section.
33819
33820 2016-01-07 H.J. Lu <hongjiu.lu@intel.com>
33821
33822 PR target/69171
33823 * config/i386/sse.md (<sse>_sqrt<mode>2<mask_name><round_name>):
33824 Use the "xBm" constraint.
33825 (float<sseintvecmodelower><mode>2<mask_name><round_name):
33826 Likewise.
33827 (sse_cvtsi2ss<round_name>): Use round_nimm_scalar_predicate.
33828 (sse_cvtsi2ssq<round_name>): Likewise.
33829 (sse_cvtss2si<round_name>): Likewise.
33830 (sse_cvtss2siq<round_name>): Likewise.
33831 (sse2_cvtsi2sdq<round_name>): Likewise.
33832 (sse2_cvtsd2si<round_name>): Likewise.
33833 (sse2_cvtsd2siq<round_name>): Likewise.
33834 * config/i386/subst.md (round_nimm_scalar_predicate): New
33835 predicate.
33836
33837 2015-12-15 Bernd Schmidt <bschmidt@redhat.com>
33838
33839 PR middle-end/67639
33840 * varasm.c (make_decl_rtl): Mark invalid register vars as
33841 DECL_EXTERNAL.
33842
33843 PR rtl-optimization/66206
33844 * bt-load.c (find_btr_use): Change first arg to be a pointer to an rtx.
33845 All callers changed.
33846
33847 2016-01-07 Jakub Jelinek <jakub@redhat.com>
33848
33849 PR tree-optimization/69141
33850 * tree-ssa-pre.c: Include langhooks.h.
33851 (eliminate_dom_walker::before_dom_children): Use
33852 lang_hooks.decl_printable_name instead of
33853 cgraph_node::get ()->name ().
33854
33855 PR middle-end/68960
33856 * gimple-expr.c (copy_var_decl): If var has DECL_USER_ALIGN set, copy
33857 it and DECL_ALIGN too.
33858
33859 2016-01-06 Robert Suchanek <robert.suchanek@imgtec.com>
33860
33861 * config/mips/mips-ftypes.def: Sort to lexicographical order.
33862
33863 2016-01-06 Uros Bizjak <ubizjak@gmail.com>
33864
33865 PR target/69140
33866 * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
33867 depending on frame_pointer_needed before remaining integer and SSE
33868 registers are saved.
33869
33870 2015-01-06 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
33871
33872 * config/rs6000/vsx.md (*p9_vecload_<mode>): Replace VSX_M
33873 mode iterator with VSX_M2.
33874 (*p9_vecstore_<mode>): Likewise.
33875 (*vsx_le_permute_<mode>): Restrict to !TARGET_P9_VECTOR.
33876 (*vsx_le_perm_load_<mode> for VSX_LE_128): Likewise.
33877 (*vsx_le_perm_store_<mode> for VSX_LE_128): Likewise.
33878 (define_split for VSX_LE128 stores): Likewise.
33879 (define_peephole2 for TImode LE swaps): Likewise.
33880 (define_split for VSX_LE128 post-reload stores): Likewise.
33881
33882 2016-01-06 Marek Polacek <polacek@redhat.com>
33883
33884 PR sanitizer/69099
33885 * convert.c (convert_to_integer_1): Adjust call to
33886 ubsan_instrument_float_cast. Use NULL_TREE instead of NULL.
33887 * ubsan.c (ubsan_instrument_float_cast): Drop the ARG parameter. Use
33888 EXPR instead of ARG.
33889 * ubsan.h (ubsan_instrument_float_cast): Adjust declaration.
33890
33891 2016-01-05 Sandra Loosemore <sandra@codesourcery.com>
33892
33893 PR 1078
33894 * doc/extend.texi (RL78 Variable Attributes): New section.
33895
33896 2016-01-05 Marek Polacek <polacek@redhat.com>
33897
33898 PR c/69104
33899 * builtins.c (get_memmodel): Use expansion point location rather than
33900 the input location. Call warning_at rather than warning.
33901 (expand_builtin_atomic_compare_exchange): Likewise.
33902 (expand_builtin_atomic_load): Likewise.
33903 (expand_builtin_atomic_store): Likewise.
33904 (expand_builtin_atomic_clear): Likewise.
33905
33906 2016-01-05 H.J. Lu <hongjiu.lu@intel.com>
33907
33908 PR target/68991
33909 * config/i386/i386.c (ix86_expand_vector_logical_operator):
33910 Replace nonimmediate_operand with vector_operand.
33911 * config/i386/predicates.md (vector_operand): New predicate.
33912 (general_vector_operand): Replace nonimmediate_operand with
33913 vector_operand.
33914 * config/i386/sse.md: Replace nonimmediate_operand with
33915 vector_operand and m constraint with Bm constraint on SSE
33916 patterns with 16-byte memory operand.
33917 * config/i386/subst.md (round_nimm_predicate): Replace
33918 nonimmediate_operand with vector_operand.
33919 (round_saeonly_nimm_predicate): Likewise.
33920 (round_saeonly_nimm_scalar_predicate): New.
33921
33922 2016-01-05 H.J. Lu <hongjiu.lu@intel.com>
33923
33924 PR target/68991
33925 * config/i386/constraints.md (Bm): New constraint.
33926 * config/i386/predicates.md (vector_memory_operand): New
33927 predicate.
33928 * config/i386/sse.md: Replace xm with xBm in plusminus and
33929 any_logic patterns.
33930
33931 2016-01-05 Sandra Loosemore <sandra@codesourcery.com>
33932
33933 PR 1078
33934 * doc/extend.texi (V850 Function Attributes): New section.
33935 (V850 Variable Attributes): New section.
33936
33937 2016-01-05 Sandra Loosemore <sandra@codesourcery.com>
33938
33939 PR 1078
33940 * doc/extend.texi (MicroBlaze Function Attributes): Document
33941 interrupt_handler and fast_interrupt attributes.
33942
33943 2016-01-05 Sergei Trofimovich <siarheit@google.com>
33944
33945 PR other/60465
33946 * config/ia64/ia64.c (ia64_expand_load_address): Use gprel64
33947 for local symbolic operands.
33948 * config/ia64/predicates.md (local_symbolic_operand64): New
33949 predicate.
33950
33951 2016-01-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
33952
33953 PR rtl-optimization/68651
33954 * combine.c (combine_simplify_rtx): Canonicalize x + x into
33955 x << 1.
33956
33957 2016-01-05 Nathan Sidwell <nathan@acm.org>
33958
33959 * alias.c (compare_base_decls): Use symtab_node::get.
33960
33961 2016-01-05 Nick Clifton <nickc@redhat.com>
33962
33963 PR target/68770
33964 * ira-costs.c (copy_cost): Initialise the t_icode field of the
33965 secondary_reload_info structure.
33966
33967 PR target/66655
33968 * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Define to use weak
33969 decls if weak support is available.
33970
33971 2016-01-04 Martin Sebor <msebor@redhat.com>
33972
33973 * doc/invoke.texi (Warning Options): Document -Winvalid-memory-model.
33974
33975 2016-01-04 Michael Meissner <meissner@linux.vnet.ibm.com>
33976
33977 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
33978 OPTION_MASK_P9_DFORM.
33979
33980 * config/rs6000/constraints.md (wo constraint): New constraint for
33981 ISA 3.0 (power9).
33982
33983 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Add support
33984 for wo constraint.
33985 (rs6000_init_hard_regno_mode_ok): Likewise.
33986
33987 * config/rs6000/rs6000.h (r6000_reg_class_enum): Add support for
33988 wo constraint.
33989
33990 * config/rs6000/altivec.md (altivec_vperm_<mode>): Clean up vperm
33991 expanders not to have constraints. Add support for ISA 3.0 xxperm
33992 instruction. Add support for fusing xxlor with xxperm.
33993 (altivec_vperm_<mode>_internal): Likewise.
33994 (altivec_vperm_v8hiv16qi): Likewise.
33995 (altivec_vperm_<mode>v16q): Likewise.
33996 (altivec_vperm_<mode>_uns): Likewise.
33997 (vperm_v8hiv4si): Likewise.
33998 (vperm_v16qiv8hi): Likewise.
33999
34000 * doc/md.texi (RS/6000 constraints): Document wo constraint.
34001
34002 2016-01-04 Jakub Jelinek <jakub@redhat.com>
34003
34004 Update copyright years.
34005
34006 * gcc.c (process_command): Update copyright notice dates.
34007 * gcov-dump.c (print_version): Ditto.
34008 * gcov.c (print_version): Ditto.
34009 * gcov-tool.c (print_version): Ditto.
34010 * gengtype.c (create_file): Ditto.
34011 * doc/cpp.texi: Bump @copying's copyright year.
34012 * doc/cppinternals.texi: Ditto.
34013 * doc/gcc.texi: Ditto.
34014 * doc/gccint.texi: Ditto.
34015 * doc/gcov.texi: Ditto.
34016 * doc/install.texi: Ditto.
34017 * doc/invoke.texi: Ditto.
34018
34019 2016-01-04 Eric Botcazou <ebotcazou@adacore.com>
34020
34021 * config/arm/arm.c (aapcs_vfp_allocate_return_reg): Treat all integer
34022 modes larger than TImode as TImode if NEON is not enabled.
34023
34024 2016-01-04 Eric Botcazou <ebotcazou@adacore.com>
34025
34026 PR target/69100
34027 * config/sparc/sparc.h (FUNCTION_ARG_REGNO_P): Return true in 64-bit
34028 mode for %f0-%f31 only if TARGET_FPU.
34029
34030 2016-01-04 Eric Botcazou <ebotcazou@adacore.com>
34031
34032 PR target/69072
34033 * config/sparc/sparc.c (scan_record_type): Take into account subfields
34034 to compute the PACKED_P predicate.
34035 (function_arg_record_value): Minor tweaks.
34036
34037 2016-01-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
34038
34039 * doc/install.texi (--with-multilib-list): Describe the meaning of the
34040 option for arm*-*-* targets.
34041
34042 2016-01-03 Sandra Loosemore <sandra@codesourcery.com>
34043
34044 * doc/extend.texi (Common Function Attributes): Move docs for
34045 MSP430-specific attributes to....
34046 (MSP430 Function Attributes): ...here. Delete the redundant
34047 entries and copy-edit the remaining text.
34048 (MSP430 Variable Attributes): Use uniform format for index
34049 entries and add a cross-reference to the corresponding function
34050 attribute docs.
34051
34052 2016-01-03 Vladimír Čunát <vcunat@gmail.com>
34053
34054 * doc/invoke.texi (RS/6000 and PowerPC Options): Fix
34055 -finite-math typo.
34056 (x86 Options): Likewise.
34057
34058 2016-01-01 Sandra Loosemore <sandra@codesourcery.com>
34059
34060 PR 1078
34061
34062 * extend.texi (Common Function Attributes) <no_stack_limit>: New.
34063 * invoke.texi (Code Gen Options) <-fno-stack-limit>: Add pointer
34064 to corresponding attribute.
34065
34066 2016-01-01 Sandra Loosemore <sandra@codesourcery.com>
34067
34068 * doc/extend.texi (Common Function Attributes) <noplt>: Move
34069 to correct alphabetization of table. Copy-edit and correct
34070 markup.
34071 <stack_protect>: Likewise.
34072 <target_clones>: Likewise.
34073 <simd>: Likewise.
34074 * doc/invoke.texi (Optimize Options) <-fstack-protector-explicit>:
34075 Correct punctuation.
34076 (Code Gen Options) <-fno-plt>: Copy-edit.
34077
34078 2016-01-01 Bernd Edlinger <bernd.edlinger@hotmail.de>
34079
34080 PR target/68917
34081 * config/tilegx/tilegx.md (clzsi2): Don't create DI subregs of
34082 SI values. Explicitly convert SI to DI and vice-versa.
34083
34084 2016-01-01 Jakub Jelinek <jakub@redhat.com>
34085
34086 PR tree-optimization/69070
34087 * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Only test
34088 REAL_VALUE_ISSIGNALING_NAN on arg0 if arg0 is a REAL_CST.
34089
34090 PR sanitizer/69055
34091 * ubsan.c (ubsan_instrument_float_cast): Call
34092 initialize_sanitizer_builtins.
34093
34094 PR target/69015
34095 * ifcvt.c (find_cond_trap): Give up if returnjump_p (jump).
34096 \f
34097 Copyright (C) 2016 Free Software Foundation, Inc.
34098
34099 Copying and distribution of this file, with or without modification,
34100 are permitted in any medium without royalty provided the copyright
34101 notice and this notice are preserved.