1 2017-10-25 Richard Biener <rguenther@suse.de>
3 * tree-ssa-sccvn.h (vn_eliminate): Declare.
4 * tree-ssa-pre.c (class eliminate_dom_walker, eliminate,
5 class pass_fre): Move to ...
6 * tree-ssa-sccvn.c (class eliminate_dom_walker, vn_eliminate,
7 class pass_fre): ... here and adjust for statistics.
9 2017-10-25 Jakub Jelinek <jakub@redhat.com>
12 * attribs.c (attribute_value_equal): Use omp_declare_simd_clauses_equal
13 for comparison of OMP_CLAUSEs regardless of flag_openmp{,_simd}.
14 (duplicate_one_attribute, copy_attributes_to_builtin): New functions.
15 * attribs.h (duplicate_one_attribute, copy_attributes_to_builtin): New
18 2017-10-25 Richard Biener <rguenther@suse.de>
20 * tree-ssa-pre.c (need_eh_cleanup, need_ab_cleanup, el_to_remove,
21 el_to_fixup, el_todo, el_avail, el_avail_stack, eliminate_avail,
22 eliminate_push_avail, eliminate_insert): Move inside...
23 (class eliminate_dom_walker): ... this class in preparation
25 (fini_eliminate): Remove by merging with ...
26 (eliminate): ... this function. Adjust for class changes.
27 (pass_pre::execute): Remove fini_eliminate call.
28 (pass_fre::execute): Likewise.
30 2017-10-24 Jakub Jelinek <jakub@redhat.com>
33 * config/i386/sse.md (UNSPEC_VPERMI2, UNSPEC_VPERMI2_MASK): Remove.
34 (VPERMI2, VPERMI2I): New mode iterators.
35 (<avx512>_vpermi2var<mode>3_maskz): Remove 3 define_expand patterns.
36 (<avx512>_vpermi2var<mode>3<sd_maskz_name>): Remove 3 define_insn
38 (<avx512>_vpermi2var<mode>3_mask): New define_expand using VPERMI2
39 mode iterator. Remove 3 old define_insn patterns.
40 (*<avx512>_vpermi2var<mode>3_mask): 2 new define_insn patterns.
41 (<avx512>_vpermt2var<mode>3_maskz): Adjust 1 define_expand to use
42 VPERMI2 mode iterator, remove the other two expanders.
43 (<avx512>_vpermt2var<mode>3<sd_maskz_name>): Adjust 1 define_insn
44 to use VPERMI2 mode iterator, add another alternative for vpermi2*
45 instructions, remove the other two patterns.
46 (<avx512>_vpermt2var<mode>3_mask): Adjust 1 define_insn to use VPERMI2
47 mode iterator, remove the other two patterns.
48 * config/i386/i386.c (ix86_expand_vec_perm_vpermi2): Renamed to ...
49 (ix86_expand_vec_perm_vpermt2): ... this. Swap mask and op0
50 arguments, use gen_*vpermt2* expanders instead of gen_*vpermi2*
51 and adjust argument order accordingly.
52 (ix86_expand_vec_perm): Adjust caller.
53 (expand_vec_perm_1): Likewise.
54 (expand_vec_perm_vpermi2_vpshub2): Rename to ...
55 (expand_vec_perm_vpermt2_vpshub2): ... this.
56 (ix86_expand_vec_perm_const_1): Adjust caller.
57 (ix86_vectorize_vec_perm_const_ok): Adjust comments.
60 * config/i386/sse.md (VIMAX_AVX2): Remove V4TImode.
61 (VIMAX_AVX2_AVX512BW, VIMAX_AVX512VL): New mode iterators.
62 (vec_shl_<mode>): Remove unused expander.
63 (avx512bw_<shift_insn><mode>3): New define_insn.
64 (<sse2_avx2>_ashl<mode>3, <sse2_avx2>_lshr<mode>3): Replaced by ...
65 (<sse2_avx2>_<shift_insn><mode>3): ... this. New define_insn.
67 2017-10-24 Paolo Carlini <paolo.carlini@oracle.com>
70 * doc/invoke.texi ([Wbuiltin-declaration-mismatch]): Extend
73 2017-10-24 Wilco Dijkstra <wdijkstr@arm.com>
75 PR rtl-optimization/82396
76 * gcc/haifa-sched.c (ready_sort_real): Remove qsort workaround.
77 (autopref_multipass_init): Simplify initialization.
78 (autopref_rank_data): Simplify sort order.
79 * gcc/sched-int.h (autopref_multipass_data_): Remove
80 multi_mem_insn_p, min_offset and max_offset.
82 2017-10-24 Wilco Dijkstra <wdijkstr@arm.com>
85 * config/aarch64/aarch64.c (aarch64_frame_pointer_required)
86 Check special value of flag_omit_frame_pointer.
87 (aarch64_can_eliminate): Likewise.
88 (aarch64_override_options_after_change_1): Simplify handling of
89 -fomit-frame-pointer and -fomit-leaf-frame-pointer.
91 2017-10-24 Richard Biener <rguenther@suse.de>
93 PR tree-optimization/82697
94 * tree-ssa-phiopt.c (cond_store_replacement): Use alias-set
95 zero for conditional load and unconditional store.
97 2017-10-24 H.J. Lu <hongjiu.lu@intel.com>
99 * doc/install.texi: Document bootstrap-cet.
101 2017-10-24 H.J. Lu <hongjiu.lu@intel.com>
104 * config/i386/i386.c (rest_of_insert_endbranch): Don't insert
105 ENDBR instruction at function entrance if function is only
108 2017-10-24 Jakub Jelinek <jakub@redhat.com>
111 * config/i386/i386.md (addcarry<mode>, subborrow<mode>): Change
112 patterns to better describe from which operation the CF is computed.
113 (addcarry<mode>_0, subborrow<mode>_0): New patterns.
114 * config/i386/i386.c (ix86_expand_builtin) <case handlecarry>: Pass
115 one LTU with [DT]Imode and another one with [SD]Imode. If arg0
116 is 0, use _0 suffixed expanders instead of emitting a comparison
119 2017-10-06 Sergey Shalnov <Sergey.Shalnov@intel.com>
121 * config/i386/i386.md(*movsf_internal, *movdf_internal):
122 Avoid 512-bit AVX modes for TARGET_PREFER_AVX256.
124 2017-10-24 Eric Botcazou <ebotcazou@adacore.com>
127 * tree-outof-ssa.h (always_initialized_rtx_for_ssa_name_p): Delete.
128 * expr.c (expand_expr_real_1) <expand_decl_rtl>: Revert latest change.
129 * loop-iv.c (iv_get_reaching_def): Likewise.
130 * cfgexpand.c (expand_one_ssa_partition): Initialize the RTX if the
131 variable is promoted and the partition contains undefined values.
133 2017-10-23 Sandra Loosemore <sandra@codesourcery.com>
135 * config/nios2/nios2.c (nios2_rtx_costs): Make costs better
137 (nios2_address_cost): Define.
138 (nios2_legitimize_address): Recognize (exp + constant) directly.
139 (TARGET_ADDRESS_COST): Define.
141 2017-10-23 Sandra Loosemore <sandra@codesourcery.com>
143 * config/nios2/nios2-protos.h (nios2_large_constant_p): Declare.
144 (nios2_symbolic_memory_operand_p): Declare.
145 (nios2_split_large_constant): Declare.
146 (nios2_split_symbolic_memory_operand): Declare.
147 * config/nios2/nios2.c: Adjust includes.
148 (nios2_symbolic_constant_allowed): New.
149 (nios2_symbolic_constant_p): New.
150 (nios2_plus_symbolic_constant_p): New.
151 (nios2_valid_addr_expr_p): Recognize addresses involving
153 (nios2_legitimate_address_p): Likewise, also LO_SUM.
154 (nios2_symbolic_memory_operand_p): New.
155 (nios2_large_constant_p): New.
156 (nios2_split_large_constant): New.
157 (nios2_split_plus_large_constant): New.
158 (nios2_split_symbolic_memory_operand): New.
159 (nios2_legitimize_address): Code refactoring. Handle addresses
160 involving symbolic constants.
161 (nios2_emit_move_sequence): Likewise.
162 (nios2_print_operand): Improve error output.
163 (nios2_print_operand_address): Handle LO_SUM.
164 (nios2_cdx_narrow_form_p): Likewise.
165 * config/nios2/nios2.md (movqi_internal): Add splitter for memory
166 operands involving symbolic constants.
167 (movhi_internal, movsi_internal): Likewise.
168 (zero_extendhisi2, zero_extendqi<mode>2): Likewise.
169 (extendhisi2, extendqi<mode>2): Likewise.
171 2017-10-23 Sandra Loosemore <sandra@codesourcery.com>
173 * tree-pass.h (PROP_rtl_split_insns): Define.
174 * recog.c (pass_data_split_all_insns): Provide PROP_rtl_split_insns.
176 2017-10-23 Sandra Loosemore <sandra@codesourcery.com>
178 * config/nios2/nios2.c (TARGET_LRA_P): Don't override.
180 2017-10-23 Jakub Jelinek <jakub@redhat.com>
183 * target.def (const_not_ok_for_debug_p): Default to
184 default_const_not_ok_for_debug_p instead of hook_bool_rtx_false.
185 * targhooks.h (default_const_not_ok_for_debug_p): New declaration.
186 * targhooks.c (default_const_not_ok_for_debug_p): New function.
187 * dwarf2out.c (const_ok_for_output_1): Only reject UNSPECs for
188 which targetm.const_not_ok_for_debug_p returned true.
189 * config/arm/arm.c (arm_const_not_ok_for_debug_p): Return true
191 * config/powerpcspe/powerpcspe.c (rs6000_const_not_ok_for_debug_p):
193 * config/rs6000/rs6000.c (rs6000_const_not_ok_for_debug_p): Likewise.
194 * config/i386/i386.c (ix86_delegitimize_address_1): Don't delegitimize
195 UNSPEC_GOTOFF with addend into addend - _GLOBAL_OFFSET_TABLE_ + symbol
197 (ix86_const_not_ok_for_debug_p): New function.
198 (i386_asm_output_addr_const_extra): Handle UNSPEC_GOTOFF.
199 (TARGET_CONST_NOT_OK_FOR_DEBUG_P): Redefine.
201 2017-10-23 David Malcolm <dmalcolm@redhat.com>
204 * system.h: Conditionally include "unique-ptr.h" if
205 INCLUDE_UNIQUE_PTR is defined.
206 * unique-ptr-tests.cc: Remove include of "unique-ptr.h" in favor
207 of defining INCLUDE_UNIQUE_PTR before including "system.h".
209 2017-10-23 Sebastian Perta <sebastian.perta@renesas.com>
211 * config/rl78/rl78.md: New define_expand "subdi3".
213 2017-10-23 H.J. Lu <hongjiu.lu@intel.com>
216 * config/i386/i386.c (ix86_finalize_stack_frame_flags): Skip
217 DF_REF_INSN if DF_REF_INSN_INFO is false.
219 2017-10-23 Jan Hubicka <hubicka@ucw.cz>
221 * i386.c (dimode_scalar_chain::compute_convert_gain): Use
222 xmm_move instead of sse_move.
223 (sse_store_index): New function.
224 (ix86_register_move_cost): Be more sensible about mismatch stall;
225 model AVX moves correctly; make difference between sse->integer and
227 (ix86_builtin_vectorization_cost): Model correctly aligned and unaligned
228 moves; make difference between SSE and AVX.
229 * i386.h (processor_costs): Remove sse_move; add xmm_move, ymm_move
230 and zmm_move. Increase size of sse load and store tables;
231 add unaligned load and store tables; add ssemmx_to_integer.
232 * x86-tune-costs.h: Update all entries according to real
233 move latencies from Agner Fog's manual and chip documentation.
235 2017-10-23 Jakub Jelinek <jakub@redhat.com>
238 * config/i386/predicates.md (x86_64_dwzext_immediate_operand): New.
239 * config/i386/constraints.md (Wf): New constraint.
240 * config/i386/i386.md (UNSPEC_SBB): New unspec.
241 (cmp<dwi>_doubleword): Removed.
242 (sub<mode>3_carry_ccc, *sub<mode>3_carry_ccc_1): New patterns.
243 (sub<mode>3_carry_ccgz): Use unspec instead of compare.
244 * config/i386/i386.c (ix86_expand_branch) <case E_TImode>: Don't
245 expand with cmp<dwi>_doubleword. For LTU and GEU use
246 sub<mode>3_carry_ccc instead of sub<mode>3_carry_ccgz and use CCCmode.
248 * common.opt (gcolumn-info): Enable by default.
249 * doc/invoke.texi (gcolumn-info): Document new default.
251 2017-10-23 Richard Biener <rguenther@suse.de>
253 PR tree-optimization/82672
254 * graphite-isl-ast-to-gimple.c (graphite_copy_stmts_from_block):
255 Fold the stmt if we propagated into it.
257 2017-10-23 Richard Biener <rguenther@suse.de>
259 * tree-ssa-pre.c (bitmap_remove_from_set): Rename to...
260 (bitmap_remove_expr_from_set): ... this. All callers call this
261 for non-constant values.
262 (bitmap_set_subtract): Rename to...
263 (bitmap_set_subtract_expressions): ... this. Adjust and
265 (bitmap_set_contains_value): Remove superfluous check.
266 (bitmap_set_replace_value): Inline into single caller ...
267 (bitmap_value_replace_in_set): ... here and simplify.
268 (dependent_clean): Merge into ...
269 (clean): ... this using an overload. Adjust.
270 (prune_clobbered_mems): Adjust.
271 (compute_antic_aux): Likewise.
272 (compute_partial_antic_aux): Likewise.
274 2017-10-23 Richard Biener <rguenther@suse.de>
276 PR tree-optimization/82129
278 2017-08-01 Richard Biener <rguenther@suse.de>
280 PR tree-optimization/81181
281 * tree-ssa-pre.c (compute_antic_aux): Defer clean() to ...
282 (compute_antic): ... end of iteration here.
284 2017-10-23 Richard Sandiford <richard.sandiford@linaro.org>
286 * target.def (starting_frame_offset): New hook.
287 * doc/tm.texi (STARTING_FRAME_OFFSET): Remove in favor of...
288 (TARGET_STARTING_FRAME_OFFSET): ...this new hook.
289 * doc/tm.texi.in: Regenerate.
290 * hooks.h (hook_hwi_void_0): Declare.
291 * hooks.c (hook_hwi_void_0): New function.
292 * doc/rtl.texi: Refer to TARGET_STARTING_FRAME_OFFSET instead of
293 STARTING_FRAME_OFFSET.
294 * builtins.c (expand_builtin_setjmp_receiver): Likewise.
295 * reload1.c (reload): Likewise.
296 * cfgexpand.c (expand_used_vars): Use targetm.starting_frame_offset
297 instead of STARTING_FRAME_OFFSET.
298 * function.c (try_fit_stack_local): Likewise.
299 (assign_stack_local_1): Likewise
300 (instantiate_virtual_regs): Likewise.
301 * rtlanal.c (rtx_addr_can_trap_p_1): Likewise.
302 * config/avr/avr.md (nonlocal_goto_receiver): Likewise.
303 * config/aarch64/aarch64.h (STARTING_FRAME_OFFSET): Delete.
304 * config/alpha/alpha.h (STARTING_FRAME_OFFSET): Likewise.
305 * config/arc/arc.h (STARTING_FRAME_OFFSET): Likewise.
306 * config/arm/arm.h (STARTING_FRAME_OFFSET): Likewise.
307 * config/bfin/bfin.h (STARTING_FRAME_OFFSET): Likewise.
308 * config/c6x/c6x.h (STARTING_FRAME_OFFSET): Likewise.
309 * config/cr16/cr16.h (STARTING_FRAME_OFFSET): Likewise.
310 * config/cris/cris.h (STARTING_FRAME_OFFSET): Likewise.
311 * config/fr30/fr30.h (STARTING_FRAME_OFFSET): Likewise.
312 * config/frv/frv.h (STARTING_FRAME_OFFSET): Likewise.
313 * config/ft32/ft32.h (STARTING_FRAME_OFFSET): Likewise.
314 * config/h8300/h8300.h (STARTING_FRAME_OFFSET): Likewise.
315 * config/i386/i386.h (STARTING_FRAME_OFFSET): Likewise.
316 * config/ia64/ia64.h (STARTING_FRAME_OFFSET): Likewise.
317 * config/m32c/m32c.h (STARTING_FRAME_OFFSET): Likewise.
318 * config/m68k/m68k.h (STARTING_FRAME_OFFSET): Likewise.
319 * config/mcore/mcore.h (STARTING_FRAME_OFFSET): Likewise.
320 * config/mn10300/mn10300.h (STARTING_FRAME_OFFSET): Likewise.
321 * config/moxie/moxie.h (STARTING_FRAME_OFFSET): Likewise.
322 * config/msp430/msp430.h (STARTING_FRAME_OFFSET): Likewise.
323 * config/nds32/nds32.h (STARTING_FRAME_OFFSET): Likewise.
324 * config/nios2/nios2.h (STARTING_FRAME_OFFSET): Likewise.
325 * config/nvptx/nvptx.h (STARTING_FRAME_OFFSET): Likewise.
326 * config/pdp11/pdp11.h (STARTING_FRAME_OFFSET): Likewise.
327 * config/riscv/riscv.h (STARTING_FRAME_OFFSET): Likewise.
328 * config/rl78/rl78.h (STARTING_FRAME_OFFSET): Likewise.
329 * config/rx/rx.h (STARTING_FRAME_OFFSET): Likewise.
330 * config/s390/s390.h (STARTING_FRAME_OFFSET): Likewise.
331 * config/sh/sh.h (STARTING_FRAME_OFFSET): Likewise.
332 * config/sparc/sparc.c (sparc_compute_frame_size): Likewise.
333 * config/sparc/sparc.h (STARTING_FRAME_OFFSET): Likewise.
334 * config/spu/spu.h (STARTING_FRAME_OFFSET): Likewise.
335 * config/stormy16/stormy16.h (STARTING_FRAME_OFFSET): Likewise.
336 * config/tilegx/tilegx.h (STARTING_FRAME_OFFSET): Likewise.
337 * config/tilepro/tilepro.h (STARTING_FRAME_OFFSET): Likewise.
338 * config/v850/v850.h (STARTING_FRAME_OFFSET): Likewise.
339 * config/visium/visium.h (STARTING_FRAME_OFFSET): Likewise.
340 * config/avr/avr.h (STARTING_FRAME_OFFSET): Likewise.
341 * config/avr/avr-protos.h (avr_starting_frame_offset): Likewise.
342 * config/avr/avr.c (avr_starting_frame_offset): Make static and
343 return a HOST_WIDE_INT.
344 (avr_builtin_setjmp_frame_value): Use it instead of
345 STARTING_FRAME_OFFSET.
346 (TARGET_STARTING_FRAME_OFFSET): Redefine.
347 * config/epiphany/epiphany.h (STARTING_FRAME_OFFSET): Delete.
348 * config/epiphany/epiphany.c (epiphany_starting_frame_offset):
350 (TARGET_STARTING_FRAME_OFFSET): Redefine.
351 * config/iq2000/iq2000.h (STARTING_FRAME_OFFSET): Delete.
352 * config/iq2000/iq2000.c (iq2000_starting_frame_offset): New function.
353 (TARGET_CONSTANT_ALIGNMENT): Redefine.
354 * config/lm32/lm32.h (STARTING_FRAME_OFFSET): Delete.
355 * config/lm32/lm32.c (lm32_starting_frame_offset): New function.
356 (TARGET_STARTING_FRAME_OFFSET): Redefine.
357 * config/m32r/m32r.h (STARTING_FRAME_OFFSET): Delete.
358 * config/m32r/m32r.c (m32r_starting_frame_offset): New function.
359 (TARGET_STARTING_FRAME_OFFSET): Redefine.
360 * config/microblaze/microblaze.h (STARTING_FRAME_OFFSET): Delete.
361 * config/microblaze/microblaze.c (microblaze_starting_frame_offset):
363 (TARGET_STARTING_FRAME_OFFSET): Redefine.
364 * config/mips/mips.h (STARTING_FRAME_OFFSET): Delete.
365 * config/mips/mips.c (mips_compute_frame_info): Refer to
366 TARGET_STARTING_FRAME_OFFSET instead of STARTING_FRAME_OFFSET.
367 (mips_starting_frame_offset): New function.
368 (TARGET_STARTING_FRAME_OFFSET): Redefine.
369 * config/mmix/mmix.h (STARTING_FRAME_OFFSET): Delete.
370 * config/mmix/mmix-protos.h (mmix_starting_frame_offset): Delete.
371 * config/mmix/mmix.c (mmix_starting_frame_offset): Make static
372 and return a HOST_WIDE_INT.
373 (TARGET_STARTING_FRAME_OFFSET): Redefine.
374 (mmix_initial_elimination_offset): Refer to
375 TARGET_STARTING_FRAME_OFFSET instead of STARTING_FRAME_OFFSET.
376 * config/pa/pa.h (STARTING_FRAME_OFFSET): Delete.
377 * config/pa/pa.c (pa_starting_frame_offset): New function.
378 (pa_compute_frame_size): Use it instead of STARTING_FRAME_OFFSET.
379 (pa_expand_prologue): Likewise.
380 (TARGET_STARTING_FRAME_OFFSET): Redefine.
381 * config/powerpcspe/aix.h (STARTING_FRAME_OFFSET): Split out
382 !FRAME_GROWS_DOWNWARD handling to...
383 (RS6000_STARTING_FRAME_OFFSET): ...this new macro.
384 * config/powerpcspe/darwin.h (STARTING_FRAME_OFFSET): Split out
385 !FRAME_GROWS_DOWNWARD handling to...
386 (RS6000_STARTING_FRAME_OFFSET): ...this new macro.
387 * config/powerpcspe/powerpcspe.h (STARTING_FRAME_OFFSET): Split out
388 !FRAME_GROWS_DOWNWARD handling to...
389 (RS6000_STARTING_FRAME_OFFSET): ...this new macro.
390 * config/powerpcspe/powerpcspe.c (TARGET_STARTING_FRAME_OFFSET):
392 (rs6000_starting_frame_offset): New function.
393 * config/rs6000/aix.h (STARTING_FRAME_OFFSET): Split out
394 !FRAME_GROWS_DOWNWARD handling to...
395 (RS6000_STARTING_FRAME_OFFSET): ...this new macro.
396 * config/rs6000/darwin.h (STARTING_FRAME_OFFSET): Split out
397 !FRAME_GROWS_DOWNWARD handling to...
398 (RS6000_STARTING_FRAME_OFFSET): ...this new macro.
399 * config/rs6000/rs6000.h (STARTING_FRAME_OFFSET): Split out
400 !FRAME_GROWS_DOWNWARD handling to...
401 (RS6000_STARTING_FRAME_OFFSET): ...this new macro.
402 * config/rs6000/rs6000.c (TARGET_STARTING_FRAME_OFFSET): Refine.
403 (rs6000_starting_frame_offset): New function.
404 * config/vax/elf.h (STARTING_FRAME_OFFSET): Delete.
405 * config/vax/vax.h (STARTING_FRAME_OFFSET): Delete.
406 * config/vax/vax.c (vax_starting_frame_offset): New function.
407 (vax_expand_prologue): Use it instead of STARTING_FRAME_OFFSET.
408 (TARGET_STARTING_FRAME_OFFSET): Redefine.
409 * config/xtensa/xtensa.h (STARTING_FRAME_OFFSET): Delete.
410 * config/xtensa/xtensa.c (xtensa_starting_frame_offset): New function.
411 (TARGET_STARTING_FRAME_OFFSET): Redefine.
412 * system.h (STARTING_FRAME_OFFSET): Poison.
414 2017-10-23 Richard Sandiford <richard.sandiford@linaro.org>
416 * tree-vect-loop.c (vect_create_epilog_for_reduction): Use
417 SCALAR_TYPE_MODE instead of TYPE_MODE.
419 2017-10-23 Richard Sandiford <richard.sandiford@linaro.org>
420 Alan Hayward <alan.hayward@arm.com>
421 David Sherwood <david.sherwood@arm.com>
423 * dwarf2out.c (loc_list_from_tree_1): Use SCALAR_INT_TYPE_MODE
425 2017-10-23 Richard Sandiford <richard.sandiford@linaro.org>
426 Alan Hayward <alan.hayward@arm.com>
427 David Sherwood <david.sherwood@arm.com>
429 * expmed.c (expand_shift_1): Use scalar_mode for scalar_mode.
431 2017-10-23 Richard Biener <rguenther@suse.de>
433 PR tree-optimization/82129
434 * tree-ssa-pre.c (bitmap_set_and): Remove.
435 (compute_antic_aux): Compute ANTIC_OUT intersection in a way
436 canonicalizing expressions in the set to those with lowest
437 ID rather than taking that from the first edge.
439 2017-10-23 Richard Sandiford <richard.sandiford@linaro.org>
441 * combine.c (rtx_equal_for_field_assignment_p): Use
444 2017-10-22 Richard Sandiford <richard.sandiford@linaro.org>
445 Alan Hayward <alan.hayward@arm.com>
446 David Sherwood <david.sherwood@arm.com>
448 * internal-fn.c (expand_direct_optab_fn): Don't assign directly
449 to a SUBREG_PROMOTED_VAR.
451 2017-10-22 Richard Sandiford <richard.sandiford@linaro.org>
452 Alan Hayward <alan.hayward@arm.com>
453 David Sherwood <david.sherwood@arm.com>
455 * cfgexpand.c (expand_debug_expr): Use GET_MODE_UNIT_PRECISION.
456 (expand_debug_source_expr): Likewise.
457 * combine.c (combine_simplify_rtx): Likewise.
458 * cse.c (fold_rtx): Likewise.
459 * optabs.c (expand_float): Likewise.
460 * simplify-rtx.c (simplify_unary_operation_1): Likewise.
461 (simplify_binary_operation_1): Likewise.
463 2017-10-22 Richard Sandiford <richard.sandiford@linaro.org>
464 Alan Hayward <alan.hayward@arm.com>
465 David Sherwood <david.sherwood@arm.com>
467 * combine.c (simplify_comparison): Use HWI_COMPUTABLE_MODE_P.
468 (record_promoted_value): Likewise.
469 * expr.c (expand_expr_real_2): Likewise.
470 * ree.c (update_reg_equal_equiv_notes): Likewise.
471 (combine_set_extension): Likewise.
472 * rtlanal.c (low_bitmask_len): Likewise.
473 * simplify-rtx.c (neg_const_int): Likewise.
474 (simplify_binary_operation_1): Likewise.
476 2017-10-22 Richard Sandiford <richard.sandiford@linaro.org>
477 Alan Hayward <alan.hayward@arm.com>
478 David Sherwood <david.sherwood@arm.com>
480 * lra-spills.c (assign_mem_slot): Use subreg_size_lowpart_offset.
481 * regcprop.c (maybe_mode_change): Likewise.
482 * reload1.c (alter_reg): Likewise.
484 2017-10-22 Richard Sandiford <richard.sandiford@linaro.org>
486 * inchash.h (inchash::hash::add_wide_int): New function.
487 * lto-streamer-out.c (hash_tree): Use it.
489 2017-10-22 Richard Sandiford <richard.sandiford@linaro.org>
491 * inchash.h (inchash::hash::add_wide_int): Rename to...
492 (inchash::hash::add_hwi): ...this.
493 * ipa-devirt.c (hash_odr_vtable): Update accordingly.
494 (polymorphic_call_target_hasher::hash): Likewise.
495 * ipa-icf.c (sem_function::get_hash, sem_function::init): Likewise.
496 (sem_item::add_expr, sem_item::add_type, sem_variable::get_hash)
497 (sem_item_optimizer::update_hash_by_addr_refs): Likewise.
498 * lto-streamer-out.c (hash_tree): Likewise.
499 * optc-save-gen.awk: Likewise.
500 * tree.c (add_expr): Likewise.
502 2017-10-22 Uros Bizjak <ubizjak@gmail.com>
505 * config/i386/i386.c (ix86_fp_compare_mode): Return CCFPmode
506 for ordered inequality comparisons even with TARGET_IEEE_FP.
508 2017-10-22 Uros Bizjak <ubizjak@gmail.com>
511 * config/i386/i386.md (cmp<dwi>_doubleword): New pattern.
512 * config/i386/i386.c (ix86_expand_branch) <case E_TImode>:
513 Expand with cmp<dwi>_doubleword.
515 2017-10-21 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
517 * extend.texi: Add x86 specific to 'nocf_check' attribute.
519 * invoke.texi: Add -mcet, -mibt, -mshstk options. Add x86
520 specific to -fcf-protection option.
522 2017-10-21 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
524 * common/config/i386/i386-common.c (OPTION_MASK_ISA_IBT_SET): New.
525 (OPTION_MASK_ISA_SHSTK_SET): Likewise.
526 (OPTION_MASK_ISA_IBT_UNSET): Likewise.
527 (OPTION_MASK_ISA_SHSTK_UNSET): Likewise.
528 (ix86_handle_option): Add -mibt, -mshstk, -mcet handling.
529 * config.gcc (extra_headers): Add cetintrin.h for x86 targets.
530 (extra_objs): Add cet.o for Linux/x86 targets.
531 (tmake_file): Add i386/t-cet for Linux/x86 targets.
532 * config/i386/cet.c: New file.
533 * config/i386/cetintrin.h: Likewise.
534 * config/i386/t-cet: Likewise.
535 * config/i386/cpuid.h (bit_SHSTK): New.
537 * config/i386/driver-i386.c (host_detect_local_cpu): Detect and
538 pass IBT and SHSTK bits.
539 * config/i386/i386-builtin-types.def
540 (VOID_FTYPE_UNSIGNED_PVOID): New.
541 (VOID_FTYPE_UINT64_PVOID): Likewise.
542 * config/i386/i386-builtin.def: Add CET intrinsics.
543 * config/i386/i386-c.c (ix86_target_macros_internal): Add
544 OPTION_MASK_ISA_IBT, OPTION_MASK_ISA_SHSTK handling.
545 * config/i386/i386-passes.def: Add pass_insert_endbranch pass.
546 * config/i386/i386-protos.h (make_pass_insert_endbranch): New
548 * config/i386/i386.c (rest_of_insert_endbranch): New.
549 (pass_data_insert_endbranch): Likewise.
550 (pass_insert_endbranch): Likewise.
551 (make_pass_insert_endbranch): Likewise.
552 (ix86_notrack_prefixed_insn_p): Likewise.
553 (ix86_target_string): Add -mibt, -mshstk flags.
554 (ix86_option_override_internal): Add flag_cf_protection
556 (ix86_valid_target_attribute_inner_p): Set OPT_mibt, OPT_mshstk.
557 (ix86_print_operand): Add 'notrack' prefix output.
558 (ix86_init_mmx_sse_builtins): Add CET intrinsics.
559 (ix86_expand_builtin): Expand CET intrinsics.
560 (x86_output_mi_thunk): Add 'endbranch' instruction.
561 * config/i386/i386.h (TARGET_IBT): New.
562 (TARGET_IBT_P): Likewise.
563 (TARGET_SHSTK): Likewise.
564 (TARGET_SHSTK_P): Likewise.
565 * config/i386/i386.md (unspecv): Add UNSPECV_NOP_RDSSP,
566 UNSPECV_INCSSP, UNSPECV_SAVEPREVSSP, UNSPECV_RSTORSSP,
567 UNSPECV_WRSS, UNSPECV_WRUSS, UNSPECV_SETSSBSY, UNSPECV_CLRSSBSY.
568 (builtin_setjmp_setup): New pattern.
569 (builtin_longjmp): Likewise.
570 (rdssp<mode>): Likewise.
571 (incssp<mode>): Likewise.
572 (saveprevssp): Likewise.
573 (rstorssp): Likewise.
574 (wrss<mode>): Likewise.
575 (wruss<mode>): Likewise.
576 (setssbsy): Likewise.
577 (clrssbsy): Likewise.
578 (nop_endbr): Likewise.
579 * config/i386/i386.opt: Add -mcet, -mibt, -mshstk and -mcet-switch
581 * config/i386/immintrin.h: Include <cetintrin.h>.
582 * config/i386/linux-common.h
583 (file_end_indicate_exec_stack_and_cet): New prototype.
584 (TARGET_ASM_FILE_END): New.
586 2017-10-20 Jan Hubicka <hubicka@ucw.cz>
588 * i386.c (ix86_builtin_vectorization_cost): Use existing rtx_cost
589 latencies instead of having separate table; make difference between
590 integer and float costs.
591 * i386.h (processor_costs): Remove scalar_stmt_cost,
592 scalar_load_cost, scalar_store_cost, vec_stmt_cost, vec_to_scalar_cost,
593 scalar_to_vec_cost, vec_align_load_cost, vec_unalign_load_cost,
595 * x86-tune-costs.h: Remove entries which has been removed in
596 procesor_costs from all tables; make cond_taken_branch_cost
597 and cond_not_taken_branch_cost COST_N_INSNS based.
599 2017-10-20 Jan Hubicka <hubicka@ucw.cz>
601 * x86-tune-costs.h (intel_cost, generic_cost): Fix move costs.
603 2017-10-20 Jakub Jelinek <jakub@redhat.com>
605 * config/i386/i386.md (isa): Remove fma_avx512f.
606 * config/i386/sse.md (<avx512>_fmadd_<mode>_mask<round_name>,
607 <avx512>_fmadd_<mode>_mask3<round_name>,
608 <avx512>_fmsub_<mode>_mask<round_name>,
609 <avx512>_fmsub_<mode>_mask3<round_name>,
610 <avx512>_fnmadd_<mode>_mask<round_name>,
611 <avx512>_fnmadd_<mode>_mask3<round_name>,
612 <avx512>_fnmsub_<mode>_mask<round_name>,
613 <avx512>_fnmsub_<mode>_mask3<round_name>,
614 <avx512>_fmaddsub_<mode>_mask<round_name>,
615 <avx512>_fmaddsub_<mode>_mask3<round_name>,
616 <avx512>_fmsubadd_<mode>_mask<round_name>,
617 <avx512>_fmsubadd_<mode>_mask3<round_name>): Remove isa attribute.
618 (*vec_widen_umult_even_v16si<mask_name>,
619 *vec_widen_smult_even_v16si<mask_name>): Likewise.
620 (<mask_codefor>avx512bw_dbpsadbw<mode><mask_name>): Likewise.
622 2017-10-20 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
624 * extend.texi: Add 'nocf_check' documentation.
625 * gimple.texi: Add second parameter to
626 gimple_build_call_from_tree.
627 * invoke.texi: Add -fcf-protection documentation.
628 * rtl.texi: Add REG_CALL_NOTRACK documenation.
630 2017-10-20 Richard Biener <rguenther@suse.de>
632 PR tree-optimization/82473
633 * tree-vect-loop.c (vectorizable_reduction): Properly get at
634 the largest input type.
636 2017-10-20 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
638 * c-attribs.c (handle_nocf_check_attribute): New function.
639 (c_common_attribute_table): Add 'nocf_check' handling.
640 * gimple-parser.c: Add second argument NULL to
641 gimple_build_call_from_tree.
642 * attrib.c (comp_type_attributes): Check nocf_check attribute.
643 * cfgexpand.c (expand_call_stmt): Set REG_CALL_NOCF_CHECK for
645 * combine.c (distribute_notes): Add REG_CALL_NOCF_CHECK handling.
646 * common.opt: Add fcf-protection flag.
647 * emit-rtl.c (try_split): Add REG_CALL_NOCF_CHECK handling.
648 * flag-types.h: Add enum cf_protection_level.
649 * gimple.c (gimple_build_call_from_tree): Add second parameter.
650 Add 'nocf_check' attribute propagation to gimple call.
651 * gimple.h (gf_mask): Add GF_CALL_NOCF_CHECK.
652 (gimple_build_call_from_tree): Update prototype.
653 (gimple_call_nocf_check_p): New function.
654 (gimple_call_set_nocf_check): Likewise.
655 * gimplify.c: Add second argument to gimple_build_call_from_tree.
656 * ipa-icf.c: Add nocf_check attribute in statement hash.
657 * recog.c (peep2_attempt): Add REG_CALL_NOCF_CHECK handling.
658 * reg-notes.def: Add REG_NOTE (CALL_NOCF_CHECK).
659 * toplev.c (process_options): Add flag_cf_protection handling.
661 2017-10-19 Jan Hubicka <hubicka@ucw.cz>
663 * x86-tune-costs.h (core_cost): Fix div, move and sqrt latencies.
665 2017-10-20 Richard Biener <rguenther@suse.de>
667 PR tree-optimization/82603
668 * tree-if-conv.c (predicate_mem_writes): Make sure to only
669 remove false predicated stores.
671 2017-10-20 Richard Biener <rguenther@suse.de>
673 * graphite-isl-ast-to-gimple.c
674 (translate_isl_ast_to_gimple::graphite_copy_stmts_from_block):
675 Remove return value and simplify, dump copied stmt after lhs
677 (translate_isl_ast_to_gimple::translate_isl_ast_node_user):
678 Reduce dump verbosity.
679 (gsi_insert_earliest): Likewise.
680 (translate_isl_ast_to_gimple::copy_bb_and_scalar_dependences): Adjust.
681 * graphite.c (print_global_statistics): Adjust dumping.
682 (print_graphite_scop_statistics): Likewise.
683 (print_graphite_statistics): Do not dump loops here.
684 (graphite_transform_loops): But here.
686 2017-10-20 Nicolas Roche <roche@adacore.com>
688 * configure.ac (ACX_PROG_GNAT): Append "libgnat" to include search dir.
689 * configure: Regenerate.
691 2017-10-20 Jakub Jelinek <jakub@redhat.com>
694 * tree-cfg.c (pass_warn_function_return::execute): In noreturn
695 functions when optimizing replace GIMPLE_RETURN stmts with
696 calls to __builtin_unreachable ().
699 * config/gnu-user.h (LIBTSAN_EARLY_SPEC): Add libtsan_preinit.o
700 for -fsanitize=thread link of executables.
701 (LIBLSAN_EARLY_SPEC): Add liblsan_preinit.o for -fsanitize=leak
705 * config/i386/sse.md (VI248_AVX2, VI248_AVX512BW, VI248_AVX512BW_2):
707 (<shift_insn><mode>3<mask_name>): Change the last of the 3
708 define_insns for logical vector shifts to use VI248_AVX512BW
709 iterator instead of VI48_AVX512, remove <mask_mode512bit_condition>
710 condition, useless isa and prefix attributes. Change the first
711 2 of these define_insns to ...
712 (<mask_codefor><shift_insn><mode>3<mask_name>): ... this, new
713 define_insn for avx512vl.
714 (<shift_insn><mode>3): ... and this, new define_insn without
715 masking for non-avx512vl.
718 * config/i386/sse.md (*andnot<mode>3,
719 <mask_codefor><code><mode>3<mask_name>, *<code><mode>3): Split
720 (=v,v,vm) alternative into (=x,x,xm) and (=v,v,vm), for 128-bit
721 and 256-bit vectors, the (=x,x,xm) alternative and when mask is
722 not applied use empty suffix even for TARGET_AVX512VL.
723 * config/i386/subst.md (mask_prefix3, mask_prefix4): When mask
724 is applied, supply evex,evex or evex,evex,evex instead of just
727 2017-10-20 Julia Koval <julia.koval@intel.com>
729 * common/config/i386/i386-common.c (OPTION_MASK_ISA_GFNI_SET,
730 (OPTION_MASK_ISA_GFNI_UNSET): New.
731 (ix86_handle_option): Handle OPT_mgfni.
732 * config/i386/cpuid.h (bit_GFNI): New.
733 * config/i386/driver-i386.c (host_detect_local_cpu): Detect gfni.
734 * config/i386/i386-c.c (ix86_target_macros_internal): Define __GFNI__.
735 * config/i386/i386.c (ix86_target_string): Add -mgfni.
736 (ix86_valid_target_attribute_inner_p): Add OPT_mgfni.
737 * config/i386/i386.h (TARGET_GFNI, TARGET_GFNI_P): New.
738 * config/i386/i386.opt: Add mgfni.
740 2017-10-20 Orlando Arias <oarias@knights.ucf.edu>
742 * config/msp430/msp430.c (msp430_option_override): Disable
743 -fdelete-null-pointer-checks.
744 * doc/invoke.text (-fdelete-null-pointer-checks): Document that.
746 2017-10-19 Jan Hubicka <hubicka@ucw.cz>
748 * x86-tune-costs.h (generic_cost, core_cost): Correct costs
749 of x87 and SSE instructions.
751 2017-10-19 Jan Hubicka <hubicka@ucw.cz>
753 * asan.c (create_cond_insert_point): Do not update edge count.
754 * auto-profile.c (afdo_propagate_edge): Update for edge count removal.
755 (afdo_propagate_circuit): Likewise.
756 (afdo_calculate_branch_prob): Likewise.
757 (afdo_annotate_cfg): Likewise.
758 * basic-block.h (struct edge_def): Remove count.
759 (edge_def::count): New accessor.
760 * bb-reorder.c (rotate_loop): Update.
761 (find_traces_1_round): Update.
762 (connect_traces): Update.
763 (sanitize_hot_paths): Update.
764 * cfg.c (unchecked_make_edge): Update.
765 (make_single_succ_edge): Update.
766 (check_bb_profile): Update.
767 (dump_edge_info): Update.
768 (update_bb_profile_for_threading): Update.
769 (scale_bbs_frequencies_int): Update.
770 (scale_bbs_frequencies_gcov_type): Update.
771 (scale_bbs_frequencies_profile_count): Update.
772 (scale_bbs_frequencies): Update.
773 * cfganal.c (connect_infinite_loops_to_exit): Update.
774 * cfgbuild.c (compute_outgoing_frequencies): Update.
775 (find_many_sub_basic_blocks): Update.
776 * cfgcleanup.c (try_forward_edges): Update.
777 (try_crossjump_to_edge): Update
778 * cfgexpand.c (expand_gimple_cond): Update
779 (expand_gimple_tailcall): Update
780 (construct_exit_block): Update
781 * cfghooks.c (verify_flow_info): Update
782 (redirect_edge_succ_nodup): Update
784 (make_forwarder_block): Update
785 (duplicate_block): Update
786 (account_profile_record): Update
787 * cfgloop.c (find_subloop_latch_edge_by_profile): Update.
788 * cfgloopanal.c (expected_loop_iterations_unbounded): Update.
789 * cfgloopmanip.c (scale_loop_profile): Update.
791 (lv_adjust_loop_entry_edge): Update.
792 * cfgrtl.c (try_redirect_by_replacing_jump): Update.
793 (force_nonfallthru_and_redirect): Update.
794 (purge_dead_edges): Update.
795 (rtl_flow_call_edges_add): Update.
796 * cgraphunit.c (init_lowered_empty_function): Update.
797 (cgraph_node::expand_thunk): Update.
798 * gimple-pretty-print.c (dump_probability): Update.
799 (dump_edge_probability): Update.
800 * gimple-ssa-isolate-paths.c (isolate_path): Update.
801 * haifa-sched.c (sched_create_recovery_edges): Update.
802 * hsa-gen.c (convert_switch_statements): Update.
803 * ifcvt.c (dead_or_predicable): Update.
804 * ipa-inline-transform.c (inline_transform): Update.
805 * ipa-split.c (split_function): Update.
806 * ipa-utils.c (ipa_merge_profiles): Update.
807 * loop-doloop.c (add_test): Update.
808 * loop-unroll.c (unroll_loop_runtime_iterations): Update.
809 * lto-streamer-in.c (input_cfg): Update.
810 (input_function): Update.
811 * lto-streamer-out.c (output_cfg): Update.
812 * modulo-sched.c (sms_schedule): Update.
813 * postreload-gcse.c (eliminate_partially_redundant_load): Update.
814 * predict.c (maybe_hot_edge_p): Update.
815 (unlikely_executed_edge_p): Update.
816 (probably_never_executed_edge_p): Update.
817 (dump_prediction): Update.
818 (drop_profile): Update.
819 (propagate_unlikely_bbs_forward): Update.
820 (determine_unlikely_bbs): Update.
821 (force_edge_cold): Update.
822 * profile.c (compute_branch_probabilities): Update.
823 * reg-stack.c (better_edge): Update.
824 * shrink-wrap.c (handle_simple_exit): Update.
825 * tracer.c (better_p): Update.
826 * trans-mem.c (expand_transaction): Update.
827 (split_bb_make_tm_edge): Update.
828 * tree-call-cdce.c: Update.
829 * tree-cfg.c (gimple_find_sub_bbs): Update.
830 (gimple_split_edge): Update.
831 (gimple_duplicate_sese_region): Update.
832 (gimple_duplicate_sese_tail): Update.
833 (gimple_flow_call_edges_add): Update.
834 (insert_cond_bb): Update.
835 (execute_fixup_cfg): Update.
836 * tree-cfgcleanup.c (cleanup_control_expr_graph): Update.
837 * tree-complex.c (expand_complex_div_wide): Update.
838 * tree-eh.c (lower_resx): Update.
839 (unsplit_eh): Update.
840 (cleanup_empty_eh_move_lp): Update.
841 * tree-inline.c (copy_edges_for_bb): Update.
842 (freqs_to_counts): Update.
843 (copy_cfg_body): Update.
844 * tree-ssa-dce.c (remove_dead_stmt): Update.
845 * tree-ssa-ifcombine.c (update_profile_after_ifcombine): Update.
846 * tree-ssa-loop-im.c (execute_sm_if_changed): Update.
847 * tree-ssa-loop-ivcanon.c (remove_exits_and_undefined_stmts): Update.
848 (unloop_loops): Update.
849 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Update.
850 * tree-ssa-loop-split.c (connect_loops): Update.
851 (split_loop): Update.
852 * tree-ssa-loop-unswitch.c (hoist_guard): Update.
853 * tree-ssa-phionlycprop.c (propagate_rhs_into_lhs): Update.
854 * tree-ssa-phiopt.c (replace_phi_edge_with_variable): Update.
855 * tree-ssa-reassoc.c (branch_fixup): Update.
856 * tree-ssa-tail-merge.c (replace_block_by): Update.
857 * tree-ssa-threadupdate.c (remove_ctrl_stmt_and_useless_edges): Update.
858 (compute_path_counts): Update.
859 (update_profile): Update.
860 (recompute_probabilities): Update.
861 (update_joiner_offpath_counts): Update.
862 (estimated_freqs_path): Update.
863 (freqs_to_counts_path): Update.
864 (clear_counts_path): Update.
865 (ssa_fix_duplicate_block_edges): Update.
866 (duplicate_thread_path): Update.
867 * tree-switch-conversion.c (hoist_edge_and_branch_if_true): Update.
868 (case_bit_test_cmp): Update.
869 (collect_switch_conv_info): Update.
870 (gen_inbound_check): Update.
871 (do_jump_if_equal): Update.
872 (emit_cmp_and_jump_insns): Update.
873 * tree-tailcall.c (decrease_profile): Update.
874 (eliminate_tail_call): Update.
875 * tree-vect-loop-manip.c (slpeel_add_loop_guard): Update.
876 (vect_do_peeling): Update.
877 * tree-vect-loop.c (scale_profile_for_vect_loop): Update.
878 * ubsan.c (ubsan_expand_null_ifn): Update.
879 (ubsan_expand_ptr_ifn): Update.
880 * value-prof.c (gimple_divmod_fixed_value): Update.
881 (gimple_mod_pow2): Update.
882 (gimple_mod_subtract): Update.
884 (gimple_stringop_fixed_value): Update.
886 2017-10-19 Uros Bizjak <ubizjak@gmail.com>
889 * config/i386/i386.md (sub to cmp): New peephole2 pattern.
891 2017-10-19 Alexander Monakov <amonakov@ispras.ru>
893 PR rtl-optimization/82395
894 * ira-color.c (allocno_priority_compare_func): Fix comparison step
895 based on non_spilled_static_chain_regno_p.
897 2017-10-19 Uros Bizjak <ubizjak@gmail.com>
899 * config/i386/i386.c (output_387_binary_op): Rewrite SSE part.
900 (ix86_emit_mode_set): Rewrite insn mnemonic construction.
901 (ix86_prepare_fp_compare_args): Redefine is_sse as bool.
903 2017-10-19 Martin Sebor <msebor@redhat.com>
905 PR tree-optimization/82596
906 * tree.c (array_at_struct_end_p): Handle STRING_CST.
908 2017-10-19 Eric Botcazou <ebotcazou@adacore.com>
910 * asan.c (handle_builtin_alloca): Deal with all alloca variants.
911 (get_mem_refs_of_builtin_call): Likewise.
912 * builtins.c (expand_builtin_apply): Adjust call to
913 allocate_dynamic_stack_space.
914 (expand_builtin_alloca): For __builtin_alloca_with_align_and_max, pass
915 the third argument to allocate_dynamic_stack_space, otherwise -1.
916 (expand_builtin): Deal with all alloca variants.
917 (is_inexpensive_builtin): Likewise.
918 * builtins.def (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX): New.
919 * calls.c (special_function_p): Deal with all alloca variants.
920 (initialize_argument_information): Adjust call to
921 allocate_dynamic_stack_space.
922 (expand_call): Likewise.
923 * cfgexpand.c (expand_call_stmt): Deal with all alloca variants.
924 * doc/extend.texi (Built-ins): Add __builtin_alloca_with_align_and_max
925 * explow.c (allocate_dynamic_stack_space): Add MAX_SIZE parameter and
926 use it for the stack usage computation.
927 * explow.h (allocate_dynamic_stack_space): Adjust prototype.
928 * function.c (gimplify_parameters): Call build_alloca_call_expr.
929 * gimple-ssa-warn-alloca.c (alloca_call_type): Simplify control flow.
930 Take into account 3rd argument of __builtin_alloca_with_align_and_max.
931 (in_loop_p): Remove first argument and useless check.
932 (pass_walloca::execute): Remove useless test and adjust call to above.
933 * gimple.c (gimple_build_call_from_tree): Deal with all alloc variants
934 * gimplify.c (gimplify_vla_decl): Call build_alloca_call_expr.
935 (gimplify_call_expr): Deal with all alloca variants.
936 * hsa-gen.c (gen_hsa_alloca): Likewise.
937 (gen_hsa_insns_for_call): Likewise.
938 * ipa-pure-const.c (special_builtin_state): Likewise.
939 * tree-chkp.c (chkp_build_returned_bound): Likewise.
940 * tree-object-size.c (alloc_object_size): Likewise.
941 * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Likewise.
942 (call_may_clobber_ref_p_1): Likewise.
943 * tree-ssa-ccp.c (evaluate_stmt): Likewise.
944 (ccp_fold_stmt): Likewise.
945 (optimize_stack_restore): Likewise.
946 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise.
947 (mark_all_reaching_defs_necessary_1): Likewise.
948 (propagate_necessity): Likewise.
949 (eliminate_unnecessary_stmts): Likewise.
950 * tree.c (build_common_builtin_nodes): Build
951 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX.
952 (build_alloca_call_expr): New function.
953 * tree.h (ALLOCA_FUNCTION_CODE_P): New macro.
954 (CASE_BUILT_IN_ALLOCA): Likewise.
955 (build_alloca_call_expr): Declare.
956 * varasm.c (incorporeal_function_p): Deal with all alloca variants.
958 2017-10-19 Eric Botcazou <ebotcazou@adacore.com>
961 * dwarf2out.c (new_die_raw): New static inline function.
962 (new_die): Use it to create the DIE.
963 (add_AT_external_die_ref): Likewise.
964 (clone_die): Likewise.
965 (clone_as_declaration): Likewise.
966 (dwarf2out_vms_debug_main_pointer): Likewise.
967 (base_type_die): Likewise. Remove early return for corner cases.
968 Do not call add_pubtype on the DIE here.
969 (is_base_type): Remove ERROR_MARK and return 0 for VOID_TYPE.
970 (modified_type_die): Adjust the lookup for reverse order DIEs. Skip
971 typedefs for base types with DW_AT_endianity. Make sure a DIE with
972 native order exists for base types, attach the DIE manually and call
973 add_pubtype on it. Do not equate a reverse order DIE to the type.
975 2017-10-19 Richard Earnshaw <rearnsha@arm.com>
977 * config/arm/arm.c (align_ok_ldrd_strd): New function.
978 (mem_ok_for_ldrd_strd): New parameter align. Extract the alignment of
980 (gen_operands_ldrd_strd): Validate the alignment of the accesses.
982 2017-10-19 Jakub Jelinek <jakub@redhat.com>
984 * flag-types.h (enum sanitize_code): Add SANITIZE_BUILTIN. Or
985 SANITIZE_BUILTIN into SANITIZE_UNDEFINED.
986 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_INVALID_BUILTIN,
987 BUILT_IN_UBSAN_HANDLE_INVALID_BUILTIN_ABORT): New builtins.
988 * opts.c (sanitizer_opts): Add builtin.
989 * ubsan.c (instrument_builtin): New function.
990 (pass_ubsan::execute): Call it.
991 (pass_ubsan::gate): Enable even for SANITIZE_BUILTIN.
992 * doc/invoke.texi: Document -fsanitize=builtin.
994 * ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch
995 builtins, store max (log2 (align), 0) into uchar field instead of
996 align into uptr field.
997 (ubsan_expand_objsize_ifn): Use _v1 suffixed type mismatch builtins,
998 store uchar 0 field instead of uptr 0 field.
999 (instrument_nonnull_return): Use _v1 suffixed nonnull return builtin,
1000 instead of passing one address of struct with 2 locations pass
1001 two addresses of structs with 1 location each.
1002 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH,
1003 BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_ABORT,
1004 BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN,
1005 BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_ABORT): Removed.
1006 (BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1,
1007 BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1_ABORT,
1008 BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1,
1009 BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1_ABORT): New builtins.
1011 2017-10-19 Martin Liska <mliska@suse.cz>
1014 * file-find.c (remove_prefix): Remove.
1015 * file-find.h (remove_prefix): Likewise.
1016 * gcc-ar.c: Remove smartness of lookup.
1018 2017-10-19 Segher Boessenkool <segher@kernel.crashing.org>
1020 * config/rs6000/rs6000.md (*call_indirect_aix<mode>,
1021 *call_value_indirect_aix<mode>, *call_indirect_elfv2<mode>,
1022 *call_value_indirect_elfv2<mode>): Add correct mode to the unspec.
1024 2017-10-19 Jakub Jelinek <jakub@redhat.com>
1027 * config/i386/i386.md (setcc + movzbl to xor + setcc): New peephole2.
1028 (setcc + and to xor + setcc): New peephole2.
1030 2017-10-19 Tom de Vries <tom@codesourcery.com>
1032 * doc/sourcebuild.texi (Test Directives, Variants of
1033 dg-require-support): Add dg-require-stack-size.
1035 2017-10-19 Martin Liska <mliska@suse.cz>
1038 * gimplify.c (gimplify_decl_expr): Do not instrument variables
1039 that have a large alignment.
1040 (gimplify_target_expr): Likewise.
1042 2017-10-18 Segher Boessenkool <segher@kernel.crashing.org>
1044 PR rtl-optimization/82602
1045 * ira.c (rtx_moveable_p): Return false for volatile asm.
1047 2017-10-18 Uros Bizjak <ubizjak@gmail.com>
1050 * config/i386/i386-modes.def (CCGZ): New CC mode.
1051 * config/i386/i386.md (sub<mode>3_carry_ccgz): New insn pattern.
1052 * config/i386/predicates.md (ix86_comparison_operator):
1054 * config/i386/i386.c (ix86_expand_branch) <case E_TImode>:
1055 Emulate LE, LEU, GT, GTU, LT, LTU, GE and GEU double-word comparisons
1056 with double-word subtraction.
1057 (put_condition_code): Handle CCGZmode.
1059 2017-10-18 Aldy Hernandez <aldyh@redhat.com>
1061 * wide-int.cc (debug (const wide_int &)): New.
1062 (debug (const wide_int *)): New.
1063 (debug (const widest_int &)): New.
1064 (debug (const widest_int *)): New.
1066 2017-10-18 Vladimir Makarov <vmakarov@redhat.com>
1069 * lra-constraints.c (curr_insn_transform): Use non-input operand
1070 instead of output one for matched reload.
1072 2017-10-18 Bin Cheng <bin.cheng@arm.com>
1074 * tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
1075 (tree-ssa-loop-ivopts.h): New header file.
1076 (struct builtin_info): New fields.
1077 (classify_builtin_1): Compute and record base and offset parts for
1078 memset builtin partition by calling strip_offset.
1079 (offset_cmp, fuse_memset_builtins): New functions.
1080 (finalize_partitions): Fuse adjacent memset partitions by calling
1082 * tree-ssa-loop-ivopts.c (strip_offset): Delete static declaration.
1083 Expose the interface.
1084 * tree-ssa-loop-ivopts.h (strip_offset): New declaration.
1086 2017-10-18 Bin Cheng <bin.cheng@arm.com>
1088 PR tree-optimization/82574
1089 * tree-loop-distribution.c (find_single_drs): New parameter. Check
1090 that data reference must be executed exactly once per iteration
1091 against the outermost loop in nest.
1092 (classify_partition): Update call to above function.
1094 2017-10-18 Richard Biener <rguenther@suse.de>
1096 PR tree-optimization/82591
1097 * graphite.c (graphite_transform_loops): Move code gen message
1099 * graphite-isl-ast-to-gimple.c (graphite_regenerate_ast_isl):
1100 Here. Handle scop_to_isl_ast failing.
1101 (scop_to_isl_ast): Limit the number of ISL operations.
1103 2017-10-18 Richard Biener <rguenther@suse.de>
1105 * graphite-isl-ast-to-gimple.c
1106 (translate_isl_ast_to_gimple::set_rename): Simplify.
1107 (translate_isl_ast_to_gimple::set_rename_for_each_def): Inline...
1108 (graphite_copy_stmts_from_block): ... here.
1109 (copy_bb_and_scalar_dependences): Simplify.
1110 (add_parameters_to_ivs_params): Canonicalize.
1111 (generate_entry_out_of_ssa_copies): Simplify.
1112 * graphite-sese-to-poly.c (extract_affine_name): Simplify
1113 by passing in ISL dimension.
1114 (parameter_index_in_region_1): Rename to ...
1115 (parameter_index_in_region): ... this.
1116 (extract_affine): Adjust assert, pass down parameter index.
1117 (add_param_constraints): Use range-info when available.
1118 (build_scop_context): Adjust.
1119 * sese.c (new_sese_info): Adjust.
1120 (free_sese_info): Likewise.
1121 * sese.h (bb_map_t, rename_map_t, phi_rename, init_back_edge_pair_t):
1122 Remove unused typedefs.
1123 (struct sese_info_t): Simplify rename_map, remove incomplete_phis.
1125 2017-10-18 Martin Liska <mliska@suse.cz>
1127 * combine.c (simplify_compare_const): Add gcc_fallthrough.
1129 2017-10-18 Robin Dapp <rdapp@linux.vnet.ibm.com>
1131 * config/s390/s390.c (s390_bb_fallthru_entry_likely): New function.
1132 (s390_sched_init): Do not reset s390_sched_state if we entered the
1133 current basic block via a fallthru edge and all others are unlikely.
1135 2017-10-18 Robin Dapp <rdapp@linux.vnet.ibm.com>
1137 * config/s390/s390.c (NUM_SIDES): New variable.
1138 (LONGRUNNING_THRESHOLD): New variable.
1139 (LATENCY_FACTOR): New variable.
1140 (s390_sched_score): Decrease score for long-running instructions on
1142 (s390_sched_variable_issue): Perform bookkeeping for long-running
1145 2017-10-18 Richard Biener <rguenther@suse.de>
1147 * graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id):
1148 Simplify with removal of the parameter rename map.
1149 (set_rename): Likewise.
1150 (should_copy_to_new_region): Likewise.
1151 (graphite_copy_stmts_from_block): Likewise.
1152 (copy_bb_and_scalar_dependences): Remove initialization of
1153 unused copied_bb_map.
1155 (copy_internal_parameters): Likewise.
1156 (graphite_regenerate_ast_isl): Do not call copy_internal_parameters.
1157 * graphite-scop-detection.c (scop_detection::stmt_simple_for_scop_p):
1158 Use INTEGRAL_TYPE_P.
1159 (parameter_index_in_region_1): Rename to ...
1160 (assign_parameter_index_in_region): ... this. Assert we have
1161 a parameter we handle.
1162 (scan_tree_for_params): Adjust.
1163 * sese.h (parameter_rename_map_t): Remove.
1164 (struct sese_info_t): Remove unused parameter_rename_map and
1165 copied_bb_map members.
1166 * sese.c (new_sese_info): Adjust.
1167 (free_sese_info): Likewise.
1169 2017-10-18 Martin Liska <mliska@suse.cz>
1172 * asan.c (asan_expand_poison_ifn): Do not put gimple stmt
1173 on an abnormal edge.
1175 2017-10-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
1177 * doc/invoke.texi (ffunction-sections and fdata-sections):
1180 2017-10-17 Eric Botcazou <ebotcazou@adacore.com>
1182 * tree-ssa-loop-ivopts.c (add_autoinc_candidates): Bail out only if
1183 the use statement can throw internally.
1185 2017-10-17 Eric Botcazou <ebotcazou@adacore.com>
1187 * config/visium/visium.c (visium_select_cc_mode): Return CCmode for
1188 any RTX present on the RHS of a SET.
1189 * compare-elim.c (try_eliminate_compare): Restore comment.
1191 2017-10-17 Jakub Jelinek <jakub@redhat.com>
1193 * langhooks.h (struct lang_hooks): Document that tree_size langhook
1194 may be also called on tcc_type nodes.
1195 * langhooks.c (lhd_tree_size): Likewise.
1197 2017-10-17 David Malcolm <dmalcolm@redhat.com>
1199 * gimple-ssa-sprintf.c (fmtwarn): Update for changed signature of
1200 format_warning_at_substring.
1201 (maybe_warn): Convert source_range * param to a location_t. Pass
1202 UNKNOWN_LOCATION rather than NULL to fmtwarn.
1203 (format_directive): Remove code to extract source_ranges and
1204 source_range * in favor of just a location_t.
1205 (parse_directive): Pass UNKNOWN_LOCATION rather than NULL to
1207 * substring-locations.c (format_warning_va): Convert
1208 source_range * param to a location_t.
1209 (format_warning_at_substring): Likewise.
1210 * substring-locations.h (format_warning_va): Likewise.
1211 (format_warning_at_substring): Likewise.
1213 2017-10-17 Jan Hubicka <hubicka@ucw.cz>
1215 * target.h (enum vect_cost_for_stmt): Add vec_gather_load and
1217 * tree-vect-stmts.c (record_stmt_cost): Make difference between normal
1218 and scatter/gather ops.
1220 * aarch64/aarch64.c (aarch64_builtin_vectorization_cost): Add
1221 vec_gather_load and vec_scatter_store.
1222 * arm/arm.c (arm_builtin_vectorization_cost): Likewise.
1223 * powerpcspe/powerpcspe.c (rs6000_builtin_vectorization_cost): Likewise.
1224 * rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Likewise.
1225 * s390/s390.c (s390_builtin_vectorization_cost): Likewise.
1226 * spu/spu.c (spu_builtin_vectorization_cost): Likewise.
1227 * i386/i386.c (x86_builtin_vectorization_cost): Likewise.
1229 2017-10-17 Uros Bizjak <ubizjak@gmail.com>
1231 * reg-stack.c (compare_for_stack_reg): Add bool argument.
1232 Detect FTST instruction and handle its register pops. Only pop
1233 second operand if can_pop_second_op is true.
1234 (subst_stack_regs_pat) <case COMPARE>: Detect FCOMI instruction to
1235 set can_pop_second_op to false in the compare_for_stack_reg call.
1237 * config/i386/i386.md (*cmpi<FPCMP:unord><MODEF:mode>): Only call
1238 output_fp_compare for stack register operands.
1239 * config/i386/i386.c (output_fp_compare): Do not output SSE compare
1240 instructions here. Do not emit stack register pops here. Assert
1241 that FCOMPP pops next to top stack register. Rewrite function.
1243 2017-10-17 Nathan Sidwell <nathan@acm.org>
1246 * alias.c (compare_base_decls): Check HAS_DECL_ASSEMBLER_NAME_P,
1247 use DECL_ASSEMBLER_NAME_RAW.
1250 * tree.c (tree_code_size): Reformat. Punt to lang hook for unknown
1253 2017-10-17 Qing Zhao <qing.zhao@oracle.com>
1254 Wilco Dijkstra <wilco.dijkstra@arm.com>
1256 * builtins.c (expand_builtin_update_setjmp_buf): Add a
1257 converstion to Pmode from the buf_addr.
1259 2017-10-17 Richard Biener <rguenther@suse.de>
1261 * graphite-dependences.c (scop_get_reads_and_writes): Change
1262 output parameters to references.
1264 2017-10-17 Jackson Woodruff <jackson.woodruff@arm.com>
1266 PR 71026/tree-optimization
1267 * fold-const.c (distribute_real_division): Removed.
1268 (fold_binary_loc): Remove calls to distribute_real_divison.
1270 2017-10-17 Richard Biener <rguenther@suse.de>
1272 * graphite-scop-detection.c
1273 (scop_detection::stmt_has_simple_data_refs_p): Always use
1274 the full nest as region.
1275 (try_generate_gimple_bb): Likewise.
1276 * sese.c (scalar_evolution_in_region): Simplify now that
1277 SCEV can handle instantiation in regions.
1278 * tree-scalar-evolution.c (instantiate_scev_name): Also instantiate
1279 in the non-loop part of a function if requested.
1281 2017-10-17 Richard Biener <rguenther@suse.de>
1283 PR tree-optimization/82563
1284 * graphite-isl-ast-to-gimple.c (generate_entry_out_of_ssa_copies):
1286 (graphite_regenerate_ast_isl): Call it.
1287 * graphite-scop-detection.c (build_scops): Remove entry edge split.
1289 2017-10-17 Jakub Jelinek <jakub@redhat.com>
1291 PR tree-optimization/82549
1292 * fold-const.c (optimize_bit_field_compare, fold_truth_andor_1):
1293 Formatting fixes. Instead of calling make_bit_field_ref with negative
1296 2017-10-17 Olga Makhotina <olga.makhotina@intel.com>
1298 * config/i386/avx512dqintrin.h (_mm_mask_reduce_sd,
1299 _mm_maskz_reduce_sd, _mm_mask_reduce_ss,=20
1300 _mm_maskz_reduce_ss): New.
1301 * config/i386/i386-builtin.def (__builtin_ia32_reducesd_mask,
1302 __builtin_ia32_reducess_mask): Ditto..
1303 (__builtin_ia32_reducesd, __builtin_ia32_reducess): Remove.
1304 * config/i386/sse.md (reduces<mode>): Renamed to ...
1305 (reduces<mode><mask_scalar_name>): ... this.
1306 (vreduce<ssescalarmodesuffix>\t{%3, %2, %1, %0|%0, %1, %2, %3}): Changed
1308 (vreduce<ssescalarmodesuffix>\t{%3, %2, %1, %0<mask_scalar_operand4>|
1309 %0<mask_scalar_operand4>, %1, %2, %3}): ... this.
1311 2017-10-16 David Malcolm <dmalcolm@redhat.com>
1313 * Makefile.in (OBJS): Add unique-ptr-tests.o.
1314 * selftest-run-tests.c (selftest::run_tests): Call
1315 selftest::unique_ptr_tests_cc_tests.
1316 * selftest.h (selftest::unique_ptr_tests_cc_tests): New decl.
1317 * unique-ptr-tests.cc: New file.
1319 2017-10-16 Vladimir Makarov <vmakarov@redhat.com>
1322 * lra.c (collect_non_operand_hard_regs): Don't ignore operator
1324 * lra-lives.c (bb_killed_pseudos, bb_gen_pseudos): Move up.
1325 (make_hard_regno_born, make_hard_regno_dead): Update
1326 bb_killed_pseudos and bb_gen_pseudos for fixed regs.
1328 2017-10-16 Jeff Law <law@redhat.com>
1330 * tree-ssa-dse.c (live_bytes_read): Fix thinko.
1332 2017-10-16 Jan Hubicka <hubicka@ucw.cz>
1334 * x86-tune-costs.h (znver1_cost): Fix move cost tables.
1336 2017-10-16 Olivier Hainque <hainque@adacore.com>
1338 * gcc/config.gcc (powerpc*-*-*spe*): Pick 8548 as the default
1339 with_cpu if we were configured for an e500v2 target cpu name.
1341 2017-10-16 Thomas Preud'homme <thomas.preudhomme@arm.com>
1343 * config/arm/arm-cpus.in (cortex-m33): Add nodsp option.
1344 * doc/invoke.texi: Document +nodsp as a valid extension for
1347 2017-10-16 Martin Liska <mliska@suse.cz>
1349 * sbitmap.c (bitmap_bit_in_range_p_checking): New function.
1350 (test_set_range): Likewise.
1351 (test_range_functions): Rename to ...
1352 (test_bit_in_range): ... this.
1353 (sbitmap_c_tests): Add new test.
1355 2017-10-16 Tamar Christina <tamar.christina@arm.com>
1357 * config/aarch64/arm_neon.h (vdot_u32, vdotq_u32, vdot_s32, vdotq_s32): New.
1358 (vdot_lane_u32, vdot_laneq_u32, vdotq_lane_u32, vdotq_laneq_u32): New.
1359 (vdot_lane_s32, vdot_laneq_s32, vdotq_lane_s32, vdotq_laneq_s32): New.
1361 2017-10-16 Tamar Christina <tamar.christina@arm.com>
1363 * config/aarch64/aarch64-builtins.c
1364 (aarch64_types_quadopu_lane_qualifiers): New.
1365 (TYPES_QUADOPU_LANE): New.
1366 * config/aarch64/aarch64-simd.md (aarch64_<sur>dot<vsi2qi>): New.
1367 (<sur>dot_prod<vsi2qi>, aarch64_<sur>dot_lane<vsi2qi>): New.
1368 (aarch64_<sur>dot_laneq<vsi2qi>): New.
1369 * config/aarch64/aarch64-simd-builtins.def (sdot, udot): New.
1370 (sdot_lane, udot_lane, sdot_laneq, udot_laneq): New.
1371 * config/aarch64/iterators.md (sur): Add UNSPEC_SDOT, UNSPEC_UDOT.
1372 (Vdottype, DOTPROD): New.
1373 (sur): Add SDOT and UDOT.
1375 2017-10-16 Tamar Christina <tamar.christina@arm.com>
1377 * config/aarch64/aarch64.h (AARCH64_FL_DOTPROD): New.
1378 (AARCH64_ISA_DOTPROD, TARGET_DOTPROD): New.
1379 * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins): Add TARGET_DOTPROD.
1380 * config/aarch64/aarch64-option-extensions.def (dotprod): New.
1381 * config/aarch64/aarch64-cores.def (cortex-a55, cortex-a75): Enable TARGET_DOTPROD.
1382 (cortex-a75.cortex-a55): Likewise.
1383 * doc/invoke.texi (aarch64-feature-modifiers): Document dotprod.
1385 2017-10-16 Tamar Christina <tamar.christina@arm.com>
1387 * config/arm/arm-builtins.c (arm_unsigned_uternop_qualifiers): New.
1388 (UTERNOP_QUALIFIERS, arm_umac_lane_qualifiers, UMAC_LANE_QUALIFIERS): New.
1389 * config/arm/arm_neon_builtins.def (sdot, udot, sdot_lane, udot_lane): new.
1390 * config/arm/iterators.md (DOTPROD, VSI2QI, vsi2qi): New.
1391 (UNSPEC_DOT_S, UNSPEC_DOT_U, opsuffix): New.
1392 * config/arm/neon.md (neon_<sup>dot<vsi2qi>): New.
1393 (neon_<sup>dot_lane<vsi2qi>, <sup>dot_prod<vsi2qi>): New.
1394 * config/arm/types.md (neon_dot, neon_dot_q): New.
1395 * config/arm/unspecs.md (sup): Add UNSPEC_DOT_S, UNSPEC_DOT_U.
1397 2017-10-16 Tamar Christina <tamar.christina@arm.com>
1399 * config/arm/arm.h (TARGET_DOTPROD): New.
1400 * config/arm/arm.c (arm_arch_dotprod): New.
1401 (arm_option_reconfigure_globals): Add arm_arch_dotprod.
1402 * config/arm/arm-c.c (__ARM_FEATURE_DOTPROD): New.
1403 * config/arm/arm-cpus.in (armv8.2-a): Enabled +dotprod.
1404 (feature dotprod, group dotprod, ALL_SIMD_INTERNAL): New.
1405 (ALL_FPU_INTERNAL): Use ALL_SIMD_INTERNAL.
1406 * config/arm/t-multilib (v8_2_a_simd_variants): Add dotprod.
1407 * doc/invoke.texi (armv8.2-a): Document dotprod
1409 2017-10-14 Jan Hubicka <hubicka@ucw.cz>
1411 * i386.c (ix86_vec_cost): New function.
1412 (ix86_rtx_costs): Handle vector operations better.
1413 * i386.h (struct processor_costs): Add sse_op, fmasd, fmass.
1414 * x86-tune-costs.h: Add new costs to all tables.
1416 2017-10-14 Jan Hubicka <hubicka@ucw.cz>
1418 * i386.c (ix86_rtx_costs): Make difference between x87 and SSE
1420 * i386.h (struct processor_costs): Add addss, mulss, mulsd, divss,
1421 divsd, sqrtss and sqrtsd
1422 * x86-tune-costs.h: Add new entries to all costs.
1423 (znver1_cost): Fix to match real instruction latencies.
1425 2017-10-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1426 Michael Collison <michael.collison@arm.com>
1428 * compare-elim.c: Include emit-rtl.h.
1429 (can_merge_compare_into_arith): New function.
1430 (try_validate_parallel): Likewise.
1431 (try_merge_compare): Likewise.
1432 (try_eliminate_compare): Call the above when no previous clobber
1434 (execute_compare_elim_after_reload): Add DF_UD_CHAIN and DF_DU_CHAIN
1437 2017-10-14 Jakub Jelinek <jakub@redhat.com>
1441 * tree-ssa-phiopt.c (value_replacement): Comment fix. Handle
1442 up to 2 preparation statements for ASSIGN in MIDDLE_BB.
1446 * tree-ssa-forwprop.c (simplify_rotate): Allow def_arg1[N]
1447 to be any operand_equal_p operands. For & (B - 1) require
1448 B to be power of 2. Recognize
1449 (X << (Y & (B - 1))) | (X >> ((-Y) & (B - 1))) and similar patterns.
1451 2017-10-14 Uros Bizjak <ubizjak@gmail.com>
1454 * optabs.c (expand_memory_blockage): Fix call of
1455 targetm.have_memory_blockage.
1457 2017-10-14 Jakub Jelinek <jakub@redhat.com>
1460 * config.gcc (*-*-solaris2*, i[34567]86-*-cygwin*,
1461 x86_64-*-cygwin*, i[34567]86-*-mingw* | x86_64-*-mingw*): Append
1462 objects to extra_objs instead of overwriting it.
1464 2017-10-14 Uros Bizjak <ubizjak@gmail.com>
1466 * config/i386/sync.md (FILD_ATOMIC/FIST_ATOMIC FP load peephole2):
1467 Use any_fp_register_operand as operand[3] predicate. Simplify
1468 equality test for operands[2] and operands[4] memory location.
1469 (LDX_ATOMIC/STX_ATOMIC FP load peephole2): Ditto.
1470 (FILD_ATOMIC/FIST_ATOMIC FP load peephole2 with mem blockage): New.
1471 (LDX_ATOMIC/LDX_ATOMIC FP load peephole2 with mem blockage): Ditto.
1472 (FILD_ATOMIC/FIST_ATOMIC FP store peephole2): Use
1473 any_fp_register_operand as operand[1] predicate. Simplify
1474 equality test for operands[0] and operands[3] memory location.
1475 (LDX_ATOMIC/STX_ATOMIC FP store peephole2): Ditto.
1476 (FILD_ATOMIC/FIST_ATOMIC FP store peephole2 with mem blockage): New.
1477 (LDX_ATOMIC/LDX_ATOMIC FP storepeephole2 with mem blockage): Ditto.
1479 2017-10-14 Uros Bizjak <ubizjak@gmail.com>
1481 * target-insns.def: Add memory_blockage.
1482 * optabs.c (expand_memory_blockage): New function.
1483 (expand_asm_memory_barrier): Rename ...
1484 (expand_asm_memory_blockage): ... to this.
1485 (expand_mem_thread_fence): Call expand_memory_blockage
1486 instead of expand_asm_memory_barrier.
1487 (expand_mem_singnal_fence): Ditto.
1488 (expand_atomic_load): Ditto.
1489 (expand_atomic_store): Ditto.
1490 * doc/md.texi (Standard Pattern Names For Generation):
1491 Document memory_blockage instruction pattern.
1493 2017-10-13 Sebastian Perta <sebastian.perta@renesas.com>
1495 * config/rl78/rl78.c (rl78_emit_libcall): New function.
1496 * config/rl78/rl78-protos.h (rl78_emit_libcall): New function.
1497 * config/rl78/rl78.md: New define_expand "adddi3".
1499 2017-10-13 Jan Hubicka <hubicka@ucw.cz>
1501 * cfghooks.c (verify_flow_info): Disable check that all probabilities
1504 2017-10-13 Jeff Law <law@redhat.com>
1506 * tree-ssa-reassoc.c (reassociate_bb): Clarify code slighly.
1508 2017-10-13 Jakub Jelinek <jakub@redhat.com>
1511 * internal-fn.c (expand_mul_overflow): If both operands have
1512 the same highpart of -1 or 0 and the topmost bit of lowpart
1513 is different, overflow is if res <= 0 rather than res < 0.
1515 2017-10-13 Pat Haugen <pthaugen@us.ibm.com>
1517 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Remove
1518 TARGET_P9_VECTOR code for unaligned_load case.
1520 2017-10-13 Jan Hubicka <hubicka@ucw.cz>
1522 * cfghooks.c (verify_flow_info): Check that edge probabilities are set.
1524 2017-10-13 Nathan Sidwell <nathan@acm.org>
1526 * tree-core.h (tree_contains_struct): Make bool.
1527 * tree.c (tree_contains_struct): Likewise.
1528 * tree.h (MARK_TS_BASE): Remove do ... while (0) idiom.
1529 (MARK_TS_TYPED, MARK_TS_COMMON, MARK_TS_TYPE_COMMON,
1530 MARK_TS_TYPE_WITH_LANG_SPECIFIC, MARK_TS_DECL_MINIMAL,
1531 MARK_TS_DECL_COMMON, MARK_TS_DECL_WRTL, MARK_TS_DECL_WITH_VIS,
1532 MARK_TS_DECL_NON_COMMON): Likewise, use comma operator.
1534 2017-10-13 Richard Biener <rguenther@suse.de>
1536 * graphite-isl-ast-to-gimple.c
1537 (translate_isl_ast_to_gimple::get_rename_from_scev): Remove unused
1538 parameters and dominance check.
1539 (translate_isl_ast_to_gimple::graphite_copy_stmts_from_block): Adjust.
1540 (translate_isl_ast_to_gimple::copy_bb_and_scalar_dependences): Likewise.
1541 (translate_isl_ast_to_gimple::graphite_regenerate_ast_isl):
1542 Do not update SSA form here or do intermediate IL verification.
1543 * graphite.c: Include tree-ssa.h and tree-into-ssa.h.
1544 (graphite_initialize): Remove check on the number of loops in
1545 the function and inline into graphite_transform_loops.
1546 (graphite_finalize): Inline into graphite_transform_loops.
1547 (graphite_transform_loops): Perform SSA update and IL verification
1549 * params.def (PARAM_GRAPHITE_MIN_LOOPS_PER_FUNCTION): Remove.
1551 2017-10-13 Richard Biener <rguenther@suse.de>
1553 * graphite-isl-ast-to-gimple.c (max_mode_int_precision,
1554 graphite_expression_type_precision): Avoid global constructor
1556 (translate_isl_ast_to_gimple::translate_isl_ast_to_gimple): Here.
1557 (translate_isl_ast_to_gimple::graphite_expr_type): Add type member.
1558 (translate_isl_ast_to_gimple::translate_isl_ast_node_for): Use it.
1559 (translate_isl_ast_to_gimple::build_iv_mapping): Likewise.
1560 (translate_isl_ast_to_gimple::graphite_create_new_guard): Likewise.
1561 * graphite-sese-to-poly.c (build_original_schedule): Return nothing.
1563 2017-10-13 H.J. Lu <hongjiu.lu@intel.com>
1566 * config/i386/i386.h (ix86_red_zone_size): New.
1567 * config/i386/i386.md (push peephole2s): Replace
1568 "!ix86_using_red_zone ()" with "ix86_red_zone_size == 0".
1570 2017-10-13 Richard Sandiford <richard.sandiford@linaro.org>
1571 Alan Hayward <alan.hayward@arm.com>
1572 David Sherwood <david.sherwood@arm.com>
1574 * combine.c (can_change_dest_mode): Reject changes in
1575 REGMODE_NATURAL_SIZE.
1577 2017-10-13 Richard Sandiford <richard.sandiford@linaro.org>
1578 Alan Hayward <alan.hayward@arm.com>
1579 David Sherwood <david.sherwood@arm.com>
1581 * cfgexpand.c (expand_debug_expr): Use GET_MODE_UNIT_BITSIZE.
1582 (expand_debug_source_expr): Likewise.
1583 * combine.c (combine_simplify_rtx): Likewise.
1584 * cse.c (fold_rtx): Likewise.
1585 * fwprop.c (canonicalize_address): Likewise.
1586 * targhooks.c (default_shift_truncation_mask): Likewise.
1588 2017-10-13 Richard Sandiford <richard.sandiford@linaro.org>
1589 Alan Hayward <alan.hayward@arm.com>
1590 David Sherwood <david.sherwood@arm.com>
1592 * optabs.c (add_equal_note): Use GET_MODE_UNIT_SIZE.
1593 (widened_mode): Likewise.
1594 (expand_unop): Likewise.
1595 * ree.c (transform_ifelse): Likewise.
1596 (merge_def_and_ext): Likewise.
1597 (combine_reaching_defs): Likewise.
1598 * simplify-rtx.c (simplify_unary_operation_1): Likewise.
1600 2017-10-13 Richard Sandiford <richard.sandiford@linaro.org>
1601 Alan Hayward <alan.hayward@arm.com>
1602 David Sherwood <david.sherwood@arm.com>
1604 * caller-save.c (replace_reg_with_saved_mem): Use byte_lowpart_offset.
1605 * combine.c (gen_lowpart_for_combine): Likewise.
1606 * dwarf2out.c (rtl_for_decl_location): Likewise.
1607 * final.c (alter_subreg): Likewise.
1608 * rtlhooks.c (gen_lowpart_general): Likewise.
1609 (gen_lowpart_if_possible): Likewise.
1611 2017-10-13 Richard Sandiford <richard.sandiford@linaro.org>
1612 Alan Hayward <alan.hayward@arm.com>
1613 David Sherwood <david.sherwood@arm.com>
1615 * calls.c (expand_call): Use subreg_lowpart_offset.
1616 * cse.c (cse_insn): Likewise.
1617 * regcprop.c (copy_value): Likewise.
1618 (copyprop_hardreg_forward_1): Likewise.
1620 2017-10-13 Jakub Jelinek <jakub@redhat.com>
1623 * config/i386/i386.md (addqi_ext_1, andqi_ext_1,
1624 *andqi_ext_1_cc, *<code>qi_ext_1, *xorqi_ext_1_cc): Change
1625 =Q constraints to +Q and into insn condition add check
1626 that operands[0] and operands[1] are equal.
1627 (*addqi_ext_2, *andqi_ext_2, *<code>qi_ext_2): Change
1628 =Q constraints to +Q and into insn condition add check
1629 that operands[0] is equal to either operands[1] or operands[2].
1632 * fold-const.c (fold_binary_loc) <bit_rotate>: Code cleanups,
1633 instead of handling MINUS_EXPR twice (once for each argument),
1634 canonicalize operand order and handle just once, use rtype where
1635 possible. Handle (A << B) | (A >> (-B & (Z - 1))).
1638 * config/i386/ia32intrin.h (__rold, __rord, __rolq, __rorq): Allow
1639 any values of __C while still being pattern recognizable as a simple
1642 2017-10-13 Richard Biener <rguenther@suse.de>
1644 PR tree-optimization/82451
1646 2017-10-02 Richard Biener <rguenther@suse.de>
1648 PR tree-optimization/82355
1649 * graphite-isl-ast-to-gimple.c (build_iv_mapping): Also build
1650 a mapping for the enclosing loop but avoid generating one for
1652 (copy_bb_and_scalar_dependences): Remove premature codegen
1653 error on PHIs in blocks duplicated into multiple places.
1654 * graphite-scop-detection.c
1655 (scop_detection::stmt_has_simple_data_refs_p): For a loop not
1656 in the region use it as loop and nest to analyze the DR in.
1657 (try_generate_gimple_bb): Likewise.
1658 * graphite-sese-to-poly.c (extract_affine_chrec): Adjust.
1659 (add_loop_constraints): For blocks in a loop not in the region
1660 create a dimension with a single iteration.
1661 * sese.h (gbb_loop_at_index): Remove assert.
1663 * cfgloop.c (loop_preheader_edge): For the loop tree root
1664 return the single successor of the entry block.
1665 * graphite-isl-ast-to-gimple.c (graphite_regenerate_ast_isl):
1666 Reset the SCEV hashtable and niters.
1667 * graphite-scop-detection.c
1668 (scop_detection::graphite_can_represent_scev): Add SCOP parameter,
1669 assert that we only have POLYNOMIAL_CHREC that vary in loops
1670 contained in the region.
1671 (scop_detection::graphite_can_represent_expr): Adjust.
1672 (scop_detection::stmt_has_simple_data_refs_p): For loops
1673 not in the region set loop to NULL. The nest is now the
1674 entry edge to the region.
1675 (try_generate_gimple_bb): Likewise.
1676 * sese.c (scalar_evolution_in_region): Adjust for
1677 instantiate_scev change.
1678 * tree-data-ref.h (graphite_find_data_references_in_stmt):
1679 Make nest parameter the edge into the region.
1680 (create_data_ref): Likewise.
1681 * tree-data-ref.c (dr_analyze_indices): Make nest parameter an
1682 entry edge into a region and adjust instantiate_scev calls.
1683 (create_data_ref): Likewise.
1684 (graphite_find_data_references_in_stmt): Likewise.
1685 (find_data_references_in_stmt): Pass the loop preheader edge
1686 from the nest argument.
1687 * tree-scalar-evolution.h (instantiate_scev): Make instantiate_below
1688 parameter the edge into the region.
1689 (instantiate_parameters): Use the loop preheader edge as entry.
1690 * tree-scalar-evolution.c (analyze_scalar_evolution): Handle
1692 (get_instantiated_value_entry): Make instantiate_below parameter
1693 the edge into the region.
1694 (instantiate_scev_name): Likewise. Adjust dominance checks,
1695 when we cannot use loop-based instantiation instantiate by
1696 walking use-def chains.
1697 (instantiate_scev_poly): Adjust.
1698 (instantiate_scev_binary): Likewise.
1699 (instantiate_scev_convert): Likewise.
1700 (instantiate_scev_not): Likewise.
1701 (instantiate_array_ref): Remove.
1702 (instantiate_scev_3): Likewise.
1703 (instantiate_scev_2): Likewise.
1704 (instantiate_scev_1): Likewise.
1705 (instantiate_scev_r): Do not blindly handle N-operand trees.
1706 Do not instantiate array-refs. Handle all constants and invariants.
1707 (instantiate_scev): Make instantiate_below parameter
1708 the edge into the region.
1709 (resolve_mixers): Use the loop preheader edge for the region
1710 parameter to instantiate_scev_r.
1711 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Adjust.
1713 2017-10-13 Richard Biener <rguenther@suse.de>
1715 PR tree-optimization/82525
1716 * graphite-isl-ast-to-gimple.c
1717 (translate_isl_ast_to_gimple::widest_int_from_isl_expr_int): Split
1719 (translate_isl_ast_to_gimple::gcc_expression_from_isl_expr_int): Here.
1720 Fail code generation when we cannot represent the isl integer.
1721 (binary_op_to_tree): Elide modulo operations that are no-ops
1722 in the type we code generate. Remove now superfluous code
1725 2017-10-13 Richard Biener <rguenther@suse.de>
1727 * graphite-scop-detection.c (loop_ivs_can_be_represented): Remove.
1728 (scop_detection::harmful_loop_in_region): Remove premature
1729 IV type restriction.
1730 (scop_detection::graphite_can_represent_scev): We can handle
1731 pointer IVs just fine.
1733 2017-10-13 Alan Modra <amodra@gmail.com>
1735 * doc/extend.texi (Extended Asm <Clobbers>): Rename to
1736 "Clobbers and Scratch Registers". Add paragraph on
1737 alternative to clobbers for scratch registers and OpenBLAS
1740 2017-10-13 Alan Modra <amodra@gmail.com>
1742 * doc/extend.texi (Clobbers): Correct vax example. Delete old
1743 example of a memory input for a string of known length. Move
1744 commentary out of table. Add a number of new examples
1745 covering array memory inputs.
1747 2017-10-12 Martin Liska <mliska@suse.cz>
1749 PR tree-optimization/82493
1750 * sbitmap.c (bitmap_bit_in_range_p): Fix the implementation.
1751 (test_range_functions): New function.
1752 (sbitmap_c_tests): Likewise.
1753 * selftest-run-tests.c (selftest::run_tests): Run new tests.
1754 * selftest.h (sbitmap_c_tests): New function.
1756 * tree-ssa-dse.c (live_bytes_read): Fix thinko.
1758 2017-10-12 Michael Meissner <meissner@linux.vnet.ibm.com>
1760 * config/rs6000/amo.h: Fix spacing issue.
1762 2017-10-12 Jakub Jelinek <jakub@redhat.com>
1765 * config/i386/i386.md (*ashl<mode>3_mask_1,
1766 *<shift_insn><mode>3_mask_1, *<rotate_insn><mode>3_mask_1,
1767 *<btsc><mode>_mask_1, *btr<mode>_mask_1): New define_insn_and_split
1770 2017-10-12 Jan Hubicka <hubicka@ucw.cz>
1772 * profile-count.h (safe_scale_64bit): Fix GCC4.x path.
1773 (profile_probability): Set max_probability
1774 to (uint32_t) 1 << (n_bits - 2) and update accessors to avoid overlfows
1776 * profile-count.c (profile_probability::differs_from_p): Do not
1777 rely on max_probaiblity == 10000
1779 2017-10-12 Jeff Law <law@redhat.com>
1781 * tree-ssa-dse.c (valid_ao_ref_for_dse): Reject ao_refs with
1784 2017-10-12 Martin Sebor <msebor@redhat.com>
1788 * cgraphunit.c (maybe_diag_incompatible_alias): New function.
1789 (handle_alias_pairs): Call it.
1790 * common.opt (-Wattribute-alias): New option.
1791 * doc/extend.texi (ifunc attribute): Discuss C++ specifics.
1792 * doc/invoke.texi (-Wattribute-alias): Document.
1794 2017-10-12 Vladimir Makarov <vmakarov@redhat.com>
1797 2017-10-11 Vladimir Makarov <vmakarov@redhat.com>
1799 * lra.c (collect_non_operand_hard_regs): Don't ignore operator
1801 * lra-lives.c (bb_killed_pseudos, bb_gen_pseudos): Move up.
1802 (make_hard_regno_born, make_hard_regno_dead): Update
1803 bb_killed_pseudos and bb_gen_pseudos.
1805 2017-10-12 Jan Hubicka <hubicka@ucw.cz>
1807 * config/i386/x86-tune-sched.c (ix86_adjust_cost): Fix Zen support.
1809 2017-10-12 Uros Bizjak <ubizjak@gmail.com>
1811 * config/alpha/alpha.c (alpha_split_conditional_move):
1812 Use std::swap instead of manually swapping.
1813 (alpha_stdarg_optimize_hook): Ditto.
1814 (alpha_canonicalize_comparison): Ditto.
1816 2017-10-12 Bin Cheng <bin.cheng@arm.com>
1818 * tree-loop-distribution.c (struct builtin_info): New struct.
1819 (struct partition): Refactor fields into struct builtin_info.
1820 (partition_free): Free struct builtin_info.
1821 (build_size_arg_loc, build_addr_arg_loc): Delete.
1822 (generate_memset_builtin, generate_memcpy_builtin): Get memory range
1823 information from struct builtin_info.
1824 (find_single_drs): New function refactored from classify_partition.
1825 Also moved builtin validity checks to this function.
1826 (compute_access_range, alloc_builtin): New functions.
1827 (classify_builtin_st, classify_builtin_ldst): New functions.
1828 (classify_partition): Refactor code into functions find_single_drs,
1829 classify_builtin_st and classify_builtin_ldst.
1830 (distribute_loop): Don't do runtime alias check when distributing
1832 (find_seed_stmts_for_distribution): New function.
1833 (pass_loop_distribution::execute): Refactor code finding seed
1834 stmts into above function. Support distribution for the innermost
1835 two-level loop nest. Adjust dump information.
1837 2017-10-12 Bin Cheng <bin.cheng@arm.com>
1839 * tree-loop-distribution.c: Adjust the general comment.
1840 (NUM_PARTITION_THRESHOLD): New macro.
1841 (ssa_name_has_uses_outside_loop_p): Support loop nest distribution.
1842 (classify_partition): Skip builtin pattern of loop nest's inner loop.
1843 (merge_dep_scc_partitions): New parameter ignore_alias_p and use it
1844 in call to build_partition_graph.
1845 (finalize_partitions): New parameter. Make loop distribution more
1846 conservative by fusing more partitions.
1847 (distribute_loop): Don't do runtime alias check in case of loop nest
1849 (find_seed_stmts_for_distribution): New function.
1850 (prepare_perfect_loop_nest): New function.
1851 (pass_loop_distribution::execute): Refactor code finding seed stmts
1852 and loop nest into above functions. Support loop nest distribution.
1853 Adjust dump information accordingly.
1855 2017-10-12 Bin Cheng <bin.cheng@arm.com>
1857 * tree-loop-distribution.c (break_alias_scc_partitions): Add comment
1858 and set PTYPE_SEQUENTIAL for merged partition.
1860 2017-10-12 Richard Biener <rguenther@suse.de>
1862 PR tree-optimization/69728
1864 2017-09-19 Richard Biener <rguenther@suse.de>
1866 PR tree-optimization/69728
1867 * graphite-sese-to-poly.c (schedule_error): New global.
1868 (add_loop_schedule): Handle empty domain by failing the
1870 (build_original_schedule): Handle schedule_error.
1872 * graphite-sese-to-poly.c (add_loop_schedule): Handle empty
1873 domain by returning an unchanged schedule.
1875 2017-10-12 Jakub Jelinek <jakub@redhat.com>
1877 * genrecog.c (validate_pattern): For VEC_SELECT verify that
1878 CONST_INT selectors are 0 to GET_MODE_NUNITS (imode) - 1.
1880 2017-10-12 Aldy Hernandez <aldyh@redhat.com>
1882 * Makefile.in (TAGS): Merge all the *.def files into one pattern.
1885 2017-10-12 Jakub Jelinek <jakub@redhat.com>
1888 * expr.c (store_field): Don't optimize away bitsize == 0 store
1889 from CALL_EXPR with addressable return type.
1891 2017-10-11 Segher Boessenkool <segher@kernel.crashing.org>
1893 * config/rs6000/rs6000.h (TARGET_ISEL64): Delete.
1894 * config/rs6000/rs6000.md (sel): Delete mode attribute.
1895 (mov<mode>cc, isel_signed_<mode>, isel_unsigned_<mode>,
1896 *isel_reversed_signed_<mode>, *isel_reversed_unsigned_<mode>): Use
1897 TARGET_ISEL instead of TARGET_ISEL<sel>.
1899 2017-10-11 David Edelsohn <dje.gcc@gmail.com>
1901 * config/rs6000/rs6000.c
1902 (rs6000_xcoff_asm_output_aligned_decl_common): Test for NULL decl.
1904 2017-10-11 Segher Boessenkool <segher@kernel.crashing.org>
1906 * config/rs6000/predicates.md (zero_constant, all_ones_constant):
1908 (reg_or_cint_operand): Fix comment.
1909 (reg_or_zero_operand): New predicate.
1910 * config/rs6000/rs6000-protos.h (output_isel): Delete.
1911 * config/rs6000/rs6000.c (output_isel): Delete.
1912 * config/rs6000/rs6000.md (isel_signed_<mode>): Use reg_or_zero_operand
1913 instead of reg_or_cint_operand. Output instruction directly (not via
1915 (isel_unsigned_<mode>): Ditto.
1916 (*isel_reversed_signed_<mode>): Use reg_or_zero_operand instead of
1917 gpc_reg_operand. Add an instruction alternative for this. Output
1918 instruction directly.
1919 (*isel_reversed_unsigned_<mode>): Ditto.
1921 2017-10-11 Uros Bizjak <ubizjak@gmail.com>
1923 * config/i386/i386.c (ix86_canonicalize_comparison): New function.
1924 (TARGET_CANONICALIZE_COMPARISON): Define.
1926 2017-10-11 Qing Zhao <qing.zhao@oracle.com>
1929 * config/aarch64/aarch64.c (aarch64_load_symref_appropriately):
1930 Check whether the dest is REG before adding REG_EQUIV note.
1932 2017-10-11 Vladimir Makarov <vmakarov@redhat.com>
1935 * lra.c (collect_non_operand_hard_regs): Don't ignore operator
1937 * lra-lives.c (bb_killed_pseudos, bb_gen_pseudos): Move up.
1938 (make_hard_regno_born, make_hard_regno_dead): Update
1939 bb_killed_pseudos and bb_gen_pseudos.
1941 2017-10-11 Nathan Sidwell <nathan@acm.org>
1943 * incpath.h (enum incpath_kind): Name enum, prefix values.
1944 (add_path, add_cpp_dir_path, get_added_cpp_dirs): Use incpath_kind.
1945 * incpath.c (heads, tails): Use INC_MAX.
1946 (add_env_var_paths, add_standard_paths): Use incpath_kind.
1947 (merge_include_chains, split_quote_chain,
1948 register_include_chains): Update incpath_kind names.
1949 (add_cpp_dir_path, add_path, get_added_cpp_dirs): Use incpath_kind.
1950 * config/darwin-c.c (add_system_framework_path): Update incpath_kind
1952 (add_framework_path, darwin_register_objc_includes): Likewise.
1953 * config/vms/vms-c.c (vms_c_register_includes): Likewise.
1955 2017-10-11 Uros Bizjak <ubizjak@gmail.com>
1957 * config/i386/i386.md (*cmp<X87MODEF:mode>_<SWI24:mode>_i387):
1958 Do not use float_operator operator predicate.
1959 (*cmp<X87MODEF:mode>_<SWI24:mode>_cc_i387): Ditto.
1960 * config/i386/predicates.md (float_operator): Remove predicate.
1962 2017-10-11 Uros Bizjak <ubizjak@gmail.com>
1964 * config/i386/i386.md (*jcc<mode>_0_i387): Remove insn pattern.
1965 (*jccxf_i387): Ditto.
1966 (*jcc<mode>_i387): Ditto.
1967 (*jccu<mode>_i387): Ditto.
1968 (*jcc<X87MODEF:mode>_<SWI24:mode>_i387): Ditto.
1969 (*jcc_*_i387 splitters): Remove.
1970 * config/i386/i386-protos.h (ix86_split_fp_branch): Remove prototype.
1971 * config/i386/i386.c (ix86_split_fp_branch): Remove.
1972 * config/i386/predicates.md (ix86_swapped_fp_comparison_operator):
1975 2017-10-11 Jan Hubicka <hubicka@ucw.cz>
1977 * profile-count.h (slow_safe_scale_64bit): New function.
1978 (safe_scale_64bit): New inline.
1979 (profile_count::max_safe_multiplier): Remove; use safe_scale_64bit.
1980 * profile-count.c: Include wide-int.h
1981 (slow_safe_scale_64bit): New.
1983 2017-10-11 Nathan Sidwell <nathan@acm.org>
1985 * tree.h (DECL_ASSEMBLER_NAME_SET_P): Don't check
1986 HAS_DECL_ASSEMBLER_NAME_P.
1987 * gimple-expr.c (gimple_decl_printable_name: Check
1988 HAS_DECL_ASSEMBLER_NAME_P too.
1989 * ipa-utils.h (type_in_anonymous_namespace_p): Check
1990 DECL_ASSEMBLER_NAME_SET_P of TYPE_NAME.
1991 (odr_type_p): No need to assert TYPE_NAME is a TYPE_DECL.
1992 * passes.c (rest_of_decl_compilation): Check
1993 HAS_DECL_ASSEMBLER_NAME_P too.
1994 * recog.c (verify_changes): Likewise.
1995 * tree-pretty-print.c (dump_decl_name): Likewise.
1996 * tree-ssa-structalias.c (alias_get_name): Likewise. Reimplement.
1998 * tree.h (DECL_ASSEMBLER_NAME_RAW): New.
1999 (SET_DECL_ASSEMBLER_NAME): Use it.
2000 (DECL_ASSEMBLER_NAME_SET_P): Likewise.
2001 (COPY_DECL_ASSEMBLER_NAME): Likewise.
2002 * tree.c (decl_assembler_name): Use DECL_ASSEMBLER_NAME_RAW.
2004 2017-10-11 Jan Hubicka <hubicka@ucw.cz>
2006 * config.gcc (i386, x86_64): Add extra objects.
2007 * config/i386/i386-protos.h (ix86_rip_relative_addr_p): Declare.
2008 (ix86_min_insn_size): Declare.
2009 (ix86_issue_rate): Declare.
2010 (ix86_adjust_cost): Declare.
2011 (ia32_multipass_dfa_lookahead): Declare.
2012 (ix86_macro_fusion_p): Declare.
2013 (ix86_macro_fusion_pair_p): Declare.
2014 (ix86_bd_has_dispatch): Declare.
2015 (ix86_bd_do_dispatch): Declare.
2016 (ix86_core2i7_init_hooks): Declare.
2017 (ix86_atom_sched_reorder): Declare.
2018 * config/i386/i386.c Move all CPU cost tables to x86-tune-costs.h.
2019 (COSTS_N_BYTES): Move to x86-tune-costs.h.
2020 (DUMMY_STRINGOP_ALGS):Move to x86-tune-costs.h.
2021 (rip_relative_addr_p): Rename to ...
2022 (ix86_rip_relative_addr_p): ... this one; export.
2023 (memory_address_length): Update.
2024 (ix86_issue_rate): Move to x86-tune-sched.c.
2025 (ix86_flags_dependent): Move to x86-tune-sched.c.
2026 (ix86_agi_dependent): Move to x86-tune-sched.c.
2027 (exact_dependency_1): Move to x86-tune-sched.c.
2028 (exact_store_load_dependency): Move to x86-tune-sched.c.
2029 (ix86_adjust_cost): Move to x86-tune-sched.c.
2030 (ia32_multipass_dfa_lookahead): Move to x86-tune-sched.c.
2031 (ix86_macro_fusion_p): Move to x86-tune-sched.c.
2032 (ix86_macro_fusion_pair_p): Move to x86-tune-sched.c.
2033 (do_reorder_for_imul): Move to x86-tune-sched-atom.c.
2034 (swap_top_of_ready_list): Move to x86-tune-sched-atom.c.
2035 (ix86_sched_reorder): Move to x86-tune-sched-atom.c.
2036 (core2i7_first_cycle_multipass_init): Move to x86-tune-sched-core.c.
2037 (core2i7_dfa_post_advance_cycle): Move to x86-tune-sched-core.c.
2038 (min_insn_size): Rename to ...
2039 (ix86_min_insn_size): ... this one; export.
2040 (core2i7_first_cycle_multipass_begin): Move to x86-tune-sched-core.c.
2041 (core2i7_first_cycle_multipass_issue): Move to x86-tune-sched-core.c.
2042 (core2i7_first_cycle_multipass_backtrack): Move to
2043 x86-tune-sched-core.c.
2044 (core2i7_first_cycle_multipass_end): Move to x86-tune-sched-core.c.
2045 (core2i7_first_cycle_multipass_fini): Move to x86-tune-sched-core.c.
2046 (ix86_sched_init_global): Break up logic to ix86_core2i7_init_hooks.
2047 (ix86_avoid_jump_mispredicts): Update.
2048 (TARGET_SCHED_DISPATCH): Move to ix86-tune-sched-bd.c.
2049 (TARGET_SCHED_DISPATCH_DO): Move to ix86-tune-sched-bd.c.
2050 (TARGET_SCHED_REORDER): Move to ix86-tune-sched-bd.c.
2051 (DISPATCH_WINDOW_SIZE): Move to ix86-tune-sched-bd.c.
2052 (MAX_DISPATCH_WINDOWS): Move to ix86-tune-sched-bd.c.
2053 (MAX_INSN): Move to ix86-tune-sched-bd.c.
2054 (MAX_IMM): Move to ix86-tune-sched-bd.c.
2055 (MAX_IMM_SIZE): Move to ix86-tune-sched-bd.c.
2056 (MAX_IMM_32): Move to ix86-tune-sched-bd.c.
2057 (MAX_IMM_64): Move to ix86-tune-sched-bd.c.
2058 (MAX_LOAD): Move to ix86-tune-sched-bd.c.
2059 (MAX_STORE): Move to ix86-tune-sched-bd.c.
2060 (BIG): Move to ix86-tune-sched-bd.c.
2061 (enum dispatch_group): Move to ix86-tune-sched-bd.c.
2062 (enum insn_path): Move to ix86-tune-sched-bd.c.
2063 (get_mem_group): Move to ix86-tune-sched-bd.c.
2064 (is_cmp): Move to ix86-tune-sched-bd.c.
2065 (dispatch_violation): Move to ix86-tune-sched-bd.c.
2066 (is_branch): Move to ix86-tune-sched-bd.c.
2067 (is_prefetch): Move to ix86-tune-sched-bd.c.
2068 (init_window): Move to ix86-tune-sched-bd.c.
2069 (allocate_window): Move to ix86-tune-sched-bd.c.
2070 (init_dispatch_sched): Move to ix86-tune-sched-bd.c.
2071 (is_end_basic_block): Move to ix86-tune-sched-bd.c.
2072 (process_end_window): Move to ix86-tune-sched-bd.c.
2073 (allocate_next_window): Move to ix86-tune-sched-bd.c.
2074 (find_constant): Move to ix86-tune-sched-bd.c.
2075 (get_num_immediates): Move to ix86-tune-sched-bd.c.
2076 (has_immediate): Move to ix86-tune-sched-bd.c.
2077 (get_insn_path): Move to ix86-tune-sched-bd.c.
2078 (get_insn_group): Move to ix86-tune-sched-bd.c.
2079 (count_num_restricted): Move to ix86-tune-sched-bd.c.
2080 (fits_dispatch_window): Move to ix86-tune-sched-bd.c.
2081 (add_insn_window): Move to ix86-tune-sched-bd.c.
2082 (add_to_dispatch_window): Move to ix86-tune-sched-bd.c.
2083 (debug_dispatch_window_file): Move to ix86-tune-sched-bd.c.
2084 (debug_dispatch_window): Move to ix86-tune-sched-bd.c.
2085 (debug_insn_dispatch_info_file): Move to ix86-tune-sched-bd.c.
2086 (debug_ready_dispatch): Move to ix86-tune-sched-bd.c.
2087 (do_dispatch): Move to ix86-tune-sched-bd.c.
2088 (has_dispatch): Move to ix86-tune-sched-bd.c.
2089 * config/i386/t-i386: Add new object files.
2090 * config/i386/x86-tune-costs.h: New file.
2091 * config/i386/x86-tune-sched-atom.c: New file.
2092 * config/i386/x86-tune-sched-bd.c: New file.
2093 * config/i386/x86-tune-sched-core.c: New file.
2094 * config/i386/x86-tune-sched.c: New file.
2096 2017-10-11 Liu Hao <lh_mouse@126.com>
2098 * pretty-print.c [_WIN32] (colorize_init): Remove. Use
2099 the generic version below instead.
2100 (should_colorize): Recognize Windows consoles as terminals
2102 * pretty-print.c [__MINGW32__] (write_all): New function.
2103 [__MINGW32__] (find_esc_head): Likewise.
2104 [__MINGW32__] (find_esc_terminator): Likewise.
2105 [__MINGW32__] (eat_esc_sequence): Likewise.
2106 [__MINGW32__] (mingw_ansi_fputs): New function that handles
2108 (pp_write_text_to_stream): Use mingw_ansi_fputs instead of fputs
2111 2017-10-11 Richard Biener <rguenther@suse.de>
2113 * tree-ssa-loop-niter.c (infer_loop_bounds_from_pointer_arith):
2114 Properly call analyze_scalar_evolution with the loop of the stmt.
2116 2017-10-11 Richard Biener <rguenther@suse.de>
2118 * tree.def (POLYNOMIAL_CHREC): Remove CHREC_VARIABLE tree operand.
2119 * tree-core.h (tree_base): Add chrec_var union member.
2120 * tree.h (CHREC_VAR): Remove.
2121 (CHREC_LEFT, CHREC_RIGHT, CHREC_VARIABLE): Adjust.
2122 * tree-chrec.h (build_polynomial_chrec): Adjust.
2123 * tree-chrec.c (reset_evolution_in_loop): Use build_polynomial_chrec.
2124 * tree-pretty-print.c (dump_generic_node): Use CHREC_VARIABLE.
2126 2017-10-11 Marc Glisse <marc.glisse@inria.fr>
2128 * fold-const.c (fold_binary_loc) [X +- Y CMP X]: Move ...
2129 * match.pd: ... here.
2130 ((T) X == (T) Y): Relax condition.
2132 2017-10-11 Bin Cheng <bin.cheng@arm.com>
2134 PR tree-optimization/82472
2135 * tree-loop-distribution.c (sort_partitions_by_post_order): Refine
2137 (break_alias_scc_partitions): Update postorder number.
2139 2017-10-11 Martin Liska <mliska@suse.cz>
2142 * opts.c (parse_no_sanitize_attribute): Do not use error_value
2144 * opts.h (parse_no_sanitize_attribute): Remove last argument.
2146 2017-10-11 Martin Liska <mliska@suse.cz>
2148 * print-rtl.c (print_insn): Move declaration of idbuf
2149 to same scope as name.
2151 2017-10-11 Martin Liska <mliska@suse.cz>
2156 * sanopt.c (sanitize_rewrite_addressable_params): Do not handle
2159 2017-10-11 Martin Liska <mliska@suse.cz>
2162 * sanopt.c (sanitize_rewrite_addressable_params): Do not handle
2165 2017-10-11 Adhemerval Zanella <adhemerval.zanella@linaro.org>
2167 * config.gcc (default_gnu_indirect_function): Default to yes for
2168 arm*-*-linux* with glibc.
2170 2017-10-11 Richard Biener <rguenther@suse.de>
2172 * tree-scalar-evolution.c (get_scalar_evolution): Handle
2173 default-defs and types we do not want to analyze.
2174 (interpret_loop_phi): Replace unreachable code with an assert.
2175 (compute_scalar_evolution_in_loop): Remove and inline ...
2176 (analyze_scalar_evolution_1): ... here, replacing condition with
2177 what makes the intent clearer. Remove handling of cases
2178 get_scalar_evolution now handles.
2180 2017-10-10 Jim Wilson <wilson@tuliptree.org>
2182 PR rtl-optimization/81434
2183 * haifa-sched.c (prune_ready_list): Init min_cost_group to 0. Update
2184 comment for main loop. In sched_group_found if, also add checks for
2185 pass and min_cost_group.
2187 2017-10-10 Segher Boessenkool <segher@kernel.crashing.org>
2189 * config/rs6000/rs6000.c (TARGET_INSN_COST): New.
2190 (rs6000_insn_cost): New function.
2191 * config/rs6000/rs6000.md (cost): New attribute.
2193 2017-10-10 Jakub Jelinek <jakub@redhat.com>
2194 H.J. Lu <hongjiu.lu@intel.com>
2198 * config/i386/i386.c (ix86_init_mmx_sse_builtins): Add
2199 OPTION_MASK_ISA_MMX for __builtin_ia32_maskmovq,
2200 __builtin_ia32_vec_ext_v4hi and __builtin_ia32_vec_set_v4hi.
2201 (ix86_expand_builtin): Treat OPTION_MASK_ISA_MMX similarly
2202 to OPTION_MASK_ISA_AVX512VL - builtins that have both
2203 OPTION_MASK_ISA_MMX and some other bit set require both
2204 mmx and the ISAs without the mmx bit.
2205 * config/i386/i386-builtin.def (__builtin_ia32_cvtps2pi,
2206 __builtin_ia32_cvttps2pi, __builtin_ia32_cvtpi2ps,
2207 __builtin_ia32_pavgb, __builtin_ia32_pavgw, __builtin_ia32_pmulhuw,
2208 __builtin_ia32_pmaxub, __builtin_ia32_pmaxsw, __builtin_ia32_pminub,
2209 __builtin_ia32_pminsw, __builtin_ia32_psadbw, __builtin_ia32_pmovmskb,
2210 __builtin_ia32_pshufw, __builtin_ia32_cvtpd2pi,
2211 __builtin_ia32_cvttpd2pi, __builtin_ia32_cvtpi2pd,
2212 __builtin_ia32_pmuludq, __builtin_ia32_pabsb, __builtin_ia32_pabsw,
2213 __builtin_ia32_pabsd, __builtin_ia32_phaddw, __builtin_ia32_phaddd,
2214 __builtin_ia32_phaddsw, __builtin_ia32_phsubw, __builtin_ia32_phsubd,
2215 __builtin_ia32_phsubsw, __builtin_ia32_pmaddubsw,
2216 __builtin_ia32_pmulhrsw, __builtin_ia32_pshufb, __builtin_ia32_psignb,
2217 __builtin_ia32_psignw, __builtin_ia32_psignd, __builtin_ia32_movntq,
2218 __builtin_ia32_paddq, __builtin_ia32_psubq, __builtin_ia32_palignr):
2219 Add OPTION_MASK_ISA_MMX.
2221 2017-10-10 Andreas Tobler <andreast@gcc.gnu.org>
2223 * config.gcc (armv7*-*-freebsd*): New target.
2224 (armv6*-*-freebsd*): Remove obsolete TARGET_FREEBSD_ARMv6 define.
2226 2017-10-10 Jan Hubicka <hubicka@ucw.cz>
2228 * x86-tune.def (X86_TUNE_AVOID_FALSE_DEP_FOR_BMI,
2229 X86_TUNE_ADJUST_UNROLL, X86_TUNE_ONE_IF_CONV_INSN): Move to right
2232 2017-10-10 Richard Sandiford <richard.sandiford@linaro.org>
2234 * wide-int.h (wide_int_ref_storage): Make host_dependent_precision
2235 a template parameter.
2236 (WIDE_INT_REF_FOR): Update accordingly.
2237 * tree.h (wi::int_traits <const_tree>): Delete.
2238 (wi::tree_to_widest_ref, wi::tree_to_offset_ref): New typedefs.
2239 (wi::to_widest, wi::to_offset): Use them. Expand commentary.
2240 (wi::tree_to_wide_ref): New typedef.
2241 (wi::to_wide): New function.
2242 * calls.c (get_size_range): Use wi::to_wide when operating on
2244 * cgraph.c (cgraph_node::create_thunk): Likewise.
2245 * config/i386/i386.c (ix86_data_alignment): Likewise.
2246 (ix86_local_alignment): Likewise.
2247 * dbxout.c (stabstr_O): Likewise.
2248 * dwarf2out.c (add_scalar_info, gen_enumeration_type_die): Likewise.
2249 * expr.c (const_vector_from_tree): Likewise.
2250 * fold-const-call.c (host_size_t_cst_p, fold_const_call_1): Likewise.
2251 * fold-const.c (may_negate_without_overflow_p, negate_expr_p)
2252 (fold_negate_expr_1, int_const_binop_1, const_binop)
2253 (fold_convert_const_int_from_real, optimize_bit_field_compare)
2254 (all_ones_mask_p, sign_bit_p, unextend, extract_muldiv_1)
2255 (fold_div_compare, fold_single_bit_test, fold_plusminus_mult_expr)
2256 (pointer_may_wrap_p, expr_not_equal_to, fold_binary_loc)
2257 (fold_ternary_loc, multiple_of_p, fold_negate_const, fold_abs_const)
2258 (fold_not_const, round_up_loc): Likewise.
2259 * gimple-fold.c (gimple_fold_indirect_ref): Likewise.
2260 * gimple-ssa-warn-alloca.c (alloca_call_type_by_arg): Likewise.
2261 (alloca_call_type): Likewise.
2262 * gimple.c (preprocess_case_label_vec_for_gimple): Likewise.
2263 * godump.c (go_output_typedef): Likewise.
2264 * graphite-sese-to-poly.c (tree_int_to_gmp): Likewise.
2265 * internal-fn.c (get_min_precision): Likewise.
2266 * ipa-cp.c (ipcp_store_vr_results): Likewise.
2267 * ipa-polymorphic-call.c
2268 (ipa_polymorphic_call_context::ipa_polymorphic_call_context): Likewise.
2269 * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Likewise.
2270 (ipa_modify_call_arguments): Likewise.
2271 * match.pd: Likewise.
2272 * omp-low.c (scan_omp_1_op, lower_omp_ordered_clauses): Likewise.
2273 * print-tree.c (print_node_brief, print_node): Likewise.
2274 * stmt.c (expand_case): Likewise.
2275 * stor-layout.c (layout_type): Likewise.
2276 * tree-affine.c (tree_to_aff_combination): Likewise.
2277 * tree-cfg.c (group_case_labels_stmt): Likewise.
2278 * tree-data-ref.c (dr_analyze_indices): Likewise.
2279 (prune_runtime_alias_test_list): Likewise.
2280 * tree-dump.c (dequeue_and_dump): Likewise.
2281 * tree-inline.c (remap_gimple_op_r, copy_tree_body_r): Likewise.
2282 * tree-predcom.c (is_inv_store_elimination_chain): Likewise.
2283 * tree-pretty-print.c (dump_generic_node): Likewise.
2284 * tree-scalar-evolution.c (iv_can_overflow_p): Likewise.
2285 (simple_iv_with_niters): Likewise.
2286 * tree-ssa-address.c (addr_for_mem_ref): Likewise.
2287 * tree-ssa-ccp.c (ccp_finalize, evaluate_stmt): Likewise.
2288 * tree-ssa-loop-ivopts.c (constant_multiple_of): Likewise.
2289 * tree-ssa-loop-niter.c (split_to_var_and_offset)
2290 (refine_value_range_using_guard, number_of_iterations_ne_max)
2291 (number_of_iterations_lt_to_ne, number_of_iterations_lt)
2292 (get_cst_init_from_scev, record_nonwrapping_iv)
2293 (scev_var_range_cant_overflow): Likewise.
2294 * tree-ssa-phiopt.c (minmax_replacement): Likewise.
2295 * tree-ssa-pre.c (compute_avail): Likewise.
2296 * tree-ssa-sccvn.c (vn_reference_fold_indirect): Likewise.
2297 (vn_reference_maybe_forwprop_address, valueized_wider_op): Likewise.
2298 * tree-ssa-structalias.c (get_constraint_for_ptr_offset): Likewise.
2299 * tree-ssa-uninit.c (is_pred_expr_subset_of): Likewise.
2300 * tree-ssanames.c (set_nonzero_bits, get_nonzero_bits): Likewise.
2301 * tree-switch-conversion.c (collect_switch_conv_info, array_value_type)
2302 (dump_case_nodes, try_switch_expansion): Likewise.
2303 * tree-vect-loop-manip.c (vect_gen_vector_loop_niters): Likewise.
2304 (vect_do_peeling): Likewise.
2305 * tree-vect-patterns.c (vect_recog_bool_pattern): Likewise.
2306 * tree-vect-stmts.c (vectorizable_load): Likewise.
2307 * tree-vrp.c (compare_values_warnv, vrp_int_const_binop): Likewise.
2308 (zero_nonzero_bits_from_vr, ranges_from_anti_range): Likewise.
2309 (extract_range_from_binary_expr_1, adjust_range_with_scev): Likewise.
2310 (overflow_comparison_p_1, register_edge_assert_for_2): Likewise.
2311 (is_masked_range_test, find_switch_asserts, maybe_set_nonzero_bits)
2312 (vrp_evaluate_conditional_warnv_with_ops, intersect_ranges): Likewise.
2313 (range_fits_type_p, two_valued_val_range_p, vrp_finalize): Likewise.
2314 (evrp_dom_walker::before_dom_children): Likewise.
2315 * tree.c (cache_integer_cst, real_value_from_int_cst, integer_zerop)
2316 (integer_all_onesp, integer_pow2p, integer_nonzerop, tree_log2)
2317 (tree_floor_log2, tree_ctz, mem_ref_offset, tree_int_cst_sign_bit)
2318 (tree_int_cst_sgn, get_unwidened, int_fits_type_p): Likewise.
2319 (get_type_static_bounds, num_ending_zeros, drop_tree_overflow)
2320 (get_range_pos_neg): Likewise.
2321 * ubsan.c (ubsan_expand_ptr_ifn): Likewise.
2322 * config/darwin.c (darwin_mergeable_constant_section): Likewise.
2323 * config/aarch64/aarch64.c (aapcs_vfp_sub_candidate): Likewise.
2324 * config/arm/arm.c (aapcs_vfp_sub_candidate): Likewise.
2325 * config/avr/avr.c (avr_fold_builtin): Likewise.
2326 * config/bfin/bfin.c (bfin_local_alignment): Likewise.
2327 * config/msp430/msp430.c (msp430_attr): Likewise.
2328 * config/nds32/nds32.c (nds32_insert_attributes): Likewise.
2329 * config/powerpcspe/powerpcspe-c.c
2330 (altivec_resolve_overloaded_builtin): Likewise.
2331 * config/powerpcspe/powerpcspe.c (rs6000_aggregate_candidate)
2332 (rs6000_expand_ternop_builtin): Likewise.
2333 * config/rs6000/rs6000-c.c
2334 (altivec_resolve_overloaded_builtin): Likewise.
2335 * config/rs6000/rs6000.c (rs6000_aggregate_candidate): Likewise.
2336 (rs6000_expand_ternop_builtin): Likewise.
2337 * config/s390/s390.c (s390_handle_hotpatch_attribute): Likewise.
2339 2017-10-10 Bin Cheng <bin.cheng@arm.com>
2341 * tree-vect-loop-manip.c (rename_variables_in_bb): Rename PHI nodes
2342 when copying loop nest with only one inner loop.
2344 2017-10-10 Richard Biener <rguenther@suse.de>
2346 * tree-cfgcleanup.c (cleanup_tree_cfg_noloop): Avoid compacting
2347 blocks if SCEV is active.
2348 * tree-scalar-evolution.c (analyze_scalar_evolution_1): Remove
2350 (analyze_scalar_evolution): Handle cached evolutions the obvious way.
2351 (scev_initialize): Assert we are not yet initialized.
2353 2017-10-10 Bin Cheng <bin.cheng@arm.com>
2355 * tree-loop-distribution.c (generate_loops_for_partition): Remove
2356 inner loop's exit stmt by making it always exit the loop, otherwise
2357 we would generate an infinite empty loop.
2359 2017-10-10 Bin Cheng <bin.cheng@arm.com>
2361 * tree-vect-loop-manip.c (slpeel_tree_duplicate_loop_to_edge_cfg): Skip
2362 renaming variables in new preheader if it's deleted.
2364 2017-10-10 Bin Cheng <bin.cheng@arm.com>
2366 * tree-loop-distribution.c (struct partition): Remove unused field
2367 loops of the structure.
2368 (partition_alloc, partition_free): Ditto.
2369 (build_rdg_partition_for_vertex): Ditto.
2371 2017-10-09 Jeff Law <law@redhat.com>
2373 * targhooks.c (default_stack_clash_protection_final_dynamic_probe): Fix
2374 return type to match prototype and documentation.
2376 2010-10-09 Segher Boessenkool <segher@kernel.crashing.org>
2378 * config/rs6000/rs6000.c (processor_costs): Move to ...
2379 * config/rs6000/rs6000.h: ... here.
2380 (rs6000_cost): Declare.
2382 2017-10-09 Eric Botcazou <ebotcazou@adacore.com>
2384 * except.c (setjmp_fn): New global variable.
2385 (init_eh): Initialize it if DONT_USE_BUILTIN_SETJMP is defined.
2386 (sjlj_emit_function_enter): Call it instead of BUILTIN_SETJMP
2387 if DONT_USE_BUILTIN_SETJMP is defined.
2389 2017-10-09 Segher Boessenkool <segher@kernel.crashing.org>
2391 * target.def (insn_cost): New hook.
2392 * doc/tm.texi.in (TARGET_INSN_COST): New hook.
2393 * doc/tm.texi: Regenerate.
2394 * rtlanal.c (insn_cost): Use the new hook.
2396 2017-10-09 Segher Boessenkool <segher@kernel.crashing.org>
2398 * combine.c (combine_validate_cost): Compute the new insn_cost,
2399 not just pattern_cost.
2400 (try_combine): Adjust comment.
2402 2017-10-09 Segher Boessenkool <segher@kernel.crashing.org>
2404 * cfgrtl.c (rtl_account_profile_record): Replace insn_rtx_cost with
2406 * combine.c (uid_insn_cost): Adjust comment.
2407 (combine_validate_cost): Adjust comment. Use pattern_cost instead
2409 (combine_instructions): Use insn_cost instead of insn_rtx_cost.
2410 * dse.c (find_shift_sequence): Ditto.
2411 * ifcvt.c (cheap_bb_rtx_cost_p): Ditto.
2412 (bb_valid_for_noce_process_p): Use pattern_cost.
2413 * rtl.h (insn_rtx_cost): Delete.
2414 (pattern_cost): New prototype.
2415 (insn_cost): New prototype.
2416 * rtlanal.c (insn_rtx_cost): Rename to...
2417 (pattern_cost): ... this.
2420 2017-10-09 Uros Bizjak <ubizjak@gmail.com>
2422 * config/i386/i386.md (*jcc_2): Remove insn pattern.
2423 (*jcc<mode>_0_r_i387): Ditto.
2424 (*jccxf_r_i387): Ditto.
2425 (*jcc<mode>_r_i387): Ditto.
2426 (*jccu<mode>_r_i387): Ditto.
2427 (*jcc<X87MODEF:mode>_<SWI24:mode>_r_i387): Ditto.
2428 (*jcc): Rename from *jcc_1.
2430 2017-10-09 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
2432 * config/rs6000/rs6000-p8swap.c (rs6000_analyze_swaps): Process
2433 deferred rescans after the lvx/stvx recombination pre-pass.
2435 2017-10-09 Michael Meissner <meissner@linux.vnet.ibm.com>
2437 * config/rs6000/amo.h: New include file to provide ISA 3.0 atomic
2438 memory operation instruction support.
2439 * config.gcc (powerpc*-*-*): Include amo.h as an extra header.
2440 (rs6000-ibm-aix[789]*): Likewise.
2441 * doc/extend.texi (PowerPC Atomic Memory Operation Functions):
2442 Document new functions.
2444 2017-10-09 Richard Biener <rguenther@suse.de>
2446 PR tree-optimization/82397
2447 * tree-data-ref.c (data_ref_compare_tree): Make sure to return
2448 equality only for semantically equal trees.
2450 2017-10-09 Richard Biener <rguenther@suse.de>
2452 PR tree-optimization/82449
2453 * sese.c (scev_analyzable_p): Check whether the SCEV is linear.
2454 * tree-chrec.h (evolution_function_is_constant_p): Adjust to
2455 allow constant addresses.
2456 * tree-chrec.c (scev_is_linear_expression): Constant evolutions
2459 2017-10-09 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
2461 * config/s390/s390-builtins.def (vec_nabs, vec_vfi): Fix builtin
2464 2017-10-09 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
2467 * config/s390/vecintrin.h (vec_madd, vec_msub): Fix macro
2470 2017-10-09 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
2473 * config/s390/s390-builtins.def (vec_sqrt): Fix builtin flags.
2475 2017-10-09 Jakub Jelinek <jakub@redhat.com>
2478 * config/s390/s390-builtins.def (s390_vec_xor_flt_a,
2479 s390_vec_xor_flt_b, s390_vec_xor_flt_c): New.
2481 2017-10-09 Richard Sandiford <richard.sandiford@linaro.org>
2483 * wide-int.h (WI_BINARY_OPERATOR_RESULT): New macro.
2484 (WI_BINARY_PREDICATE_RESULT): Likewise.
2485 (wi::binary_traits::operator_result): New type.
2486 (wi::binary_traits::predicate_result): Likewise.
2487 (generic_wide_int::operator~, unary generic_wide_int::operator-)
2488 (generic_wide_int::operator==, generic_wide_int::operator!=)
2489 (generic_wide_int::operator&, generic_wide_int::and_not)
2490 (generic_wide_int::operator|, generic_wide_int::or_not)
2491 (generic_wide_int::operator^, generic_wide_int::operator+
2492 (binary generic_wide_int::operator-, generic_wide_int::operator*):
2494 (operator~, unary operator-, operator==, operator!=, operator&)
2495 (operator|, operator^, operator+, binary operator-, operator*): New
2497 * expr.c (get_inner_reference): Use wi::bit_and_not.
2498 * fold-const.c (fold_binary_loc): Likewise.
2499 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Likewise.
2500 * tree-ssa-ccp.c (get_value_from_alignment): Likewise.
2501 (bit_value_binop): Likewise.
2502 * tree-ssa-math-opts.c (find_bswap_or_nop_load): Likewise.
2503 * tree-vrp.c (zero_nonzero_bits_from_vr): Likewise.
2504 (extract_range_from_binary_expr_1): Likewise.
2505 (masked_increment): Likewise.
2506 (simplify_bit_ops_using_ranges): Likewise.
2508 2017-10-09 Martin Jambor <mjambor@suse.cz>
2511 * hsa-common.h (hsa_op_with_type): New method extend_int_to_32bit.
2512 * hsa-gen.c (hsa_extend_inttype_to_32bit): New function.
2513 (hsa_type_for_scalar_tree_type): Use it. Always force min32int for
2515 (hsa_fixup_mov_insn_type): New function.
2516 (hsa_op_with_type::get_in_type): Use it.
2517 (hsa_build_append_simple_mov): Likewise. Allow sub-32bit
2518 immediates in an assert.
2519 (hsa_op_with_type::extend_int_to_32bit): New method.
2520 (gen_hsa_insns_for_bitfield): Fixup instruction and intermediary
2521 types. Convert to dest type if necessary.
2522 (gen_hsa_insns_for_bitfield_load): Fixup load type if necessary.
2523 (reg_for_gimple_ssa): Pass false as min32int to
2524 hsa_type_for_scalar_tree_type.
2525 (gen_hsa_addr): Fixup type when creating addresable temporary.
2526 (gen_hsa_cmp_insn_from_gimple): Extend operands if necessary.
2527 (gen_hsa_unary_operation): Extend operands and convert to dest type if
2528 necessary. Call hsa_fixup_mov_insn_type.
2529 (gen_hsa_binary_operation): Changed operand types to hsa_op_with_type,
2530 extend operands and convert to dest type if necessary.
2531 (gen_hsa_insns_for_operation_assignment): Extend operands and convert
2532 to dest type if necessary.
2533 (set_output_in_type): Call hsa_fixup_mov_insn_type. Just ude dest
2534 if conversion nt necessary and size matches.
2535 (gen_hsa_insns_for_load): Call hsa_fixup_mov_insn_type, convert
2536 to dest type if necessary.
2537 (gen_hsa_insns_for_store): Call hsa_fixup_mov_insn_type.
2538 (gen_hsa_insns_for_switch_stmt): Likewise. Also extend operands if
2540 (gen_hsa_clrsb): Likewise.
2541 (gen_hsa_ffs): Likewise.
2542 (gen_hsa_divmod): Extend operands and convert to dest type if
2544 (gen_hsa_atomic_for_builtin): Change type of op to hsa_op_with_type.
2546 2017-10-08 Segher Boessenkool <segher@kernel.crashing.org>
2548 * config/rs6000/rs6000.md (conditional branch): Clean up formatting.
2549 Remove empty default arguments. Use a brace block as output
2551 (conditional return): Ditto.
2553 (indirect_jump): Ditto. Use b%T0 instead of bctr/blr.
2554 (tablejump, tablejumpsi, tablejumpdi, *tablejump<mode>_internal1):
2556 (group_ending_nop): Ditto.
2557 (doloop_end): Ditto.
2558 (ctr<mode>, ctr<mode>_internal1, ctr<mode>_internal2): Ditto.
2559 (splitters for those): Ditto.
2561 2017-10-08 Segher Boessenkool <segher@kernel.crashing.org>
2563 * config/rs6000/rs6000-string.c (expand_strncmp_align_check): Invert
2564 a conditional jump (and the compare for it) so that pc_rtx is the
2566 * config/rs6000/rs6000.c (rs6000_legitimate_combined_insn): Adjust
2567 for the deleted and renamed ctr<mode>_internal[234] patterns.
2568 * config/rs6000/rs6000.md: Delete second conditional branch pattern.
2569 Delete second conditional return pattern.
2570 (ctr<mode>_internal2): Delete this second bdnz pattern.
2571 (ctr<mode>_internal3): Rename to ctr<mode>_internal2.
2572 (ctr<mode>_internal4): Delete this second bdz pattern.
2574 2017-10-08 Eric Botcazou <ebotcazou@adacore.com>
2576 * tree-outof-ssa.h (ssaexpand): Add partitions_for_undefined_values.
2577 (always_initialized_rtx_for_ssa_name_p): New predicate.
2578 * tree-outof-ssa.c (remove_ssa_form): Initialize new field of SA.
2579 (finish_out_of_ssa): Free new field of SA.
2580 * tree-ssa-coalesce.h (get_undefined_value_partitions): Declare.
2581 * tree-ssa-coalesce.c: Include tree-ssa.h.
2582 (get_parm_default_def_partitions): Remove extern keyword.
2583 (get_undefined_value_partitions): New function.
2584 * expr.c (expand_expr_real_1) <expand_decl_rtl>: For a SSA_NAME, do
2585 not set SUBREG_PROMOTED_VAR_P on the sub-register if it may contain
2587 * loop-iv.c (iv_get_reaching_def): Disqualify all subregs.
2589 2017-10-08 Eric Botcazou <ebotcazou@adacore.com>
2591 * builtins.def (BUILT_IN_SETJMP): Revert latest change.
2593 2017-10-08 Jan Hubicka <hubicka@ucw.cz>
2595 * config/i386/i386.c (ix86_expand_set_or_movmem): Disable 512bit loops
2596 for targets that preffer 128bit.
2598 2017-10-08 Jan Hubicka <hubicka@ucw.cz>
2600 * config/i386/i386.c (has_dispatch): Disable for Ryzen.
2602 2017-10-08 Olivier Hainque <hainque@adacore.com>
2604 * config/arm/arm.c (arm_set_return_address): Use MEM_VOLATILE_P
2605 on the target mem instead of RTX_FRAME_RELATED_P on the insn to
2607 (thumb_set_return_address): Likewise.
2609 2017-10-08 Olivier Hainque <hainque@adacore.com>
2611 * common/config/arm/arm-common.c (arm_except_unwind_info):
2612 Handle DWARF2_UNWIND_INFO.
2614 2017-10-07 Michael Collison <michael.collison@arm.com>
2616 * config/aarch64/aarch64.md (*aarch64_reg_<optab>_minus<mode>3):
2619 2017-10-07 Eric Botcazou <ebotcazou@adacore.com>
2621 * builtins.def (BUILT_IN_SETJMP): Declare as library builtin instead
2622 of GCC builtin if DONT_USE_BUILTIN_SETJMP is defined.
2623 * except.c (sjlj_emit_function_enter): If DONT_USE_BUILTIN_SETJMP is
2624 defined, force the creation of a new block for a dispatch label.
2626 2017-10-07 Jan Hubicka <hubicka@ucw.cz>
2628 * invoke.texi (Wsuggest-attribute=cold): Document.
2629 * common.opt (Wsuggest-attribute=cold): New
2630 * ipa-pure-const.c (warn_function_cold): New function.
2631 * predict.c (compute_function_frequency): Use it.
2632 * predict.h (warn_function_cold): Declare.
2634 2017-10-06 Jan Hubicka <hubicka@ucw.cz>
2636 * tree-switch-conversion.c (do_jump_if_equal, emit_cmp_and_jump_insns):
2639 2017-10-06 Martin Liska <mliska@suse.cz>
2641 * sanopt.c (struct sanopt_tree_triplet_hash): Remove inline
2642 keyword for member functions.
2643 (struct sanopt_tree_couple): New struct.
2644 (struct sanopt_tree_couple_hash): New function.
2645 (struct sanopt_ctx): Add new hash_map.
2646 (has_dominating_ubsan_ptr_check): New function.
2647 (record_ubsan_ptr_check_stmt): Likewise.
2648 (maybe_optimize_ubsan_ptr_ifn): Likewise.
2649 (sanopt_optimize_walker): Handle IFN_UBSAN_PTR.
2650 (pass_sanopt::execute): Handle also SANITIZE_POINTER_OVERFLOW.
2652 2017-10-06 Sudakshina Das <sudi.das@arm.com>
2655 * config/aarch64/predicates.md (aarch64_reg_or_orr_imm): Only call
2656 aarch64_simd_valid_immediate on CONST_VECTORs.
2657 (aarch64_reg_or_bic_imm): Likewise.
2659 2017-10-06 Wilco Dijkstra <wdijkstr@arm.com>
2661 PR rtl-optimization/82396
2662 * haifa-sched.c (ready_sort_real): Disable qsort checking.
2664 2017-10-06 Sebastian Pop <sebpop@gmail.com>
2666 * graphite-dependences.c (scop_get_reads): Move code to...
2667 (scop_get_must_writes): Move code to...
2668 (scop_get_may_writes): Move code to...
2669 (scop_get_reads_and_writes): ... here.
2670 (scop_get_dependences): Call scop_get_reads_and_writes.
2672 2017-10-06 Jakub Jelinek <jakub@redhat.com>
2674 PR tree-optimization/82434
2675 * fold-const.h (can_native_encode_type_p,
2676 can_native_encode_string_p): Remove.
2677 * fold-const.c (native_encode_int): Formatting fixes. If ptr is NULL,
2678 don't encode anything, just return what would be otherwise returned.
2679 (native_encode_fixed, native_encode_complex, native_encode_vector):
2681 (native_encode_string): Likewise. Inline by hand
2682 can_native_encode_string_p.
2683 (can_native_encode_type_p): Remove.
2684 (can_native_encode_string_p): Remove.
2685 * tree-vect-stmts.c (vectorizable_store): Instead of testing just
2686 STRING_CSTs using can_native_encode_string_p, test all
2687 CONSTANT_CLASS_P values using native_encode_expr with NULL ptr.
2688 * gimple-ssa-store-merging.c (encode_tree_to_bitpos): Remove last
2689 argument from native_encode_expr.
2690 (rhs_valid_for_store_merging_p): Use native_encode_expr with NULL ptr.
2691 (pass_store_merging::execute): Don't unnecessarily look for 3 stmts,
2694 2017-10-06 Richard Biener <rguenther@suse.de>
2696 PR tree-optimization/82397
2697 * tree-vect-data-refs.c (dr_group_sort_cmp): Do not use
2698 operand_equal_p but rely on data_ref_compare_tree for detecting
2700 (vect_analyze_data_ref_accesses): Use data_ref_compare_tree
2701 to match up with dr_group_sort_cmp.
2703 2017-10-06 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
2706 * config/s390/s390-builtins.def (s390_vfi): Define new overloaded
2708 * config/s390/s390-builtin-types.def: Regenerate.
2710 2017-10-06 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
2713 * config/s390/s390-builtin-types.def: Regenerate.
2714 * config/s390/s390-builtins.def (s390_vfmaxdb_4, s390_vfmindb_4):
2715 Change flag from B_VXE to B_VX.
2716 (s390_vec_min_dbl): Remove B_VXE flag.
2718 2017-10-06 Richard Biener <rguenther@suse.de>
2720 * graphite-isl-ast-to-gimple.c: Include ssa.h and tree-ssa.h.
2721 (translate_isl_ast_to_gimple::translate_pending_phi_nodes,
2722 translate_isl_ast_to_gimple::is_valid_rename,
2723 translate_isl_ast_to_gimple::get_rename,
2724 translate_isl_ast_to_gimple::get_def_bb_for_const,
2725 translate_isl_ast_to_gimple::get_new_name,
2726 translate_isl_ast_to_gimple::collect_all_ssa_names,
2727 translate_isl_ast_to_gimple::copy_loop_phi_args,
2728 translate_isl_ast_to_gimple::collect_all_ssa_names,
2729 translate_isl_ast_to_gimple::copy_loop_phi_args,
2730 translate_isl_ast_to_gimple::copy_loop_phi_nodes,
2731 translate_isl_ast_to_gimple::add_close_phis_to_merge_points,
2732 translate_isl_ast_to_gimple::add_close_phis_to_outer_loops,
2733 translate_isl_ast_to_gimple::copy_loop_close_phi_args,
2734 translate_isl_ast_to_gimple::copy_loop_close_phi_nodes,
2735 translate_isl_ast_to_gimple::copy_cond_phi_args,
2736 translate_isl_ast_to_gimple::copy_cond_phi_nodes,
2737 translate_isl_ast_to_gimple::edge_for_new_close_phis,
2738 translate_isl_ast_to_gimple::add_phi_arg_for_new_expr,
2739 translate_isl_ast_to_gimple::rename_uses,
2740 translate_isl_ast_to_gimple::rename_all_uses): Remove.
2741 (translate_isl_ast_to_gimple::get_rename_from_scev): Simplify.
2742 (set_rename_for_each_def): Likewise.
2743 (graphite_copy_stmts_from_block): Handle debug stmt resetting
2744 here. Handle rewriting SCEV analyzable uses here.
2745 (copy_bb_and_scalar_dependences): Generate code for PHI
2747 (graphite_regenerate_ast_isl): Adjust.
2748 * graphite-scop-detection.c (trivially_empty_bb_p): Move to sese.[ch].
2749 (add_write, add_read): New functions.
2750 (build_cross_bb_scalars_def): Use it and simplify.
2751 (build_cross_bb_scalars_use): Likewise.
2752 (graphite_find_cross_bb_scalar_vars): Inline into...
2753 (try_generate_gimple_bb): ...here. Add dependences for PHIs,
2754 simulating out-of-SSA. Compute liveout and add dependencies.
2755 (build_scops): Force an empty entry block.
2756 * sese.h (sese_info_t::liveout, sese_info_t::debug_liveout): New
2758 (sese_build_liveouts): Declare.
2759 (sese_trivially_empty_bb_p): Likewise.
2760 * sese.c (sese_build_liveouts_bb): Properly handle PHIs,
2761 compute liveout and debug_liveout.
2762 (sese_bad_liveouts_use): Remove.
2763 (sese_reset_debug_liveouts_bb): Likewise.
2764 (sese_reset_debug_liveouts): Rewrite in terms of debug_liveout.
2765 (sese_build_liveouts): Build liveout and debug_liveout and store
2767 (new_sese_info): Adjust.
2768 (free_sese_info): Likewise.
2769 (sese_insert_phis_for_liveouts): Reset debug stmts from here,
2770 do not build liveout here.
2771 (move_sese_in_condition): Adjust region entry.
2772 (scev_analyzable_p): Match up with chrec_apply requirements.
2773 (sese_trivially_empty_bb_p): New.
2774 * tree-into-ssa.c (get_reaching_def): Properly support generating
2775 default-defs for incremental rewrite of anonymous names.
2777 2017-10-06 Richard Biener <rguenther@suse.de>
2779 * graphite-sese-to-poly.c (extract_affine): For casts increasing
2780 precision do not perform modulo reduction.
2782 2017-10-06 Richard Biener <rguenther@suse.de>
2784 PR tree-optimization/82436
2785 * tree-vect-slp.c (vect_supported_load_permutation_p): More
2786 conservatively choose the vectorization factor when checking
2787 whether we can perform the required load permutation.
2788 (vect_transform_slp_perm_load): Assert when we may not fail.
2790 2017-10-05 Segher Boessenkool <segher@kernel.crashing.org>
2792 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Correct error
2793 message for incompatible -msdata=* and -mcall-* options.
2795 2017-10-05 Jan Hubicka <hubicka@ucw.cz>
2797 * config/i386/i386.c (ia32_multipass_dfa_lookahead): Default to issue
2798 rate for post-reload scheduling.
2800 2017-10-05 Tamar Christina <tamar.christina@arm.com>
2802 * doc/sourcebuild.texi (vect_sizes_16B_8B, vect_sizes_32B_16B): New.
2804 2017-10-05 Jan Hubicka <hubicka@ucw.cz>
2806 * config/i386/i386.c (znver1_cost): Set branch_cost to 3 (instead of 2)
2807 to improve monte carlo in scimark.
2809 2017-10-05 Jan Hubicka <hubicka@ucw.cz>
2811 * config/i386/i386.c (ix86_size_cost, i386_cost, i486_cost,
2812 pentium_cost, lakemont_cost, pentiumpro_cost, geode_cost, k6_cost,
2813 athlon_cost, k8_cost, amdfam10_cost, btver1_cost, btver2_cost,
2814 pentium4_cost, nocona_cost): Set reassociation width to 1.
2815 (bdver1_cost, bdver2_cost, bdver3_cost, bdver4_cost): Set reassociation
2816 width to 2 for fp operations and 1 otherwise.
2817 (znver1_cost): Set scalar reassoc width to 4 and vector to 3 and 6
2819 (atom_cost): Set reassociation width to 2.
2820 (slm_cost, generic_cost): Set fp reassociation width
2821 to 2 and 1 otherwise.
2822 (intel_cost): Set fp reassociation width to 4 and 1 otherwise.
2823 (core_cost): Set fp reassociation width to 4 and vector to 2.
2824 (ix86_reassociation_width): Rewrite using cost table; special case
2825 plus/minus on Zen; honor X86_TUNE_SSE_SPLIT_REGS
2826 and TARGET_AVX128_OPTIMAL.
2827 * config/i386/i386.h (processor_costs): Add
2828 reassoc_int, reassoc_fp, reassoc_vec_int, reassoc_vec_fp.
2829 (TARGET_VECTOR_PARALLEL_EXECUTION, TARGET_REASSOC_INT_TO_PARALLEL,
2830 TARGET_REASSOC_FP_TO_PARALLEL): Remove.
2831 * x86-tune.def (X86_TUNE_REASSOC_INT_TO_PARALLEL): Remove.
2832 (X86_TUNE_REASSOC_FP_TO_PARALLEL): Remove.
2833 (X86_TUNE_VECTOR_PARALLEL_EXECUTION): Remove.
2835 2017-10-05 Nathan Sidwell <nathan@acm.org>
2837 * doc/invoke.texi (Wparentheses): Document C++ MVP behaviour.
2839 2017-10-05 Tamar Christina <tamar.christina@arm.com>
2841 * config/arm/arm.c (arm_test_fpu_data): New.
2842 (arm_run_selftests): Call arm_test_fpu_data.
2844 2017-10-04 Nathan Sidwell <nathan@acm.org>
2846 * toplev.c (toplev::main): Remove excess parens on pretty_printer
2848 * caller-save.c (insert_save): Remove excess parens on TO_SAVE parm.
2850 2017-10-04 Sudakshina Das <sudi.das@arm.com>
2852 * config/aarch64/aarch64-protos.h (enum simd_immediate_check): New
2853 check type for aarch64_simd_valid_immediate.
2854 (aarch64_output_simd_mov_immediate): Update prototype.
2855 (aarch64_simd_valid_immediate): Update prototype.
2856 * config/aarch64/aarch64-simd.md (orr<mode>3): modified pattern to add
2857 support for ORR-immediate.
2858 (and<mode>3): modified pattern to add support for BIC-immediate.
2859 * config/aarch64/aarch64.c (aarch64_simd_valid_immediate): Function
2860 now checks for valid immediate for BIC and ORR based on new enum
2862 (aarch64_output_simd_mov_immediate): Function now used to output
2863 BIC/ORR imm as well based on new enum argument.
2864 * config/aarch64/constraints.md (Do): New vector immediate constraint.
2866 * config/aarch64/predicates.md (aarch64_reg_or_orr_imm): New predicate.
2867 (aarch64_reg_or_bic_imm): Likewise.
2869 2017-10-04 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
2871 * config/s390/vx-builtins.md ("vec_mergeh<mode>")
2872 ("vec_mergel<mode>"): Change mode iterator to V_128_NOSINGLE.
2874 2017-10-04 Wilco Dijkstra <wdijkstr@arm.com>
2878 PR rtl-optimization/82396
2879 * haifa-sched.c (autopref_multipass_init): Simplify
2881 (autopref_rank_data): Simplify sort order.
2882 * sched-int.h (autopref_multipass_data_): Remove
2883 multi_mem_insn_p, min_offset and max_offset.
2885 2017-10-04 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
2887 * doc/sourcebuild.texi: Document vect_peeling_profitable.
2889 2017-10-04 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
2891 * doc/sourcebuild.texi: Document vect_intdouble_cvt and
2894 2017-10-04 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
2896 * doc/sourcebuild.texi: Document vect_long_mult.
2898 2017-10-04 Richard Sandiford <richard.sandiford@linaro.org>
2900 PR tree-optimization/82413
2901 * fold-const.c (build_range_check): Use widest_int when comparing
2902 the maximum ETYPE value with HIGH.
2904 2017-10-04 Wilco Dijkstra <wdijkstr@arm.com>
2906 PR rtl-optimization/82396
2907 * haifa-sched.c (autopref_multipass_init): Simplify
2909 (autopref_rank_data): Simplify sort order.
2910 * sched-int.h (autopref_multipass_data_): Remove
2911 multi_mem_insn_p, min_offset and max_offset.
2913 2017-10-04 Jakub Jelinek <jakub@redhat.com>
2915 PR tree-optimization/82381
2916 * tree-ssa-reassoc.c (sort_by_operand_rank): Check for different
2917 oeN->rank first. Return 1 or -1 if one op is SSA_NAME and the other
2920 PR tree-optimization/82374
2921 * omp-low.c (create_omp_child_function): Copy DECL_ATTRIBUTES,
2922 DECL_FUNCTION_SPECIFIC_OPTIMIZATION,
2923 DECL_FUNCTION_SPECIFIC_TARGET and DECL_FUNCTION_VERSIONED from
2924 current_function_decl to the new decl.
2926 2017-10-03 Michael Meissner <meissner@linux.vnet.ibm.com>
2928 * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2_HW): Define new
2929 helper macro for IEEE float128 hardware built-in functions.
2930 (SQRTF128_ODD): Add built-in functions with the round-to-odd
2932 (TRUNCF128_ODD): Likewise.
2933 (ADDF128_ODD): Likewise.
2934 (SUBF128_ODD): Likewise.
2935 (MULF128_ODD): Likewise.
2936 (DIVF128_ODD): Likewise.
2937 (FMAF128_ODD): Likewise.
2938 * config/rs6000/rs6000.md (UNSPEC_ROUND_TO_ODD): Rename to
2939 UNSPEC_TRUNC_ROUND_TO_ODD.
2940 (UNSPEC_TRUNC_ROUND_TO_ODD): Likewise.
2941 (UNSPEC_ADD_ROUND_TO_ODD): New unspec codes for the IEEE 128-bit
2942 floating point round to odd instructions.
2943 (UNSPEC_SUB_ROUND_TO_ODD): Likewise.
2944 (UNSPEC_MUL_ROUND_TO_ODD): Likewise.
2945 (UNSPEC_DIV_ROUND_TO_ODD): Likewise.
2946 (UNSPEC_FMA_ROUND_TO_ODD): Likewise.
2947 (UNSPEC_SQRT_ROUND_TO_ODD): Likewise.
2948 (trunc<mode>sf2_hw): Change the truncate with round to odd
2949 expansion to use UNSPEC_TRUNC_ROUND_TO_ODD.
2950 (add<mode>3_odd): Add insns for IEEE 128-bit floating point round
2951 to odd hardware instructions.
2952 (sub<mode>3_odd): Likewise.
2953 (mul<mode>3_odd): Likewise.
2954 (div<mode>3_odd): Likewise.
2955 (sqrt<mode>2_odd): Likewise.
2956 (fma<mode>4_odd): Likewise.
2957 (fms<mode>4_odd): Likewise.
2958 (nfma<mode>4_odd): Likewise.
2959 (nfms<mode>4_odd): Likewise.
2960 (trunc<mode>df2_odd): Change the truncate with round to odd
2961 expansion to use UNSPEC_TRUNC_ROUND_TO_ODD. Add a generator
2963 * doc/extend.texi (PowerPC built-in functions): Update documentation
2964 for existing IEEE float128-bit built-in functions. Add built-in
2965 functions that generate the IEEE 128-bit floating point round to
2968 2017-10-03 Segher Boessenkool <segher@kernel.crashing.org>
2970 PR rtl-optimization/77729
2971 * simplify-rtx.c (simplify_binary_operation_1): Delete the (X&C1)|C2
2972 to (X&(C1&~C2))|C2 transformations.
2974 2017-10-03 Martin Jambor <mjambor@suse.cz>
2976 PR tree-optimization/82363
2977 * tree-sra.c (propagate_subaccesses_across_link): In unrecoverable
2978 mismatch, mark lacc written regardless of racc.
2980 2017-10-03 Jakub Jelinek <jakub@redhat.com>
2982 PR tree-optimization/82381
2983 * tree-ssa-reassoc.c (sort_by_operand_rank): Don't check
2984 stmt_to_insert nor wheather SSA_NAMEs are default defs.
2985 Return 1 or -1 if one of bba and bbb is NULL. If bb_rank is equal,
2986 fallthrough into reassoc_stmt_dominates_stmt_p.
2989 * combine.c (combine_instructions): Don't combine in unreachable
2992 2017-08-18 Peter Bergner <bergner@vnet.ibm.com>
2995 * config/rs6000/rs6000.c (rs6000_option_override_internal): Rewrite
2996 function to not use the have_cpu variable. Do not set cpu_index,
2997 rs6000_cpu_index or rs6000_tune_index if we end up using TARGET_DEFAULT
2999 (rs6000_valid_attribute_p): Remove duplicate initializations of
3000 old_optimize and func_optimize.
3001 (rs6000_pragma_target_parse): Call rs6000_activate_target_options ().
3002 (rs6000_activate_target_options): Make global.
3003 * config/rs6000/rs6000-protos.h (rs6000_activate_target_options): Add
3006 2017-10-02 Jakub Jelinek <jakub@redhat.com>
3008 * tree-dfa.c (get_ref_base_and_extent): Set *pmax_size to -1
3009 if *poffset + *pmax_size overflows in HOST_WIDE_INT.
3010 Set *poffset to 0 and *psize and *pmax_size to -1 if
3011 *poffset + *psize overflows in HOST_WIDE_INT.
3013 PR tree-optimization/82387
3014 PR tree-optimization/82388
3015 PR tree-optimization/82389
3016 * tree-ssa-dse.c (dse_classify_store): Test byte_tracking_enabled
3017 instead of live_bytes non-NULL.
3019 2017-10-02 Georg-Johann Lay <avr@gjlay.de>
3022 * confg/avr/avr.md (*iorhi3.ashift8-ext.zerox): Add "r,r,0"
3025 2017-10-02 Richard Biener <rguenther@suse.de>
3027 * graphite-isl-ast-to-gimple.c (set_codegen_error): With
3028 -fchecking and --param graphite-allow-codegen-errors=0 ICE.
3029 * params.def (PARAM_GRAPHITE_ALLOW_CODEGEN_ERRORS): New param.
3031 2017-10-02 Richard Sandiford <richard.sandiford@linaro.org>
3033 * tree.h (wi::int_traits <const_tree>::decompose): Assert that the
3034 requested precision matches the type's.
3035 * calls.c (alloc_max_size): Calculate the new candidate size as
3036 a widest_int and use wi::to_widest when comparing it with the
3037 current candidate size.
3038 * gimple-ssa-warn-alloca.c (pass_walloca::execute): Compare with
3039 zero rather than integer_zero_node.
3040 * match.pd: Check for a no-op conversion before using wi::add
3041 rather than after. Use tree_to_uhwi when summing small shift
3042 counts into an unsigned int.
3044 2017-10-02 Richard Sandiford <richard.sandiford@linaro.org>
3045 Alan Hayward <alan.hayward@arm.com>
3046 David Sherwood <david.sherwood@arm.com>
3049 * config/aarch64/aarch64.h (POINTER_AND_FP_REGS): New reg class.
3050 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Update accordingly.
3051 * config/aarch64/aarch64.c (aarch64_class_max_nregs): Handle
3052 POINTER_AND_FP_REGS.
3054 2017-10-02 Richard Biener <rguenther@suse.de>
3056 PR tree-optimization/82355
3057 * graphite-isl-ast-to-gimple.c (build_iv_mapping): Also build
3058 a mapping for the enclosing loop but avoid generating one for
3060 (copy_bb_and_scalar_dependences): Remove premature codegen
3061 error on PHIs in blocks duplicated into multiple places.
3062 * graphite-scop-detection.c
3063 (scop_detection::stmt_has_simple_data_refs_p): For a loop not
3064 in the region use it as loop and nest to analyze the DR in.
3065 (try_generate_gimple_bb): Likewise.
3066 * graphite-sese-to-poly.c (extract_affine_chrec): Adjust.
3067 (add_loop_constraints): For blocks in a loop not in the region
3068 create a dimension with a single iteration.
3069 * sese.h (gbb_loop_at_index): Remove assert.
3071 2017-10-01 Kevin Buettner <kevinb@redhat.com>
3073 * omp-expand.c (adjust_context_scope): New function.
3074 (expand_parallel_call): Call adjust_context_scope.
3076 2017-10-01 Jeff Law <law@redhat.com>
3078 * tree-ssa-dom.c (optimize_stmt): Make this a method within the
3079 dom_opt_dom_walker class with direct access to private members.
3080 Add comments. Call test_for_singularity.
3081 (dom_opt_dom_walker::before_dom_children): Corresponding changes.
3082 (dom_opt_dom_walker::after_dom_children): Do not lazily initialize
3083 m_dummy_cond anymore.
3084 (class dom_opt_dom_walker): Initialize m_dummy_cond member in the
3086 (pass_dominator:execute): Build the dummy_cond here and pass it
3087 to the dom_opt_dom_walker ctor.
3088 (test_for_singularity): New function.
3090 2017-09-30 Krister Walfridsson <krister.walfridsson@gmail.com>
3091 Maya Rashish <coypu@sdf.org>
3093 * config.gcc (*-*-netbsd*): New variable nbsd_tm_file containing
3094 netbsd.h, netbsd-stdint.h, and netbsd-elf.h.
3095 (alpha*-*-netbsd*) Use nbsd_tm_file.
3096 (arm*-*-netbsdelf*) Likewise.
3097 (i[34567]86-*-netbsdelf*) Likewise.
3098 (x86_64-*-netbsd*) Likewise.
3099 (mips*-*-netbsd*) Likewise.
3100 (powerpc-*-netbsd*) Likewise.
3101 (sh*-*-netbsd*) Likewise.
3102 (sparc-*-netbsdelf*) Likewise.
3103 (sparc64-*-netbsd*) Likewise.
3104 (m68k*-*-netbsdelf*) Use nbsd_tm_file and add CHAR_FAST8/SHORT_FAST16
3106 (vax-*-netbsdelf*) Likewise.
3107 * config/netbsd-stdint.h (INT_FAST8_TYPE): Check CHAR_FAST8.
3108 (UINT_FAST8_TYPE) Likewise.
3109 (INT_FAST16_TYPE) Check CHAR_FAST16.
3110 (UINT_FAST16_TYPE) Likewise.
3112 2017-09-30 Jakub Jelinek <jakub@redhat.com>
3115 * config/i386/i386.md
3116 (TARGET_USE_8BIT_IDIV zext divmodsi4 splitter): New define_split.
3117 (divmodsi4_zext_1, divmodsi4_zext_2, *divmodsi4_zext_1,
3118 *divmodsi4_zext_2): New define_insn_and_split.
3119 (*divmodsi4_noext_zext_1, *divmodsi4_noext_zext_2): New define_insn.
3120 (TARGET_USE_8BIT_IDIV zext udivmodsi4 splitter): New define_split.
3121 (udivmodsi4_zext_1, udivmodsi4_zext_2, *udivmodsi4_zext_1,
3122 *udivmodsi4_zext_2, *udivmodsi4_pow2_zext_1, *udivmodsi4_pow2_zext_2):
3123 New define_insn_and_split.
3124 (*udivmodsi4_noext_zext_1, *udivmodsi4_noext_zext_2): New define_insn.
3125 * config/i386/i386.c (ix86_split_idivmod): Handle operands[0] or
3126 operands[1] having DImode when mode is SImode.
3128 * config/i386/i386.c (ix86_split_idivmod): Use mode instead of
3129 always SImode for DIV and MOD in REG_EQUAL notes.
3131 2017-09-29 Yury Gribov <tetra2005@gmail.com>
3134 * match.pd: Fix handling of NaNs in pattern.
3136 2017-09-29 Jeff Law <law@redhat.com>
3138 * sbitmap.c (bitmap_bit_in_range_p): New function.
3139 * sbitmap.h (bitmap_bit_in_range_p): Prototype.
3140 * tree-ssa-dse.c (live_bytes_read): New function.
3141 (dse_classify_store): Ignore reads of dead bytes.
3143 * config/i386/i386.c (ix86_adjust_stack_and_probe_stack_clash): Fix
3144 typos and whitespace errors.
3145 * config/i386/predicates.md (address_no_seg_operand): Likewise.
3146 * config/s390/s390.c (s390_emit_prologue): Likewise.
3148 2017-09-29 Vladimir Makarov <vmakarov@redhat.com>
3151 * ira-costs.c (scan_one_insn): Don't take into account PIC equiv
3152 with a symbol for LRA.
3154 2017-09-29 Vladimir Makarov <vmakarov@redhat.com>
3156 PR rtl-optimization/82338
3157 * lra-constraints.c (inherit_in_ebb): Check usage_insns check.
3159 2017-09-29 Alexander Monakov <amonakov@ispras.ru>
3161 * genmodes.c (calc_wider_mode): Suppress qsort macro.
3162 * system.h [CHECKING_P] (qsort): Redirect to qsort_chk.
3163 (qsort_chk): Declare.
3164 * vec.c [CHECKING_P] (qsort_chk_error): New static function.
3165 (qsort_chk): New function.
3167 2017-09-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
3169 PR tree-optimization/82337
3170 * gimple-ssa-strength-reduction.c (find_phi_def): Don't record a
3171 phi definition if the PHI result appears in an abnormal PHI.
3172 (find_basis_for_base_expr): Don't record a basis if the LHS of the
3173 basis appears in an abnormal PHI.
3175 2017-09-29 Richard Biener <rguenther@suse.de>
3177 * graphite-isl-ast-to-gimple.c
3178 (translate_isl_ast_to_gimple::set_codegen_error): New function.
3179 (binary_op_to_tree): Use it.
3180 (get_rename_from_scev): Likewise.
3181 (copy_loop_phi_nodes): Likewise.
3182 (copy_bb_and_scalar_dependences): Likewise.
3183 (translate_pending_phi_nodes): Likewise.
3185 2017-09-29 Jakub Jelinek <jakub@redhat.com>
3188 * config/i386/i386.md (*movdi_internal peephole2): New -Os peephole
3189 for movabsq $(i32 << shift), r64.
3191 2017-09-28 Uros Bizjak <ubizjak@gmail.com>
3193 * config/i386/i386.c (ix86_print_operand_address_as): Do not check
3194 index when encoding %esp as %rsp to avoid 0x67 prefix.
3196 2017-09-28 Sergey Shalnov <Sergey.Shalnov@intel.com>
3198 * config/i386/i386.md (*movsf_internal, *movdf_internal):
3199 Return 256-bit AVX modes for TARGET_PREFER_AVX256.
3201 2017-09-28 Thomas Preud'homme <thomas.preudhomme@arm.com>
3203 * config/arm/arm.c (arm_option_override): Forbid ARMv8-M Security
3204 Extensions with more than 16 double VFP registers.
3205 (cmse_nonsecure_entry_clear_before_return): Remove second entry of
3206 to_clear_mask and all code related to it. Replace the remaining
3207 entry by a sbitmap and adapt code accordingly.
3209 2017-09-28 Henry Linjamäki <henry.linjamaki@parmance.com>
3211 * brig-builtins.def: Change pure attributes to const.
3213 2017-09-28 Joseph Myers <joseph@codesourcery.com>
3215 * config.gcc (default_gnu_indirect_function): Default to yes for
3216 sparc*-*-linux* with glibc.
3218 2017-09-28 Joseph Myers <joseph@codesourcery.com>
3220 * config/aarch64/aarch64.c (aarch64_elf_asm_constructor)
3221 (aarch64_elf_asm_destructor): Pass SECTION_NOTYPE to get_section
3222 when creating .init_array and .fini_array sections with priority
3225 2017-09-27 Christophe Lyon <christophe.lyon@linaro.org>
3228 * config/aarch64/aarch64.c
3229 (aarch64_builtin_support_vector_misalignment): Always return false
3230 when misalignment is unknown.
3232 2017-09-27 Kelvin Nilsen <kelvin@gcc.gnu.org>
3234 * config/rs6000/rs6000-p8swap.c (const_load_sequence_p): Revise
3235 this function to return false if the definition used by the swap
3236 instruction is artificial, or if the memory address from which the
3237 constant value is loaded is not represented by a base address held
3238 in a register or if the base address register is a frame or stack
3239 pointer. Additionally, return false if the base address of the
3240 loaded constant is a SYMBOL_REF but is not considered to be a
3242 (replace_swapped_load_constant): New function.
3243 (rs6000_analyze_swaps): Add a new pass to replace a swap of a
3244 loaded constant vector with a load of a swapped constant vector.
3246 2017-09-27 Carl Love <cel@us.ibm.com>
3248 * config/rs6000/rs6000-builtin.def (BU_FP_1MISC_1): Add define macro.
3249 (FCTID, FCTIW): Add BU_FP_MISC_1 macro expansion for builtins.
3250 * config/rs6000/rs6000.md (lrintsfsi2): Add define_insn for the
3253 2017-09-27 Alexander Monakov <amonakov@ispras.ru>
3255 * haifa-sched.c (autopref_rank_for_schedule): Order 'irrelevant' insns
3256 first, always call autopref_rank_data otherwise.
3258 2017-09-27 Richard Biener <rguenther@suse.de>
3260 * graphite-scop-detection.c (find_scop_parameters): Move
3261 loop bound handling ...
3262 (gather_bbs::before_dom_children): ... here, avoiding the need
3263 to build scop_info->loop_nest.
3264 (record_loop_in_sese): Remove.
3265 * sese.h (sese_info_t::loop_nest): Remove.
3266 * sese.c (new_sese_info): Do not allocate loop_nest.
3267 (free_sese_info): Do not free loop_nest.
3269 2017-09-27 Jakub Jelinek <jakub@redhat.com>
3272 * gimplify.c (gimplify_modify_expr): Don't optimize away zero sized
3273 lhs from calls if the lhs has addressable type.
3275 2017-09-27 Richard Biener <rguenther@suse.de>
3277 * graphite.h (scop::max_alias_set): New member.
3278 * graphite-scop-detection.c: Remove references to non-existing
3279 --param in comments.
3280 (build_alias_sets): Record the maximum alias set used for drs.
3281 (build_scops): Support zero as unlimited for
3282 --param graphite-max-arrays-per-scop.
3283 * graphite-sese-to-poly.c (add_scalar_version_numbers): Remove
3285 (build_poly_sr_1): ... here. Compute alias set based on the
3286 maximum alias set used for drs rather than
3287 PARAM_GRAPHITE_MAX_ARRAYS_PER_SCOP
3289 2017-09-27 Richard Biener <rguenther@suse.de>
3291 * graphite-optimize-isl.c (get_schedule_for_node_st): Allow
3292 --param loop-block-tile-size=0 to disable tiling.
3294 2017-09-27 Richard Biener <rguenther@suse.de>
3296 * doc/invoke.texi (graphite-max-bbs-per-function): Remove.
3297 (graphite-max-nb-scop-params): Document special value zero.
3298 * domwalk.h (dom_walker::STOP): New symbolical constant.
3299 (dom_walker::dom_walker): Add optional parameter for bb to
3301 (dom_walker::~dom_walker): Declare.
3302 (dom_walker::before_dom_children): Document STOP return value.
3303 (dom_walker::m_user_bb_to_rpo): New member.
3304 (dom_walker::m_bb_to_rpo): Likewise.
3305 * domwalk.c (dom_walker::dom_walker): Compute bb to RPO
3306 mapping here if not provided by the user.
3307 (dom_walker::~dom_walker): Free bb to RPO mapping if not
3308 provided by the user.
3309 (dom_walker::STOP): Define.
3310 (dom_walker::walk): Do not compute bb to RPO mapping here.
3311 Support STOP return value from before_dom_children to stop
3313 * graphite-optimize-isl.c (optimize_isl): If the schedule
3314 is the same still generate code if -fgraphite-identity
3315 or -floop-parallelize-all are given.
3316 * graphite-scop-detection.c: Include cfganal.h.
3317 (gather_bbs::gather_bbs): Get and pass through bb to RPO
3319 (gather_bbs::before_dom_children): Return STOP for BBs
3321 (build_scops): Compute bb to RPO mapping and pass it to
3322 the domwalk. Treat --param graphite-max-nb-scop-params=0
3323 as not limiting the number of params.
3324 * graphite.c (graphite_initialize): Remove limit on the
3325 number of basic-blocks in a function.
3326 * params.def (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION): Remove.
3327 (PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS): Adjust to documented
3328 default value of 10.
3330 2017-09-26 Michael Meissner <meissner@linux.vnet.ibm.com>
3332 * config/rs6000/vsx.md (peephole for optimizing move SF to GPR):
3333 Adjust code to eliminate needing to do the shift right 32-bits
3334 operation after XSCVDPSPN.
3336 2017-09-26 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
3338 * match.pd ((X / Y) == 0 -> X < Y): New pattern.
3339 ((X / Y) != 0 -> X >= Y): Likewise.
3341 2017-09-26 Carl Love <cel@us.ibm.com>
3343 * config/rs6000/rs6000-c.c (P9V_BUILTIN_VEC_XL_LEN_R,
3344 P9V_BUILTIN_VEC_XST_LEN_R): Add support for builtins
3345 vector unsigned char vec_xl_len_r (unsigned char *, size_t);
3346 void vec_xst_len_r (vector unsigned char, unsigned char *, size_t);
3347 * config/rs6000/altivec.h (vec_xl_len_r, vec_xst_len_r): Add defines.
3348 * config/rs6000/rs6000-builtin.def (XL_LEN_R, XST_LEN_R): Add
3349 definitions and overloading.
3350 * config/rs6000/rs6000.c (altivec_expand_builtin): Add case
3351 statement for P9V_BUILTIN_XST_LEN_R.
3352 (altivec_init_builtins): Add def_builtin for P9V_BUILTIN_STXVLL.
3353 * config/rs6000/vsx.md (lxvll, stxvll, xl_len_r, xst_len_r): Add
3354 define_expand and define_insn for the instructions and builtins.
3355 * doc/extend.texi: Update the built-in documentation file for the new
3357 * config/rs6000/altivec.md (altivec_lvsl_reg, altivec_lvsr_reg): Add
3358 define_insn for the instructions
3360 2017-09-26 Krister Walfridsson <krister.walfridsson@gmail.com>
3363 * gcc/config/netbsd-protos.h: New file.
3364 * gcc/config/netbsd.c: New file.
3365 * gcc/config/netbsd.h (SUBTARGET_INIT_BUILTINS): Define.
3366 * gcc/config/t-netbsd: New file.
3367 * gcc/config.gcc (tm_p_file): Add netbsd-protos.h.
3368 (tmake_file) Add t-netbsd.
3369 (extra_objs) Add netbsd.o.
3371 2017-09-26 Janus Weil <janus@gcc.gnu.org>
3375 * doc/sourcebuild.texi: Document fortran_real_10 and fortran_real_16.
3377 2017-09-26 Michael Meissner <meissner@linux.vnet.ibm.com>
3379 * config/rs6000/rs6000.md (extendsi<mode>2): Add a splitter to do
3380 sign extension from a vector register to a GPR by doing a 32-bit
3381 direct move and then an EXTSW.
3382 (extendsi<mode>2 splitter): Likewise.
3383 (movsi_from_sf): Adjust code to eliminate doing a 32-bit shift
3384 right or vector extract after doing XSCVDPSPN. Use
3385 zero_extendsidi2 instead of p8_mfvsrd_4_disf to move the value to
3387 (movdi_from_sf_zero_ext): Likewise.
3388 (reload_gpr_from_vsxsf): Likewise.
3389 (p8_mfvsrd_4_disf): Delete, no longer used.
3390 (movsi_from_df): Optimize converting a DFmode to a SFmode, and
3391 then needing to move the SFmode to a GPR to use the XSCVDPSP
3392 instruction instead of FRSP and XSCVDPSPN.
3393 * config/rs6000/vsx.md (vsx_xscvspdp_scalar2): Move insn so that
3394 it is adjacent to the other XSCVSPDP insns.
3395 (vsx_xscvdpsp_scalar): Use "ww" constraint instead of "f" to allow
3396 SFmode to be in traditional Altivec registers.
3397 (vsx_xscvdpspn): Eliminate useless alternative constraint.
3398 (vsx_xscvspdpn): Likewise.
3399 (vsx_xscvspdpn_scalar): Likewise.
3401 2017-09-26 Martin Jambor <mjambor@suse.cz>
3403 * tree-sra.c (compare_access_positions): Put integral types first,
3404 stabilize sorting of integral types, remove conditions putting
3405 non-full-precision integers last.
3406 (sort_and_splice_var_accesses): Disable scalarization if a
3407 non-integert would be represented by a non-full-precision integer.
3409 2017-09-26 Joseph Myers <joseph@codesourcery.com>
3411 * config/microblaze/linux.h (TARGET_ASM_FILE_END): Likewise.
3412 * config/pa/pa.h (NEED_INDICATE_EXEC_STACK): Likewise.
3413 * config/pa/pa-linux.h (NEED_INDICATE_EXEC_STACK): Likewise.
3414 * config/pa/pa.c (pa_hpux_file_end): Rename to pa_file_end.
3415 Define unconditionally, with [ASM_OUTPUT_EXTERNAL_REAL]
3416 conditionals inside the function instead of around it. Call
3417 file_end_indicate_exec_stack if NEED_INDICATE_EXEC_STACK.
3418 (TARGET_ASM_FILE_END): Define unconditionally to pa_file_end.
3420 2017-09-26 Richard Biener <rguenther@suse.de>
3422 * graphite-scop-detection.c (scop_detection::build_scop_depth): Rewrite,
3424 (scop_detection::build_scop_breadth): ... this. Removed.
3425 (scop_detection::loop_is_valid_in_scop): Fold into single caller.
3426 (scop_detection::harmful_stmt_in_bb): Likewise.
3427 (scop_detection::graphite_can_represent_stmt): Likewise.
3428 (scop_detection::loop_body_is_valid_scop): Likewise. Remove recursion.
3429 (scop_detection::can_represent_loop): Remove recursion, fold in ...
3430 (scop_detection::can_represent_loop_1): ... this. Removed.
3431 (scop_detection::harmful_loop_in_region): Simplify after inlining
3432 the above and remove more quadraticness.
3433 (build_scops): Adjust.
3434 * tree-data-ref.c (loop_nest_has_data_refs): Remove pointless
3437 2017-09-26 Jakub Jelinek <jakub@redhat.com>
3440 * config/i386/i386.c (ix86_print_operand_address_as): Only test
3441 REGNO (base) == SP_REG if base is a REG.
3444 * tree-ssa-reassoc.c (update_range_test): Dump r->exp each time
3445 if it is different SSA_NAME.
3446 (optimize_range_tests_cmp_bitwise): New function.
3447 (optimize_range_tests): Call it.
3449 2017-09-26 Richard Biener <rguenther@suse.de>
3451 PR tree-optimization/82321
3452 * graphite.c (canonicalize_loop_closed_ssa): Properly check
3453 for the def being inside the loop.
3455 2017-09-26 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3457 * config/s390/vx-builtins.md ("vmslg"): Add missing operand in
3459 * config/s390/s390-builtins.def: Fix constraint on op4.
3461 2017-09-26 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3463 * config/s390/s390.c (s390_expand_vec_compare): Use the new mode
3464 independent expanders.
3465 * config/s390/vector.md ("vec_cmpuneq", "vec_cmpltgt")
3466 ("vec_ordered", "vec_unordered"): New expanders.
3468 2017-09-26 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3470 * config/s390/s390.c (s390_preferred_simd_mode): Return V4SFmode
3473 2017-09-26 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3475 * config/s390/vector.md ("vec_unpacks_low_v16qi"): Rename to
3476 vec_unpacks_lo_v16qi.
3477 ("vec_unpacku_low_v16qi"): Rename to vec_unpacku_lo_v16qi.
3479 2017-09-26 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3481 * config/s390/vector.md ("vec_unpacks_lo_v4sf")
3482 ("vec_unpacks_hi_v4sf", "vec_unpacks_lo_v2df")
3483 ("vec_unpacks_hi_v2df", "vec_pack_trunc_v2df"): New expanders.
3485 2017-09-26 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3487 * config/s390/predicates.md ("const_shift_by_byte_operand"): New
3489 * config/s390/vector.md ("*vec_srb<mode>"): Change modes to V_128
3491 ("*vec_slb<mode>"): New insn pattern.
3492 ("vec_shr_<mode>"): New expander.
3493 * config/s390/vx-builtins.md ("vec_slb<mode>"): Turn into expander
3494 and force the shift count operand to V16QImode.
3495 ("vec_srb<mode>"): Set shift count mode to V16QI.
3497 2017-09-26 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3499 * config/s390/vector.md ("vec_widen_umult_lo_<mode>")
3500 ("vec_widen_umult_hi_<mode>", "vec_widen_smult_lo_<mode>")
3501 ("vec_widen_smult_hi_<mode>"): New expander definitions.
3503 2017-09-26 Richard Earnshaw <rearnsha@arm.com>
3506 * config/arm/arm.h (DRIVER_SELF_SPECS): Separate sub-rules with commas.
3508 2017-09-26 Richard Biener <rguenther@suse.de>
3510 PR tree-optimization/82320
3511 * tree-ssa-sccvn.c (set_ssa_val_to): Changing undef to undef
3514 2017-09-25 Jeff Law <law@redhat.com>
3516 * config/rs6000/rs6000-protos.h (output_probe_stack_range): Update
3517 prototype for new argument.
3518 * config/rs6000/rs6000.c (rs6000_emit_allocate_stack_1): New function,
3519 mostly extracted from rs6000_emit_allocate_stack.
3520 (rs6000_emit_probe_stack_range_stack_clash): New function.
3521 (rs6000_emit_allocate_stack): Call
3522 rs6000_emit_probe_stack_range_stack_clash as needed.
3523 (rs6000_emit_probe_stack_range): Add additional argument
3524 to call to gen_probe_stack_range{si,di}.
3525 (output_probe_stack_range): New.
3526 (output_probe_stack_range_1): Renamed from output_probe_stack_range.
3527 (output_probe_stack_range_stack_clash): New.
3528 (rs6000_emit_prologue): Emit notes into dump file as requested.
3529 * rs6000.md (allocate_stack): Handle -fstack-clash-protection.
3530 (probe_stack_range<P:mode>): Operand 0 is now early-clobbered.
3531 Add additional operand and pass it to output_probe_stack_range.
3533 2017-09-25 Bin Cheng <bin.cheng@arm.com>
3535 PR tree-optimization/82163
3536 * tree-ssa-loop-manip.h (verify_loop_closed_ssa): New parameter.
3537 (checking_verify_loop_closed_ssa): New parameter.
3538 * tree-ssa-loop-manip.c (check_loop_closed_ssa_use): Delete.
3539 (check_loop_closed_ssa_stmt): Delete.
3540 (check_loop_closed_ssa_def, check_loop_closed_ssa_bb): New functions.
3541 (verify_loop_closed_ssa): Check loop closed ssa form for LOOP.
3542 (tree_transform_and_unroll_loop): Check loop closed ssa form only for
3545 2017-09-25 Pekka Jaaskelainen <pekka@parmance.com>
3547 * brig-builtins.def: Treat HSAIL barrier builtins as
3548 setjmp/longjump style functions.
3550 2017-09-25 Richard Sandiford <richard.sandiford@linaro.org>
3552 * target.def (constant_alignment): New hook.
3553 * defaults.h (CONSTANT_ALIGNMENT): Delete.
3554 * doc/tm.texi.in (CONSTANT_ALIGNMENT): Replace with...
3555 (TARGET_CONSTANT_ALIGNMENT): ...this new hook.
3556 * doc/tm.texi: Regenerate.
3557 * targhooks.h (default_constant_alignment): Declare.
3558 (constant_alignment_word_strings): Likewise.
3559 * targhooks.c (default_constant_alignment): New function.
3560 (constant_alignment_word_strings): Likewise.
3561 * builtins.c (get_object_alignment_2): Use targetm.constant_alignment
3562 instead of CONSTANT_ALIGNMENT.
3563 * varasm.c (align_variable, get_variable_align, build_constant_desc)
3564 (force_const_mem): Likewise.
3565 * config/aarch64/aarch64.h (CONSTANT_ALIGNMENT): Delete.
3566 * config/aarch64/aarch64.c (aarch64_constant_alignment): New function.
3567 (aarch64_classify_address): Call it instead of CONSTANT_ALIGNMENT.
3568 (TARGET_CONSTANT_ALIGNMENT): Redefine.
3569 * config/alpha/alpha.h (CONSTANT_ALIGNMENT): Delete commented-out
3571 * config/arc/arc.h (CONSTANT_ALIGNMENT): Delete.
3572 * config/arc/arc.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3573 constant_alignment_word_strings.
3574 * config/arm/arm.h (CONSTANT_ALIGNMENT_FACTOR): Delete.
3575 (CONSTANT_ALIGNMENT): Likewise.
3576 * config/arm/arm.c (TARGET_CONSTANT_ALIGNMENT): Redefine.
3577 (arm_constant_alignment): New function.
3578 * config/bfin/bfin.h (CONSTANT_ALIGNMENT): Delete.
3579 * config/bfin/bfin.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3580 constant_alignment_word_strings.
3581 * config/cr16/cr16.h (CONSTANT_ALIGNMENT): Delete.
3582 * config/cr16/cr16.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3583 constant_alignment_word_strings.
3584 * config/cris/cris.h (CONSTANT_ALIGNMENT): Delete.
3585 * config/cris/cris.c (TARGET_CONSTANT_ALIGNMENT): Redefine.
3586 (cris_constant_alignment): New function.
3587 * config/epiphany/epiphany.h (CONSTANT_ALIGNMENT): Delete.
3588 * config/epiphany/epiphany.c (TARGET_CONSTANT_ALIGNMENT): Redefine.
3589 (epiphany_constant_alignment): New function.
3590 * config/fr30/fr30.h (CONSTANT_ALIGNMENT): Delete.
3591 * config/fr30/fr30.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3592 constant_alignment_word_strings.
3593 * config/frv/frv.h (CONSTANT_ALIGNMENT): Delete.
3594 * config/frv/frv.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3595 constant_alignment_word_strings.
3596 * config/ft32/ft32.h (CONSTANT_ALIGNMENT): Delete.
3597 * config/ft32/ft32.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3598 constant_alignment_word_strings.
3599 * config/i386/i386.h (CONSTANT_ALIGNMENT): Delete.
3600 * config/i386/i386-protos.h (ix86_constant_alignment): Delete.
3601 * config/i386/i386.c (ix86_constant_alignment): Make static.
3602 Use the same interface as the target hook.
3603 (TARGET_CONSTANT_ALIGNMENT): Redefine.
3604 * config/ia64/ia64.h (CONSTANT_ALIGNMENT): Delete.
3605 * config/ia64/ia64.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3606 constant_alignment_word_strings.
3607 * config/iq2000/iq2000.h (CONSTANT_ALIGNMENT): Delete.
3608 * config/iq2000/iq2000.c (iq2000_constant_alignment): New function.
3609 (TARGET_CONSTANT_ALIGNMENT): Redefine.
3610 * config/lm32/lm32.h (CONSTANT_ALIGNMENT): Delete.
3611 * config/lm32/lm32.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3612 constant_alignment_word_strings.
3613 * config/m32r/m32r.h (CONSTANT_ALIGNMENT): Delete.
3614 * config/m32r/m32r.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3615 constant_alignment_word_strings.
3616 * config/mcore/mcore.h (CONSTANT_ALIGNMENT): Delete.
3617 * config/mcore/mcore.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3618 constant_alignment_word_strings.
3619 * config/microblaze/microblaze.h (CONSTANT_ALIGNMENT): Delete.
3620 * config/microblaze/microblaze.c (microblaze_constant_alignment):
3622 (TARGET_CONSTANT_ALIGNMENT): Redefine.
3623 * config/mips/mips.h (CONSTANT_ALIGNMENT): Delete.
3624 * config/mips/mips.c (mips_constant_alignment): New function.
3625 (TARGET_CONSTANT_ALIGNMENT): Redefine.
3626 * config/mmix/mmix.h (CONSTANT_ALIGNMENT): Delete.
3627 * config/mmix/mmix-protos.h (mmix_constant_alignment): Delete.
3628 * config/mmix/mmix.c (TARGET_CONSTANT_ALIGNMENT): Redefine.
3629 (mmix_constant_alignment): Make static. Use the same interface
3631 * config/moxie/moxie.h (CONSTANT_ALIGNMENT): Delete.
3632 * config/moxie/moxie.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3633 constant_alignment_word_strings.
3634 * config/nios2/nios2.h (CONSTANT_ALIGNMENT): Delete.
3635 * config/nios2/nios2.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3636 constant_alignment_word_strings.
3637 * config/pa/pa.h (CONSTANT_ALIGNMENT): Delete.
3638 * config/pa/pa.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3639 constant_alignment_word_strings.
3640 * config/powerpcspe/powerpcspe.h (CONSTANT_ALIGNMENT): Delete.
3641 * config/powerpcspe/powerpcspe.c (TARGET_CONSTANT_ALIGNMENT): Redefine.
3642 (rs6000_constant_alignment): New function.
3643 * config/riscv/riscv.h (CONSTANT_ALIGNMENT): Delete.
3644 * config/riscv/riscv.c (riscv_constant_alignment): New function.
3645 (TARGET_CONSTANT_ALIGNMENT): Redefine.
3646 * config/rs6000/rs6000.h (CONSTANT_ALIGNMENT): Delete.
3647 * config/rs6000/rs6000.c (TARGET_CONSTANT_ALIGNMENT): Redefine.
3648 (rs6000_constant_alignment): New function.
3649 * config/s390/s390.h (CONSTANT_ALIGNMENT): Delete.
3650 * config/s390/s390.c (s390_constant_alignment): New function.
3651 (TARGET_CONSTANT_ALIGNMENT): Redefine.
3652 * config/sh/sh.h (CONSTANT_ALIGNMENT): Delete.
3653 * config/sh/sh.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3654 constant_alignment_word_strings.
3655 * config/sparc/sparc.h (CONSTANT_ALIGNMENT): Delete.
3656 * config/sparc/sparc.c (TARGET_CONSTANT_ALIGNMENT): Redefine.
3657 (sparc_constant_alignment): New function.
3658 * config/spu/spu.h (CONSTANT_ALIGNMENT): Delete.
3659 * config/spu/spu.c (spu_constant_alignment): New function.
3660 (TARGET_CONSTANT_ALIGNMENT): Redefine.
3661 * config/stormy16/stormy16.h (CONSTANT_ALIGNMENT): Delete.
3662 * config/stormy16/stormy16.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3663 constant_alignment_word_strings.
3664 * config/tilegx/tilegx.h (CONSTANT_ALIGNMENT): Delete.
3665 * config/tilegx/tilegx.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3666 constant_alignment_word_strings.
3667 * config/tilepro/tilepro.h (CONSTANT_ALIGNMENT): Delete.
3668 * config/tilepro/tilepro.c (TARGET_CONSTANT_ALIGNMENT): Redefine to
3669 constant_alignment_word_strings.
3670 * config/visium/visium.h (CONSTANT_ALIGNMENT): Delete.
3671 * config/visium/visium.c (TARGET_CONSTANT_ALIGNMENT): Redefine.
3672 (visium_constant_alignment): New function.
3673 * config/xtensa/xtensa.h (CONSTANT_ALIGNMENT): Delete.
3674 * config/xtensa/xtensa.c (TARGET_CONSTANT_ALIGNMENT): Redefine.
3675 (xtensa_constant_alignment): New function.
3676 * system.h (CONSTANT_ALIGNMENT): Poison.
3678 2017-09-25 Will Schmidt <will_schmidt@vnet.ibm.com>
3680 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Add handling
3681 for early folding of vector stores (ALTIVEC_BUILTIN_ST_*).
3682 (rs6000_builtin_valid_without_lhs): New helper function.
3683 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
3684 Remove obsoleted code for handling ALTIVEC_BUILTIN_VEC_ST.
3686 2017-09-25 Richard Sandiford <richard.sandiford@linaro.org>
3688 * target.h (vec_perm_indices): Use unsigned short rather than
3690 (auto_vec_perm_indices): Likewise.
3691 * config/aarch64/aarch64.c (aarch64_vectorize_vec_perm_const_ok):
3692 Use unsigned int rather than unsigned char.
3693 * config/arm/arm.c (arm_vectorize_vec_perm_const_ok): Likewise.
3695 2017-09-25 Richard Biener <rguenther@suse.de>
3697 * cfgloop.h (sort_sibling_loops): Declare.
3698 * cfgloop.c (sort_sibling_loops_cmp): New helper.
3699 (sort_sibling_loops): New function sorting the sibling loop list
3701 * graphite.c (graphite_transform_loops): Sort sibling loops.
3703 2017-09-25 Richard Sandiford <richard.sandifird@linaro.org>
3705 * target.def (vec_perm_const_ok): Change sel parameter to
3707 * optabs-query.c (can_vec_perm_p): Update accordingly.
3708 * doc/tm.texi: Regenerate.
3709 * config/aarch64/aarch64.c (expand_vec_perm_d): Change perm to
3710 auto_vec_perm_indices and remove separate nelt field.
3711 (aarch64_evpc_trn, aarch64_evpc_uzp, aarch64_evpc_zip)
3712 (aarch64_evpc_ext, aarch64_evpc_rev, aarch64_evpc_dup)
3713 (aarch64_evpc_tbl, aarch64_expand_vec_perm_const_1)
3714 (aarch64_expand_vec_perm_const): Update accordingly.
3715 (aarch64_vectorize_vec_perm_const_ok): Likewise. Change sel
3716 to vec_perm_indices.
3717 * config/arm/arm.c (expand_vec_perm_d): Change perm to
3718 auto_vec_perm_indices and remove separate nelt field.
3719 (arm_evpc_neon_vuzp, arm_evpc_neon_vzip, arm_evpc_neon_vrev)
3720 (arm_evpc_neon_vtrn, arm_evpc_neon_vext, arm_evpc_neon_vtbl)
3721 (arm_expand_vec_perm_const_1, arm_expand_vec_perm_const): Update
3723 (arm_vectorize_vec_perm_const_ok): Likewise. Change sel
3724 to vec_perm_indices.
3725 * config/i386/i386.c (ix86_vectorize_vec_perm_const_ok): Change
3726 sel to vec_perm_indices.
3727 * config/ia64/ia64.c (ia64_vectorize_vec_perm_const_ok): Likewise.
3728 * config/mips/mips.c (mips_vectorize_vec_perm_const_ok): Likewise.
3729 * config/powerpcspe/powerpcspe.c (rs6000_vectorize_vec_perm_const_ok):
3731 * config/rs6000/rs6000.c (rs6000_vectorize_vec_perm_const_ok):
3734 2017-09-25 Pierre-Marie de Rodat <derodat@adacore.com>
3737 * dwarf2out.c (dwarf2out_early_global_decl): Call dwarf2out_decl
3738 on the FUNCTION_DECL function context if it has a DIE that is a
3741 2017-09-25 Richard Biener <rguenther@suse.de>
3743 PR tree-optimization/82285
3744 * tree-vect-patterns.c (vect_recog_bool_pattern): Also handle
3747 2017-09-25 Tom de Vries <tom@codesourcery.com>
3751 * config/nvptx/nvptx.c (nvptx_output_call_insn): Add exit after call to
3754 2017-09-25 Richard Biener <rguenther@suse.de>
3756 * graphite-optimize-isl.c (optimize_isl): Fail and dump if
3757 ISL errors other than isl_error_quota happen. Dump if the
3758 schedule is the same.
3759 * graphite-sese-to-poly.c (build_poly_scop): Fail on ISL
3760 errors instead of aborting inside ISL.
3762 2017-09-25 Iain Sandoe <iain@codesourcery.com>
3765 * config/i386/darwin.h (REAL_LIB_SPEC): New; put libSystem ahead
3766 of libgcc_eh for m64.
3767 * config/i386/darwin64.h: Likewise.
3769 2017-09-25 Richard Biener <rguenther@suse.de>
3772 * dwarf2out.c (gen_enumeration_type_die): Do not add alignment
3773 attribute for incomplete types nor twice for complete ones.
3775 2017-09-24 Uros Bizjak <ubizjak@gmail.com>
3778 * config/i386/i386.c (ix86_print_operand_address_as): Encode
3779 %esp as %rsp to avoid 0x67 prefix if there is no index or base
3782 2017-09-23 Uros Bizjak <ubizjak@gmail.com>
3785 * config/i386/i386.opt (mprefer-avx256): Use
3786 ix86_target_flags variable.
3787 * config/i386/i386.c (ix86_target_string): Move
3788 -mprefer-avx256 to flag2_opts.
3790 2017-09-22 Jakub Jelinek <jakub@redhat.com>
3793 * match.pd: Simplify x == -1 & y == -1 into (x & y) == -1
3794 and x != -1 | y != -1 into (x & y) != -1.
3796 2017-09-22 Steve Ellcey <sellcey@cavium.com>
3798 * config.gcc: Add new case statement to set
3799 default_gnu_indirect_function. Remove it from x86_64-*-linux*,
3800 i[34567]86-*, powerpc*-*-linux*spe*, powerpc*-*-linux*, s390-*-linux*,
3801 s390x-*-linux* case statements. Added aarch64 to the list of
3802 supported architectures.
3804 2017-09-22 Richard Sandiford <richard.sandiford@linaro.org>
3806 PR tree-optimization/82289
3807 * tree-vect-data-refs.c (vect_get_peeling_costs_all_drs): Check
3808 STMT_VINFO_RELEVANT_P.
3810 2017-09-22 Richard Sandiford <richard.sandiford@linaro.org>
3811 Alan Hayward <alan.hayward@arm.com>
3812 David Sherwood <david.sherwood@arm.com>
3814 * tree-vrp.c (extract_range_from_multiplicative_op_1): Assert
3815 for VR_RANGE only; don't allow VR_ANTI_RANGE.
3816 (extract_range_from_binary_expr_1): Don't call
3817 extract_range_from_multiplicative_op_1 if !range_int_cst_p.
3819 2017-09-22 Richard Sandiford <richard.sandiford@linaro.org>
3820 Alan Hayward <alan.hayward@arm.com>
3821 David Sherwood <david.sherwood@arm.com>
3823 * target.def (preferred_vector_alignment): New hook.
3824 * doc/tm.texi.in (TARGET_VECTORIZE_PREFERRED_VECTOR_ALIGNMENT): New
3826 * doc/tm.texi: Regenerate.
3827 * targhooks.h (default_preferred_vector_alignment): Declare.
3828 * targhooks.c (default_preferred_vector_alignment): New function.
3829 * tree-vectorizer.h (dataref_aux): Add a target_alignment field.
3831 (DR_TARGET_ALIGNMENT): New macro.
3832 (aligned_access_p): Update commentary.
3833 (vect_known_alignment_in_bytes): New function.
3834 * tree-vect-data-refs.c (vect_calculate_required_alignment): New
3836 (vect_compute_data_ref_alignment): Set DR_TARGET_ALIGNMENT.
3837 Calculate the misalignment based on the target alignment rather than
3839 (vect_update_misalignment_for_peel): Use DR_TARGET_ALIGMENT
3840 rather than TYPE_ALIGN / BITS_PER_UNIT to update the misalignment.
3841 (vect_enhance_data_refs_alignment): Mask the byte misalignment with
3842 the target alignment, rather than masking the element misalignment
3843 with the number of elements in a vector. Also use the target
3844 alignment when calculating the maximum number of peels.
3845 (vect_find_same_alignment_drs): Use vect_calculate_required_alignment
3846 instead of TYPE_ALIGN_UNIT.
3847 (vect_duplicate_ssa_name_ptr_info): Remove stmt_info parameter.
3848 Measure DR_MISALIGNMENT relative to DR_TARGET_ALIGNMENT.
3849 (vect_create_addr_base_for_vector_ref): Update call accordingly.
3850 (vect_create_data_ref_ptr): Likewise.
3851 (vect_setup_realignment): Realign by ANDing with
3852 -DR_TARGET_MISALIGNMENT.
3853 * tree-vect-loop-manip.c (vect_gen_prolog_loop_niters): Calculate
3854 the number of peels based on DR_TARGET_ALIGNMENT.
3855 * tree-vect-stmts.c (get_group_load_store_type): Compare the gap
3856 with the guaranteed alignment boundary when deciding whether
3858 (vectorizable_mask_load_store): Interpret DR_MISALIGNMENT
3859 relative to DR_TARGET_ALIGNMENT instead of TYPE_ALIGN_UNIT.
3860 (ensure_base_align): Remove stmt_info parameter. Get the
3861 target base alignment from DR_TARGET_ALIGNMENT.
3862 (vectorizable_store): Update call accordingly. Interpret
3863 DR_MISALIGNMENT relative to DR_TARGET_ALIGNMENT instead of
3865 (vectorizable_load): Likewise.
3867 2017-09-22 Richard Sandiford <richard.sandiford@linaro.org>
3868 Alan Hayward <alan.hayward@arm.com>
3869 David Sherwood <david.sherwood@arm.com>
3871 * tree-vectorizer.h (vect_get_scalar_dr_size): New function.
3872 * tree-vect-data-refs.c (vect_update_misalignment_for_peel): Use it.
3873 (vect_enhance_data_refs_alignment): Likewise.
3875 2017-09-22 Richard Earnshaw <richard.earnshaw@arm.com>
3877 * config/arm/parsecpu.awk (fatal): Note that we've encountered an
3878 error. Only quit immediately if parsing is complete.
3879 (BEGIN): Initialize fatal_err and parse_done.
3880 (begin fpu, end fpu): Check number of arguments.
3881 (begin arch, end arch): Likewise.
3882 (begin cpu, end cpu): Likewise.
3883 (cname, tune for, tune flags, architecture, fpu, option): Likewise.
3884 (optalias): Likewise.
3886 2017-09-22 Richard Earnshaw <richard.earnshaw@arm.com>
3888 * config.gcc (arm*-*-*): Don't add arm-isa.h to tm_p_file.
3889 * config/arm/arm-isa.h: Delete. Move definitions to ...
3890 * arm-cpus.in: ... here. Use new feature and fgroup values.
3891 * config/arm/arm.c (arm_option_override): Use lower case for feature
3893 * config/arm/arm.h (TARGET_HARD_FLOAT): Likewise.
3894 (TARGET_VFP3, TARGET_VFP5, TARGET_FMA): Likewise.
3895 * config/arm/parsecpu.awk (END): Add new command 'isa'.
3897 (print_isa_bits_for): New function.
3898 (gen_isa): New function.
3899 (gen_comm_data): Use print_isa_bits_for.
3900 (define feature): New keyword.
3901 (define fgroup): New keyword.
3902 * config/arm/t-arm (TM_H): Remove.
3903 (GTM_H): Add arm-isa.h.
3904 (arm-isa.h): Add rule to generate file.
3905 * common/config/arm/arm-common.c: (arm_canon_arch_option): Use lower
3906 case for feature bit names.
3908 2017-09-22 Richard Biener <rguenther@suse.de>
3910 * graphite-isl-ast-to-gimple.c (graphite_verify): Inline into
3912 (graphite_regenerate_ast_isl): Do not reset SCEV. Move debug
3913 print of no dependency loops ...
3914 * graphite.c (graphite_transform_loops): ... here.
3915 (canonicalize_loop_closed_ssa_form): Work from inner to outer
3917 (same_close_phi_node, remove_duplicate_close_phi,
3918 make_close_phi_nodes_unique, defined_in_loop_p): Fold into ...
3919 (canonicalize_loop_closed_ssa): ... here and simplify.
3920 * graphite-optimize-isl.c: Include tree-vectorizer.h.
3921 (optimize_isl): Use dump_printf_loc to tell when we stopped
3922 optimizing because of an ISL timeout.
3924 2017-09-22 Richard Biener <rguenther@suse.de>
3926 PR tree-optimization/82291
3927 * tree-if-conv.c (predicate_mem_writes): Make sure to
3928 remove writes in blocks predicated with false.
3930 2017-09-22 Richard Biener <rguenther@suse.de>
3932 * sese.c: Include cfganal.h.
3933 (if_region_set_false_region): Remove.
3934 (create_if_region_on_edge): Likewise.
3935 (move_sese_in_condition): Re-implement without destroying
3938 2017-09-22 Richard Biener <rguenther@suse.de>
3940 * graphite-isl-ast-to-gimple.c (translate_pending_phi_nodes):
3941 Verify both BBs contain loop PHI nodes before dispatching to
3943 (graphite_regenerate_ast_isl): Do not recompute dominators,
3944 do not verify three times. Restructure for clarity.
3945 * graphite-scop-detection.c (same_close_phi_node,
3946 remove_duplicate_close_phi, make_close_phi_nodes_unique,
3947 defined_in_loop_p, canonicalize_loop_closed_ssa,
3948 canonicalize_loop_closed_ssa_form): Simplify, remove excess
3949 checking and SSA rewrite, move to ...
3950 * graphite.c: ... here. Include ssa.h and tree-ssa-loop-manip.h.
3951 (graphite_initialize): Do not pass in ctx, do not reset the
3952 SCEV cache, compute only dominators.
3953 (graphite_transform_loops): Allocate ISL ctx after
3954 graphite_initialize. Call canonicalize_loop_closed_ssa_form.
3955 Maintain post-dominators only around build_scops.
3956 * sese.c (if_region_set_false_region): Make static. Free
3957 and recompute dominators.
3958 (move_sese_in_condition): Assert we don't get called with
3959 post-dominators computed.
3960 * sese.h (if_region_set_false_region): Remove.
3962 2017-09-22 Sergey Shalnov <sergey.shalnov@intel.com>
3964 * config/i386/sse.md ("mov<mode>_internal"): Use <sseinsnmode>
3965 mode attribute for TARGET_AVX512VL.
3967 2017-09-21 Sergey Shalnov <sergey.shalnov@intel.com>
3969 * config/i386/i386.opt (mprefer-avx256): New option.
3970 * config/i386/i386.c (ix86_target_string): Add -mprefer-avx256
3972 (ix86_preferred_simd_mode): Return 256-bit AVX modes
3973 for TARGET_PREFER_AVX256.
3974 * doc/invoke.texi (x86 Options): Document -mprefer-avx256.
3976 2017-09-21 Jeff Law <law@redhat.com>
3978 * config/i386/i386.c (ix86_adjust_stack_and_probe_stack_clash):
3979 Fix dump output if the only stack space is for pushed registers.
3981 2017-09-21 Richard Sandiford <richard.sandiford@linaro.org>
3983 * config/spu/spu.c (spu_sched_adjust_cost): Update after renaming
3986 2017-09-21 Martin Sebor <msebor@redhat.com>
3989 * doc/extend.texi (attribute ifunc): Avoid relying on ill-formed
3990 code (in C++) or code that triggers warnings.
3992 2017-09-21 Eric Botcazou <ebotcazou@adacore.com>
3994 * stor-layout.c (bit_from_pos): Do not distribute the conversion.
3996 2017-09-21 Segher Boessenkool <segher@kernel.crashing.org>
3998 * haifa-sched.c: Rename insn_cost to insn_sched_cost.
3999 * sched-rgn.c: Ditto.
4000 * sel-sched-ir.c: Ditto.
4002 2017-09-21 Alexander Monakov <amonakov@ispras.ru>
4004 * toplev.h (set_random_seed): Adjust return type.
4005 * toplev.c (init_local_tick): Move eager initialization of random_seed
4006 to get_random_seed. Adjust comment.
4007 (init_random_seed): Inline to get_random_seed, delete.
4008 (get_random_seed): Initialize random_seed lazily.
4009 (set_random_seed): Do not return previous value.
4010 (print_switch_value): Do not call get_random_seed.
4012 2017-09-21 Evgeny Kudryashov <kudryashov@ispras.ru>
4014 * cgraph.c (delete_function_version): New, broken out from...
4015 (cgraph_node::delete_function_version): ...here. Rename to
4016 cgraph_node::delete_function_version_by_decl. Update all uses.
4017 (cgraph_node::remove): Call delete_function_version.
4019 2017-09-21 Jakub Jelinek <jakub@redhat.com>
4022 * tree-inline.c (expand_call_inline): Emit clobber stmts for
4023 VAR_DECLs to which addressable non-volatile parameters are mapped
4024 and for id->retvar after the return value assignment. Clear
4025 id->retval and id->retbnd after inlining.
4027 2017-09-21 Richard Biener <rguenther@suse.de>
4029 PR tree-optimization/82276
4030 PR tree-optimization/82244
4031 * tree-vrp.c (build_assert_expr_for): Set
4032 SSA_NAME_OCCURS_IN_ABNORMAL_PHI if the variable we assert on
4034 (remove_range_assertions): Revert earlier change.
4036 2017-09-21 Wilco Dijkstra <wdijkstr@arm.com>
4039 * config/aarch64/aarch64.h (LIBGCC2_UNWIND_ATTRIBUTE): Define.
4041 2017-09-21 Richard Biener <rguenther@suse.de>
4043 * graphite-isl-ast-to-gimple.c (graphite_regenerate_ast_isl):
4044 Restore valid IL after code generation errors.
4045 * graphite.c (graphite_transform_loops): Diagnose code
4046 generation issues as MSG_MISSED_OPTIMIZATION and continue
4047 with processing SCOPs.
4049 2017-09-21 Richard Sandiford <richard.sandiford@linaro.org>
4050 Alan Hayward <alan.hayward@arm.com>
4051 David Sherwood <david.sherwood@arm.com>
4053 * calls.c (compute_argument_addresses): Use simplify_gen_binary
4054 rather than choosing between plus_constant and gen_rtx_<CODE>.
4055 * expr.c (emit_push_insn): Likewise.
4056 (expand_expr_real_2): Likewise.
4058 2017-09-21 Richard Sandiford <richard.sandiford@linaro.org>
4059 Alan Hayward <alan.hayward@arm.com>
4060 David Sherwood <david.sherwood@arm.com>
4062 * loop-unroll.c (split_iv): Call copy_rtx on the step.
4064 2017-09-21 Richard Sandiford <richard.sandiford@linaro.org>
4065 Alan Hayward <alan.hayward@arm.com>
4066 David Sherwood <david.sherwood@arm.com>
4068 * tree.c (find_atomic_core_type): Check tree_fits_uhwi_p before
4069 calling tree_to_uhwi.
4071 2017-09-21 Richard Sandiford <richard.sandiford@linaro.org>
4072 Alan Hayward <alan.hayward@arm.com>
4073 David Sherwood <david.sherwood@arm.com>
4075 * tree-ssa-ccp.c (get_value_for_expr): Use a positive test for
4076 INTEGER_CST rather than a negative test for ADDR_EXPR.
4078 2017-09-21 Richard Sandiford <richard.sandiford@linaro.org>
4079 Alan Hayward <alan.hayward@arm.com>
4080 David Sherwood <david.sherwood@arm.com>
4082 * tree-vrp.c (extract_range_from_binary_expr_1): Check
4083 int_cst_rangeN before calling value_range_constant_singleton (&vrN).
4085 2017-09-21 Richard Biener <rguenther@suse.de>
4087 PR tree-optimization/71351
4088 * graphite-isl-ast-to-gimple.c (translate_isl_ast_to_gimple::
4089 graphite_create_new_loop_guard): Remove, fold remaining parts
4091 (translate_isl_ast_node_for): ... here and simplify.
4093 2017-09-21 Jakub Jelinek <jakub@redhat.com>
4096 * config/i386/i386.md (*movqi_internal): Replace (=q,q) alternative
4097 with (=Q,Q), (=R,R) and (=r,r) alternatives, only enable the
4098 latter two for 64-bit, renumber alternatives, for -Os imov (=q,n)
4099 alternative always use QI mode, for -Os imov (=R,R) alternative
4100 always use SI mode, for imov (=Q,Q) or (=r,r) alternatives
4103 2017-09-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
4104 Jeff Law <law@redhat.com>
4106 * config/s390/s390.c (MIN_UNROLL_PROBES): Define.
4107 (allocate_stack_space): New function, partially extracted from
4109 (s390_emit_prologue): Track offset to most recent stack probe.
4110 Code to allocate space moved into allocate_stack_space.
4111 Dump actions when no stack is allocated.
4112 (s390_prologue_plus_offset): New function.
4113 (s390_emit_stack_probe): Likewise.
4115 2017-09-20 Alexandre Oliva <aoliva@redhat.com>
4117 * common.opt (Wa, Wl, Wp, g, gz=): Add
4119 (gno-column-info): Remove.
4120 (gcolumn-info): Drop RejectNegative.
4122 (gno-record-gcc-switches): Remove.
4123 (grecord-gcc-switches): Drop RejectNegative.
4124 (gno-split-dwarf): Remove.
4125 (gsplit-dwarf): Drop RejectNegative.
4126 (gno-strict-dwarf): Remove.
4127 (gstrict-dwarf): Drop RejectNegative.
4128 * config/darwin.opt (gfull, gused): Add RejectNegative.
4129 * dwarf2out.c (gen_producer_string): Drop
4130 gno-record-gcc-switches handler.
4131 * optc-gen.awk: Add g to prefixes with negative forms.
4132 * opts-common.c (remapping_prefix_p): New.
4133 (find_opt): Check it.
4134 (generate_canonical_option): Test g prefix.
4135 (option_map): Add -gno- mapping.
4136 (add_misspelling_candidates): Check remapping_prefix_p.
4138 2017-09-20 Jeff Law <law@redhat.com>
4140 * config/powerpcspe/powerpcspe.c (rs6000_expand_prologue): Fix
4141 thinko in stack clash protection support.
4143 * explow.c (compute_stack_clash_protection_loop_data): Use
4144 CONST_INT_P instead of explicit test. Verify object is a
4145 CONST_INT_P before looking at INTVAL.
4146 (anti_adjust_stack_and_probe_stack_clash): Use CONST_INT_P
4147 instead of explicit test.
4149 2017-09-20 Segher Boessenkool <segher@kernel.crashing.org>
4152 * config/rs6000/rs6000.md (stack_restore_tie): Store to a scratch
4153 address instead of to r1 and r11.
4155 2017-09-20 Sebastian Peryt <sebastian.peryt@intel.com>
4157 * config.gcc: Support "knm".
4158 * config/i386/driver-i386.c (host_detect_local_cpu): Detect "knm".
4159 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
4161 * config/i386/i386.c (m_KNM): Define.
4162 (processor_target_table): Add "knm".
4164 (ix86_option_override_internal): Add "knm".
4165 (ix86_issue_rate): Add PROCESSOR_KNM.
4166 (ix86_adjust_cost): Ditto.
4167 (ia32_multipass_dfa_lookahead): Ditto.
4168 (get_builtin_code_for_version): Handle PROCESSOR_KNM.
4169 (fold_builtin_cpu): Add M_INTEL_KNM.
4170 * config/i386/i386.h (processor_costs): Define TARGET_KNM.
4171 (processor_type): Add PROCESSOR_KNM.
4172 * config/i386/x86-tune.def: Add m_KNM.
4173 * doc/invoke.texi: Add knm as x86 -march=/-mtune= CPU type.
4175 2017-09-20 Richard Biener <rguenther@suse.de>
4177 PR tree-optimization/80213
4178 * graphite-scop-detection.c (trivially_empty_bb_p): Labels
4179 are allowed in empty BBs as well.
4180 (canonicalize_loop_closed_ssa): Also look for other complex
4182 (scop_detection::get_sese): Include the loop-closed PHI block
4184 (scop_detection::merge_sese): Remove code adding extra blocks.
4185 (scop_detection::region_has_one_loop): Adjust for get_sese changes.
4186 (build_scops): Assert the final returned scop is invalid.
4188 2017-09-20 Richard Biener <rguenther@suse.de>
4190 PR tree-optimization/82264
4191 * tree-ssa-sccvn.c (vn_phi_eq): Use safe_dyn_cast to check
4193 (vn_phi_lookup): Likewise.
4194 (vn_phi_insert): Likewise.
4196 2017-09-20 Jakub Jelinek <jakub@redhat.com>
4198 * dwarf2out.c (tree_add_const_value_attribute): For INTEGER_CST
4199 that fits into uhwi or shwi, add DW_AT_const_value regardless
4200 of early_dwarf without going through RTL, using add_AT_unsigned
4203 * dwarf2out.c (DEBUG_LTO_DWO_INFO_SECTION): Reorder defines.
4204 (DEBUG_LTO_ABBREV_SECTION): Likewise.
4205 (DEBUG_LTO_MACINFO_SECTION): Likewise.
4206 (DEBUG_MACRO_SECTION): Likewise.
4207 (DEBUG_LTO_MACRO_SECTION): Likewise.
4208 (DEBUG_STR_DWO_SECTION): Likewise.
4209 (DEBUG_LTO_STR_DWO_SECTION): Likewise.
4210 (DEBUG_LTO_LINE_SECTION): Drop .dwo suffix from the name.
4211 (DEBUG_LTO_DWO_LINE_SECTION): Define.
4212 (DEBUG_LTO_LINE_STR_SECTION): Define.
4213 (init_sections_and_labels): Initialize debug_line_str_section
4214 variable. Initialize debug_loc_section for -gdwarf-5 to
4215 DEBUG_LOCLISTS_SECTION. Formatting fixes.
4217 2017-09-20 Richard Biener <rguenther@suse.de>
4219 * graphite-sese-to-poly.c (extract_affine): Properly handle
4220 POINTER_PLUS_EXPR, BIT_NOT_EXPR and conversion to signed.
4222 2017-09-20 Richard Biener <rguenther@suse.de>
4224 PR tree-optimization/81373
4225 * graphite-scop-detection.c (build_cross_bb_scalars_def):
4226 Force SESE live-out defs to be handled even if they are
4229 2017-09-19 Jeff Law <law@redhat.com>
4231 * combine-stack-adj.c (combine_stack_adjustments_for_block): Do
4232 nothing for stack adjustments with REG_STACK_CHECK.
4233 * sched-deps.c (parse_add_or_inc): Reject insns with
4234 REG_STACK_CHECK from dependency breaking.
4235 * config/i386/i386.c (pro_epilogue_adjust_stack): Return insn.
4236 (ix86_adjust_satck_and_probe_stack_clash): Add REG_STACK_NOTEs.
4237 * reg-notes.def (STACK_CHECK): New note.
4239 * config/i386/i386.c (ix86_adjust_stack_and_probe_stack_clash): New.
4240 (ix86_expand_prologue): Dump stack clash info as needed.
4241 Call ix86_adjust_stack_and_probe_stack_clash as needed.
4243 * function.c (dump_stack_clash_frame_info): New function.
4244 * function.h (dump_stack_clash_frame_info): Prototype.
4245 (enum stack_clash_probes): New enum.
4247 * config/alpha/alpha.c (alpha_expand_prologue): Also check
4248 flag_stack_clash_protection.
4249 * config/arm/arm.c (arm_compute_static_chain_stack_bytes): Likewise.
4250 (arm_expand_prologue, thumb1_expand_prologue): Likewise.
4251 (arm_frame_pointer_required): Likewise.
4252 * config/ia64/ia64.c (ia64_compute_frame_size): Likewise.
4253 (ia64_expand_prologue): Likewise.
4254 * config/mips/mips.c (mips_expand_prologue): Likewise.
4255 * config/powerpcspe/powerpcspe.c (rs6000_expand_prologue): Likewise.
4256 * config/sparc/sparc.c (sparc_expand_prologue): Likewise.
4257 (sparc_flat_expand_prologue): Likewise.
4258 * config/spu/spu.c (spu_expand_prologue): Likewise.
4260 * explow.c: Include "params.h".
4261 (anti_adjust_stack_and_probe_stack_clash): New function.
4262 (get_stack_check_protect): Likewise.
4263 (compute_stack_clash_protection_loop_data): Likewise.
4264 (emit_stack_clash_protection_loop_start): Likewise.
4265 (emit_stack_clash_protection_loop_end): Likewise.
4266 (allocate_dynamic_stack_space): Use get_stack_check_protect.
4267 Use anti_adjust_stack_and_probe_stack_clash.
4268 * explow.h (compute_stack_clash_protection_loop_data): Prototype.
4269 (emit_stack_clash_protection_loop_start): Likewise.
4270 (emit_stack_clash_protection_loop_end): Likewise.
4271 * rtl.h (get_stack_check_protect): Prototype.
4272 * target.def (stack_clash_protection_final_dynamic_probe): New hook.
4273 * targhooks.c (default_stack_clash_protection_final_dynamic_probe): New.
4274 * targhooks.h (default_stack_clash_protection_final_dynamic_probe):
4276 * doc/tm.texi.in (TARGET_STACK_CLASH_PROTECTION_FINAL_DYNAMIC_PROBE):
4278 * doc/tm.texi: Rebuilt.
4279 * config/aarch64/aarch64.c (aarch64_expand_prologue): Use
4280 get_stack_check_protect.
4281 * config/alpha/alpha.c (alpha_expand_prologue): Likewise.
4282 * config/arm/arm.c (arm_expand_prologue): Likewise.
4283 (arm_frame_pointer_required): Likewise.
4284 * config/i386/i386.c (ix86_expand_prologue): Likewise.
4285 * config/ia64/ia64.c (ia64_expand_prologue): Likewise.
4286 * config/mips/mips.c (mips_expand_prologue): Likewise.
4287 * config/powerpcspe/powerpcspe.c (rs6000_emit_prologue): Likewise.
4288 * config/rs6000/rs6000.c (rs6000_emit_prologue): Likewise.
4289 * config/sparc/sparc.c (sparc_expand_prologue): Likewise.
4290 (sparc_flat_expand_prologue): Likewise.
4292 * common.opt (-fstack-clash-protection): New option.
4293 * flag-types.h (enum stack_check_type): Note difference between
4294 -fstack-check= and -fstack-clash-protection.
4295 * params.def (PARAM_STACK_CLASH_PROTECTION_GUARD_SIZE): New PARAM.
4296 (PARAM_STACK_CLASH_PROTECTION_PROBE_INTERVAL): Likewise.
4297 * toplev.c (process_options): Issue warnings/errors for cases
4298 not handled with -fstack-clash-protection.
4299 * doc/invoke.texi (-fstack-clash-protection): Document new option.
4300 (-fstack-check): Note additional problem with -fstack-check=generic.
4301 Note that -fstack-check is primarily for Ada and refer users
4302 to -fstack-clash-protection for stack-clash-protection.
4303 Document new params for stack clash protection.
4305 2017-09-19 Uros Bizjak <ubizjak@gmail.com>
4307 * config/i386/i386.c (ix86_split_long_move): Do not handle
4308 address used for LEA in a special way.
4310 2017-09-19 Segher Boessenkool <segher@kernel.crashing.org>
4312 * simplify-rtx.c (simplify_binary_operation_1): Fix typo in comment.
4314 2017-09-19 Martin Sebor <msebor@redhat.com>
4317 * cgraphunit.c (handle_alias_pairs): Reject aliases between functions
4318 of incompatible types.
4320 2017-09-19 Will Schmidt <will_schmidt@vnet.ibm.com>
4322 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Add handling
4323 for early folding of vector loads (ALTIVEC_BUILTIN_LVX_*).
4324 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
4325 Remove obsoleted code for handling ALTIVEC_BUILTIN_VEC_LD.
4327 2017-09-19 Richard Biener <rguenther@suse.de>
4329 PR tree-optimization/82244
4330 * tree-vrp.c (remove_range_assertions): Do not propagate
4331 a constant to abnormals but replace the assert with a copy.
4333 2017-09-19 Alexander Monakov <amonakov@ispras.ru>
4335 PR rtl-optimization/57878
4336 PR rtl-optimization/68988
4337 * lra-assigns.c (reload_pseudo_compare_func): Remove fragmentation
4338 avoidance test involving non_reload_pseudos. Move frequency test
4339 below the general fragmentation avoidance test.
4341 2017-09-19 Richard Biener <rguenther@suse.de>
4343 PR tree-optimization/69728
4344 * graphite-sese-to-poly.c (schedule_error): New global.
4345 (add_loop_schedule): Handle empty domain by failing the
4347 (build_original_schedule): Handle schedule_error.
4349 2017-09-19 Richard Biener <rguenther@suse.de>
4351 * graphite-scop-detection.c (scop_detection::can_represent_loop):
4352 Do not iterate to sibling loops but only to siblings of inner
4355 2017-09-18 Andreas Schwab <schwab@linux-m68k.org>
4358 * config/m68k/m68k.md (moveq feeding equality comparison): Check
4359 that the registers are different.
4361 2017-09-18 Uros Bizjak <ubizjak@gmail.com>
4363 * config/i386/i386.c (fold_builtin_cpu): Add M_AMDFAM17H
4364 to processor_model and "amdfam17h" to arch_names_table.
4365 * doc/extend.texi (__builtin_cpu_is): Document amdfam17h CPU name.
4367 2017-09-18 Jakub Jelinek <jakub@redhat.com>
4370 * doc/extend.texi: Add @findex entry for __builtin_shuffle.
4372 2017-09-18 Richard Sandiford <richard.sandiford@linaro.org>
4373 Alan Hayward <alan.hayward@arm.com>
4374 David Sherwood <david.sherwood@arm.com>
4376 * tree-vectorizer.h (vect_slp_analyze_operations): Replace parameters
4378 * tree-vect-loop.c (vect_analyze_loop_operations): Update call
4380 * tree-vect-slp.c (vect_slp_analyze_node_operations): Add vec_info *
4381 parameter. Set SLP_TREE_NUMBER_OF_VEC_STMTS here rather than in
4382 vect_schedule_slp_instance.
4383 (vect_slp_analyze_operations): Replace parameters with a vec_info *.
4384 Update call to vect_slp_analyze_node_operations. Simplify return
4386 (vect_slp_analyze_bb_1): Update call accordingly.
4387 (vect_schedule_slp_instance): Remove vectorization_factor parameter.
4388 Don't calculate SLP_TREE_NUMBER_OF_VEC_STMTS here.
4389 (vect_schedule_slp): Update call accordingly.
4391 2017-09-18 Richard Sandiford <richard.sandiford@linaro.org>
4392 Alan Hayward <alan.hayward@arm.com>
4393 David Sherwood <david.sherwood@arm.com>
4395 * tree-vect-data-refs.c (vect_get_smallest_scalar_type): Cope
4396 with types that aren't in fact scalar.
4398 2017-09-18 Richard Sandiford <richard.sandiford@linaro.org>
4400 * tree-vect-slp.c (vect_record_max_nunits): New function,
4402 (vect_build_slp_tree_1): ...here.
4403 (vect_build_slp_tree_2): Call it for phis too.
4405 2017-09-18 Richard Sandiford <richard.sandiford@linaro.org>
4407 * tree-vect-stmts.c (vectorizable_mask_load_store): Pass mask_vectype
4408 to vect_get_vec_def_for_operand when getting the mask operand.
4410 2017-09-18 Richard Sandiford <richard.sandiford@linaro.org>
4411 Alan Hayward <alan.hayward@arm.com>
4412 David Sherwood <david.sherwood@arm.com>
4414 * tree-vect-loop.c (vectorizable_live_operation): Fix type of
4417 2017-09-18 Richard Sandiford <richard.sandiford@linaro.org>
4418 Alan Hayward <alan.hayward@arm.com>
4419 David Sherwood <david.sherwood@arm.com>
4421 * tree-vect-loop.c (vectorizable_live_operation): Fix element size
4422 calculation for vector booleans.
4424 2017-09-18 Richard Sandiford <richard.sandiford@linaro.org>
4425 Alan Hayward <alan.hayward@arm.com>
4426 David Sherwood <david.sherwood@arm.com>
4428 * tree-vect-stmts.c (can_vectorize_live_stmts): New function,
4430 (vect_transform_stmt): ...here.
4431 (vect_analyze_stmt): Use it instead of calling
4432 vectorizable_live_operation directly.
4434 2017-09-18 Cesar Philippidis <cesar@codesourcery.com>
4436 * omp-offload.c (oacc_xform_loop): Enable SIMD vectorization on
4437 non-SIMT targets in acc vector loops.
4439 2017-09-18 Claudiu Zissulescu <claziss@synopsys.com>
4441 * configure.ac: Add arc and check if assembler supports gdwarf2.
4442 * configure: Regenerate.
4444 2017-09-18 Richard Biener <rguenther@suse.de>
4446 PR tree-optimization/82220
4447 * tree-vect-loop.c (vect_estimate_min_profitable_iters): Exclude
4448 epilogue niters from the min_profitable_iters compute.
4450 2017-09-18 Jakub Jelinek <jakub@redhat.com>
4453 * config/i386/i386.c (ix86_init_large_pic_reg): Revert 2017-09-01
4454 changes. Turn CODE_LABEL into NOTE_INSN_DELETED_LABEL immediately.
4455 (ix86_init_pic_reg): Revert 2017-09-01 changes.
4457 2017-09-18 Eric Botcazou <ebotcazou@adacore.com>
4460 * dwarf2cfi.c (add_cfis_to_fde): Do not generate DW_CFA_set_loc after
4461 switching to a new text section.
4463 2017-09-18 Richard Biener <rguenther@suse.de>
4465 * graphite-scop-detection.c (scop_detection::stmt_has_simple_data_ref):
4467 (build_alias_set): Reject aliases with no access function.
4469 2017-09-18 Richard Biener <rguenther@suse.de>
4471 PR tree-optimization/79622
4472 * graphite-scop-detection.c (build_cross_bb_scalars_def): Properly
4474 (build_cross_bb_scalars_use): Likewise.
4476 2017-09-18 Pierre-Marie de Rodat <derodat@adacore.com>
4478 * cgraph.h (cgraph_thunk_info): Fix a typo in a comment.
4480 2017-09-18 Alan Modra <amodra@gmail.com>
4483 * gcc/config/rs6000/rs6000.c (rs6000_return_addr): Use
4484 stack_pointer_rtx for count 0. Update comments. Break up
4485 large rtl expression.
4487 2017-09-17 Daniel Santos <daniel.santos@pobox.com>
4489 * config/i386/i386.c (xlogue_layout::STUB_NAME_MAX_LEN):
4490 Increase to 20 bytes.
4491 (xlogue_layout::s_stub_names): Add an additional size-2 diminsion.
4492 (xlogue_layout::get_stub_name): Modify to select the appropairate sse
4493 or avx version of the stub.
4495 2017-09-17 H.J. Lu <hongjiu.lu@intel.com>
4498 * config/i386/i386.c (ix86_finalize_stack_frame_flags): Properly
4499 compute the minimum stack alignment. Also update preferred stack
4500 boundary for leaf functions.
4502 2017-09-16 Richard Sandiford <richard.sandiford@linaro.org>
4504 PR tree-optimization/82228
4505 * tree-vect-loop.c (vectorizable_live_operation): Move initialization
4508 2017-09-16 Chung-Ju Wu <jasonwucj@gmail.com>
4510 * common/config/nds32/nds32-common.c
4511 (nds32_option_optimization_table): Refine formatting.
4512 (nds32_option_optimization_table): Use -fsched-pressure and
4513 -fomit-frame-pointer for specific optimization level.
4515 2017-09-16 Chung-Ju Wu <jasonwucj@gmail.com>
4517 * config/nds32/nds32.c: Refine formatting and comments.
4518 * config/nds32/nds32.h: Likewise.
4519 * config/nds32/nds32.md: Likewise.
4520 * config/nds32/nds32-cost.c: Likewise.
4521 * config/nds32/nds32-isr.c: Likewise.
4522 * config/nds32/nds32-md-auxiliary.c: Likewise.
4523 * config/nds32/nds32-multiple.md: Likewise.
4524 * config/nds32/nds32-predicates.c: Likewise.
4526 2017-09-15 Andrew Sutton <andrew.n.sutton@gmail.com>
4527 Jakub Jelinek <jakub@redhat.com>
4529 Add support for -std=c++2a.
4530 * doc/cpp.texi (__cplusplus): Document value for -std=c++2a
4532 * doc/invoke.texi: Document -std=c++2a and -std=gnu++2a.
4534 2017-09-15 Steve Ellcey <sellcey@cavium.com>
4537 * doc/extend.texi (Common Function Attributes): Add
4538 references to ARM, AArch64, and S/390 specific attributes.
4539 (Function Specific Option Pragmas): Add AArch64 and S/390
4540 to list of back ends that support the target pragma.
4542 2017-09-15 Nathan Sidwell <nathan@acm.org>
4544 * doc/standards.texi: Fix C++17 description. Update URLs for
4547 2017-09-15 Bernd Edlinger <bernd.edlinger@hotmail.de>
4549 * common.opt (Wcast-align=strict): New warning option.
4550 * doc/invoke.texi: Document -Wcast-align=strict.
4552 2017-09-15 Pierre-Marie de Rodat <derodat@adacore.com>
4554 * cgraph.h (cgraph_thunk_info): Add comments.
4555 * cgraph.c (cgraph_node::create_thunk): Adjust comment, make
4556 assert for VIRTUAL_* arguments stricter.
4558 2017-09-15 Jackson Woodruff <jackson.woodruff@arm.com>
4560 PR tree-optimization/71026
4561 * match.pd: Move RDIV patterns from fold-const.c
4562 * fold-const.c (distribute_real_division): Removed.
4563 (fold_binary_loc): Remove calls to distribute_real_divison.
4565 2017-09-15 Jakub Jelinek <jakub@redhat.com>
4567 * doc/invoke.texi: Document -std=c++17 and -std=gnu++17 and document
4568 c++1z and gnu++1z as deprecated. Change other references to
4569 -std=c++1z to -std=c++17 and -std=gnu++1z to -std=gnu++17.
4570 Change -Wc++1z-compat to -Wc++17-compat.
4571 * doc/cpp.texi: Document -std=c++17 defines __cplusplus 201703L.
4572 * dwarf2out.c (highest_c_language): Handle C++17.
4573 (gen_compile_unit_die): Likewise.
4575 2017-09-15 Jakub Jelinek <jakub@redhat.com>
4577 PR rtl-optimization/82192
4578 * combine.c (make_extraction): Don't look through non-paradoxical
4579 SUBREGs or TRUNCATE if pos + len is or might be bigger than
4582 2017-09-15 Richard Sandiford <richard.sandiford@linaro.org>
4583 Alan Hayward <alan.hayward@arm.com>
4584 David Sherwood <david.sherwood@arm.com>
4586 * target.def (function_arg_offset): New hook.
4587 * targhooks.h (default_function_arg_offset): Declare.
4588 * targhooks.c (default_function_arg_offset): New function.
4589 * function.c (locate_and_pad_parm): Use
4590 targetm.calls.function_arg_offset instead of FUNCTION_ARG_OFFSET.
4591 * doc/tm.texi.in (FUNCTION_ARG_OFFSET): Replace with...
4592 (TARGET_FUNCTION_ARG_OFFSET): ...this.
4593 * doc/tm.texi: Regenerate.
4594 * config/spu/spu.h (FUNCTION_ARG_OFFSET): Delete.
4595 * config/spu/spu.c (spu_function_arg_offset): New function.
4596 (TARGET_FUNCTION_ARG_OFFSET): Redefine.
4597 * system.h (FUNCTION_ARG_OFFSET): Poison.
4599 2017-09-15 Richard Sandiford <richard.sandiford@linaro.org>
4600 Alan Hayard <alan.hayward@arm.com>
4601 David Sherwood <david.sherwood@arm.com>
4603 * target.def (truly_noop_truncation): New hook.
4604 (mode_rep_extended): Refer to TARGET_TRULY_NOOP_TRUNCATION rather
4605 than TRULY_NOOP_TRUNCATION.
4606 * hooks.h (hook_bool_uint_uint_true): Declare.
4607 * hooks.c (hook_bool_uint_uint_true): New function.
4608 * doc/tm.texi.in (TRULY_NOOP_TRUNCATION): Replace with...
4609 (TARGET_TRULY_NOOP_TRUNCATION): ...this.
4610 * doc/tm.texi: Regenerate.
4611 * combine.c (make_extraction): Refer to TARGET_TRULY_NOOP_TRUNCATION
4612 rather than TRULY_NOOP_TRUNCATION in comments.
4613 (simplify_comparison): Likewise.
4614 (record_truncated_value): Likewise.
4615 * expmed.c (extract_bit_field_1): Likewise.
4616 (extract_split_bit_field): Likewise.
4617 * convert.c (convert_to_integer_1): Use targetm.truly_noop_truncation
4618 instead of TRULY_NOOP_TRUNCATION.
4619 * function.c (assign_parm_setup_block): Likewise.
4620 * machmode.h (TRULY_NOOP_TRUNCATION_MODES_P): Likewise.
4621 * rtlhooks.c: Include target.h.
4622 * config/aarch64/aarch64.h (TRULY_NOOP_TRUNCATION): Delete.
4623 * config/alpha/alpha.h (TRULY_NOOP_TRUNCATION): Delete.
4624 * config/arc/arc.h (TRULY_NOOP_TRUNCATION): Delete.
4625 * config/arm/arm.h (TRULY_NOOP_TRUNCATION): Delete.
4626 * config/avr/avr.h (TRULY_NOOP_TRUNCATION): Delete.
4627 * config/bfin/bfin.h (TRULY_NOOP_TRUNCATION): Delete.
4628 * config/c6x/c6x.h (TRULY_NOOP_TRUNCATION): Delete.
4629 * config/cr16/cr16.h (TRULY_NOOP_TRUNCATION): Delete.
4630 * config/cris/cris.h (TRULY_NOOP_TRUNCATION): Delete.
4631 * config/epiphany/epiphany.h (TRULY_NOOP_TRUNCATION): Delete.
4632 * config/fr30/fr30.h (TRULY_NOOP_TRUNCATION): Delete.
4633 * config/frv/frv.h (TRULY_NOOP_TRUNCATION): Delete.
4634 * config/ft32/ft32.h (TRULY_NOOP_TRUNCATION): Delete.
4635 * config/h8300/h8300.h (TRULY_NOOP_TRUNCATION): Delete.
4636 * config/i386/i386.h (TRULY_NOOP_TRUNCATION): Delete.
4637 * config/ia64/ia64.h (TRULY_NOOP_TRUNCATION): Delete.
4638 * config/iq2000/iq2000.h (TRULY_NOOP_TRUNCATION): Delete.
4639 * config/lm32/lm32.h (TRULY_NOOP_TRUNCATION): Delete.
4640 * config/m32c/m32c.h (TRULY_NOOP_TRUNCATION): Delete.
4641 * config/m32r/m32r.h (TRULY_NOOP_TRUNCATION): Delete.
4642 * config/m68k/m68k.h (TRULY_NOOP_TRUNCATION): Delete.
4643 * config/mcore/mcore.h (TRULY_NOOP_TRUNCATION): Delete.
4644 * config/microblaze/microblaze.h (TRULY_NOOP_TRUNCATION): Delete.
4645 * config/mips/mips.h (TRULY_NOOP_TRUNCATION): Delete.
4646 * config/mips/mips.c (mips_truly_noop_truncation): New function.
4647 (TARGET_TRULY_NOOP_TRUNCATION): Redefine.
4648 * config/mips/mips.md: Refer to TARGET_TRULY_NOOP_TRUNCATION
4649 rather than TRULY_NOOP_TRUNCATION in comments.
4650 * config/mmix/mmix.h (TRULY_NOOP_TRUNCATION): Delete.
4651 * config/mn10300/mn10300.h (TRULY_NOOP_TRUNCATION): Delete.
4652 * config/moxie/moxie.h (TRULY_NOOP_TRUNCATION): Delete.
4653 * config/msp430/msp430.h (TRULY_NOOP_TRUNCATION): Delete.
4654 * config/nds32/nds32.h (TRULY_NOOP_TRUNCATION): Delete.
4655 * config/nios2/nios2.h (TRULY_NOOP_TRUNCATION): Delete.
4656 * config/nvptx/nvptx.h (TRULY_NOOP_TRUNCATION): Delete.
4657 * config/pa/pa.h (TRULY_NOOP_TRUNCATION): Delete.
4658 * config/pdp11/pdp11.h (TRULY_NOOP_TRUNCATION): Delete.
4659 * config/powerpcspe/powerpcspe.h (TRULY_NOOP_TRUNCATION): Delete.
4660 * config/riscv/riscv.h (TRULY_NOOP_TRUNCATION): Delete.
4661 * config/riscv/riscv.md: Refer to TARGET_TRULY_NOOP_TRUNCATION
4662 rather than TRULY_NOOP_TRUNCATION in comments.
4663 * config/rl78/rl78.h (TRULY_NOOP_TRUNCATION): Delete.
4664 * config/rs6000/rs6000.h (TRULY_NOOP_TRUNCATION): Delete.
4665 * config/rx/rx.h (TRULY_NOOP_TRUNCATION): Delete.
4666 * config/s390/s390.h (TRULY_NOOP_TRUNCATION): Delete.
4667 * config/sh/sh.h (MAYBE_BASE_REGISTER_RTX_P): Remove
4668 TRULY_NOOP_TRUNCATION condition.
4669 (MAYBE_INDEX_REGISTER_RTX_P): Likewise.
4670 (TRULY_NOOP_TRUNCATION): Delete.
4671 * config/sparc/sparc.h (TRULY_NOOP_TRUNCATION): Delete.
4672 * config/spu/spu.h (TRULY_NOOP_TRUNCATION): Delete.
4673 * config/spu/spu.c (spu_truly_noop_truncation): New function.
4674 (TARGET_TRULY_NOOP_TRUNCATION): Redefine.
4675 * config/stormy16/stormy16.h (TRULY_NOOP_TRUNCATION): Delete.
4676 * config/tilegx/tilegx.h (TRULY_NOOP_TRUNCATION): Delete.
4677 * config/tilegx/tilegx.c (tilegx_truly_noop_truncation): New fuction.
4678 (TARGET_TRULY_NOOP_TRUNCATION): Redefine.
4679 * config/tilegx/tilegx.md: Refer to TARGET_TRULY_NOOP_TRUNCATION
4680 rather than TRULY_NOOP_TRUNCATION in comments.
4681 * config/tilepro/tilepro.h (TRULY_NOOP_TRUNCATION): Delete.
4682 * config/v850/v850.h (TRULY_NOOP_TRUNCATION): Delete.
4683 * config/vax/vax.h (TRULY_NOOP_TRUNCATION): Delete.
4684 * config/visium/visium.h (TRULY_NOOP_TRUNCATION): Delete.
4685 * config/xtensa/xtensa.h (TRULY_NOOP_TRUNCATION): Delete.
4686 * system.h (TRULY_NOOP_TRUNCATION): Poison.
4688 2017-09-15 Christophe Lyon <christophe.lyon@linaro.org>
4691 * config/arm/arm.md (*cmp_and): Add enabled_for_depr_it attribute.
4692 (*cmp_ior): Likewise.
4693 (*ior_scc_scc): Add alternative for enabled_for_depr_it attribute.
4694 (*ior_scc_scc_cmp): Likewise.
4695 (*and_scc_scc): Likewise.
4696 (*and_scc_scc_cmp): Likewise.
4698 2017-09-15 Richard Sandiford <richard.sandiford@linaro.org>
4699 Alan Hayard <alan.hayward@arm.com>
4700 David Sherwood <david.sherwood@arm.com>
4702 * target.def (can_change_mode_class): New hook.
4703 (mode_rep_extended): Refer to it instead of CANNOT_CHANGE_MODE_CLASS.
4704 (hard_regno_nregs): Likewise.
4705 * hooks.h (hook_bool_mode_mode_reg_class_t_true): Declare.
4706 * hooks.c (hook_bool_mode_mode_reg_class_t_true): New function.
4707 * doc/tm.texi.in (CANNOT_CHANGE_MODE_CLASS): Replace with...
4708 (TARGET_CAN_CHANGE_MODE_CLASS): ...this.
4709 (LOAD_EXTEND_OP): Update accordingly.
4710 * doc/tm.texi: Regenerate.
4711 * doc/rtl.texi: Refer to TARGET_CAN_CHANGE_MODE_CLASS instead of
4712 CANNOT_CHANGE_MODE_CLASS.
4713 * hard-reg-set.h (REG_CANNOT_CHANGE_MODE_P): Replace with...
4714 (REG_CAN_CHANGE_MODE_P): ...this new macro.
4715 * combine.c (simplify_set): Update accordingly.
4716 * emit-rtl.c (validate_subreg): Likewise.
4717 * recog.c (general_operand): Likewise.
4718 * regcprop.c (mode_change_ok): Likewise.
4719 * reload1.c (choose_reload_regs): Likewise.
4720 (inherit_piecemeal_p): Likewise.
4721 * rtlanal.c (simplify_subreg_regno): Likewise.
4722 * postreload.c (reload_cse_simplify_set): Use REG_CAN_CHANGE_MODE_P
4723 instead of CANNOT_CHANGE_MODE_CLASS.
4724 (reload_cse_simplify_operands): Likewise.
4725 * reload.c (push_reload): Use targetm.can_change_mode_class
4726 instead of CANNOT_CHANGE_MODE_CLASS.
4727 (push_reload): Likewise. Also use REG_CAN_CHANGE_MODE_P instead of
4728 REG_CANNOT_CHANGE_MODE_P.
4729 * config/alpha/alpha.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4730 * config/alpha/alpha.c (alpha_can_change_mode_class): New function.
4731 (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4732 * config/arm/arm.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4733 * config/arm/arm.c (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4734 (arm_can_change_mode_class): New function.
4735 * config/arm/neon.md: Refer to TARGET_CAN_CHANGE_MODE_CLASS rather
4736 than CANNOT_CHANGE_MODE_CLASS in comments.
4737 * config/i386/i386.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4738 * config/i386/i386-protos.h (ix86_cannot_change_mode_class): Delete.
4739 * config/i386/i386.c (ix86_cannot_change_mode_class): Replace with...
4740 (ix86_can_change_mode_class): ...this new function, inverting the
4741 sense of the return value.
4742 (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4743 * config/ia64/ia64.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4744 * config/ia64/ia64.c (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4745 (ia64_can_change_mode_class): New function.
4746 * config/m32c/m32c.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4747 * config/m32c/m32c-protos.h (m32c_cannot_change_mode_class): Delete.
4748 * config/m32c/m32c.c (m32c_cannot_change_mode_class): Replace with...
4749 (m32c_can_change_mode_class): ...this new function, inverting the
4750 sense of the return value.
4751 (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4752 * config/mips/mips.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4753 * config/mips/mips-protos.h (mips_cannot_change_mode_class): Delete.
4754 * config/mips/mips.c (mips_cannot_change_mode_class): Replace with...
4755 (mips_can_change_mode_class): ...this new function, inverting the
4756 sense of the return value.
4757 (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4758 * config/msp430/msp430.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4759 * config/msp430/msp430.c (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4760 (msp430_can_change_mode_class): New function.
4761 * config/nvptx/nvptx.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4762 * config/nvptx/nvptx.c (nvptx_can_change_mode_class): New function.
4763 (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4764 * config/pa/pa32-regs.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4765 * config/pa/pa64-regs.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4766 * config/pa/pa-protos.h (pa_cannot_change_mode_class): Delete.
4767 * config/pa/pa.c (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4768 (pa_cannot_change_mode_class): Replace with...
4769 (pa_can_change_mode_class): ...this new function, inverting the
4770 sense of the return value.
4771 (pa_modes_tieable_p): Refer to TARGET_CAN_CHANGE_MODE_CLASS rather
4772 than CANNOT_CHANGE_MODE_CLASS in comments.
4773 * config/pdp11/pdp11.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4774 * config/pdp11/pdp11-protos.h (pdp11_cannot_change_mode_class): Delete.
4775 * config/pdp11/pdp11.c (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4776 (pdp11_cannot_change_mode_class): Replace with...
4777 (pdp11_can_change_mode_class): ...this new function, inverting the
4778 sense of the return value.
4779 * config/powerpcspe/powerpcspe.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4780 * config/powerpcspe/powerpcspe-protos.h
4781 (rs6000_cannot_change_mode_class_ptr): Delete.
4782 * config/powerpcspe/powerpcspe.c
4783 (rs6000_cannot_change_mode_class_ptr): Delete.
4784 (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4785 (rs6000_option_override_internal): Assign to
4786 targetm.can_change_mode_class instead of
4787 rs6000_cannot_change_mode_class_ptr.
4788 (rs6000_cannot_change_mode_class): Replace with...
4789 (rs6000_can_change_mode_class): ...this new function, inverting the
4790 sense of the return value.
4791 (rs6000_debug_cannot_change_mode_class): Replace with...
4792 (rs6000_debug_can_change_mode_class): ...this new function.
4793 * config/riscv/riscv.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4794 * config/riscv/riscv.c (riscv_can_change_mode_class): New function.
4795 (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4796 * config/rs6000/rs6000.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4797 * config/rs6000/rs6000-protos.h (rs6000_cannot_change_mode_class_ptr):
4799 * config/rs6000/rs6000.c (rs6000_cannot_change_mode_class_ptr): Delete.
4800 (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4801 (rs6000_option_override_internal): Assign to
4802 targetm.can_change_mode_class instead of
4803 rs6000_cannot_change_mode_class_ptr.
4804 (rs6000_cannot_change_mode_class): Replace with...
4805 (rs6000_can_change_mode_class): ...this new function, inverting the
4806 sense of the return value.
4807 (rs6000_debug_cannot_change_mode_class): Replace with...
4808 (rs6000_debug_can_change_mode_class): ...this new function.
4809 * config/s390/s390.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4810 * config/s390/s390-protos.h (s390_cannot_change_mode_class): Delete.
4811 * config/s390/s390.c (s390_cannot_change_mode_class): Replace with...
4812 (s390_can_change_mode_class): ...this new function, inverting the
4813 sense of the return value.
4814 (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4815 * config/sh/sh.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4816 * config/sh/sh-protos.h (sh_cannot_change_mode_class): Delete.
4817 * config/sh/sh.c (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4818 (sh_cannot_change_mode_class): Replace with...
4819 (sh_can_change_mode_class): ...this new function, inverting the
4820 sense of the return value.
4821 * config/sparc/sparc.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4822 * config/sparc/sparc.c (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4823 (sparc_can_change_mode_class): New function.
4824 * config/spu/spu.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4825 * config/spu/spu.c (spu_can_change_mode_class): New function.
4826 (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4827 * config/visium/visium.h (CANNOT_CHANGE_MODE_CLASS): Delete.
4828 * config/visium/visium.c (TARGET_CAN_CHANGE_MODE_CLASS): Redefine.
4829 (visium_can_change_mode_class): New function.
4830 * system.h (CANNOT_CHANGE_MODE_CLASS): Poison.
4832 2017-09-15 Richard Biener <rguenther@suse.de>
4834 PR tree-optimization/82217
4835 * tree-ssa-sccvn.c (visit_phi): Properly handle all VN_TOP
4836 but not undefined case.
4838 2017-09-15 Jakub Jelinek <jakub@redhat.com>
4841 * postreload.c (reload_cse_simplify_operands): Skip
4842 NOTE_INSN_DELETED_LABEL similarly to skipping CODE_LABEL.
4844 2017-09-15 Richard Biener <rguenther@suse.de>
4846 PR tree-optimization/68823
4847 * graphite-scop-detection.c (build_alias_set): If we have a
4848 possible dependence check whether we can handle them by just
4849 looking at the DRs DR_ACCESS_FNs.
4850 (build_scops): If build_alias_set fails, fail the SCOP.
4852 2017-09-14 Michael Meissner <meissner@linux.vnet.ibm.com>
4854 * config/rs6000/rs6000-builtin.def (BU_FLOAT128_1_HW): New macros
4855 to support float128 built-in functions that require the ISA 3.0
4857 (BU_FLOAT128_3_HW): Likewise.
4858 (SQRTF128): Add support for the IEEE 128-bit square root and fma
4860 (FMAF128): Likewise.
4862 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
4863 support for built-in functions that need the ISA 3.0 IEEE 128-bit
4864 floating point instructions.
4865 (rs6000_invalid_builtin): Likewise.
4866 (rs6000_builtin_mask_names): Likewise.
4867 * config/rs6000/rs6000.h (MASK_FLOAT128_HW): Likewise.
4868 (RS6000_BTM_FLOAT128_HW): Likewise.
4869 (RS6000_BTM_COMMON): Likewise.
4870 * config/rs6000/rs6000.md (fma<mode>4_hw): Add a generator
4872 * doc/extend.texi (RS/6000 built-in functions): Document the
4873 IEEE 128-bit floating point square root and fused multiply-add
4876 2017-09-14 Pat Haugen <pthaugen@us.ibm.com>
4878 * config/rs6000/rs6000.c (rs6000_set_up_by_prologue): Make sure the TOC
4879 reg (r2) isn't in the set of registers defined in the prologue.
4881 2017-09-14 Richard Sandiford <richard.sandiford@linaro.org>
4882 Alan Hayward <alan.hayward@arm.com>
4883 David Sherwood <david.sherwood@arm.com>
4885 * tree-vectorizer.h (_loop_vec_info): Add max_vectorization_factor.
4886 (LOOP_VINFO_MAX_VECT_FACTOR): New macro.
4887 (LOOP_VINFO_ORIG_VECT_FACTOR): Replace with...
4888 (LOOP_VINFO_ORIG_MAX_VECT_FACTOR): ...this new macro.
4889 * tree-vect-data-refs.c (vect_analyze_data_ref_dependences): Update
4891 * tree-vect-loop.c (_loop_vec_info::_loop_vec_info): Initialize
4892 max_vectorization_factor.
4893 (vect_analyze_loop_2): Set LOOP_VINFO_MAX_VECT_FACTOR.
4895 2017-09-14 Richard Sandiford <richard.sandiford@linaro.org>
4896 Alan Hayward <alan.hayward@arm.com>
4897 David Sherwood <david.sherwood@arm.com>
4899 * tree-vectorizer.h (vect_min_worthwhile_factor): Delete.
4900 (vect_worthwhile_without_simd_p): Declare.
4901 * tree-vect-loop.c (vect_worthwhile_without_simd_p): New function.
4902 (vectorizable_reduction): Use it.
4903 * tree-vect-stmts.c (vectorizable_shift): Likewise.
4904 (vectorizable_operation): Likewise.
4906 2017-09-14 Richard Sandiford <richard.sandiford@linaro.org>
4907 Alan Hayward <alan.hayward@arm.com>
4908 David Sherwood <david.sherwood@arm.com>
4910 * tree-vectorizer.h (vect_get_num_copies): New function.
4911 * tree-vect-data-refs.c (vect_get_data_access_cost): Use it.
4912 * tree-vect-loop.c (vectorizable_reduction): Likewise.
4913 (vectorizable_induction): Likewise.
4914 (vectorizable_live_operation): Likewise.
4915 * tree-vect-stmts.c (vectorizable_mask_load_store): Likewise.
4916 (vectorizable_bswap): Likewise.
4917 (vectorizable_call): Likewise.
4918 (vectorizable_conversion): Likewise.
4919 (vectorizable_assignment): Likewise.
4920 (vectorizable_shift): Likewise.
4921 (vectorizable_operation): Likewise.
4922 (vectorizable_store): Likewise.
4923 (vectorizable_load): Likewise.
4924 (vectorizable_condition): Likewise.
4925 (vectorizable_comparison): Likewise.
4926 (vect_analyze_stmt): Pass the slp node to vectorizable_live_operation.
4928 2017-09-14 Richard Sandiford <richard.sandiford@linaro.org>
4929 Alan Hayward <alan.hayward@arm.com>
4930 David Sherwood <david.sherwood@arm.com>
4932 * tree-vect-loop.c (vectorizable_induction): Use gimple_build instead
4933 of vect_init_vector.
4935 2017-09-14 Richard Sandiford <richard.sandiford@linaro.org>
4936 Alan Hayward <alan.hayward@arm.com>
4937 David Sherwood <david.sherwood@arm.com>
4939 * gimple-fold.h (gimple_build_vector_from_val): Declare, and provide
4940 an inline wrapper that provides a location.
4941 (gimple_build_vector): Likewise.
4942 * gimple-fold.c (gimple_build_vector_from_val): New function.
4943 (gimple_build_vector): Likewise.
4944 * tree-vect-loop.c (get_initial_def_for_reduction): Use the new
4945 functions to build the initial value. Always return a gimple value.
4946 (get_initial_defs_for_reduction): Likewise. Only compute
4948 (vect_create_epilog_for_reduction): Don't call force_gimple_operand or
4949 vect_init_vector on the results from get_initial_def(s)_for_reduction.
4950 (vectorizable_induction): Use gimple_build_vector rather than
4953 2017-09-14 Richard Sandiford <richard.sandiford@linaro.org>
4954 Alan Hayward <alan.hayward@arm.com>
4955 David Sherwood <david.sherwood@arm.com>
4957 * target.h (vec_perm_indices): New typedef.
4958 (auto_vec_perm_indices): Likewise.
4959 * optabs-query.h: Include target.h
4960 (can_vec_perm_p): Take a vec_perm_indices *.
4961 * optabs-query.c (can_vec_perm_p): Likewise.
4962 (can_mult_highpart_p): Update accordingly. Use auto_vec_perm_indices.
4963 * tree-ssa-forwprop.c (simplify_vector_constructor): Likewise.
4964 * tree-vect-generic.c (lower_vec_perm): Likewise.
4965 * tree-vect-data-refs.c (vect_grouped_store_supported): Likewise.
4966 (vect_grouped_load_supported): Likewise.
4967 (vect_shift_permute_load_chain): Likewise.
4968 (vect_permute_store_chain): Use auto_vec_perm_indices.
4969 (vect_permute_load_chain): Likewise.
4970 * fold-const.c (fold_vec_perm): Take vec_perm_indices.
4971 (fold_ternary_loc): Update accordingly. Use auto_vec_perm_indices.
4972 Update uses of can_vec_perm_p.
4973 * tree-vect-loop.c (calc_vec_perm_mask_for_shift): Replace the
4974 mode with a number of elements. Take a vec_perm_indices *.
4975 (vect_create_epilog_for_reduction): Update accordingly.
4976 Use auto_vec_perm_indices.
4977 (have_whole_vector_shift): Likewise. Update call to can_vec_perm_p.
4978 * tree-vect-slp.c (vect_build_slp_tree_1): Likewise.
4979 (vect_transform_slp_perm_load): Likewise.
4980 (vect_schedule_slp_instance): Use auto_vec_perm_indices.
4981 * tree-vectorizer.h (vect_gen_perm_mask_any): Take a vec_perm_indices.
4982 (vect_gen_perm_mask_checked): Likewise.
4983 * tree-vect-stmts.c (vect_gen_perm_mask_any): Take a vec_perm_indices.
4984 (vect_gen_perm_mask_checked): Likewise.
4985 (vectorizable_mask_load_store): Use auto_vec_perm_indices.
4986 (vectorizable_store): Likewise.
4987 (vectorizable_load): Likewise.
4988 (perm_mask_for_reverse): Likewise. Update call to can_vec_perm_p.
4989 (vectorizable_bswap): Likewise.
4991 2017-09-14 Richard Sandiford <richard.sandiford@linaro.org>
4992 Alan Hayward <alan.hayward@arm.com>
4993 David Sherwood <david.sherwood@arm.com>
4995 * tree.h (build_vector): Take a vec<tree> instead of a tree *.
4996 * tree.c (build_vector): Likewise.
4997 (build_vector_from_ctor): Update accordingly.
4998 (build_vector_from_val): Likewise.
4999 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Likewise.
5000 * tree-ssa-forwprop.c (simplify_vector_constructor): Likewise.
5001 * tree-vect-generic.c (add_rshift): Likewise.
5002 (expand_vector_divmod): Likewise.
5003 (optimize_vector_constructor): Likewise.
5004 * tree-vect-slp.c (vect_get_constant_vectors): Likewise.
5005 (vect_transform_slp_perm_load): Likewise.
5006 (vect_schedule_slp_instance): Likewise.
5007 * tree-vect-stmts.c (vectorizable_bswap): Likewise.
5008 (vectorizable_call): Likewise.
5009 (vect_gen_perm_mask_any): Likewise. Add elements in order.
5010 * expmed.c (make_tree): Likewise.
5011 * fold-const.c (fold_negate_expr_1): Use auto_vec<tree> when building
5012 a vector passed to build_vector.
5013 (fold_convert_const): Likewise.
5014 (exact_inverse): Likewise.
5015 (fold_ternary_loc): Likewise.
5016 (fold_relational_const): Likewise.
5017 (const_binop): Likewise. Use VECTOR_CST_ELT directly when operating
5018 on VECTOR_CSTs, rather than going through vec_cst_ctor_to_array.
5019 (const_unop): Likewise. Store the reduction accumulator in a
5020 variable rather than an array.
5021 (vec_cst_ctor_to_array): Take the number of elements as a parameter.
5022 (fold_vec_perm): Update calls accordingly. Use auto_vec<tree> for
5023 the new vector, rather than constructing it after the input arrays.
5024 (native_interpret_vector): Use auto_vec<tree> when building
5025 a vector passed to build_vector. Add elements in order.
5026 * tree-vect-loop.c (get_initial_defs_for_reduction): Use
5027 auto_vec<tree> when building a vector passed to build_vector.
5028 (vect_create_epilog_for_reduction): Likewise.
5029 (vectorizable_induction): Likewise.
5030 (get_initial_def_for_reduction): Likewise. Fix indentation of
5032 * config/sparc/sparc.c (sparc_handle_vis_mul8x16): Change n_elts
5034 (sparc_fold_builtin): Use auto_vec<tree> when building a vector
5035 passed to build_vector.
5037 2017-09-14 Richard Sandiford <richard.sandiford@linaro.org>
5038 Alan Hayward <alan.hayward@arm.com>
5039 David Sherwood <david.sherwood@arm.com>
5041 * tree-core.h (tree_base::u): Add an "nelts" field.
5042 (tree_vector): Use VECTOR_CST_NELTS as the length.
5043 * tree.c (tree_size): Likewise.
5044 (make_vector): Initialize VECTOR_CST_NELTS.
5045 * tree.h (VECTOR_CST_NELTS): Use the u.nelts field.
5046 * cfgexpand.c (expand_debug_expr): Use VECTOR_CST_NELTS instead of
5047 TYPE_VECTOR_SUBPARTS.
5048 * expr.c (const_vector_mask_from_tree): Consistently use "units"
5049 as the number of units, setting it from VECTOR_CST_NELTS.
5050 (const_vector_from_tree): Likewise.
5051 * fold-const.c (negate_expr_p): Use VECTOR_CST_NELTS instead of
5052 TYPE_VECTOR_SUBPARTS for the number of elements in a VECTOR_CST.
5053 (fold_negate_expr_1): Likewise.
5054 (fold_convert_const): Likewise.
5055 (const_binop): Likewise. Differentiate the number of output and
5057 (const_unop): Likewise.
5058 (fold_ternary_loc): Use VECTOR_CST_NELTS for the number of elements
5059 in a VECTOR_CST, asserting that it is the same as TYPE_VECTOR_SUBPARTS
5060 in cases that did the opposite.
5062 2017-09-14 Richard Biener <rguenther@suse.de>
5064 * tree-ssa-sccvn.c (visit_phi): Merge undefined values similar
5067 2017-09-14 Eric Botcazou <ebotcazou@adacore.com>
5069 * dwarf2out.c (dwarf2out_source_line): Remove superfluous test.
5071 2017-09-14 Jakub Jelinek <jakub@redhat.com>
5074 * cfgbuild.c (find_bb_boundaries): Ignore debug insns in decisions
5075 if and where to split a bb, except for splitting before debug insn
5076 sequences followed by non-label real insn. Delete debug insns
5077 in between basic blocks.
5079 * combine.c (make_compound_operation_int): Formatting fixes.
5081 * config/alpha/elf.h (LINK_EH_SPEC): Add -static-pie support.
5082 * config/alpha/linux.h (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
5083 * config/netbsd.h (LINK_EH_SPEC): Likewise.
5084 * config/sol2.h (LINK_EH_SPEC): Likewise.
5085 * config/arm/uclinux-elf.h (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
5086 * config/s390/linux.h (LINK_SPEC): Likewise.
5087 * config/freebsd.h (LINK_EH_SPEC): Likewise.
5088 * config/openbsd.h (LINK_EH_SPEC): Likewise.
5089 * config/lm32/uclinux-elf.h (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
5090 * config/aarch64/aarch64-linux.h (LINUX_TARGET_LINK_SPEC): Likewise.
5091 * config/powerpcspe/sysv4.h (LINK_EH_SPEC): Likewise.
5092 * config/bfin/linux.h (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
5093 * config/i386/gnu-user64.h (GNU_USER_TARGET_LINK_SPEC): Fix a typo.
5094 * config/i386/gnu-user.h (GNU_USER_TARGET_LINK_SPEC): Formatting fix.
5096 2017-09-13 Jakub Jelinek <jakub@redhat.com>
5098 * config/rs6000/sysv4.h (STARTFILE_LINUX_SPEC): Add -static-pie
5100 (ENDFILE_LINUX_SPEC): Likewise.
5101 (LINK_EH_SPEC): Likewise.
5102 * config/rs6000/linux64.h (LINK_SHLIB_SPEC): Likewise.
5103 (LINK_OS_LINUX_SPEC32): Likewise.
5104 (LINK_OS_LINUX_SPEC64): Likewise.
5105 * config/rs6000/linux.h (LINK_SHLIB_SPEC): Likewise.
5106 (LINK_OS_LINUX_SPEC): Likewise.
5108 2017-09-13 Martin Liska <mliska@suse.cz>
5111 * stmt.c (expand_sjlj_dispatch_table): Use CASE_LOW when
5112 CASE_HIGH is NULL_TREE.
5114 2017-09-13 Richard Sandiford <richard.sandiford@linaro.org>
5115 Alan Hayward <alan.hayward@arm.com>
5116 David Sherwood <david.sherwood@arm.com>
5118 * target.def (secondary_memory_needed): New hook.
5119 (secondary_reload): Refer to TARGET_SECONDARY_MEMORY_NEEDED
5120 instead of SECONDARY_MEMORY_NEEDED.
5121 (secondary_memory_needed_mode): Likewise.
5122 * hooks.h (hook_bool_mode_reg_class_t_reg_class_t_false): Declare.
5123 * hooks.c (hook_bool_mode_reg_class_t_reg_class_t_false): New function.
5124 * doc/tm.texi.in (SECONDARY_MEMORY_NEEDED): Replace with...
5125 (TARGET_SECONDARY_MEMORY_NEEDED): ...this.
5126 (SECONDARY_MEMORY_NEEDED_RTX): Update reference accordingly.
5127 * doc/tm.texi: Regenerate.
5128 * config/alpha/alpha.h (SECONDARY_MEMORY_NEEDED): Delete.
5129 * config/alpha/alpha.c (alpha_secondary_memory_needed): New function.
5130 (TARGET_SECONDARY_MEMORY_NEEDED): Redefine.
5131 * config/i386/i386.h (SECONDARY_MEMORY_NEEDED): Delete.
5132 * config/i386/i386-protos.h (ix86_secondary_memory_needed): Delete.
5133 * config/i386/i386.c (inline_secondary_memory_needed): Put the
5134 mode argument first and change the reg_class arguments to reg_class_t.
5135 (ix86_secondary_memory_needed): Likewise. Remove the strict parameter.
5136 Make static. Update the call to inline_secondary_memory_needed.
5137 (ix86_register_move_cost): Update the call to
5138 inline_secondary_memory_needed.
5139 (TARGET_SECONDARY_MEMORY_NEEDED): Redefine.
5140 * config/ia64/ia64.h (SECONDARY_MEMORY_NEEDED): Delete commented-out
5142 * config/ia64/ia64.c (spill_xfmode_rfmode_operand): Refer to
5143 TARGET_SECONDARY_MEMORY_NEEDED rather than SECONDARY_MEMORY_NEEDED
5145 * config/mips/mips.h (SECONDARY_MEMORY_NEEDED): Delete.
5146 * config/mips/mips-protos.h (mips_secondary_memory_needed): Delete.
5147 * config/mips/mips.c (mips_secondary_memory_needed): Make static
5148 and match hook interface. Add comment from mips.h.
5149 (TARGET_SECONDARY_MEMORY_NEEDED): Redefine.
5150 * config/mmix/mmix.md (truncdfsf2): Refer to
5151 TARGET_SECONDARY_MEMORY_NEEDED rather than SECONDARY_MEMORY_NEEDED
5153 * config/pa/pa-64.h (SECONDARY_MEMORY_NEEDED): Rename to...
5154 (PA_SECONDARY_MEMORY_NEEDED): ...this, and put the mode argument first.
5155 * config/pa/pa.c (TARGET_SECONDARY_MEMORY_NEEDED): Redefine.
5156 (pa_secondary_memory_needed): New function.
5157 * config/pdp11/pdp11.h (SECONDARY_MEMORY_NEEDED): Delete.
5158 * config/pdp11/pdp11-protos.h (pdp11_secondary_memory_needed): Delete.
5159 * config/pdp11/pdp11.c (TARGET_SECONDARY_MEMORY_NEEDED): Redefine.
5160 (pdp11_secondary_memory_needed): Make static and match hook interface.
5161 * config/powerpcspe/powerpcspe.h (SECONDARY_MEMORY_NEEDED): Delete.
5162 * config/powerpcspe/powerpcspe-protos.h
5163 (rs6000_secondary_memory_needed_ptr): Delete.
5164 * config/powerpcspe/powerpcspe.c (rs6000_secondary_memory_needed_ptr):
5166 (TARGET_SECONDARY_MEMORY_NEEDED): Redefine.
5167 (rs6000_option_override_internal): Assign to
5168 targetm.secondary_memory_needed rather than
5169 rs6000_secondary_memory_needed_ptr.
5170 (rs6000_secondary_memory_needed): Match hook interface.
5171 (rs6000_debug_secondary_memory_needed): Likewise.
5172 * config/riscv/riscv.h (SECONDARY_MEMORY_NEEDED): Delete.
5173 * config/riscv/riscv.c (riscv_secondary_memory_needed): New function.
5174 (riscv_register_move_cost): Use it instead of SECONDARY_MEMORY_NEEDED.
5175 (TARGET_SECONDARY_MEMORY_NEEDED): Redefine.
5176 * config/rs6000/rs6000.h (SECONDARY_MEMORY_NEEDED): Delete.
5177 * config/rs6000/rs6000-protos.h (rs6000_secondary_memory_needed_ptr):
5179 * config/rs6000/rs6000.c (rs6000_secondary_memory_needed_ptr): Delete.
5180 (TARGET_SECONDARY_MEMORY_NEEDED): Redefine.
5181 (rs6000_option_override_internal): Assign to
5182 targetm.secondary_memory_needed rather than
5183 rs6000_secondary_memory_needed_ptr.
5184 (rs6000_secondary_memory_needed): Match hook interface.
5185 (rs6000_debug_secondary_memory_needed): Likewise.
5186 * config/s390/s390.h (SECONDARY_MEMORY_NEEDED): Delete.
5187 * config/s390/s390.c (s390_secondary_memory_needed): New function.
5188 (TARGET_SECONDARY_MEMORY_NEEDED): Redefine.
5189 * config/sparc/sparc.h (SECONDARY_MEMORY_NEEDED): Delete.
5190 * config/sparc/sparc.c (TARGET_SECONDARY_MEMORY_NEEDED): Redefine.
5191 (sparc_secondary_memory_needed): New function.
5192 * lra-constraints.c (check_and_process_move): Refer to
5193 TARGET_SECONDARY_MEMORY_NEEDED rather than SECONDARY_MEMORY_NEEDED
5195 (curr_insn_transform): Likewise.
5196 (process_alt_operands): Use targetm.secondary_memory_needed
5197 instead of TARGET_SECONDARY_MEMORY_NEEDED.
5198 (check_secondary_memory_needed_p): Likewise.
5199 (choose_split_class): Likewise.
5200 * reload.c: Unconditionally include code that was previously
5201 conditional on SECONDARY_MEMORY_NEEDED.
5202 (push_secondary_reload): Use targetm.secondary_memory_needed
5203 instead of TARGET_SECONDARY_MEMORY_NEEDED.
5204 (push_reload): Likewise.
5205 * reload1.c: Unconditionally include code that was previously
5206 conditional on SECONDARY_MEMORY_NEEDED.
5207 (choose_reload_regs): Use targetm.secondary_memory_needed
5208 instead of TARGET_SECONDARY_MEMORY_NEEDED.
5209 (gen_reload): Likewise.
5210 * system.h (SECONDARY_MEMORY_NEEDED): Poison.
5212 2017-09-13 Richard Sandiford <richard.sandiford@linaro.org>
5213 Alan Hayward <alan.hayward@arm.com>
5214 David Sherwood <david.sherwood@arm.com>
5216 * target.def (secondary_memory_needed_mode): New hook:
5217 * targhooks.c (default_secondary_memory_needed_mode): Declare.
5218 * targhooks.h (default_secondary_memory_needed_mode): New function.
5219 * doc/tm.texi.in (SECONDARY_MEMORY_NEEDED_MODE): Replace with...
5220 (TARGET_SECONDARY_MEMORY_NEEDED_MODE): ...this.
5221 * doc/tm.texi: Regenerate.
5222 * lra-constraints.c (check_and_process_move): Use
5223 targetm.secondary_memory_needed_mode instead of
5224 TARGET_SECONDARY_MEMORY_NEEDED_MODE.
5225 (curr_insn_transform): Likewise.
5226 * reload.c (get_secondary_mem): Likewise.
5227 * config/alpha/alpha.h (SECONDARY_MEMORY_NEEDED_MODE): Delete.
5228 * config/alpha/alpha.c (alpha_secondary_memory_needed_mode): New
5230 (TARGET_SECONDARY_MEMORY_NEEDED_MODE): Redefine.
5231 * config/i386/i386.h (SECONDARY_MEMORY_NEEDED_MODE): Delete.
5232 * config/i386/i386.c (ix86_secondary_memory_needed_mode): New function.
5233 (TARGET_SECONDARY_MEMORY_NEEDED_MODE): Redefine.
5234 * config/powerpcspe/powerpcspe.h (SECONDARY_MEMORY_NEEDED_MODE):
5236 * config/powerpcspe/powerpcspe-protos.h
5237 (rs6000_secondary_memory_needed_mode): Delete.
5238 * config/powerpcspe/powerpcspe.c
5239 (TARGET_SECONDARY_MEMORY_NEEDED_MODE): Redefine.
5240 (rs6000_secondary_memory_needed_mode): Make static.
5241 * config/rs6000/rs6000.h (SECONDARY_MEMORY_NEEDED_MODE): Delete.
5242 * config/rs6000/rs6000-protos.h (rs6000_secondary_memory_needed_mode):
5244 * config/rs6000/rs6000.c (TARGET_SECONDARY_MEMORY_NEEDED_MODE):
5246 (rs6000_secondary_memory_needed_mode): Make static.
5247 * config/s390/s390.h (SECONDARY_MEMORY_NEEDED_MODE): Delete.
5248 * config/s390/s390.c (s390_secondary_memory_needed_mode): New function.
5249 (TARGET_SECONDARY_MEMORY_NEEDED_MODE): Redefine.
5250 * config/sparc/sparc.h (SECONDARY_MEMORY_NEEDED_MODE): Delete.
5251 * config/sparc/sparc.c (TARGET_SECONDARY_MEMORY_NEEDED_MODE):
5253 (sparc_secondary_memory_needed_mode): New function.
5254 * system.h (TARGET_SECONDARY_MEMORY_NEEDED_MODE): Poison.
5256 2017-09-13 Jackson Woodruff <jackson.woodruff@arm.com>
5258 * config/aarch64/constraints.md (Umq): New constraint.
5259 * config/aarch64/aarch64-simd.md (*aarch64_simd_mov<mode>):
5261 (mov<mode>): Update condition.
5263 2017-09-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5265 * gimple-ssa-store-merging.c (sort_by_bitpos): Compare store order
5266 when bitposition is the same.
5268 2017-09-13 Richard Biener <rguenther@suse.de>
5270 * dwarf2out.c (output_die_symbol): Remove.
5271 (output_die): Do not output a DIEs symbol.
5273 2017-09-13 Richard Biener <rguenther@suse.de>
5276 * gimple-fold.c (gimple_fold_call): Update SSA name in-place to
5277 default-def to avoid breaking iterator update with the weird
5278 interaction with cgraph_update_edges_for_call_stmt_node.
5280 2017-09-13 Richard Biener <rguenther@suse.de>
5282 * tree-cfg.c (verify_gimple_assign_binary): Add verification
5283 for WIDEN_SUM_EXPR, VEC_WIDEN_MULT_{HI,LO,EVEN,ODD}_EXPR,
5284 VEC_PACK_{TRUNC,SAT,FIX_TRUNC}_EXPR.
5285 (verify_gimple_assign_ternary): Add verification for DOT_PROD_EXPR.
5287 2017-09-13 Kugan Vivekanandarajah <kuganv@linaro.org>
5289 * config/aarch64/aarch64.c (aarch64_override_options_after_change_1):
5290 Disable pc relative literal load irrespective of
5291 TARGET_FIX_ERR_A53_84341 for default.
5293 2017-09-12 Eric Botcazou <ebotcazou@adacore.com>
5295 * config/sparc/sparc.c (output_return): Output the source location of
5296 the insn in the delay slot, if any.
5297 (output_sibcall): Likewise.
5299 2017-09-12 H.J. Lu <hongjiu.lu@intel.com>
5302 * common.opt (-static-pie): New alias.
5303 (shared): Negate static-pie.
5304 (-no-pie): Update help text.
5306 (static-pie): New option.
5307 * config/gnu-user.h (GNU_USER_TARGET_STARTFILE_SPEC): Add
5308 -static-pie support.
5309 (GNU_USER_TARGET_ENDFILE_SPEC): Likewise.
5310 (LINK_EH_SPEC): Likewise.
5311 (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
5312 * config/i386/gnu-user.h (GNU_USER_TARGET_LINK_SPEC): Likewise.
5313 * config/i386/gnu-user64.h (GNU_USER_TARGET_LINK_SPEC): Likewise.
5314 * gcc.c (LINK_COMMAND_SPEC): Likewise.
5315 (init_gcc_specs): Likewise.
5316 (init_spec): Likewise.
5317 (display_help): Update help message for -pie.
5318 * doc/invoke.texi: Update -pie, -no-pie and -static. Document
5321 2017-09-12 Wilco Dijkstra <wdijkstr@arm.com>
5323 * config/aarch64/aarch64.md (movsi_aarch64): Remove all '*'.
5324 (movdi_aarch64): Likewise.
5325 (movti_aarch64): Likewise.
5327 2017-09-12 Simon Wright <simon@pushface.org>
5330 * config/darwin-driver.c (darwin_find_version_from_kernel): Eliminate
5331 calculation of the minor version, always output as 0.
5333 2017-09-12 Jakub Jelinek <jakub@redhat.com>
5336 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): For
5337 ALTIVEC_BUILTIN_VEC_LD if arg1 has array type call default_conversion
5338 on it early, rather than manual conversion late. For
5339 ALTIVEC_BUILTIN_VEC_ST if arg2 has array type call default_conversion
5340 instead of performing manual conversion.
5342 2017-09-12 Carl Love <cel@us.ibm.com>
5344 * config/rs6000/altivec.md (vec_widen_umult_even_v4si,
5345 vec_widen_smult_even_v4si): Add define expands for vmuleuw, vmulesw,
5347 * config/rs6000/rs6000-builtin.def (VMLEUW, VMULESW, VMULOUW,
5348 VMULOSW): Add definitions.
5349 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
5350 ALTIVEC_BUILTIN_VMULESW, ALTIVEC_BUILTIN_VMULEUW,
5351 ALTIVEC_BUILTIN_VMULOSW, ALTIVEC_BUILTIN_VMULOUW entries.
5352 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin,
5353 builtin_function_type): Add ALTIVEC_BUILTIN_* case statements.
5355 2017-09-12 James Greenhalgh <james.greenhalgh@arm.com>
5357 * config/aarch64/aarch64.md (movdi_aarch64): Set load/store
5359 (movti_aarch64): Likewise.
5360 (movdf_aarch64): Likewise.
5361 (movtf_aarch64): Likewise.
5362 (load_pairdi): Likewise.
5363 (store_pairdi): Likewise.
5364 (load_pairdf): Likewise.
5365 (store_pairdf): Likewise.
5366 (loadwb_pair<GPI:mode>_<P:mode>): Likewise.
5367 (storewb_pair<GPI:mode>_<P:mode>): Likewise.
5368 (ldr_got_small_<mode>): Likewise.
5369 (ldr_got_small_28k_<mode>): Likewise.
5370 (ldr_got_tiny): Likewise.
5371 * config/aarch64/iterators.md (ldst_sz): New.
5372 (ldpstp_sz): Likewise.
5373 * config/aarch64/thunderx.md (thunderx_storepair): Split store_8
5375 (thunderx_load): Split load_8 to load_16.
5376 * config/aarch64/thunderx2t99.md (thunderx2t99_loadpair): Split
5378 (thunderx2t99_storepair_basic): Split store_8 to store_16.
5379 * config/arm/xgene1.md (xgene1_load_pair): Split load_8 to load_16.
5380 (xgene1_store_pair): Split store_8 to store_16.
5381 * config/aarch64/falkor.md (falkor_ld_3_ld): Split load_8 to load_16.
5382 (falkor_st_0_st_sd): Split store_8 to store_16.
5384 2017-09-12 James Greenhalgh <james.greenhalgh@arm.com>
5386 * config/arm/types.md (type): Rename load1/2/3/4 to load_4/8/12/16
5387 and store1/2/3/4 to store_4/8/12/16.
5388 * config/aarch64/aarch64.md: Update for rename.
5389 * config/arm/arm.md: Likewise.: Likewise.
5390 * config/arm/arm.c: Likewise.
5391 * config/arm/thumb1.md: Likewise.
5392 * config/arm/thumb2.md: Likewise.
5393 * config/arm/vfp.md: Likewise.
5394 * config/arm/arm-generic.md: Likewise.
5395 * config/arm/arm1020e.md: Likewise.
5396 * config/arm/arm1026ejs.md: Likewise.
5397 * config/arm/arm1136jfs.md: Likewise.
5398 * config/arm/arm926ejs.md: Likewise.
5399 * config/arm/cortex-a15.md: Likewise.
5400 * config/arm/cortex-a17.md: Likewise.
5401 * config/arm/cortex-a5.md: Likewise.
5402 * config/arm/cortex-a53.md: Likewise.
5403 * config/arm/cortex-a57.md: Likewise.
5404 * config/arm/cortex-a7.md: Likewise.
5405 * config/arm/cortex-a8.md: Likewise.
5406 * config/arm/cortex-a9.md: Likewise.
5407 * config/arm/cortex-m4.md: Likewise.
5408 * config/arm/cortex-m7.md: Likewise.
5409 * config/arm/cortex-r4.md: Likewise.
5410 * config/arm/exynos-m1.md: Likewise.
5411 * config/arm/fa526.md: Likewise.
5412 * config/arm/fa606te.md: Likewise.
5413 * config/arm/fa626te.md: Likewise.
5414 * config/arm/fa726te.md: Likewise.
5415 * config/arm/fmp626.md: Likewise.
5416 * config/arm/iwmmxt.md: Likewise.
5417 * config/arm/ldmstm.md: Likewise.
5418 * config/arm/marvell-pj4.md: Likewise.
5419 * config/arm/xgene1.md: Likewise.
5420 * config/aarch64/thunderx.md: Likewise.
5421 * config/aarch64/thunderx2t99.md: Likewise.
5422 * config/aarch64/falkor.md: Likewise.
5424 2017-09-12 Martin Liska <mliska@suse.cz>
5426 * attribs.c (private_lookup_attribute): New function.
5427 * attribs.h (private_lookup_attribute): Declared here.
5428 (lookup_attribute): Called from this place.
5430 2017-09-12 Richard Biener <rguenther@suse.de>
5432 PR tree-optimization/82157
5433 * tree-ssa-pre.c (remove_dead_inserted_code): Do not remove
5434 stmts with side-effects.
5436 2017-09-12 Richard Sandiford <richard.sandiford@linaro.org>
5437 Alan Hayward <alan.hayward@arm.com>
5438 David Sherwood <david.sherwood@arm.com>
5440 * target.def (hard_regno_nregs): New hook.
5441 (class_max_nregs): Refer to it instead of HARD_REGNO_NREGS.
5442 * targhooks.h (default_hard_regno_nregs): Declare.
5443 * targhooks.c (default_hard_regno_nregs): New function.
5444 * doc/tm.texi.in (HARD_REGNO_NREGS): Replace with...
5445 (TARGET_HARD_REGNO_NREGS): ...this hook.
5446 (HARD_REGNO_NREGS_HAS_PADDING): Update accordingly.
5447 (CLASS_MAX_NREGS): Likewise.
5448 * doc/tm.texi: Regenerate.
5449 * reginfo.c (init_reg_modes_target): Use targetm.hard_regno_nregs
5450 instead of HARD_REGNO_NREGS.
5451 * rtl.h (REG_NREGS): Refer to TARGET_HARD_REGNO_NREGS rather than
5452 HARD_REGNO_NREGS in the comment.
5453 * config/aarch64/aarch64.h (HARD_REGNO_NREGS): Delete.
5454 * config/aarch64/aarch64-protos.h (aarch64_hard_regno_nregs): Delete.
5455 * config/aarch64/aarch64.c (aarch64_hard_regno_nregs): Make static.
5456 Return an unsigned int.
5457 (TARGET_HARD_REGNO_NREGS): Redefine.
5458 * config/alpha/alpha.h (HARD_REGNO_NREGS): Delete.
5459 * config/arc/arc.h (HARD_REGNO_NREGS): Delete.
5460 * config/arc/arc.c (TARGET_HARD_REGNO_NREGS): Redefine.
5461 (arc_hard_regno_nregs): New function.
5462 * config/arm/arm.h (HARD_REGNO_NREGS): Delete.
5463 * config/arm/arm.c (TARGET_HARD_REGNO_NREGS): Redefine.
5464 (arm_hard_regno_nregs): New function.
5465 * config/avr/avr.h (HARD_REGNO_NREGS): Delete.
5466 * config/bfin/bfin.h (HARD_REGNO_NREGS): Delete.
5467 * config/bfin/bfin.c (bfin_hard_regno_nregs): New function.
5468 (TARGET_HARD_REGNO_NREGS): Redefine.
5469 * config/c6x/c6x.h (HARD_REGNO_NREGS): Delete.
5470 * config/cr16/cr16.h (LONG_REG_P): Use targetm.hard_regno_nregs.
5471 (HARD_REGNO_NREGS): Delete.
5472 * config/cr16/cr16.c (TARGET_HARD_REGNO_NREGS): Redefine.
5473 (cr16_hard_regno_nregs): New function.
5474 (cr16_memory_move_cost): Use it instead of HARD_REGNO_NREGS.
5475 * config/cris/cris.h (HARD_REGNO_NREGS): Delete.
5476 * config/cris/cris.c (TARGET_HARD_REGNO_NREGS): Redefine.
5477 (cris_hard_regno_nregs): New function.
5478 * config/epiphany/epiphany.h (HARD_REGNO_NREGS): Delete.
5479 * config/fr30/fr30.h (HARD_REGNO_NREGS): Delete.
5480 (CLASS_MAX_NREGS): Use targetm.hard_regno_nregs.
5481 * config/frv/frv.h (HARD_REGNO_NREGS): Delete.
5482 (CLASS_MAX_NREGS): Remove outdated copy of documentation.
5483 * config/frv/frv-protos.h (frv_hard_regno_nregs): Delete.
5484 * config/frv/frv.c (TARGET_HARD_REGNO_NREGS): Redefine.
5485 (frv_hard_regno_nregs): Make static. Take and return an
5487 (frv_class_max_nregs): Remove outdated copy of documentation.
5488 * config/ft32/ft32.h (HARD_REGNO_NREGS): Delete.
5489 * config/h8300/h8300.h (HARD_REGNO_NREGS): Delete.
5490 * config/h8300/h8300-protos.h (h8300_hard_regno_nregs): Delete.
5491 * config/h8300/h8300.c (h8300_hard_regno_nregs): Delete.
5492 * config/i386/i386.h (HARD_REGNO_NREGS): Delete.
5493 * config/i386/i386.c (ix86_hard_regno_nregs): New function.
5494 (TARGET_HARD_REGNO_NREGS): Redefine.
5495 * config/ia64/ia64.h (HARD_REGNO_NREGS): Delete.
5496 (CLASS_MAX_NREGS): Update comment.
5497 * config/ia64/ia64.c (TARGET_HARD_REGNO_NREGS): Redefine.
5498 (ia64_hard_regno_nregs): New function.
5499 * config/iq2000/iq2000.h (HARD_REGNO_NREGS): Delete.
5500 * config/lm32/lm32.h (HARD_REGNO_NREGS): Delete.
5501 * config/m32c/m32c.h (HARD_REGNO_NREGS): Delete.
5502 * config/m32c/m32c-protos.h (m32c_hard_regno_nregs): Delete.
5503 * config/m32c/m32c.c (m32c_hard_regno_nregs_1): Take and return
5505 (m32c_hard_regno_nregs): Likewise. Make static.
5506 (TARGET_HARD_REGNO_NREGS): Redefine.
5507 * config/m32r/m32r.h (HARD_REGNO_NREGS): Delete.
5508 * config/m68k/m68k.h (HARD_REGNO_NREGS): Delete.
5509 * config/m68k/m68k.c (TARGET_HARD_REGNO_NREGS): Redefine.
5510 (m68k_hard_regno_nregs): New function.
5511 * config/mcore/mcore.h (HARD_REGNO_NREGS): Delete.
5512 * config/microblaze/microblaze.h (HARD_REGNO_NREGS): Delete.
5513 * config/mips/mips.h (HARD_REGNO_NREGS): Delete.
5514 * config/mips/mips-protos.h (mips_hard_regno_nregs): Delete.
5515 * config/mips/mips.c (mips_hard_regno_nregs): Make static.
5516 Take and return an unsigned int.
5517 (TARGET_HARD_REGNO_NREGS): Redefine.
5518 * config/mmix/mmix.h (HARD_REGNO_NREGS): Delete.
5519 (CLASS_MAX_NREGS): Use targetm.hard_regno_nregs.
5520 * config/mn10300/mn10300.h (HARD_REGNO_NREGS): Delete.
5521 * config/moxie/moxie.h (HARD_REGNO_NREGS): Delete.
5522 * config/msp430/msp430.h (HARD_REGNO_NREGS): Delete.
5523 * config/msp430/msp430-protos.h (msp430_hard_regno_nregs): Delete.
5524 * config/msp430/msp430.c (TARGET_HARD_REGNO_NREGS): Redefine.
5525 (msp430_hard_regno_nregs): Make static. Take and return an
5527 * config/nds32/nds32.h (HARD_REGNO_NREGS): Delete.
5528 * config/nds32/nds32-protos.h (nds32_hard_regno_nregs): Delete.
5529 * config/nds32/nds32.c (nds32_hard_regno_nregs): Delete.
5530 (nds32_hard_regno_mode_ok): Use targetm.hard_regno_nregs.
5531 * config/nios2/nios2.h (HARD_REGNO_NREGS): Delete.
5532 * config/nvptx/nvptx.h (HARD_REGNO_NREGS): Delete.
5533 * config/nvptx/nvptx.c (nvptx_hard_regno_nregs): New function.
5534 (TARGET_HARD_REGNO_NREGS): Redefine.
5535 * config/pa/pa32-regs.h (HARD_REGNO_NREGS): Rename to...
5536 (PA_HARD_REGNO_NREGS): ...this.
5537 * config/pa/pa64-regs.h (HARD_REGNO_NREGS): Rename to...
5538 (PA_HARD_REGNO_NREGS): ...this.
5539 * config/pa/pa.c (TARGET_HARD_REGNO_NREGS): Redefine.
5540 (pa_hard_regno_nregs): New function.
5541 * config/pdp11/pdp11.h (HARD_REGNO_NREGS): Delete.
5542 * config/pdp11/pdp11.c (TARGET_HARD_REGNO_NREGS): Redefine.
5543 (pdp11_hard_regno_nregs): New function.
5544 * config/powerpcspe/powerpcspe.h (HARD_REGNO_NREGS): Delete.
5545 * config/powerpcspe/powerpcspe.c (TARGET_HARD_REGNO_NREGS): Redefine.
5546 (rs6000_hard_regno_nregs_hook): New function.
5547 * config/riscv/riscv.h (HARD_REGNO_NREGS): Delete.
5548 * config/riscv/riscv-protos.h (riscv_hard_regno_nregs): Delete.
5549 * config/riscv/riscv.c (riscv_hard_regno_nregs): Make static.
5550 Take and return an unsigned int. Move earlier in file.
5551 (TARGET_HARD_REGNO_NREGS): Redefine.
5552 * config/rl78/rl78.h (HARD_REGNO_NREGS): Delete.
5553 * config/rl78/rl78-protos.h (rl78_hard_regno_nregs): Delete.
5554 * config/rl78/rl78.c (TARGET_HARD_REGNO_NREGS): Reefine.
5555 (rl78_hard_regno_nregs): Make static. Take and return an
5557 * config/rs6000/rs6000.h (HARD_REGNO_NREGS): Delete.
5558 * config/rs6000/rs6000.c (TARGET_HARD_REGNO_NREGS): Redefine.
5559 (rs6000_hard_regno_nregs_hook): New function.
5560 * config/rx/rx.h (HARD_REGNO_NREGS): Delete.
5561 * config/rx/rx.c (rx_hard_regno_nregs): New function.
5562 (TARGET_HARD_REGNO_NREGS): Redefine.
5563 * config/s390/s390.h (HARD_REGNO_NREGS): Delete.
5564 * config/s390/s390.c (REGNO_PAIR_OK): Use s390_hard_regno_nregs
5565 instead of HARD_REGNO_NREGS.
5566 (s390_hard_regno_nregs): New function.
5567 (s390_hard_regno_mode_ok): Add comment from s390.h.
5568 (TARGET_HARD_REGNO_NREGS): Redefine.
5569 * config/sh/sh.h (HARD_REGNO_NREGS): Delete.
5570 * config/sh/sh.c (TARGET_HARD_REGNO_NREGS): Redefine.
5571 (sh_hard_regno_nregs): New function.
5572 (sh_pass_in_reg_p): Use it.
5573 * config/sparc/sparc.h (HARD_REGNO_NREGS): Delete.
5574 * config/sparc/sparc.c (TARGET_HARD_REGNO_NREGS): Redefine.
5575 (sparc_hard_regno_nregs): New function.
5576 * config/spu/spu.h (HARD_REGNO_NREGS): Delete.
5577 * config/spu/spu.c (spu_hard_regno_nregs): New function.
5578 (spu_function_arg_advance): Use it, supplying a valid register number.
5579 (TARGET_HARD_REGNO_NREGS): Redefine.
5580 * config/stormy16/stormy16.h (HARD_REGNO_NREGS): Delete.
5581 * config/tilegx/tilegx.h (HARD_REGNO_NREGS): Delete.
5582 * config/tilepro/tilepro.h (HARD_REGNO_NREGS): Delete.
5583 * config/v850/v850.h (HARD_REGNO_NREGS): Delete.
5584 * config/vax/vax.h (HARD_REGNO_NREGS): Delete.
5585 * config/visium/visium.h (HARD_REGNO_NREGS): Delete.
5586 (CLASS_MAX_NREGS): Remove copy of old documentation.
5587 * config/visium/visium.c (TARGET_HARD_REGNO_NREGS): Redefine.
5588 (visium_hard_regno_nregs): New function.
5589 (visium_hard_regno_mode_ok): Use it instead of HARD_REGNO_NREGS.
5590 * config/xtensa/xtensa.h (HARD_REGNO_NREGS): Delete.
5591 * config/xtensa/xtensa.c (TARGET_HARD_REGNO_NREGS): Redefine.
5592 xtensa_hard_regno_nregs): New function.
5593 * system.h (HARD_REGNO_NREGS): Poison.
5595 2017-09-12 Richard Sandiford <richard.sandiford@linaro.org>
5597 * config/arm/arm.h (THUMB_SECONDARY_INPUT_RELOAD_CLASS): Use
5598 hard_regno_nregs instead of HARD_REGNO_NREGS.
5599 (THUMB_SECONDARY_OUTPUT_RELOAD_CLASS): Likewise.
5600 * config/c6x/c6x.c (c6x_expand_prologue): Likewise.
5601 (c6x_expand_epilogue): Likewise.
5602 * config/frv/frv.c (frv_alloc_temp_reg): Likewise.
5603 (frv_read_iacc_argument): Likewise.
5604 * config/sh/sh.c: Include regs.h.
5605 (sh_print_operand): Use hard_regno_nregs instead of HARD_REGNO_NREGS.
5606 (regs_used): Likewise.
5607 (output_stack_adjust): Likewise.
5608 * config/xtensa/xtensa.c (xtensa_copy_incoming_a7): Likewise.
5609 * expmed.c: Include regs.h.
5610 (store_bit_field_1): Use hard_regno_nregs instead of HARD_REGNO_NREGS.
5611 * ree.c: Include regs.h.
5612 (combine_reaching_defs): Use hard_regno_nregs instead of
5614 (add_removable_extension): Likewise.
5616 2017-09-12 Richard Sandiford <richard.sandiford@linaro.org>
5618 * regs.h (hard_regno_nregs): Turn into a function.
5619 (end_hard_regno): Update accordingly.
5620 * caller-save.c (setup_save_areas): Likewise.
5621 (save_call_clobbered_regs): Likewise.
5622 (replace_reg_with_saved_mem): Likewise.
5623 (insert_restore): Likewise.
5624 (insert_save): Likewise.
5625 * combine.c (can_change_dest_mode): Likewise.
5626 (move_deaths): Likewise.
5627 (distribute_notes): Likewise.
5628 * config/mips/mips.c (mips_hard_regno_call_part_clobbered): Likewise.
5629 * config/powerpcspe/powerpcspe.c (rs6000_cannot_change_mode_class)
5630 (rs6000_split_multireg_move): Likewise.
5631 (rs6000_register_move_cost): Likewise.
5632 (rs6000_memory_move_cost): Likewise.
5633 * config/rs6000/rs6000.c (rs6000_cannot_change_mode_class): Likewise.
5634 (rs6000_split_multireg_move): Likewise.
5635 (rs6000_register_move_cost): Likewise.
5636 (rs6000_memory_move_cost): Likewise.
5637 * cselib.c (cselib_reset_table): Likewise.
5638 (cselib_lookup_1): Likewise.
5639 * emit-rtl.c (set_mode_and_regno): Likewise.
5640 * function.c (aggregate_value_p): Likewise.
5641 * ira-color.c (setup_profitable_hard_regs): Likewise.
5642 (check_hard_reg_p): Likewise.
5643 (calculate_saved_nregs): Likewise.
5644 (assign_hard_reg): Likewise.
5645 (improve_allocation): Likewise.
5646 (calculate_spill_cost): Likewise.
5647 * ira-emit.c (modify_move_list): Likewise.
5648 * ira-int.h (ira_hard_reg_set_intersection_p): Likewise.
5649 (ira_hard_reg_in_set_p): Likewise.
5650 * ira.c (setup_reg_mode_hard_regset): Likewise.
5651 (clarify_prohibited_class_mode_regs): Likewise.
5652 (check_allocation): Likewise.
5653 * lra-assigns.c (find_hard_regno_for_1): Likewise.
5654 (lra_setup_reg_renumber): Likewise.
5655 (setup_try_hard_regno_pseudos): Likewise.
5656 (spill_for): Likewise.
5657 (assign_hard_regno): Likewise.
5658 (setup_live_pseudos_and_spill_after_risky_transforms): Likewise.
5659 * lra-constraints.c (in_class_p): Likewise.
5660 (lra_constraint_offset): Likewise.
5661 (simplify_operand_subreg): Likewise.
5662 (lra_constraints): Likewise.
5663 (split_reg): Likewise.
5664 (split_if_necessary): Likewise.
5665 (invariant_p): Likewise.
5666 (inherit_in_ebb): Likewise.
5667 * lra-lives.c (process_bb_lives): Likewise.
5668 * lra-remat.c (reg_overlap_for_remat_p): Likewise.
5669 (get_hard_regs): Likewise.
5670 (do_remat): Likewise.
5671 * lra-spills.c (assign_spill_hard_regs): Likewise.
5672 * mode-switching.c (create_pre_exit): Likewise.
5673 * postreload.c (reload_combine_recognize_pattern): Likewise.
5674 * recog.c (peep2_find_free_register): Likewise.
5675 * regcprop.c (kill_value_regno): Likewise.
5676 (set_value_regno): Likewise.
5677 (copy_value): Likewise.
5678 (maybe_mode_change): Likewise.
5679 (find_oldest_value_reg): Likewise.
5680 (copyprop_hardreg_forward_1): Likewise.
5681 * regrename.c (check_new_reg_p): Likewise.
5682 (regrename_do_replace): Likewise.
5683 * reload.c (push_reload): Likewise.
5684 (combine_reloads): Likewise.
5685 (find_dummy_reload): Likewise.
5686 (operands_match_p): Likewise.
5687 (find_reloads): Likewise.
5688 (find_equiv_reg): Likewise.
5689 (reload_adjust_reg_for_mode): Likewise.
5690 * reload1.c (count_pseudo): Likewise.
5691 (count_spilled_pseudo): Likewise.
5692 (find_reg): Likewise.
5693 (clear_reload_reg_in_use): Likewise.
5694 (free_for_value_p): Likewise.
5695 (allocate_reload_reg): Likewise.
5696 (choose_reload_regs): Likewise.
5697 (reload_adjust_reg_for_temp): Likewise.
5698 (emit_reload_insns): Likewise.
5699 (delete_output_reload): Likewise.
5700 * rtlanal.c (subreg_get_info): Likewise.
5701 * sched-deps.c (sched_analyze_reg): Likewise.
5702 * sel-sched.c (init_regs_for_mode): Likewise.
5703 (mark_unavailable_hard_regs): Likewise.
5704 (choose_best_reg_1): Likewise.
5705 (verify_target_availability): Likewise.
5706 * valtrack.c (dead_debug_insert_temp): Likewise.
5707 * var-tracking.c (track_loc_p): Likewise.
5708 (emit_note_insn_var_location): Likewise.
5709 * varasm.c (make_decl_rtl): Likewise.
5710 * reginfo.c (choose_hard_reg_mode): Likewise.
5711 (init_reg_modes_target): Refer directly to
5712 this_target_regs->x_hard_regno_nregs.
5714 2017-09-12 Richard Sandiford <richard.sandiford@linaro.org>
5716 * ira-costs.c (record_operand_costs): Use in_hard_reg_set_p
5717 instead of hard_regno_nregs.
5719 2017-09-12 Richard Sandiford <richard.sandiford@linaro.org>
5721 * config/aarch64/aarch64.c (aarch64_hard_regno_mode_ok): Use
5722 end_hard_regno instead of hard_regno_nregs.
5723 * config/s390/s390.c (s390_reg_clobbered_rtx): Likewise.
5724 * config/sparc/sparc.h (ASM_DECLARE_REGISTER_GLOBAL): Likewise.
5725 * config/visium/visium.c (visium_hard_regno_mode_ok): Likewise.
5726 * ira-color.c (improve_allocation): Likewise.
5727 * lra-assigns.c (find_hard_regno_for_1): Likewise.
5728 * lra-lives.c (mark_regno_live): Likewise.
5729 (mark_regno_dead): Likewise.
5730 * lra-remat.c (operand_to_remat): Likewise.
5731 * lra.c (collect_non_operand_hard_regs): Likewise.
5732 * postreload.c (reload_combine_note_store): Likewise.
5733 (move2add_valid_value_p): Likewise.
5734 * reload.c (regno_clobbered_p): Likewise.
5736 2017-09-12 Richard Sandiford <richard.sandiford@linaro.org>
5738 * config/frv/frv.c (FOR_EACH_REGNO): Use END_REGNO instead of
5740 * config/v850/v850.c (v850_reorg): Likewise.
5741 * reload.c (refers_to_regno_for_reload_p): Likewise.
5742 (find_equiv_reg): Likewise.
5743 * reload1.c (reload_reg_reaches_end_p): Likewise.
5745 2017-09-12 Richard Sandiford <richard.sandiford@linaro.org>
5747 * caller-save.c (add_used_regs): Use REG_NREGS instead of
5749 * config/aarch64/aarch64.c (aarch64_split_combinev16qi): Likewise.
5750 * config/arm/arm.c (output_move_neon): Likewise.
5751 (arm_attr_length_move_neon): Likewise.
5752 (neon_split_vcombine): Likewise.
5753 * config/c6x/c6x.c (c6x_mark_reg_read): Likewise.
5754 (c6x_mark_reg_written): Likewise.
5755 (c6x_dwarf_register_span): Likewise.
5756 * config/i386/i386.c (ix86_save_reg): Likewise.
5757 * config/ia64/ia64.c (mark_reg_gr_used_mask): Likewise.
5758 (rws_access_reg): Likewise.
5759 * config/s390/s390.c (s390_call_saved_register_used): Likewise.
5760 * mode-switching.c (create_pre_exit): Likewise.
5761 * ree.c (combine_reaching_defs): Likewise.
5762 (add_removable_extension): Likewise.
5763 * regcprop.c (find_oldest_value_reg): Likewise.
5764 (copyprop_hardreg_forward_1): Likewise.
5765 * reload.c (reload_inner_reg_of_subreg): Likewise.
5766 (push_reload): Likewise.
5767 (combine_reloads): Likewise.
5768 (find_dummy_reload): Likewise.
5769 (reload_adjust_reg_for_mode): Likewise.
5770 * reload1.c (find_reload_regs): Likewise.
5771 (forget_old_reloads_1): Likewise.
5772 (reload_reg_free_for_value_p): Likewise.
5773 (reload_adjust_reg_for_temp): Likewise.
5774 (emit_reload_insns): Likewise.
5775 (delete_output_reload): Likewise.
5776 * sel-sched.c (choose_best_reg_1): Likewise.
5777 (choose_best_pseudo_reg): Likewise.
5779 2017-09-12 Richard Sandiford <richard.sandiford@linaro.org>
5780 Alan Hayward <alan.hayward@arm.com>
5781 David Sherwood <david.sherwood@arm.com>
5783 * defaults.h (SLOW_UNALIGNED_ACCESS): Delete.
5784 * target.def (slow_unaligned_access): New hook.
5785 * targhooks.h (default_slow_unaligned_access): Declare.
5786 * targhooks.c (default_slow_unaligned_access): New function.
5787 * doc/tm.texi.in (SLOW_UNALIGNED_ACCESS): Replace with...
5788 (TARGET_SLOW_UNALIGNED_ACCESS): ...this.
5789 * doc/tm.texi: Regenerate.
5790 * config/alpha/alpha.h (SLOW_UNALIGNED_ACCESS): Delete.
5791 * config/arm/arm.h (SLOW_UNALIGNED_ACCESS): Delete.
5792 * config/i386/i386.h (SLOW_UNALIGNED_ACCESS): Delete commented-out
5794 * config/powerpcspe/powerpcspe.h (SLOW_UNALIGNED_ACCESS): Delete.
5795 * config/powerpcspe/powerpcspe.c (TARGET_SLOW_UNALIGNED_ACCESS):
5797 (rs6000_slow_unaligned_access): New function.
5798 (rs6000_emit_move): Use it instead of SLOW_UNALIGNED_ACCESS.
5799 (expand_block_compare): Likewise.
5800 (expand_strn_compare): Likewise.
5801 (rs6000_rtx_costs): Likewise.
5802 * config/riscv/riscv.h (SLOW_UNALIGNED_ACCESS): Delete.
5803 (riscv_slow_unaligned_access): Likewise.
5804 * config/riscv/riscv.c (riscv_slow_unaligned_access): Rename to...
5805 (riscv_slow_unaligned_access_p): ...this and make static.
5806 (riscv_option_override): Update accordingly.
5807 (riscv_slow_unaligned_access): New function.
5808 (TARGET_SLOW_UNALIGNED_ACCESS): Redefine.
5809 * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Delete.
5810 * config/rs6000/rs6000.c (TARGET_SLOW_UNALIGNED_ACCESS): Redefine.
5811 (rs6000_slow_unaligned_access): New function.
5812 (rs6000_emit_move): Use it instead of SLOW_UNALIGNED_ACCESS.
5813 (rs6000_rtx_costs): Likewise.
5814 * config/rs6000/rs6000-string.c (expand_block_compare)
5815 (expand_strn_compare): Use targetm.slow_unaligned_access instead
5816 of SLOW_UNALIGNED_ACCESS.
5817 * config/tilegx/tilegx.h (SLOW_UNALIGNED_ACCESS): Delete.
5818 * config/tilepro/tilepro.h (SLOW_UNALIGNED_ACCESS): Delete.
5819 * calls.c (expand_call): Use targetm.slow_unaligned_access instead
5820 of SLOW_UNALIGNED_ACCESS.
5821 * expmed.c (simple_mem_bitfield_p): Likewise.
5822 * expr.c (alignment_for_piecewise_move): Likewise.
5823 (emit_group_load_1): Likewise.
5824 (emit_group_store): Likewise.
5825 (copy_blkmode_from_reg): Likewise.
5826 (emit_push_insn): Likewise.
5827 (expand_assignment): Likewise.
5828 (store_field): Likewise.
5829 (expand_expr_real_1): Likewise.
5830 * gimple-fold.c (gimple_fold_builtin_memory_op): Likewise.
5831 * lra-constraints.c (simplify_operand_subreg): Likewise.
5832 * stor-layout.c (bit_field_mode_iterator::next_mode): Likewise.
5833 * gimple-ssa-store-merging.c: Likewise in block comment at start
5835 * tree-ssa-strlen.c: Include target.h.
5836 (handle_builtin_memcmp): Use targetm.slow_unaligned_access instead
5837 of SLOW_UNALIGNED_ACCESS.
5838 * system.h (SLOW_UNALIGNED_ACCESS): Poison.
5840 2017-09-12 Richard Sandiford <richard.sandiford@linaro.org>
5842 PR rtl-optimization/82185
5843 * expmed.c (emit_store_flag_int): Only test tem if it has been
5846 2017-09-12 Richard Biener <rguenther@suse.de>
5849 * match.pd ((FTYPE) N CMP CST): Fix typo.
5851 2017-09-12 Simon Atanasyan <simon.atanasyan@imgtec.com>
5853 * config/mips/mips.c (mips_attribute_table): Add 'short_call'
5855 (mips_near_type_p): Add 'short_call' attribute as a synonym
5857 * doc/extend.texi (short_call): Document new function attribute.
5859 2017-09-12 Jakub Jelinek <jakub@redhat.com>
5862 * c-common.c (sync_resolve_size): Instead of c_dialect_cxx ()
5863 assertion check that in the condition.
5864 (get_atomic_generic_size): Likewise. Before testing if parameter
5865 has pointer type, if it has array type, call for C++
5866 default_conversion to perform array-to-pointer conversion.
5868 2017-09-12 Richard Biener <rguenther@suse.de>
5870 * tree-vect-generic.c (expand_vector_operations_1): Do nothing
5871 for operations we cannot scalarize.
5873 2017-09-12 Aldy Hernandez <aldyh@redhat.com>
5875 * tree-ssa-threadbackward.c (fsm_find_thread_path): Make GC
5876 vectors heap vectors. Clean up comments.
5877 Make visited_bbs a reference.
5878 (profitable_jump_thread_path): Make GC
5879 vectors heap vectors. Clean up comments.
5881 (convert_and_register_jump_thread_path): Make GC vectors heap
5883 (check_subpath_and_update_thread_path): Same. Clean up comments.
5884 Make visited_bbs a reference.
5885 (handle_phi): Abstract common code to to
5886 register_jump_thread_path_if_profitable.
5887 Rename VAR_BB to DEF_BB.
5889 Make GC vectors heap vectors.
5890 Make visited_bbs a reference.
5891 (handle_assignment): Same.
5892 (register_jump_thread_path_if_profitable): New.
5893 (fsm_find_control_statement_thread_paths): Rename VAR_BB to
5895 Make GC vectors heap vectors. Clean up comments.
5896 Make visited_bbs a reference.
5897 (find_jump_threads_backwards): Make visited_bbs live in the stack.
5898 * tree-ssa-threadupdate.c (delete_jump_thread_path): Fix typo in
5901 2017-09-11 Max Filippov <jcmvbkbc@gmail.com>
5904 * config/xtensa/xtensa.c (xtensa_mem_offset): Check that both
5905 words of E_DImode object are reachable by xtensa_uimm8x4 access.
5907 2017-09-11 Vidya Praveen <vidyapraveen@arm.com>
5909 Revert r251800 and r251799.
5911 2017-09-11 Martin Jambor <mjambor@suse.cz>
5914 * hsa-gen.c (gen_hsa_phi_from_gimple_phi): Process ADDR_EXPRs in
5915 arguments in advance.
5916 * hsa-regalloc.c (naive_process_phi): New parameter predecessors,
5917 use it to find predecessor edges.
5918 (naive_outof_ssa): Collect vector of predecessors.
5920 2017-09-08 Jason Merrill <jason@redhat.com>
5922 PR c++/70029 - ICE with ref-qualifier and -flto
5923 * langhooks.h (struct lang_hooks_for_types): Add
5924 copy_lang_qualifiers.
5925 * attribs.c (build_type_attribute_qual_variant): Use it.
5926 * langhooks-def.h (LANG_HOOKS_COPY_LANG_QUALIFIERS): Default to
5928 (LANG_HOOKS_FOR_TYPES_INITIALIZER): Use it.
5929 * tree.c (verify_type): Re-enable TYPE_CANONICAL main variant check.
5931 2017-09-08 Eric Botcazou <ebotcazou@adacore.com>
5934 * config/sparc/sparc.md (mulsi3): Rename into *mulsi3_sp32.
5935 (*mulsi3_sp64): New instruction.
5936 (mulsi3): New expander.
5938 2017-09-08 Uros Bizjak <ubizjak@gmail.com>
5940 * config/alpha/alpha.c (alpha_print_operand) <case 'S'>: Remove.
5942 2017-09-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5944 * sancov.c: Include memmodel.h.
5946 2017-09-07 Eric Botcazou <ebotcazou@adacore.com>
5949 * config/sparc/sparc.c (sparc_emit_set_symbolic_const64): Deal with too
5952 2017-09-07 Carl Love <cel@us.ibm.com>
5954 * config/rs6000/vsx.md (define_insn "*stxvl"): Add missing argument to
5955 the sldi instruction.
5957 2017-09-07 David Edelsohn <dje.gcc@gmail.com>
5959 * sancov.c: Include tm_p.h.
5961 2017-09-07 Jakub Jelinek <jakub@redhat.com>
5964 * output.h (switch_to_other_text_partition): New declaration.
5965 * varasm.c (switch_to_other_text_partition): New function.
5966 * config/rs6000/rs6000.c (uses_TOC): Return 2 if
5967 NOTE_INSN_SWITCH_TEXT_SECTIONS is seen before finding load_toc_* insn.
5968 (rs6000_elf_declare_function_name): If uses_TOC returned 2, switch
5969 to the other text partition before emitting LCL label and switch back
5970 after emitting the word after it.
5972 2017-09-07 Richard Biener <rguenther@suse.de>
5974 * passes.def (pass_split_crit_edges): Remove instance before PRE.
5975 * tree-ssa-pre.c (pass_pre::execute): Instead manually split
5976 critical edges here, after loop init.
5977 (pass_data_pre): Remove PROP_no_crit_edges flags.
5978 * tree-ssa-sccvn.c (vn_reference_lookup_3): Use vn_valueize
5979 for valueization of call args to avoid leaking VN_TOP.
5980 (visit_use): Assert we do not visit default defs.
5981 (init_scc_vn): Use build_decl for VN_TOP to make name nicer.
5982 Use error_mark_node to more easily detect leaking VN_TOP.
5983 All default-defs are varying, not VN_TOP. Mark them visited.
5984 (run_scc_vn): Make code match comment.
5986 2017-09-07 Michael Meissner <meissner@linux.vnet.ibm.com>
5988 * config/rs6000/rs6000-cpus.def (OTHER_VSX_VECTOR_MASKS): Delete
5989 OPTION_MASK_FLOAT128_KEYWORD.
5990 (POWERPC_MASKS): Likewise.
5991 * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Delete
5992 support for the -mfloat128-type option, and make -mfloat128
5993 default on PowerPC Linux systems. Define or undefine
5994 __FLOAT128__ and __FLOAT128_HARDWARE__ for the current options.
5995 Define __float128 to be __ieee128 if IEEE 128-bit support is
5996 enabled, or undefine it.
5997 (rs6000_cpu_cpp_builtins): Delete defining __FLOAT128__ here.
5998 Delete defining __FLOAT128_TYPE__.
5999 * config/rs6000/rs6000.opt (x_TARGET_FLOAT128_TYPE): Delete the
6000 -mfloat128-type option and make -mfloat128 default on PowerPC
6002 (TARGET_FLOAT128_TYPE): Likewise.
6003 (-mfloat128-type): Likewise.
6004 * config/rs6000/rs6000.c (rs6000_option_override_internal):
6005 Delete the -mfloat128-type option and make -mfloat128 default on
6006 PowerPC Linux systems. Always use __ieee128 to be the keyword for
6007 the IEEE 128-bit type, and map __float128 to __ieee128 if IEEE
6008 128-bit floating point is enabled. Change tests from using
6009 -mfloat128-type to -mfloat128.
6010 (rs6000_mangle_type): Use the correct mangling for the __float128
6011 type even if normal long double is restricted to 64-bits.
6012 (floatn_mode): Enable the _Float128 type by default on VSX Linux
6014 * config/rs6000/rs6000.h (MASK_FLOAT128_TYPE): Delete.
6015 (MASK_FLOAT128_KEYWORD): Define new shortcut macro.
6016 (RS6000BTM_FLOAT128): Define in terms of -mfloat128, not
6018 * doc/invoke.texi (RS/6000 and PowerPC Options): Update
6019 documentation for -mfloat128.
6021 2017-09-06 Olivier Hainque <hainque@adacore.com>
6023 * config.gcc (powerpc-wrs-vxworksspe): Now match as vxworks*spe.
6025 2017-09-06 Wish Wu <wishwu007@gmail.com>
6026 Jakub Jelinek <jakub@redhat.com>
6028 * asan.c (initialize_sanitizer_builtins): Add
6029 BT_FN_VOID_UINT8_UINT8, BT_FN_VOID_UINT16_UINT16,
6030 BT_FN_VOID_UINT32_UINT32, BT_FN_VOID_UINT64_UINT64,
6031 BT_FN_VOID_FLOAT_FLOAT, BT_FN_VOID_DOUBLE_DOUBLE and
6032 BT_FN_VOID_UINT64_PTR variables.
6033 * builtin-types.def (BT_FN_VOID_UINT8_UINT8): New fn type.
6034 (BT_FN_VOID_UINT16_UINT16): Likewise.
6035 (BT_FN_VOID_UINT32_UINT32): Likewise.
6036 (BT_FN_VOID_FLOAT_FLOAT): Likewise.
6037 (BT_FN_VOID_DOUBLE_DOUBLE): Likewise.
6038 (BT_FN_VOID_UINT64_PTR): Likewise.
6039 * common.opt (flag_sanitize_coverage): New variable.
6040 (fsanitize-coverage=trace-pc): Remove.
6041 (fsanitize-coverage=): Add.
6042 * flag-types.h (enum sanitize_coverage_code): New enum.
6043 * fold-const.c (fold_range_test): Disable non-short-circuit
6044 optimization if flag_sanitize_coverage.
6045 (fold_truth_andor): Likewise.
6046 * tree-ssa-ifcombine.c (ifcombine_ifandif): Likewise.
6047 * opts.c (COVERAGE_SANITIZER_OPT): Define.
6048 (coverage_sanitizer_opts): New array.
6049 (get_closest_sanitizer_option): Add OPTS argument, handle also
6050 OPT_fsanitize_coverage_.
6051 (parse_sanitizer_options): Adjusted to also handle
6052 OPT_fsanitize_coverage_.
6053 (common_handle_option): Add OPT_fsanitize_coverage_.
6054 * sancov.c (instrument_comparison, instrument_switch): New function.
6055 (sancov_pass): Add trace-cmp support.
6056 * sanitizer.def (BUILT_IN_SANITIZER_COV_TRACE_CMP1,
6057 BUILT_IN_SANITIZER_COV_TRACE_CMP2, BUILT_IN_SANITIZER_COV_TRACE_CMP4,
6058 BUILT_IN_SANITIZER_COV_TRACE_CMP8,
6059 BUILT_IN_SANITIZER_COV_TRACE_CONST_CMP1,
6060 BUILT_IN_SANITIZER_COV_TRACE_CONST_CMP2,
6061 BUILT_IN_SANITIZER_COV_TRACE_CONST_CMP4,
6062 BUILT_IN_SANITIZER_COV_TRACE_CONST_CMP8,
6063 BUILT_IN_SANITIZER_COV_TRACE_CMPF, BUILT_IN_SANITIZER_COV_TRACE_CMPD,
6064 BUILT_IN_SANITIZER_COV_TRACE_SWITCH): New builtins.
6065 * doc/invoke.texi: Document -fsanitize-coverage=trace-cmp.
6067 2017-09-06 Richard Earnshaw <rearnsha@arm.com>
6069 * config/arm/parsecpu.awk (fatal): Note that we've encountered an
6070 error. Only quit immediately if parsing is complete.
6071 (BEGIN): Initialize fatal_err and parse_done.
6072 (begin fpu, end fpu): Check number of arguments.
6073 (begin arch, end arch): Likewise.
6074 (begin cpu, end cpu): Likewise.
6075 (cname, tune for, tune flags, architecture, fpu, option): Likewise.
6076 (optalias): Likewise.
6078 2017-09-06 Richard Earnshaw <rearnsha@arm.com>
6080 * config.gcc (arm*-*-*): Don't add arm-isa.h to tm_p_file.
6081 * config/arm/arm-isa.h: Delete. Move definitions to ...
6082 * arm-cpus.in: ... here. Use new feature and fgroup values.
6083 * config/arm/arm.c (arm_option_override): Use lower case for feature
6085 * config/arm/arm.h (TARGET_HARD_FLOAT): Likewise.
6086 (TARGET_VFP3, TARGET_VFP5, TARGET_FMA): Likewise.
6087 * config/arm/parsecpu.awk (END): Add new command 'isa'.
6089 (print_isa_bits_for): New function.
6090 (gen_isa): New function.
6091 (gen_comm_data): Use print_isa_bits_for.
6092 (define feature): New keyword.
6093 (define fgroup): New keyword.
6094 * config/arm/t-arm (OPTIONS_H_EXTRA): Add arm-isa.h
6095 (arm-isa.h): Add rule to generate file.
6096 * common/config/arm/arm-common.c: (arm_canon_arch_option): Use lower
6097 case for feature bit names.
6099 2017-09-06 Richard Biener <rguenther@suse.de>
6101 * tree-ssa-pre.c (NECESSARY): Remove.
6102 (create_expression_by_pieces): Do not touch pass-local flags.
6103 (insert_into_preds_of_block): Likewise.
6104 (do_pre_regular_insertion): Likewise.
6105 (eliminate_insert): Likewise.
6106 (eliminate_dom_walker::before_dom_children): Likewise.
6107 (fini_eliminate): Do not look at inserted_exprs.
6108 (mark_operand_necessary): Remove.
6109 (remove_dead_inserted_code): Replace with simple work-list
6110 algorithm based on inserted_exprs and SSA uses.
6111 (pass_pre::execute): Re-order fini_eliminate and
6112 remove_dead_inserted_code.
6114 2017-09-06 Olivier Hainque <hainque@adacore.com>
6116 * config/powerpcspe/vxworks.h (VXCPU_FOR_8548): Correct definition
6117 for VxWorks 7. Adjust surrounding comments.
6119 2017-09-06 Richard Biener <rguenther@suse.de>
6121 * gimple-ssa-strength-reduction.c
6122 (find_candidates_dom_walker::before_dom_children): Also allow
6125 2017-09-06 Richard Biener <rguenther@suse.de>
6127 PR tree-optimization/82108
6128 * tree-vect-stmts.c (vectorizable_load): Fix pointer adjustment
6129 for gap in the non-permutation SLP case.
6131 2017-09-06 Martin Jambor <mjambor@suse.cz>
6133 PR tree-optimization/82078
6134 * tree-sra.c (sort_and_splice_var_accesses): Move call to
6135 add_access_to_work_queue...
6136 (build_accesses_from_assign): ...here.
6137 (propagate_all_subaccesses): Make sure racc is the group
6138 representative, if there is one.
6140 2017-09-06 Jakub Jelinek <jakub@redhat.com>
6143 * varasm.c (categorize_decl_for_section): Use SECCAT_TBSS for TLS vars with
6146 2017-09-06 Richard Biener <rguenther@suse.de>
6148 * gimple-ssa-strength-reduction.c
6149 (find_candidates_dom_walker::before_doom_children): Use a
6150 type and not a mode check.
6152 2017-09-06 Bernd Edlinger <bernd.edlinger@hotmail.de>
6155 * config/arm/predicates.md (arm_general_adddi_operand): Create new
6157 * config/arm/arm.md (*arm_adddi3, *arm_subdi3): Use new predicates.
6159 2017-09-05 Jeff Law <law@redhat.com>
6161 PR tree-optimization/64910
6162 * tree-ssa-reassoc.c (reassociate_bb): Restrict last change to
6163 cases where we have 3 or more operands.
6165 2017-09-05 Jakub Jelinek <jakub@redhat.com>
6168 * omp-low.c (lower_omp_for): Recompute tree invariant if
6169 gimple_omp_for_initial/final is ADDR_EXPR.
6172 * omp-expand.c (expand_omp_simd): Force second operands of COND_EXPR
6173 into gimple val before gimplification fo the COND_EXPR.
6175 2017-09-05 Aldy Hernandez <aldyh@redhat.com>
6177 * tree-ssa-threadupdate.c (duplicate_thread_path): Remove unused
6178 REGION_COPY argument.
6179 (thread_through_all_blocks): Remove unused argument to
6180 duplicate_thread_path.
6182 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6183 Alan Hayward <alan.hayward@arm.com>
6184 David Sherwood <david.sherwood@arm.com>
6186 * config/aarch64/aarch64-protos.h (aarch64_gen_adjusted_ldpstp):
6187 Take a scalar_mode rather than a machine_mode.
6188 (aarch64_operands_adjust_ok_for_ldpstp): Likewise.
6189 * config/aarch64/aarch64.c (aarch64_simd_container_mode): Likewise.
6190 (aarch64_operands_adjust_ok_for_ldpstp): Likewise.
6191 (aarch64_gen_adjusted_ldpstp): Likewise.
6192 (aarch64_expand_vector_init): Use scalar_mode instead of machine_mode.
6194 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6195 Alan Hayward <alan.hayward@arm.com>
6196 David Sherwood <david.sherwood@arm.com>
6198 * config/aarch64/aarch64-protos.h (aarch64_is_extend_from_extract):
6199 Take a scalar_int_mode instead of a machine_mode.
6200 (aarch64_mask_and_shift_for_ubfiz_p): Likewise.
6201 (aarch64_output_scalar_simd_mov_immediate): Likewise.
6202 (aarch64_simd_scalar_immediate_valid_for_move): Likewise.
6203 (aarch64_simd_attr_length_rglist): Delete.
6204 * config/aarch64/aarch64.c (aarch64_is_extend_from_extract): Take
6205 a scalar_int_mode instead of a machine_mode.
6206 (aarch64_add_offset): Likewise.
6207 (aarch64_internal_mov_immediate): Likewise
6208 (aarch64_add_constant_internal): Likewise.
6209 (aarch64_add_constant): Likewise.
6210 (aarch64_movw_imm): Likewise.
6211 (aarch64_rtx_arith_op_extract_p): Likewise.
6212 (aarch64_mask_and_shift_for_ubfiz_p): Likewise.
6213 (aarch64_simd_scalar_immediate_valid_for_move): Likewise.
6214 Remove assert that the mode isn't a vector.
6215 (aarch64_output_scalar_simd_mov_immediate): Likewise.
6216 (aarch64_expand_mov_immediate): Update calls after above changes.
6217 (aarch64_output_casesi): Use as_a <scalar_int_mode>.
6218 (aarch64_and_bitmask_imm): Check for scalar integer modes.
6219 (aarch64_move_imm): Likewise.
6220 (aarch64_can_const_movi_rtx_p): Likewise.
6221 (aarch64_strip_extend): Likewise.
6222 (aarch64_extr_rtx_p): Likewise.
6223 (aarch64_rtx_costs): Likewise, using wode_mode as the mode of
6224 a CONST_INT when the mode parameter is VOIDmode.
6225 (aarch64_float_const_rtx_p): Use scalar_int_mode for a temporary.
6227 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6229 * machmode.h (bitwise_mode_for_mode): Return opt_mode.
6230 * stor-layout.c (bitwise_mode_for_mode): Likewise.
6231 (bitwise_type_for_mode): Update accordingly.
6233 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6235 * stor-layout.h (mode_for_size_tree): Return an opt_mode.
6236 * stor-layout.c (mode_for_size_tree): Likewise.
6237 (mode_for_array): Update accordingly.
6238 (layout_decl): Likewise.
6239 (compute_record_mode): Likewise. Only set the mode once.
6241 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6243 * target.def (get_mask_mode): Change return type to opt_mode.
6245 * doc/tm.texi: Regenerate.
6246 * targhooks.h (default_get_mask_mode): Return an opt_mode.
6247 * targhooks.c (default_get_mask_mode): Likewise.
6248 * config/i386/i386.c (ix86_get_mask_mode): Likewise.
6249 * optabs-query.c (can_vec_mask_load_store_p): Update use of
6250 targetm.get_mask_mode.
6251 * tree.c (build_truth_vector_type): Likewise.
6253 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6255 * machmode.h (mode_for_vector): Return an opt_mode.
6256 * stor-layout.c (mode_for_vector): Likewise.
6257 (mode_for_int_vector): Update accordingly.
6258 (layout_type): Likewise.
6259 * config/i386/i386.c (emit_memmov): Likewise.
6260 (ix86_expand_set_or_movmem): Likewise.
6261 (ix86_expand_vector_init): Likewise.
6262 (ix86_get_mask_mode): Likewise.
6263 * config/powerpcspe/powerpcspe.c (rs6000_expand_vec_perm_const_1):
6265 * config/rs6000/rs6000.c (rs6000_expand_vec_perm_const_1): Likewise.
6266 * expmed.c (extract_bit_field_1): Likewise.
6267 * expr.c (expand_expr_real_2): Likewise.
6268 * optabs-query.c (can_vec_perm_p): Likewise.
6269 (can_vec_mask_load_store_p): Likewise.
6270 * optabs.c (expand_vec_perm): Likewise.
6271 * targhooks.c (default_get_mask_mode): Likewise.
6272 * tree-vect-stmts.c (vectorizable_store): Likewise.
6273 (vectorizable_load): Likewise.
6274 (get_vectype_for_scalar_type_and_size): Likewise.
6276 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6278 * machmode.h (mode_for_int_vector): New function.
6279 * stor-layout.c (mode_for_int_vector): Likewise.
6280 * config/aarch64/aarch64.c (aarch64_emit_approx_sqrt): Use it.
6281 * config/powerpcspe/powerpcspe.c (rs6000_do_expand_vec_perm): Likewise.
6282 * config/rs6000/rs6000.c (rs6000_do_expand_vec_perm): Likewise.
6283 * config/s390/s390.c (s390_expand_vec_compare_cc): Likewise.
6284 (s390_expand_vcond): Likewise.
6286 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6288 * machmode.h (opt_machine_mode): New type.
6289 (opt_mode<T>): Allow construction from anything that can be
6291 (is_a, as_a, dyn_cast): Add overloads for opt_mode.
6292 (mode_for_size): Return an opt_machine_mode.
6293 * stor-layout.c (mode_for_size): Likewise.
6294 (mode_for_size_tree): Update call accordingly.
6295 (bitwise_mode_for_mode): Likewise.
6296 (make_fract_type): Likewise.
6297 (make_accum_type): Likewise.
6298 * caller-save.c (replace_reg_with_saved_mem): Update call
6300 * config/alpha/alpha.h (SECONDARY_MEMORY_NEEDED_MODE): Likewise.
6301 * config/i386/i386.h (SECONDARY_MEMORY_NEEDED_MODE): Likewise.
6302 * config/s390/s390.h (SECONDARY_MEMORY_NEEDED_MODE): Likewise.
6303 * config/sparc/sparc.h (SECONDARY_MEMORY_NEEDED_MODE): Likewise.
6304 * expmed.c (extract_bit_field_1): Likewise.
6305 * reload.c (get_secondary_mem): Likewise.
6306 * varasm.c (assemble_integer): Likewise.
6307 * lower-subreg.c (simplify_subreg_concatn): Likewise. Move
6310 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6312 * machmode.h (decimal_float_mode_for_size): New function.
6313 * real.h (REAL_VALUE_TO_TARGET_LONG_DOUBLE): Use float_mode_for_size.
6314 (REAL_VALUE_TO_TARGET_DOUBLE): Likewise.
6315 (REAL_VALUE_TO_TARGET_SINGLE): Likewise.
6316 (REAL_VALUE_TO_TARGET_DECIMAL128): Use decimal_float_mode_for_size.
6317 (REAL_VALUE_TO_TARGET_DECIMAL64): Likewise.
6318 (REAL_VALUE_TO_TARGET_DECIMAL32): Likewise.
6320 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6322 * builtins.c (expand_builtin_powi): Use int_mode_for_size.
6323 (get_builtin_sync_mode): Likewise.
6324 (expand_ifn_atomic_compare_exchange): Likewise.
6325 (expand_builtin_atomic_clear): Likewise.
6326 (expand_builtin_atomic_test_and_set): Likewise.
6327 (fold_builtin_atomic_always_lock_free): Likewise.
6328 * calls.c (compute_argument_addresses): Likewise.
6329 (emit_library_call_value_1): Likewise.
6330 (store_one_arg): Likewise.
6331 * combine.c (combine_instructions): Likewise.
6332 * config/aarch64/aarch64.c (aarch64_function_value): Likewise.
6333 * config/arm/arm.c (arm_function_value): Likewise.
6334 (aapcs_allocate_return_reg): Likewise.
6335 * config/c6x/c6x.c (c6x_expand_movmem): Likewise.
6336 * config/i386/i386.c (construct_container): Likewise.
6337 (ix86_gimplify_va_arg): Likewise.
6338 (ix86_expand_sse_cmp): Likewise.
6339 (emit_memmov): Likewise.
6340 (emit_memset): Likewise.
6341 (expand_small_movmem_or_setmem): Likewise.
6342 (ix86_expand_pextr): Likewise.
6343 (ix86_expand_pinsr): Likewise.
6344 * config/lm32/lm32.c (lm32_block_move_inline): Likewise.
6345 * config/microblaze/microblaze.c (microblaze_block_move_straight):
6347 * config/mips/mips.c (mips_function_value_1) Likewise.
6348 (mips_block_move_straight): Likewise.
6349 (mips_expand_ins_as_unaligned_store): Likewise.
6350 * config/powerpcspe/powerpcspe.c
6351 (rs6000_darwin64_record_arg_advance_flush): Likewise.
6352 (rs6000_darwin64_record_arg_flush): Likewise.
6353 * config/rs6000/rs6000.c
6354 (rs6000_darwin64_record_arg_advance_flush): Likewise.
6355 (rs6000_darwin64_record_arg_flush): Likewise.
6356 * config/sparc/sparc.c (sparc_function_arg_1): Likewise.
6357 (sparc_function_value_1): Likewise.
6358 * config/spu/spu.c (adjust_operand): Likewise.
6359 (spu_emit_branch_or_set): Likewise.
6360 (arith_immediate_p): Likewise.
6361 * emit-rtl.c (gen_lowpart_common): Likewise.
6362 * expr.c (expand_expr_real_1): Likewise.
6363 * function.c (assign_parm_setup_block): Likewise.
6364 * gimple-ssa-store-merging.c (encode_tree_to_bitpos): Likewise.
6365 * reload1.c (alter_reg): Likewise.
6366 * stor-layout.c (mode_for_vector): Likewise.
6367 (layout_type): Likewise.
6369 2017-09-05 Richard Sandiford <richard.sandiford@linaro.org>
6371 * config/spu/spu.c (exp2_immediate_p): Use int_mode_for_mode.
6372 (spu_convert_move): Likewise.
6373 * lower-subreg.c (resolve_simple_move): Likewise.
6375 2017-09-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
6378 * config/rs6000/altivec.md (altivec_vsum2sws): Convert from a
6379 define_insn to a define_expand.
6380 (altivec_vsum2sws_direct): New define_insn.
6381 (altivec_vsumsws): Convert from a define_insn to a define_expand.
6383 2017-09-05 Wilco Dijkstra <wdijkstr@arm.com>
6385 * config/arm/arm.c (arm_option_params_internal): Improve setting of
6388 2017-09-05 H.J. Lu <hongjiu.lu@intel.com>
6393 * config/i386/i386.c (ix86_finalize_stack_frame_flags): Don't
6394 realign stack if stack alignment needed is less than incoming
6397 2017-09-05 Marek Polacek <polacek@redhat.com>
6400 * convert.c (convert_to_integer_1) <case NEGATE_EXPR>: Move the ubsan
6403 2017-09-05 Wilco Dijkstra <wdijkstr@arm.com>
6405 * explow.c (get_dynamic_stack_size): Improve dynamic alignment.
6407 2017-09-05 Richard Biener <rguenther@suse.de>
6409 PR tree-optimization/82084
6410 * fold-const.c (can_native_encode_string_p): Handle wide characters.
6412 2017-09-05 Richard Biener <rguenther@suse.de>
6414 PR tree-optimization/82102
6415 * tree-ssa-pre.c (fini_eliminate): Check if lhs is NULL.
6417 2017-09-05 Martin Liska <mliska@suse.cz>
6419 PR tree-optimization/82032
6420 * tree-cfg.c (generate_range_test): New function.
6421 * tree-cfg.h (generate_range_test): Declared here.
6422 * tree-cfgcleanup.c (convert_single_case_switch): New function.
6423 (cleanup_control_expr_graph): Use it.
6424 * tree-switch-conversion.c (try_switch_expansion): Remove
6426 (emit_case_nodes): Use generate_range_test.
6428 2017-09-04 Uros Bizjak <ubizjak@gmail.com>
6431 * config/i386/i386.md (*<btsc><mode>_mask): Add
6432 TARGET_USE_BT to insn constraint.
6433 (*btr<mode>_mask): Ditto.
6435 2017-09-04 Wilco Dijkstra <wdijkstr@arm.com>
6437 * config/arm/arm.c (arm_legitimate_index_p): Add comment.
6438 (thumb2_legitimate_index_p): Use correct range for DI/DF mode.
6440 2017-09-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
6443 * config/arm/arm.md (*arm_adddi3, *arm_subdi3): Split early except for
6444 TARGET_NEON and TARGET_IWMMXT.
6445 (anddi3, iordi3, xordi3, one_cmpldi2): Split while expanding except for
6446 TARGET_NEON and TARGET_IWMMXT.
6447 (*one_cmpldi2_insn): Moved the body of one_cmpldi2 here.
6449 2017-09-04 Uros Bizjak <ubizjak@gmail.com>
6451 * config/i386/i386-protos.h (ix86_tls_address_pattern_p) New prototype.
6452 (ix86_rewrite_tls_address): Ditto.
6453 * config/i386/i386.c (ix86_tls_address_pattern_p) New function.
6454 (ix86_rewrite_tls_address_1): Ditto.
6455 (ix86_rewrite_tls_address): Ditto.
6456 * config/i386/predicates.md (tls_address_pattern): New predicate.
6457 * config/i386/i386.md (TLS address splitter): New splitter.
6459 2017-09-04 Richard Biener <rguenther@suse.de>
6461 PR tree-optimization/82084
6462 * fold-const.h (can_native_encode_string_p): Declare.
6463 * fold-const.c (can_native_encode_string_p): Factor out from ...
6464 (native_encode_string): ... here.
6465 * tree-vect-stmts.c (vectorizable_store): Call it to avoid
6466 vectorizing stores from constants we later cannot handle.
6468 2017-09-04 Marek Polacek <polacek@redhat.com>
6471 * doc/invoke.texi: Update -Wtautological-compare documentation.
6473 2017-09-04 Jeff Law <law@redhat.com>
6475 PR tree-optimization/64910
6476 * tree-ssa-reassoc.c (reassociate_bb): For bitwise binary ops,
6477 swap the first and last operand if the last is a constant.
6479 2017-09-04 Marek Polacek <polacek@redhat.com>
6482 * convert.c (do_narrow): When sanitizing signed integer overflows,
6483 bail out for signed types.
6484 (convert_to_integer_1) <case NEGATE_EXPR>: Likewise.
6486 2017-09-04 Richard Biener <rguenther@suse.de>
6488 PR tree-optimization/82060
6489 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
6490 Move devirtualization after stmt folding and before EH/AB/noreturn
6491 cleanup to get the stmt refs canonicalized. Use a bool instead
6492 of gimple_modified_p since that doesn't work for NOPs. Schedule
6493 NOPs generated by folding for removal.
6495 2017-09-04 Richard Sandiford <richard.sandiford@linaro.org>
6496 Alan Hayward <alan.hayward@arm.com>
6497 David Sherwood <david.sherwood@arm.com>
6499 * coretypes.h (pad_direction): New enum.
6500 * defaults.h (DEFAULT_FUNCTION_ARG_PADDING): Delete.
6501 (FUNCTION_ARG_PADDING): Likewise.
6502 * target.def (function_arg_padding): New hook.
6503 * targhooks.h (default_function_arg_padding): Declare.
6504 * targhooks.c (default_function_arg_padding): New function.
6505 * doc/tm.texi.in (FUNCTION_ARG_PADDING): Replace with...
6506 (TARGET_FUNCTION_ARG_PADDING): ...this.
6507 * doc/tm.texi: Regenerate.
6508 * calls.c (store_unaligned_arguments_into_pseudos): Use pad_direction
6509 instead of direction.
6510 (compute_argument_addresses): Likewise.
6511 (load_register_parameters): Likewise.
6512 (emit_library_call_value_1): Likewise.
6513 (store_one_arg): Use targetm.calls.function_arg_padding instead
6514 of FUNCTION_ARG_PADDING.
6515 (must_pass_in_stack_var_size_or_pad): Likewise.
6516 * expr.c (emit_group_load_1): Use pad_direction instead of direction.
6517 (emit_group_store): Likewise.
6518 (emit_single_push_insn_1): Use targetm.calls.function_arg_padding
6519 instead of FUNCTION_ARG_PADDING.
6520 (emit_push_insn): Likewise, and propagate enum change throughout
6522 * function.h (direction): Delete.
6523 (locate_and_pad_arg_data::where_pad): Use pad_direction instead
6525 * function.c (assign_parm_find_stack_rtl): Likewise.
6526 (assign_parm_setup_block_p): Likewise.
6527 (assign_parm_setup_block): Likewise.
6528 (gimplify_parameters): Likewise.
6529 (locate_and_pad_parm): Use targetm.calls.function_arg_padding
6530 instead of FUNCTION_ARG_PADDING, and propagate enum change throughout
6532 * config/aarch64/aarch64.h (FUNCTION_ARG_PADDING): Delete.
6533 (BLOCK_REG_PADDING): Use pad_direction instead of direction.
6534 * config/aarch64/aarch64-protos.h (aarch64_pad_arg_upward): Delete.
6535 * config/aarch64/aarch64.c (aarch64_pad_arg_upward): Replace with...
6536 (aarch64_function_arg_padding): ...this new function.
6537 (aarch64_gimplify_va_arg_expr): Use pad_direction instead of direction.
6538 (TARGET_FUNCTION_ARG_PADDING): Redefine.
6539 * config/arm/arm.h (FUNCTION_ARG_PADDING): Delete.
6540 (BLOCK_REG_PADDING): Use pad_direction instead of direction.
6541 * config/arm/arm-protos.h (arm_pad_arg_upward): Delete.
6542 * config/arm/arm.c (TARGET_FUNCTION_ARG_PADDING): Redefine.
6543 (arm_pad_arg_upward): Replace with...
6544 (arm_function_arg_padding): ...this new function.
6545 * config/c6x/c6x.h (BLOCK_REG_PADDING): Use pad_direction instead
6547 * config/ia64/hpux.h (FUNCTION_ARG_PADDING): Delete.
6548 * config/ia64/ia64-protos.h (ia64_hpux_function_arg_padding): Delete.
6549 * config/ia64/ia64.c (TARGET_FUNCTION_ARG_PADDING): Redefine.
6550 (ia64_hpux_function_arg_padding): Replace with...
6551 (ia64_function_arg_padding): ...this new function. Use pad_direction
6552 instead of direction. Check for TARGET_HPUX.
6553 * config/iq2000/iq2000.h (FUNCTION_ARG_PADDING): Delete.
6554 * config/iq2000/iq2000.c (TARGET_FUNCTION_ARG_PADDING): Redefine.
6555 (iq2000_function_arg_padding): New function.
6556 * config/mips/mips-protos.h (mips_pad_arg_upward): Delete.
6557 * config/mips/mips.c (mips_pad_arg_upward): Replace with...
6558 (mips_function_arg_padding): ...this new function.
6559 (mips_pad_reg_upward): Update accordingly.
6560 (TARGET_FUNCTION_ARG_PADDING): Redefine.
6561 * config/mips/mips.h (PAD_VARARGS_DOWN): Use
6562 targetm.calls.function_arg_padding.
6563 (FUNCTION_ARG_PADDING): Delete.
6564 (BLOCK_REG_PADDING): Use pad_direction instead of direction.
6565 * config/nios2/nios2.h (FUNCTION_ARG_PADDING): Delete.
6566 (PAD_VARARGS_DOWN): Use targetm.calls.function_arg_padding.
6567 * config/nios2/nios2-protos.h (nios2_function_arg_padding): Delete.
6568 (nios2_block_reg_padding): Return pad_direction instead of direction.
6569 * config/nios2/nios2.c (nios2_block_reg_padding): Return pad_direction
6570 instead of direction.
6571 (nios2_function_arg_padding): Likewise. Make static.
6572 (TARGET_FUNCTION_ARG_PADDING): Redefine.
6573 * config/pa/pa.h (FUNCTION_ARG_PADDING): Delete.
6574 (BLOCK_REG_PADDING): Use targetm.calls.function_arg_padding.
6575 * config/pa/pa-protos.h (pa_function_arg_padding): Delete.
6576 * config/pa/pa.c (TARGET_FUNCTION_ARG_PADDING): Redefine.
6577 (pa_function_arg_padding): Make static. Return pad_direction instead
6579 * config/powerpcspe/powerpcspe.h (FUNCTION_ARG_PADDING): Delete.
6580 (PAD_VARARGS_DOWN): Use targetm.calls.function_arg_padding.
6581 * config/powerpcspe/aix.h (BLOCK_REG_PADDING): Use pad_direction
6582 instead of direction. Use targetm.calls.function_arg_padding.
6583 * config/powerpcspe/darwin.h (BLOCK_REG_PADDING): Likewise.
6584 * config/powerpcspe/freebsd64.h (BLOCK_REG_PADDING): Likewise.
6585 * config/powerpcspe/linux64.h (BLOCK_REG_PADDING): Likewise.
6586 * config/powerpcspe/powerpcspe-protos.h (function_arg_padding): Delete.
6587 * config/powerpcspe/powerpcspe.c (TARGET_FUNCTION_ARG_PADDING):
6589 (function_arg_padding): Rename to...
6590 (rs6000_function_arg_padding): ...this. Make static. Return
6591 pad_direction instead of direction.
6592 (rs6000_return_in_msb): Use rs6000_function_arg_padding.
6593 * config/rs6000/rs6000.h (FUNCTION_ARG_PADDING): Delete.
6594 (PAD_VARARGS_DOWN): Use targetm.calls.function_arg_padding.
6595 * config/rs6000/aix.h (BLOCK_REG_PADDING): Use pad_direction
6596 instead of direction. Use targetm.calls.function_arg_padding.
6597 * config/rs6000/darwin.h (BLOCK_REG_PADDING): Likewise.
6598 * config/rs6000/freebsd64.h (BLOCK_REG_PADDING): Likewise.
6599 * config/rs6000/linux64.h (BLOCK_REG_PADDING): Likewise.
6600 * config/rs6000/rs6000-protos.h (function_arg_padding): Delete.
6601 * config/rs6000/rs6000.c (TARGET_FUNCTION_ARG_PADDING): Redefine.
6602 (function_arg_padding): Rename to...
6603 (rs6000_function_arg_padding): ...this. Make static. Return
6604 pad_direction instead of direction.
6605 (rs6000_return_in_msb): Use rs6000_function_arg_padding.
6606 * config/s390/s390.h (FUNCTION_ARG_PADDING): Delete.
6607 * config/s390/s390.c (s390_function_arg_padding): New function.
6608 (TARGET_FUNCTION_ARG_PADDING): Redefine.
6609 * config/sparc/sparc.h (FUNCTION_ARG_PADDING): Delete.
6610 * config/sparc/sparc-protos.h (function_arg_padding): Delete.
6611 * config/sparc/sparc.c (TARGET_FUNCTION_ARG_PADDING): Redefine.
6612 (function_arg_padding): Rename to...
6613 (sparc_function_arg_padding): ...this. Make static. Return
6614 pad_direction instead of direction.
6615 * config/spu/spu.h (FUNCTION_ARG_PADDING): Delete.
6616 * config/spu/spu.c (spu_function_arg_padding): New function.
6617 (TARGET_FUNCTION_ARG_PADDING): Redefine.
6618 * system.h (FUNCTION_ARG_PADDING): Poison.
6620 2017-09-04 Richard Sandiford <richard.sandiford@linaro.org>
6621 Alan Hayward <alan.hayward@arm.com>
6622 David Sherwood <david.sherwood@arm.com>
6624 * target.def (modes_tieable_p): New hook.
6625 * doc/tm.texi (MODES_TIEABLE_P): Replace with...
6626 (TARGET_MODES_TIEABLE_P): ...this.
6627 * doc/tm.texi.in: Regenerate.
6628 * hooks.h (hook_bool_mode_mode_true): Declare.
6629 * hooks.c (hook_bool_mode_mode_true): New function.
6630 * combine.c (subst): Use targetm.modes_tieable_p instead of
6632 * dse.c (find_shift_sequence): Likewise.
6633 * expmed.c (extract_low_bits): Likewise.
6634 * lower-subreg.c: Include target.h.
6635 (find_decomposable_subregs): Use targetm.modes_tieable_p instead of
6637 * rtlanal.c (rtx_cost): Likewise.
6638 * config/aarch64/aarch64.h (MODES_TIEABLE_P): Delete.
6639 * config/aarch64/aarch64-protos.h (aarch64_modes_tieable_p): Delete.
6640 * config/aarch64/aarch64.c (aarch64_modes_tieable_p): Make static.
6641 (TARGET_MODES_TIEABLE_P): Redefine.
6642 * config/alpha/alpha.h (MODES_TIEABLE_P): Delete.
6643 * config/alpha/alpha.c (alpha_modes_tieable_p): New function.
6644 (TARGET_MODES_TIEABLE_P): Redefine.
6645 * config/arc/arc.h (MODES_TIEABLE_P): Delete.
6646 * config/arc/arc.c (TARGET_MODES_TIEABLE_P): Redefine.
6647 (arc_modes_tieable_p): New function.
6648 * config/arm/arm.h (MODES_TIEABLE_P): Delete.
6649 * config/arm/arm-protos.h (arm_modes_tieable_p): Delete.
6650 * config/arm/arm.c (TARGET_MODES_TIEABLE_P): Redefine.
6651 (arm_modes_tieable_p): Make static.
6652 * config/avr/avr.h (MODES_TIEABLE_P): Delete.
6653 * config/bfin/bfin.h (MODES_TIEABLE_P): Delete.
6654 * config/bfin/bfin.c (bfin_modes_tieable_p): New function.
6655 (TARGET_MODES_TIEABLE_P): Redefine.
6656 * config/c6x/c6x.h (MODES_TIEABLE_P): Delete.
6657 * config/c6x/c6x.c (c6x_modes_tieable_p): New function.
6658 (TARGET_MODES_TIEABLE_P): Redefine.
6659 * config/cr16/cr16.h (MODES_TIEABLE_P): Delete.
6660 * config/cr16/cr16.c (TARGET_MODES_TIEABLE_P): Redefine.
6661 (cr16_modes_tieable_p): New function.
6662 * config/cris/cris.h (MODES_TIEABLE_P): Delete.
6663 * config/epiphany/epiphany.h (MODES_TIEABLE_P): Delete.
6664 * config/fr30/fr30.h (MODES_TIEABLE_P): Delete.
6665 (TRULY_NOOP_TRUNCATION): Update comment.
6666 * config/frv/frv.h (MODES_TIEABLE_P): Delete.
6667 (TRULY_NOOP_TRUNCATION): Update comment.
6668 * config/frv/frv.c (TARGET_MODES_TIEABLE_P): Redefine.
6669 (frv_modes_tieable_p): New function.
6670 * config/ft32/ft32.h (MODES_TIEABLE_P): Delete.
6671 * config/h8300/h8300.h (MODES_TIEABLE_P): Delete.
6672 * config/h8300/h8300.c (h8300_modes_tieable_p): New function.
6673 (TARGET_MODES_TIEABLE_P): Redefine.
6674 * config/i386/i386.h (MODES_TIEABLE_P): Delete.
6675 * config/i386/i386-protos.h (ix86_modes_tieable_p): Delete.
6676 * config/i386/i386.c (ix86_modes_tieable_p): Make static.
6677 (TARGET_MODES_TIEABLE_P): Redefine.
6678 * config/ia64/ia64.h (MODES_TIEABLE_P): Delete.
6679 * config/ia64/ia64.c (TARGET_MODES_TIEABLE_P): Redefine.
6680 (ia64_modes_tieable_p): New function.
6681 * config/iq2000/iq2000.h (MODES_TIEABLE_P): Delete.
6682 * config/iq2000/iq2000.c (TARGET_MODES_TIEABLE_P): Redefine.
6683 (iq2000_modes_tieable_p): New function.
6684 * config/lm32/lm32.h (MODES_TIEABLE_P): Delete.
6685 * config/lm32/lm32.c (TARGET_MODES_TIEABLE_P): Redefine.
6686 (lm32_modes_tieable_p): New function.
6687 * config/m32c/m32c.h (MODES_TIEABLE_P): Delete.
6688 * config/m32c/m32c-protos.h (m32c_modes_tieable_p): Delete.
6689 * config/m32c/m32c.c (m32c_modes_tieable_p): Make static.
6690 (TARGET_MODES_TIEABLE_P): Redefine.
6691 * config/m32r/m32r.h (MODES_TIEABLE_P): Delete.
6692 * config/m32r/m32r.c (TARGET_MODES_TIEABLE_P): Redefine.
6693 (m32r_modes_tieable_p): New function.
6694 * config/m68k/m68k.h (MODES_TIEABLE_P): Delete.
6695 * config/m68k/m68k.c (TARGET_MODES_TIEABLE_P): Redefine.
6696 (m68k_modes_tieable_p): New function.
6697 * config/mcore/mcore.h (MODES_TIEABLE_P): Delete.
6698 * config/mcore/mcore.c (TARGET_MODES_TIEABLE_P): Redefine.
6699 (mcore_modes_tieable_p): New function.
6700 * config/microblaze/microblaze.h (MODES_TIEABLE_P): Delete.
6701 * config/microblaze/microblaze.c (microblaze_modes_tieable_p): New
6703 (TARGET_MODES_TIEABLE_P): Redefine.
6704 * config/mips/mips.h (MODES_TIEABLE_P): Delete.
6705 * config/mips/mips-protos.h (mips_modes_tieable_p): Delete.
6706 * config/mips/mips.c (mips_modes_tieable_p): Make static.
6707 (TARGET_MODES_TIEABLE_P): Redefine.
6708 * config/mmix/mmix.h (MODES_TIEABLE_P): Delete.
6709 * config/mn10300/mn10300.h (MODES_TIEABLE_P): Delete.
6710 * config/mn10300/mn10300-protos.h (mn10300_modes_tieable): Delete.
6711 * config/mn10300/mn10300.c (mn10300_modes_tieable): Rename to...
6712 (mn10300_modes_tieable_p): ...this and make static.
6713 (TARGET_MODES_TIEABLE_P): Redefine.
6714 * config/moxie/moxie.h (MODES_TIEABLE_P): Delete.
6715 * config/msp430/msp430.h (MODES_TIEABLE_P): Delete.
6716 * config/msp430/msp430-protos.h (msp430_modes_tieable_p): Delete.
6717 * config/msp430/msp430.c (TARGET_MODES_TIEABLE_P): Redefine.
6718 (msp430_modes_tieable_p): Make static.
6719 * config/nds32/nds32.h (MODES_TIEABLE_P): Delete.
6720 * config/nds32/nds32.c (nds32_modes_tieable_p): New function.
6721 (TARGET_MODES_TIEABLE_P): Redefine.
6722 * config/nios2/nios2.h (MODES_TIEABLE_P): Delete.
6723 * config/nvptx/nvptx.h (MODES_TIEABLE_P): Delete.
6724 * config/nvptx/nvptx.c (nvptx_modes_tieable_p): New function.
6725 (TARGET_MODES_TIEABLE_P): Redefine.
6726 * config/pa/pa.h (MODES_TIEABLE_P): Delete.
6727 * config/pa/pa-protos.h (pa_modes_tieable_p): Delete.
6728 * config/pa/pa.c (pa_modes_tieable_p): Make static.
6729 (TARGET_MODES_TIEABLE_P): Redefine.
6730 * config/pdp11/pdp11.h (MODES_TIEABLE_P): Delete.
6731 * config/pdp11/pdp11.c (TARGET_MODES_TIEABLE_P): Redefine.
6732 (pdp11_modes_tieable_p): New function.
6733 * config/powerpcspe/powerpcspe.h (MODES_TIEABLE_P): Delete.
6734 * config/powerpcspe/powerpcspe.c (TARGET_MODES_TIEABLE_P): Redefine.
6735 (rs6000_modes_tieable_p): New function.
6736 (rs6000_debug_reg_global): Use it instead of MODES_TIEABLE_P.
6737 * config/powerpcspe/powerpcspe.md: Update comment.
6738 * config/riscv/riscv.h (MODES_TIEABLE_P): Delete.
6739 * config/riscv/riscv.c (riscv_modes_tieable_p): New function.
6740 (TARGET_MODES_TIEABLE_P): Redefine.
6741 * config/rl78/rl78.h (MODES_TIEABLE_P): Delete.
6742 * config/rl78/rl78.c (TARGET_MODES_TIEABLE_P): Redefine.
6743 (rl78_modes_tieable_p): New function.
6744 * config/rs6000/rs6000.h (MODES_TIEABLE_P): Delete.
6745 * config/rs6000/rs6000.c (TARGET_MODES_TIEABLE_P): Redefine.
6746 (rs6000_modes_tieable_p): New function.
6747 (rs6000_debug_reg_global): Use it instead of MODES_TIEABLE_P.
6748 * config/rs6000/rs6000.md: Update comment.
6749 * config/rx/rx.h (MODES_TIEABLE_P): Delete.
6750 * config/rx/rx.c (rx_modes_tieable_p): New function.
6751 (TARGET_MODES_TIEABLE_P): Redefine.
6752 * config/s390/s390.h (MODES_TIEABLE_P): Delete.
6753 * config/s390/s390.c (s390_modes_tieable_p): New function.
6754 (TARGET_MODES_TIEABLE_P): Redefine.
6755 * config/sh/sh.h (MODES_TIEABLE_P): Delete.
6756 * config/sh/sh.c (TARGET_MODES_TIEABLE_P): Redefine.
6757 (sh_modes_tieable_p): New function.
6758 * config/sparc/sparc.h (MODES_TIEABLE_P): Delete.
6759 * config/sparc/sparc-protos.h (sparc_modes_tieable_p): Delete.
6760 * config/sparc/sparc.c (TARGET_MODES_TIEABLE_P): Redefine.
6761 (sparc_modes_tieable_p): Make static.
6762 * config/spu/spu.h (MODES_TIEABLE_P): Delete.
6763 * config/spu/spu.c (spu_modes_tieable_p): New function.
6764 (TARGET_MODES_TIEABLE_P): Redefine.
6765 * config/stormy16/stormy16.h (MODES_TIEABLE_P): Delete.
6766 * config/stormy16/stormy16.c (xstormy16_modes_tieable_p): New function.
6767 (TARGET_MODES_TIEABLE_P): Redefine.
6768 * config/tilegx/tilegx.h (MODES_TIEABLE_P): Delete.
6769 * config/tilepro/tilepro.h (MODES_TIEABLE_P): Delete.
6770 * config/v850/v850.h (MODES_TIEABLE_P): Delete.
6771 * config/v850/v850.c (v850_modes_tieable_p): New function.
6772 (TARGET_MODES_TIEABLE_P): Redefine.
6773 * config/vax/vax.h (MODES_TIEABLE_P): Delete.
6774 * config/visium/visium.h (MODES_TIEABLE_P): Delete.
6775 * config/visium/visium.c (TARGET_MODES_TIEABLE_P): Redefine.
6776 (visium_modes_tieable_p): New function.
6777 * config/xtensa/xtensa.h (MODES_TIEABLE_P): Delete.
6778 * config/xtensa/xtensa.c (TARGET_MODES_TIEABLE_P): Redefine.
6779 (xtensa_modes_tieable_p): New function.
6780 * system.h (MODES_TIEABLE_P): Poison.
6782 2017-09-04 Richard Sandiford <richard.sandiford@linaro.org>
6783 Alan Hayward <alan.hayward@arm.com>
6784 David Sherwood <david.sherwood@arm.com>
6786 * target.def (hard_regno_mode_ok): New hook.
6787 * doc/tm.texi (HARD_REGNO_MODE_OK): Replace with...
6788 (TARGET_HARD_REGNO_MODE_OK): ...this.
6789 * doc/tm.texi.in: Regenerate.
6790 * hooks.h (hook_bool_uint_mode_true): Declare.
6791 * hooks.c (hook_bool_uint_mode_true): New function.
6792 * doc/md.texi: Refer to targetm.hard_regno_mode_ok instead of
6794 * genpreds.c (write_insn_preds_c): Add an include of target.h.
6795 * alias.c (init_alias_target): Use targetm.hard_regno_mode_ok
6796 instead of HARD_REGNO_MODE_OK.
6797 * caller-save.c: Include target.h.
6798 (reg_save_code): Use targetm.hard_regno_mode_ok instead of
6800 * combine.c (can_combine_p): Likewise.
6801 (combinable_i3pat): Likewise.
6802 (can_change_dest_mode): Likewise.
6803 * expr.c (init_expr_target): Likewise.
6804 (convert_move): Likewise.
6805 (convert_modes): Likewise.
6806 * ira.c (setup_prohibited_class_mode_regs): Likewise.
6807 (setup_prohibited_mode_move_regs): Likewise.
6808 * ira.h (target_ira): Likewise.
6809 * lra-assigns.c (find_hard_regno_for_1): Likewise.
6810 * lra-constraints.c (process_alt_operands): Likewise.
6811 (split_reg): Likewise.
6812 * recog.c (peep2_find_free_register): Likewise.
6813 * ree.c (combine_reaching_defs): Likewise.
6814 * regcprop.c (maybe_mode_change): Likewise.
6815 * reginfo.c (init_reg_sets_1): Likewise.
6816 (choose_hard_reg_mode): Likewise.
6817 (simplifiable_subregs): Likewise.
6818 * regrename.c (check_new_reg_p): Likewise.
6819 * reload.c (find_valid_class): Likewise.
6820 (find_valid_class_1): Likewise.
6821 (reload_inner_reg_of_subreg): Likewise.
6822 (push_reload): Likewise.
6823 (combine_reloads): Likewise.
6824 (find_dummy_reload): Likewise.
6825 (find_reloads): Likewise.
6826 * reload1.c (find_reg): Likewise.
6827 (set_reload_reg): Likewise.
6828 (allocate_reload_reg): Likewise.
6829 (choose_reload_regs): Likewise.
6830 (reload_adjust_reg_for_temp): Likewise.
6831 * rtlanal.c (subreg_size_offset_from_lsb): Likewise.
6832 (simplify_subreg_regno): Likewise.
6833 * sel-sched.c (init_regs_for_mode): Likewise.
6834 * varasm.c (make_decl_rtl): Likewise.
6835 * config/aarch64/aarch64.h (HARD_REGNO_MODE_OK): Delete.
6836 (MODES_TIEABLE_P): Use targetm.hard_regno_mode_ok instead of
6838 * config/aarch64/aarch64-protos.h (aarch64_hard_regno_mode_ok): Delete.
6839 * config/aarch64/aarch64.c (aarch64_hard_regno_mode_ok): Make static.
6840 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6841 * config/alpha/alpha.h (HARD_REGNO_MODE_OK): Delete.
6842 * config/alpha/alpha.c (alpha_hard_regno_mode_ok): New function.
6843 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6844 * config/arc/arc.h (arc_hard_regno_mode_ok): Delete.
6845 (arc_mode_class): Delete.
6846 (HARD_REGNO_MODE_OK): Delete.
6847 * config/arc/arc.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6848 (arc_hard_regno_mode_ok): Rename old array to...
6849 (arc_hard_regno_mode_ok_modes): ...this.
6850 (arc_conditional_register_usage): Update accordingly.
6851 (arc_mode_class): Make static.
6852 (arc_hard_regno_mode_ok): New function.
6853 * config/arm/arm.h (HARD_REGNO_MODE_OK): Delete.
6854 * config/arm/arm-protos.h (arm_hard_regno_mode_ok): Delete.
6855 * config/arm/arm.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6856 (arm_hard_regno_mode_ok): Make static.
6857 * config/arm/arm.md (movdi): Use targetm.hard_regno_mode_ok instead of
6859 * config/avr/avr-protos.h (avr_hard_regno_mode_ok): Delete.
6860 * config/avr/avr.h (HARD_REGNO_MODE_OK): Delete.
6861 * config/avr/avr.c (avr_hard_regno_mode_ok): Make static and
6863 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6864 * config/bfin/bfin-protos.h (hard_regno_mode_ok): Delete.
6865 * config/bfin/bfin.h (HARD_REGNO_MODE_OK): Delete.
6866 * config/bfin/bfin.c (hard_regno_mode_ok): Rename to...
6867 (bfin_hard_regno_mode_ok): ...this. Make static and return a bool.
6868 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6869 * config/bfin/predicates.md (valid_reg_operand): Use
6870 targetm.hard_regno_mode_ok instead of HARD_REGNO_MODE_OK.
6871 * config/c6x/c6x.h (HARD_REGNO_MODE_OK): Delete.
6872 * config/c6x/c6x.c (c6x_hard_regno_mode_ok): New function.
6873 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6874 * config/cr16/cr16.h (HARD_REGNO_MODE_OK): Delete.
6875 * config/cr16/cr16-protos.h (cr16_hard_regno_mode_ok): Delete.
6876 * config/cr16/cr16.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6877 (cr16_hard_regno_mode_ok): Make static and return a bool.
6878 * config/cris/cris.h (HARD_REGNO_MODE_OK): Delete.
6879 * config/cris/cris.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6880 (cris_hard_regno_mode_ok): New function.
6881 * config/epiphany/epiphany.h (epiphany_hard_regno_mode_ok): Delete.
6882 (epiphany_mode_class): Delete.
6883 (HARD_REGNO_MODE_OK): Delete.
6884 * config/epiphany/epiphany-protos.h (hard_regno_mode_ok): Delete.
6885 * config/epiphany/epiphany.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6886 (hard_regno_mode_ok): Rename to...
6887 (epiphany_hard_regno_mode_ok): ...this. Make static and return a bool.
6888 * config/fr30/fr30.h (HARD_REGNO_MODE_OK): Delete.
6889 * config/fr30/fr30.md: Refer to targetm.hard_regno_mode_ok instead of
6891 * config/frv/frv.h (HARD_REGNO_MODE_OK): Delete.
6892 * config/frv/frv-protos.h (frv_hard_regno_mode_ok): Delete.
6893 * config/frv/frv.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6894 (frv_hard_regno_mode_ok): Make static and return a bool.
6895 * config/frv/frv.md: Refer to targetm.hard_regno_mode_ok instead of
6897 * config/ft32/ft32.h (HARD_REGNO_MODE_OK): Delete.
6898 * config/h8300/h8300.h (HARD_REGNO_MODE_OK): Delete.
6899 * config/h8300/h8300-protos.h (h8300_hard_regno_mode_ok): Delete.
6900 * config/h8300/h8300.c (h8300_hard_regno_mode_ok): Make static
6902 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6903 * config/i386/i386.h (HARD_REGNO_MODE_OK): Delete.
6904 * config/i386/i386-protos.h (ix86_hard_regno_mode_ok): Delete.
6905 * config/i386/i386.c (ix86_hard_regno_mode_ok): Make static and
6907 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6908 * config/ia64/ia64.h (HARD_REGNO_MODE_OK): Delete.
6909 * config/ia64/ia64.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6910 (ia64_hard_regno_mode_ok): New function.
6911 * config/iq2000/iq2000.h (HARD_REGNO_MODE_OK): Delete.
6912 * config/iq2000/iq2000.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6913 (iq2000_hard_regno_mode_ok): New function.
6914 * config/lm32/lm32.h (HARD_REGNO_MODE_OK): Delete.
6915 * config/lm32/lm32.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6916 (lm32_hard_regno_mode_ok): New function.
6917 * config/m32c/m32c.h (HARD_REGNO_MODE_OK): Delete.
6918 * config/m32c/m32c-protos.h (m32c_hard_regno_ok): Delete.
6919 * config/m32c/m32c.c (class_can_hold_mode): Use m32c_hard_regno_mode_ok
6920 instead of HARD_REGNO_MODE_OK.
6921 (m32c_hard_regno_ok): Rename to...
6922 (m32c_hard_regno_mode_ok): ...this. Make static and return a bool.
6923 (m32c_cannot_change_mode_class): Update accordingly.
6924 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6925 * config/m32r/m32r.h (m32r_hard_regno_mode_ok): Delete.
6926 (m32r_mode_class): Delete.
6927 (HARD_REGNO_MODE_OK): Delete.
6928 * config/m32r/m32r.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6929 (m32r_hard_regno_mode_ok): Rename to...
6930 (m32r_hard_regno_modes): ...this.
6931 (m32r_mode_class): Make static.
6932 (m32r_hard_regno_mode_ok): New function.
6933 * config/m68k/m68k.h (HARD_REGNO_MODE_OK): Delete.
6934 * config/m68k/m68k-protos.h (m68k_regno_mode_ok): Delete.
6935 * config/m68k/m68k.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6936 (m68k_hard_regno_mode_ok): Make static.
6937 * config/mcore/mcore.h (HARD_REGNO_MODE_OK): Delete.
6938 * config/mcore/mcore.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6939 (mcore_hard_regno_mode_ok): New function.
6940 * config/microblaze/microblaze.h (microblaze_hard_regno_mode_ok)
6941 (HARD_REGNO_MODE_OK): Delete.
6942 * config/microblaze/microblaze.c (microblaze_hard_regno_mode_ok):
6944 (microblaze_hard_regno_mode_ok_p): ...this and make static.
6945 (microblaze_hard_regno_mode_ok): New function.
6946 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6947 * config/mips/mips.h (HARD_REGNO_MODE_OK): Delete.
6948 (mips_hard_regno_mode_ok): Delete.
6949 * config/mips/mips.c (mips_hard_regno_mode_ok): Rename to...
6950 (mips_hard_regno_mode_ok_p): ...this and make static.
6951 (mips_hard_regno_mode_ok_p): Rename to...
6952 (mips_hard_regno_mode_ok_uncached): ...this.
6953 (mips_hard_regno_mode_ok): New function.
6954 (mips_class_max_nregs): Use mips_hard_regno_mode_ok instead
6955 of HARD_REGNO_MODE_OK.
6956 (mips_option_override): Update after above name changes.
6957 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6958 * config/mmix/mmix.h (HARD_REGNO_MODE_OK): Delete.
6959 * config/mn10300/mn10300.h (HARD_REGNO_MODE_OK): Delete.
6960 * config/mn10300/mn10300-protos.h (mn10300_hard_regno_mode_ok): Delete.
6961 * config/mn10300/mn10300.c (mn10300_hard_regno_mode_ok): Make static.
6962 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6963 * config/moxie/moxie.h (HARD_REGNO_MODE_OK): Delete.
6964 * config/msp430/msp430.h (HARD_REGNO_MODE_OK): Delete.
6965 * config/msp430/msp430-protos.h (msp430_hard_regno_mode_ok): Delete.
6966 * config/msp430/msp430.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6967 (msp430_hard_regno_mode_ok): Make static and return a bool.
6968 * config/nds32/nds32.h (HARD_REGNO_MODE_OK): Delete.
6969 * config/nds32/nds32-protos.h (nds32_hard_regno_mode_ok): Delete.
6970 * config/nds32/nds32.c (nds32_hard_regno_mode_ok): Make static
6972 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6973 * config/nios2/nios2.h (HARD_REGNO_MODE_OK): Delete.
6974 * config/nvptx/nvptx.h (HARD_REGNO_MODE_OK): Delete.
6975 * config/pa/pa.h (MODES_TIEABLE_P): Update commentary.
6976 * config/pa/pa32-regs.h (HARD_REGNO_MODE_OK): Rename to...
6977 (PA_HARD_REGNO_MODE_OK): ...this
6978 * config/pa/pa64-regs.h (HARD_REGNO_MODE_OK): Rename to...
6979 (PA_HARD_REGNO_MODE_OK): ...this.
6980 * config/pa/pa.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6981 (pa_hard_regno_mode_ok): New function.
6982 * config/pdp11/pdp11.h (HARD_REGNO_MODE_OK): Delete.
6983 * config/pdp11/pdp11.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
6984 (pdp11_hard_regno_mode_ok): New function.
6985 * config/powerpcspe/powerpcspe.h (HARD_REGNO_MODE_OK): Delete.
6986 * config/powerpcspe/powerpcspe-protos.h (rs6000_hard_regno_mode_ok_p):
6988 * config/powerpcspe/powerpcspe.c (rs6000_hard_regno_mode_ok_p):
6990 (TARGET_HARD_REGNO_MODE_OK): Redefine.
6991 (rs6000_hard_regno_mode_ok): Rename to...
6992 (rs6000_hard_regno_mode_ok_uncached): ...this.
6993 (rs6000_init_hard_regno_mode_ok): Update accordingly.
6994 (rs6000_hard_regno_mode_ok): New function.
6995 * config/riscv/riscv.h (HARD_REGNO_MODE_OK): Delete.
6996 * config/riscv/riscv-protos.h (riscv_hard_regno_mode_ok_p): Delete.
6997 * config/riscv/riscv.c (riscv_hard_regno_mode_ok_p): Rename to...
6998 (riscv_hard_regno_mode_ok): ...this and make static.
6999 (TARGET_HARD_REGNO_MODE_OK): Redefine.
7000 * config/rl78/rl78.h (HARD_REGNO_MODE_OK): Delete.
7001 * config/rl78/rl78-protos.h (rl78_hard_regno_mode_ok): Delete.
7002 * config/rl78/rl78.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
7003 (rl78_hard_regno_mode_ok): Make static and return bool.
7004 * config/rs6000/rs6000.h (HARD_REGNO_MODE_OK): Delete.
7005 * config/rs6000/rs6000-protos.h (rs6000_hard_regno_mode_ok_p):
7007 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok_p): Make static.
7008 (TARGET_HARD_REGNO_MODE_OK): Redefine.
7009 (rs6000_hard_regno_mode_ok): Rename to...
7010 (rs6000_hard_regno_mode_ok_uncached): ...this.
7011 (rs6000_init_hard_regno_mode_ok): Update accordingly.
7012 (rs6000_hard_regno_mode_ok): New function.
7013 * config/rx/rx.h (HARD_REGNO_MODE_OK): Delete.
7014 * config/rx/rx.c (rx_hard_regno_mode_ok): New function.
7015 (TARGET_HARD_REGNO_MODE_OK): Redefine.
7016 * config/s390/s390.h (HARD_REGNO_MODE_OK): Delete.
7017 * config/s390/s390-protos.h (s390_hard_regno_mode_ok): Delete.
7018 * config/s390/s390.c (s390_hard_regno_mode_ok): Make static.
7019 (TARGET_HARD_REGNO_MODE_OK): Redefine.
7020 * config/sh/sh.h (HARD_REGNO_MODE_OK): Delete.
7021 * config/sh/sh-protos.h (sh_hard_regno_mode_ok): Delete.
7022 * config/sh/sh.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
7023 (sh_hard_regno_mode_ok): Make static.
7024 * config/sparc/constraints.md: Refer to targetm.hard_regno_mode_ok
7025 instead of HARD_REGNO_MODE_OK.
7026 * config/sparc/sparc.h (hard_regno_mode_classes): Delete.
7027 (sparc_mode_class): Delete.
7028 (HARD_REGNO_MODE_OK): Delete.
7029 * config/sparc/sparc.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
7030 (hard_regno_mode_classes): Make static.
7031 (sparc_mode_class): Likewise.
7032 (sparc_hard_regno_mode_ok): New function.
7033 * config/spu/spu.h (HARD_REGNO_MODE_OK): Delete.
7034 * config/stormy16/stormy16.h (HARD_REGNO_MODE_OK): Delete.
7035 * config/stormy16/stormy16.c (xstormy16_hard_regno_mode_ok): New
7037 (TARGET_HARD_REGNO_MODE_OK): Redefine.
7038 * config/tilegx/tilegx.h (HARD_REGNO_MODE_OK): Delete.
7039 * config/tilepro/tilepro.h (HARD_REGNO_MODE_OK): Delete.
7040 * config/v850/v850.h (HARD_REGNO_MODE_OK): Delete.
7041 * config/v850/v850.c (v850_hard_regno_mode_ok): New function.
7042 (TARGET_HARD_REGNO_MODE_OK): Redefine.
7043 * config/vax/vax.h (HARD_REGNO_MODE_OK): Delete.
7044 * config/visium/visium.h (HARD_REGNO_MODE_OK): Delete.
7045 * config/visium/visium.c (TARGET_HARD_REGNO_MODE_OK): Redefine.
7046 (visium_hard_regno_mode_ok): New function.
7047 * config/visium/visium.md: Refer to targetm.hard_regno_mode_ok
7048 instead of HARD_REGNO_MODE_OK.
7049 * config/xtensa/xtensa.h (xtensa_hard_regno_mode_ok): Delete.
7050 (HARD_REGNO_MODE_OK): Delete.
7051 * config/xtensa/xtensa.c (xtensa_hard_regno_mode_ok): Rename to...
7052 (xtensa_hard_regno_mode_ok_p): ...this and make static.
7053 (xtensa_option_override): Update accordingly.
7054 (TARGET_HARD_REGNO_MODE_OK): Redefine.
7055 (xtensa_hard_regno_mode_ok): New function.
7056 * system.h (HARD_REGNO_MODE_OK): Poison.
7058 2017-09-04 Richard Sandiford <richard.sandiford@linaro.org>
7059 Alan Hayward <alan.hayward@arm.com>
7060 David Sherwood <david.sherwood@arm.com>
7062 * target.def (hard_regno_call_part_clobbered): New hook.
7063 * doc/tm.texi.in (HARD_REGNO_CALL_PART_CLOBBERED): Replace with...
7064 (TARGET_HARD_REGNO_CALL_PART_CLOBBERED): ...this hook.
7065 * doc/tm.texi: Regenerate.
7066 * hooks.h (hook_bool_uint_mode_false): Declare.
7067 * hooks.c (hook_bool_uint_mode_false): New function.
7068 * regs.h (HARD_REGNO_CALL_PART_CLOBBERED): Delete.
7069 * cselib.c (cselib_process_insn): Use
7070 targetm.hard_regno_call_part_clobbered instead of
7071 HARD_REGNO_CALL_PART_CLOBBERED.
7072 * ira-conflicts.c (ira_build_conflicts): Likewise.
7073 * ira-costs.c (ira_tune_allocno_costs): Likewise.
7074 * lra-constraints.c (need_for_call_save_p): Likewise.
7075 * lra-lives.c: Include target.h.
7076 (check_pseudos_live_through_calls): Use
7077 targetm.hard_regno_call_part_clobbered instead of
7078 HARD_REGNO_CALL_PART_CLOBBERED.
7079 * regcprop.c: Include target.h.
7080 (copyprop_hardreg_forward_1): Use
7081 targetm.hard_regno_call_part_clobbered instead of
7082 HARD_REGNO_CALL_PART_CLOBBERED.
7083 * reginfo.c (choose_hard_reg_mode): Likewise.
7084 * regrename.c (check_new_reg_p): Likewise.
7085 * reload.c (find_equiv_reg): Likewise.
7086 * reload1.c (emit_reload_insns): Likewise.
7087 * sched-deps.c (deps_analyze_insn): Likewise.
7088 * sel-sched.c (init_regs_for_mode): Likewise.
7089 (mark_unavailable_hard_regs): Likewise.
7090 * targhooks.c (default_dwarf_frame_reg_mode): Likewise.
7091 * config/aarch64/aarch64.h (HARD_REGNO_CALL_PART_CLOBBERED): Delete.
7092 * config/aarch64/aarch64.c (aarch64_hard_regno_call_part_clobbered):
7094 (TARGET_HARD_REGNO_CALL_PART_CLOBBERED): Redefine.
7095 * config/avr/avr.h (HARD_REGNO_CALL_PART_CLOBBERED): Delete.
7096 * config/avr/avr-protos.h (avr_hard_regno_call_part_clobbered):
7098 * config/avr/avr.c (avr_hard_regno_call_part_clobbered): Make static
7100 (TARGET_HARD_REGNO_CALL_PART_CLOBBERED): Redefine.
7101 * config/i386/i386.h (HARD_REGNO_CALL_PART_CLOBBERED): Delete.
7102 * config/i386/i386.c (ix86_hard_regno_call_part_clobbered): New
7104 (TARGET_HARD_REGNO_CALL_PART_CLOBBERED): Redefine.
7105 * config/mips/mips.h (HARD_REGNO_CALL_PART_CLOBBERED): Delete.
7106 * config/mips/mips.c (mips_hard_regno_call_part_clobbered): New
7108 (TARGET_HARD_REGNO_CALL_PART_CLOBBERED): Redefine.
7109 * config/powerpcspe/powerpcspe.h (HARD_REGNO_CALL_PART_CLOBBERED):
7111 * config/powerpcspe/powerpcspe.c
7112 (rs6000_hard_regno_call_part_clobbered): New function.
7113 (TARGET_HARD_REGNO_CALL_PART_CLOBBERED): Redefine.
7114 * config/rs6000/rs6000.h (HARD_REGNO_CALL_PART_CLOBBERED): Delete.
7115 * config/rs6000/rs6000.c (rs6000_hard_regno_call_part_clobbered):
7117 (TARGET_HARD_REGNO_CALL_PART_CLOBBERED): Redefine.
7118 * config/s390/s390.h (HARD_REGNO_CALL_PART_CLOBBERED): Delete.
7119 * config/s390/s390.c (s390_hard_regno_call_part_clobbered): New
7121 (TARGET_HARD_REGNO_CALL_PART_CLOBBERED): Redefine.
7122 * config/sh/sh.h (HARD_REGNO_CALL_PART_CLOBBERED): Delete.
7123 * system.h (HARD_REGNO_CALL_PART_CLOBBERED): Poison.
7125 2017-09-04 Richard Sandiford <richard.sandiford@linaro.org>
7126 Alan Hayward <alan.hayward@arm.com>
7127 David Sherwood <david.sherwood@arm.com>
7129 * rtl.h (subreg_memory_offset): Declare.
7130 * emit-rtl.c (subreg_memory_offset): New function.
7131 * expmed.c (store_bit_field_1): Use it.
7132 * expr.c (undefined_operand_subword_p): Likewise.
7133 * simplify-rtx.c (simplify_subreg): Likewise.
7135 2017-09-04 Alexander Monakov <amonakov@ispras.ru>
7137 PR rtl-optimization/57448
7140 * optabs.c (expand_atomic_load): Place compiler memory barriers if
7141 using atomic_load pattern.
7142 (expand_atomic_store): Likewise.
7144 2017-09-04 Jakub Jelinek <jakub@redhat.com>
7147 * gimple-fold.c (gimple_fold_call): Optimize away useless UBSAN_PTR
7148 and UBSAN_BOUNDS internal calls. Clean up IFN_UBSAN_OBJECT_SIZE
7149 handling. Use replace_call_with_value with NULL instead of
7150 gsi_replace, unlink_stmt_vdef and release_defs.
7152 * gdbhooks.py (OptMachineModePrinter.to_string): Use 8 spaces
7155 * lra-remat.c (reg_overlap_for_remat_p): Fix a pasto.
7157 2017-09-04 Richard Sandiford <richard.sandiford@linaro.org>
7160 * rtl.h (emit_library_call_value_1): Declare.
7161 (emit_library_call): Replace declaration with a series of overloads.
7162 Remove the parameter count argument.
7163 (emit_library_call_value): Likewise.
7164 * calls.c (emit_library_call_value_1): Make global. Replace varargs
7165 with an "rtx_mode_t *".
7166 (emit_library_call_value): Delete.
7167 (emit_library_call): Likewise.
7168 * asan.c (asan_emit_stack_protection): Update calls accordingly.
7169 (asan_emit_allocas_unpoison): Likewise.
7170 * builtins.c (expand_builtin_powi): Likewise.
7171 (expand_asan_emit_allocas_unpoison): Likewise.
7172 * cfgexpand.c (expand_main_function): Likewise.
7173 * config/aarch64/aarch64.c (aarch64_trampoline_init): Likewise.
7174 * config/aarch64/aarch64.h (PROFILE_HOOK): Likewise.
7175 * config/alpha/alpha.c (alpha_trampoline_init): Likewise.
7176 * config/arm/arm.c (arm_trampoline_init): Likewise.
7177 (arm_call_tls_get_addr): Likewise.
7178 (arm_expand_divmod_libfunc): Likewise.
7179 * config/bfin/bfin.md (umulsi3_highpart): Likewise.
7180 (smulsi3_highpart): Likewise.
7181 * config/c6x/c6x.c (c6x_initialize_trampoline): Likewise.
7182 (c6x_expand_compare): Likewise.
7183 (c6x_expand_movmem): Likewise.
7184 * config/frv/frv.c (frv_trampoline_init): Likewise.
7185 * config/i386/i386.c (ix86_trampoline_init): Likewise.
7186 (ix86_expand_divmod_libfunc): Likewise.
7187 * config/ia64/ia64.c (ia64_expand_tls_address): Likewise.
7188 (ia64_expand_compare): Likewise.
7189 (ia64_profile_hook): Likewise.
7190 * config/ia64/ia64.md (save_stack_nonlocal): Likewise.
7191 (nonlocal_goto): Likewise.
7192 (restore_stack_nonlocal): Likewise.
7193 * config/m32r/m32r.c (block_move_call): Likewise.
7194 (m32r_trampoline_init): Likewise.
7195 * config/m68k/linux.h (FINALIZE_TRAMPOLINE): Likewise.
7196 * config/m68k/m68k.c (m68k_call_tls_get_addr): Likewise.
7197 (m68k_call_m68k_read_tp): Likewise.
7198 * config/microblaze/microblaze.c (microblaze_call_tls_get_addr)
7199 (microblaze_expand_divide): Likewise.
7200 * config/mips/mips.h (mips_args): Likewise.
7201 * config/mips/sdemtk.h (mips_sync_icache): Likewise.
7202 (MIPS_ICACHE_SYNC): Likewise.
7203 * config/nios2/nios2.c (nios2_emit_expensive_div): Likewise.
7204 (nios2_trampoline_init): Likewise.
7205 * config/pa/pa.c (hppa_tls_call): Likewise.
7206 (pa_trampoline_init): Likewise.
7207 * config/pa/pa.md (canonicalize_funcptr_for_compare): Likewise.
7208 * config/powerpcspe/powerpcspe.c (rs6000_legitimize_tls_address)
7209 (expand_strn_compare): Likewise.
7210 (rs6000_generate_compare): Likewise.
7211 (rs6000_expand_float128_convert): Likewise.
7212 (output_profile_hook): Likewise.
7213 (rs6000_trampoline_init): Likewise.
7214 * config/powerpcspe/powerpcspe.md (neg<mode>2): Likewise.
7215 * config/riscv/riscv.h (PROFILE_HOOK): Likewise.
7216 * config/rs6000/rs6000-string.c (expand_strn_compare): Likewise.
7217 * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Likewise.
7218 (rs6000_generate_compare): Likewise.
7219 (rs6000_expand_float128_convert): Likewise.
7220 (output_profile_hook): Likewise.
7221 (rs6000_trampoline_init): Likewise.
7222 * config/rs6000/rs6000.md (neg<mode>2): Likewise.
7223 * config/sh/sh.c (sh_trampoline_init): Likewise.
7224 * config/sparc/sparc.c (emit_soft_tfmode_libcall): Likewise.
7225 (sparc_emit_float_lib_cmp): Likewise.
7226 (sparc32_initialize_trampoline): Likewise.
7227 (sparc64_initialize_trampoline): Likewise.
7228 (sparc_profile_hook): Likewise.
7229 * config/spu/spu.c (ea_load_store): Likewise.
7230 * config/spu/spu.md (floatunssidf2): Likewise.
7231 * config/tilegx/tilegx.c (tilegx_trampoline_init): Likewise.
7232 * config/tilepro/tilepro.c (tilepro_trampoline_init): Likewise.
7233 * config/visium/visium.c (expand_block_move_4): Likewise.
7234 (expand_block_move_2): Likewise.
7235 (expand_block_move_1): Likewise.
7236 (expand_block_set_4): Likewise.
7237 (expand_block_set_2): Likewise.
7238 (expand_block_set_1): Likewise.
7239 (visium_trampoline_init): Likewise.
7240 (visium_profile_hook): Likewise.
7241 * config/xtensa/xtensa.c (xtensa_expand_nonlocal_goto): Likewise.
7242 (xtensa_setup_frame_addresses): Likewise.
7243 (xtensa_trampoline_init): Likewise.
7244 * except.c (sjlj_emit_function_enter): Likewise.
7245 (sjlj_emit_function_exit): Likewise.
7246 * explow.c (allocate_dynamic_stack_space): Likewise.
7247 (probe_stack_range): Likewise.
7248 * expr.c (convert_mode_scalar): Likewise.
7249 * optabs.c (expand_binop): Likewise.
7250 (expand_twoval_binop_libfunc): Likewise.
7251 (expand_unop): Likewise.
7252 (prepare_cmp_insn): Likewise.
7253 (prepare_float_lib_cmp): Likewise.
7254 (expand_float): Likewise.
7255 (expand_fix): Likewise.
7256 (expand_fixed_convert): Likewise.
7257 (maybe_emit_sync_lock_test_and_set): Likewise.
7258 (expand_atomic_compare_and_swap): Likewise.
7259 (expand_mem_thread_fence): Likewise.
7260 (expand_atomic_fetch_op): Likewise.
7262 2017-09-03 Gerald Pfeifer <gerald@pfeifer.com>
7264 * doc/generic.texi (OpenACC): Adjust URL.
7265 * doc/invoke.texi (C Dialect Options): Ditto.
7267 2017-09-03 Uros Bizjak <ubizjak@gmail.com>
7269 * config/i386/i386.md (*bt<mode>): Use nonimmediate_operand
7270 predicate for operand 1. Add (m,<S>) constraint.
7271 (*jcc_bt<mode>): Use nonimmediate_operand predicate for operand 1.
7272 Prevent memory operand 1 with register operand 2.
7274 2017-09-01 Segher Boessenkool <segher@kernel.crashing.org>
7276 PR rtl-optimization/82024
7277 * combine.c (try_combine): If the combination result is a PARALLEL,
7278 and we only need to retain the SET in there that would be placed
7279 at I2, check that we can place that at I3 instead, before doing so.
7281 2017-09-01 Jakub Jelinek <jakub@redhat.com>
7284 * config/i386/i386.c (ix86_init_large_pic_reg): Return label
7286 (ix86_init_pic_reg): Remember label from ix86_init_large_pic_reg,
7287 if non-NULL and preceded by NOTE_INSN_BASIC_BLOCK, swap the note
7290 2017-09-01 Joerg Sonnenberger <joerg@bec.de>
7291 Jeff Law <law@redhat.com>
7293 * varasm.c (bss_initializer_p): Do not put constants into .bss
7294 (categorize_decl_for_section): Handle bss_initializer_p returning
7295 false when DECL_INITIAL is NULL.
7297 2017-09-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
7300 * config/s390/s390.c (s390_can_inline_p): New function.
7302 2017-09-01 Jeff Law <law@redhat.com>
7304 PR tree-optimization/82052
7305 * tree-ssa-scopedtables.c (avail_exprs_stack::lookup_avail_expr):
7306 Always initialize the returned slot after a hash table miss
7307 when INSERT is true.
7309 2017-09-01 Alexander Monakov <amonakov@ispras.ru>
7311 * config/s390/s390.md (mem_signal_fence): Remove.
7312 * doc/md.texi (mem_signal_fence): Remove.
7313 * optabs.c (expand_mem_signal_fence): Remove uses of mem_signal_fence.
7315 * target-insns.def (mem_signal_fence): Remove.
7317 2017-09-01 Jakub Jelinek <jakub@redhat.com>
7320 * doc/invoke.texi: Document -fsanitize=pointer-overflow.
7323 * asan.c (create_odr_indicator): Strip name encoding from assembler
7324 name before appending it after __odr_asan_.
7326 2017-09-01 Martin Liska <mliska@suse.cz>
7328 PR tree-optimization/82059
7329 * gimple-ssa-isolate-paths.c (isolate_path): Add profile and
7330 frequency only when an edge is redirected.
7332 2017-09-01 Claudiu Zissulescu <claziss@synopsys.com>
7334 * config/arc/arc-c.c (__ARC_LPC_WIDTH__): Add builtin define.
7335 * config/arc/arc.c (ARC_MAX_LOOP_LENGTH): Define.
7336 (arc_conditional_register_usage): Remove ARC600 lp_count
7338 (arc_file_start): Emit Tag_ARC_CPU_variation.
7339 (arc_can_use_doloop_p): New conditions to use ZOLs.
7340 (hwloop_fail): New function.
7341 (hwloop_optimize): Likewise.
7342 (hwloop_pattern_reg): Likewise.
7343 (arc_doloop_hooks): New struct, to be used with reorg_loops.
7344 (arc_reorg_loops): New function, calls reorg_loops.
7345 (arc_reorg): Call arc_reorg_loops. Remove old ZOL handling.
7346 (arc600_corereg_hazard): Remove ZOL checking, case handled by
7348 (arc_loop_hazard): Remove function, functionality moved into
7350 (arc_hazard): Remove arc_loop_hazard call.
7351 (arc_adjust_insn_length): Remove ZOL handling, functionality moved
7352 into hwloop_optimize.
7353 (arc_label_align): Remove ZOL handling.
7354 * config/arc/arc.h (LOOP_ALIGN): Changed to 0.
7355 * config/arc/arc.md (doloop_begin): Remove pattern.
7356 (doloop_begin_i): Likewise.
7357 (doloop_end_i): Likewise.
7358 (doloop_fallback): Likewise.
7359 (doloop_fallback_m): Likewise.
7360 (doloop_end): Reimplement expand.
7361 (arc_lp): New pattern for LP instruction.
7362 (loop_end): New pattern.
7363 (loop_fail): Likewise.
7364 (decrement_and_branch_until_zero): Likewise.
7365 * config/arc/arc.opt (mlpc-width): New option.
7366 * doc/invoke.texi (mlpc-width): Document option.
7368 2017-09-01 Claudiu Zissulescu <claziss@synopsys.com>
7370 * config/arc/arc.c (arc_ifcvt): Remove use of merge_blocks call.
7371 (arc_ccfsm_advance): Fix checking for delay slots.
7372 (arc_reorg): Add rtl dump after each call to arc_ifcvt.
7374 2017-09-01 Claudiu Zissulescu <claziss@synopsys.com>
7376 * config/arc/arc.md (movqi_insn): Add stores to save constant long
7378 (movhi_insn): Update store instruction constraint which are saving
7379 6-bit short immediates.
7380 (movsi_insn): Consider also short scaled load operations.
7381 (zero_extendhisi2_i): Use Usd constraint instead of T.
7382 (extendhisi2_i): Add q constraint.
7383 (arc_clzsi2): Add type and length attributes.
7384 (arc_ctzsi2): Likewise.
7385 * config/arc/constraints.md (Usc): Update constraint, the
7386 assembler can parse two relocations for a single instruction.
7388 2017-09-01 Claudiu Zissulescu <claziss@synopsys.com>
7390 * config/arc/arc.c (arc_use_anchors_for_symbol_p): New function.
7391 (TARGET_USE_ANCHORS_FOR_SYMBOL_P): Define.
7393 2017-08-31 Olivier Hainque <hainque@adacore.com>
7395 * config.gcc (powerpc-wrs-vxworks|vxworksae|vxworksmils): Now
7396 match as powerpc-wrs-vxworks*.
7398 2017-08-31 James Greenhalgh <james.greenhalgh@arm.com>
7400 * config/aarch64/aarch64-simd.md (aarch64_mla_elt_merge<mode>): Fix
7401 register constraint for by-element operand.
7402 (aarch64_mls_elt_merge<mode>): Likewise.
7404 2017-08-31 Claudiu Zissulescu <claziss@synopsys.com>
7406 * config/arc/arc.c (arc_can_follow_jump): Check for short
7409 2017-08-31 Claudiu Zissulescu <claziss@synopsys.com>
7411 * config.gcc: Use g.opt for arc.
7412 * config/arc/arc.c (LEGITIMATE_SCALED_ADDRESS_P): Deleted,
7413 functionality moved to ...
7414 (legitimate_scaled_address_p): New function, ...here.
7415 (LEGITIMATE_SMALL_DATA_OFFSET_P): New define.
7416 (LEGITIMATE_SMALL_DATA_ADDRESS_P): Use the above define.
7417 (legitimate_offset_address_p): Delete TARGET_NO_SDATA_SET
7419 (arc_override_options): Handle G option.
7420 (arc_output_pic_addr_const): Correct function definition.
7421 (arc_legitimate_address_p): Use legitimate_scaled_address_p.
7422 (arc_decl_anon_ns_mem_p): Delete.
7423 (arc_in_small_data_p): Overhaul this function to take into
7424 consideration the value given via G option.
7425 (arc_rewrite_small_data_1): Renamed and corrected old
7426 arc_rewrite_small_data function.
7427 (arc_rewrite_small_data): New function.
7428 (small_data_pattern): Don't use pic_offset_table_rtx.
7429 * config/arc/arc.h (CC1_SPEC): Recognize G option.
7430 * config/arc/simdext.md (movmisalignv2hi): Use
7431 prepare_move_operands function.
7433 (movmisalign*): Likewise.
7434 * doc/invoke.texi (ARC options): Document -G option.
7436 2017-08-31 Claudiu Zissulescu <claziss@synopsys.com>
7438 * config/arc/arc-protos.h (compact_sda_memory_operand): Update
7440 * config/arc/arc.c (arc_print_operand): Output scalled address for
7441 sdata whenever is possible.
7442 (arc_in_small_data_p): Allow sdata for 64bit datum when double
7443 load/stores are available.
7444 (compact_sda_memory_operand): Check for the alignment required by
7445 code density instructions.
7446 * config/arc/arc.md (movsi_insn): Use newly introduced Us0
7448 * config/arc/constraints.md (Usd): Update constraint.
7449 (Us0): New constraint.
7450 (Usc): Update constraint.
7452 2017-08-31 Richard Biener <rguenther@suse.de>
7455 * dwarf2out.c (dwarf2out_early_global_decl): Process each
7458 2017-08-31 Tamar Christina <tamar.christina@arm.com>
7460 * config/aarch64/aarch64-builtins.c (aarch64_init_simd_builtins):
7461 Resize type_signature.
7463 2017-08-31 Richard Sandiford <richard.sandiford@linaro.org>
7464 Alan Hayward <alan.hayward@arm.com>
7465 David Sherwood <david.sherwood@arm.com>
7467 * config/aarch64/aarch64.c (aarch64_base_register_rtx_p): Only allow
7468 subregs whose inner modes can be stored in GPRs.
7469 (aarch64_classify_index): Likewise.
7471 2017-08-31 Richard Sandiford <richard.sandiford@linaro.org>
7472 Alan Hayward <alan.hayward@arm.com>
7473 David Sherwood <david.sherwood@arm.com>
7475 * config/aarch64/iterators.md (V_cmp_result): Rename to...
7476 (V_INT_EQUIV): ...this.
7477 (v_cmp_result): Rename to...
7478 (v_int_equiv): ...this.
7479 * config/aarch64/aarch64.md (xorsign<mode>3): Update accordingly.
7480 * config/aarch64/aarch64-simd.md (xorsign<mode>3): Likewise.
7481 (copysign<mode>3): Likewise.
7482 (aarch64_simd_bsl<mode>_internal): Likewise.
7483 (aarch64_simd_bsl<mode>): Likewise.
7484 (vec_cmp<mode><mode>): Likewise.
7485 (vcond<mode><mode>): Likewise.
7486 (vcond<v_cmp_mixed><mode>): Likewise.
7487 (vcondu<mode><v_cmp_mixed>): Likewise.
7488 (aarch64_cm<optab><mode>): Likewise.
7489 (aarch64_cmtst<mode>): Likewise.
7490 (aarch64_fac<optab><mode>): Likewise.
7491 (vec_perm_const<mode>): Likewise.
7492 (vcond_mask_<mode><v_cmp_result>): Rename to...
7493 (vcond_mask_<mode><v_int_equiv>): ...this.
7494 (vec_cmp<mode><v_cmp_result>): Rename to...
7495 (vec_cmp<mode><v_int_equiv>): ...this.
7497 2017-08-31 Richard Sandiford <richard.sandiford@linaro.org>
7498 Alan Hayward <alan.hayward@arm.com>
7499 David Sherwood <david.sherwood@arm.com>
7501 * config/aarch64/aarch64-modes.def: Remove 32-, 48- and 64-byte
7503 * config/aarch64/iterators.md (VRL2, VRL3, VRL4): Delete.
7504 * config/aarch64/aarch64.md (UNSPEC_LD2_DREG, UNSPEC_LD3_DREG)
7505 (UNSPEC_LD4_DREG): New unspecs.
7506 * config/aarch64/aarch64-simd.md (aarch64_ld2<mode>_dreg_le)
7507 (aarch64_ld2<mode>_dreg_be): Replace with...
7508 (aarch64_ld2<mode>_dreg): ...this pattern and use the new DREG
7510 (aarch64_ld3<mode>_dreg_le)
7511 (aarch64_ld3<mode>_dreg_be): Replace with...
7512 (aarch64_ld3<mode>_dreg): ...this pattern and use the new DREG
7514 (aarch64_ld4<mode>_dreg_le)
7515 (aarch64_ld4<mode>_dreg_be): Replace with...
7516 (aarch64_ld4<mode>_dreg): ...this pattern and use the new DREG
7519 2017-08-30 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
7521 PR tree-optimization/81987
7522 * gimple-ssa-strength-reduction.c (insert_initializers): Don't
7523 insert an initializer in a location not dominated by the stride
7526 2017-08-30 Eric Botcazou <ebotcazou@adacore.com>
7528 * tree-eh.c (lower_try_finally_switch): Set the location of the finally
7529 on the entire header of the finally block in the fallthru case.
7531 2017-08-30 Eric Botcazou <ebotcazou@adacore.com>
7533 * varasm.c (decode_addr_const): Deal with INDIRECT_REF <INTEGER_CST>.
7535 2017-08-30 Pat Haugen <pthaugen@us.ibm.com>
7537 * config/rs6000/rs6000.c (rs6000_emit_prologue_move_from_cr): Rename from
7538 rs6000_emit_move_from_cr and call renamed function.
7539 (rs6000_emit_prologue): Call renamed functions.
7540 * config/rs6000/rs6000.md (prologue_movesi_from_cr): Rename from
7541 movesi_from_cr, remove volatile CRs.
7543 2017-08-30 Jon Beniston <jon@beniston.com>
7544 Richard Biener <rguenther@suse.de>
7546 * tree-vect-patterns.c (vect_pattern_recog_1): Use VECTOR_TYPE_P instead
7547 of VECTOR_MODE_P check.
7548 * tree-vect-stmts.c (get_vectype_for_scalar_type_and_size): Allow single
7549 element vector types.
7551 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7553 * df.h (df_read_modify_subreg_p): Remove in favor of...
7554 * rtl.h (read_modify_subreg_p): ...this new function. Take a
7555 const_rtx instead of an rtx.
7556 * cprop.c (local_cprop_find_used_regs): Update accordingly.
7557 * df-problems.c (df_word_lr_mark_ref): Likewise.
7558 * ira-lives.c (mark_pseudo_reg_live): Likewise.
7559 (mark_pseudo_reg_dead): Likewise.
7560 (mark_ref_dead): Likewise.
7561 * reginfo.c (init_subregs_of_mode): Likewise.
7562 * sched-deps.c (sched_analyze_1): Likewise.
7563 * df-scan.c (df_def_record_1): Likewise.
7564 (df_uses_record): Likewise.
7565 (df_read_modify_subreg_p): Remove in favor of...
7566 * rtlanal.c (read_modify_subreg_p): ...this new function. Take a
7567 const_rtx instead of an rtx.
7569 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7570 Alan Hayward <alan.hayward@arm.com>
7571 David Sherwood <david.sherwood@arm.com>
7573 * rtl.h (partial_subreg_p): New function.
7574 * caller-save.c (save_call_clobbered_regs): Use it.
7575 * calls.c (expand_call): Likewise.
7576 * combine.c (combinable_i3pat): Likewise.
7577 (simplify_set): Likewise.
7578 (make_extraction): Likewise.
7579 (make_compound_operation_int): Likewise.
7580 (gen_lowpart_or_truncate): Likewise.
7581 (force_to_mode): Likewise.
7582 (make_field_assignment): Likewise.
7583 (reg_truncated_to_mode): Likewise.
7584 (record_truncated_value): Likewise.
7585 (move_deaths): Likewise.
7586 * cse.c (record_jump_cond): Likewise.
7587 (cse_insn): Likewise.
7588 * cselib.c (cselib_lookup_1): Likewise.
7589 * expmed.c (extract_bit_field_using_extv): Likewise.
7590 * function.c (assign_parm_setup_reg): Likewise.
7591 * ifcvt.c (noce_convert_multiple_sets): Likewise.
7592 * ira-build.c (create_insn_allocnos): Likewise.
7593 * lra-coalesce.c (merge_pseudos): Likewise.
7594 * lra-constraints.c (match_reload): Likewise.
7595 (simplify_operand_subreg): Likewise.
7596 (curr_insn_transform): Likewise.
7597 * lra-lives.c (process_bb_lives): Likewise.
7598 * lra.c (new_insn_reg): Likewise.
7599 (lra_substitute_pseudo): Likewise.
7600 * regcprop.c (mode_change_ok): Likewise.
7601 (maybe_mode_change): Likewise.
7602 (copyprop_hardreg_forward_1): Likewise.
7603 * reload.c (push_reload): Likewise.
7604 (find_reloads): Likewise.
7605 (find_reloads_subreg_address): Likewise.
7606 * reload1.c (alter_reg): Likewise.
7607 (eliminate_regs_1): Likewise.
7608 * simplify-rtx.c (simplify_unary_operation_1): Likewise.
7610 2017-08-30 David Edelsohn <dje.gcc@gmail.com>
7612 * config/rs6000/rs6000.c (rs6000_expand_binop_builtin): Revert
7613 back to if statements, including unpack.
7615 2017-08-30 Martin Liska <mliska@suse.cz>
7618 * ipa-icf-gimple.c (func_checker::compare_tree_list_operand):
7620 (func_checker::compare_asm_inputs_outputs): ... this function.
7621 (func_checker::compare_gimple_asm): Use the function to compare
7622 also ASM constrains.
7623 * ipa-icf-gimple.h: Rename the function.
7625 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7626 Alan Hayward <alan.hayward@arm.com>
7627 David Sherwood <david.sherwood@arm.com>
7629 * coretypes.h (complex_mode): New type.
7630 * gdbhooks.py (build_pretty_printer): Handle it.
7631 * machmode.h (complex_mode): New class.
7632 (complex_mode::includes_p): New function.
7633 (is_complex_int_mode): Likewise.
7634 (is_complex_float_mode): Likewise.
7635 * genmodes.c (get_mode_class): Handle complex mode classes.
7636 * function.c (expand_function_end): Use is_complex_int_mode.
7638 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7639 Alan Hayward <alan.hayward@arm.com>
7640 David Sherwood <david.sherwood@arm.com>
7642 * coretypes.h (scalar_mode_pod): New typedef.
7643 * gdbhooks.py (build_pretty_printer): Handle it.
7644 * machmode.h (gt_ggc_mx, gt_pch_nx): New functions.
7645 * fixed-value.h (fixed_value::mode): Change type to scalar_mode_pod.
7646 * fold-const.c (fold_convert_const_int_from_fixed): Use scalar_mode.
7647 * tree-streamer-in.c (unpack_ts_fixed_cst_value_fields): Use
7650 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7651 Alan Hayward <alan.hayward@arm.com>
7652 David Sherwood <david.sherwood@arm.com>
7654 * machmode.h (mode_for_vector): Take a scalar_mode instead
7656 * stor-layout.c (mode_for_vector): Likewise.
7657 * explow.c (promote_mode): Use as_a <scalar_mode>.
7658 * sdbout.c (sdbout_parms): Use is_a <scalar_mode>.
7660 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7661 Alan Hayward <alan.hayward@arm.com>
7662 David Sherwood <david.sherwood@arm.com>
7664 * target.def (preferred_simd_mode): Take a scalar_mode
7665 instead of a machine_mode.
7666 * targhooks.h (default_preferred_simd_mode): Likewise.
7667 * targhooks.c (default_preferred_simd_mode): Likewise.
7668 * config/arc/arc.c (arc_preferred_simd_mode): Likewise.
7669 * config/arm/arm.c (arm_preferred_simd_mode): Likewise.
7670 * config/c6x/c6x.c (c6x_preferred_simd_mode): Likewise.
7671 * config/epiphany/epiphany.c (epiphany_preferred_simd_mode): Likewise.
7672 * config/i386/i386.c (ix86_preferred_simd_mode): Likewise.
7673 * config/mips/mips.c (mips_preferred_simd_mode): Likewise.
7674 * config/nvptx/nvptx.c (nvptx_preferred_simd_mode): Likewise.
7675 * config/powerpcspe/powerpcspe.c (rs6000_preferred_simd_mode):
7677 * config/rs6000/rs6000.c (rs6000_preferred_simd_mode): Likewise.
7678 * config/s390/s390.c (s390_preferred_simd_mode): Likewise.
7679 * config/sparc/sparc.c (sparc_preferred_simd_mode): Likewise.
7680 * config/aarch64/aarch64.c (aarch64_preferred_simd_mode): Likewise.
7681 (aarch64_simd_scalar_immediate_valid_for_move): Update accordingly.
7682 * doc/tm.texi: Regenerate.
7683 * optabs-query.c (can_vec_mask_load_store_p): Return false for
7686 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7687 Alan Hayward <alan.hayward@arm.com>
7688 David Sherwood <david.sherwood@arm.com>
7690 * target.def (scalar_mode_supported_p): Take a scalar_mode
7691 instead of a machine_mode.
7692 * targhooks.h (default_scalar_mode_supported_p): Likewise.
7693 * targhooks.c (default_scalar_mode_supported_p): Likewise.
7694 * config/aarch64/aarch64.c (aarch64_scalar_mode_supported_p): Likewise.
7695 * config/alpha/alpha.c (alpha_scalar_mode_supported_p): Likewise.
7696 * config/arm/arm.c (arm_scalar_mode_supported_p): Likewise.
7697 * config/avr/avr.c (avr_scalar_mode_supported_p): Likewise.
7698 * config/c6x/c6x.c (c6x_scalar_mode_supported_p): Likewise.
7699 * config/i386/i386.c (ix86_scalar_mode_supported_p): Likewise.
7700 * config/ia64/ia64.c (ia64_scalar_mode_supported_p): Likewise.
7701 * config/mips/mips.c (mips_scalar_mode_supported_p): Likewise.
7702 * config/msp430/msp430.c (msp430_scalar_mode_supported_p): Likewise.
7703 * config/pa/pa.c (pa_scalar_mode_supported_p): Likewise.
7704 * config/pdp11/pdp11.c (pdp11_scalar_mode_supported_p): Likewise.
7705 * config/powerpcspe/powerpcspe.c (rs6000_scalar_mode_supported_p):
7707 * config/rs6000/rs6000.c (rs6000_scalar_mode_supported_p): Likewise.
7708 * config/s390/s390.c (s390_scalar_mode_supported_p): Likewise.
7709 * config/spu/spu.c (spu_scalar_mode_supported_p): Likewise.
7710 * config/tilegx/tilegx.c (tilegx_scalar_mode_supported_p): Likewise.
7711 * config/tilepro/tilepro.c (tilepro_scalar_mode_supported_p):
7713 * doc/tm.texi: Regenerate.
7715 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7716 Alan Hayward <alan.hayward@arm.com>
7717 David Sherwood <david.sherwood@arm.com>
7719 * coretypes.h (opt_scalar_mode): New typedef.
7720 * gdbhooks.py (build_pretty_printers): Handle it.
7721 * machmode.h (mode_iterator::get_2xwider): Add overload for
7723 * emit-rtl.c (init_emit_once): Use opt_scalar_mode when iterating
7725 * expr.c (convert_mode_scalar): Likewise.
7726 * omp-low.c (omp_clause_aligned_alignment): Likewise.
7727 * optabs.c (expand_float): Likewise.
7728 (expand_fix): Likewise.
7729 * tree-vect-stmts.c (vectorizable_conversion): Likewise.
7731 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7732 Alan Hayward <alan.hayward@arm.com>
7733 David Sherwood <david.sherwood@arm.com>
7735 * optabs.c (expand_float): Explicitly check for scalars before
7736 using a branching expansion.
7737 (expand_fix): Likewise.
7739 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7740 Alan Hayward <alan.hayward@arm.com>
7741 David Sherwood <david.sherwood@arm.com>
7743 * expr.c (convert_mode): Split scalar handling out into...
7744 (convert_mode_scalar): ...this new function. Treat the modes
7747 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7748 Alan Hayward <alan.hayward@arm.com>
7749 David Sherwood <david.sherwood@arm.com>
7751 * omp-expand.c (expand_omp_atomic): Use is_int_mode, is_float_mode
7753 * tree-vect-stmts.c (get_vectype_for_scalar_type_and_size): Likewise.
7755 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7756 Alan Hayward <alan.hayward@arm.com>
7757 David Sherwood <david.sherwood@arm.com>
7759 * fixed-value.h (fixed_from_double_int): Take a scalar_mode
7760 rather than a machine_mode.
7761 (fixed_from_string): Likewise.
7762 (fixed_convert): Likewise.
7763 (fixed_convert_from_int): Likewise.
7764 (fixed_convert_from_real): Likewise.
7765 (real_convert_from_fixed): Likewise.
7766 * fixed-value.c (fixed_from_double_int): Likewise.
7767 (fixed_from_string): Likewise.
7768 (fixed_convert): Likewise.
7769 (fixed_convert_from_int): Likewise.
7770 (fixed_convert_from_real): Likewise.
7771 (real_convert_from_fixed): Likewise.
7772 * config/avr/avr.c (avr_out_round): Use as_a <scalar_mode>.
7774 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7775 Alan Hayward <alan.hayward@arm.com>
7776 David Sherwood <david.sherwood@arm.com>
7778 * emit-rtl.c (immed_double_const): Use is_a <scalar_mode> instead
7779 of separate mode class checks. Do not allow vector modes here.
7780 (immed_wide_int_const): Use as_a <scalar_mode>.
7781 * explow.c (trunc_int_for_mode): Likewise.
7782 * rtl.h (wi::int_traits<rtx_mode_t>::get_precision): Likewise.
7783 (wi::shwi): Likewise.
7784 (wi::min_value): Likewise.
7785 (wi::max_value): Likewise.
7786 * dwarf2out.c (loc_descriptor): Likewise.
7787 * simplify-rtx.c (simplify_immed_subreg): Fix rtx_mode_t argument
7790 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7791 Alan Hayward <alan.hayward@arm.com>
7792 David Sherwood <david.sherwood@arm.com>
7794 * tree.h (SCALAR_TYPE_MODE): New macro.
7795 * expr.c (expand_expr_addr_expr_1): Use it.
7796 (expand_expr_real_2): Likewise.
7797 * fold-const.c (fold_convert_const_fixed_from_fixed): Likeise.
7798 (fold_convert_const_fixed_from_int): Likewise.
7799 (fold_convert_const_fixed_from_real): Likewise.
7800 (native_encode_fixed): Likewise
7801 (native_encode_complex): Likewise
7802 (native_encode_vector): Likewise.
7803 (native_interpret_fixed): Likewise.
7804 (native_interpret_real): Likewise.
7805 (native_interpret_complex): Likewise.
7806 (native_interpret_vector): Likewise.
7807 * omp-simd-clone.c (simd_clone_adjust_return_type): Likewise.
7808 (simd_clone_adjust_argument_types): Likewise.
7809 (simd_clone_init_simd_arrays): Likewise.
7810 (simd_clone_adjust): Likewise.
7811 * stor-layout.c (layout_type): Likewise.
7812 * tree.c (build_minus_one_cst): Likewise.
7813 * tree-cfg.c (verify_gimple_assign_ternary): Likewise.
7814 * tree-inline.c (estimate_move_cost): Likewise.
7815 * tree-ssa-math-opts.c (convert_plusminus_to_widen): Likewise.
7816 * tree-vect-loop.c (vect_create_epilog_for_reduction): Likewise.
7817 (vectorizable_reduction): Likewise.
7818 * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Likewise.
7819 (vect_recog_mixed_size_cond_pattern): Likewise.
7820 (check_bool_pattern): Likewise.
7821 (adjust_bool_pattern): Likewise.
7822 (search_type_for_mask_1): Likewise.
7823 * tree-vect-slp.c (vect_schedule_slp_instance): Likewise.
7824 * tree-vect-stmts.c (vectorizable_conversion): Likewise.
7825 (vectorizable_load): Likewise.
7826 (vectorizable_store): Likewise.
7827 * ubsan.c (ubsan_encode_value): Likewise.
7828 * varasm.c (output_constant): Likewise.
7830 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7831 Alan Hayward <alan.hayward@arm.com>
7832 David Sherwood <david.sherwood@arm.com>
7834 * coretypes.h (scalar_mode): New class.
7835 * machmode.h (scalar_mode): Likewise.
7836 (scalar_mode::includes_p): New function.
7837 (mode_to_inner): Return a scalar_mode rather than a machine_mode.
7838 * gdbhooks.py (build_pretty_printers): Handle scalar_mode.
7839 * genmodes.c (get_mode_class): Handle remaining scalar modes.
7840 * cfgexpand.c (expand_debug_expr): Use scalar_mode.
7841 * expmed.c (store_bit_field_1): Likewise.
7842 (extract_bit_field_1): Likewise.
7843 * expr.c (write_complex_part): Likewise.
7844 (read_complex_part): Likewise.
7845 (emit_move_complex_push): Likewise.
7846 (expand_expr_real_2): Likewise.
7847 * function.c (assign_parm_setup_reg): Likewise.
7848 (assign_parms_unsplit_complex): Likewise.
7849 * optabs.c (expand_binop): Likewise.
7850 * rtlanal.c (subreg_get_info): Likewise.
7851 * simplify-rtx.c (simplify_immed_subreg): Likewise.
7852 * varasm.c (output_constant_pool_2): Likewise.
7854 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7855 Alan Hayward <alan.hayward@arm.com>
7856 David Sherwood <david.sherwood@arm.com>
7858 * expmed.c (extract_high_half): Use scalar_int_mode and remove
7860 (expmed_mult_highpart_optab): Likewise.
7861 (expmed_mult_highpart): Likewise.
7863 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
7864 Alan Hayward <alan.hayward@arm.com>
7865 David Sherwood <david.sherwood@arm.com>
7867 * builtins.h (builtin_strncpy_read_str): Take a scalar_int_mode
7868 instead of a machine_mode.
7869 (builtin_memset_read_str): Likewise.
7870 * builtins.c (c_readstr): Likewise.
7871 (builtin_memcpy_read_str): Likewise.
7872 (builtin_strncpy_read_str): Likewise.
7873 (builtin_memset_read_str): Likewise.
7874 (builtin_memset_gen_str): Likewise.
7875 (expand_builtin_signbit): Use scalar_int_mode for local variables.
7876 * cfgexpand.c (convert_debug_memory_address): Take a scalar_int_mode
7877 instead of a machine_mode.
7878 * combine.c (simplify_if_then_else): Use scalar_int_mode for local
7880 (make_extraction): Likewise.
7881 (try_widen_shift_mode): Take and return scalar_int_modes instead
7883 * config/aarch64/aarch64.c (aarch64_libgcc_cmp_return_mode): Return
7884 a scalar_int_mode instead of a machine_mode.
7885 * config/avr/avr.c (avr_addr_space_address_mode): Likewise.
7886 (avr_addr_space_pointer_mode): Likewise.
7887 * config/cr16/cr16.c (cr16_unwind_word_mode): Likewise.
7888 * config/msp430/msp430.c (msp430_addr_space_pointer_mode): Likewise.
7889 (msp430_unwind_word_mode): Likewise.
7890 * config/spu/spu.c (spu_unwind_word_mode): Likewise.
7891 (spu_addr_space_pointer_mode): Likewise.
7892 (spu_addr_space_address_mode): Likewise.
7893 (spu_libgcc_cmp_return_mode): Likewise.
7894 (spu_libgcc_shift_count_mode): Likewise.
7895 * config/rl78/rl78.c (rl78_addr_space_address_mode): Likewise.
7896 (rl78_addr_space_pointer_mode): Likewise.
7897 (fl78_unwind_word_mode): Likewise.
7898 (rl78_valid_pointer_mode): Take a scalar_int_mode instead of a
7900 * config/alpha/alpha.c (vms_valid_pointer_mode): Likewise.
7901 * config/ia64/ia64.c (ia64_vms_valid_pointer_mode): Likewise.
7902 * config/mips/mips.c (mips_mode_rep_extended): Likewise.
7903 (mips_valid_pointer_mode): Likewise.
7904 * config/tilegx/tilegx.c (tilegx_mode_rep_extended): Likewise.
7905 * config/ft32/ft32.c (ft32_valid_pointer_mode): Likewise.
7906 (ft32_addr_space_pointer_mode): Return a scalar_int_mode instead
7908 (ft32_addr_space_address_mode): Likewise.
7909 * config/m32c/m32c.c (m32c_valid_pointer_mode): Take a
7910 scalar_int_mode instead of a machine_mode.
7911 (m32c_addr_space_pointer_mode): Return a scalar_int_mode instead
7913 (m32c_addr_space_address_mode): Likewise.
7914 * config/powerpcspe/powerpcspe.c (rs6000_abi_word_mode): Likewise.
7915 (rs6000_eh_return_filter_mode): Likewise.
7916 * config/rs6000/rs6000.c (rs6000_abi_word_mode): Likewise.
7917 (rs6000_eh_return_filter_mode): Likewise.
7918 * config/s390/s390.c (s390_libgcc_cmp_return_mode): Likewise.
7919 (s390_libgcc_shift_count_mode): Likewise.
7920 (s390_unwind_word_mode): Likewise.
7921 (s390_valid_pointer_mode): Take a scalar_int_mode rather than a
7923 * target.def (mode_rep_extended): Likewise.
7924 (valid_pointer_mode): Likewise.
7925 (addr_space.valid_pointer_mode): Likewise.
7926 (eh_return_filter_mode): Return a scalar_int_mode rather than
7928 (libgcc_cmp_return_mode): Likewise.
7929 (libgcc_shift_count_mode): Likewise.
7930 (unwind_word_mode): Likewise.
7931 (addr_space.pointer_mode): Likewise.
7932 (addr_space.address_mode): Likewise.
7933 * doc/tm.texi: Regenerate.
7934 * dojump.c (prefer_and_bit_test): Take a scalar_int_mode rather than
7936 (do_jump): Use scalar_int_mode for local variables.
7937 * dwarf2cfi.c (init_return_column_size): Take a scalar_int_mode
7938 rather than a machine_mode.
7939 * dwarf2out.c (convert_descriptor_to_mode): Likewise.
7940 (scompare_loc_descriptor_wide): Likewise.
7941 (scompare_loc_descriptor_narrow): Likewise.
7942 * emit-rtl.c (adjust_address_1): Use scalar_int_mode for local
7944 * except.c (sjlj_emit_dispatch_table): Likewise.
7945 (expand_builtin_eh_copy_values): Likewise.
7946 * explow.c (convert_memory_address_addr_space_1): Likewise.
7947 Take a scalar_int_mode rather than a machine_mode.
7948 (convert_memory_address_addr_space): Take a scalar_int_mode rather
7949 than a machine_mode.
7950 (memory_address_addr_space): Use scalar_int_mode for local variables.
7951 * expmed.h (expand_mult_highpart_adjust): Take a scalar_int_mode
7952 rather than a machine_mode.
7953 * expmed.c (mask_rtx): Likewise.
7954 (init_expmed_one_conv): Likewise.
7955 (expand_mult_highpart_adjust): Likewise.
7956 (extract_high_half): Likewise.
7957 (expmed_mult_highpart_optab): Likewise.
7958 (expmed_mult_highpart): Likewise.
7959 (expand_smod_pow2): Likewise.
7960 (expand_sdiv_pow2): Likewise.
7961 (emit_store_flag_int): Likewise.
7962 (adjust_bit_field_mem_for_reg): Use scalar_int_mode for local
7964 (extract_low_bits): Likewise.
7965 * expr.h (by_pieces_constfn): Take a scalar_int_mode rather than
7967 * expr.c (pieces_addr::adjust): Likewise.
7968 (can_store_by_pieces): Likewise.
7969 (store_by_pieces): Likewise.
7970 (clear_by_pieces_1): Likewise.
7971 (expand_expr_addr_expr_1): Likewise.
7972 (expand_expr_addr_expr): Use scalar_int_mode for local variables.
7973 (expand_expr_real_1): Likewise.
7974 (try_casesi): Likewise.
7975 * final.c (shorten_branches): Likewise.
7976 * fold-const.c (fold_convert_const_int_from_fixed): Change the
7977 type of "mode" to machine_mode.
7978 * internal-fn.c (expand_arith_overflow_result_store): Take a
7979 scalar_int_mode rather than a machine_mode.
7980 (expand_mul_overflow): Use scalar_int_mode for local variables.
7981 * loop-doloop.c (doloop_modify): Likewise.
7982 (doloop_optimize): Likewise.
7983 * optabs.c (expand_subword_shift): Take a scalar_int_mode rather
7984 than a machine_mode.
7985 (expand_doubleword_shift_condmove): Likewise.
7986 (expand_doubleword_shift): Likewise.
7987 (expand_doubleword_clz): Likewise.
7988 (expand_doubleword_popcount): Likewise.
7989 (expand_doubleword_parity): Likewise.
7990 (expand_absneg_bit): Use scalar_int_mode for local variables.
7991 (prepare_float_lib_cmp): Likewise.
7992 * rtl.h (convert_memory_address_addr_space_1): Take a scalar_int_mode
7993 rather than a machine_mode.
7994 (convert_memory_address_addr_space): Likewise.
7995 (get_mode_bounds): Likewise.
7996 (get_address_mode): Return a scalar_int_mode rather than a
7998 * rtlanal.c (get_address_mode): Likewise.
7999 * stor-layout.c (get_mode_bounds): Take a scalar_int_mode rather
8000 than a machine_mode.
8001 * targhooks.c (default_mode_rep_extended): Likewise.
8002 (default_valid_pointer_mode): Likewise.
8003 (default_addr_space_valid_pointer_mode): Likewise.
8004 (default_eh_return_filter_mode): Return a scalar_int_mode rather
8005 than a machine_mode.
8006 (default_libgcc_cmp_return_mode): Likewise.
8007 (default_libgcc_shift_count_mode): Likewise.
8008 (default_unwind_word_mode): Likewise.
8009 (default_addr_space_pointer_mode): Likewise.
8010 (default_addr_space_address_mode): Likewise.
8011 * targhooks.h (default_eh_return_filter_mode): Likewise.
8012 (default_libgcc_cmp_return_mode): Likewise.
8013 (default_libgcc_shift_count_mode): Likewise.
8014 (default_unwind_word_mode): Likewise.
8015 (default_addr_space_pointer_mode): Likewise.
8016 (default_addr_space_address_mode): Likewise.
8017 (default_mode_rep_extended): Take a scalar_int_mode rather than
8019 (default_valid_pointer_mode): Likewise.
8020 (default_addr_space_valid_pointer_mode): Likewise.
8021 * tree-ssa-address.c (addr_for_mem_ref): Use scalar_int_mode for
8023 * tree-ssa-loop-ivopts.c (get_shiftadd_cost): Take a scalar_int_mode
8024 rather than a machine_mode.
8025 * tree-switch-conversion.c (array_value_type): Use scalar_int_mode
8026 for local variables.
8027 * tree-vrp.c (simplify_float_conversion_using_ranges): Likewise.
8028 * var-tracking.c (use_narrower_mode): Take a scalar_int_mode rather
8029 than a machine_mode.
8031 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8032 Alan Hayward <alan.hayward@arm.com>
8033 David Sherwood <david.sherwood@arm.com>
8035 * dojump.c (do_jump_by_parts_greater_rtx): Change the type of
8036 the mode argument to scalar_int_mode.
8037 (do_jump_by_parts_zero_rtx): Likewise.
8038 (do_jump_by_parts_equality_rtx): Likewise.
8039 (do_jump_by_parts_greater): Take a mode argument.
8040 (do_jump_by_parts_equality): Likewise.
8041 (do_jump_1): Update calls accordingly.
8043 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8044 Alan Hayward <alan.hayward@arm.com>
8045 David Sherwood <david.sherwood@arm.com>
8047 * is-a.h (safe_dyn_cast): New function.
8048 * rtl.h (rtx_jump_table_data::get_data_mode): New function.
8049 (jump_table_for_label): Likewise.
8050 * final.c (final_addr_vec_align): Take an rtx_jump_table_data *
8051 instead of an rtx_insn *.
8052 (shorten_branches): Use dyn_cast instead of LABEL_P and
8053 JUMP_TABLE_DATA_P. Use jump_table_for_label and
8054 rtx_jump_table_data::get_data_mode.
8055 (final_scan_insn): Likewise.
8057 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8058 Alan Hayward <alan.hayward@arm.com>
8059 David Sherwood <david.sherwood@arm.com>
8061 * combine.c (try_combine): Use is_a <scalar_int_mode> when
8062 trying to combine a full-register integer set with a subreg
8065 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8066 Alan Hayward <alan.hayward@arm.com>
8067 David Sherwood <david.sherwood@arm.com>
8069 * expr.c (expand_expr_addr_expr): Add a new_tmode local variable
8070 that is always either address_mode or pointer_mode.
8072 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8073 Alan Hayward <alan.hayward@arm.com>
8074 David Sherwood <david.sherwood@arm.com>
8076 * expr.c (expand_expr_real_2): Use word_mode instead of innermode
8077 when the two are known to be equal.
8079 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8080 Alan Hayward <alan.hayward@arm.com>
8081 David Sherwood <david.sherwood@arm.com>
8083 * simplify-rtx.c (simplify_const_unary_operation): Use
8084 is_a <scalar_int_mode> instead of checking for a nonzero
8085 precision. Forcibly convert op_mode to a scalar_int_mode
8086 in that case. More clearly differentiate the operand and
8087 result modes and use the former when deciding what the value
8088 of a count-bits operation should be. Use is_int_mode instead
8089 of checking for a MODE_INT. Remove redundant check for whether
8090 this mode has a zero precision.
8092 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8093 Alan Hayward <alan.hayward@arm.com>
8094 David Sherwood <david.sherwood@arm.com>
8096 * optabs.c (widen_leading): Change the type of the mode argument
8097 to scalar_int_mode. Use opt_scalar_int_mode for the mode iterator.
8098 (widen_bswap): Likewise.
8099 (expand_parity): Likewise.
8100 (expand_ctz): Change the type of the mode argument to scalar_int_mode.
8101 (expand_ffs): Likewise.
8102 (epand_unop): Check for scalar integer modes before calling the
8105 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8106 Alan Hayward <alan.hayward@arm.com>
8107 David Sherwood <david.sherwood@arm.com>
8109 * expr.c (const_scalar_mask_from_tree): Add a mode argument.
8111 (expand_expr_real_1): Update call accordingly.
8113 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8114 Alan Hayward <alan.hayward@arm.com>
8115 David Sherwood <david.sherwood@arm.com>
8117 * expmed.c (store_bit_field_using_insv): Add op0_mode and
8118 value_mode arguments. Use scalar_int_mode internally.
8119 (store_bit_field_1): Rename the new integer mode from imode
8120 to op0_mode and use it instead of GET_MODE (op0). Update calls
8121 to store_split_bit_field, store_bit_field_using_insv and
8122 store_fixed_bit_field.
8123 (store_fixed_bit_field): Add op0_mode and value_mode arguments.
8124 Use scalar_int_mode internally. Use a bit count rather than a mode
8125 when calculating the largest bit size for get_best_mode.
8126 Update calls to store_split_bit_field and store_fixed_bit_field_1.
8127 (store_fixed_bit_field_1): Add mode and value_mode arguments.
8128 Remove assertion that OP0 has a scalar integer mode.
8129 (store_split_bit_field): Add op0_mode and value_mode arguments.
8130 Update calls to extract_fixed_bit_field.
8131 (extract_bit_field_using_extv): Add an op0_mode argument.
8132 Use scalar_int_mode internally.
8133 (extract_bit_field_1): Rename the new integer mode from imode to
8134 op0_mode and use it instead of GET_MODE (op0). Update calls to
8135 extract_split_bit_field, extract_bit_field_using_extv and
8136 extract_fixed_bit_field.
8137 (extract_fixed_bit_field): Add an op0_mode argument. Update calls
8138 to extract_split_bit_field and extract_fixed_bit_field_1.
8139 (extract_fixed_bit_field_1): Add a mode argument. Remove assertion
8140 that OP0 has a scalar integer mode. Use as_a <scalar_int_mode>
8142 (extract_split_bit_field): Add an op0_mode argument. Update call
8143 to extract_fixed_bit_field.
8145 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8146 Alan Hayward <alan.hayward@arm.com>
8147 David Sherwood <david.sherwood@arm.com>
8149 * cse.c (cse_insn): Use opt_scalar_int_mode for the mode iterator.
8150 * explow.c (hard_function_value): Likewise.
8151 * expmed.c (extract_fixed_bit_field_1): Likewise. Move the
8152 convert_to_mode call outside the loop.
8153 * expr.c (alignment_for_piecewise_move): Use opt_scalar_int_mode
8154 for the mode iterator. Require the mode specified by max_pieces
8156 (emit_block_move_via_movmem): Use opt_scalar_int_mode for the
8158 (copy_blkmode_to_reg): Likewise.
8159 (set_storage_via_setmem): Likewise.
8160 * optabs.c (prepare_cmp_insn): Likewise.
8161 * rtlanal.c (init_num_sign_bit_copies_in_rep): Likewise.
8162 * stor-layout.c (finish_bitfield_representative): Likewise.
8164 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8165 Alan Hayward <alan.hayward@arm.com>
8166 David Sherwood <david.sherwood@arm.com>
8168 * rtl.h (subreg_unpromoted_mode, subreg_promoted_mode): New functions.
8169 * expr.c (convert_move): Use them.
8170 (convert_modes): Likewise.
8171 (store_expr_with_bounds): Likewise.
8173 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8174 Alan Hayward <alan.hayward@arm.com>
8175 David Sherwood <david.sherwood@arm.com>
8177 * rtl.h (rtl_hooks::reg_nonzero_bits): Add a scalar_int_mode
8178 parameter for the mode of "x". Remove the "known_x", "known_mode"
8179 and "known_ret" arguments. Change the type of the mode argument
8181 (rtl_hooks:reg_num_sign_bit_copies): Likewise.
8182 * combine.c (reg_nonzero_bits_for_combine): Update accordingly.
8183 (reg_num_sign_bit_copies_for_combine): Likewise.
8184 * rtlanal.c (nonzero_bits1): Likewise.
8185 (num_sign_bit_copies1): Likewise.
8186 * rtlhooks-def.h (reg_nonzero_bits_general): Likewise.
8187 (reg_num_sign_bit_copies_general): Likewise.
8188 * rtlhooks.c (reg_num_sign_bit_copies_general): Likewise.
8189 (reg_nonzero_bits_general): Likewise.
8191 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8192 Alan Hayward <alan.hayward@arm.com>
8193 David Sherwood <david.sherwood@arm.com>
8195 * rtlanal.c (num_sign_bit_copies): Handle VOIDmode here rather
8196 than in subroutines. Return 1 for non-integer modes.
8197 (cached_num_sign_bit_copies): Change the type of the mode parameter
8199 (num_sign_bit_copies1): Likewise. Remove early exit for other mode
8200 classes. Handle CONST_INT_P first and then check whether X also
8201 has a scalar integer mode. Check the same thing for inner registers
8202 of a SUBREG and for values that are being extended or truncated.
8204 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8205 Alan Hayward <alan.hayward@arm.com>
8206 David Sherwood <david.sherwood@arm.com>
8208 * rtlanal.c (nonzero_bits): Handle VOIDmode here rather than
8209 in subroutines. Return the mode mask for non-integer modes.
8210 (cached_nonzero_bits): Change the type of the mode parameter
8212 (nonzero_bits1): Likewise. Remove early exit for other mode
8213 classes. Handle CONST_INT_P first and then check whether X
8214 also has a scalar integer mode.
8216 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8217 Alan Hayward <alan.hayward@arm.com>
8218 David Sherwood <david.sherwood@arm.com>
8220 * expr.c (widest_int_mode_for_size): Make the comment match the code.
8221 Return a scalar_int_mode and assert that the size is greater than
8223 (by_pieces_ninsns): Update accordingly and remove VOIDmode handling.
8224 (op_by_pieces_d::op_by_pieces_d): Likewise.
8225 (op_by_pieces_d::run): Likewise.
8226 (can_store_by_pieces): Likewise.
8228 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8229 Alan Hayward <alan.hayward@arm.com>
8230 David Sherwood <david.sherwood@arm.com>
8232 * combine.c (extract_left_shift): Add a mode argument and update
8234 (make_compound_operation_int): Change the type of the mode parameter
8235 to scalar_int_mode and update the call to extract_left_shift.
8237 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8238 Alan Hayward <alan.hayward@arm.com>
8239 David Sherwood <david.sherwood@arm.com>
8241 * combine.c (simplify_and_const_int): Change the type of the mode
8242 parameter to scalar_int_mode.
8243 (simplify_and_const_int_1): Likewise. Update recursive call.
8245 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8246 Alan Hayward <alan.hayward@arm.com>
8247 David Sherwood <david.sherwood@arm.com>
8249 * combine.c (simplify_compare_const): Check that the mode is a
8250 scalar_int_mode (rather than VOIDmode) before testing its
8252 (simplify_comparison): Move COMPARISON_P handling out of the
8253 loop and restrict the latter part of the loop to scalar_int_modes.
8254 Check is_a <scalar_int_mode> before calling HWI_COMPUTABLE_MODE_P
8255 and when considering SUBREG_REGs. Use is_int_mode instead of
8256 checking GET_MODE_CLASS against MODE_INT.
8258 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8259 Alan Hayward <alan.hayward@arm.com>
8260 David Sherwood <david.sherwood@arm.com>
8262 * combine.c (try_widen_shift_mode): Move check for equal modes to...
8263 (simplify_shift_const_1): ...here. Use scalar_int_mode for
8264 shift_unit_mode and for modes involved in scalar shifts.
8266 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8267 Alan Hayward <alan.hayward@arm.com>
8268 David Sherwood <david.sherwood@arm.com>
8270 * combine.c (force_int_to_mode): New function, split out from...
8271 (force_to_mode): ...here. Keep xmode up-to-date and use it
8272 instead of GET_MODE (x).
8274 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8275 Alan Hayward <alan.hayward@arm.com>
8276 David Sherwood <david.sherwood@arm.com>
8278 * optabs-query.h (extraction_insn::struct_mode): Change type to
8279 opt_scalar_int_mode and update comment.
8280 (extraction_insn::field_mode): Change type to scalar_int_mode.
8281 (extraction_insn::pos_mode): Likewise.
8282 * combine.c (make_extraction): Update accordingly.
8283 * optabs-query.c (get_traditional_extraction_insn): Likewise.
8284 (get_optab_extraction_insn): Likewise.
8285 * recog.c (simplify_while_replacing): Likewise.
8286 * expmed.c (narrow_bit_field_mem): Change the type of the mode
8287 parameter to opt_scalar_int_mode.
8289 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8290 Alan Hayward <alan.hayward@arm.com>
8291 David Sherwood <david.sherwood@arm.com>
8293 * machmode.h (bit_field_mode_iterator::next_mode): Take a pointer
8294 to a scalar_int_mode instead of a machine_mode.
8295 (bit_field_mode_iterator::m_mode): Change type to opt_scalar_int_mode.
8296 (get_best_mode): Return a boolean and use a pointer argument to store
8297 the selected mode. Replace the limit mode parameter with a bit limit.
8298 * expmed.c (adjust_bit_field_mem_for_reg): Use scalar_int_mode
8299 for the values returned by bit_field_mode_iterator::next_mode.
8300 (store_bit_field): Update call to get_best_mode.
8301 (store_fixed_bit_field): Likewise.
8302 (extract_fixed_bit_field): Likewise.
8303 * expr.c (optimize_bitfield_assignment_op): Likewise.
8304 * fold-const.c (optimize_bit_field_compare): Likewise.
8305 (fold_truth_andor_1): Likewise.
8306 * stor-layout.c (bit_field_mode_iterator::next_mode): As above.
8307 Update for new type of m_mode.
8308 (get_best_mode): As above.
8310 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8311 Alan Hayward <alan.hayward@arm.com>
8312 David Sherwood <david.sherwood@arm.com>
8314 * expmed.c (strict_volatile_bitfield_p): Change the type of fieldmode
8315 to scalar_int_mode. Remove check for SCALAR_INT_MODE_P.
8316 (store_bit_field): Check is_a <scalar_int_mode> before calling
8317 strict_volatile_bitfield_p.
8318 (extract_bit_field): Likewise.
8320 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8321 Alan Hayward <alan.hayward@arm.com>
8322 David Sherwood <david.sherwood@arm.com>
8324 * target.def (cstore_mode): Return a scalar_int_mode.
8325 * doc/tm.texi: Regenerate.
8326 * config/sparc/sparc.c (sparc_cstore_mode): Return a scalar_int_mode.
8327 * targhooks.h (default_cstore_mode): Likewise.
8328 * targhooks.c (default_cstore_mode): Likewise, using a forced
8330 * expmed.c (emit_cstore): Expect the target of the cstore to be
8333 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8334 Alan Hayward <alan.hayward@arm.com>
8335 David Sherwood <david.sherwood@arm.com>
8337 * cfgloop.h (rtx_iv): Change type of extend_mode and mode to
8339 (niter_desc): Likewise mode.
8340 (iv_analyze): Add a mode parameter.
8342 (iv_analyze_expr): Pass the mode paraeter before the rtx it describes
8343 and change its type to scalar_int_mode.
8344 * loop-iv.c: Update commentary at head of file.
8345 (iv_constant): Pass the mode paraeter before the rtx it describes
8346 and change its type to scalar_int_mode. Remove VOIDmode handling.
8347 (iv_subreg): Change the type of the mode parameter to scalar_int_mode.
8348 (iv_extend): Likewise.
8349 (shorten_into_mode): Likewise.
8350 (iv_add): Use scalar_int_mode.
8351 (iv_mult): Likewise.
8352 (iv_shift): Likewise.
8353 (canonicalize_iv_subregs): Likewise.
8354 (get_biv_step_1): Pass the outer_mode parameter before the rtx
8355 it describes and change its mode to scalar_int_mode. Also change
8356 the type of the returned inner_mode to scalar_int_mode.
8357 (get_biv_step): Likewise, turning outer_mode from a pointer
8358 into a direct parameter. Update call to get_biv_step_1.
8359 (iv_analyze_biv): Add an outer_mode parameter. Update calls to
8360 iv_constant and get_biv_step.
8361 (iv_analyze_expr): Pass the mode parameter before the rtx it describes
8362 and change its type to scalar_int_mode. Don't initialise iv->mode
8363 to VOIDmode and remove later checks for its still being VOIDmode.
8364 Update calls to iv_analyze_op and iv_analyze_expr. Check
8365 is_a <scalar_int_mode> when changing the mode under consideration.
8366 (iv_analyze_def): Ignore registers that don't have a scalar_int_mode.
8367 Update call to iv_analyze_expr.
8368 (iv_analyze_op): Add a mode parameter. Reject subregs whose
8369 inner register is not also a scalar_int_mode. Update call to
8371 (iv_analyze): Add a mode parameter. Update call to iv_analyze_op.
8372 (biv_p): Add a mode parameter. Update call to iv_analyze_biv.
8373 (iv_number_of_iterations): Use is_a <scalar_int_mode> instead of
8374 separate mode class checks. Update calls to iv_analyze. Remove
8375 fix-up of VOIDmodes after iv_analyze_biv.
8376 * loop-unroll.c (analyze_iv_to_split_insn): Reject registers that
8377 don't have a scalar_int_mode. Update call to biv_p.
8379 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8380 Alan Hayward <alan.hayward@arm.com>
8381 David Sherwood <david.sherwood@arm.com>
8383 * cfgexpand.c (convert_debug_memory_address): Use
8384 as_a <scalar_int_mode>.
8385 * combine.c (expand_compound_operation): Likewise.
8386 (make_extraction): Likewise.
8387 (change_zero_ext): Likewise.
8388 (simplify_comparison): Likewise.
8389 * cse.c (cse_insn): Likewise.
8390 * dwarf2out.c (minmax_loc_descriptor): Likewise.
8391 (mem_loc_descriptor): Likewise.
8392 (loc_descriptor): Likewise.
8393 * expmed.c (init_expmed_one_mode): Likewise.
8394 (synth_mult): Likewise.
8395 (emit_store_flag_1): Likewise.
8396 (expand_divmod): Likewise. Use HWI_COMPUTABLE_MODE_P instead
8397 of a comparison with size.
8398 * expr.c (expand_assignment): Use as_a <scalar_int_mode>.
8399 (reduce_to_bit_field_precision): Likewise.
8400 * function.c (expand_function_end): Likewise.
8401 * internal-fn.c (expand_arith_overflow_result_store): Likewise.
8402 * loop-doloop.c (doloop_modify): Likewise.
8403 * optabs.c (expand_binop): Likewise.
8404 (expand_unop): Likewise.
8405 (expand_copysign_absneg): Likewise.
8406 (prepare_cmp_insn): Likewise.
8407 (maybe_legitimize_operand): Likewise.
8408 * recog.c (const_scalar_int_operand): Likewise.
8409 * rtlanal.c (get_address_mode): Likewise.
8410 * simplify-rtx.c (simplify_unary_operation_1): Likewise.
8411 (simplify_cond_clz_ctz): Likewise.
8412 * tree-nested.c (get_nl_goto_field): Likewise.
8413 * tree.c (build_vector_type_for_mode): Likewise.
8414 * var-tracking.c (use_narrower_mode): Likewise.
8416 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8417 Alan Hayward <alan.hayward@arm.com>
8418 David Sherwood <david.sherwood@arm.com>
8420 * tree.h (SCALAR_INT_TYPE_MODE): New macro.
8421 * builtins.c (expand_builtin_signbit): Use it.
8422 * cfgexpand.c (expand_debug_expr): Likewise.
8423 * dojump.c (do_jump): Likewise.
8424 (do_compare_and_jump): Likewise.
8425 * dwarf2cfi.c (expand_builtin_init_dwarf_reg_sizes): Likewise.
8426 * expmed.c (make_tree): Likewise.
8427 * expr.c (expand_expr_real_2): Likewise.
8428 (expand_expr_real_1): Likewise.
8429 (try_casesi): Likewise.
8430 * fold-const-call.c (fold_const_call_ss): Likewise.
8431 * fold-const.c (unextend): Likewise.
8432 (extract_muldiv_1): Likewise.
8433 (fold_single_bit_test): Likewise.
8434 (native_encode_int): Likewise.
8435 (native_encode_string): Likewise.
8436 (native_interpret_int): Likewise.
8437 * gimple-fold.c (gimple_fold_builtin_memset): Likewise.
8438 * internal-fn.c (expand_addsub_overflow): Likewise.
8439 (expand_neg_overflow): Likewise.
8440 (expand_mul_overflow): Likewise.
8441 (expand_arith_overflow): Likewise.
8442 * match.pd: Likewise.
8443 * stor-layout.c (layout_type): Likewise.
8444 * tree-cfg.c (verify_gimple_assign_ternary): Likewise.
8445 * tree-ssa-math-opts.c (convert_mult_to_widen): Likewise.
8446 * tree-ssanames.c (get_range_info): Likewise.
8447 * tree-switch-conversion.c (array_value_type) Likewise.
8448 * tree-vect-patterns.c (vect_recog_rotate_pattern): Likewise.
8449 (vect_recog_divmod_pattern): Likewise.
8450 (vect_recog_mixed_size_cond_pattern): Likewise.
8451 * tree-vrp.c (extract_range_basic): Likewise.
8452 (simplify_float_conversion_using_ranges): Likewise.
8453 * tree.c (int_fits_type_p): Likewise.
8454 * ubsan.c (instrument_bool_enum_load): Likewise.
8455 * varasm.c (mergeable_string_section): Likewise.
8456 (narrowing_initializer_constant_valid_p): Likewise.
8457 (output_constant): Likewise.
8459 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8460 Alan Hayward <alan.hayward@arm.com>
8461 David Sherwood <david.sherwood@arm.com>
8463 * machmode.h (NARROWEST_INT_MODE): New macro.
8464 * expr.c (alignment_for_piecewise_move): Use it instead of
8465 GET_CLASS_NARROWEST_MODE (MODE_INT).
8466 (push_block): Likewise.
8467 * stor-layout.c (bit_field_mode_iterator::bit_field_mode_iterator):
8469 * tree-vrp.c (simplify_float_conversion_using_ranges): Likewise.
8471 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8472 Alan Hayward <alan.hayward@arm.com>
8473 David Sherwood <david.sherwood@arm.com>
8475 * postreload.c (move2add_valid_value_p): Change the type of the
8476 mode parameter to scalar_int_mode.
8477 (move2add_use_add2_insn): Add a mode parameter and use it instead
8479 (move2add_use_add3_insn): Likewise.
8480 (reload_cse_move2add): Update accordingly.
8482 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8483 Alan Hayward <alan.hayward@arm.com>
8484 David Sherwood <david.sherwood@arm.com>
8486 * expr.c (expand_expr_real_2): Use scalar_int_mode for the
8488 * lower-subreg.c (resolve_shift_zext): Use is_a <scalar_int_mode>.
8489 * optabs.c (expand_unop): Likewise.
8491 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8492 Alan Hayward <alan.hayward@arm.com>
8493 David Sherwood <david.sherwood@arm.com>
8495 * dwarf2out.c (typed_binop): Change mode parameter to scalar_int_mode.
8496 (clz_loc_descriptor): Likewise. Remove SCALAR_INT_MODE_P check.
8497 (popcount_loc_descriptor): Likewise.
8498 (bswap_loc_descriptor): Likewise.
8499 (rotate_loc_descriptor): Likewise.
8500 (mem_loc_descriptor): Add is_a <scalar_int_mode> checks before
8501 calling the functions above.
8503 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8504 Alan Hayward <alan.hayward@arm.com>
8505 David Sherwood <david.sherwood@arm.com>
8507 * combine.c (sign_extend_short_imm): Add is_a <scalar_int_mode>
8509 (try_combine): Likewise.
8510 (simplify_if_then_else): Likewise.
8511 * cse.c (cse_insn): Likewise.
8512 * dwarf2out.c (mem_loc_descriptor): Likewise.
8513 * emit-rtl.c (gen_lowpart_common): Likewise.
8514 * simplify-rtx.c (simplify_truncation): Likewise.
8515 (simplify_binary_operation_1): Likewise.
8516 (simplify_const_relational_operation): Likewise.
8517 (simplify_ternary_operation): Likewise.
8518 * tree-ssa-loop-ivopts.c (force_expr_to_var_cost): Likewise.
8520 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8521 Alan Hayward <alan.hayward@arm.com>
8522 David Sherwood <david.sherwood@arm.com>
8524 * cse.c (cse_insn): Add is_a <scalar_int_mode> checks.
8525 * reload.c (push_reload): Likewise.
8526 (find_reloads): Likewise.
8528 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8529 Alan Hayward <alan.hayward@arm.com>
8530 David Sherwood <david.sherwood@arm.com>
8532 * combine.c (find_split_point): Add is_a <scalar_int_mode> checks.
8533 (make_compound_operation_int): Likewise.
8534 (change_zero_ext): Likewise.
8535 * expr.c (convert_move): Likewise.
8536 (convert_modes): Likewise.
8537 * fwprop.c (forward_propagate_subreg): Likewise.
8538 * loop-iv.c (get_biv_step_1): Likewise.
8539 * optabs.c (widen_operand): Likewise.
8540 * postreload.c (move2add_valid_value_p): Likewise.
8541 * recog.c (simplify_while_replacing): Likewise.
8542 * simplify-rtx.c (simplify_unary_operation_1): Likewise.
8543 (simplify_binary_operation_1): Likewise. Remove redundant
8544 mode equality check.
8546 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8547 Alan Hayward <alan.hayward@arm.com>
8548 David Sherwood <david.sherwood@arm.com>
8550 * combine.c (combine_simplify_rtx): Add checks for
8551 is_a <scalar_int_mode>.
8552 (simplify_if_then_else): Likewise.
8553 (make_field_assignment): Likewise.
8554 (simplify_comparison): Likewise.
8555 * ifcvt.c (noce_try_bitop): Likewise.
8556 * loop-invariant.c (canonicalize_address_mult): Likewise.
8557 * simplify-rtx.c (simplify_unary_operation_1): Likewise.
8559 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8560 Alan Hayward <alan.hayward@arm.com>
8561 David Sherwood <david.sherwood@arm.com>
8563 * gimple-fold.c (gimple_fold_builtin_memory_op): Use
8564 is_a <scalar_int_mode> instead of != BLKmode.
8566 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8567 Alan Hayward <alan.hayward@arm.com>
8568 David Sherwood <david.sherwood@arm.com>
8570 * cfgexpand.c (expand_debug_expr): Use is_a <scalar_int_mode>
8571 instead of != VOIDmode.
8572 * combine.c (if_then_else_cond): Likewise.
8573 (change_zero_ext): Likewise.
8574 * dwarf2out.c (mem_loc_descriptor): Likewise.
8575 (loc_descriptor): Likewise.
8576 * rtlanal.c (canonicalize_condition): Likewise.
8577 * simplify-rtx.c (simplify_relational_operation_1): Likewise.
8579 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8580 Alan Hayward <alan.hayward@arm.com>
8581 David Sherwood <david.sherwood@arm.com>
8583 * simplify-rtx.c (simplify_binary_operation_1): Use
8584 is_a <scalar_int_mode> instead of !VECTOR_MODE_P.
8586 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8587 Alan Hayward <alan.hayward@arm.com>
8588 David Sherwood <david.sherwood@arm.com>
8590 * wide-int.h (int_traits<unsigned char>) New class.
8591 (int_traits<unsigned short>) Likewise.
8592 * cfgexpand.c (expand_debug_expr): Use is_a <scalar_int_mode>.
8593 Use GET_MODE_UNIT_PRECISION and remove redundant test for
8595 * combine.c (set_nonzero_bits_and_sign_copies): Use
8596 is_a <scalar_int_mode>.
8597 (find_split_point): Likewise.
8598 (combine_simplify_rtx): Likewise.
8599 (simplify_logical): Likewise.
8600 (expand_compound_operation): Likewise.
8601 (expand_field_assignment): Likewise.
8602 (make_compound_operation): Likewise.
8603 (extended_count): Likewise.
8604 (change_zero_ext): Likewise.
8605 (simplify_comparison): Likewise.
8606 * dwarf2out.c (scompare_loc_descriptor): Likewise.
8607 (ucompare_loc_descriptor): Likewise.
8608 (minmax_loc_descriptor): Likewise.
8609 (mem_loc_descriptor): Likewise.
8610 (loc_descriptor): Likewise.
8611 * expmed.c (init_expmed_one_mode): Likewise.
8612 * lra-constraints.c (lra_constraint_offset): Likewise.
8613 * optabs.c (prepare_libcall_arg): Likewise.
8614 * postreload.c (move2add_note_store): Likewise.
8615 * reload.c (operands_match_p): Likewise.
8616 * rtl.h (load_extend_op): Likewise.
8617 * rtlhooks.c (gen_lowpart_general): Likewise.
8618 * simplify-rtx.c (simplify_truncation): Likewise.
8619 (simplify_unary_operation_1): Likewise.
8620 (simplify_binary_operation_1): Likewise.
8621 (simplify_const_binary_operation): Likewise.
8622 (simplify_const_relational_operation): Likewise.
8623 (simplify_subreg): Likewise.
8624 * stor-layout.c (bitwise_mode_for_mode): Likewise.
8625 * var-tracking.c (adjust_mems): Likewise.
8626 (prepare_call_arguments): Likewise.
8628 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8629 Alan Hayward <alan.hayward@arm.com>
8630 David Sherwood <david.sherwood@arm.com>
8632 * machmode.h (is_int_mode): New fuction.
8633 * combine.c (find_split_point): Use it.
8634 (combine_simplify_rtx): Likewise.
8635 (simplify_if_then_else): Likewise.
8636 (simplify_set): Likewise.
8637 (simplify_shift_const_1): Likewise.
8638 (simplify_comparison): Likewise.
8639 * config/aarch64/aarch64.c (aarch64_rtx_costs): Likewise.
8640 * cse.c (notreg_cost): Likewise.
8641 (cse_insn): Likewise.
8642 * cselib.c (cselib_lookup_1): Likewise.
8643 * dojump.c (do_jump_1): Likewise.
8644 (do_compare_rtx_and_jump): Likewise.
8645 * dse.c (get_call_args): Likewise.
8646 * dwarf2out.c (rtl_for_decl_init): Likewise.
8647 (native_encode_initializer): Likewise.
8648 * expmed.c (emit_store_flag_1): Likewise.
8649 (emit_store_flag): Likewise.
8650 * expr.c (convert_modes): Likewise.
8651 (store_field): Likewise.
8652 (expand_expr_real_1): Likewise.
8653 * fold-const.c (fold_read_from_constant_string): Likewise.
8654 * gimple-ssa-sprintf.c (get_format_string): Likewise.
8655 * optabs-libfuncs.c (gen_int_libfunc): Likewise.
8656 * optabs.c (expand_binop): Likewise.
8657 (expand_unop): Likewise.
8658 (expand_abs_nojump): Likewise.
8659 (expand_one_cmpl_abs_nojump): Likewise.
8660 * simplify-rtx.c (mode_signbit_p): Likewise.
8661 (val_signbit_p): Likewise.
8662 (val_signbit_known_set_p): Likewise.
8663 (val_signbit_known_clear_p): Likewise.
8664 (simplify_relational_operation_1): Likewise.
8665 * tree.c (vector_type_mode): Likewise.
8667 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8668 Alan Hayward <alan.hayward@arm.com>
8669 David Sherwood <david.sherwood@arm.com>
8671 * machmode.h (smallest_mode_for_size): Fix formatting.
8672 (smallest_int_mode_for_size): New function.
8673 * cfgexpand.c (expand_debug_expr): Use smallest_int_mode_for_size
8674 instead of smallest_mode_for_size.
8675 * combine.c (make_extraction): Likewise.
8676 * config/arc/arc.c (arc_expand_movmem): Likewise.
8677 * config/arm/arm.c (arm_expand_divmod_libfunc): Likewise.
8678 * config/i386/i386.c (ix86_get_mask_mode): Likewise.
8679 * config/s390/s390.c (s390_expand_insv): Likewise.
8680 * config/sparc/sparc.c (assign_int_registers): Likewise.
8681 * config/spu/spu.c (spu_function_value): Likewise.
8682 (spu_function_arg): Likewise.
8683 * coverage.c (get_gcov_type): Likewise.
8684 (get_gcov_unsigned_t): Likewise.
8685 * dse.c (find_shift_sequence): Likewise.
8686 * expmed.c (store_bit_field_1): Likewise.
8687 * expr.c (convert_move): Likewise.
8688 (store_field): Likewise.
8689 * internal-fn.c (expand_arith_overflow): Likewise.
8690 * optabs-query.c (get_best_extraction_insn): Likewise.
8691 * optabs.c (expand_twoval_binop_libfunc): Likewise.
8692 * stor-layout.c (layout_type): Likewise.
8693 (initialize_sizetypes): Likewise.
8694 * targhooks.c (default_get_mask_mode): Likewise.
8695 * tree-ssa-loop-manip.c (canonicalize_loop_ivs): Likewise.
8697 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8698 Alan Hayward <alan.hayward@arm.com>
8699 David Sherwood <david.sherwood@arm.com>
8701 * machmode.h (opt_mode::else_blk): New function.
8702 (int_mode_for_mode): Declare.
8703 * stor-layout.c (int_mode_for_mode): Return an opt_scalar_int_mode.
8704 * builtins.c (expand_builtin_signbit): Adjust for new int_mode_for_mode
8706 * cfgexpand.c (expand_debug_expr): Likewise.
8707 * combine.c (gen_lowpart_or_truncate): Likewise.
8708 (gen_lowpart_for_combine): Likewise.
8709 * config/aarch64/aarch64.c (aarch64_emit_approx_sqrt): Likewise.
8710 * config/avr/avr.c (avr_to_int_mode): Likewise.
8711 (avr_out_plus_1): Likewise.
8712 (avr_out_plus): Likewise.
8713 (avr_out_round): Likewise.
8714 * config/i386/i386.c (ix86_split_to_parts): Likewise.
8715 * config/s390/s390.c (s390_expand_vec_compare_cc): Likewise.
8716 (s390_expand_vcond): Likewise.
8717 * config/spu/spu.c (spu_split_immediate): Likewise.
8718 (spu_expand_mov): Likewise.
8719 * dse.c (get_stored_val): Likewise.
8720 * expmed.c (store_bit_field_1): Likewise.
8721 (convert_extracted_bit_field): Use int_mode_for_mode instead of
8723 (extract_bit_field_1): Adjust for new int_mode_for_mode return type.
8724 (extract_low_bits): Likewise.
8725 * expr.c (emit_group_load_1): Likewise. Separate out the BLKmode
8726 handling rather than repeating the check.
8727 (emit_group_store): Likewise.
8728 (emit_move_via_integer): Adjust for new int_mode_for_mode return type.
8729 * optabs.c (expand_absneg_bit): Likewise.
8730 (expand_copysign_absneg): Likewise.
8731 (expand_copysign_bit): Likewise.
8732 * tree-if-conv.c (ifcvt_can_use_mask_load_store): Likewise.
8733 * tree-vect-slp.c (vect_transform_slp_perm_load): Likewise.
8734 * tree-vect-stmts.c (vect_gen_perm_mask_any): Likewise.
8735 * var-tracking.c (prepare_call_arguments): Likewise.
8736 * config/powerpcspe/powerpcspe.c (rs6000_do_expand_vec_perm): Use
8737 int_mode_for_mode instead of mode_for_size.
8738 * config/rs6000/rs6000.c (rs6000_do_expand_vec_perm): Likewise.
8740 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8741 Alan Hayward <alan.hayward@arm.com>
8742 David Sherwood <david.sherwood@arm.com>
8744 * machmode.h (int_mode_for_size): New function.
8745 * builtins.c (set_builtin_user_assembler_name): Use int_mode_for_size
8746 instead of mode_for_size.
8747 * calls.c (save_fixed_argument_area): Likewise. Make use of BLKmode
8749 * combine.c (expand_field_assignment): Use int_mode_for_size
8750 instead of mode_for_size.
8751 (make_extraction): Likewise.
8752 (simplify_shift_const_1): Likewise.
8753 (simplify_comparison): Likewise.
8754 * dojump.c (do_jump): Likewise.
8755 * dwarf2out.c (mem_loc_descriptor): Likewise.
8756 * emit-rtl.c (init_derived_machine_modes): Likewise.
8757 * expmed.c (flip_storage_order): Likewise.
8758 (convert_extracted_bit_field): Likewise.
8759 * expr.c (copy_blkmode_from_reg): Likewise.
8760 * graphite-isl-ast-to-gimple.c (max_mode_int_precision): Likewise.
8761 * internal-fn.c (expand_mul_overflow): Likewise.
8762 * lower-subreg.c (simple_move): Likewise.
8763 * optabs-libfuncs.c (init_optabs): Likewise.
8764 * simplify-rtx.c (simplify_unary_operation_1): Likewise.
8765 * tree.c (vector_type_mode): Likewise.
8766 * tree-ssa-strlen.c (handle_builtin_memcmp): Likewise.
8767 * tree-vect-data-refs.c (vect_lanes_optab_supported_p): Likewise.
8768 * tree-vect-generic.c (expand_vector_parallel): Likewise.
8769 * tree-vect-stmts.c (vectorizable_load): Likewise.
8770 (vectorizable_store): Likewise.
8772 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8773 Alan Hayward <alan.hayward@arm.com>
8774 David Sherwood <david.sherwood@arm.com>
8776 * coretypes.h (pod_mode): New type.
8777 (scalar_int_mode_pod): New typedef.
8778 * machmode.h (pod_mode): New class.
8779 (int_n_data_t::m): Change type to scalar_int_mode_pod.
8780 * genmodes.c (emit_mode_int_n): Update accordingly.
8781 * lower-subreg.h (target_lower_subreg): Change type to
8782 scalar_int_mode_pod.
8783 * gdbhooks.py (build_pretty_printer): Handle pod_mode and
8784 scalar_int_mode_pod.
8786 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8787 Alan Hayward <alan.hayward@arm.com>
8788 David Sherwood <david.sherwood@arm.com>
8790 * config/powerpcspe/powerpcspe.h (rs6000_pmode): Change type from
8791 machine_mode to scalar_int_mode.
8792 * config/powerpcspe/powerpcspe.c (rs6000_pmode): Likewise.
8793 (rs6000_option_override_internal): Remove cast to int.
8794 * config/rs6000/rs6000.h (rs6000_pmode): Change type from
8795 machine_mode to scalar_int_mode.
8796 * config/rs6000/rs6000.c (rs6000_pmode): Likewise.
8797 (rs6000_option_override_internal): Remove cast to int.
8798 * config/s390/s390.h (Pmode): Remove cast to machine_mode.
8799 * config/epiphany/epiphany.h (RTX_OK_FOR_OFFSET_P): Add cast
8801 * config/s390/s390.c (s390_expand_builtin): Likewise.
8802 * coretypes.h (scalar_int_mode): New type.
8803 (opt_scalar_int_mode): New typedef.
8804 * machmode.h (scalar_int_mode): New class.
8805 (scalar_int_mode::includes_p): New function.
8806 (byte_mode): Change type to scalar_int_mode.
8807 (word_mode): Likewise.
8808 (ptr_mode): Likewise.
8809 * emit-rtl.c (byte_mode): Likewise.
8810 (word_mode): Likewise.
8811 (ptr_mode): Likewise.
8812 (init_derived_machine_modes): Update accordingly.
8813 * genmodes.c (get_mode_class): Return scalar_int_mode for MODE_INT
8814 and MODE_PARTIAL_INT.
8815 * gdbhooks.py (build_pretty_printer): Handle scalar_int_mode and
8816 opt_scalar_int_mode.
8818 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8819 Alan Hayward <alan.hayward@arm.com>
8820 David Sherwood <david.sherwood@arm.com>
8822 * target.def (libgcc_floating_mode_supported_p): Take a
8824 * doc/tm.texi: Regenerate.
8825 * targhooks.h (default_libgcc_floating_mode_supported_p): Take a
8827 * targhooks.c (default_libgcc_floating_mode_supported_p): Likewise.
8828 * config/aarch64/aarch64.c (aarch64_libgcc_floating_mode_supported_p):
8831 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8832 Alan Hayward <alan.hayward@arm.com>
8833 David Sherwood <david.sherwood@arm.com>
8835 * target.def (default_floatn_mode): Return an opt_scalar_float_mode.
8836 * doc/tm.texi: Regenerate.
8837 * config/arm/arm.c (arm_floatn_mode): Return an opt_scalar_float_mode.
8838 * config/powerpcspe/powerpcspe.c (rs6000_floatn_mode): Likewise.
8839 * config/rs6000/rs6000.c (rs6000_floatn_mode): Likewise.
8840 * targhooks.h (default_floatn_mode): Likewise.
8841 * targhooks.c (default_floatn_mode): Likewise.
8842 * tree.c (build_common_tree_nodes): Update accordingly.
8844 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8845 Alan Hayward <alan.hayward@arm.com>
8846 David Sherwood <david.sherwood@arm.com>
8848 * machmode.h (mode_iterator::start): Provide overload for opt_modes.
8849 (mode_iterator::iterate_p): Likewise.
8850 (mode_iterator::get_wider): Likewise.
8851 * expr.c (init_expr_target): Use opt_scalar_float_mode.
8853 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8854 Alan Hayward <alan.hayward@arm.com>
8855 David Sherwood <david.sherwood@arm.com>
8857 * coretypes.h (opt_scalar_float_mode): New typedef.
8858 * machmode.h (float_mode_for_size): New function.
8859 * emit-rtl.c (double_mode): Delete.
8860 (init_emit_once): Use float_mode_for_size.
8861 * stor-layout.c (layout_type): Likewise.
8862 * gdbhooks.py (build_pretty_printer): Handle opt_scalar_float_mode.
8864 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8865 Alan Hayward <alan.hayward@arm.com>
8866 David Sherwood <david.sherwood@arm.com>
8868 * output.h (assemble_real): Take a scalar_float_mode.
8869 * config/arm/arm.c (arm_assemble_integer): Update accordingly.
8870 * config/arm/arm.md (consttable_4): Likewise.
8871 (consttable_8): Likewise.
8872 (consttable_16): Likewise.
8873 * config/mips/mips.md (consttable_float): Likewise.
8874 * config/s390/s390.c (s390_output_pool_entry): Likewise.
8875 * varasm.c (assemble_real): Take a scalar_float_mode.
8876 (output_constant_pool_2): Update accordingly.
8877 (output_constant): Likewise.
8879 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8880 Alan Hayward <alan.hayward@arm.com>
8881 David Sherwood <david.sherwood@arm.com>
8883 * tree.h (SCALAR_FLOAT_TYPE_MODE): New macro.
8884 * builtins.c (expand_builtin_signbit): Use it instead of TYPE_MODE.
8885 * fold-const.c (fold_convert_const_real_from_fixed): Likewise.
8886 (native_encode_real): Likewise.
8887 (native_interpret_real): Likewise.
8888 * hsa-brig.c (emit_immediate_scalar_to_buffer): Likewise.
8889 * tree-vrp.c (simplify_float_conversion_using_ranges): Likewise.
8891 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8892 Alan Hayward <alan.hayward@arm.com>
8893 David Sherwood <david.sherwood@arm.com>
8895 * optabs-libfuncs.c (gen_trunc_conv_libfunc): Use is_a
8896 <scalar_float_mode>. Simplify.
8897 (gen_extend_conv_libfunc): Likewise.
8899 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8900 Alan Hayward <alan.hayward@arm.com>
8901 David Sherwood <david.sherwood@arm.com>
8903 * coretypes.h (scalar_float_mode): New type.
8904 * machmode.h (mode_traits::from_int): Use machine_mode if
8905 USE_ENUM_MODES is defined.
8906 (is_a): New function.
8908 (dyn_cast): Likewise.
8909 (scalar_float_mode): New class.
8910 (scalar_float_mode::includes_p): New function.
8911 (is_float_mode): Likewise.
8912 * gdbhooks.py (MachineModePrinter): New class.
8913 (build_pretty_printer): Use it for scalar_float_mode.
8914 * real.h (FLOAT_MODE_FORMAT): Use as_a <scalar_float_mode>.
8915 (format_helper::format_helper): Turn into a template.
8916 * genmodes.c (get_mode_class): New function.
8917 (emit_insn_modes_h): Give modes the class returned by get_mode_class,
8918 or machine_mode if none.
8919 * config/aarch64/aarch64.c (aarch64_simd_valid_immediate): Use
8920 as_a <scalar_float_mode>.
8921 * dwarf2out.c (mem_loc_descriptor): Likewise.
8922 (insert_float): Likewise.
8923 (add_const_value_attribute): Likewise.
8924 * simplify-rtx.c (simplify_immed_subreg): Likewise.
8925 * optabs.c (expand_absneg_bit): Take a scalar_float_mode.
8926 (expand_unop): Update accordingly.
8927 (expand_abs_nojump): Likewise.
8928 (expand_copysign_absneg): Take a scalar_float_mode.
8929 (expand_copysign_bit): Likewise.
8930 (expand_copysign): Update accordingly.
8932 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8933 Alan Hayward <alan.hayward@arm.com>
8934 David Sherwood <david.sherwood@arm.com>
8936 * coretypes.h (opt_mode): New class.
8937 * machmode.h (opt_mode): Likewise.
8938 (opt_mode::else_void): New function.
8939 (opt_mode::require): Likewise.
8940 (opt_mode::exists): Likewise.
8941 (GET_MODE_WIDER_MODE): Turn into a function and return an opt_mode.
8942 (GET_MODE_2XWIDER_MODE): Likewise.
8943 (mode_iterator::get_wider): Update accordingly.
8944 (mode_iterator::get_2xwider): Likewise.
8945 (mode_iterator::get_known_wider): Likewise, turning into a template.
8946 * combine.c (make_extraction): Update use of GET_MODE_WIDER_MODE,
8947 forcing a wider mode to exist.
8948 * config/cr16/cr16.h (LONG_REG_P): Likewise.
8949 * rtlanal.c (init_num_sign_bit_copies_in_rep): Likewise.
8950 * config/c6x/c6x.c (c6x_rtx_costs): Update use of
8951 GET_MODE_2XWIDER_MODE, forcing a wider mode to exist.
8952 * lower-subreg.c (init_lower_subreg): Likewise.
8953 * optabs-libfuncs.c (init_sync_libfuncs_1): Likewise, but not
8954 on the final iteration.
8955 * config/i386/i386.c (ix86_expand_set_or_movmem): Check whether
8956 a wider mode exists before asking for a move pattern.
8957 (get_mode_wider_vector): Update use of GET_MODE_WIDER_MODE,
8958 forcing a wider mode to exist.
8959 (expand_vselect_vconcat): Update use of GET_MODE_2XWIDER_MODE,
8960 returning false if no such mode exists.
8961 * config/ia64/ia64.c (expand_vselect_vconcat): Likewise.
8962 * config/mips/mips.c (mips_expand_vselect_vconcat): Likewise.
8963 * expmed.c (init_expmed_one_mode): Update use of GET_MODE_WIDER_MODE.
8964 Avoid checking for a MODE_INT if we already know the mode is not a
8966 (extract_high_half): Update use of GET_MODE_WIDER_MODE,
8967 forcing a wider mode to exist.
8968 (expmed_mult_highpart_optab): Likewise.
8969 (expmed_mult_highpart): Likewise.
8970 * expr.c (expand_expr_real_2): Update use of GET_MODE_WIDER_MODE,
8972 * lto-streamer-in.c (lto_input_mode_table): Likewise.
8973 * optabs-query.c (find_widening_optab_handler_and_mode): Likewise.
8974 * stor-layout.c (bit_field_mode_iterator::next_mode): Likewise.
8975 * internal-fn.c (expand_mul_overflow): Update use of
8976 GET_MODE_2XWIDER_MODE.
8977 * omp-low.c (omp_clause_aligned_alignment): Likewise.
8978 * tree-ssa-math-opts.c (convert_mult_to_widen): Update use of
8979 GET_MODE_WIDER_MODE.
8980 (convert_plusminus_to_widen): Likewise.
8981 * tree-switch-conversion.c (array_value_type): Likewise.
8982 * var-tracking.c (emit_note_insn_var_location): Likewise.
8983 * tree-vrp.c (simplify_float_conversion_using_ranges): Likewise.
8984 Return false inside rather than outside the loop if no wider mode
8986 * optabs.c (expand_binop): Update use of GET_MODE_WIDER_MODE
8987 and GET_MODE_2XWIDER_MODE
8988 (can_compare_p): Use else_void.
8989 * gdbhooks.py (OptMachineModePrinter): New class.
8990 (build_pretty_printer): Use it for opt_mode.
8992 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
8993 Alan Hayward <alan.hayward@arm.com>
8994 David Sherwood <david.sherwood@arm.com>
8996 * tree-switch-conversion.c (array_value_type): Only read TYPE_MODE
8997 once. Use get_narrowest_mode instead of GET_CLASS_NARROWEST_MODE.
8999 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
9000 Alan Hayward <alan.hayward@arm.com>
9001 David Sherwood <david.sherwood@arm.com>
9003 * machmode.h (mode_traits): New structure.
9004 (get_narrowest_mode): New function.
9005 (mode_iterator::start): Likewise.
9006 (mode_iterator::iterate_p): Likewise.
9007 (mode_iterator::get_wider): Likewise.
9008 (mode_iterator::get_known_wider): Likewise.
9009 (mode_iterator::get_2xwider): Likewise.
9010 (FOR_EACH_MODE_IN_CLASS): New mode iterator.
9011 (FOR_EACH_MODE): Likewise.
9012 (FOR_EACH_MODE_FROM): Likewise.
9013 (FOR_EACH_MODE_UNTIL): Likewise.
9014 (FOR_EACH_WIDER_MODE): Likewise.
9015 (FOR_EACH_2XWIDER_MODE): Likewise.
9016 * builtins.c (expand_builtin_strlen): Use new mode iterators.
9017 * combine.c (simplify_comparison): Likewise
9018 * config/i386/i386.c (type_natural_mode): Likewise.
9019 * cse.c (cse_insn): Likewise.
9020 * dse.c (find_shift_sequence): Likewise.
9021 * emit-rtl.c (init_derived_machine_modes): Likewise.
9022 (init_emit_once): Likewise.
9023 * explow.c (hard_function_value): Likewise.
9024 * expmed.c (extract_fixed_bit_field_1): Likewise.
9025 (extract_bit_field_1): Likewise.
9026 (expand_divmod): Likewise.
9027 (emit_store_flag_1): Likewise.
9028 * expr.c (init_expr_target): Likewise.
9029 (convert_move): Likewise.
9030 (alignment_for_piecewise_move): Likewise.
9031 (widest_int_mode_for_size): Likewise.
9032 (emit_block_move_via_movmem): Likewise.
9033 (copy_blkmode_to_reg): Likewise.
9034 (set_storage_via_setmem): Likewise.
9035 (compress_float_constant): Likewise.
9036 * omp-low.c (omp_clause_aligned_alignment): Likewise.
9037 * optabs-query.c (get_best_extraction_insn): Likewise.
9038 * optabs.c (expand_binop): Likewise.
9039 (expand_twoval_unop): Likewise.
9040 (expand_twoval_binop): Likewise.
9041 (widen_leading): Likewise.
9042 (widen_bswap): Likewise.
9043 (expand_parity): Likewise.
9044 (expand_unop): Likewise.
9045 (prepare_cmp_insn): Likewise.
9046 (prepare_float_lib_cmp): Likewise.
9047 (expand_float): Likewise.
9048 (expand_fix): Likewise.
9049 (expand_sfix_optab): Likewise.
9050 * postreload.c (move2add_use_add2_insn): Likewise.
9051 * reg-stack.c (reg_to_stack): Likewise.
9052 * reginfo.c (choose_hard_reg_mode): Likewise.
9053 * rtlanal.c (init_num_sign_bit_copies_in_rep): Likewise.
9054 * stor-layout.c (mode_for_size): Likewise.
9055 (smallest_mode_for_size): Likewise.
9056 (mode_for_vector): Likewise.
9057 (finish_bitfield_representative): Likewise.
9058 * tree-ssa-math-opts.c (target_supports_divmod_p): Likewise.
9059 * tree-vect-generic.c (type_for_widest_vector_mode): Likewise.
9060 * tree-vect-stmts.c (vectorizable_conversion): Likewise.
9061 * var-tracking.c (prepare_call_arguments): Likewise.
9063 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
9064 Alan Hayward <alan.hayward@arm.com>
9065 David Sherwood <david.sherwood@arm.com>
9067 * genconditions.c (write_header): Add a "#define USE_ENUM_MODES".
9068 * genmodes.c (emit_insn_modes_h): Define FOOmode to E_FOOmode if
9069 USE_ENUM_MODES is defined and to ((void) 0, E_FOOmode) otherwise.
9070 * machmode.h (mode_size): Move earlier in file.
9071 (mode_precision): Likewise.
9072 (mode_inner): Likewise.
9073 (mode_nunits): Likewise.
9074 (mode_unit_size): Likewise.
9075 (unit_unit_precision): Likewise.
9076 (mode_wider): Likewise.
9077 (mode_2xwider): Likewise.
9078 (machine_mode): New class.
9079 (mode_to_bytes): New function.
9080 (mode_to_bits): Likewise.
9081 (mode_to_precision): Likewise.
9082 (mode_to_inner): Likewise.
9083 (mode_to_unit_size): Likewise.
9084 (mode_to_unit_precision): Likewise.
9085 (mode_to_nunits): Likewise.
9086 (GET_MODE_SIZE): Use mode_to_bytes.
9087 (GET_MODE_BITSIZE): Use mode_to_bits.
9088 (GET_MODE_PRECISION): Use mode_to_precision.
9089 (GET_MODE_INNER): Use mode_to_inner.
9090 (GET_MODE_UNIT_SIZE): Use mode_to_unit_size.
9091 (GET_MODE_UNIT_PRECISION): Use mode_to_unit_precision.
9092 (GET_MODE_NUNITS): Use mode_to_nunits.
9093 * system.h (ALWAYS_INLINE): New macro.
9094 * config/powerpcspe/powerpcspe-c.c
9095 (altivec_resolve_overloaded_builtin): Use machine_mode instead of
9096 int for arg1_mode and arg2_mode.
9098 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
9099 Alan Hayward <alan.hayward@arm.com>
9100 David Sherwood <david.sherwood@arm.com>
9102 * config/aarch64/aarch64-builtins.c (aarch64_simd_builtin_std_type):
9103 Prefix mode names with E_ in case statements.
9104 * config/aarch64/aarch64-elf.h (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
9105 * config/aarch64/aarch64.c (aarch64_split_simd_combine): Likewise.
9106 (aarch64_split_simd_move): Likewise.
9107 (aarch64_gen_storewb_pair): Likewise.
9108 (aarch64_gen_loadwb_pair): Likewise.
9109 (aarch64_gen_store_pair): Likewise.
9110 (aarch64_gen_load_pair): Likewise.
9111 (aarch64_get_condition_code_1): Likewise.
9112 (aarch64_constant_pool_reload_icode): Likewise.
9113 (get_rsqrte_type): Likewise.
9114 (get_rsqrts_type): Likewise.
9115 (get_recpe_type): Likewise.
9116 (get_recps_type): Likewise.
9117 (aarch64_gimplify_va_arg_expr): Likewise.
9118 (aarch64_simd_container_mode): Likewise.
9119 (aarch64_emit_load_exclusive): Likewise.
9120 (aarch64_emit_store_exclusive): Likewise.
9121 (aarch64_expand_compare_and_swap): Likewise.
9122 (aarch64_gen_atomic_cas): Likewise.
9123 (aarch64_emit_bic): Likewise.
9124 (aarch64_emit_atomic_swap): Likewise.
9125 (aarch64_emit_atomic_load_op): Likewise.
9126 (aarch64_evpc_trn): Likewise.
9127 (aarch64_evpc_uzp): Likewise.
9128 (aarch64_evpc_zip): Likewise.
9129 (aarch64_evpc_ext): Likewise.
9130 (aarch64_evpc_rev): Likewise.
9131 (aarch64_evpc_dup): Likewise.
9132 (aarch64_gen_ccmp_first): Likewise.
9133 (aarch64_gen_ccmp_next): Likewise.
9134 * config/alpha/alpha.c (alpha_scalar_mode_supported_p): Likewise.
9135 (alpha_emit_xfloating_libcall): Likewise.
9136 (emit_insxl): Likewise.
9137 (alpha_arg_type): Likewise.
9138 * config/arc/arc.c (arc_vector_mode_supported_p): Likewise.
9139 (arc_preferred_simd_mode): Likewise.
9140 (arc_secondary_reload): Likewise.
9141 (get_arc_condition_code): Likewise.
9142 (arc_print_operand): Likewise.
9143 (arc_legitimate_constant_p): Likewise.
9144 * config/arc/arc.h (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
9145 * config/arc/arc.md (casesi_load): Likewise.
9146 (casesi_compact_jump): Likewise.
9147 * config/arc/predicates.md (proper_comparison_operator): Likewise.
9148 (cc_use_register): Likewise.
9149 * config/arm/aout.h (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
9150 * config/arm/arm-builtins.c (arm_simd_builtin_std_type): Likewise.
9151 (arm_init_iwmmxt_builtins): Likewise.
9152 * config/arm/arm.c (thumb1_size_rtx_costs): Likewise.
9153 (neon_expand_vector_init): Likewise.
9154 (arm_attr_length_move_neon): Likewise.
9155 (maybe_get_arm_condition_code): Likewise.
9156 (arm_emit_vector_const): Likewise.
9157 (arm_preferred_simd_mode): Likewise.
9158 (arm_output_iwmmxt_tinsr): Likewise.
9159 (thumb1_output_casesi): Likewise.
9160 (thumb2_output_casesi): Likewise.
9161 (arm_emit_load_exclusive): Likewise.
9162 (arm_emit_store_exclusive): Likewise.
9163 (arm_expand_compare_and_swap): Likewise.
9164 (arm_evpc_neon_vuzp): Likewise.
9165 (arm_evpc_neon_vzip): Likewise.
9166 (arm_evpc_neon_vrev): Likewise.
9167 (arm_evpc_neon_vtrn): Likewise.
9168 (arm_evpc_neon_vext): Likewise.
9169 (arm_validize_comparison): Likewise.
9170 * config/arm/neon.md (neon_vc<cmp_op><mode>): Likewise.
9171 * config/avr/avr-c.c (avr_resolve_overloaded_builtin): Likewise.
9172 * config/avr/avr.c (avr_rtx_costs_1): Likewise.
9173 * config/c6x/c6x.c (c6x_vector_mode_supported_p): Likewise.
9174 (c6x_preferred_simd_mode): Likewise.
9175 * config/epiphany/epiphany.c (get_epiphany_condition_code): Likewise.
9176 (epiphany_rtx_costs): Likewise.
9177 * config/epiphany/predicates.md (proper_comparison_operator):
9179 * config/frv/frv.c (condexec_memory_operand): Likewise.
9180 (frv_emit_move): Likewise.
9181 (output_move_single): Likewise.
9182 (output_condmove_single): Likewise.
9183 (frv_hard_regno_mode_ok): Likewise.
9184 (frv_matching_accg_mode): Likewise.
9185 * config/h8300/h8300.c (split_adds_subs): Likewise.
9186 (h8300_rtx_costs): Likewise.
9187 (h8300_print_operand): Likewise.
9188 (compute_mov_length): Likewise.
9189 (output_logical_op): Likewise.
9190 (compute_logical_op_length): Likewise.
9191 (compute_logical_op_cc): Likewise.
9192 (h8300_shift_needs_scratch_p): Likewise.
9193 (output_a_shift): Likewise.
9194 (compute_a_shift_length): Likewise.
9195 (compute_a_shift_cc): Likewise.
9196 (expand_a_rotate): Likewise.
9197 (output_a_rotate): Likewise.
9198 * config/i386/i386.c (classify_argument): Likewise.
9199 (function_arg_advance_32): Likewise.
9200 (function_arg_32): Likewise.
9201 (function_arg_64): Likewise.
9202 (function_value_64): Likewise.
9203 (ix86_gimplify_va_arg): Likewise.
9204 (ix86_legitimate_constant_p): Likewise.
9205 (put_condition_code): Likewise.
9206 (split_double_mode): Likewise.
9207 (ix86_avx256_split_vector_move_misalign): Likewise.
9208 (ix86_expand_vector_logical_operator): Likewise.
9209 (ix86_split_idivmod): Likewise.
9210 (ix86_expand_adjust_ufix_to_sfix_si): Likewise.
9211 (ix86_build_const_vector): Likewise.
9212 (ix86_build_signbit_mask): Likewise.
9213 (ix86_match_ccmode): Likewise.
9214 (ix86_cc_modes_compatible): Likewise.
9215 (ix86_expand_branch): Likewise.
9216 (ix86_expand_sse_cmp): Likewise.
9217 (ix86_expand_sse_movcc): Likewise.
9218 (ix86_expand_int_sse_cmp): Likewise.
9219 (ix86_expand_vec_perm_vpermi2): Likewise.
9220 (ix86_expand_vec_perm): Likewise.
9221 (ix86_expand_sse_unpack): Likewise.
9222 (ix86_expand_int_addcc): Likewise.
9223 (ix86_split_to_parts): Likewise.
9224 (ix86_vectorize_builtin_gather): Likewise.
9225 (ix86_vectorize_builtin_scatter): Likewise.
9226 (avx_vpermilp_parallel): Likewise.
9227 (inline_memory_move_cost): Likewise.
9228 (ix86_tieable_integer_mode_p): Likewise.
9229 (x86_maybe_negate_const_int): Likewise.
9230 (ix86_expand_vector_init_duplicate): Likewise.
9231 (ix86_expand_vector_init_one_nonzero): Likewise.
9232 (ix86_expand_vector_init_one_var): Likewise.
9233 (ix86_expand_vector_init_concat): Likewise.
9234 (ix86_expand_vector_init_interleave): Likewise.
9235 (ix86_expand_vector_init_general): Likewise.
9236 (ix86_expand_vector_set): Likewise.
9237 (ix86_expand_vector_extract): Likewise.
9238 (emit_reduc_half): Likewise.
9239 (ix86_emit_i387_round): Likewise.
9240 (ix86_mangle_type): Likewise.
9241 (ix86_expand_round_sse4): Likewise.
9242 (expand_vec_perm_blend): Likewise.
9243 (canonicalize_vector_int_perm): Likewise.
9244 (ix86_expand_vec_one_operand_perm_avx512): Likewise.
9245 (expand_vec_perm_1): Likewise.
9246 (expand_vec_perm_interleave3): Likewise.
9247 (expand_vec_perm_even_odd_pack): Likewise.
9248 (expand_vec_perm_even_odd_1): Likewise.
9249 (expand_vec_perm_broadcast_1): Likewise.
9250 (ix86_vectorize_vec_perm_const_ok): Likewise.
9251 (ix86_expand_vecop_qihi): Likewise.
9252 (ix86_expand_mul_widen_hilo): Likewise.
9253 (ix86_expand_sse2_abs): Likewise.
9254 (ix86_expand_pextr): Likewise.
9255 (ix86_expand_pinsr): Likewise.
9256 (ix86_preferred_simd_mode): Likewise.
9257 (ix86_simd_clone_compute_vecsize_and_simdlen): Likewise.
9258 * config/i386/sse.md (*andnot<mode>3): Likewise.
9259 (<mask_codefor><code><mode>3<mask_name>): Likewise.
9260 (*<code><mode>3): Likewise.
9261 * config/ia64/ia64.c (ia64_expand_vecint_compare): Likewise.
9262 (ia64_expand_atomic_op): Likewise.
9263 (ia64_arg_type): Likewise.
9264 (ia64_mode_to_int): Likewise.
9265 (ia64_scalar_mode_supported_p): Likewise.
9266 (ia64_vector_mode_supported_p): Likewise.
9267 (expand_vec_perm_broadcast): Likewise.
9268 * config/iq2000/iq2000.c (iq2000_move_1word): Likewise.
9269 (iq2000_function_arg_advance): Likewise.
9270 (iq2000_function_arg): Likewise.
9271 * config/m32c/m32c.c (m32c_preferred_reload_class): Likewise.
9272 * config/m68k/m68k.c (output_dbcc_and_branch): Likewise.
9273 (m68k_libcall_value): Likewise.
9274 (m68k_function_value): Likewise.
9275 (sched_attr_op_type): Likewise.
9276 * config/mcore/mcore.c (mcore_output_move): Likewise.
9277 * config/microblaze/microblaze.c (microblaze_function_arg_advance):
9279 (microblaze_function_arg): Likewise.
9280 * config/mips/mips.c (mips16_build_call_stub): Likewise.
9281 (mips_print_operand): Likewise.
9282 (mips_mode_ok_for_mov_fmt_p): Likewise.
9283 (mips_vector_mode_supported_p): Likewise.
9284 (mips_preferred_simd_mode): Likewise.
9285 (mips_expand_vpc_loongson_even_odd): Likewise.
9286 (mips_expand_vec_unpack): Likewise.
9287 (mips_expand_vi_broadcast): Likewise.
9288 (mips_expand_vector_init): Likewise.
9289 (mips_expand_vec_reduc): Likewise.
9290 (mips_expand_msa_cmp): Likewise.
9291 * config/mips/mips.md (casesi_internal_mips16_<mode>): Likewise.
9292 * config/mn10300/mn10300.c (mn10300_print_operand): Likewise.
9293 (cc_flags_for_mode): Likewise.
9294 * config/msp430/msp430.c (msp430_print_operand): Likewise.
9295 * config/nds32/nds32-md-auxiliary.c (nds32_mem_format): Likewise.
9296 (nds32_output_casesi_pc_relative): Likewise.
9297 * config/nds32/nds32.h (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
9298 * config/nvptx/nvptx.c (nvptx_ptx_type_from_mode): Likewise.
9299 (nvptx_gen_unpack): Likewise.
9300 (nvptx_gen_pack): Likewise.
9301 (nvptx_gen_shuffle): Likewise.
9302 (nvptx_gen_wcast): Likewise.
9303 (nvptx_preferred_simd_mode): Likewise.
9304 * config/pa/pa.c (pa_secondary_reload): Likewise.
9305 * config/pa/predicates.md (base14_operand): Likewise.
9306 * config/powerpcspe/powerpcspe-c.c
9307 (altivec_resolve_overloaded_builtin): Likewise.
9308 * config/powerpcspe/powerpcspe.c (rs6000_setup_reg_addr_masks):
9310 (rs6000_preferred_simd_mode): Likewise.
9311 (output_vec_const_move): Likewise.
9312 (rs6000_expand_vector_extract): Likewise.
9313 (rs6000_split_vec_extract_var): Likewise.
9314 (reg_offset_addressing_ok_p): Likewise.
9315 (rs6000_legitimate_offset_address_p): Likewise.
9316 (rs6000_legitimize_address): Likewise.
9317 (rs6000_emit_set_const): Likewise.
9318 (rs6000_const_vec): Likewise.
9319 (rs6000_emit_move): Likewise.
9320 (spe_build_register_parallel): Likewise.
9321 (rs6000_darwin64_record_arg_recurse): Likewise.
9322 (swap_selector_for_mode): Likewise.
9323 (spe_init_builtins): Likewise.
9324 (paired_init_builtins): Likewise.
9325 (altivec_init_builtins): Likewise.
9326 (do_load_for_compare): Likewise.
9327 (rs6000_generate_compare): Likewise.
9328 (rs6000_expand_float128_convert): Likewise.
9329 (emit_load_locked): Likewise.
9330 (emit_store_conditional): Likewise.
9331 (rs6000_output_function_epilogue): Likewise.
9332 (rs6000_handle_altivec_attribute): Likewise.
9333 (rs6000_function_value): Likewise.
9334 (emit_fusion_gpr_load): Likewise.
9335 (emit_fusion_p9_load): Likewise.
9336 (emit_fusion_p9_store): Likewise.
9337 * config/powerpcspe/predicates.md (easy_fp_constant): Likewise.
9338 (fusion_gpr_mem_load): Likewise.
9339 (fusion_addis_mem_combo_load): Likewise.
9340 (fusion_addis_mem_combo_store): Likewise.
9341 * config/rs6000/predicates.md (easy_fp_constant): Likewise.
9342 (fusion_gpr_mem_load): Likewise.
9343 (fusion_addis_mem_combo_load): Likewise.
9344 (fusion_addis_mem_combo_store): Likewise.
9345 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
9347 * config/rs6000/rs6000-string.c (do_load_for_compare): Likewise.
9348 * config/rs6000/rs6000.c (rs6000_setup_reg_addr_masks): Likewise.
9349 (rs6000_preferred_simd_mode): Likewise.
9350 (output_vec_const_move): Likewise.
9351 (rs6000_expand_vector_extract): Likewise.
9352 (rs6000_split_vec_extract_var): Likewise.
9353 (reg_offset_addressing_ok_p): Likewise.
9354 (rs6000_legitimate_offset_address_p): Likewise.
9355 (rs6000_legitimize_address): Likewise.
9356 (rs6000_emit_set_const): Likewise.
9357 (rs6000_const_vec): Likewise.
9358 (rs6000_emit_move): Likewise.
9359 (rs6000_darwin64_record_arg_recurse): Likewise.
9360 (swap_selector_for_mode): Likewise.
9361 (paired_init_builtins): Likewise.
9362 (altivec_init_builtins): Likewise.
9363 (rs6000_expand_float128_convert): Likewise.
9364 (emit_load_locked): Likewise.
9365 (emit_store_conditional): Likewise.
9366 (rs6000_output_function_epilogue): Likewise.
9367 (rs6000_handle_altivec_attribute): Likewise.
9368 (rs6000_function_value): Likewise.
9369 (emit_fusion_gpr_load): Likewise.
9370 (emit_fusion_p9_load): Likewise.
9371 (emit_fusion_p9_store): Likewise.
9372 * config/rx/rx.c (rx_gen_move_template): Likewise.
9373 (flags_from_mode): Likewise.
9374 * config/s390/predicates.md (s390_alc_comparison): Likewise.
9375 (s390_slb_comparison): Likewise.
9376 * config/s390/s390.c (s390_handle_vectorbool_attribute): Likewise.
9377 (s390_vector_mode_supported_p): Likewise.
9378 (s390_cc_modes_compatible): Likewise.
9379 (s390_match_ccmode_set): Likewise.
9380 (s390_canonicalize_comparison): Likewise.
9381 (s390_emit_compare_and_swap): Likewise.
9382 (s390_branch_condition_mask): Likewise.
9383 (s390_rtx_costs): Likewise.
9384 (s390_secondary_reload): Likewise.
9385 (__SECONDARY_RELOAD_CASE): Likewise.
9386 (s390_expand_cs): Likewise.
9387 (s390_preferred_simd_mode): Likewise.
9388 * config/s390/vx-builtins.md (vec_packsu_u<mode>): Likewise.
9389 * config/sh/sh.c (sh_print_operand): Likewise.
9390 (dump_table): Likewise.
9391 (sh_secondary_reload): Likewise.
9392 * config/sh/sh.h (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
9393 * config/sh/sh.md (casesi_worker_1): Likewise.
9394 (casesi_worker_2): Likewise.
9395 * config/sparc/predicates.md (icc_comparison_operator): Likewise.
9396 (fcc_comparison_operator): Likewise.
9397 * config/sparc/sparc.c (sparc_expand_move): Likewise.
9398 (emit_soft_tfmode_cvt): Likewise.
9399 (sparc_preferred_simd_mode): Likewise.
9400 (output_cbranch): Likewise.
9401 (sparc_print_operand): Likewise.
9402 (sparc_expand_vec_perm_bmask): Likewise.
9403 (vector_init_bshuffle): Likewise.
9404 * config/spu/spu.c (spu_scalar_mode_supported_p): Likewise.
9405 (spu_vector_mode_supported_p): Likewise.
9406 (spu_expand_insv): Likewise.
9407 (spu_emit_branch_or_set): Likewise.
9408 (spu_handle_vector_attribute): Likewise.
9409 (spu_builtin_splats): Likewise.
9410 (spu_builtin_extract): Likewise.
9411 (spu_builtin_promote): Likewise.
9412 (spu_expand_sign_extend): Likewise.
9413 * config/tilegx/tilegx.c (tilegx_scalar_mode_supported_p): Likewise.
9414 (tilegx_simd_int): Likewise.
9415 * config/tilepro/tilepro.c (tilepro_scalar_mode_supported_p): Likewise.
9416 (tilepro_simd_int): Likewise.
9417 * config/v850/v850.c (const_double_split): Likewise.
9418 (v850_print_operand): Likewise.
9419 (ep_memory_offset): Likewise.
9420 * config/vax/vax.c (vax_rtx_costs): Likewise.
9421 (vax_output_int_move): Likewise.
9422 (vax_output_int_add): Likewise.
9423 (vax_output_int_subtract): Likewise.
9424 * config/visium/predicates.md (visium_branch_operator): Likewise.
9425 * config/visium/visium.c (rtx_ok_for_offset_p): Likewise.
9426 (visium_print_operand_address): Likewise.
9427 * config/visium/visium.h (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
9428 * config/xtensa/xtensa.c (xtensa_mem_offset): Likewise.
9429 (xtensa_expand_conditional_branch): Likewise.
9430 (xtensa_copy_incoming_a7): Likewise.
9431 (xtensa_output_literal): Likewise.
9432 * dfp.c (decimal_real_maxval): Likewise.
9433 * targhooks.c (default_libgcc_floating_mode_supported_p): Likewise.
9435 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
9436 Alan Hayward <alan.hayward@arm.com>
9437 David Sherwood <david.sherwood@arm.com>
9439 * genmodes.c (mode_size_inline): Add an E_ prefix to mode names.
9440 (mode_nunits_inline): Likewise.
9441 (mode_inner_inline): Likewise.
9442 (mode_unit_size_inline): Likewise.
9443 (mode_unit_precision_inline): Likewise.
9444 (emit_insn_modes_h): Likewise. Also emit a #define of the
9446 (emit_mode_wider): Add an E_ prefix to mode names.
9447 (emit_mode_complex): Likewise.
9448 (emit_mode_inner): Likewise.
9449 (emit_mode_adjustments): Likewise.
9450 (emit_mode_int_n): Likewise.
9451 * config/aarch64/aarch64-builtins.c (v8qi_UP, v4hi_UP, v4hf_UP)
9452 (v2si_UP, v2sf_UP, v1df_UP, di_UP, df_UP, v16qi_UP, v8hi_UP, v8hf_UP)
9453 (v4si_UP, v4sf_UP, v2di_UP, v2df_UP, ti_UP, oi_UP, ci_UP, xi_UP)
9454 (si_UP, sf_UP, hi_UP, hf_UP, qi_UP): Likewise.
9455 (CRC32_BUILTIN, ENTRY): Likewise.
9456 * config/aarch64/aarch64.c (aarch64_push_regs): Likewise.
9457 (aarch64_pop_regs): Likewise.
9458 (aarch64_process_components): Likewise.
9459 * config/alpha/alpha.c (alpha_emit_conditional_move): Likewise.
9460 * config/arm/arm-builtins.c (v8qi_UP, v4hi_UP, v4hf_UP, v2si_UP)
9461 (v2sf_UP, di_UP, v16qi_UP, v8hi_UP, v8hf_UP, v4si_UP, v4sf_UP)
9462 (v2di_UP, ti_UP, ei_UP, oi_UP, hf_UP, si_UP, void_UP): Likewise.
9463 * config/arm/arm.c (arm_init_libfuncs): Likewise.
9464 * config/i386/i386-builtin-types.awk (ix86_builtin_type_vect_mode):
9466 * config/i386/i386-builtin.def (pcmpestr): Likewise.
9467 (pcmpistr): Likewise.
9468 * config/microblaze/microblaze.c (double_memory_operand): Likewise.
9469 * config/mmix/mmix.c (mmix_output_condition): Likewise.
9470 * config/powerpcspe/powerpcspe.c (rs6000_init_hard_regno_mode_ok):
9472 * config/rl78/rl78.c (mduc_regs): Likewise.
9473 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Likewise.
9474 (htm_expand_builtin): Likewise.
9475 * config/sh/sh.h (REGISTER_NATURAL_MODE): Likewise.
9476 * config/sparc/sparc.c (emit_save_or_restore_regs): Likewise.
9477 * config/xtensa/xtensa.c (print_operand): Likewise.
9478 * expmed.h (NUM_MODE_PARTIAL_INT): Likewise.
9479 (NUM_MODE_VECTOR_INT): Likewise.
9480 * genoutput.c (null_operand): Likewise.
9481 (output_operand_data): Likewise.
9482 * genrecog.c (print_parameter_value): Likewise.
9483 * lra.c (debug_operand_data): Likewise.
9485 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
9487 * dwarf2out.c (scompare_loc_descriptor_wide)
9488 (scompare_loc_descriptor_narrow): New functions, split out from...
9489 (scompare_loc_descriptor): ...here.
9490 * expmed.c (emit_store_flag_int): New function, split out from...
9491 (emit_store_flag): ...here.
9493 2017-08-30 Richard Biener <rguenther@suse.de>
9495 * dwarf2out.c (dwarf2out_finish): Remove setting AT_pubnames.
9496 (dwarf2out_early_finish): Move setting of AT_pubnames from
9497 early debug output to early finish.
9499 2017-08-30 Jozef Lawrynowicz <jozef.l@somniumtech.com>
9501 * gcc/config/msp430/msp430.h: Pass -mcode/data-region to the linker
9502 and -mdata-region to the assembler.
9504 2017-08-30 Richard Biener <rguenther@suse.de>
9506 * dwarf2out.c (add_dwarf_attr): Check we don't add duplicate
9508 (gen_subprogram_die): Add DW_AT_object_pointer only early.
9509 (dwarf2out_early_global_decl): Only generate a DIE for the
9510 abstract origin if it doesn't already exist or is a declaration DIE.
9511 (resolve_addr): Do not add the linkage name twice when
9512 generating a stub DIE for the DW_TAG_GNU_call_site target.
9514 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
9516 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
9517 Use machine_mode rather than int for arg1_mode.
9519 2017-08-29 Michael Meissner <meissner@linux.vnet.ibm.com>
9522 * config/rs6000/rs6000.c (rs6000_expand_binop_builtin): Insure
9523 that the second argument of the built-in functions to unpack
9524 128-bit scalar types to 64-bit values is 0 or 1. Change to use a
9525 switch statement instead a lot of if statements.
9526 * config/rs6000/rs6000.md (unpack<mode>, FMOVE128_VSX iterator):
9527 Allow 64-bit values to be in Altivec registers as well as
9528 traditional floating point registers.
9529 (pack<mode>, FMOVE128_VSX iterator): Likewise.
9531 2017-08-29 Alexander Monakov <amonakov@ispras.ru>
9533 * ira-costs.c (record_address_regs): Handle both operands of PLUS for
9534 MAX_REGS_PER_ADDRESS == 1.
9536 2017-08-29 Uros Bizjak <ubizjak@gmail.com>
9538 * config/i386/i386.opt (flag_fentry): Do not init to -1.
9539 * config/i386/i386.c (ix86_option_override_internal): Simplify
9540 setting of opts->x_flag_entry.
9542 2017-08-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9543 Jakub Jelinek <jakub@redhat.com>
9544 Richard Biener <rguenther@suse.de>
9546 PR tree-optimization/81503
9547 * gimple-ssa-strength-reduction.c (replace_mult_candidate): Ensure
9548 folded constant fits in the target type; reorder tests for clarity.
9550 2017-08-29 Martin Liska <mliska@suse.cz>
9552 * passes.def: Include pass_lower_switch.
9553 * stmt.c (dump_case_nodes): Remove and move to
9554 tree-switch-conversion.
9555 (case_values_threshold): Likewise.
9556 (expand_switch_as_decision_tree_p): Likewise.
9557 (emit_case_decision_tree): Likewise.
9558 (expand_case): Likewise.
9559 (balance_case_nodes): Likewise.
9560 (node_has_low_bound): Likewise.
9561 (node_has_high_bound): Likewise.
9562 (node_is_bounded): Likewise.
9563 (emit_case_nodes): Likewise.
9564 (struct simple_case_node): New struct.
9565 (add_case_node): Remove.
9566 (emit_case_dispatch_table): Use vector instead of case_list.
9567 (reset_out_edges_aux): Remove.
9568 (compute_cases_per_edge): Likewise.
9569 (expand_case): Build list of simple_case_node.
9570 (expand_sjlj_dispatch_table): Use it.
9571 * tree-switch-conversion.c (struct case_node): Moved from
9572 stmt.c and adjusted.
9573 (emit_case_nodes): Likewise.
9574 (node_has_low_bound): Likewise.
9575 (node_has_high_bound): Likewise.
9576 (node_is_bounded): Likewise.
9577 (case_values_threshold): Likewise.
9578 (reset_out_edges_aux): Likewise.
9579 (compute_cases_per_edge): Likewise.
9580 (add_case_node): Likewise.
9581 (dump_case_nodes): Likewise.
9582 (balance_case_nodes): Likewise.
9583 (expand_switch_as_decision_tree_p): Likewise.
9584 (emit_jump): Likewise.
9585 (emit_case_decision_tree): Likewise.
9586 (try_switch_expansion): Likewise.
9587 (do_jump_if_equal): Likewise.
9588 (emit_cmp_and_jump_insns): Likewise.
9589 (fix_phi_operands_for_edge): New function.
9590 (record_phi_operand_mapping): Likewise.
9591 (class pass_lower_switch): New pass.
9592 (pass_lower_switch::execute): New function.
9593 (make_pass_lower_switch): Likewise.
9594 (conditional_probability):
9595 * timevar.def: Add TV_TREE_SWITCH_LOWERING.
9596 * tree-pass.h: Add make_pass_lower_switch.
9598 2017-08-29 Jozef Lawrynowicz <jozef.l@somniumtech.com>
9601 * gcc/config/msp430/msp430.c (msp430_attr): Mark interrupt
9604 2017-08-29 Richard Biener <rguenther@suse.de>
9606 * dwarf2out.c (add_dwarf_attr): When checking is enabled verify
9607 we do not add a DW_AT_inline attribute twice.
9608 (gen_subprogram_die): Remove code setting DW_AT_inline on
9609 DECL_ABSTRACT_P nodes.
9611 2017-08-29 Richard Sandiford <richard.sandiford@linaro.org>
9613 * gimplify.c (gimplify_call_expr): Copy the nothrow flag to
9614 calls to internal functions.
9615 (gimplify_modify_expr): Likewise.
9616 * tree-call-cdce.c (use_internal_fn): Likewise.
9617 * tree-ssa-math-opts.c (pass_cse_reciprocals::execute): Likewise.
9618 (convert_to_divmod): Set the nothrow flag.
9619 * tree-if-conv.c (predicate_mem_writes): Likewise.
9620 * tree-vect-stmts.c (vectorizable_mask_load_store): Likewise.
9621 (vectorizable_call): Likewise.
9622 (vectorizable_store): Likewise.
9623 (vectorizable_load): Likewise.
9624 * tree-vect-patterns.c (vect_recog_pow_pattern): Likewise.
9625 (vect_recog_mask_conversion_pattern): Likewise.
9627 2017-08-29 Martin Liska <mliska@suse.cz>
9630 * gcc.c (driver_handle_option): Add new argument.
9631 * opts-common.c (handle_option): Pass
9632 target_option_override_hook.
9633 * opts-global.c (lang_handle_option): Add new option.
9634 (set_default_handlers): Add new argument.
9635 (decode_options): Likewise.
9636 * opts.c (target_handle_option): Likewise.
9637 (common_handle_option): Call target_option_override_hook.
9638 * opts.h (struct cl_option_handler_func): Add hook for
9639 target option override.
9640 (struct cl_option_handlers): Likewise.
9641 (set_default_handlers): Add new argument.
9642 (decode_options): Likewise.
9643 (common_handle_option): Likewise.
9644 (target_handle_option): Likewise.
9645 * toplev.c (toplev::main): Pass targetm.target_option.override
9648 2017-08-29 Richard Biener <rguenther@suse.de>
9649 Dominik Infuehr <dominik.infuehr@theobroma-systems.com>
9651 * tree-vect-slp.c (vect_bb_slp_scalar_cost): Properly confine
9652 life to the active subtree.
9654 2017-08-28 Jeff Law <law@redhat.com>
9656 * tree-ssa-dom.c (edge_info::record_simple_equiv): Call
9657 derive_equivalences.
9658 (derive_equivalences_from_bit_ior, record_temporary_equivalences):
9660 (edge_info::derive_equivalences): New private member function
9662 * tree-ssa-dom.c (class edge_info): Changed from a struct
9663 to a class. Add ctor/dtor, methods and data members.
9664 (edge_info::edge_info): Renamed from allocate_edge_info.
9665 Initialize additional members.
9666 (edge_info::~edge_info): New.
9667 (free_dom_edge_info): Delete the edge info.
9668 (record_edge_info): Use new class & associated member functions.
9669 Tighten forms for testing for edge equivalences.
9670 (record_temporary_equivalences): Iterate over the simple
9671 equivalences rather than assuming there's only one per edge.
9672 (cprop_into_successor_phis): Iterate over the simple
9673 equivalences rather than assuming there's only one per edge.
9674 (optimize_stmt): Use operand_equal_p rather than pointer
9675 equality for mini-DSE code.
9677 2017-08-28 Nathan Sidwell <nathan@acm.org>
9679 * gcc.c (execute): Fold SIGPIPE handling into switch
9680 statement. Adjust internal error message.
9682 2017-08-28 Richard Biener <rguenther@suse.de>
9685 * dwarf2out.c (gen_remaining_tmpl_value_param_die_attributes):
9686 Do nothing for removed DIEs.
9688 2017-08-28 Richard Biener <rguenther@suse.de>
9690 PR tree-optimization/81977
9691 * tree-ssa-sccvn.c (vn_reference_lookup_3): Fix look through
9694 2017-08-28 Alexander Monakov <amonakov@ispras.ru>
9697 * doc/md.texi (mem_thread_fence): Remove mention of mode. Rewrite.
9698 * optabs.c (expand_mem_thread_fence): Emit a compiler barrier when
9699 using targetm.gen_mem_thread_fence.
9701 2017-08-27 Uros Bizjak <ubizjak@gmail.com>
9704 * config/i386/i386.md (*<btsc><mode>): Change operand 2
9705 predicate to register_operand. Reorder operands.
9706 (*btr<mode>): Ditto.
9707 (*<btsc><mode>_mask): Change operand 3 predicate to register_operand.
9708 (*btr<mode>_mask): Ditto.
9710 2017-08-25 Steven Munroe <munroesj@gcc.gnu.org>
9712 * config.gcc (powerpc*-*-*): Add xmmintrin.h and mm_malloc.h.
9713 * config/rs6000/xmmintrin.h: New file.
9714 * config/rs6000/x86intrin.h [__ALTIVEC__]: Include xmmintrin.h.
9716 2017-08-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9719 * config/rs6000/rs6000-p8swap.c (find_alignment_op): Add reference
9720 parameter and_insn and return it.
9721 (recombine_lvx_pattern): Insert a copy to ensure availability of
9722 the base register of the copied masking operation at the point of
9723 the instruction replacement.
9724 (recombine_stvx_pattern): Likewise.
9726 2017-08-25 Michael Meissner <meissner@linux.vnet.ibm.com>
9728 * config/rs6000/rs6000.opt (-mpower9-dform-scalar): Delete
9729 undocumented switches.
9730 (-mpower9-dform-vector): Likewise.
9731 (-mpower9-dform): Likewise.
9732 * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Update
9733 comments to delete references to -mpower9-dform* switches.
9734 * config/rs6000/predicates.md (vsx_quad_dform_memory_operand):
9735 Delete reference to -mpower9-dform* switches, test for
9736 -mpower9-vector instead.
9737 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Likewise.
9738 (OTHER_P9_VECTOR_MASKS): Likewise.
9739 (POWERPC_MASKS): Likewise.
9740 * config/rs6000/rs6000.c (rs6000_setup_reg_addr_masks): Change
9741 tests against -mpower9-dform* to -mpower9-vector. Delete code
9742 that checked for -mpower9-dform* consistancy with other options.
9743 Add test for -mpower9-misc to enable other power9 switches.
9744 (rs6000_init_hard_regno_mode_ok): Likewise.
9745 (rs6000_option_override_internal): Likewise.
9746 (rs6000_emit_prologue): Likewise.
9747 (rs6000_emit_epilogue): Likewise.
9748 (rs6000_opt_masks): Delete -mpower9-dform-{scalar,vector}.
9749 (rs6000_disable_incompatiable_switches): Delete -mpower9-dform.
9750 (emit_fusion_p9_load): Change tests for -mpower9-dform-scalar
9752 (emit_fusion_p9_store): Likewise.
9753 * config/rs6000/rs6000.h (TARGET_P9_DFORM_SCALAR): Delete
9754 resetting these macros if the assembler does not support ISA 3.0
9756 (TARGET_P9_DFORM_VECTOR): Likewise.
9757 * config/rs6000/rs6000.md (peepholes to optimize altivec memory):
9758 Change to use -mpower9-vector instead of -mpower9-dform-scalar.
9760 2017-08-25 Alan Modra <amodra@gmail.com>
9762 PR rtl-optimization/81747
9763 * cse.c (cse_extended_basic_block): Don't attempt to record
9764 equivalences for degenerate conditional branches that branch
9765 to their fall-through.
9767 2017-08-24 Martin Sebor <msebor@redhat.com>
9770 * gimple-fold.c (size_must_be_zero_p): New function.
9771 (gimple_fold_builtin_memory_op): Call it.
9773 2017-08-24 Steven Munroe <munroesj@gcc.gnu.org>
9775 * config/rs6000/mm_malloc.h: New file.
9777 2017-08-24 Bin Cheng <bin.cheng@arm.com>
9779 PR tree-optimization/81913
9780 * tree-ssa-loop-niter.c (number_of_iterations_cond): Skip niter
9781 analysis when either IVs in condition can wrap.
9783 2017-08-24 Uros Bizjak <ubizjak@gmail.com>
9785 * dwarf2out.c (MAX_ARTIFICIAL_LABEL_BYTES): Increase to 40.
9786 * dwarf2cfi.c (MAX_ARTIFICIAL_LABEL_BYTES): Remove.
9788 2017-08-24 Richard Biener <rguenther@suse.de>
9791 * targhooks.c (default_target_can_inline_p): Properly
9792 use target_option_default_node when no DECL_FUNCTION_SPECIFIC_TARGET
9793 is present and always compare.
9794 * config/i386/i386.c (ix86_valid_target_attribute_tree): Do not
9795 infer -mfpmath=sse from TARGET_SSE_P.
9796 (ix86_can_inline_p): Properly use target_option_default_node when
9797 no DECL_FUNCTION_SPECIFIC_TARGET is present and always compare.
9799 2017-08-24 Richard Biener <rguenther@suse.de>
9802 * dwarf2out.c (output_die): Handle flag_generate_offload like
9804 (output_comp_unit): Likewise.
9805 (gen_array_type_die): Likewise.
9806 (dwarf2out_early_finish): Likewise.
9807 (note_variable_value_in_expr): Likewise.
9808 (dwarf2out_finish): Likewise. Adjust assert.
9809 * cgraphunit.c (symbol_table::compile): Move setting of
9810 flag_generate_offload earlier ...
9811 (symbol_table::finalize_compilation_unit): ... here, before
9812 early debug finalization.
9814 2017-08-24 Richard Biener <rguenther@suse.de>
9816 * config/i386/i386.c: Include symbol-summary.h, ipa-prop.h
9817 and ipa-fnsummary.h.
9818 (ix86_can_inline_p): When ix86_fpmath flags do not match
9819 check whether the callee uses FP math at all.
9821 2017-08-24 Aldy Hernandez <aldyh@redhat.com>
9824 * tree-ssanames.c (get_nonzero_bits): Use element_precision
9825 instead of TYPE_PRECISION.
9827 2017-08-24 Richard Sandiford <richard.sandiford@linaro.org>
9828 Alan Hayward <alan.hayward@arm.com>
9829 David Sherwood <david.sherwood@arm.com>
9831 * combine.c (make_extraction): Use subreg_offset_from_lsb.
9833 2017-08-23 Daniel Santos <daniel.santos@pobox.com>
9835 * config/i386/i386.h (ix86_frame::stack_realign_allocate_offset):
9837 (ix86_frame::stack_realign_allocate): New field.
9838 (struct machine_frame_state): Modify comments.
9839 (machine_frame_state::sp_realigned_fp_end): New field.
9840 * config/i386/i386.c (ix86_compute_frame_layout): Rework stack frame
9842 (sp_valid_at): Add assertion to assure no attempt to access invalid
9843 offset of a realigned stack.
9844 (fp_valid_at): Likewise.
9845 (choose_baseaddr): Modify comments.
9846 (ix86_emit_outlined_ms2sysv_save): Adjust to changes in
9847 ix86_expand_prologue.
9848 (ix86_expand_prologue): Modify stack realignment and allocation.
9849 (ix86_expand_epilogue): Modify comments.
9850 * doc/sourcebuild.texi: Add documentation for target selectors avx2,
9851 avx2_runtime, avx512f, and avx512f_runtime.
9853 2017-08-23 Uros Bizjak <ubizjak@gmail.com>
9855 * config/i386/i386.opt: Remove unneeded Init(0) initializations.
9856 (mstackrealign): Do not init to -1.
9857 * config/i386/i386.c (ix86_option_override_internal):
9858 Check opts_set, not opts when setting default value of
9859 opts->x_ix86_force_align_arg_pointer.
9861 2017-08-23 Richard Biener <rguenther@suse.de>
9863 * function.c (fndecl_name): Use verbosity 1 (no arguments) for
9864 lang_hooks.decl_printable_name.
9865 * print-rtl-function.c (print_rtx_function): Likewise.
9866 * tree-pretty-print.c (dump_function_header): Likewise.
9868 2017-08-23 Richard Biener <rguenther@suse.de>
9871 * dwarf2out.c (dwarf2out_abstract_function): Handle LTO with
9872 -g0 at compile-time.
9874 2017-08-23 Tamar Christina <tamar.christina@arm.com>
9877 * doc/sourcebuild.texi (Other hardware attributes):
9880 2017-08-23 Tamar Christina <tamar.christina@arm.com>
9883 * tree-ssa-math-opts.c (convert_expand_mult_copysign):
9884 Fix single-use check.
9886 2017-08-23 Thomas Preud'homme <thomas.preudhomme@arm.com>
9888 * gcc.c (execute): Only test for SIGKILL and SIGQUIT if available.
9890 2017-08-22 Daniel Santos <daniel.santos@pobox.com>
9892 * doc/install.texi: Modify to add more details on running selected
9895 2017-08-22 Daniel Santos <daniel.santos@pobox.com>
9897 * config/i386/i386.c (ix86_option_override_internal): Error when -mx32
9898 is combined with -mabi=ms.
9899 (ix86_function_type_abi): Limit errors for mixing -mx32 with attribute
9902 2017-08-22 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9904 PR tree-optimization/81488
9905 * gimple-ssa-strength-reduction (struct slsr_cand_d): Add visited
9906 and cached_basis fields.
9907 (MAX_SPREAD): New constant.
9908 (alloc_cand_and_find_basis): Initialize new fields.
9909 (clear_visited): New function.
9910 (create_phi_basis_1): Rename from create_phi_basis, set visited
9911 and cached_basis fields.
9912 (create_phi_basis): New wrapper function.
9913 (phi_add_costs_1): Rename from phi_add_costs, add spread
9914 parameter, set visited field, short-circuit when limits reached.
9915 (phi_add_costs): New wrapper function.
9916 (record_phi_increments_1): Rename from record_phi_increments, set
9918 (record_phi_increments): New wrapper function.
9919 (phi_incr_cost_1): Rename from phi_incr_cost, set visited field.
9920 (phi_incr_cost): New wrapper function.
9921 (all_phi_incrs_profitable_1): Rename from
9922 all_phi_incrs_profitable, set visited field.
9923 (all_phi_incrs_profitable): New wrapper function.
9925 2017-08-22 Richard Sandiford <richard.sandiford@linaro.org>
9926 Alan Hayward <alan.hayward@arm.com>
9927 David Sherwood <david.sherwood@arm.com>
9929 * rtl.h (paradoxical_subreg_p): Define inline, and add a version
9930 that takes the outer and inner modes.
9931 * doc/rtl.texi: Use paradoxical_subreg_p instead of a GET_MODE_SIZE
9932 comparison as the canonical test for a paradoxical subreg.
9933 * combine.c (simplify_set): Use paradoxical_subreg_p.
9934 (make_extraction): Likewise.
9935 (force_to_mode): Likewise.
9936 (rtx_equal_for_field_assignment_p): Likewise.
9937 (gen_lowpart_for_combine): Likewise.
9938 (simplify_comparison): Likewise.
9939 * cse.c (equiv_constant): Likewise.
9940 * expmed.c (store_bit_field_1): Likewise.
9941 * final.c (alter_subreg): Likewise.
9942 * fwprop.c (propagate_rtx): Likewise.
9943 (forward_propagate_subreg): Likewise.
9944 * ira-conflicts.c (ira_build_conflicts): Likewise.
9945 * lower-subreg.c (simplify_gen_subreg_concatn): Likewise.
9946 * lra-constraints.c (curr_insn_transform): Likewise.
9947 (split_reg): Likewise.
9948 * lra-eliminations.c (move_plus_up): Likewise.
9949 (lra_eliminate_regs_1): Likewise.
9950 * recog.c (general_operand): Likewise.
9951 * ree.c (combine_reaching_defs): Likewise.
9952 * reload.c (push_reload): Likewise.
9953 (find_reloads): Likewise.
9954 * reload1.c (elimination_effects): Likewise.
9955 (compute_reload_subreg_offset): Likewise.
9956 (choose_reload_regs): Likewise.
9957 * rtlanal.c (subreg_lsb_1): Likewise.
9958 * simplify-rtx.c (simplify_unary_operation_1): Likewise.
9959 (simplify_subreg): Likewise.
9960 * var-tracking.c (track_loc_p): Likewise.
9961 * emit-rtl.c (byte_lowpart_offset): Likewise.
9962 (paradoxical_subreg_p): Delete out-of-line definition.
9964 2017-08-22 Jeff Law <law@redhat.com>
9966 PR tree-optimization/81741
9967 PR tree-optimization/71947
9968 * tree-ssa-dom.c: Include tree-inline.h.
9969 (record_temporary_equivalences): Only record SSA_NAME = SSA_NAME
9970 equivalences if one is more expensive to compute than the other.
9971 * tree-ssa-scopedtables.h (class const_or_copies): Make
9972 record_const_or_copy_raw method private.
9973 (class avail_exprs_stack): New method simplify_binary_operation.
9974 * tree-ssa-scopedtables.c (avail_exprs_stack::lookup_avail_expr): Call
9975 avail_exprs_stack::simplify_binary_operation as needed.
9976 (avail_exprs_stack::simplify_binary_operation): New function.
9978 2017-08-22 Sebastian Huber <sebastian.huber@embedded-brains.de>
9980 * config.gcc (powerpc-*-rtems*): Add rs6000/linux64.opt.
9981 * config/rs6000/rtems.h (ASM_PREFERRED_EH_DATA_FORMAT): New define.
9982 (DOT_SYMBOLS): Likewise.
9983 (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
9984 (RELOCATABLE_NEEDS_FIXUP): Likewise.
9985 (RS6000_ABI_NAME): Likewise.
9986 (TARGET_CMODEL): Likewise.
9987 (TOC_SECTION_ASM_OP): Likewise.
9988 (SET_CMODEL): New macro.
9989 (SUBSUBTARGET_OVERRIDE_OPTIONS): Evaluate cmodel options.
9991 2017-08-22 Richard Biener <rguenther@suse.de>
9993 * tree-inline.c (remap_type_1): Change asserts on TYPE_SIZE[_UNIT]
9994 to allow for free-lang-data replacements similar to verify_type_variant.
9996 2017-08-22 Richard Sandiford <richard.sandiford@linaro.org>
9997 Alan Hayward <alan.hayward@arm.com>
9998 David Sherwood <david.sherwood@arm.com>
10000 * config/aarch64/aarch64.md (casesi): Use DImode rather than
10001 VOIDmode for the LABEL_REF.
10003 2017-08-22 Richard Biener <rguenther@suse.de>
10005 * tree-cfg.c (gimple_split_edge): Avoid reallocating target PHI nodes.
10007 2017-08-22 Richard Biener <rguenther@suse.de>
10009 * common.opt (feliminate-dwarf2-dups): Ignore.
10010 * doc/invoke.texi (feliminate-dwarf2-dups): Remove documentation.
10011 * dwarf2out.c (push_new_compile_unit, pop_compile_unit,
10012 same_die_p_wrap, compute_section_prefix,
10013 is_symbol_die, assign_symbol_names, break_out_includes): Remove.
10014 (comdat_symbol_id, comdat_symbol_number): Likewise.
10015 (cu_hash_table_entry, cu_hash_table_entry_hasher, cu_hash_type):
10017 (check_duplicate_cu, record_comdat_symbol_number): Likewise.
10018 (output_die): Mark unreachable path unreachable.
10019 (dwarf2out_start_source_file): Do not create DW_TAG_GNU_BINCL.
10020 (dwarf2out_end_source_file): Do not create DW_TAG_GNU_EINCL.
10021 (dwarf2out_init): Remove code handling flag_eliminate_dwarf2_dups.
10022 (dwarf2out_early_finish): Likewise.
10024 2017-08-22 Aldy Hernandez <aldyh@redhat.com>
10026 * wide-int.h (hwi_with_prec::hwi_with_prec): Sign extend.
10028 2017-08-22 Georg-Johann Lay <avr@gjlay.de>
10031 * config/avr/avr.c (avr_handle_addr_attribute): Early return if
10032 not VAR_P. Filter attribute warnings with OPT_Wattributes.
10033 (avr_attribute_table) <io, io_low, address>: Initialize
10034 .decl_required with true.
10036 2017-08-21 Michael Meissner <meissner@linux.vnet.ibm.com>
10038 * config/rs6000/rs6000-cpus.def (-mvsx-scalar-float): Delete
10039 undocumented debugging options.
10040 (-mvsx-scalar-double): Likewise.
10041 (-mallow-df-permute): Likewise.
10042 (-mvectorize-builtins): Likewise.
10043 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Likewise.
10044 (rs6000_builtin_vectorized_function): Likewise.
10045 (rs6000_builtin_md_vectorized_function): Likewise.
10046 (rs6000_opt_vars): Likewise.
10048 2017-08-21 Uros Bizjak <ubizjak@gmail.com>
10051 * config/i386/i386.md (*btsq_imm): Rename from *btsq.
10052 (*btrq_imm): Rename from *btrq.
10053 (*btcq_imm): Rename from *btcq.
10054 (btsc): New code attribute.
10055 (*<btsc><mode>): New insn pattern.
10056 (*btr<mode>): Ditto.
10057 (*<btsc><mode>_mask): New insn_and_split pattern.
10058 (*btr<mode>_mask): Ditto.
10060 2017-08-21 Richard Sandiford <richard.sandiford@linaro.org>
10061 Alan Hayward <alan.hayward@arm.com>
10062 David Sherwood <david.sherwood@arm.com>
10064 * function.c (pad_below): Simplify padding calculation.
10066 2017-08-21 Richard Sandiford <richard.sandiford@linaro.org>
10067 Alan Hayward <alan.hayward@arm.com>
10068 David Sherwood <david.sherwood@arm.com>
10070 * target.def (function_prologue): Remove frame size argument.
10071 (function_epilogue): Likewise.
10072 * doc/tm.texi: Regenerate.
10073 * final.c (final_start_function): Update call to function_prologue.
10074 (final_end_function): Update call to function_epilogue.
10075 (default_function_pro_epilogue): Remove frame size argument.
10076 * output.h (default_function_pro_epilogue): Likewise.
10077 * config/arm/arm.c (arm_output_function_epilogue): Likewise.
10078 (arm_output_function_prologue): Likewise.
10079 * config/frv/frv.c (frv_function_prologue): Likewise.
10080 (frv_function_epilogue): Likewise.
10081 * config/i386/i386.c (ix86_output_function_epilogue): Likewise.
10082 * config/ia64/ia64.c (ia64_output_function_prologue): Likewise.
10083 (ia64_output_function_epilogue): Likewise.
10084 * config/m32r/m32r.c (m32r_output_function_prologue): Likewise.
10085 (m32r_output_function_epilogue): Likewise.
10086 * config/microblaze/microblaze.c (microblaze_function_prologue)
10087 (microblaze_function_epilogue): Likewise.
10088 * config/mips/mips.c (mips_output_function_prologue): Likewise.
10089 (mips_output_function_epilogue): Likewise.
10090 * config/mmix/mmix.c (mmix_target_asm_function_prologue): Likewise.
10091 (mmix_target_asm_function_epilogue): Likewise.
10092 * config/msp430/msp430.c (msp430_start_function): Likewise.
10093 * config/nds32/nds32.c (nds32_asm_function_prologue): Likewise.
10094 (nds32_asm_function_epilogue): Likewise.
10095 * config/nios2/nios2.c (nios2_asm_function_prologue): Likewise.
10096 * config/pa/pa.c (pa_output_function_prologue): Likewise.
10097 (pa_output_function_epilogue): Likewise.
10098 * config/powerpcspe/powerpcspe.c (rs6000_output_function_prologue)
10099 (rs6000_output_function_epilogue): Likewise.
10100 * config/rl78/rl78.c (rl78_start_function): Likewise.
10101 * config/rs6000/rs6000.c (rs6000_output_function_prologue): Likewise.
10102 (rs6000_output_function_epilogue): Likewise.
10103 * config/rx/rx.c (rx_output_function_prologue): Likewise.
10104 * config/sh/sh.c (sh_output_function_epilogue): Likewise.
10105 * config/sparc/sparc.c (sparc_asm_function_prologue): Likewise.
10106 (sparc_asm_function_epilogue): Likewise.
10108 2017-08-21 Richard Sandiford <richard.sandiford@linaro.org>
10110 * tree.h (type_has_mode_precision_p): New function.
10111 * convert.c (convert_to_integer_1): Use it.
10112 * expr.c (expand_expr_real_2): Likewise.
10113 (expand_expr_real_1): Likewise.
10114 * fold-const.c (fold_single_bit_test_into_sign_test): Likewise.
10115 * match.pd: Likewise.
10116 * tree-ssa-forwprop.c (simplify_rotate): Likewise.
10117 * tree-ssa-math-opts.c (convert_mult_to_fma): Likewise.
10118 * tree-tailcall.c (process_assignment): Likewise.
10119 * tree-vect-loop.c (vectorizable_reduction): Likewise.
10120 * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern)
10121 (vect_recog_mult_pattern, vect_recog_divmod_pattern): Likewise.
10122 * tree-vect-stmts.c (vectorizable_conversion): Likewise.
10123 (vectorizable_assignment): Likewise.
10124 (vectorizable_shift): Likewise.
10125 (vectorizable_operation): Likewise.
10126 * tree-vrp.c (register_edge_assert_for_2): Likewise.
10128 2017-08-21 Wilco Dijkstra <wdijkstr@arm.com>
10130 * match.pd: Add pow (C, x) simplification.
10132 2017-08-21 Richard Biener <rguenther@suse.de>
10134 PR tree-optimization/81900
10135 * tree-ssa-pre.c (compute_antic_aux): Properly compute changed
10136 for blocks with abnormal predecessors.
10137 (compute_antic): Do not set visited flag prematurely.
10139 2017-08-21 Georg-Johann Lay <avr@gjlay.de>
10142 * config/avr/avr.c (avr_set_current_function): Typo in diagnostic.
10144 2017-08-21 Richard Sandiford <richard.sandiford@linaro.org>
10146 * stor-layout.h (vector_type_mode): Move to...
10147 * tree.h (vector_type_mode): ...here.
10148 * stor-layout.c (vector_type_mode): Move to...
10149 * tree.c (vector_type_mode): ...here. Include rtl.h and regs.h.
10151 2017-08-21 Richard Biener <rguenther@suse.de>
10153 * debug.h (struct gcc_debug_hooks): Add die_ref_for_decl and
10154 register_external_die hooks.
10155 (debug_false_tree_charstarstar_uhwistar): Declare.
10156 (debug_nothing_tree_charstar_uhwi): Likewise.
10157 * debug.c (do_nothing_debug_hooks): Adjust.
10158 (debug_false_tree_charstarstar_uhwistar): New do nothing.
10159 (debug_nothing_tree_charstar_uhwi): Likewise.
10160 * dbxout.c (dbx_debug_hooks): Adjust.
10161 (xcoff_debug_hooks): Likewise.
10162 * sdbout.c (sdb_debug_hooks): Likewise.
10163 * vmsdbgout.c (vmsdbg_debug_hooks): Likewise.
10164 * dwarf2out.c (macinfo_label_base): New global.
10165 (dwarf2out_register_external_die): New function for the
10166 register_external_die hook.
10167 (dwarf2out_die_ref_for_decl): Likewise for die_ref_for_decl.
10168 (dwarf2_debug_hooks): Use them.
10169 (dwarf2_lineno_debug_hooks): Adjust.
10170 (struct die_struct): Add with_offset flag.
10171 (DEBUG_LTO_DWO_INFO_SECTION, DEBUG_LTO_INFO_SECTION,
10172 DEBUG_LTO_DWO_ABBREV_SECTION, DEBUG_LTO_ABBREV_SECTION,
10173 DEBUG_LTO_DWO_MACINFO_SECTION, DEBUG_LTO_MACINFO_SECTION,
10174 DEBUG_LTO_DWO_MACRO_SECTION, DEBUG_LTO_MACRO_SECTION,
10175 DEBUG_LTO_LINE_SECTION, DEBUG_LTO_DWO_STR_OFFSETS_SECTION,
10176 DEBUG_LTO_STR_DWO_SECTION, DEBUG_STR_LTO_SECTION): New macros
10177 defining section names for the early LTO debug variants.
10178 (reset_indirect_string): New helper.
10179 (add_AT_external_die_ref): Helper for dwarf2out_register_external_die.
10180 (print_dw_val): Add support for offsetted symbol references.
10181 (get_ultimate_context): Split out from is_cxx.
10182 (is_cxx): Use get_ultimate_context.
10183 (is_fortran): Add decl overload.
10184 (compute_comp_unit_symbol): Split out worker from
10185 compute_section_prefix.
10186 (compute_section_prefix): Call compute_comp_unit_symbol and
10187 set comdat_type_p here.
10188 (output_die): Skip DIE symbol output for the LTO added one.
10189 Handle DIE symbol references with offset.
10190 (output_comp_unit): Guard section name mangling properly.
10191 For LTO debug sections emit a symbol at the section beginning
10192 which we use to refer to its DIEs.
10193 (add_abstract_origin_attribute): For DIEs registered via
10194 dwarf2out_register_external_die directly refer to the early
10195 DIE rather than indirectly through the shadow one we created.
10196 Remove obsolete call to dwarf2out_abstract_function for
10197 non-function/block origins.
10198 (gen_array_type_die): When generating early LTO debug do
10199 not emit DW_AT_string_length.
10200 (gen_formal_parameter_die): Do not re-create DIEs for PARM_DECLs
10201 late when in LTO. As suggested place a gcc_unreachable for
10202 the DECL_ABSTRACT_P case.
10203 (gen_subprogram_die): Avoid another specification DIE
10204 for early built declarations/definitions for the late LTO case.
10205 (gen_variable_die): Add type references for late duplicated VLA dies
10207 (gen_inlined_subroutine_die): Do not call dwarf2out_abstract_function,
10208 we have the abstract instance already.
10209 (process_scope_var): Adjust decl DIE contexts in LTO which
10210 first puts them in limbo.
10211 (gen_decl_die): Do not generate type DIEs late apart from
10212 types for VLAs or for decls we do not yet have a DIE. Do not
10213 call dwarf2out_abstract_function late.
10214 (dwarf2out_early_global_decl): Make sure to create DIEs
10215 for abstract instances of a decl first.
10216 (dwarf2out_late_global_decl): Adjust comment.
10217 (output_macinfo_op): With multiple macro sections use
10218 macinfo_label_base to distinguish labels.
10219 (output_macinfo): Likewise. Update macinfo_label_base.
10220 Pass in the line info label.
10221 (note_variable_value_in_expr): When generating LTO resolve
10222 all variable values here by generating DIEs as needed.
10223 (init_sections_and_labels): Add early LTO debug flag parameter
10224 and generate different sections and names if set. Add generation
10225 counter for the labels so we can have multiple of them.
10226 (reset_dies): Helper to allow DIEs to be output multiple times.
10227 (dwarf2out_finish): When outputting DIEs to the fat part of an
10228 LTO object first reset DIEs.
10229 (dwarf2out_early_finish): Output early DIEs when generating LTO.
10230 (modified_type_die): Check for decl_ultimate_origin being self
10232 (gen_type_die_with_usage): Likewise.
10233 (gen_typedef_die): Allow decl_ultimate_origin being self.
10234 (set_decl_abstract_flags): Remove.
10235 (set_block_abstract_flags): Likewise.
10236 (dwarf2out_abstract_function): Treat the early generated DIEs
10237 as the abstract copy and only add DW_AT_inline and
10238 DW_AT_artificial here and call set_decl_origin_self.
10239 If the DIE has an abstract origin don't do anything.
10240 * tree.c (free_lang_data): Build a dummy TRANSLATION_UNIT_DECL
10241 if we have none yet (Go fails to build one, PR78628).
10242 (variably_modified_type_p): Prevent endless recursion for Ada
10243 cyclic pointer types.
10244 * lto-streamer-in.c: Include debug.h.
10245 (dref_queue): New global.
10246 (lto_read_tree_1): Stream in DIE references.
10247 (lto_input_tree): Register DIE references.
10248 (input_function): Stream DECL_DEBUG_ARGS.
10249 * lto-streamer-out.c: Include debug.h.
10250 (lto_write_tree_1): Output DIE references.
10251 (DFS::DFS_write_tree_body): Follow DECL_ABSTRACT_ORIGIN.
10252 Force a TRANSLATION_UNIT_DECL DECL_CONTEXT for file-scope decls.
10253 (output_function): Stream DECL_DEBUG_ARGS.
10254 * tree-streamer-in.c (lto_input_ts_decl_common_tree_pointers):
10255 Stream DECL_ABSTRACT_ORIGIN.
10256 * tree-streamer-out.c (write_ts_decl_common_tree_pointers): Likewise.
10257 (write_ts_decl_minimal_tree_pointers): Force a TRANSLATION_UNIT_DECL
10258 DECL_CONTEXT for file-scope decls.
10259 * lto-streamer.h (struct dref_entry): Declare.
10260 (dref_queue): Likewise.
10261 * cfgexpand.c (pass_expand::execute): Do not call the
10262 outlining_inline_function hook here.
10263 * lto-wrapper.c (debug_obj): New global.
10264 (tool_cleanup): Unlink it if required.
10265 (debug_objcopy): New function.
10266 (run_gcc): Handle early debug sections in the IL files by
10267 extracting them to separate files, partially linkin them and
10268 feeding the result back as result to the linker.
10269 * config/darwin.h (DEBUG_LTO_INFO_SECTION, DEBUG_LTO_ABBREV_SECTION,
10270 DEBUG_LTO_MACINFO_SECTION, DEBUG_LTO_LINE_SECTION,
10271 DEBUG_STR_LTO_SECTION, DEBUG_LTO_MACRO_SECTION): Put early debug
10272 sections into a separate segment.
10273 * config/darwin.c (darwin_asm_named_section): Handle __GNU_DWARF_LTO
10275 (darwin_asm_dwarf_section): Likewise.
10276 (darwin_asm_output_dwarf_offset): Likewise.
10277 * config/i386/i386.c (make_resolver_func): Set DECL_IGNORED_P.
10279 2017-08-21 Richard Sandiford <richard.sandiford@linaro.org>
10280 Alan Hayward <alan.hayward@arm.com>
10281 David Sherwood <david.sherwood@arm.com>
10283 * read-md.h (md_reader::record_potential_iterator_use): Replace
10284 pointer argument with an rtx and an index.
10285 * read-rtl.c (iterator_group::apply_iterator): Likewise.
10286 (apply_mode_iterator): Likewise.
10287 (apply_code_iterator): Likewise.
10288 (apply_int_iterator): Likewise.
10289 (apply_subst_iterator): Likewise.
10290 (record_iterator_use): Likewise.
10291 (record_attribute_use): Likewise.
10292 (md_reader::record_potential_iterator_use): Likewise. Update calls
10293 to record_iterator_use and apply_iterator.
10294 (iterator_use): Replace ptr with x and index.
10295 (attribute_use): Likewise.
10296 (apply_attribute_uses): Update calls to apply_iterator.
10297 (apply_iterators): Likewise. Update initialization of iterator_use.
10298 (rtx_reader::read_rtx_code): Update calls to record_iterator_use
10299 and record_potential_iterator_use.
10300 (rtx_reader::read_rtx_operand): Likewise.
10302 2017-08-21 Richard Sandiford <richard.sandiford@linaro.org>
10303 Alan Hayward <alan.hayward@arm.com>
10304 David Sherwood <david.sherwood@arm.com>
10306 * varasm.c (const_rtx_hash_1): Don't hash in the mode of a
10309 2017-08-21 Richard Biener <rguenther@suse.de>
10311 PR middle-end/81884
10312 * tree-ssa-alias.c (stmt_kills_ref_p): Handle array accesses
10313 at struct end conservatively when comparing common bases.
10315 2017-08-21 Richard Biener <rguenther@suse.de>
10317 * tree-ssa-loop-im.c (struct lim_aux_data): Add ref index member.
10318 (mem_ref_in_stmt): Remove.
10319 (determine_max_movement): Use ref index to get at the reference.
10320 (invariantness_dom_walker::before_dom_children): Deal with
10321 lim data already initialized.
10322 (gather_mem_refs_stmt): Initialize lim data and record ref index.
10324 2017-08-19 Uros Bizjak <ubizjak@gmail.com>
10326 * config/i386/i386.h (OPTION_MASK_ISA_ROUND): Remove.
10327 (TARGET_ISA_ROUND): Ditto.
10328 (TARGET_ROUND): Ditto.
10329 * config/i386/i386.c: Substitute TARGET_ROUND with TARGET_SSE4_1.
10330 * config/i386/i386.md: Ditto.
10331 * config/i386/sse.md: Ditto.
10332 * config/i386/i386-builtin.def: Substitute OPTION_MASK_ISA_ROUND
10333 with OPTION_MASK_ISA_SSE4_1.
10335 2017-08-19 Uros Bizjak <ubizjak@gmail.com>
10338 * doc/extend.texi (x86 Built-in Functions): Correct the name of
10339 __builtin_ia32_lzcnt_u16.
10341 2017-08-18 Peter Bergner <bergner@vnet.ibm.com>
10344 * config/rs6000/rs6000.c (rs6000_activate_target_options): New function.
10345 (rs6000_set_current_function): Rewrite function to use it.
10347 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
10350 * print-tree.c (print_node): Support DECL_WARN_IF_NOT_ALIGN
10351 and TYPE_WARN_IF_NOT_ALIGN.
10352 * stor-layout.c (do_type_align): Merge DECL_WARN_IF_NOT_ALIGN.
10353 (handle_warn_if_not_align): New.
10354 (place_union_field): Call handle_warn_if_not_align.
10355 (place_field): Call handle_warn_if_not_align.
10356 Copy TYPE_WARN_IF_NOT_ALIGN.
10357 (finish_builtin_struct): Copy TYPE_WARN_IF_NOT_ALIGN.
10358 (layout_type): Likewise.
10359 * tree-core.h (tree_type_common): Add warn_if_not_align. Set
10361 (tree_decl_common): Add warn_if_not_align.
10362 * tree.c (build_range_type_1): Copy TYPE_WARN_IF_NOT_ALIGN.
10363 * tree.h (TYPE_WARN_IF_NOT_ALIGN): New.
10364 (SET_TYPE_WARN_IF_NOT_ALIGN): Likewise.
10365 (DECL_WARN_IF_NOT_ALIGN): Likewise.
10366 (SET_DECL_WARN_IF_NOT_ALIGN): Likewise.
10367 * doc/extend.texi: Document warn_if_not_aligned attribute.
10368 * doc/invoke.texi: Document -Wif-not-aligned and -Wpacked-not-aligned.
10370 2017-08-17 Martin Liska <mliska@suse.cz>
10373 * tree-loop-distribution.c (ddrs_table): Change type to pointer type.
10374 (get_data_dependence): Use it as pointer type.
10375 (distribute_loop): Likewise.
10377 2017-08-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
10379 * config/rs6000/altivec.md (UNSPEC_VMRGOW_DIRECT): New constant.
10380 (p8_vmrgew_v4sf_direct): Generalize to p8_vmrgew_<mode>_direct.
10381 (p8_vmrgow_<mode>_direct): New define_insn.
10382 * config/rs6000/rs6000.c (altivec_expand_vec_perm_const): Properly
10383 handle endianness for vmrgew and vmrgow permute patterns.
10385 2017-08-17 Peter Bergner <bergner@vnet.ibm.com>
10387 * config/rs6000/altivec.md (VParity): Remove TARGET_VSX_TIMODE.
10388 * config/rs6000/rs6000-cpus.def: Remove comment.
10389 (ISA_2_7_MASKS_SERVER): Delete OPTION_MASK_VSX_TIMODE;
10390 (POWERPC_MASKS): Likewise.
10391 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Remove unneeded
10392 use of TARGET_VSX_TIMODE.
10393 (rs6000_setup_reg_addr_masks): Change TARGET_VSX_TIMODE to TARGET_VSX.
10394 (rs6000_init_hard_regno_mode_ok): Remove unneeded uses of
10395 TARGET_VSX_TIMODE. Change use of TARGET_VSX_TIMODE to TARGET_VSX.
10396 (rs6000_option_override_internal): Remove dead code.
10397 (rs6000_legitimize_address): Change TARGET_VSX_TIMODE to TARGET_VSX.
10398 (rs6000_legitimize_reload_address): Likewise.
10399 (rs6000_legitimate_address_p): Likewise.
10400 (rs6000_opt_masks): Delete "vsx-timode".
10401 (rs6000_disable_incompatible_switches): Remove mention of -mvsx-timode
10402 from function comment.
10403 * config/rs6000/rs6000.h (MASK_VSX_TIMODE): Delete.
10404 * config/rs6000/rs6000.md (FMOVE128_GPR): Remove TARGET_VSX_TIMODE.
10405 (V16QI, V8HI, V4SI, V4SF, V2DI, V2DF, V1TI): Remove useless empty
10407 * config/rs6000/rs6000.opt (mvsx-timode): Replace with stub.
10408 * config/rs6000/vector.md (VEC_IP): Remove TARGET_VSX_TIMODE.
10409 * config/rs6000/vsx.md (VSX_LE_128): Likewise.
10410 (VSX_TI): Likewise.
10412 (define_peephole2): Likewise.
10414 2017-08-17 Martin Sebor <msebor@redhat.com>
10417 * pretty-print.c (pp_format): Use strnlen in %.*s to avoid reading
10418 past the end of an array.
10419 (test_pp_format): Add test cases.
10421 2017-08-17 Richard Sandiford <richard.sandiford@linaro.org>
10423 * internal-fn.def (CLRSB, CLZ, CTZ, FFS, PARITY, POPCOUNT): Add
10424 missing ECF_NOTHROW flags.
10426 2017-08-17 Peter Bergner <bergner@vnet.ibm.com>
10429 * config/rs6000/vsx.md (*vsx_le_permute_<mode>): Add support for
10430 operands residing in integer registers.
10431 (*vsx_le_perm_load_<mode>): Likewise.
10432 (*vsx_le_perm_store_<mode>): Likewise.
10433 (define_peephole2): Add peepholes to optimize the above.
10435 2017-08-17 Marek Polacek <polacek@redhat.com>
10437 PR middle-end/81814
10438 * fold-const.c (operand_equal_for_comparison_p): Remove code that used
10439 to mimic what shorten_compare did. Change the return type to bool.
10440 (fold_cond_expr_with_comparison): Update call to
10441 operand_equal_for_comparison_p.
10442 (fold_ternary_loc): Likewise.
10444 2017-08-17 Jackson Woodruff <jackson.woodruff@arm.com>
10446 * aarch64-simd.md (mov<mode>): No longer force zero immediate into
10448 (*aarch64_simd_mov<mode>): Add new case for stp using zero immediate.
10450 2017-08-17 Richard Biener <rguenther@suse.de>
10452 * tree-ssa-structalias.c (solve_graph): When propagating
10453 to successors update the graphs succ edges and avoid duplicate work.
10455 2017-08-17 Maxim Ostapenko <m.ostapenko@samsung.com>
10458 * config/i386/i386.c (ix86_option_override_internal): Save target
10459 specific options after ix86_stack_protector_guard_reg was changed.
10461 2017-08-17 Richard Biener <rguenther@suse.de>
10463 PR tree-optimization/81827
10464 * tree-ssa-structalias.c (struct variable_info): Add is_reg_var flag.
10465 (new_var_info): Initialize it conservatively.
10466 (get_call_vi): Mark register vars.
10467 (new_scalar_tmp_constraint_exp): Likewise.
10468 (handle_rhs_call): Likewise.
10469 (handle_const_call): Likewise.
10470 (create_function_info_for): Likewise.
10471 (solve_constraints): Sort varinfos to separate register from
10472 non-register vars to pack points-to solution bitmaps during
10475 2017-08-17 Marek Polacek <polacek@redhat.com>
10477 * gimplify.c (gimplify_adjust_omp_clauses): Compare with 0 instead of 1.
10479 2017-08-17 Richard Biener <rguenther@suse.de>
10481 * tree-vrp.c (vrp_int_const_binop): Do not set *overflow_p
10482 to true when overflow is undefined and we saturated the result.
10484 2017-08-17 Alan Modra <amodra@gmail.com>
10487 * config/rs6000/rs6000.c (rs6000_savres_strategy): Revert 2017-08-09.
10488 Don't use store multiple if only one reg needs saving.
10489 (interesting_frame_related_regno): New function.
10490 (rs6000_frame_related): Don't emit frame info for regs that
10492 (rs6000_emit_epilogue): Likewise.
10494 2017-08-16 Nathan Sidwell <nathan@acm.org>
10496 * tree-core.h (tree_type_non_common): Rename binfo to lang_1.
10497 * tree.h (TYPE_BINFO): Use type_non_common.maxval.
10498 (TYPE_LANG_SLOT_1): Use type_non_common.lang_1, for any type.
10499 * tree.c (free_lang_data_in_type): Use else-if chain. Always
10500 clear TYPE_LANG_1. Remove obsolete member-function stripping.
10501 (find_decls_types_r): Comment about TYPE_MAX_VALUES_RAW.
10502 (verify_type): Adjust for TYPE_BINFO move.
10503 * lto-streamer-out.c (DFS::DFS_write_tree_body): No need to
10504 process TYPE_BINFO directly.
10505 (hash_tree): Likewise.
10506 * tree-streamer-in.c (lto_input_ts_type_non_common_tree_pointers):
10508 * tree-streamer-out.c (write_ts_type_non_common_tree_pointers):
10511 2017-08-16 David Malcolm <dmalcolm@redhat.com>
10513 * diagnostic-show-locus.c (colorizer::m_caret): Remove unused field.
10515 2017-08-16 Uros Bizjak <ubizjak@gmail.com>
10518 * config/i386/i386.md (*anddi_1_btr): Change predicates of
10519 operand 0 and operand 1 to nomimmediate_operand. Add "m" constraint.
10520 Add ix86_binary_operator_ok to insn constraint.
10521 (*iordi_1_bts): Ditto.
10522 (*xordi_1_btc): Ditto.
10523 (*btsq): Change predicate of operand 0 to nonimmediate_operand.
10524 Update corresponding peephole2 pattern.
10528 2017-08-16 Bin Cheng <bin.cheng@arm.com>
10530 PR tree-optimization/81832
10531 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Don't
10532 copy loop header which has IFN_LOOP_DIST_ALIAS call.
10534 2017-08-16 Marek Polacek <polacek@redhat.com>
10537 * fold-const.c (fold_indirect_ref_1): Restore original behavior
10538 regarding size_zero_node.
10540 2017-08-16 Martin Liska <mliska@suse.cz>
10543 * config.gcc: Respect previously set extra_objs in case
10546 2017-08-16 Richard Sandiford <richard.sandiford@linaro.org>
10548 PR tree-optimization/81835
10549 * tree-vect-loop.c (vect_is_simple_reduction): Simply checks for
10550 the phi SSA_NAME. Check that the condition in a COND_EXPR does
10551 not depend on the phi.
10553 2017-08-16 Alan Modra <amodra@gmail.com>
10555 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Delete
10558 2017-08-16 Alan Modra <amodra@gmail.com>
10560 * config/rs6000/rs6000.c (rs6000_reg_live_or_pic_offset_p): Merge..
10561 (save_reg_p): ..into this. Update all callers.
10562 (first_reg_to_save): Simplify.
10564 2017-08-16 Alan Modra <amodra@gmail.com>
10566 * config/rs6000/rs6000.c (rs6000_savres_strategy): Don't restore
10569 2017-08-15 Joseph Myers <joseph@codesourcery.com>
10573 * config/sh/sh-mem.cc (sh_expand_cmpnstr): Only unroll for
10574 constant count if that count is less than 32.
10576 2017-08-15 Nathan Sidwell <nathan@acm.org>
10578 * gcc.c (execute): Emit friendlier message if inferior is killed
10579 by an external cause.
10581 2017-08-15 Richard Biener <rguenther@suse.de>
10583 PR tree-optimization/81790
10584 * tree-ssa-sccvn.c (vn_lookup_simplify_result): Handle both
10585 CONSTRUCTORs from simplifying and VN.
10587 2017-08-14 Martin Sebor <msebor@redhat.com>
10589 * builtin-attrs.def: Add comments.
10591 2017-08-14 Martin Sebor <msebor@redhat.com>
10594 * doc/extend.texi (attribute nonstring): Document new attribute.
10596 2017-08-14 Martin Sebor <msebor@redhat.com>
10599 * tree-diagnostic.c (default_tree_printer): Handle %G.
10600 * gimple-pretty-print.h (percent_G_format): Declare new function.
10601 * gimple-pretty-print.c (percent_G_format): Define.
10602 * tree-pretty-print.c (percent_K_format): Add argument.
10604 2017-08-14 Martin Sebor <msebor@redhat.com>
10606 PR translation/79998
10607 * gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call):
10608 Remove a stray space.
10610 2017-08-14 Uros Bizjak <ubizjak@gmail.com>
10613 * config/i386/i386.md (*anddi_1_btr): New insn_and_split pattern.
10614 (*iordi_1_bts): Ditto.
10615 (*xordi_1_btc): Ditto.
10617 2017-08-14 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
10620 * config/rs6000/linux64.h (INVALID_64BIT): Use quoted strings.
10621 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
10623 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Use
10624 quoted strings, and make more translator-friendly.
10625 (darwin_rs6000_override_options): Likewise.
10626 (rs6000_option_override_internal): Likewise.
10627 (rs6000_return_in_memory): Fix overlong line.
10628 (init_cmulative_args): Use quoted strings, and make more
10629 translator-friendly.
10630 (rs6000_pass_by_reference): Fix overlong line.
10631 (def_builtin): Use quoted strings.
10632 (altivec_expand_predicate_builtin): Use quoted strings, and make
10633 more translator-friendly.
10634 (htm_expand_builtin): Use quoted strings.
10635 (cpu_expand_builtin): Use quoted strings, and make more
10636 translator-friendly.
10637 (altivec_expand_builtin): Likewise.
10638 (paired_expand_predicate_builtin): Likewise.
10639 (rs6000_invalid_builtin): Likewise.
10640 (builtin_function_type): Use quoted strings.
10641 (rs6000_expand_split_stack_prologue): Use quoted strings, and make
10642 more translator-friendly.
10643 (rs6000_trampoline_init): Likewise.
10644 (rs6000_handle_altivec_attribute): Likewise.
10645 (rs6000_inner_target_options): Use quoted strings.
10646 (rs6000_disable_incompatible_switches): Likewise.
10647 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Use quoted
10648 strings, and make more translator-friendly.
10649 (SUBSUBTARGET_OVERRIDE_OPTIONS): Use quoted strings.
10651 2017-08-14 Bin Cheng <bin.cheng@arm.com>
10653 PR tree-optimization/81799
10654 * tree-loop-distribution.c (version_loop_by_alias_check): Force
10655 cond_expr to simple gimple operand.
10657 2017-08-14 Wilco Dijkstra <wdijkstr@arm.com>
10659 PR middle-end/46932
10660 * doc/sourcebuild.texi (autoincdec): Add autoincdec description.
10662 2017-08-14 Georg-Johann Lay <avr@gjlay.de>
10666 * config/avr/avr.opt (mgas-isr-prologues): New Var avr_gasisr_prologues.
10667 * config/avr/avr.md (gasisr, *gasisr): Use it instead of
10668 TARGET_GASISR_PROLOGUES.
10669 * config/avr/avr.c (avr_option_override): Same.
10670 (avr_pass_pre_proep::execute): Same.
10672 2017-08-13 H.J. Lu <hongjiu.lu@intel.com>
10675 * config/i386/i386.c (ix86_finalize_stack_frame_flags): Replace
10676 frame pointer with stack pointer - UNITS_PER_WORD in debug insns.
10678 2017-08-13 Uros Bizjak <ubizjak@gmail.com>
10680 * config/i386/i386.md (*load_tp_<mode>): Redefine as
10681 define_insn_and_split. Split to a memory load from 0 in
10682 DEFAULT_TLS_SEG_REG address space. Merge with *load_tp_x32
10683 using PTR mode iterator.
10684 (*load_tp_x32_zext"): Redefine as define_insn_and_split.
10685 Split to a memory load from 0 in DEFAULT_TLS_SEG_REG address space.
10686 (*add_tp_<mode>): Redefine as define_insn_and_split.
10687 Split to an add with a memory load from 0 in DEFAULT_TLS_SEG_REG
10688 address space. Merge with *add_tp_x32 using PTR mode iterator.
10689 (*add_tp_x32_zext"): Redefine as define_insn_and_split.
10690 Split to an add with a memory load from 0 in
10691 DEFAULT_TLS_SEG_REG address space.
10693 2017-08-12 Andrew Pinski <apinski@cavium.com>
10695 * config/aarch64/aarch64-option-extensions.def (rdma):
10696 Fix feature string to what Linux prints out in /proc/cpuinfo.
10698 2017-08-12 Pierre-Marie de Rodat <derodat@adacore.com>
10701 * dwarf2out.c (modified_type_die): For C typedef types that have
10702 an ultimate origin, process the ultimate origin instead of the
10704 (gen_typedef_die): Assert that input DECLs have no ultimate
10706 (gen_type_die_with_usage): For typedef variants that have an
10707 ultimate origin, just call gen_decl_die on the original DECL.
10708 (process_scope_var): Avoid creating DIEs for local typedefs and
10709 concrete static variables.
10711 2017-08-12 Alan Modra <amodra@gmail.com>
10715 * config/rs6000/sysv4.h (STARTFILE_LINUX_SPEC): Upgrade to
10716 match gnu-user.h startfile.
10717 (ENDFILE_LINUX_SPEC): Similarly.
10719 2017-08-11 Thomas Schwinge <thomas@codesourcery.com>
10722 * config/nvptx/nvptx.c (nvptx_override_options_after_change):
10724 (TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE): Remove definition.
10726 2017-08-11 Tamar Christina <tamar.christina@arm.com>
10727 * config/aarch64/aarch64.md (mov<mode>): Change.
10728 (*movhf_aarch64, *movsf_aarch64, *movdf_aarch64):
10729 aarch64_reg_or_fp_float into aarch64_reg_or_fp_zero.
10730 * config/aarch64/predicates.md (aarch64_reg_or_fp_float): Removed.
10732 2017-08-11 Eric Botcazou <ebotcazou@adacore.com>
10734 * tree-sra.c (build_access_from_expr_1): Use more precise diagnostics
10735 for storage order barriers.
10737 2017-08-11 Martin Liska <mliska@suse.cz>
10740 * tree-chkp.c (chkp_get_bounds_for_decl_addr): Do not instrument
10741 variables of void type.
10743 2017-08-11 Martin Liska <mliska@suse.cz>
10745 * asan.c (asan_protect_global): Replace ASM_OUTPUT_DEF with
10746 TARGET_SUPPORTS_ALIASES.
10747 * cgraph.c (cgraph_node::create_same_body_alias): Likewise.
10748 * ipa-visibility.c (can_replace_by_local_alias): Likewise.
10749 (optimize_weakref): Likewise.
10750 * symtab.c (symtab_node::noninterposable_alias): Likewise.
10751 * varpool.c (varpool_node::create_extra_name_alias): Likewise.
10752 * defaults.h: Introduce TARGET_SUPPORTS_ALIASES.
10754 2017-08-11 Martin Liska <mliska@suse.cz>
10757 * config/i386/i386.c (make_resolver_func): Do complete
10758 refactoring of the function.
10760 2017-08-10 Uros Bizjak <ubizjak@gmail.com>
10763 * config/i386/i386.opt (mstack-protector-guard-symbol=): New option
10764 * config/i386/i386.c (ix86_stack_protect_guard): Use
10765 ix86_stack_protect_guard_symbol_str to generate varible declaration.
10766 * doc/invoke.texi (x86 Options): Document
10767 -mstack-protector-guard-symbol= option.
10769 2017-08-10 Uros Bizjak <ubizjak@gmail.com>
10771 * config/i386/i386-protos.h (ix86_split_stack_guard): New prototype.
10772 * config/i386/i386.c (ix86_split_stack_guard): New function.
10773 (ix86_xpand_split_stack_prologue): Call ix86_split_stack_guard.
10774 (ix86_legitimate_address_p) <case UNSPEC_STACK_CHECK>: Remove.
10775 (i386_asm_output_addr_const_extra) <case UNSPEC_STACK_CHECK>: Ditto.
10776 (optput_pic_addr_const): Remove UNSPEC_STACK_CHECK handling.
10777 * config/i386/i386.md (unspec): Remove UNSPEC_STACK_CHECK.
10778 (split_stack_space_check): Call ix86_split_stack_guard.
10780 2017-08-10 Martin Sebor <msebor@redhat.com>
10782 * print-tree.c (print_node): Print location using the established
10784 Replace spaces with colons.
10785 (debug_raw, debug): Ditto.
10787 2017-08-10 Martin Sebor <msebor@redhat.com>
10790 * pretty-print.c (pp_format): Correct the handling of %s precision.
10792 2017-08-10 H.J. Lu <hongjiu.lu@intel.com>
10795 * config/i386/i386.c (ix86_finalize_stack_realign_flags): Renamed
10797 (ix86_finalize_stack_frame_flags): This. Also clear
10798 frame_pointer_needed if -fno-omit-frame-pointer is used without
10800 (ix86_expand_prologue): Replace ix86_finalize_stack_realign_flags
10801 with ix86_finalize_stack_frame_flags.
10802 (ix86_expand_epilogue): Likewise.
10803 (ix86_expand_split_stack_prologue): Likewise.
10804 * doc/invoke.texi: Add a note for -fno-omit-frame-pointer.
10806 2017-08-10 Martin Liska <mliska@suse.cz>
10809 * c-attribs.c (handle_target_attribute):
10810 Report warning for an empty string argument of target attribute.
10812 2017-08-09 Jakub Jelinek <jakub@redhat.com>
10815 * omp-low.c (omp_copy_decl): Don't remap FORCED_LABEL or DECL_NONLOCAL
10817 * tree-cfg.c (move_stmt_op): Don't adjust DECL_CONTEXT of FORCED_LABEL
10818 or DECL_NONLOCAL labels.
10819 (move_stmt_r) <case GIMPLE_LABEL>: Adjust DECL_CONTEXT of FORCED_LABEL
10820 or DECL_NONLOCAL labels here.
10822 2017-08-09 Will Schmidt <will_schmidt@vnet.ibm.com>
10824 * config/rs6000/rs6000.c (rs6000_option_override_internal): Add blurb
10825 to indicate when early gimple folding has been disabled.
10826 (rs6000_gimple_fold_builtin): Add debug content.
10827 (rs6000_invalid_builtin): Fix whitespace.
10828 (rs6000_expand_builtin): Fix whitespace.
10829 * config/rs6000/rs6000.opt: Add option for -mfold-gimple.
10831 2017-08-09 Segher Boessenkool <segher@kernel.crashing.org>
10834 * config/rs6000/rs6000.c (rs6000_savres_strategy): Don't use
10835 SAVE_MULTIPLE if not all the registers that saves, should be saved.
10837 2017-08-09 Jim Wilson <jim.wilson@linaro.org>
10839 * config/aarch64/aarch64-cores.def (falkor): Use falkor pipeline.
10840 (qdf24xx): Likewise.
10841 * config/aarch64/aarch64.md: Include falkor.md.
10842 * config/aarch64/falkor.md: New.
10844 2017-08-09 Marek Polacek <polacek@redhat.com>
10847 * diagnostic-core.h (emit_diagnostic_valist): Add declaration.
10848 * diagnostic.c (emit_diagnostic): Add a comment.
10849 (emit_diagnostic_valist): New function.
10851 2017-08-09 Marek Polacek <polacek@redhat.com>
10854 * input.c (make_location): New overload.
10855 * input.h (make_location): Declare.
10857 2017-08-08 Alan Modra <amodra@gmail.com>
10858 H.J. Lu <hongjiu.lu@intel.com>
10861 * gcc.c (NO_PIE_SPEC): Delete.
10862 (PIE_SPEC): Define as !no-pie/pie. Move static|shared|r
10864 (LINK_PIE_SPEC): ..to here.
10865 (LINK_COMMAND_SPEC): Support -no-pie.
10866 * config/gnu-user.h (GNU_USER_TARGET_STARTFILE_SPEC): Correct
10867 chain of crtbegin*.o selection, update for PIE_SPEC changes and
10869 (GNU_USER_TARGET_ENDFILE_SPEC): Similarly.
10870 * config/sol2.h (STARTFILE_CRTBEGIN_SPEC): Similarly.
10871 (ENDFILE_CRTEND_SPEC): Similarly.
10873 2017-08-08 Uros Bizjak <ubizjak@gmail.com>
10876 * config/i386/i386.opt (mstack-protector-guard-reg=): New option
10877 (mstack-protector-guard-offset=): Ditto.
10878 * config/i386/i386.c (ix86_option_override): Handle
10879 -mstack-protector-guard-reg= and -mstack-protector-guard-offset=
10881 (ix86_stack_protect_guard): Use ix86_stack_protect_guard_reg and
10882 ix86_stack_protect_guard_offset variables.
10883 (TARGET_STACK_PROTECT_GUARD): Always define.
10884 * doc/invoke.texi (x86 Options): Document -mstack-protector-guard-reg=
10885 and -mstack-protector-guard-offset= options.
10887 2017-08-08 Bin Cheng <bin.cheng@arm.com>
10889 * tree-ssa-loop-ivopts.c (relate_compare_use_with_all_cands): Handle
10890 boundary case for the last candidate.
10892 2017-08-08 Bin Cheng <bin.cheng@arm.com>
10894 * doc/invoke.texi: Document -ftree-loop-distribution for O3.
10895 * opts.c (default_options_table): Add OPT_ftree_loop_distribution.
10897 2017-08-08 Tamar Christina <tamar.christina@arm.com>
10899 PR middle-end/19706
10900 * config/aarch64/aarch64.md (xorsign<mode>3): New optabs.
10901 * config/aarch64/aarch64-builtins.c
10902 (aarch64_builtin_vectorized_function): Added CASE_CFN_XORSIGN.
10903 * config/aarch64/aarch64-simd-builtins.def: Added xorsign BINOP.
10904 * config/aarch64/aarch64-simd.md: Added xorsign<mode>3
10906 2017-08-08 Tamar Christina <tamar.christina@arm.com>
10907 Andrew Pinski <pinskia@gmail.com>
10909 PR middle-end/19706
10910 * internal-fn.def (XORSIGN): New.
10911 * optabs.def (xorsign_optab): New.
10912 * tree-ssa-math-opts.c (is_copysign_call_with_1): New.
10913 (convert_expand_mult_copysign): New.
10914 (pass_optimize_widening_mul::execute): Call
10915 convert_expand_mult_copysign.
10917 2017-08-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
10919 PR tree-optimization/81354
10920 * gimple-ssa-strength-reduction.c (create_add_on_incoming_edge):
10921 Insert on edges rather than explicitly creating landing pads.
10922 (analyze_candidates_and_replace): Commit edge inserts.
10924 2017-08-08 Richard Biener <rguenther@suse.de>
10926 PR middle-end/81719
10927 * tree-ssa-loop-niter.c: Include tree-dfa.h.
10928 (expand_simple_operations): Also look through ADDR_EXPRs with
10929 MEM_REF bases treating them as POINTER_PLUS_EXPR.
10931 2017-08-08 Richard Biener <rguenther@suse.de>
10933 PR tree-optimization/81723
10934 * tree-vect-slp.c (struct bst_traits): New hash traits.
10935 (bst_fail): New global.
10936 (vect_build_slp_tree_2): New worker, split out from ...
10937 (vect_build_slp_tree): ... this now wrapping it with using
10938 bst_fail set to cache SLP tree build fails. Properly handle
10940 (vect_analyze_slp_instance): Allocate and free bst_fail.
10942 2017-08-08 Martin Liska <mliska@suse.cz>
10945 * ipa-icf-gimple.c (func_checker::compare_cst_or_decl): Consider
10946 LABEL_DECLs that can be from a different function.
10948 2017-08-08 Bin Cheng <bin.cheng@arm.com>
10950 PR tree-optimization/81744
10951 * tree-predcom.c (prepare_finalizers_chain): Deep copy expr of
10952 loop's number of iterations.
10954 2017-08-08 Martin Liska <mliska@suse.cz>
10956 * asan.c: Include header files.
10957 * attribs.c (build_decl_attribute_variant): New function moved
10959 (build_type_attribute_qual_variant): Likewise.
10960 (cmp_attrib_identifiers): Likewise.
10961 (simple_cst_list_equal): Likewise.
10962 (omp_declare_simd_clauses_equal): Likewise.
10963 (attribute_value_equal): Likewise.
10964 (comp_type_attributes): Likewise.
10965 (build_type_attribute_variant): Likewise.
10966 (lookup_ident_attribute): Likewise.
10967 (remove_attribute): Likewise.
10968 (merge_attributes): Likewise.
10969 (merge_type_attributes): Likewise.
10970 (merge_decl_attributes): Likewise.
10971 (merge_dllimport_decl_attributes): Likewise.
10972 (handle_dll_attribute): Likewise.
10973 (attribute_list_equal): Likewise.
10974 (attribute_list_contained): Likewise.
10975 * attribs.h (lookup_attribute): New function moved from tree.[ch].
10976 (lookup_attribute_by_prefix): Likewise.
10977 * bb-reorder.c: Include header files.
10978 * builtins.c: Likewise.
10979 * calls.c: Likewise.
10980 * cfgexpand.c: Likewise.
10981 * cgraph.c: Likewise.
10982 * cgraphunit.c: Likewise.
10983 * convert.c: Likewise.
10984 * dwarf2out.c: Likewise.
10985 * final.c: Likewise.
10986 * fold-const.c: Likewise.
10987 * function.c: Likewise.
10988 * gimple-expr.c: Likewise.
10989 * gimple-fold.c: Likewise.
10990 * gimple-pretty-print.c: Likewise.
10991 * gimple.c: Likewise.
10992 * gimplify.c: Likewise.
10993 * hsa-common.c: Likewise.
10994 * hsa-gen.c: Likewise.
10995 * internal-fn.c: Likewise.
10996 * ipa-chkp.c: Likewise.
10997 * ipa-cp.c: Likewise.
10998 * ipa-devirt.c: Likewise.
10999 * ipa-fnsummary.c: Likewise.
11000 * ipa-inline.c: Likewise.
11001 * ipa-visibility.c: Likewise.
11003 * lto-cgraph.c: Likewise.
11004 * omp-expand.c: Likewise.
11005 * omp-general.c: Likewise.
11006 * omp-low.c: Likewise.
11007 * omp-offload.c: Likewise.
11008 * omp-simd-clone.c: Likewise.
11009 * opts-global.c: Likewise.
11010 * passes.c: Likewise.
11011 * predict.c: Likewise.
11012 * sancov.c: Likewise.
11013 * sanopt.c: Likewise.
11014 * symtab.c: Likewise.
11015 * toplev.c: Likewise.
11016 * trans-mem.c: Likewise.
11017 * tree-chkp.c: Likewise.
11018 * tree-eh.c: Likewise.
11019 * tree-into-ssa.c: Likewise.
11020 * tree-object-size.c: Likewise.
11021 * tree-parloops.c: Likewise.
11022 * tree-profile.c: Likewise.
11023 * tree-ssa-ccp.c: Likewise.
11024 * tree-ssa-live.c: Likewise.
11025 * tree-ssa-loop.c: Likewise.
11026 * tree-ssa-sccvn.c: Likewise.
11027 * tree-ssa-structalias.c: Likewise.
11028 * tree-ssa.c: Likewise.
11029 * tree-streamer-in.c: Likewise.
11030 * tree-vectorizer.c: Likewise.
11031 * tree-vrp.c: Likewise.
11032 * tsan.c: Likewise.
11033 * ubsan.c: Likewise.
11034 * varasm.c: Likewise.
11035 * varpool.c: Likewise.
11036 * tree.c: Remove functions moved to attribs.[ch].
11037 * tree.h: Likewise.
11038 * config/aarch64/aarch64.c: Add attrs.h header file.
11039 * config/alpha/alpha.c: Likewise.
11040 * config/arc/arc.c: Likewise.
11041 * config/arm/arm.c: Likewise.
11042 * config/avr/avr.c: Likewise.
11043 * config/bfin/bfin.c: Likewise.
11044 * config/c6x/c6x.c: Likewise.
11045 * config/cr16/cr16.c: Likewise.
11046 * config/cris/cris.c: Likewise.
11047 * config/darwin.c: Likewise.
11048 * config/epiphany/epiphany.c: Likewise.
11049 * config/fr30/fr30.c: Likewise.
11050 * config/frv/frv.c: Likewise.
11051 * config/ft32/ft32.c: Likewise.
11052 * config/h8300/h8300.c: Likewise.
11053 * config/i386/winnt.c: Likewise.
11054 * config/ia64/ia64.c: Likewise.
11055 * config/iq2000/iq2000.c: Likewise.
11056 * config/lm32/lm32.c: Likewise.
11057 * config/m32c/m32c.c: Likewise.
11058 * config/m32r/m32r.c: Likewise.
11059 * config/m68k/m68k.c: Likewise.
11060 * config/mcore/mcore.c: Likewise.
11061 * config/microblaze/microblaze.c: Likewise.
11062 * config/mips/mips.c: Likewise.
11063 * config/mmix/mmix.c: Likewise.
11064 * config/mn10300/mn10300.c: Likewise.
11065 * config/moxie/moxie.c: Likewise.
11066 * config/msp430/msp430.c: Likewise.
11067 * config/nds32/nds32-isr.c: Likewise.
11068 * config/nds32/nds32.c: Likewise.
11069 * config/nios2/nios2.c: Likewise.
11070 * config/nvptx/nvptx.c: Likewise.
11071 * config/pa/pa.c: Likewise.
11072 * config/pdp11/pdp11.c: Likewise.
11073 * config/powerpcspe/powerpcspe.c: Likewise.
11074 * config/riscv/riscv.c: Likewise.
11075 * config/rl78/rl78.c: Likewise.
11076 * config/rx/rx.c: Likewise.
11077 * config/s390/s390.c: Likewise.
11078 * config/sh/sh.c: Likewise.
11079 * config/sol2.c: Likewise.
11080 * config/sparc/sparc.c: Likewise.
11081 * config/spu/spu.c: Likewise.
11082 * config/stormy16/stormy16.c: Likewise.
11083 * config/tilegx/tilegx.c: Likewise.
11084 * config/tilepro/tilepro.c: Likewise.
11085 * config/v850/v850.c: Likewise.
11086 * config/vax/vax.c: Likewise.
11087 * config/visium/visium.c: Likewise.
11088 * config/xtensa/xtensa.c: Likewise.
11090 2017-08-07 Michael Meissner <meissner@linux.vnet.ibm.com>
11093 * config/rs6000/vsx.md (vsx_concat_<mode>, VSX_D): Cleanup
11094 constraints since the -mupper-regs-* switches have been
11096 (vsx_concat_<mode>_1): New combiner insns to recognize inserting
11097 into a vector from a double word element that was extracted from
11098 another vector, and eliminate extra XXPERMDI instructions.
11099 (vsx_concat_<mode>_2): Likewise.
11100 (vsx_concat_<mode>_3): Likewise.
11101 (vsx_set_<mode>, VSX_D): Rewrite vector set in terms of vector
11102 concat to allow optimizing inserts from previous extracts.
11104 2017-08-07 Uros Bizjak <ubizjak@gmail.com>
11106 * config/i386/i386.c (ix86_stack_protect_guard): Generate
11107 memory reference to a SSP offset in TLS address space.
11108 (ix86_print_operand) <case '@'>: Remove.
11109 (ix86_print_operand_punct_valid_p): Remove '@' code.
11110 * config/i386/i386.md (unspec): Remove UNSPEC_SP_TLS_SET and
11111 UNSPEC_SP_TLS_TEST.
11112 (stack_tls_protect_set_<mode>): Remove.
11113 (stack_protect_set): Do not call gen_stack_tls_protect_set_<mode>.
11114 (stack_tls_protect_test_<mode>): Remove.
11115 (stack_protect_test): Do not call gen_stack_tls_protect_test_<mode>.
11117 2017-08-07 Olivier Hainque <hainque@adacore.com>
11120 * config/vxworksae.h (VXWORKS_HAVE_TLS): Define.
11122 2017-08-07 Douglas Rupp <rupp@adacore.com>
11124 * Makefile.in (install-mkheaders): Fix typo, where the multi_dir
11125 variable was referenced as multidir in command.
11127 2017-08-07 Jakub Jelinek <jakub@redhat.com>
11130 * gimplify.c (goa_stabilize_expr): Handle BIT_INSERT_EXPR and
11133 2017-08-07 Martin Liska <mliska@suse.cz>
11135 * config/m32c/m32c.c: Add include of stringpool.h and attribs.h.
11136 * config/rl78/rl78.c: Add include of attribs.h.
11137 * config/sh/sh.c: Likewise.
11138 * config/v850/v850.c: Likewise.
11140 2017-08-07 Tom de Vries <tom@codesourcery.com>
11142 PR middle-end/78266
11143 * omp-expand.c (expand_oacc_for): Ensure diff_type is large enough.
11145 2017-08-07 Martin Liska <mliska@suse.cz>
11147 * config/mips/mips.c: Include attribs.h.
11149 2017-08-07 Thomas Koenig <tkoenig@gcc.gnu.org>
11152 * doc/invoke.texi: Document change in behvaior for -Ofast for
11155 2017-08-07 Wilco Dijkstra <wdijkstr@arm.com>
11157 * config/aarch64/aarch64.c (aarch64_pushwb_single_reg):
11159 (aarch64_pop_regs): Likewise.
11160 (aarch64_gen_load_pair): Likewise.
11161 (aarch64_save_callee_saves): Likewise.
11162 (aarch64_restore_callee_saves): Likewise.
11164 2017-08-07 H.J. Lu <hongjiu.lu@intel.com>
11166 * config/i386/i386.c: Revert the last change.
11168 2017-08-07 H.J. Lu <hongjiu.lu@intel.com>
11171 * config/i386/i386.c (ix86_finalize_stack_realign_flags): Renamed
11173 (ix86_finalize_stack_frame_flags): This. Also clear
11174 frame_pointer_needed if -fno-omit-frame-pointer is used without
11176 (ix86_expand_prologue): Replace ix86_finalize_stack_realign_flags
11177 with ix86_finalize_stack_frame_flags.
11178 (ix86_expand_epilogue): Likewise.
11179 (ix86_expand_split_stack_prologue): Likewise.
11181 2017-08-07 H.J. Lu <hongjiu.lu@intel.com>
11184 * config/i386/i386.c (get_builtin_code_for_version): Set priority
11185 to P_AES for Westmere.
11187 2017-08-07 Jonathan Yong <10walls@gmail.com>
11189 * config/i386/mingw.opt (fset-stack-executable): Removed.
11190 * config/i386/cygming.opt (fset-stack-executable): Moved
11192 * config/i386/cygwin.h: Define CHECK_EXECUTE_STACK_ENABLED.
11194 2017-08-07 Segher Boessenkool <segher@kernel.crashing.org>
11196 * print-rtl.c (print_exp): Print NOT as "~" instead of as "!".
11198 2017-08-07 Marek Polacek <polacek@redhat.com>
11200 PR middle-end/81737
11201 * fold-const.c (fold_indirect_ref_1): Check type_domain.
11203 2017-08-07 Martin Liska <mliska@suse.cz>
11205 * attribs.h (canonicalize_attr_name): New function.
11206 (cmp_attribs): Move from c-format.c and adjusted.
11207 (is_attribute_p): Moved from tree.h.
11208 * tree-inline.c: Add new includes.
11209 * tree.c (cmp_attrib_identifiers): Use cmp_attribs.
11210 (private_is_attribute_p): Remove.
11211 (private_lookup_attribute): Likewise.
11212 (private_lookup_attribute_by_prefix): Simplify.
11213 (remove_attribute): Use is_attribute_p.
11214 * tree.h: Remove removed declarations.
11216 2017-08-07 Jakub Jelinek <jakub@redhat.com>
11218 PR middle-end/81698
11219 * stmt.c (emit_case_dispatch_table): Add DEFAULT_EDGE argument,
11220 instead of computing it in the function. Formatting fix.
11221 (expand_case): Don't rely on default_edge being the first edge,
11222 clear it if removing it, pass default_edge to
11223 emit_case_dispatch_table.
11224 (expand_sjlj_dispatch_table): Pass NULL as DEFAULT_EDGE, formatting
11227 2017-08-06 Uros Bizjak <ubizjak@gmail.com>
11229 * config/alpha/alpha.c (alpha_reorg): If trap is the last active
11230 insn in the function, emit NOP after the insn.
11232 2017-08-06 Tom de Vries <tom@codesourcery.com>
11234 * omp-expand.c (expand_oacc_for): Add missing edge probability for tile
11237 2017-08-06 Tom de Vries <tom@codesourcery.com>
11239 * omp-expand.c (expand_oacc_for): Add missing edge probability for chunk
11242 2017-08-04 Yury Gribov <tetra2005@gmail.com>
11244 PR tree-optimization/57371
11245 * match.pd: New pattern.
11247 2017-08-04 Marek Polacek <polacek@redhat.com>
11249 PR middle-end/81695
11250 * fold-const.c (fold_indirect_ref_1): For ((int *)&a + 4 -> a[1],
11251 perform the computation in offset_int.
11253 2017-08-04 Richard Sandiford <richard.sandiford@linaro.org>
11255 PR tree-optimization/81136
11256 * tree-vectorizer.h: Include tree-hash-traits.h.
11257 (vec_base_alignments): New typedef.
11258 (vec_info): Add a base_alignments field.
11259 (vect_record_base_alignments): Declare.
11260 * tree-data-ref.h (data_reference): Add an is_conditional_in_stmt
11262 (DR_IS_CONDITIONAL_IN_STMT): New macro.
11263 (create_data_ref): Add an is_conditional_in_stmt argument.
11264 * tree-data-ref.c (create_data_ref): Likewise. Use it to initialize
11265 the is_conditional_in_stmt field.
11266 (data_ref_loc): Add an is_conditional_in_stmt field.
11267 (get_references_in_stmt): Set the is_conditional_in_stmt field.
11268 (find_data_references_in_stmt): Update call to create_data_ref.
11269 (graphite_find_data_references_in_stmt): Likewise.
11270 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Likewise.
11271 * tree-vect-data-refs.c (vect_analyze_data_refs): Likewise.
11272 (vect_record_base_alignment): New function.
11273 (vect_record_base_alignments): Likewise.
11274 (vect_compute_data_ref_alignment): Adjust base_addr and aligned_to
11275 for nested statements even if we fail to compute a misalignment.
11276 Use pooled base alignments for unconditional references.
11277 (vect_find_same_alignment_drs): Compare base addresses instead
11279 (vect_analyze_data_refs_alignment): Call vect_record_base_alignments.
11280 * tree-vect-slp.c (vect_slp_analyze_bb_1): Likewise.
11282 2017-08-04 Richard Sandiford <richard.sandiford@linaro.org>
11284 * tree-vectorizer.h (vec_info): Add a constructor and destructor.
11285 Add an explicit name for the enum. Use auto_vec for slp_instances
11286 and grouped_stores.
11287 (_loop_vec_info): Add a constructor and destructor. Use auto_vec
11289 (_bb_vec_info): Add a constructor and destructor.
11290 (vinfo_for_stmt): Return NULL for uids of -1 as well.
11291 (destroy_loop_vec_info): Delete.
11292 (vect_destroy_datarefs): Likewise.
11293 * tree-vectorizer.c (vect_destroy_datarefs): Delete.
11294 (vec_info::vec_info): New function.
11295 (vec_info::~vec_info): Likewise.
11296 (vectorize_loops): Use delete instead of destroy_loop_vec_info.
11297 * tree-parloops.c (gather_scalar_reductions): Use delete instead of
11298 destroy_loop_vec_info.
11299 * tree-vect-loop.c (new_loop_vec_info): Replace with...
11300 (_loop_vec_info::_loop_vec_info): ...this.
11301 (destroy_loop_vec_info): Replace with...
11302 (_loop_vec_info::~_loop_vec_info): ...this. Unconditionally delete
11303 the stmt_vec_infos. Leave handling of vec_info information to its
11304 destructor. Remove explicit vector releases.
11305 (vect_analyze_loop_form): Use new instead of new_loop_vec_info.
11306 (vect_analyze_loop): Use delete instead of destroy_loop_vec_info.
11307 * tree-vect-slp.c (new_bb_vec_info): Replace with...
11308 (_bb_vec_info::_bb_vec_info): ...this. Don't reserve space in
11309 BB_VINFO_GROUPED_STORES or BB_VINFO_SLP_INSTANCES.
11310 (destroy_bb_vec_info): Replace with...
11311 (_bb_vec_info::~_bb_vec_info): ...this. Leave handling of vec_info
11312 information to its destructor.
11313 (vect_slp_analyze_bb_1): Use new and delete instead of
11314 new_bb_vec_info and destroy_bb_vec_info.
11315 (vect_slp_bb): Replace 2 calls to destroy_bb_vec_info with a
11318 2017-08-04 Richard Sandiford <richard.sandiford@linaro.org>
11320 * tree-data-ref.h (subscript): Add access_fn field.
11321 (data_dependence_relation): Add could_be_independent_p.
11322 (SUB_ACCESS_FN, DDR_COULD_BE_INDEPENDENT_P): New macros.
11323 (same_access_functions): Move to tree-data-ref.c.
11324 * tree-data-ref.c (ref_contains_union_access_p): New function.
11325 (access_fn_component_p): Likewise.
11326 (access_fn_components_comparable_p): Likewise.
11327 (dr_analyze_indices): Add a reference to access_fn_component_p.
11328 (dump_data_dependence_relation): Use SUB_ACCESS_FN instead of
11330 (constant_access_functions): Likewise.
11331 (add_other_self_distances): Likewise.
11332 (same_access_functions): Likewise. (Moved from tree-data-ref.h.)
11333 (initialize_data_dependence_relation): Use XCNEW and remove
11334 explicit zeroing of DDR_REVERSED_P. Look for a subsequence
11335 of access functions that have the same type. Allow the
11336 subsequence to end with different bases in some circumstances.
11337 Record the chosen access functions in SUB_ACCESS_FN.
11338 (build_classic_dist_vector_1): Replace ddr_a and ddr_b with
11339 a_index and b_index. Use SUB_ACCESS_FN instead of DR_ACCESS_FN.
11340 (subscript_dependence_tester_1): Likewise dra and drb.
11341 (build_classic_dist_vector): Update calls accordingly.
11342 (subscript_dependence_tester): Likewise.
11343 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Check
11344 DDR_COULD_BE_INDEPENDENT_P.
11345 * tree-vectorizer.h (LOOP_REQUIRES_VERSIONING_FOR_ALIAS): Test
11346 comp_alias_ddrs instead of may_alias_ddrs.
11347 * tree-vect-data-refs.c (vect_analyze_possibly_independent_ddr):
11349 (vect_analyze_data_ref_dependence): Use it if
11350 DDR_COULD_BE_INDEPENDENT_P, but fall back to using the recorded
11351 distance vectors if that fails.
11352 (dependence_distance_ge_vf): New function.
11353 (vect_prune_runtime_alias_test_list): Use it. Don't clear
11354 LOOP_VINFO_MAY_ALIAS_DDRS.
11356 2017-08-04 Richard Biener <rguenther@suse.de>
11358 PR middle-end/81705
11359 * fold-const.c (fold_binary_loc): Properly restrict
11360 minus_var0 && minus_var1 case when associating undefined overflow
11363 2017-08-04 Tom de Vries <tom@codesourcery.com>
11365 * omp-simd-clone.c (simd_clone_adjust): Add missing edge probability.
11367 2017-08-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
11369 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
11370 Don't start diagnostic messages with a capital letter.
11371 * config/rs6000/rs6000.c (rs6000_option_override_internal):
11373 (rs6000_invalid_builtin): Likewise.
11374 (rs6000_trampoline_init): Likewise.
11376 2017-08-03 Jakub Jelinek <jakub@redhat.com>
11379 * bb-reorder.c (pass_partition_blocks::execute): Return TODO_df_finish
11380 after setting changeable df flags.
11382 2017-08-03 Richard Biener <rguenther@suse.de>
11384 * tree-ssa-reassoc.c (should_break_up_subtract): Also break
11385 up if the use is in USE - X.
11387 2017-08-03 Alexander Monakov <amonakov@ispras.ru>
11389 * toplev.c (dumpfile.h): New include.
11390 (internal_error_reentered): New static function. Use it...
11391 (internal_error_function): ...here to handle reentered internal_error.
11393 2017-08-03 Richard Biener <rguenther@suse.de>
11395 PR middle-end/81148
11396 * fold-const.c (split_tree): Add minus_var and minus_con
11397 arguments, remove unused loc arg. Never generate NEGATE_EXPRs
11398 here but always use minus_*.
11399 (associate_trees): Assert we never associate with MINUS_EXPR
11400 and NULL first operand. Do not recurse for PLUS_EXPR operands
11401 when associating as MINUS_EXPR either.
11402 (fold_binary_loc): Track minus_var and minus_con.
11404 2017-08-03 Tom de Vries <tom@codesourcery.com>
11407 * tree-streamer-in.c (lto_input_ts_function_decl_tree_pointers): If
11408 ACCEL_COMPILER, apply finish_options on
11409 DECL_FUNCTION_SPECIFIC_OPTIMIZATION.
11411 2017-08-03 Tom de Vries <tom@codesourcery.com>
11414 * config/nvptx/nvptx.c (nvptx_option_override): Emit sorry if
11415 function_entry_patch_area_size > 0.
11417 2017-08-03 Jakub Jelinek <jakub@redhat.com>
11420 * calls.c (alloc_max_size): Use HOST_WIDE_INT_UC (10??)
11421 instead of 10??LU, perform unit multiplication in wide_int,
11422 don't change alloc_object_size_limit if the limit is larger
11425 PR tree-optimization/81655
11426 PR tree-optimization/81588
11427 * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Handle also
11428 the case when ranges[i].low and high are 1 for unsigned type with
11431 PR middle-end/81052
11432 * omp-low.c (diagnose_sb_0): Handle flag_openmp_simd like flag_openmp.
11433 (pass_diagnose_omp_blocks::gate): Enable also for flag_openmp_simd.
11435 2017-08-03 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
11437 * tree-vrp.h: Add include guard.
11439 2017-08-02 Uros Bizjak <ubizjak@gmail.com>
11442 * config/i386/i386.md (unspecv): Add UNSPECV_UD2.
11443 (ud2): New insn pattern.
11444 * config/i386/i386.c (ix86_expand_epilogue):
11445 For naked functions, generate ud2 instead of trap insn.
11447 2017-08-02 Marek Polacek <polacek@redhat.com>
11450 * alloc-pool.h (base_pool_allocator): Initialize m_elt_size.
11452 2017-08-02 Tom de Vries <tom@codesourcery.com>
11453 Cesar Philippidis <cesar@codesourcery.com>
11455 * config/nvptx/nvptx.c (nvptx_lockless_update, nvptx_lockfull_update):
11456 Add missing edge probabilities.
11458 2017-08-02 Tamar Christina <tamar.christina@arm.com>
11460 * config/aarch64/aarch64.c (aarch64_reinterpret_float_as_int):
11461 Correct endianness.
11463 2017-08-02 Jakub Jelinek <jakub@redhat.com>
11465 PR middle-end/79499
11466 * function.c (thread_prologue_and_epilogue_insns): Determine blocks
11467 for find_many_sub_basic_blocks bitmap by looking up BLOCK_FOR_INSN
11468 of first NONDEBUG_INSN_P in each of the split_prologue_seq and
11469 prologue_seq sequences - if any.
11471 2017-08-02 Richard Biener <rguenther@suse.de>
11473 * tree-vect-stmts.c (vectorizable_store): Perform vector extracts
11474 via vectors if supported, integer extracts via punning if supported
11475 or otherwise vector extracts.
11477 2017-08-02 Richard Biener <rguenther@suse.de>
11479 * tree-ssa-pre.c (bitmap_insert_into_set_1): Remove and inline
11481 (bitmap_insert_into_set): ... this.
11483 2017-08-02 Richard Biener <rguenther@suse.de>
11485 PR tree-optimization/81633
11487 2015-08-17 Alan Hayward <alan.hayward@arm.com>
11489 PR tree-optimization/71752
11490 * tree-vect-slp.c (vect_get_slp_defs): Handle null operands.
11492 2017-08-01 Daniel Santos <daniel.santos@pobox.com>
11494 * config/i386/i386.h (ix86_frame::outlined_save_offset): Remove field.
11495 (machine_function::call_ms2sysv_pad_out): Remove field.
11496 * config/i386/i386.c (xlogue_layout::get_stack_space_used): Modify.
11497 (ix86_compute_frame_layout): Likewise.
11499 2017-08-01 H.J. Lu <hongjiu.lu@intel.com>
11502 * config/i386/i386.c (ix86_set_func_type): Disallow naked
11503 attribute with interrupt attribute.
11505 2017-08-01 Andrew Pinski <apinski@cavium.com>
11507 * tree-ssa-scopedtables.c (hashable_expr_equal_p): Check
11508 BIT_INSERT_EXPR's operand 1
11509 to see if the types precision matches.
11511 2017-08-01 Martin Liska <mliska@suse.cz>
11513 PR middle-end/70140
11514 * builtins.c (expand_builtin_memcpy_args): Remove.
11515 (expand_builtin_memcpy): Call newly added function
11516 expand_builtin_memory_copy_args.
11517 (expand_builtin_memcpy_with_bounds): Likewise.
11518 (expand_builtin_mempcpy): Remove last argument.
11519 (expand_builtin_mempcpy_with_bounds): Likewise.
11520 (expand_builtin_memory_copy_args): New function created from
11521 expand_builtin_mempcpy_args with small modifications.
11522 (expand_builtin_mempcpy_args): Remove.
11523 (expand_builtin_stpcpy): Remove unused argument.
11524 (expand_builtin): Likewise.
11525 (expand_builtin_with_bounds): Likewise.
11527 2017-08-01 Martin Liska <mliska@suse.cz>
11530 Make mempcpy more optimal (PR middle-end/70140).
11532 2017-08-01 Jakub Jelinek <jakub@redhat.com>
11535 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): For
11536 __builtin_vec_cmpne verify both arguments are compatible vectors
11537 before looking at TYPE_MODE on the element type. For __builtin_vec_ld
11538 verify arg1_type is a pointer or array type. For __builtin_vec_st,
11539 move computation of aligned to after checking the argument types.
11543 * config/rs6000/vsx.md (vextract_fp_from_shorth,
11544 vextract_fp_from_shortl): Add element mode after mode in gen_vec_init*
11547 2017-08-01 Jerome Lambourg <lambourg@adacore.com>
11548 Doug Rupp <rupp@adacore.com>
11549 Olivier Hainque <hainque@adacore.com>
11551 * config.gcc (arm-wrs-vxworks*): Rework to handle arm-wrs-vxworks7 as
11552 well as arm-wrs-vxworks. Update target_cpu_name from arm6 (arch v3) to
11554 * config/arm/vxworks.h (MAYBE_TARGET_BPABI_CPP_BUILTINS): New, helper
11555 for TARGET_OS_CPP_BUILTIN.
11556 (TARGET_OS_CPP_BUILTIN): Invoke MAYBE_TARGET_BPABI_CPP_BUILTINS(),
11557 refine CPU definitions for arm_arch5 and add those for arm_arch6 and
11559 (MAYBE_ASM_ABI_SPEC): New, helper for SUBTARGET_EXTRA_ASM_SPEC,
11560 passing required abi options to the assembler for EABI configurations.
11561 (EXTRA_CC1_SPEC): New macro, to help prevent the implicit production
11562 of .text.hot and .text.unlikely sections for kernel modules when
11563 using ARM style exceptions.
11564 (CC1_SPEC): Remove obsolete attempt at mimicking Diab toolchain
11565 options. Add EXTRA_CC1_SPEC.
11566 (VXWORKS_ENDIAN_SPEC): Adjust comment and remove handling of Diab
11568 (DWARF2_UNWIND_INFO): Redefine to handle the pre/post VxWorks 7
11570 (ARM_TARGET2_DWARF_FORMAT): Define.
11571 * config/arm/t-vxworks: Adjust multilib control to removal of the
11572 Diab command line options.
11574 2017-08-01 Martin Liska <mliska@suse.cz>
11576 PR gcov-profile/81561
11577 * gcov.c (unblock): Make unblocking safe as we need to preserve
11578 index correspondence of blocks and block_lists.
11580 2017-08-01 Richard Biener <rguenther@suse.de>
11582 PR tree-optimization/81181
11583 * tree-ssa-pre.c (compute_antic_aux): Defer clean() to ...
11584 (compute_antic): ... end of iteration here.
11586 2017-08-01 James Greenhalgh <james.greenhalgh@arm.com>
11588 * common.opt (ftree-vectorize): No longer set flag_tree_vectorize.
11589 (ftree-loop-vectorize): Set as EnabledBy ftree-vectorize.
11590 (ftree-slp-vectorize): Likewise.
11591 * omp-expand (expand_omp_simd): Remove flag_tree_vectorize, as it
11592 can no longer be set independent of flag_tree_loop_vectorize.
11593 * omp-general.c (emp_max_vf): Likewise.
11594 * opts.c (enable_fdo_optimizations): Remove references to
11595 flag_tree_vectorize, these are now implicit.
11596 (common_handle_option): Remove handling for OPT_ftree_vectorize,
11597 and leave it for the options machinery.
11599 2017-08-01 Martin Liska <mliska@suse.cz>
11601 PR middle-end/70140
11602 * builtins.c (expand_builtin_memcpy_args): Remove.
11603 (expand_builtin_memcpy): Call newly added function
11604 expand_builtin_memory_copy_args.
11605 (expand_builtin_memcpy_with_bounds): Likewise.
11606 (expand_builtin_mempcpy): Remove last argument.
11607 (expand_builtin_mempcpy_with_bounds): Likewise.
11608 (expand_builtin_memory_copy_args): New function created from
11609 expand_builtin_mempcpy_args with small modifications.
11610 (expand_builtin_mempcpy_args): Remove.
11611 (expand_builtin_stpcpy): Remove unused argument.
11612 (expand_builtin): Likewise.
11613 (expand_builtin_with_bounds): Likewise.
11615 2017-08-01 Uros Bizjak <ubizjak@gmail.com>
11618 * config/i386/i386.c (ix86_print_operand_address_as): For -masm=intel
11619 print "ds:" only for immediates in generic address space.
11621 2017-08-01 Uros Bizjak <ubizjak@gmail.com>
11624 * config/i386/i386.c (ix86_funciton_naked): New prototype.
11625 (ix86_function_ok_for_sibcall): Return false for naked functions.
11627 2017-08-01 Richard Biener <rguenther@suse.de>
11629 * tree-ssa-pre.c (print_pre_expr): Handle NULL expr.
11630 (compute_antic): Seed worklist with exit block predecessors.
11631 * cfganal.c (dfs_find_deadend): For a cycle return the source
11632 of the edge closing it.
11634 2017-08-01 Tamar Christina <tamar.christina@arm.com>
11636 * config/aarch64/aarch64.c
11637 (aarch64_can_const_movi_rtx_p): Move 0 check.
11639 2017-08-01 Bin Cheng <bin.cheng@arm.com>
11641 * tree.h (POINTER_TYPE_OVERFLOW_UNDEFINED): Delete.
11642 * fold-const.c (fold_comparison, fold_binary_loc): Delete use of
11644 * match.pd: Ditto in address comparison pattern.
11646 2017-08-01 Bin Cheng <bin.cheng@arm.com>
11648 PR tree-optimization/81627
11649 * tree-predcom.c (prepare_finalizers): Always rewrite into loop
11650 closed ssa form for store-store chain.
11652 2017-08-01 Bin Cheng <bin.cheng@arm.com>
11654 PR tree-optimization/81620
11655 * tree-predcom.c (add_ref_to_chain): Don't set has_max_use_after
11656 for store-store chain.
11658 2017-08-01 Jakub Jelinek <jakub@redhat.com>
11660 PR tree-optimization/81588
11661 * tree-ssa-reassoc.c (optimize_range_tests_var_bound): If
11662 ranges[i].in_p, invert comparison code ccode. For >/>=,
11663 swap rhs1 and rhs2 and comparison code unconditionally,
11664 for </<= don't do that. Don't swap rhs1/rhs2 again if
11665 ranges[i].in_p, instead invert comparison code ccode if
11666 opcode or oe->rank is BIT_IOR_EXPR.
11669 * optabs.def (vec_extract_optab, vec_init_optab): Change from
11670 a direct optab to conversion optab.
11671 * optabs.c (expand_vector_broadcast): Use convert_optab_handler
11672 with GET_MODE_INNER as last argument instead of optab_handler.
11673 * expmed.c (extract_bit_field_1): Likewise. Use vector from
11674 vector extraction if possible and optab is available.
11675 * expr.c (store_constructor): Use convert_optab_handler instead
11676 of optab_handler. Use vector initialization from smaller
11677 vectors if possible and optab is available.
11678 * tree-vect-stmts.c (vectorizable_load): Likewise.
11679 * doc/md.texi (vec_extract, vec_init): Document that the optabs
11680 now have two modes.
11681 * config/i386/i386.c (ix86_expand_vector_init): Handle expansion
11682 of vec_init from half-sized vectors with the same element mode.
11683 * config/i386/sse.md (ssehalfvecmode): Add V4TI case.
11684 (ssehalfvecmodelower, ssescalarmodelower): New mode attributes.
11685 (reduc_plus_scal_v8df, reduc_plus_scal_v4df, reduc_plus_scal_v2df,
11686 reduc_plus_scal_v16sf, reduc_plus_scal_v8sf, reduc_plus_scal_v4sf,
11687 reduc_<code>_scal_<mode>, reduc_umin_scal_v8hi): Add element mode
11688 after mode in gen_vec_extract* calls.
11689 (vec_extract<mode>): Renamed to ...
11690 (vec_extract<mode><ssescalarmodelower>): ... this.
11691 (vec_extract<mode><ssehalfvecmodelower>): New expander.
11692 (rotl<mode>3, rotr<mode>3, <shift_insn><mode>3, ashrv2di3): Add
11693 element mode after mode in gen_vec_init* calls.
11694 (VEC_INIT_HALF_MODE): New mode iterator.
11695 (vec_init<mode>): Renamed to ...
11696 (vec_init<mode><ssescalarmodelower>): ... this.
11697 (vec_init<mode><ssehalfvecmodelower>): New expander.
11698 * config/i386/mmx.md (vec_extractv2sf): Renamed to ...
11699 (vec_extractv2sfsf): ... this.
11700 (vec_initv2sf): Renamed to ...
11701 (vec_initv2sfsf): ... this.
11702 (vec_extractv2si): Renamed to ...
11703 (vec_extractv2sisi): ... this.
11704 (vec_initv2si): Renamed to ...
11705 (vec_initv2sisi): ... this.
11706 (vec_extractv4hi): Renamed to ...
11707 (vec_extractv4hihi): ... this.
11708 (vec_initv4hi): Renamed to ...
11709 (vec_initv4hihi): ... this.
11710 (vec_extractv8qi): Renamed to ...
11711 (vec_extractv8qiqi): ... this.
11712 (vec_initv8qi): Renamed to ...
11713 (vec_initv8qiqi): ... this.
11714 * config/rs6000/vector.md (VEC_base_l): New mode attribute.
11715 (vec_init<mode>): Renamed to ...
11716 (vec_init<mode><VEC_base_l>): ... this.
11717 (vec_extract<mode>): Renamed to ...
11718 (vec_extract<mode><VEC_base_l>): ... this.
11719 * config/rs6000/paired.md (vec_initv2sf): Renamed to ...
11720 (vec_initv2sfsf): ... this.
11721 * config/rs6000/altivec.md (splitter, altivec_copysign_v4sf3,
11722 vec_unpacku_hi_v16qi, vec_unpacku_hi_v8hi, vec_unpacku_lo_v16qi,
11723 vec_unpacku_lo_v8hi, mulv16qi3, altivec_vreve<mode>2): Add
11724 element mode after mode in gen_vec_init* calls.
11725 * config/aarch64/aarch64-simd.md (vec_init<mode>): Renamed to ...
11726 (vec_init<mode><Vel>): ... this.
11727 (vec_extract<mode>): Renamed to ...
11728 (vec_extract<mode><Vel>): ... this.
11729 * config/aarch64/iterators.md (Vel): New mode attribute.
11730 * config/s390/s390.c (s390_expand_vec_strlen, s390_expand_vec_movstr):
11731 Add element mode after mode in gen_vec_extract* calls.
11732 * config/s390/vector.md (non_vec_l): New mode attribute.
11733 (vec_extract<mode>): Renamed to ...
11734 (vec_extract<mode><non_vec_l>): ... this.
11735 (vec_init<mode>): Renamed to ...
11736 (vec_init<mode><non_vec_l>): ... this.
11737 * config/s390/s390-builtins.def (s390_vlgvb, s390_vlgvh, s390_vlgvf,
11738 s390_vlgvf_flt, s390_vlgvg, s390_vlgvg_dbl): Add element mode after
11740 * config/arm/iterators.md (V_elem_l): New mode attribute.
11741 * config/arm/neon.md (vec_extract<mode>): Renamed to ...
11742 (vec_extract<mode><V_elem_l>): ... this.
11743 (vec_extractv2di): Renamed to ...
11744 (vec_extractv2didi): ... this.
11745 (vec_init<mode>): Renamed to ...
11746 (vec_init<mode><V_elem_l>): ... this.
11747 (reduc_plus_scal_<mode>, reduc_plus_scal_v2di, reduc_smin_scal_<mode>,
11748 reduc_smax_scal_<mode>, reduc_umin_scal_<mode>,
11749 reduc_umax_scal_<mode>, neon_vget_lane<mode>, neon_vget_laneu<mode>):
11750 Add element mode after gen_vec_extract* calls.
11751 * config/mips/mips-msa.md (vec_init<mode>): Renamed to ...
11752 (vec_init<mode><unitmode>): ... this.
11753 (vec_extract<mode>): Renamed to ...
11754 (vec_extract<mode><unitmode>): ... this.
11755 * config/mips/loongson.md (vec_init<mode>): Renamed to ...
11756 (vec_init<mode><unitmode>): ... this.
11757 * config/mips/mips-ps-3d.md (vec_initv2sf): Renamed to ...
11758 (vec_initv2sfsf): ... this.
11759 (vec_extractv2sf): Renamed to ...
11760 (vec_extractv2sfsf): ... this.
11761 (reduc_plus_scal_v2sf, reduc_smin_scal_v2sf, reduc_smax_scal_v2sf):
11762 Add element mode after gen_vec_extract* calls.
11763 * config/mips/mips.md (unitmode): New mode iterator.
11764 * config/spu/spu.c (spu_expand_prologue, spu_allocate_stack,
11765 spu_builtin_extract): Add element mode after gen_vec_extract* calls.
11766 * config/spu/spu.md (inner_l): New mode attribute.
11767 (vec_init<mode>): Renamed to ...
11768 (vec_init<mode><inner_l>): ... this.
11769 (vec_extract<mode>): Renamed to ...
11770 (vec_extract<mode><inner_l>): ... this.
11771 * config/sparc/sparc.md (veltmode): New mode iterator.
11772 (vec_init<VMALL:mode>): Renamed to ...
11773 (vec_init<VMALL:mode><VMALL:veltmode>): ... this.
11774 * config/ia64/vect.md (vec_initv2si): Renamed to ...
11775 (vec_initv2sisi): ... this.
11776 (vec_initv2sf): Renamed to ...
11777 (vec_initv2sfsf): ... this.
11778 (vec_extractv2sf): Renamed to ...
11779 (vec_extractv2sfsf): ... this.
11780 * config/powerpcspe/vector.md (VEC_base_l): New mode attribute.
11781 (vec_init<mode>): Renamed to ...
11782 (vec_init<mode><VEC_base_l>): ... this.
11783 (vec_extract<mode>): Renamed to ...
11784 (vec_extract<mode><VEC_base_l>): ... this.
11785 * config/powerpcspe/paired.md (vec_initv2sf): Renamed to ...
11786 (vec_initv2sfsf): ... this.
11787 * config/powerpcspe/altivec.md (splitter, altivec_copysign_v4sf3,
11788 vec_unpacku_hi_v16qi, vec_unpacku_hi_v8hi, vec_unpacku_lo_v16qi,
11789 vec_unpacku_lo_v8hi, mulv16qi3): Add element mode after mode in
11790 gen_vec_init* calls.
11792 2017-08-01 Richard Biener <rguenther@suse.de>
11794 PR tree-optimization/81297
11795 * tree-vrp.c (get_single_symbol): Remove assert, instead drop
11796 TREE_OVERFLOW from INTEGER_CSTs.
11798 2017-07-31 Segher Boessenkool <segher@kernel.crashing.org>
11800 * config/rs6000/rs6000.c (enum rs6000_reg_type): Delete trailing comma.
11802 2017-07-31 Carl Love <cel@us.ibm.com>
11804 * config/rs6000/rs6000-c: Add support for built-in functions
11805 vector signed char vec_xl_be (signed long long, signed char *);
11806 vector unsigned char vec_xl_be (signed long long, unsigned char *);
11807 vector signed int vec_xl_be (signed long long, signed int *);
11808 vector unsigned int vec_xl_be (signed long long, unsigned int *);
11809 vector signed long long vec_xl_be (signed long long, signed long long *);
11810 vector unsigned long long vec_xl_be (signed long long, unsigned long long *);
11811 vector signed short vec_xl_be (signed long long, signed short *);
11812 vector unsigned short vec_xl_be (signed long long, unsigned short *);
11813 vector double vec_xl_be (signed long long, double *);
11814 vector float vec_xl_be (signed long long, float *);
11815 * config/rs6000/altivec.h (vec_xl_be): Add #define.
11816 * config/rs6000/rs6000-builtin.def (XL_BE_V16QI, XL_BE_V8HI, XL_BE_V4SI)
11817 XL_BE_V2DI, XL_BE_V4SF, XL_BE_V2DF, XL_BE): Add definitions
11819 * config/rs6000/rs6000.c (altivec_expand_xl_be_builtin): Add function.
11820 (altivec_expand_builtin): Add switch statement to call
11821 altivec_expand_xl_be for each builtin.
11822 (altivec_init_builtins): Add def_builtin for _builtin_vsx_le_be_v8hi,
11823 __builtin_vsx_le_be_v4si, __builtin_vsx_le_be_v2di,
11824 __builtin_vsx_le_be_v4sf, __builtin_vsx_le_be_v2df,
11825 __builtin_vsx_le_be_v16qi.
11826 * doc/extend.texi: Update the built-in documentation file for the
11827 new built-in functions.
11829 2017-07-31 Uros Bizjak <ubizjak@gmail.com>
11832 * config/i386/i386.c (ix86_allocate_stack_slots_for_args):
11834 (TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS): Define.
11836 2017-07-31 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
11838 * config.gcc: Add z14.
11839 * config/s390/driver-native.c (s390_host_detect_local_cpu): Add
11840 CPU model numbers for z13s and z14.
11841 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Replace
11843 * config/s390/s390-opts.h (enum processor_type): Rename
11844 PROCESSOR_ARCH12 to PROCESSOR_3906_Z14.
11845 * config/s390/s390.c (processor_table): Add field for CPU name to
11846 be passed to Binutils.
11847 (s390_asm_output_machine_for_arch): Use the new field in
11848 processor_table for Binutils.
11849 (s390_expand_builtin): Replace arch12 with z14.
11850 (s390_issue_rate): Rename PROCESSOR_ARCH12 to PROCESSOR_3906_Z14.
11851 (s390_get_sched_attrmask): Likewise.
11852 (s390_get_unit_mask): Likewise.
11853 * config/s390/s390.opt: Add z14 to processor_type enum.
11855 2017-07-31 Martin Jambor <mjambor@suse.cz>
11858 * ipa-fnsummary.c (ipa_fn_summary_generate): Set versionable
11859 regardless of optimization level.
11861 2017-07-31 Jan Hubicka <hubicka@ucw.cz>
11862 Martin Liska <mliska@suse.cz>
11864 * predict.def: Remove old comment and adjust probability.
11865 * gimplify.c (should_warn_for_implicit_fallthrough): Ignore
11866 PREDICT statements.
11868 2017-07-31 Uros Bizjak <ubizjak@gmail.com>
11871 * config/i386/i386.c (ix86_function_naked): New function.
11872 (ix86_can_use_return_insn_p): Return false for naked functions.
11873 (ix86_expand_prologue): Skip prologue for naked functions.
11874 (ix86_expand_epilogue): Skip epilogue for naked functions
11875 and emit trap instruction.
11876 (ix86_warn_func_return): New function.
11877 (ix86_attribute_table): Add "naked" attribute specification.
11878 (TARGET_WARN_FUNC_RETURN): Define.
11879 * doc/extend.texi (x86 Function Attributes) <naked>: Document it.
11881 2017-07-31 Martin Liska <mliska@suse.cz>
11883 * gimple-pretty-print.c (dump_gimple_label): Never dump BB info.
11884 (dump_gimple_bb_header): Always dump BB info.
11885 (pp_cfg_jump): Do not append info about BB when dumping a jump.
11887 2017-07-31 Martin Liska <mliska@suse.cz>
11890 * convert.c (convert_to_integer_1): Guard condition with flag_sanitize_p
11891 also with current_function_decl non-null equality.
11893 2017-07-31 Jakub Jelinek <jakub@redhat.com>
11896 * ubsan.c (ubsan_type_descriptor): For UBSAN_PRINT_ARRAY don't
11897 change type to the element type, instead add eltype variable and
11898 use it where we are interested in the element type.
11900 PR tree-optimization/81603
11901 * ipa-polymorphic-call.c
11902 (ipa_polymorphic_call_context::ipa_polymorphic_call_context): Perform
11903 offset arithmetic in offset_int, bail out if the resulting bit offset
11904 doesn't fit into shwi.
11906 2017-07-31 Martin Liska <mliska@suse.cz>
11908 * gimplify.c (mostly_copy_tree_r): Remove Java specific hunk.
11909 (gimplify_save_expr): Fix comment.
11911 2017-07-30 H.J. Lu <hongjiu.lu@intel.com>
11914 * config/i386/i386.c (ix86_function_arg): Update arguments for
11916 (ix86_compute_frame_layout): Set the initial stack offset to
11917 INCOMING_FRAME_SP_OFFSET. Update red-zone offset with
11918 INCOMING_FRAME_SP_OFFSET.
11919 (ix86_expand_epilogue): Don't pop the 'ERROR_CODE' off the
11920 stack before exception handler returns.
11921 * config/i386/i386.h (INCOMING_FRAME_SP_OFFSET): Add the
11922 the 'ERROR_CODE' for exception handler.
11924 2017-07-30 Uros Bizjak <ubizjak@gmail.com>
11926 * config/i386/i386.h (ASM_PRINTF_EXTENSIONS): New macro.
11927 (ASM_OUTPUT_REG_PUSH): Rewrite with new operand modifiers.
11928 (ASM_OUTPUT_REG_POP): Ditto.
11929 * config/i386/i386.c (ix86_asm_output_function_label): Use fputs
11930 instead of asm_fprintf to output pure string.
11932 2017-07-29 Jakub Jelinek <jakub@redhat.com>
11934 * debug.h (struct gcc_debug_hooks): Add IMPLICIT argument
11935 to imported_module_or_decl hook.
11936 (debug_nothing_tree_tree_tree_bool): Remove.
11937 (debug_nothing_tree_tree_tree_bool_bool): New declaration.
11938 * debug.c (do_nothing_debug_hooks): Use
11939 debug_nothing_tree_tree_tree_bool_bool instead of
11940 debug_nothing_tree_tree_tree_bool.
11941 * vmsdbgout.c (vmsdbg_debug_hooks): Likewise.
11942 * dbxout.c (dbx_debug_hooks, xcoff_debug_hooks): Likewise.
11943 * sdbout.c (sdb_debug_hooks): Likewise.
11944 * dwarf2out.c (dwarf2_lineno_debug_hooks): Likewise.
11945 (gen_namespace_die): Add DW_AT_export_symbols attribute if
11947 (dwarf2out_imported_module_or_decl): Add IMPLICIT argument,
11948 if true, -gdwarf-5 and decl will have DW_AT_export_symbols
11949 attribute, don't add anything.
11951 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11953 * fold-const.c (fold_build1_stat_loc): Remove _stat from name.
11954 (fold_build2_stat_loc): Likewise.
11955 (fold_build3_stat_loc): Likewise.
11956 * fold-const.h (fold_build1, fold_build2, fold_build3): Adjust.
11957 (fold_build1_loc): Remove macro.
11958 (fold_build2_loc): Likewise.
11959 (fold_build3_loc): Likewise.
11961 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11963 * gimple.c (gimple_build_debug_bind_stat): Remove _stat from name.
11964 (gimple_build_debug_bind_source_stat): Likewise.
11965 * gimple.h (gimple_build_debug_bind): Remove macro.
11966 (gimple_build_debug_bind_source): Likewise.
11968 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11970 * bitmap.c (bitmap_alloc): Adjust.
11971 (bitmap_gc_alloc): Likewise.
11972 * bitmap.h (bitmap_initialize_stat): Remove _stat from name.
11974 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11976 * bitmap.c (bitmap_obstack_alloc_stat): Rename to bitmap_alloc.
11977 (bitmap_gc_alloc_stat): Rename to bitmap_gc_alloc.
11978 * bitmap.h (bitmap_obstack_alloc_stat): Adjust prototype.
11979 (bitmap_gc_alloc_stat): Likewise.
11980 (BITMAP_ALLOC, BITMAP_GGC_ALLOC): Adjust.
11982 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11984 * rtl.c (shallow_copy_rtx_stat): Remove _stat from name.
11985 * rtl.h (shallow_copy_rtx): Remove macro.
11987 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11989 * emit-rtl.c (gen_raw_REG): Adjust.
11990 * gengenrtl.c (gendef): Likewise.
11991 * rtl.c (rtx_alloc_stat): Remove _stat from name.
11992 * rtl.h (rtx_alloc): Remove macro.
11994 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11996 * tree.c (build_tree_list_vec_stat): Remove _stat from name.
11997 (build_tree_list_stat): Likewise.
11998 * tree.h (build_tree_list): Remove macro.
11999 (build_tree_list_vec): Likewise.
12001 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12003 * tree.c (make_vector_stat): Remove _stat from name.
12004 (build_vector_stat): Likewise.
12005 * tree.h (make_vector_stat): Remove macro.
12006 (build_vector_stat): Likewise.
12008 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12010 * tree.h (build_var_debug_value): Remove prototype.
12012 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12014 * tree.c (tree_cons_stat): Remove _stat from name.
12015 * tree.h (tree_cons): Remove macro.
12017 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12019 * tree.c (build_vl_exp_stat): Remove _stat from name.
12020 * tree.h (build_vl_exp): Remove macro.
12022 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12024 * tree.c (build_decl_stat): Remove _stat from name.
12025 * tree.h (build_decl): Remove macro.
12027 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12029 * gimple.c (gimple_build_with_ops_stat): Adjust.
12030 (gimple_alloc_stat): Remove _stat from name.
12031 * gimple.h (gimple_alloc): Remove macro.
12033 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12035 * tree.c (make_tree_vec_stat): Remove _stat from name.
12036 (grow_tree_vec_stat): Likewise.
12037 * tree.h (make_tree_vec_stat): Adjust prototype.
12038 (grow_tree_vec_stat): Likewise.
12039 (make_tree_vec): Remove macro.
12040 (grow_tree_vec): Likewise.
12042 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12044 * fold-const.c (fold_build1_stat_loc): Adjust.
12045 (fold_build2_stat_loc): Likewise.
12046 (fold_build3_stat_loc): Likewise.
12047 * tree.c (build0_stat): Remove _stat from name.
12048 (build1_stat): Likewise.
12049 (build2_stat): Likewise.
12050 (build3_stat): Likewise.
12051 (build4_stat): Likewise.
12052 (build5_stat): Likewise.
12053 * tree.h (build1_loc): Remove macro, and rename _stat function
12055 (build2_loc): Likewise.
12056 (build3_loc): Likewise.
12057 (build4_loc): Likewise.
12058 (build5_loc): Likewise.
12060 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12062 * tree.c (make_int_cst_stat): Remove _stat from name.
12063 * tree.h (make_int_cst_stat): Adjust prototype.
12064 (make_int_cst): Remove macro.
12066 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12068 * tree.c (make_tre_binfo_stat): Remove _stat from name.
12069 * tree.h (make_tree_binfo_stat): Adjust prototype.
12070 (make_tree_binfo): Remove.
12072 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12074 * tree.c (copy_node_stat): Rename to copy_node.
12075 (build_distinct_type_copy): Adjust.
12076 * tree.h (copy_node_stat): Adjust prototype.
12077 (copy_node): Remove macro.
12079 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
12081 * tree.c (make_node_stat): rename to make_node.
12082 (build_tree_list_stat): Adjust.
12083 (build0_stat): Likewise.
12084 (build2_stat): Likewise.
12085 (build3_stat): Likewise.
12086 (build4_stat): Likewise.
12087 (build5_stat): Likewise.
12088 (build_decl_stat): Likewise.
12089 * tree.h (make_node_stat): Adjust prototype.
12090 (make_node): remove macro.
12092 2017-07-28 Peter Bergner <bergner@vnet.ibm.com>
12094 * config/rs6000/ppc-auxv.h (PPC_FEATURE2_DARN): New define.
12095 (PPC_FEATURE2_SCV): Likewise.
12096 * config/rs6000/rs6000.c (cpu_supports_info): Use them.
12098 2017-07-28 Tamar Christina <tamar.christina@arm.com>
12100 * config/aarch64/aarch64.c
12101 (aarch64_internal_mov_immediate): Add new special pattern.
12102 * config/aarch64/aarch64.md (*movdi_aarch64):
12103 Add reg/32bit const mov case.
12105 2017-07-28 Tamar Christina <tamar.christina@arm.com>
12106 Richard Sandiford <richard.sandiford@linaro.org>
12108 * config/aarch64/aarch64.md (mov<mode>): Generalize.
12109 (*movhf_aarch64, *movsf_aarch64, *movdf_aarch64):
12110 Add integer and movi cases.
12111 (movi-split-hf-df-sf split, fp16): New.
12112 (enabled): Added TARGET_FP_F16INST.
12113 * config/aarch64/iterators.md (GPF_HF): New.
12114 * config/aarch64/predicates.md (aarch64_reg_or_fp_float): New.
12116 2017-07-28 Tamar Christina <tamar.christina@arm.com>
12118 * config/aarch64/aarch64.c
12119 (aarch64_simd_container_mode): Add prototype.
12120 (aarch64_expand_mov_immediate): Add HI support.
12121 (aarch64_reinterpret_float_as_int, aarch64_float_const_rtx_p: New.
12122 (aarch64_can_const_movi_rtx_p): New.
12123 (aarch64_preferred_reload_class):
12124 Remove restrictions of using FP registers for certain SIMD operations.
12125 (aarch64_rtx_costs): Added new cost for CONST_DOUBLE moves.
12126 (aarch64_valid_floating_const): Add integer move validation.
12127 (aarch64_simd_imm_scalar_p): Remove.
12128 (aarch64_output_scalar_simd_mov_immediate): Generalize function.
12129 (aarch64_legitimate_constant_p): Expand list of supported cases.
12130 * config/aarch64/aarch64-protos.h
12131 (aarch64_float_const_rtx_p, aarch64_can_const_movi_rtx_p): New.
12132 (aarch64_reinterpret_float_as_int): New.
12133 (aarch64_simd_imm_scalar_p): Remove.
12134 * config/aarch64/constraints.md (Uvi): New.
12135 (Dd): Split into Ds and new Dd.
12136 * config/aarch64/aarch64.md (*movsi_aarch64):
12138 (*movdi_aarch64): Add SIMD mov case.
12140 2017-07-28 Bin Cheng <bin.cheng@arm.com>
12142 * tree-predcom.c: (struct chain): Handle store-store chain in which
12143 stores for elimination only store loop invariant values.
12144 (execute_pred_commoning_chain): Ditto.
12145 (prepare_initializers_chain_store_elim): Ditto.
12146 (prepare_finalizers): Ditto.
12147 (is_inv_store_elimination_chain): New function.
12148 (initialize_root_vars_store_elim_1): New function.
12150 2017-07-28 Bin Cheng <bin.cheng@arm.com>
12152 * tree-predcom.c: Revise general description of the pass.
12153 (enum chain_type): New enum type for store elimination.
12154 (struct chain): New field supporting store elimination.
12155 (struct component): Ditto.
12156 (dump_chain): Dump store-stores chain.
12157 (release_chain): Release resources.
12158 (split_data_refs_to_components): Compute and create component
12159 contains only stores for elimination.
12160 (get_chain_last_ref_at): New function.
12161 (make_invariant_chain): Initialization.
12162 (make_rooted_chain): Specify chain type in parameter and record it.
12163 (add_looparound_copies): Skip for store-stores chain.
12164 (determine_roots_comp): Compute type of chain and pass it to
12166 (initialize_root_vars_store_elim_2): New function.
12167 (finalize_eliminated_stores): New function.
12168 (remove_stmt): Handle store for elimination.
12169 (execute_pred_commoning_chain): Execute predictive commoning on
12170 store-store chains.
12171 (determine_unroll_factor): Skip unroll for store-stores chain.
12172 (prepare_initializers_chain_store_elim): New function.
12173 (prepare_initializers_chain): Hanlde store-store chain.
12174 (prepare_finalizers_chain, prepare_finalizers): New function.
12175 (tree_predictive_commoning_loop): Return integer value indicating
12176 if loop is unrolled or lcssa form is corrupted.
12177 (tree_predictive_commoning): Rewrite for lcssa form if necessary.
12179 2017-07-28 Bin Cheng <bin.cheng@arm.com>
12181 * tree-predcom.c (initialize_root): Delete.
12182 (execute_pred_commoning_chain): Initialize root vars and replace
12183 reference of non-combined chain directly, rather than call above
12186 2017-07-28 Bin Cheng <bin.cheng@arm.com>
12188 * tree-predcom.c (ref_at_iteration): Add parameter NITERS. Compute
12189 memory reference to DR at (NITERS + ITERS)-th iteration of loop.
12191 2017-07-28 Bin Cheng <bin.cheng@arm.com>
12193 * tree-predcom.c (struct chain): New field init_seq.
12194 (release_chain): Release init_seq.
12195 (prepare_initializers_chain): Record intialization stmts in above
12197 (insert_init_seqs): New function.
12198 (tree_predictive_commoning_loop): Call insert_init_seqs.
12200 2017-07-28 Bin Cheng <bin.cheng@arm.com>
12202 * tree-predcom.c (determine_roots_comp): Skip trivial components.
12204 2017-07-28 Richard Biener <rguenther@suse.de>
12206 * match.pd: Remove superfluous :c.
12207 * genmatch.c (simplify::id): Add member.
12208 (lower_commutative, lower_opt_convert, lower_cond, lower_for):
12210 (current_id): New global.
12211 (dt_node::parent): Move from ...
12212 (dt_operand::parent): ... here. Add for_id member.
12213 (is_a_helper <dt_operand *>::test): DT_TRUE is also a dt_operand.
12214 (decision_tree::find_node): Relax order requirement when
12215 merging DT_TRUE nodes to ones inbetween the current simplify
12216 and the one we try to merge with. Add diagnostic whenever
12217 we need to enforce pattern order by not merging.
12218 (decision_tree::insert): Set current_id.
12219 (decision_tree::print_node): Dump parent node and for_id.
12220 (parser::last_id): Add member.
12221 (parser::push_simplify): Assign unique id.
12222 (parser::parser): Initialize last_id.
12224 2017-07-28 Martin Liska <mliska@suse.cz>
12227 * sanopt.c (sanitize_rewrite_addressable_params): Set VALUE_EXPR after
12228 gimple_build_debug_bind.
12230 2017-07-28 Richard Biener <rguenther@suse.de>
12232 PR tree-optimization/81502
12233 * match.pd: Add pattern combining BIT_INSERT_EXPR with
12235 * tree-cfg.c (verify_expr): Verify types of BIT_FIELD_REF
12237 (verify_gimple_assign_ternary): Likewise for BIT_INSERT_EXPR pos.
12238 * gimple-fold.c (maybe_canonicalize_mem_ref_addr): Use bitsizetype
12239 for BIT_FIELD_REF args.
12240 * fold-const.c (make_bit_field_ref): Likewise.
12241 * tree-vect-stmts.c (vectorizable_simd_clone_call): Likewise.
12243 2017-07-28 Jakub Jelinek <jakub@redhat.com>
12246 * sanopt.c (pass_sanopt::execute): Handle IFN_UBSAN_PTR.
12247 * tree-ssa-alias.c (call_may_clobber_ref_p_1): Likewise.
12248 * flag-types.h (enum sanitize_code): Add SANITIZER_POINTER_OVERFLOW.
12249 Or it into SANITIZER_UNDEFINED.
12250 * ubsan.c: Include gimple-fold.h and varasm.h.
12251 (ubsan_expand_ptr_ifn): New function.
12252 (instrument_pointer_overflow): New function.
12253 (maybe_instrument_pointer_overflow): New function.
12254 (instrument_object_size): Formatting fix.
12255 (pass_ubsan::execute): Call instrument_pointer_overflow
12256 and maybe_instrument_pointer_overflow.
12257 * internal-fn.c (expand_UBSAN_PTR): New function.
12258 * ubsan.h (ubsan_expand_ptr_ifn): Declare.
12259 * sanitizer.def (__ubsan_handle_pointer_overflow,
12260 __ubsan_handle_pointer_overflow_abort): New builtins.
12261 * tree-ssa-tail-merge.c (merge_stmts_p): Handle IFN_UBSAN_PTR.
12262 * internal-fn.def (UBSAN_PTR): New internal function.
12263 * opts.c (sanitizer_opts): Add pointer-overflow.
12264 * lto-streamer-in.c (input_function): Handle IFN_UBSAN_PTR.
12265 * fold-const.c (build_range_check): Compute pointer range check in
12266 integral type if pointer arithmetics would be needed. Formatting
12269 2017-07-28 Martin Liska <mliska@suse.cz>
12272 * sanopt.c (sanitize_rewrite_addressable_params): Do not rewrite
12273 parameters that are of a variable-length.
12275 2017-07-28 Sebastian Huber <sebastian.huber@embedded-brains.de>
12277 * config.gcc (powerpc-*-rtems*): Remove rs6000/eabi.h. Add
12279 * config/rs6000/rtems.h (ASM_DECLARE_FUNCTION_SIZE): New macro.
12280 (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
12281 (CRT_CALL_STATIC_FUNCTION): Likewise.
12282 (ASM_DEFAULT_SPEC): New define.
12283 (ASM_SPEC32): Likewise.
12284 (ASM_SPEC64): Likewise.
12285 (ASM_SPEC_COMMON): Likewise.
12286 (ASM_SPEC): Likewise.
12287 (INVALID_64BIT): Likewise.
12288 (LINK_OS_DEFAULT_SPEC): Likewise.
12289 (LINK_OS_SPEC32): Likewise.
12290 (LINK_OS_SPEC64): Likewise.
12291 (POWERPC_LINUX): Likewise.
12292 (PTRDIFF_TYPE): Likewise.
12293 (RESTORE_FP_PREFIX): Likewise.
12294 (RESTORE_FP_SUFFIX): Likewise.
12295 (SAVE_FP_PREFIX): Likewise.
12296 (SAVE_FP_SUFFIX): Likewise.
12297 (SIZE_TYPE): Likewise.
12298 (SUBSUBTARGET_OVERRIDE_OPTIONS): Likewise.
12299 (TARGET_64BIT): Likewise.
12300 (TARGET_64BIT): Likewise.
12301 (TARGET_AIX): Likewise.
12302 (WCHAR_TYPE_SIZE): Likewise.
12303 (WCHAR_TYPE): Undefine.
12304 (TARGET_OS_CPP_BUILTINS): Add 64-bit PowerPC defines.
12305 (CPP_OS_DEFAULT_SPEC): Use previous CPP_OS_RTEMS_SPEC.
12306 (CPP_OS_RTEMS_SPEC): Delete.
12307 (SUBSUBTARGET_EXTRA_SPECS): Remove cpp_os_rtems. Add
12308 asm_spec_common, asm_spec32, asm_spec64, link_os_spec32, and
12310 * config/rs6000/t-rtems: Add mcpu=e6500/m64 multilibs.
12312 2017-07-28 Jakub Jelinek <jakub@redhat.com>
12314 PR tree-optimization/81578
12315 * tree-parloops.c (build_new_reduction): Bail out if
12316 reduction_code isn't one of the standard OpenMP reductions.
12317 Move the details printing after that decision.
12319 2017-07-27 Peter Bergner <bergner@vnet.ibm.com>
12321 * config/rs6000/predicates.md (volatile_mem_operand): Remove code
12322 related to reload_in_progress.
12323 (splat_input_operand): Likewise.
12324 * config/rs6000/rs6000-protos.h (rs6000_secondary_memory_needed_rtx):
12326 * config/rs6000/rs6000.c (machine_function): Remove sdmode_stack_slot
12328 (TARGET_EXPAND_TO_RTL_HOOK): Delete.
12329 (TARGET_INSTANTIATE_DECLS): Likewise.
12330 (legitimate_indexed_address_p): Delete reload_in_progress code.
12331 (rs6000_debug_legitimate_address_p): Likewise.
12332 (rs6000_eliminate_indexed_memrefs): Likewise.
12333 (rs6000_emit_le_vsx_store): Likewise.
12334 (rs6000_emit_move_si_sf_subreg): Likewise.
12335 (rs6000_emit_move): Likewise.
12336 (register_to_reg_type): Likewise.
12337 (rs6000_pre_atomic_barrier): Likewise.
12338 (rs6000_machopic_legitimize_pic_address): Likewise.
12339 (rs6000_allocate_stack_temp): Likewise.
12340 (rs6000_address_for_fpconvert): Likewise.
12341 (rs6000_address_for_altivec): Likewise.
12342 (rs6000_secondary_memory_needed_rtx): Delete function.
12343 (rs6000_check_sdmode): Likewise.
12344 (rs6000_alloc_sdmode_stack_slot): Likewise.
12345 (rs6000_instantiate_decls): Likewise.
12346 * config/rs6000/rs6000.h (SECONDARY_MEMORY_NEEDED_RTX): Delete.
12347 * config/rs6000/rs6000.md (splitter for *movsi_got_internal):
12348 Delete reload_in_progress.
12349 (*vec_reload_and_plus_<mptrsize>): Likewise.
12350 * config/rs6000/vsx.md (vsx_mul_v2di): Likewise.
12351 (vsx_div_v2di): Likewise.
12352 (vsx_udiv_v2di): Likewise.
12354 2017-07-27 Peter Bergner <bergner@vnet.ibm.com>
12356 * config/rs6000/rs6000.opt (mlra): Replace with stub.
12357 * config/rs6000/rs6000-cpus.def (POWERPC_MASKS): Delete OPTION_MASK_LRA.
12358 * config/rs6000/rs6000.c (TARGET_LRA_P): Delete.
12359 (rs6000_debug_reg_global): Delete print of LRA status.
12360 (rs6000_option_override_internal): Delete dead LRA related code.
12361 (rs6000_lra_p): Delete function.
12362 * doc/invoke.texi (RS/6000 and PowerPC Options): Delete -mlra.
12364 2017-07-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
12366 * config.gcc (riscv*-*-elf*): Add (riscv*-*-rtems*).
12367 * config/riscv/rtems.h: New file.
12369 2017-07-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12370 Sudakshina Das <sudi.das@arm.com>
12372 * config/aarch64/aarch64.md
12373 (define_split for and<mode>3nr_compare): Move
12374 non aarch64_logical_operand to a register.
12375 (define_split for and_<SHIFT:optab><mode>3nr_compare0): Move non
12376 register immediate operand to a register.
12377 * config/aarch64/predicates.md (aarch64_mov_imm_operand): New.
12379 2017-07-27 Peter Bergner <bergner@vnet.ibm.com>
12381 PR middle-end/81564
12382 * tree-cfg.c (group_case_labels_stmt): Handle already deleted blocks.
12384 2017-07-27 Richard Biener <rguenther@suse.de>
12386 PR tree-optimization/81573
12387 PR tree-optimization/81494
12388 * tree-vect-loop.c (vect_create_epilog_for_reduction): Handle
12389 multi defuse cycle case.
12391 2017-07-27 Richard Biener <rguenther@suse.de>
12393 PR tree-optimization/81571
12394 * tree-vect-slp.c (vect_build_slp_tree): Properly verify reduction
12397 2017-07-27 Eric Botcazou <ebotcazou@adacore.com>
12399 * config/sparc/sparc.c (sparc_option_override): Set MASK_FSMULD flag
12400 earlier and only if MASK_FPU is set. Adjust formatting.
12402 2017-07-27 Martin Liska <mliska@suse.cz>
12404 * opt-functions.awk: Add validation of value of Init.
12405 * optc-gen.awk: Pass new argument.
12407 2017-07-27 Martin Liska <mliska@suse.cz>
12409 * auto-profile.c (autofdo_source_profile::update_inlined_ind_target):
12410 Fix wrong condition.
12412 2017-07-27 Martin Liska <mliska@suse.cz>
12414 * auto-profile.c (afdo_annotate_cfg): Assign zero counts to
12415 BBs and edges seen by autoFDO.
12417 2017-07-27 Richard Biener <rguenther@suse.de>
12419 PR tree-optimization/81502
12420 * tree-ssa.c (non_rewritable_lvalue_p): Handle BIT_INSERT_EXPR
12421 with incompatible but same sized type.
12422 (execute_update_addresses_taken): Likewise.
12424 2017-07-27 James Greenhalgh <james.greenhalgh@arm.com>
12426 * tree-ssa-loop-ch.c (pass_ch::process_loop_p): Guard on
12427 flag_tree_loop_vectorize rather than flag_tree_vectorize.
12429 2017-07-27 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
12432 * config/s390/s390.md ("*atomic_compare_and_swap<mode>_1")
12433 ("*atomic_compare_and_swapdi_2", "*atomic_compare_and_swapsi_3"):
12434 Change s_operand to memory_operand.
12436 2017-07-27 Richard Sandiford <richard.sandiford@linaro.org>
12438 * config/rs6000/rs6000-protos.h (rs6000_emit_le_vsx_permute): Declare.
12439 * config/rs6000/rs6000.c (rs6000_gen_le_vsx_permute): Replace with...
12440 (rs6000_emit_le_vsx_permute): ...this. Take the destination as input.
12441 Emit instructions rather than returning an expression. Handle TFmode
12442 and KFmode by casting to TImode.
12443 (rs6000_emit_le_vsx_load): Update to use rs6000_emit_le_vsx_permute.
12444 (rs6000_emit_le_vsx_store): Likewise.
12445 * config/rs6000/vsx.md (VSX_TI): New iterator.
12446 (*vsx_le_permute_<mode>): Use it instead of VSX_LE_128.
12447 (*vsx_le_undo_permute_<mode>): Likewise.
12448 (*vsx_le_perm_load_<mode>): Use rs6000_emit_le_vsx_permute to
12449 emit the split sequence.
12450 (*vsx_le_perm_store_<mode>): Likewise.
12452 2017-07-27 Jakub Jelinek <jakub@redhat.com>
12454 PR tree-optimization/81555
12455 PR tree-optimization/81556
12456 * tree-ssa-reassoc.c (rewrite_expr_tree): Add NEXT_CHANGED argument,
12457 if true, force CHANGED for the recursive invocation.
12458 (reassociate_bb): Remember original length of ops array, pass
12459 len != orig_len as NEXT_CHANGED in rewrite_expr_tree call.
12461 * attribs.c (decl_attributes): Imply noinline, noclone and no_icf
12462 attributes for noipa attribute. For naked attribute use
12463 lookup_attribute first before lookup_attribute_spec.
12464 * final.c (rest_of_handle_final): Disable IPA RA for functions with
12466 * ipa-visibility.c (non_local_p): Fix comment typos. Return true
12467 for functions with noipa attribute.
12468 (cgraph_externally_visible_p): Return true for functions with noipa
12470 * cgraph.c (cgraph_node::get_availability): Return AVAIL_INTERPOSABLE
12471 for functions with noipa attribute.
12472 * doc/extend.texi: Document noipa function attribute.
12473 * tree-ssa-structalias.c (refered_from_nonlocal_fn): Set *nonlocal_p
12474 also for functions with noipa attribute.
12475 (ipa_pta_execute): Set nonlocal_p also for nodes with noipa attribute.
12477 2017-07-26 Andrew Pinski <apinski@cavium.com>
12479 * config/aarch64/aarch64.c (thunderx_vector_cost): Decrease cost of
12480 vec_unalign_load_cost and vec_unalign_store_cost.
12482 2017-07-26 Michael Meissner <meissner@linux.vnet.ibm.com>
12484 * config/rs6000/rs6000-cpus.def (ISA_2_7_MASKS_SERVER): Delete
12485 -mvsx-small-integer option.
12486 (ISA_3_0_MASKS_IEEE): Likewise.
12487 (OTHER_VSX_VECTOR_MASKS): Likewise.
12488 (POWERPC_MASKS): Likewise.
12489 * config/rs6000/rs6000.opt (-mvsx-small-integer): Likewise.
12490 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Simplify
12491 code, only testing for DImode being allowed in non-VSX floating
12493 (rs6000_init_hard_regno_mode_ok): Change TARGET_VSX_SMALL_INTEGER
12494 to TARGET_P8_VECTOR test. Remove redundant VSX test inside of
12496 (rs6000_option_override_internal): Delete -mvsx-small-integer.
12497 (rs6000_expand_vector_set): Change TARGET_VSX_SMALL_INTEGER to
12498 TARGET_P8_VECTOR test.
12499 (rs6000_secondary_reload_simple_move): Likewise.
12500 (rs6000_preferred_reload_class): Delete TARGET_VSX_SMALL_INTEGER,
12501 since TARGET_P9_VECTOR was already tested.
12502 (rs6000_opt_masks): Remove -mvsx-small-integer.
12503 * config/rs6000/vsx.md (vsx_extract_<mode>): Delete
12504 TARGET_VSX_SMALL_INTEGER, since a test for TARGET_P9_VECTOR was
12506 (vsx_extract_<mode>_p9): Delete TARGET_VSX_SMALL_INTEGER, since a
12507 test for TARGET_VEXTRACTUB was used, and that uses
12509 (p9 extract splitter): Likewise.
12510 (vsx_extract_<mode>_di_p9): Likewise.
12511 (vsx_extract_<mode>_store_p9): Likewise.
12512 (vsx_extract_si): Delete TARGET_VSX_SMALL_INTEGER, since a test
12513 for TARGET_P9_VECTOR was used. Delete code that is now dead with
12514 the elimination of TARGET_VSX_SMALL_INTEGER.
12515 (vsx_extract_<mode>_p8): Likewise.
12516 (vsx_ext_<VSX_EXTRACT_I:VS_scalar>_fl_<FL_CONV:mode>): Likewise.
12517 (vsx_ext_<VSX_EXTRACT_I:VS_scalar>_ufl_<FL_CONV:mode>): Likewise.
12518 (vsx_set_<mode>_p9): Likewise.
12519 (vsx_set_v4sf_p9): Likewise.
12520 (vsx_set_v4sf_p9_zero): Likewise.
12521 (vsx_insert_extract_v4sf_p9): Likewise.
12522 (vsx_insert_extract_v4sf_p9_2): Likewise.
12523 * config/rs6000/rs6000.md (sign extend splitter): Change
12524 TARGET_VSX_SMALL_INTEGER to TARGET_P8_VECTOR test.
12525 (floatsi<mode>2_lfiwax_mem): Likewise.
12526 (floatunssi<mode>2_lfiwzx_mem): Likewise.
12527 (float<QHI:mode><FP_ISA3:mode>2): Delete TARGET_VSX_SMALL_INTEGER,
12528 since a test for TARGET_P9_VECTOR was used.
12529 (float<QHI:mode><FP_ISA3:mode>2_internal): Likewise.
12530 (floatuns<QHI:mode><FP_ISA3:mode>2): Likewise.
12531 (floatuns<QHI:mode><FP_ISA3:mode>2_internal): Likewise.
12532 (fix_trunc<mode>si2): Change TARGET_VSX_SMALL_INTEGER to
12533 TARGET_P8_VECTOR test.
12534 (fix_trunc<mode>si2_stfiwx): Likewise.
12535 (fix_trunc<mode>si2_internal): Likewise.
12536 (fix_trunc<SFDF:mode><QHI:mode>2): Delete
12537 TARGET_VSX_SMALL_INTEGER, since a test for TARGET_P9_VECTOR was
12539 (fix_trunc<SFDF:mode><QHI:mode>2_internal): Likewise.
12540 (fixuns_trunc<mode>si2): Change TARGET_VSX_SMALL_INTEGER to
12541 TARGET_P8_VECTOR test.
12542 (fixuns_trunc<mode>si2_stfiwx): Likewise.
12543 (fixuns_trunc<SFDF:mode><QHI:mode>2): Delete
12544 TARGET_VSX_SMALL_INTEGER, since a test for TARGET_P9_VECTOR was
12546 (fixuns_trunc<SFDF:mode><QHI:mode>2_internal): Likewise.
12547 (fctiw<u>z_<mode>_smallint): Delete TARGET_VSX_SMALL_INTEGER,
12548 since a test for TARGET_P9_VECTOR was used.
12549 (splitter for loading small constants): Likewise.
12551 2017-07-26 Andrew Pinski <apinski@cavium.com>
12553 * config/aarch64/aarch64.c (thunderx_vector_cost): Fix
12556 2017-07-26 H.J. Lu <hongjiu.lu@intel.com>
12559 * config/i386/i386.c (sp_valid_at): Properly check CFA offset.
12560 (fp_valid_at): Likewise.
12562 2017-07-26 James Greenhalgh <james.greenhalgh@arm.com>
12564 * config/aarch64/aarch64.c (cortexa57_addrcost_table): Remove.
12565 (qdf24xx_addrcost_table): Likewise.
12566 (cortexa57_tunings): Update to use generic_branch_cost.
12567 (cortexa72_tunings): Likewise.
12568 (cortexa73_tunings): Likewise.
12569 (qdf24xx_tunings): Likewise.
12571 2017-07-26 James Greenhalgh <james.greenhalgh@arm.com>
12573 * config/aarch64/aarch64.c (cortexa57_branch_cost): Remove.
12574 (thunderx2t99_branch_cost): Likewise.
12575 (cortexa35_tunings): Update to use generic_branch_cost.
12576 (cortexa53_tunings): Likewise.
12577 (cortexa57_tunings): Likewise.
12578 (cortexa72_tunings): Likewise.
12579 (cortexa73_tunings): Likewise.
12580 (thunderx2t99_tunings): Likewise.
12582 2017-07-26 Sebastian Huber <sebastian.huber@embedded-brains.de>
12584 * config/sparc/sparc.c (dump_target_flag_bits): Dump MASK_FSMULD.
12585 (sparc_option_override): Honour MASK_FSMULD.
12586 * config/sparc/sparc.h (MASK_FEATURES): Add MASK_FSMULD.
12587 * config/sparc/sparc.md (muldf3_extend): Use TARGET_FSMULD.
12588 * config/sparc/sparc.opt (mfsmuld): New option.
12589 * doc/invoke.texi (mfsmuld): Document option.
12591 2017-07-26 Marek Polacek <polacek@redhat.com>
12593 PR middle-end/70992
12594 * tree.c (build2_stat): Don't set TREE_CONSTANT on divisions by zero.
12596 2017-07-26 Richard Biener <rguenther@suse.de>
12598 * gimple-match-head.c (do_valueize): Return OP if valueize
12600 (get_def): New helper to get at the def stmt of a SSA name
12601 if valueize allows.
12602 * genmatch.c (dt_node::gen_kids_1): Use get_def instead of
12603 do_valueize to get at the def stmt.
12604 (dt_operand::gen_gimple_expr): Simplify do_valueize calls.
12606 2017-07-26 Wilco Dijkstra <wdijkstr@arm.com>
12608 PR middle-end/46932
12609 * auto-inc-dec.c (parse_add_or_inc): Block autoinc on sfp.
12611 2017-07-26 Martin Liska <mliska@suse.cz>
12614 * function.c (expand_function_start): Make expansion of
12615 nonlocal_goto_save_area after parm_birth_insn.
12617 2017-07-26 Sebastian Huber <sebastian.huber@embedded-brains.de>
12619 * config/sparc/sparc.c (sparc_option_override): Remove MASK_FPU
12620 from all CPU target flags enable members.
12622 2017-07-26 Richard Biener <rguenther@suse.de>
12624 * genmatch.c (dt_simplify::gen): Make iterator vars const.
12625 (decision_tree::gen): Make 'type' const.
12626 (write_predicate): Likewise.
12628 2017-07-24 Michael Meissner <meissner@linux.vnet.ibm.com>
12630 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok):
12631 Eliminate TARGET_UPPER_REGS_{DF,DI,SF} usage.
12632 (rs6000_option_override_internal): Likewise.
12633 (rs6000_expand_vector_set): Likewise.
12634 * config/rs6000/rs6000.h (TARGET_UPPER_REGS_DF): Delete.
12635 (TARGET_UPPER_REGS_SF): Likewise.
12636 (TARGET_UPPER_REGS_DI): Likewise.
12637 (TARGET_VEXTRACTUB): Eliminate TARGET_UPPER_REGS_{DF,DI,SF}.
12638 (TARGET_DIRECT_MOVE_64BIT): Likewise.
12639 * config/rs6000/rs6000.md (ALTIVEC_DFORM): Likewise.
12640 (float<QHI:mode><FP_ISA3:mode>2_internal): Likewise.
12641 (Splitters for DI constants in Altivec registers): Likewise.
12642 * config/rs6000/vsx.md (vsx_set_<mode>_p9): Likewise.
12643 (vsx_set_v4sf_p9): Likewise.
12644 (vsx_set_v4sf_p9_zero): Likewise.
12645 (vsx_insert_extract_v4sf_p9): Likewise.
12646 (vsx_insert_extract_v4sf_p9_2): Likewise.
12648 2017-07-25 Carl Love <cel@us.ibm.com>
12650 * doc/extend.texi: Update the built-in documentation file for the
12651 existing built-in functions
12652 vector signed char vec_cnttz (vector signed char);
12653 vector unsigned char vec_cnttz (vector unsigned char);
12654 vector signed short vec_cnttz (vector signed short);
12655 vector unsigned short vec_cnttz (vector unsigned short);
12656 vector signed int vec_cnttz (vector signed int);
12657 vector unsigned int vec_cnttz (vector unsigned int);
12658 vector signed long long vec_cnttz (vector signed long long);
12659 vector unsigned long long vec_cnttz (vector unsigned long long);
12661 2017-07-25 Andrew Pinski <apinski@cavium.com>
12663 * tree-ssa-uninit.c (warn_uninitialized_vars): Don't warn about memory
12664 accesses where the use is for the first operand of a BIT_INSERT.
12666 2017-07-25 Jim Wilson <jim.wilson@linaro.org>
12669 * config/i386/winnt-cxx.c (i386_pe_adjust_class_at_definition): Look
12670 for FUNCTION_DECLs in TYPE_FIELDS rather than TYPE_METHODS.
12672 2017-07-25 Jim Wilson <jim.wilson@linaro.org>
12674 * config/i386/gstabs.h: Delete.
12675 * config/i386/openbsd.h, config/i386/t-openbsd: Likewise.
12677 2017-07-25 Uros Bizjak <ubizjak@gmail.com>
12679 * config/i386/i386.c (ix86_decompose_address): Do not check for
12680 register RTX when looking at index_reg or base_reg.
12681 * config/i386/i386.h (INCOMING_RETURN_ADDR_RTX): Use stack_pointer_rtx.
12683 2017-07-25 Eric Botcazou <ebotcazou@adacore.com>
12685 * gimple.c (gimple_assign_set_rhs_with_ops): Do not ask gsi_replace
12686 to update EH info here.
12688 2017-07-25 Alexander Monakov <amonakov@ispras.ru>
12690 * match.pd ((X * CST1) * CST2): Simplify to X * (CST1 * CST2).
12692 2017-07-25 Alexander Monakov <amonakov@ispras.ru>
12694 * match.pd ((X * CST) * Y): Reassociate to (X * Y) * CST.
12696 2017-07-25 Torsten Duwe <duwe@suse.de>
12698 * common.opt: Introduce -fpatchable-function-entry
12699 command line option, and its variables function_entry_patch_area_size
12700 and function_entry_patch_area_start.
12701 * opts.c (common_handle_option): Add -fpatchable_function_entry_ case,
12702 including a two-value parser.
12703 * target.def (print_patchable_function_entry): New target hook.
12704 * targhooks.h (default_print_patchable_function_entry): New function.
12705 * targhooks.c (default_print_patchable_function_entry): Likewise.
12706 * toplev.c (process_options): Switch off IPA-RA if
12707 patchable function entries are being generated.
12708 * varasm.c (assemble_start_function): Look at the
12709 patchable-function-entry command line switch and current
12710 function attributes and maybe generate NOP instructions by
12711 calling the print_patchable_function_entry hook.
12712 * doc/extend.texi: Document patchable_function_entry attribute.
12713 * doc/invoke.texi: Document -fpatchable_function_entry
12714 command line option.
12715 * doc/tm.texi.in (TARGET_ASM_PRINT_PATCHABLE_FUNCTION_ENTRY):
12717 * doc/tm.texi: Re-generate.
12719 2017-07-25 Jakub Jelinek <jakub@redhat.com>
12722 * config/i386/constraints.md (Yd, Ye): Use ALL_SSE_REGS for
12723 TARGET_AVX512DQ rather than TARGET_AVX512BW.
12725 2017-07-25 Tamar Christina <tamar.christina@arm.com>
12727 * config/arm/parsecpu.awk (all_cores): Remove duplicates.
12729 2017-07-25 Richard Biener <rguenther@suse.de>
12731 PR tree-optimization/81455
12732 * tree-ssa-loop-unswitch.c (find_loop_guard): Make sure to
12733 not walk in cycles when looking for guards.
12735 2017-07-25 Richard Biener <rguenther@suse.de>
12737 PR tree-optimization/81529
12738 * tree-vect-stmts.c (process_use): Disregard live induction PHIs
12739 when optimizing backedge uses.
12741 2017-07-25 David Edelsohn <dje.gcc@gmail.com>
12743 * dwarf2asm.c (dw2_asm_output_nstring): Encode double quote
12745 * dwarf2out.c (output_macinfo): Copy debug_line_section_label
12746 to dl_section_ref. On AIX, append an expression to subtract
12747 the size of the section length to dl_section_ref.
12749 2017-07-25 Segher Boessenkool <segher@kernel.crashing.org>
12751 * configure.ac: If any of the config.* scripts fail, exit 1.
12752 * configure: Regenerate.
12754 2017-07-25 Richard Biener <rguenther@suse.de>
12756 PR middle-end/81546
12757 * tree-ssa-operands.c (verify_imm_links): Remove cap on number
12758 of immediate uses, be more verbose on errors.
12760 2017-07-25 Richard Biener <rguenther@suse.de>
12762 PR tree-optimization/81510
12763 * tree-vect-loop.c (vect_is_simple_reduction): When the
12764 reduction stmt is not inside the loop bail out.
12766 2017-07-25 Richard Biener <rguenther@suse.de>
12768 PR tree-optimization/81303
12769 * tree-vect-loop-manip.c (vect_loop_versioning): Build
12770 profitability check against LOOP_VINFO_NITERSM1.
12772 2017-07-25 Alexander Monakov <amonakov@ispras.ru>
12774 * domwalk.c (cmp_bb_postorder): Simplify.
12775 (sort_bbs_postorder): New function. Use it...
12776 (dom_walker::walk): ...here to optimize common cases.
12778 2017-07-25 Martin Liska <mliska@suse.cz>
12781 * ipa-visibility.c (function_and_variable_visibility): Make the
12782 redirection just on target that supports aliasing.
12783 Fix GNU coding style.
12785 2017-07-25 Sebastian Huber <sebastian.huber@embedded-brains.de>
12788 * config/aarch64/rtems.h: Add GCC Runtime Library Exception.
12790 * config/arm/rtems.h: Likewise.
12791 * config/bfin/rtems.h: Likewise.
12792 * config/i386/rtemself.h: Likewise.
12793 * config/lm32/rtems.h: Likewise.
12794 * config/m32c/rtems.h: Likewise.
12795 * config/m68k/rtemself.h: Likewise.
12796 * config/microblaze/rtems.h: Likewise.
12797 * config/mips/rtems.h: Likewise.
12798 * config/moxie/rtems.h: Likewise.
12799 * config/nios2/rtems.h: Likewise.
12800 * config/powerpcspe/rtems.h: Likewise.
12801 * config/rs6000/rtems.h: Likewise.
12802 * config/rtems.h: Likewise.
12803 * config/sh/rtems.h: Likewise.
12804 * config/sh/rtemself.h: Likewise.
12805 * config/sparc/rtemself.h: Likewise.
12807 2017-07-25 Georg-Johann Lay <avr@gjlay.de>
12810 * hsa-brig.c (brig_init): Use xasprintf instead of asprintf.
12811 * gimple-pretty-print.c (dump_profile, dump_probability): Same.
12812 * tree-ssa-structalias.c (alias_get_name): Same.
12814 2017-07-25 Bin Cheng <bin.cheng@arm.com>
12817 * config/aarch64/cortex-a57-fma-steering.c (analyze): Skip fmul/fmac
12818 instructions if no du chain is found.
12820 2017-07-25 Georg-Johann Lay <avr@gjlay.de>
12822 * config/avr/avr-log.c (avr_log_vadump) ['T']: Print NULL-TREE.
12824 2017-07-25 Richard Biener <rguenther@suse.de>
12826 PR middle-end/81505
12827 * fold-const.c (fold_negate_const): TREE_OVERFLOW should be
12830 2017-07-24 Michael Meissner <meissner@linux.vnet.ibm.com>
12832 * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Delete
12833 upper-regs options.
12834 (ISA_2_7_MASKS_SERVER): Likewise.
12835 (ISA_3_0_MASKS_IEEE): Likewise.
12836 (OTHER_P8_VECTOR_MASKS): Likewise.
12837 (OTHER_VSX_VECTOR_MASKS): Likewise.
12838 (POWERPC_MASKS): Likewise.
12839 (power7 cpu): Use ISA_2_6_MASKS_SERVER instead of using a
12840 duplicate list of options.
12841 * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Remove
12842 explicit -mupper-regs options.
12843 * config/rs6000/rs6000.opt (-mvsx-scalar-memory): Delete
12844 -mupper-regs* options. Delete -mvsx-scalar-memory, which was an
12845 alias for -mupper-regs-df.
12846 * config/rs6000/rs6000.c (rs6000_setup_reg_addr_masks): Likewise.
12847 (rs6000_init_hard_regno_mode_ok): Likewise.
12848 (rs6000_option_override_internal): Likewise.
12849 (rs6000_opt_masks): Likewise.
12850 * config/rs6000/rs6000.h (TARGET_UPPER_REGS_DF): Define upper regs
12851 options in terms of whether -mvsx or -mpower8-vector was used.
12852 (TARGET_UPPER_REGS_DI): Likewise.
12853 (TARGET_UPPER_REGS_SF): Likewise.
12854 * doc/invoke.texi (RS/6000 and PowerPC Options): Delete the
12855 -mupper-regs-* options.
12857 2017-07-24 Segher Boessenkool <segher@kernel.crashing.org>
12859 * passes.c (emergency_dump_function): Print some empty lines and a
12860 header before the RTL dump.
12862 2017-07-24 Segher Boessenkool <segher@kernel.crashing.org>
12864 * cfgrtl.c (rtl_dump_bb): Don't call NEXT_INSN on NULL.
12866 2017-07-24 Wilco Dijkstra <wdijkstr@arm.com>
12869 * config/aarch64/aarch64.c (aarch64_classify_symbol):
12870 Avoid SYMBOL_SMALL_ABSOLUTE for literals with pc-relative literals.
12872 2017-07-24 Carl Love <cel@us.ibm.com>
12874 * config/rs6000/rs6000-c.c: Add support for built-in functions
12875 vector float vec_extract_fp32_from_shorth (vector unsigned short);
12876 vector float vec_extract_fp32_from_shortl (vector unsigned short);
12877 * config/rs6000/altivec.h (vec_extract_fp_from_shorth,
12878 vec_extract_fp_from_shortl): Add defines for the two builtins.
12879 * config/rs6000/rs6000-builtin.def (VEXTRACT_FP_FROM_SHORTH,
12880 VEXTRACT_FP_FROM_SHORTL): Add BU_P9V_OVERLOAD_1 and BU_P9V_VSX_1
12882 * config/rs6000/vsx.md vsx_xvcvhpsp): Add define_insn.
12883 (vextract_fp_from_shorth, vextract_fp_from_shortl): Add define_expands.
12884 * doc/extend.texi: Update the built-in documentation file for the
12885 new built-in function.
12887 2017-07-24 Jakub Jelinek <jakub@redhat.com>
12890 * tree.def: Remove TYPE_METHODS documentation, adjust TYPE_FIELDS
12892 * doc/generic.texi: Likewise.
12893 * config/i386/winnt-cxx.c (i386_pe_adjust_class_at_definition): Look
12894 for FUNCTION_DECLs in TYPE_FIELDS rather than TYPE_METHODS.
12896 2017-07-24 Jackson Woodruff <jackson.woodruff@arm.com>
12898 * config/aarch64/aarch64-simd.md (aarch64_mla_elt_merge<mode>): New.
12899 (aarch64_mls_elt_merge<mode>): Likewise.
12901 2017-07-23 Krister Walfridsson <krister.walfridsson@gmail.com>
12903 * config.gcc (*-*-netbsd*): Remove check for NetBSD versions not
12904 having __cxa_atexit.
12906 2017-07-23 Michael Collison <michael.collison@arm.com>
12908 * config/arm/arm.c (arm_option_override): Deprecate
12909 use of -mstructure-size-boundary.
12910 * config/arm/arm.opt: Deprecate -mstructure-size-boundary.
12911 * doc/invoke.texi: Deprecate -mstructure-size-boundary.
12913 2017-07-23 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
12916 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost):
12917 Reduce cost estimate for direct moves.
12919 2017-07-23 Uros Bizjak <ubizjak@gmail.com>
12922 * config/i386/i386.c (ix86_option_override_internal): Disable
12923 BMI, BMI2 and TBM instructions for -m16.
12925 2017-07-21 Carl Love <cel@us.ibm.com>
12927 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
12928 ALTIVEC_BUILTIN_VMULESW, ALTIVEC_BUILTIN_VMULEUW,
12929 ALTIVEC_BUILTIN_VMULOSW, ALTIVEC_BUILTIN_VMULOUW entries.
12930 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin,
12931 builtin_function_type): Add ALTIVEC_BUILTIN_* case statements.
12932 * config/rs6000/altivec.md (MVULEUW, VMULESW, VMULOUW,
12933 VMULOSW): New enum "unspec" values.
12934 (altivec_vmuleuw, altivec_vmulesw, altivec_vmulouw,
12935 altivec_vmulosw): New patterns.
12936 * config/rs6000/rs6000-builtin.def (VMLEUW, VMULESW, VMULOUW,
12937 VMULOSW): Add definitions.
12939 2017-07-21 Jim Wilson <jim.wilson@linaro.org>
12941 * config/aarch64/aarch64-cores.def (falkor): Add AARCH64_FL_RDMA.
12942 (qdf24xx): Likewise.
12943 * config/aarch64/aarch64-options-extensions.def (rdma); New.
12944 * config/aarch64/aarch64.h (AARCH64_FL_RDMA): New.
12945 (AARCH64_FL_V8_1): Renumber.
12946 (AARCH64_FL_FOR_ARCH8_1): Add AARCH64_FL_RDMA.
12947 (AARCH64_ISA_RDMA): Use AARCH64_FL_RDMA.
12948 * config/aarch64/arm_neon.h: Use +rdma instead of arch=armv8.1-a.
12949 * doc/invoke.texi (AArch64 Options): Mention +rmda in -march docs. Add
12950 rdma to feature modifiers list.
12952 2017-07-21 Yury Gribov <tetra2005@gmail.com>
12954 PR middle-end/56727
12955 * ipa-visibility (function_and_variable_visibility): Convert
12956 recursive PLT call to direct call if appropriate.
12958 2017-07-21 Andrew Pinski <apinski@cavium.com>
12960 * tree-ssa-sccvn.c (vn_nary_op_eq): Check BIT_INSERT_EXPR's
12961 operand 1 to see if the types precision matches.
12962 * fold-const.c (operand_equal_p): Likewise.
12964 2017-07-21 Richard Biener <rguenther@suse.de>
12966 PR tree-optimization/81303
12967 * tree-vect-data-refs.c (vect_get_peeling_costs_all_drs): Pass
12968 in datarefs vector. Allow NULL dr0 for no peeling cost estimate.
12969 (vect_peeling_hash_get_lowest_cost): Adjust.
12970 (vect_enhance_data_refs_alignment): Likewise. Use
12971 vect_get_peeling_costs_all_drs to compute the penalty for no
12972 peeling to match up costs.
12974 2017-07-21 Richard Biener <rguenther@suse.de>
12976 PR tree-optimization/81500
12977 * tree-vect-loop.c (vect_is_simple_reduction): Properly fail if
12978 we didn't identify a reduction path.
12980 2017-07-21 Tom de Vries <tom@codesourcery.com>
12981 Cesar Philippidis <cesar@codesourcery.com>
12983 PR gcov-profile/81442
12984 * config/nvptx/nvptx.c (nvptx_goacc_reduction_init): Add missing edge
12987 2017-07-21 Tom de Vries <tom@codesourcery.com>
12990 * config/nvptx/nvptx.c (nvptx_override_options_after_change): New
12992 (TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE): Define to
12993 nvptx_override_options_after_change.
12995 2017-07-21 Ulrich Drepper <drepper@redhat.com>
12997 * dwarf2out.c (output_file_names): Avoid double testing for
12998 dwarf_version >= 5.
13000 2017-07-21 Georg-Johann Lay <avr@gjlay.de>
13002 * doc/invoke.texi (AVR Built-in Functions): Re-layout section.
13004 2016-07-21 Jan Hubicka <hubicka@ucw.cz>
13006 * cfgcleanup.c (flow_find_cross_jump): Do not crossjump across
13008 (try_crossjump_to_edge): Do not punt on partitioned functions.
13010 2016-07-21 Jan Hubicka <hubicka@ucw.cz>
13012 * bb-reorder.c (find_rarely_executed_basic_blocks_and_crossing_edges):
13013 Put all BBs reachable only via paths crossing cold region to cold
13015 * cfgrtl.c (find_bbs_reachable_by_hot_paths): New function.
13017 2016-07-21 Richard Biener <rguenther@suse.de>
13019 PR tree-optimization/81303
13020 * tree-vect-loop.c (vect_estimate_min_profitable_iters): Take
13021 into account prologue and epilogue iterations when raising
13022 min_profitable_iters to sth at least covering one vector iteration.
13024 2017-07-21 Tamar Christina <tamar.christina@arm.com>
13026 * config/arm/arm.c (arm_test_cpu_arch_dat):
13029 2017-07-20 Nathan Sidwell <nathan@acm.org>
13031 Remove TYPE_METHODS.
13032 * tree.h (TYPE_METHODS): Delete.
13033 * dwarf2out.c (gen_member_die): Member fns are on TYPE_FIELDS.
13034 * dbxout.c (dbxout_type_fields): Ignore FUNCTION_DECLs.
13035 (dbxout_type_methods): Scan TYPE_FIELDS.
13036 (dbxout_type): Don't check TYPE_METHODS here.
13037 * function.c (use_register_for_decl): Always ignore register for
13038 class types when not optimizing.
13039 * ipa-devirt.c (odr_types_equivalent_p): Delete TYPE_METHODS scan.
13040 * tree.c (free_lang_data_in_type): Stitch out member functions and
13041 templates from TYPE_FIELDS.
13042 (build_distinct_type_copy, verify_type_variant,
13043 verify_type): Member fns are on TYPE_FIELDS.
13044 * tree-dump.c (dequeue_and_dump): No TYPE_METHODS.
13045 * tree-pretty-print.c (dump_generic_node): Likewise.
13047 2017-07-20 Jakub Jelinek <jakub@redhat.com>
13050 * config/i386/i386.c (ix86_expand_vector_init_general): Handle
13051 V2TImode and V4TImode.
13052 (ix86_expand_vector_extract): Likewise.
13053 * config/i386/sse.md (VMOVE): Enable V4TImode even for just
13054 TARGET_AVX512F, instead of only for TARGET_AVX512BW.
13055 (ssescalarmode): Handle V4TImode and V2TImode.
13056 (VEC_EXTRACT_MODE): Add V4TImode and V2TImode.
13057 (*vec_extractv2ti, *vec_extractv4ti): New insns.
13058 (VEXTRACTI128_MODE): New mode iterator.
13059 (splitter for *vec_extractv?ti first element): New.
13060 (VEC_INIT_MODE): New mode iterator.
13061 (vec_init<mode>): Consolidate 3 expanders into one using
13062 VEC_INIT_MODE mode iterator.
13064 2017-07-20 Alexander Monakov <amonakov@ispras.ru>
13066 * lra-assigns.c (pseudo_compare_func): Fix comparison step based on
13067 non_spilled_static_chain_regno_p.
13069 2017-07-20 Alexander Monakov <amonakov@ispras.ru>
13071 * gimple-ssa-store-merging.c (sort_by_bitpos): Return 0 on equal bitpos.
13073 2017-07-20 Jan Hubicka <hubicka@ucw.cz>
13075 * bb-reorder.c (connect_traces): Allow copying of blocks within
13078 2017-07-20 Richard Biener <rguenther@suse.de>
13080 * gimple.h (gimple_phi_result): Add gphi * overload.
13081 (gimple_phi_result_ptr): Likewise.
13082 (gimple_phi_arg): Likewise. Adjust index assert to only
13083 allow actual argument accesses rather than all slots available
13085 (gimple_phi_arg_def): Add gphi * overload.
13086 * tree-phinodes.c (make_phi_node): Initialize only actual
13088 (resize_phi_node): Clear memory not covered by old node,
13089 do not initialize excess argument slots.
13090 (reserve_phi_args_for_new_edge): Initialize new argument slot
13093 2017-07-20 Bin Cheng <bin.cheng@arm.com>
13095 PR tree-optimization/81388
13097 2016-07-21 Bin Cheng <bin.cheng@arm.com>
13099 * tree-ssa-loop-niter.c (number_of_iterations_lt_to_ne): Clean up
13100 by removing computation of may_be_zero.
13102 2017-07-18 Jan Hubicka <hubicka@ucw.cz>
13103 Tom de Vries <tom@codesourcery.com>
13105 PR middle-end/81030
13106 * cfgbuild.c (find_many_sub_basic_blocks): Update REG_BR_PROB note
13107 when gimple level profile disagrees with what RTL expander did.
13109 2017-07-20 Richard Biener <rguenther@suse.de>
13111 PR tree-optimization/61171
13112 * tree-vectorizer.h (slp_instance): Add reduc_phis member.
13113 (vect_analyze_stmt): Add slp instance parameter.
13114 (vectorizable_reduction): Likewise.
13115 * tree-vect-loop.c (vect_analyze_loop_operations): Adjust.
13116 (vect_is_simple_reduction): Deal with chains not detected
13117 as SLP reduction chain, specifically not properly associated
13118 chains containing a mix of plus/minus.
13119 (get_reduction_op): Remove.
13120 (get_initial_defs_for_reduction): Simplify, pass in whether
13121 this is a reduction chain, pass in the SLP node for the PHIs.
13122 (vect_create_epilog_for_reduction): Get the SLP instance as
13124 (vectorizable_reduction): Get the SLP instance as arg.
13125 During analysis remember the SLP node with the PHIs in the
13126 instance. Simplify getting at the vectorized reduction PHIs.
13127 * tree-vect-slp.c (vect_slp_analyze_node_operations): Pass
13128 through SLP instance.
13129 (vect_slp_analyze_operations): Likewise.
13130 * tree-vect-stms.c (vect_analyze_stmt): Likewise.
13131 (vect_transform_stmt): Likewise.
13133 2017-07-20 Tom de Vries <tom@codesourcery.com>
13135 PR tree-optimization/81489
13136 * gimple-ssa-isolate-paths.c (find_implicit_erroneous_behavior): Move
13137 read of phi arg location to before loop that modifies phi.
13139 2017-07-20 Naveen H.S <Naveen.Hurugalawadi@cavium.com>
13141 * match.pd (((m1 >/</>=/<= m2) * d -> (m1 >/</>=/<= m2) ? d : 0):
13144 2017-07-19 Jan Hubicka <hubicka@ucw.cz>
13146 PR middle-end/81331
13147 * except.c (execute): Fix ordering issue.
13149 2018-07-19 Segher Boessenkool <segher@kernel.crashing.org>
13151 PR rtl-optimization/81423
13152 * combine.c (make_compound_operation_int): Don't try to optimize
13153 the AND of a SUBREG of an LSHIFTRT if that SUBREG is paradoxical.
13155 2017-07-19 Segher Boessenkool <segher@kernel.crashing.org>
13157 PR rtl-optimization/81423
13158 * simplify-rtx.c (simplify_truncation): Handle truncating an IOR
13159 with a constant that is -1 in the truncated to mode.
13161 2017-07-19 Jan Hubicka <hubicka@ucw.cz>
13163 * predict.c (propagate_unlikely_bbs_forward): Break out from ...
13164 (determine_unlikely_bbs): ... here.
13165 * predict.h (propagate_unlikely_bbs_forward): Declare.
13166 * cfgexpand.c (pass_expand::execute): Use it.
13167 * bb-reorder.c (sanitize_hot_paths): Do not consider known to be
13169 (find_rarely_executed_basic_blocks_and_crossing_edges): Use
13170 propagate_unlikely_bbs_forward.
13172 2017-07-19 Jan Hubicka <hubicka@ucw.cz>
13174 PR middle-end/81331
13175 * except.c (maybe_add_nop_after_section_switch): New function.
13178 2017-07-19 Tom de Vries <tom@codesourcery.com>
13180 * gimple.h (gimple_phi_set_arg): Make assert more strict.
13182 2017-07-19 Tom de Vries <tom@codesourcery.com>
13184 * gimple.h (gimple_phi_arg): Make assert more strict.
13186 2017-07-19 Steven Munroe <munroesj@gcc.gnu.org>
13188 * config.gcc (powerpc*-*-*): Add mmintrin.h.
13189 * config/rs6000/mmintrin.h: New file.
13190 * config/rs6000/x86intrin.h [__ALTIVEC__]: Include mmintrin.h.
13192 2017-07-19 Jakub Jelinek <jakub@redhat.com>
13194 PR tree-optimization/81346
13195 * match.pd: Optimize (X - 1U) <= INT_MAX-1U into (int) X > 0.
13197 2017-07-19 Tom de Vries <tom@codesourcery.com>
13199 * config/nvptx/nvptx.md (VECIM): Add V2DI.
13201 2017-07-19 Tom de Vries <tom@codesourcery.com>
13203 * config/nvptx/nvptx-modes.def: Add V2DImode.
13204 * config/nvptx/nvptx-protos.h (nvptx_data_alignment): Declare.
13205 * config/nvptx/nvptx.c (nvptx_ptx_type_from_mode): Handle V2DImode.
13206 (nvptx_output_mov_insn): Handle lack of mov.b128.
13207 (nvptx_print_operand): Handle 'H' and 'L' codes.
13208 (nvptx_vector_mode_supported): Allow V2DImode.
13209 (nvptx_preferred_simd_mode): New function.
13210 (nvptx_data_alignment): New function.
13211 (TARGET_VECTORIZE_PREFERRED_SIMD_MODE): Redefine to
13212 nvptx_preferred_simd_mode.
13213 * config/nvptx/nvptx.h (STACK_BOUNDARY, BIGGEST_ALIGNMENT): Change from
13215 (DATA_ALIGNMENT): Define. Set to nvptx_data_alignment.
13217 2017-07-19 Tom de Vries <tom@codesourcery.com>
13219 * config/nvptx/nvptx-modes.def: New file. Add V2SImode.
13220 * config/nvptx/nvptx.c (nvptx_ptx_type_from_mode): Handle V2SImode.
13221 (nvptx_vector_mode_supported): New function. Allow V2SImode.
13222 (TARGET_VECTOR_MODE_SUPPORTED_P): Redefine to nvptx_vector_mode_supported.
13223 * config/nvptx/nvptx.md (VECIM): New mode iterator. Add V2SI.
13224 (mov<VECIM>_insn): New define_insn.
13225 (define_expand "mov<VECIM>): New define_expand.
13227 2017-07-19 Tom de Vries <tom@codesourcery.com>
13229 * config/nvptx/nvptx.c (nvptx_print_operand): Handle v2 vector mode.
13231 2017-07-19 Jakub Jelinek <jakub@redhat.com>
13233 PR tree-optimization/81346
13234 * fold-const.h (fold_div_compare, range_check_type): Declare.
13235 * fold-const.c (range_check_type): New function.
13236 (build_range_check): Use range_check_type.
13237 (fold_div_compare): No longer static, rewritten into
13238 a match.pd helper function.
13239 (fold_comparison): Don't call fold_div_compare here.
13240 * match.pd (X / C1 op C2): New optimization using fold_div_compare
13241 as helper function.
13243 2017-07-19 Nathan Sidwell <nathan@acm.org>
13245 * tree.h (TYPE_MINVAL, TYPE_MAXVAL): Rename to ...
13246 (TYPE_MIN_VALUE_RAW, TYPE_MAX_VALUE_RAW): ... these.
13247 * tree.c (find_decls_types_r, verify_type): Use
13248 TYPE_{MIN,MAX}_VALUE_RAW.
13249 * lto-streamer-out.c (DFS::DFS_write_tree_body): Likewise.
13250 (hash_tree): Likewise.
13251 * tree-streamer-in.c (lto_input_ts_type_non_common_tree_pointers):
13253 * tree-streamer-out.c (write_ts_type_non_common_tree_pointers):
13256 2017-07-18 Tom de Vries <tom@codesourcery.com>
13258 PR middle-end/81464
13259 * omp-expand.c (expand_omp_for_static_chunk): Handle
13260 equal-argument loop exit phi.
13262 2017-07-18 Uros Bizjak <ubizjak@gmail.com>
13265 * config/i386/i386.md (rorx_immediate_operand): New mode attribute.
13266 (*bmi2_rorx<mode>3_1): Use rorx_immediate_operand as
13267 operand 2 predicate.
13268 (*bmi2_rorxsi3_1_zext): Use const_0_to_31_operand as
13269 operand 2 predicate.
13270 (ror,rol -> rorx splitters): Use const_int_operand as
13271 operand 2 predicate.
13273 2017-06-18 Richard Biener <rguenther@suse.de>
13275 PR tree-optimization/81410
13276 * tree-vect-stmts.c (vectorizable_load): Properly adjust for
13277 the gap in the ! slp_perm SLP case after each group.
13279 2017-07-18 Jan Hubicka <hubicka@ucw.cz>
13281 PR middle-end/81463
13282 * cfgloopmanip.c (scale_loop_profile): Watch out for zero frequency
13285 2017-07-18 Jan Hubicka <hubicka@ucw.cz>
13287 PR middle-end/81462
13288 * predict.c (set_even_probabilities): Cleanup; do not affect
13289 probabilities that are already known.
13290 (combine_predictions_for_bb): Call even when count is set.
13292 2017-07-18 Nathan Sidwell <nathan@acm.org>
13294 * tree-parloops.c (try_transform_to_exit_first_loop_alt): Use
13297 2017-07-18 Bin Cheng <bin.cheng@arm.com>
13300 * tree-ssa-loop-niter.c (number_of_iterations_exit): Dump missed
13301 optimization for loop niter analysis.
13303 2017-07-18 Georg-Johann Lay <avr@gjlay.de>
13306 * config/avr/avr.c (avr_optimize_casesi): Don't use
13307 INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX.
13309 2017-07-18 Robin Dapp <rdapp@linux.vnet.ibm.com>
13311 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Remove
13312 body_cost_vec from _vect_peel_extended_info.
13313 (vect_peeling_hash_get_lowest_cost): Do not set body_cost_vec.
13314 (vect_peeling_hash_choose_best_peeling): Remove body_cost_vec and
13317 2017-07-18 Bin Cheng <bin.cheng@arm.com>
13319 * config/arm/arm.c (emit_unlikely_jump): Remove unused var.
13321 2017-07-18 Richard Biener <rguenther@suse.de>
13323 PR tree-optimization/80620
13324 PR tree-optimization/81403
13325 * tree-ssa-pre.c (phi_translate_1): Clear range and points-to
13326 info when re-using a VN table entry.
13328 2017-07-18 Richard Biener <rguenther@suse.de>
13330 PR tree-optimization/81418
13331 * tree-vect-loop.c (vectorizable_reduction): Properly compute
13332 vectype_in. Verify that with lane-reducing reduction operations
13333 we have a single def-use cycle.
13335 2017-07-17 Carl Love <cel@us.ibm.com>
13337 Revert commit r249424 2017-06-20 Carl Love <cel@us.ibm.com>
13339 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
13340 ALTIVEC_BUILTIN_VMULESW, ALTIVEC_BUILTIN_VMULEUW,
13341 ALTIVEC_BUILTIN_VMULOSW, ALTIVEC_BUILTIN_VMULOUW entries.
13342 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin,
13343 builtin_function_type): Add ALTIVEC_BUILTIN_* case statements.
13344 * config/rs6000/altivec.md (MVULEUW, VMULESW, VMULOUW,
13345 VMULOSW): New enum "unspec" values.
13346 (vec_widen_umult_even_v4si, vec_widen_smult_even_v4si,
13347 vec_widen_umult_odd_v4si, vec_widen_smult_odd_v4si,
13348 altivec_vmuleuw, altivec_vmulesw, altivec_vmulouw,
13349 altivec_vmulosw): New patterns.
13350 * config/rs6000/rs6000-builtin.def (VMLEUW, VMULESW, VMULOUW,
13351 VMULOSW): Add definitions.
13352 2017-07-17 Uros Bizjak <ubizjak@gmail.com>
13354 * config/alpha/alpha.c: Include predict.h.
13356 2017-07-17 Yury Gribov <tetra2005@gmail.com>
13358 * tree-vrp.c (compare_assert_loc): Fix comparison function
13359 to return predictable results.
13361 2017-07-17 Claudiu Zissulescu <claziss@synopsys.com>
13363 * config/arc/arc.md (adddi3): Remove support for mexpand-adddi
13365 (subdi3): Likewise.
13366 * config/arc/arc.opt (mexpand-adddi): Deprecate it.
13367 * doc/invoke.texi (mexpand-adddi): Update text.
13369 2017-07-17 Claudiu Zissulescu <claziss@synopsys.com>
13371 * config/arc/arc.md (clzsi2): Expand to an arc_clzsi2 instruction
13372 that also clobbers the CC register. The old expand code is moved
13374 (*arc_clzsi2): ... here.
13375 (ctzsi2): Expand to an arc_ctzsi2 instruction that also clobbers
13376 the CC register. The old expand code is moved to ...
13377 (arc_ctzsi2): ... here.
13379 2017-07-17 Claudiu Zissulescu <claziss@synopsys.com>
13381 * config/arc/arc.opt (mindexed-loads): Use initial value
13382 TARGET_INDEXED_LOADS_DEFAULT.
13383 (mauto-modify-reg): Use initial value
13384 TARGET_AUTO_MODIFY_REG_DEFAULT.
13385 * config/arc/elf.h (TARGET_INDEXED_LOADS_DEFAULT): Define.
13386 (TARGET_AUTO_MODIFY_REG_DEFAULT): Likewise.
13387 * config/arc/linux.h (TARGET_INDEXED_LOADS_DEFAULT): Define.
13388 (TARGET_AUTO_MODIFY_REG_DEFAULT): Likewise.
13390 2017-07-17 Martin Liska <mliska@suse.cz>
13393 * opts.c (finish_options): Do not allow -fgnu-tm
13394 w/ -fsanitize={kernel-,}address. Say sorry.
13396 2017-07-17 Bin Cheng <bin.cheng@arm.com>
13399 * tree-loop-distribution.c (classify_partition): Only assert on
13400 numer of iterations.
13401 (merge_dep_scc_partitions): Delete prameter. Update function call.
13402 (distribute_loop): Remove code handling loop with unknown niters.
13403 (pass_loop_distribution::execute): Skip loop with unknown niters.
13405 2017-07-17 Bin Cheng <bin.cheng@arm.com>
13408 * tree-loop-distribution.c (merge_dep_scc_partitions): Sink call to
13409 function sort_partitions_by_post_order.
13411 2017-07-17 Bin Cheng <bin.cheng@arm.com>
13413 PR tree-optimization/81374
13414 * tree-loop-distribution.c (pass_loop_distribution::execute): Record
13415 the max index of basic blocks, rather than number of basic blocks.
13417 2017-07-17 Claudiu Zissulescu <claziss@synopsys.com>
13419 * config/arc/arc-protos.h (arc_legitimate_pc_offset_p): Remove
13421 (arc_legitimate_pic_operand_p): Likewise.
13422 * config/arc/arc.c (arc_legitimate_pic_operand_p): Remove
13424 (arc_needs_pcl_p): Likewise.
13425 (arc_legitimate_pc_offset_p): Likewise.
13426 (arc_legitimate_pic_addr_p): Remove LABEL_REF case, as this
13427 function is also used in constrains.md.
13428 (arc_legitimate_constant_p): Use arc_legitimate_pic_addr_p to
13429 validate pic constants. Handle CONST_INT, CONST_DOUBLE, MINUS and
13430 PLUS. Only return true/false in known cases, otherwise assert.
13431 (arc_legitimate_address_p): Remove arc_legitimate_pic_addr_p as it
13432 is already called in arc_legitimate_constant_p.
13433 * config/arc/arc.h (CONSTANT_ADDRESS_P): Consider also LABEL for
13435 (LEGITIMATE_PIC_OPERAND_P): Use
13436 arc_raw_symbolic_reference_mentioned_p function.
13437 * config/arc/constraints.md (Cpc): Use arc_legitimate_pic_addr_p
13442 2017-07-17 Claudiu Zissulescu <claziss@synopsys.com>
13443 Andrew Burgess <andrew.burgess@embecosm.com>
13445 * config/arc/arc-protos.h (arc_compute_function_type): Change prototype.
13446 (arc_return_address_register): New function.
13447 * config/arc/arc.c (arc_handle_fndecl_attribute): New function.
13448 (arc_handle_fndecl_attribute): Add naked attribute.
13449 (TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS): Define.
13450 (TARGET_WARN_FUNC_RETURN): Likewise.
13451 (arc_allocate_stack_slots_for_args): New function.
13452 (arc_warn_func_return): Likewise.
13453 (machine_function): Change type fn_type.
13454 (arc_compute_function_type): Consider new naked function type,
13455 change function return type.
13456 (arc_must_save_register): Adapt to handle new
13457 arc_compute_function_type's return type.
13458 (arc_expand_prologue): Likewise.
13459 (arc_expand_epilogue): Likewise.
13460 (arc_return_address_regs): Delete.
13461 (arc_return_address_register): New function.
13462 (arc_epilogue_uses): Use above function.
13463 * config/arc/arc.h (arc_return_address_regs): Delete prototype.
13464 (arc_function_type): Change encoding, add naked type.
13465 (ARC_INTERRUPT_P): Change to handle the new encoding.
13466 (ARC_FAST_INTERRUPT_P): Likewise.
13467 (ARC_NORMAL_P): Define.
13468 (ARC_NAKED_P): Likewise.
13469 (arc_compute_function_type): Delete prototype.
13470 * config/arc/arc.md (in_ret_delay_slot): Use
13471 arc_return_address_register function.
13472 (simple_return): Likewise.
13473 (p_return_i): Likewise.
13475 2017-07-17 Jakub Jelinek <jakub@redhat.com>
13477 PR tree-optimization/81428
13478 * match.pd (X / X -> one): Don't optimize _Fract divisions, as 1
13479 can't be built for those types.
13481 2017-07-17 Georg-Johann Lay <avr@gjlay.de>
13483 Remove stuff dead since r239246.
13485 * config/avr/avr-arch.h (avr_inform_devices): Remove dead proto.
13486 * config/avr/avr-devices.c (mcu_name, comparator, avr_mcus_str)
13487 (avr_inform_devices): Remove dead stuff.
13489 2017-07-17 Tamar Christina <tamar.christina@arm.com>
13491 * config/arm/arm_neon.h: Fix softp typo.
13493 2017-07-17 Jakub Jelinek <jakub@redhat.com>
13495 PR tree-optimization/81365
13496 * tree-ssa-phiprop.c (propagate_with_phi): When considering hoisting
13497 aggregate moves onto bb predecessor edges, make sure there are no
13498 loads that could alias the lhs in between the start of bb and the
13501 2017-07-17 Georg-Johann Lay <avr@gjlay.de>
13504 * config/avr/avr.c (avr_mul_highpart_cost): New static function.
13505 (avr_rtx_costs_1) [TRUNCATE]: Use it to compute mul_highpart cost.
13506 [LSHIFTRT, outer_code = TRUNCATE]: Same.
13508 2017-07-17 Jakub Jelinek <jakub@redhat.com>
13510 PR tree-optimization/81396
13511 * tree-ssa-math-opts.c (struct symbolic_number): Add n_ops field.
13512 (init_symbolic_number): Initialize it to 1.
13513 (perform_symbolic_merge): Add n_ops from both operands into the new
13515 (find_bswap_or_nop): Don't consider n->n == cmpnop computations
13516 without base_addr as useless if they need more than one operation.
13517 (bswap_replace): Handle !bswap case for NULL base_addr.
13519 2017-07-17 Tom de Vries <tom@codesourcery.com>
13522 * config/nvptx/nvptx.c (nvptx_single): Insert diverging branch as late
13525 2017-07-17 Sebastian Huber <sebastian.huber@embedded-brains.de>
13527 * config/sparc/rtemself.h (TARGET_OS_CPP_BUILTINS): Add
13528 conditional builtin define __FIX_LEON3FT_B2BST.
13530 2017-07-17 Daniel Cederman <cederman@gaisler.com>
13532 * config/sparc/t-rtems: Add mfix-gr712rc multilibs. Replace
13533 MULTILIB_EXCEPTIONS with MULTILIB_REQUIRED. Match -mfix-gr712rc
13536 2017-07-16 Eric Botcazou <ebotcazou@adacore.com>
13538 PR rtl-optimization/81424
13539 * optabs.c (prepare_cmp_insn): Use copy_to_reg instead of force_reg
13540 to remove potential trapping from operands if -fnon-call-exceptions.
13542 2017-07-16 Jan Hubicka <hubicka@ucw.cz>
13544 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Use
13545 profile_proability for scalling.
13546 * scale_profile_for_vect_loop.c (scale_profile_for_vect_loop): Likewise.
13548 2017-07-16 Jan Hubicka <hubicka@ucw.cz>
13550 * cgraph.c (cgraph_edge::redirect_call_stmt_to_caller): Cleanup.
13552 2017-07-16 Jan Hubicka <hubicka@ucw.cz>
13554 * cfgloopmanip.c (scale_loop_profile): Avoid use of REG_BR_PROB_BASE
13555 fixpoint arithmetics.
13557 2017-07-16 Jan Hubicka <hubicka@ucw.cz>
13559 * tree-ssa-loop-unswitch.c (hoist_guard): Avoid use of REG_BR_PROB_BASE
13560 fixpoint arithmetics.
13562 2017-07-16 Jan Hubicka <hubicka@ucw.cz>
13564 * asan.c (create_cond_insert_point): Avoid use of REG_BR_PROB_BASE
13565 fixpoint arithmetics.
13567 2017-07-16 Jan Hubicka <hubicka@ucw.cz>
13569 * profile-count.h (profile_probability::from_reg_br_prob_note,
13570 profile_probability::to_reg_br_prob_note): New functions.
13571 * doc/rtl.texi (REG_BR_PROB_NOTE): Update documentation.
13572 * reg-notes.h (REG_BR_PROB, REG_BR_PRED): Update docs.
13573 * predict.c (probability_reliable_p): Update.
13574 (edge_probability_reliable_p): Update.
13575 (br_prob_note_reliable_p): Update.
13576 (invert_br_probabilities): Update.
13577 (add_reg_br_prob_note): New function.
13578 (combine_predictions_for_insn): Update.
13579 * asan.c (asan_clear_shadow): Update.
13580 * cfgbuild.c (compute_outgoing_frequencies): Update.
13581 * cfgrtl.c (force_nonfallthru_and_redirect): Update.
13582 (update_br_prob_note): Update.
13583 (rtl_verify_edges): Update.
13584 (purge_dead_edges): Update.
13585 (fixup_reorder_chain): Update.
13586 * emit-rtl.c (try_split): Update.
13587 * ifcvt.c (cond_exec_process_insns): Update.
13588 (cond_exec_process_if_block): Update.
13589 (dead_or_predicable): Update.
13590 * internal-fn.c (expand_addsub_overflow): Update.
13591 (expand_neg_overflow): Update.
13592 (expand_mul_overflow): Update.
13593 * loop-doloop.c (doloop_modify): Update.
13594 * loop-unroll.c (compare_and_jump_seq): Update.
13595 * optabs.c (emit_cmp_and_jump_insn_1): Update.
13596 * predict.h: Update.
13597 * reorg.c (mostly_true_jump): Update.
13599 * config/aarch64/aarch64.c (aarch64_emit_unlikely_jump): Update.
13600 * config/alpha/alpha.c (emit_unlikely_jump): Update.
13601 * config/arc/arc.c: (emit_unlikely_jump): Update.
13602 * config/arm/arm.c: (emit_unlikely_jump): Update.
13603 * config/bfin/bfin.c (cbranch_predicted_taken_p): Update.
13604 * config/frv/frv.c (frv_print_operand_jump_hint): Update.
13605 * config/i386/i386.c (ix86_expand_split_stack_prologue): Update.
13606 (ix86_print_operand): Update.
13607 (ix86_split_fp_branch): Update.
13608 (predict_jump): Update.
13609 * config/ia64/ia64.c (ia64_print_operand): Update.
13610 * config/mmix/mmix.c (mmix_print_operand): Update.
13611 * config/powerpcspe/powerpcspe.c (output_cbranch): Update.
13612 (rs6000_expand_split_stack_prologue): Update.
13613 * config/rs6000/rs6000.c: Update.
13614 * config/s390/s390.c (s390_expand_vec_strlen): Update.
13615 (s390_expand_vec_movstr): Update.
13616 (s390_expand_cs_tdsi): Update.
13617 (s390_expand_split_stack_prologue): Update.
13618 * config/sh/sh.c (sh_print_operand): Update.
13619 (expand_cbranchsi4): Update.
13620 (expand_cbranchdi4): Update.
13621 * config/sparc/sparc.c (output_v9branch): Update.
13622 * config/spu/spu.c (get_branch_target): Update.
13623 (ea_load_store_inline): Update.
13624 * config/tilegx/tilegx.c (cbranch_predicted_p): Update.
13625 * config/tilepro/tilepro.c: Update.
13627 2017-07-16 Eric Botcazou <ebotcazou@adacore.com>
13629 * gimplify.c (mostly_copy_tree_r): Revert latest change.
13630 (gimplify_save_expr): Likewise.
13632 2017-07-07 Jan Hubicka <hubicka@ucw.cz>
13634 * ipa-visibility.c (function_and_variable_visibility): Fix pasto.
13636 2017-07-07 Jan Hubicka <hubicka@ucw.cz>
13638 * ipa-fnsummary.c (pass_data_ipa_fn_summary): Use
13640 * timevar.def (TV_IPA_FNSUMMARY): Define.
13642 2017-07-16 Daniel Cederman <cederman@gaisler.com>
13644 * config/sparc/sparc.md (divdf3_fix): Add NOP to prevent back
13645 to back store errata sensitive sequence from being generated.
13646 (sqrtdf2_fix): Likewise.
13648 2017-07-07 Jan Hubicka <hubicka@ucw.cz>
13650 * tree-ssa-threadupdate.c (compute_path_counts,
13651 update_joiner_offpath_counts): Use profile_probability.
13653 2017-07-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
13656 2017-07-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
13658 * config/arm/arm-c.c (arm_cpu_builtins): Define
13659 __ARM_FEATURE_NUMERIC_MAXMIN solely based on TARGET_VFP5.
13661 2017-07-14 Kelvin Nilsen <kelvin@gcc.gnu.org>
13663 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
13664 array entries to represent __ieee128 versions of the
13665 scalar_test_data_class, scalar_test_neg, scalar_extract_exp,
13666 scalar_extract_sig, and scalar_insert_exp built-in functions.
13667 (altivec_resolve_overloaded_builtin): Add special case handling
13668 for the __builtin_scalar_insert_exp function, as represented by
13669 the P9V_BUILTIN_VEC_VSIEDP constant.
13670 * config/rs6000/rs6000-builtin.def (VSEEQP): Add scalar extract
13671 exponent support for __ieee128 argument.
13672 (VSESQP): Add scalar extract signature support for __ieee128
13674 (VSTDCNQP): Add scalar test negative support for __ieee128
13676 (VSIEQP): Add scalar insert exponent support for __int128 argument
13677 with __ieee128 result.
13678 (VSIEQPF): Add scalar insert exponent support for __ieee128
13679 argument with __ieee128 result.
13680 (VSTDCQP): Add scalar test data class support for __ieee128
13682 (VSTDCNQP): Add overload support for scalar test negative with
13683 __ieee128 argument.
13684 (VSTDCQP): Add overload support for scalar test data class
13685 __ieee128 argument.
13686 * config/rs6000/vsx.md (UNSPEC_VSX_SXSIG) Replace
13687 UNSPEC_VSX_SXSIGDP.
13688 (UNSPEC_VSX_SIEXPQP): New constant.
13689 (xsxexpqp): New insn for VSX scalar extract exponent quad
13691 (xsxsigqp): New insn for VSX scalar extract significand quad
13693 (xsiexpqpf): New insn for VSX scalar insert exponent quad
13694 precision with floating point argument.
13695 (xststdcqp): New expand for VSX scalar test data class quad
13697 (xststdcnegqp): New expand for VSX scalar test negative quad
13699 (xststdcqp): New insn to match expansions for VSX scalar test data
13700 class quad precision and VSX scalar test negative quad precision.
13701 * config/rs6000/rs6000.c (rs6000_expand_binop_builtin): Add
13702 special case operand checking to enforce that second operand of
13703 VSX scalar test data class with quad precision argument is a 7-bit
13705 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Add
13706 prototypes and descriptions of __ieee128 versions of
13707 scalar_extract_exp, scalar_extract_sig, scalar_insert_exp,
13708 scalar_test_data_class, and scalar_test_neg built-in functions.
13710 2016-07-14 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13712 PR tree-optimization/81162
13713 * gimple-ssa-strength-reduction.c (replace_mult_candidate): Don't
13714 replace a negate with an add.
13716 2017-07-14 James Greenhalgh <james.greenhalgh@arm.com>
13718 * doc/invoke.texi (arm/-mcpu): Document +crypto.
13720 2017-07-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
13722 * config/arm/arm-c.c (arm_cpu_builtins): Define
13723 __ARM_FEATURE_NUMERIC_MAXMIN solely based on TARGET_VFP5.
13725 2017-07-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
13727 * config/arm/arm-cpus.in (cortex-r52): Add new entry.
13728 (armv8-r): Set ARM Cortex-R52 as default CPU.
13729 * config/arm/arm-tables.opt: Regenerate.
13730 * config/arm/arm-tune.md: Regenerate.
13731 * config/arm/driver-arm.c (arm_cpu_table): Add entry for ARM
13733 * doc/invoke.texi: Mention -mtune=cortex-r52 and availability of fp.dp
13734 extension for -mcpu=cortex-r52.
13736 2017-07-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
13738 * config/arm/arm-isa.h (isa_bit_FP_ARMv8): Delete enumerator.
13739 (ISA_FP_ARMv8): Define as ISA_FPv5 and ISA_FP_D32.
13740 * config/arm/arm-cpus.in (armv8-r): Define fp.sp as enabling FPv5.
13741 (fp-armv8): Define it as FP_ARMv8 only.
13742 config/arm/arm.h (TARGET_FPU_ARMV8): Delete.
13743 (TARGET_VFP_FP16INST): Define using TARGET_VFP5 rather than
13745 config/arm/arm.c (arm_rtx_costs_internal): Replace checks against
13746 TARGET_FPU_ARMV8 by checks against TARGET_VFP5.
13747 * config/arm/arm-builtins.c (arm_builtin_vectorized_function): Define
13748 first ARM_CHECK_BUILTIN_MODE definition using TARGET_VFP5 rather
13749 than TARGET_FPU_ARMV8.
13750 * config/arm/arm-c.c (arm_cpu_builtins): Likewise for
13751 __ARM_FEATURE_NUMERIC_MAXMIN macro definition.
13752 * config/arm/arm.md (cmov<mode>): Condition on TARGET_VFP5 rather than
13754 * config/arm/neon.md (neon_vrint): Likewise.
13755 (neon_vcvt): Likewise.
13756 (neon_<fmaxmin_op><mode>): Likewise.
13757 (<fmaxmin><mode>3): Likewise.
13758 * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): Likewise.
13759 * config/arm/predicates.md (arm_cond_move_operator): Check against
13760 TARGET_VFP5 rather than TARGET_FPU_ARMV8 and fix spacing.
13762 2017-07-14 Jackson Woodruff <jackson.woodruff@arm.com>
13764 * config/aarch64/aarch64.c (aarch64_print_operand): Move comments
13765 to top of function.
13767 2017-07-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13769 * gimple-ssa-store-merging.c (clear_bit_region): Replace reference to
13770 loop in comment with memset.
13772 2017-07-14 Martin Liska <mliska@suse.cz>
13774 * cfgexpand.c (expand_gimple_basic_block): Remove dead comment.
13775 * dwarf2out.c (is_java): Remove the function.
13776 (output_pubname): Remove usage of the function.
13777 (lower_bound_default): Remove usage of DW_LANG_Java.
13778 (gen_compile_unit_die): Likewise.
13779 * gcc.c: Remove compiler defaults for .java and .zip files.
13780 * gimple-expr.c (remove_suffix): Change as there's no longer
13781 extension than 4-letter one.
13782 * gimplify.c (mostly_copy_tree_r): Remove Java-special part.
13783 (gimplify_save_expr): Likewise.
13784 * ipa-utils.h (polymorphic_type_binfo_p): Remove the comment
13785 as it's possible even for other languages than Java.
13786 * langhooks.h (struct lang_hooks): Remove Java from a comment.
13787 * lto-opts.c (lto_write_options): Remove reference to Java.
13788 * opts.c (strip_off_ending): Update file extension handling.
13789 * tree-cfg.c (verify_gimple_call): Remove comment with Java.
13790 * tree-eh.c (lower_resx): Likewise.
13791 * tree.c (free_lang_data_in_type): Remove dead code.
13792 (find_decls_types_r): Likewise.
13793 (build_common_builtin_nodes): Remove Java from a comment.
13794 (verify_type): Remove dead code.
13795 * varasm.c (assemble_external): Remove Java from a comment.
13797 2017-07-14 Martin Liska <mliska@suse.cz>
13799 * opts.c (finish_options): Add quotes.
13800 (common_handle_option): Likewise.
13802 2017-07-14 Martin Liska <mliska@suse.cz>
13804 * dbxout.c (get_lang_number): Do not handle GNU Pascal.
13805 * dbxout.h (extern void dbxout_stab_value_internal_label_diff):
13806 Remove N_SO_PASCAL.
13807 * dwarf2out.c (lower_bound_default): Do not handle
13809 (gen_compile_unit_die): Likewise.
13810 * gcc.c: Remove default extension binding for GNU Pascal.
13811 * stmt.c: Remove Pascal language from a comment.
13812 * xcoffout.c: Likewise.
13814 2017-07-13 David Malcolm <dmalcolm@redhat.com>
13817 * diagnostic-show-locus.c (fixit_cmp): New function.
13818 (layout::layout): Sort m_fixit_hints.
13819 (column_range::column_range): Assert that the values are valid.
13820 (struct char_span): New struct.
13821 (correction::overwrite): New method.
13822 (struct source_line): New struct.
13823 (line_corrections::add_hint): Add assertions. Reimplement memcpy
13824 calls in terms of classes source_line and char_span, and
13825 correction::overwrite.
13826 (selftest::test_overlapped_fixit_printing_2): New function.
13827 (selftest::diagnostic_show_locus_c_tests): Call it.
13829 2017-07-13 Will Schmidt <will_schmidt@vnet.ibm.com>
13831 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Return
13832 early if there is no lhs.
13834 2017-07-13 Martin Liska <mliska@suse.cz>
13836 * dwarf2out.c (gen_pointer_type_die): Remove dead code.
13837 (gen_reference_type_die): Likewise.
13838 * stor-layout.c: Remove Pascal-related comment.
13840 2017-07-13 Martin Liska <mliska@suse.cz>
13842 * opts.c (finish_options): Add quotes to error messages.
13843 (parse_sanitizer_options): Likewise.
13845 2017-07-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
13847 * doc/invoke.texi (armv8-r): Document +fp.sp ARMv8-R extension.
13849 2017-07-13 Richard Earnshaw <rearnsha@arm.com>
13851 * config/arm/vxworks.h (TARGET_ENDIAN_DEFAULT): Define.
13853 2017-07-13 Maxim Ostapenko <m.ostapenko@samsung.com>
13855 * asan.c (asan_emit_allocas_unpoison): Use ptr_mode for arguments
13857 * builtins.c (expand_asan_emit_allocas_unpoison): Likewise.
13859 2017-07-12 Michael Meissner <meissner@linux.vnet.ibm.com>
13862 * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): If GLIBC
13863 provides the hardware capability bits, define the macro
13864 __BUILTIN_CPU_SUPPORTS__.
13865 * config/rs6000/rs6000.c (cpu_expand_builtin): Generate a warning
13866 if GLIBC does not provide the hardware capability bits. Add a
13867 gcc_unreachable call if the built-in cpu function is neither
13868 __builtin_cpu_is nor __builtin_cpu_supports.
13869 (rs6000_get_function_versions_dispatcher): Change the warning
13870 that an old GLIBC is used which does not export the capability
13871 bits to be an error.
13872 * doc/extend.texi (target_clones attribute): Document the
13873 restriction that GLIBC 2.23 or newer is needed on the PowerPC.
13874 (PowerPC built-in functions): Document that GLIBC 2.23 or newer is
13875 needed by __builtin_cpu_is and __builtin_cpu_supports. Document
13876 the macros defined by GCC if the newer GLIBC is available.
13878 2017-07-12 Jeff Law <law@redhat.com>
13880 * config/riscv/riscv.c: Remove unnecessary includes. Reorder
13881 remaining includes slightly.
13882 * config/riscv/riscv-builtins.c: Include profile-count.h.
13884 2017-07-12 Georg-Johann Lay <avr@gjlay.de>
13887 * config/avr/avr.c (avr_set_current_function): In diagnostic
13888 messages: Quote keywords and (parts of) identifiers.
13889 [WITH_AVRLIBC]: Warn for functions named "ISR", "SIGNAL" or
13892 2017-07-12 Carl Love <cel@us.ibm.com>
13894 * config/rs6000/rs6000-c.c: Add support for built-in functions
13895 vector bool char vec_revb (vector bool char);
13896 vector bool short vec_revb (vector short char);
13897 vector bool int vec_revb (vector bool int);
13898 vector bool long long vec_revb (vector bool long long);
13899 * doc/extend.texi: Update the built-in documentation file for the
13900 new built-in functions.
13902 2017-07-12 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13904 * config/s390/s390.md: Remove movcc splitter.
13906 2017-07-12 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13908 * config/s390/s390.c (s390_rtx_costs): Return proper costs for
13909 load/store on condition.
13911 2017-07-12 Georg-Johann Lay <avr@gjlay.de>
13914 * config/avr/avr.c (avr_encode_section_info)
13915 [progmem && !TREE_READONLY]: Error if progmem object needs
13918 2017-07-11 Michael Collison <michael.collison@arm.com>
13920 * config/aarch64/aarch64-simd.md (aarch64_sub<mode>_compare0):
13923 2017-07-11 Carl Love <cel@us.ibm.com>
13925 * config/rs6000/rs6000-c.c: Add support for builtins
13926 vector unsigned int vec_parity_lsbb (vector signed int);
13927 vector unsigned int vec_parity_lsbb (vector unsigned int);
13928 vector unsigned __int128 vec_parity_lsbb (vector signed __int128);
13929 vector unsigned __int128 vec_parity_lsbb (vector unsigned __int128);
13930 vector unsigned long long vec_parity_lsbb (vector signed long long);
13931 vector unsigned long long vec_parity_lsbb (vector unsigned long long);
13932 * config/rs6000/rs6000-builtin.def (VPARITY_LSBB): Add BU_P9V_OVERLOAD1.
13933 * config/rs6000/altivec.h (vec_parity_lsbb): Add define.
13934 * doc/extend.texi: Update the built-in documentation file for the
13935 new built-in functions.
13937 2017-07-11 David Malcolm <dmalcolm@redhat.com>
13939 * diagnostic-show-locus.c: Include "gcc-rich-location.h".
13940 (layout::m_primary_loc): New field.
13941 (layout::layout): Initialize new field. Move location filtering
13942 logic from here to...
13943 (layout::maybe_add_location_range): ...this new method. Add
13944 support for filtering to just the lines already specified by other
13946 (layout::will_show_line_p): New method.
13947 (gcc_rich_location::add_location_if_nearby): New method.
13948 (selftest::test_add_location_if_nearby): New test function.
13949 (selftest::diagnostic_show_locus_c_tests): Call it.
13950 * gcc-rich-location.h (gcc_rich_location::add_location_if_nearby):
13953 2017-07-11 Tom de Vries <tom@codesourcery.com>
13955 * config/nvptx/nvptx.c (WORKAROUND_PTXJIT_BUG): New macro.
13956 (bb_first_real_insn): New function.
13957 (nvptx_single): Add extra initialization of broadcasted condition
13960 2017-07-11 Nathan Sidwell <nathan@acm.org>
13962 * dwarf2out.c (gen_member_die): Remove useless check for anon ctors.
13964 2017-07-11 Georg-Johann Lay <avr@gjlay.de>
13966 * doc/extend.texi (AVR Function Attributes): Remove weblink to
13967 Binutils doc as TEXI will mess them up.
13968 * doc/invoke.texi (AVR Options): Same here.
13970 2017-07-11 Daniel Cederman <cederman@gaisler.com>
13972 * config/sparc/sparc.opt (mfix-ut700): New option.
13973 (mfix-gr712rc): Likewise.
13974 (sparc_fix_b2bst): New variable.
13975 * doc/invoke.texi (SPARC options): Document them.
13976 (ARM options): Fix warnings.
13977 * config/sparc/sparc.c (sparc_do_work_around_errata): Insert NOP
13978 instructions to prevent sequences that can trigger the store-store
13979 errata for certain LEON3FT processors.
13980 (pass_work_around_errata::gate): Also test sparc_fix_b2bst.
13981 (sparc_option_override): Set sparc_fix_b2bst appropriately.
13982 * config/sparc/sparc.md (fix_b2bst): New attribute.
13983 (in_branch_delay): Prevent stores in delay slot if fix_b2bst.
13985 2017-07-10 Uros Bizjak <ubizjak@gmail.com>
13988 * config/i386/i386.md (divsf3): Add TARGET_SSE to TARGET_SSE_MATH.
13990 (*rsqrtsf2_sse): Ditto.
13992 (div<mode>3): Macroize insn from divdf3 and divsf3
13993 using MODEF mode iterator.
13995 2017-07-10 Martin Sebor <msebor@redhat.com>
13997 PR tree-optimization/80397
13998 * gimple-ssa-sprintf.c (format_integer): Use INTEGRAL_TYPE_P()
13999 instead of testing for equality to INTEGER_TYPE.
14001 2017-07-10 Vineet Gupta <vgupta@synopsys.com>
14003 * config.gcc: Remove uclibc from arc target spec.
14005 2017-07-10 Claudiu Zissulescu <claziss@synopsys.com>
14007 * config/arc/arc.h (ADDITIONAL_REGISTER_NAMES): Define.
14009 2017-07-07 Jan Hubicka <hubicka@ucw.cz>
14012 * lto-wrapper.c (remove_option): New function.
14013 (merge_and_complain): Merge PIC/PIE options more realistically.
14015 2017-07-10 Georg-Johann Lay <avr@gjlay.de>
14017 Better ISR prologues by supporting GASes __gcc_isr pseudo insn.
14021 * configure.ac [target=avr]: Add GAS check for -mgcc-isr.
14022 (HAVE_AS_AVR_MGCCISR_OPTION): If so, AC_DEFINE it.
14023 * config.in: Regenerate.
14024 * configure: Regenerate.
14025 * doc/extend.texi (AVR Function Attributes) <no_gccisr>: Document it.
14026 * doc/invoke.texi (AVR Options) <-mgas-isr-prologues>: Document it.
14027 * config/avr/avr.opt (-mgas-isr-prologues): New option and...
14028 (TARGET_GASISR_PROLOGUES): ...target mask.
14029 * common/config/avr/avr-common.c
14030 (avr_option_optimization_table) [OPT_LEVELS_1_PLUS_NOT_DEBUG]:
14031 Set -mgas-isr-prologues.
14032 * config/avr/avr-passes.def (avr_pass_pre_proep): Add
14033 INSERT_PASS_BEFORE for it.
14034 * config/avr/avr-protos.h (make_avr_pass_pre_proep): New proto.
14035 * config/avr/avr.c (avr_option_override)
14036 [!HAVE_AS_AVR_MGCCISR_OPTION]: Unset TARGET_GASISR_PROLOGUES.
14037 (avr_no_gccisr_function_p, avr_hregs_split_reg): New static functions.
14038 (avr_attribute_table) <no_gccisr>: Add new function attribute.
14039 (avr_set_current_function) <is_no_gccisr>: Init machine field.
14040 (avr_pass_data_pre_proep, avr_pass_pre_proep): New pass data
14042 (make_avr_pass_pre_proep): New function.
14043 (emit_push_sfr) <treg>: Add argument to function and use it
14044 instead of TMP_REG.
14045 (avr_expand_prologue) [machine->gasisr.maybe]: Emit gasisr insn
14046 and set machine->gasisr.yes.
14047 (avr_expand_epilogue) [machine->gasisr.yes]: Similar.
14048 (avr_asm_function_end_prologue) [machine->gasisr.yes]: Add
14049 __gcc_isr.n_pushed to .L__stack_usage.
14050 (TARGET_ASM_FINAL_POSTSCAN_INSN): Define to...
14051 (avr_asm_final_postscan_insn): ...this new static function.
14052 * config/avr/avr.h (machine_function)
14053 <is_no_gccisr, use_L__stack_usage>: New fields.
14054 <gasisr, gasisr.yes, gasisr.maybe, gasisr.regno>: New fields.
14055 * config/avr/avr.md (UNSPECV_GASISR): Add unspecv enum.
14056 (GASISR_Prologue, GASISR_Epilogue, GASISR_Done): New define_constants.
14057 (gasisr, *gasisr): New expander and insn.
14058 * config/avr/gen-avr-mmcu-specs.c (print_mcu)
14059 [HAVE_AS_AVR_MGCCISR_OPTION]: Print asm_gccisr spec.
14060 * config/avr/specs.h (ASM_SPEC) <asm_gccisr>: Add sub spec.
14062 2017-07-10 Richard Earnshaw <rearnsha@arm.com>
14064 * config/arm/parsecpu.awk (gen_comm_data): Do not escape single quotes
14067 2017-07-10 Georg-Johann Lay <avr@gjlay.de>
14069 Move jump-tables out of .text again.
14072 * config/avr/avr.c (ASM_OUTPUT_ADDR_VEC_ELT): Remove function.
14073 (ASM_OUTPUT_ADDR_VEC): New function.
14074 (avr_adjust_insn_length) [JUMP_TABLE_DATA_P]: Return 0.
14075 (avr_final_prescan_insn) [avr_log.insn_addresses]: Dump
14076 INSN_ADDRESSes as asm comment.
14077 * config/avr/avr.h (JUMP_TABLES_IN_TEXT_SECTION): Adjust comment.
14078 (ASM_OUTPUT_ADDR_VEC_ELT): Remove define.
14079 (ASM_OUTPUT_ADDR_VEC): Define to avr_output_addr_vec.
14080 * config/avr/avr.md (*tablejump): Adjust comment.
14081 * config/avr/elf.h (ASM_OUTPUT_BEFORE_CASE_LABEL): Remove.
14082 * config/avr/avr-log.c (avr_log_set_avr_log) <insn_addresses>:
14084 * config/avr/avr-protos.h (avr_output_addr_vec_elt): Remove proto.
14085 (avr_output_addr_vec): New proto.
14086 (avr_log_t) <insn_addresses>: New field.
14088 2017-07-09 H.J. Lu <hongjiu.lu@intel.com>
14091 * config/i386/i386.c (ix86_function_arg_advance): Set
14092 outgoing_args_on_stack to true if there are outgoing arguments
14094 (ix86_function_arg): Likewise.
14095 (ix86_get_drap_rtx): Use DRAP only if there are outgoing
14096 arguments on stack and ACCUMULATE_OUTGOING_ARGS is false.
14097 * config/i386/i386.h (machine_function): Add
14098 outgoing_args_on_stack.
14100 2017-07-09 Krister Walfridsson <krister.walfridsson@gmail.com>
14102 * config.gcc (*-*-netbsd*): Remove check for NetBSD versions not
14103 supporting pthreds.
14104 * config/netbsd.h (NETBSD_LIBGCC_SPEC): Always enable pthreads.
14106 2017-07-08 Richard Sandiford <richard.sandiford@linaro.org>
14108 * Makefile.in (HOOKS_H, RTL_BASE_H, FUNCTION_H, EXPR_H, REGS_H)
14109 (REAL_H): Remove $(MACHMODE_H).
14110 (FIXED_VALUE_H, TREE_CORE_H, CFGLOOP_H): Remove $(MACHMODE_H) and
14112 (CORETYPES_H): Add signop.h, wide-int.h, wide-int-print.h,
14113 $(MACHMODE_H) and double-int.h.
14114 (build/min-insn-modes.o): Depend on $(CORETYPES_H) rather than
14116 (gengtype-state.o, gengtype.o, build/gengtype.o): Don't depend on
14119 2017-07-07 Andrew Pinski <apinski@cavium.com>
14121 * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Check
14122 prev_set and curr_set for AARCH64_FUSE_ALU_BRANCH.
14124 2017-07-07 Michael Meissner <meissner@linux.vnet.ibm.com>
14126 * config/rs6000/rs6000.c (rs6000_get_function_versions_dispatcher):
14127 Add warning if GCC was not configured to link against a GLIBC that
14128 exports the hardware capability bits.
14129 (make_resolver_func): Make resolver function private and not a
14130 COMDAT function. Create the name with clone_function_name instead
14131 of make_unique_name.
14134 * config/rs6000/rs6000.md (HI sign_extend splitter): Use the
14135 correct operand in doing the split.
14137 2017-07-07 Carl Love <cel@us.ibm.com>
14139 * config/rs6000/rs6000-c: Add support for built-in function
14140 vector unsigned short vec_pack_to_short_fp32 (vector float,
14142 * config/rs6000/rs6000-builtin.def (CONVERT_4F32_8I16): Add
14143 BU_P9V_AV_2 and BU_P9V_OVERLOAD_2 definitions.
14144 * config/rs6000/altivec.h (vec_pack_to_short_fp32): Add define.
14145 * config/rs6000/altivec.md(UNSPEC_CONVERT_4F32_8I16): Add UNSPEC.
14146 (convert_4f32_8i16): Add define_expand.
14147 * doc/extend.texi: Update the built-in documentation file for the
14148 new built-in function.
14150 2017-07-07 Jose E. Marchesi <jose.marchesi@oracle.com>
14152 * config/sparc/m8.md: New file.
14153 * config/sparc/sparc.md: Include m8.md.
14155 2017-07-07 Jose E. Marchesi <jose.marchesi@oracle.com>
14157 * config/sparc/sparc.opt: New option -mvis4b.
14158 * config/sparc/sparc.c (dump_target_flag_bits): Handle MASK_VIS4B.
14159 (sparc_option_override): Handle VIS4B.
14160 (enum sparc_builtins): Define
14161 SPARC_BUILTIN_DICTUNPACK{8,16,32},
14162 SPARC_BUILTIN_FPCMP{LE,GT,EQ,NE}{8,16,32}SHL,
14163 SPARC_BUILTIN_FPCMPU{LE,GT}{8,16,32}SHL,
14164 SPARC_BUILTIN_FPCMPDE{8,16,32}SHL and
14165 SPARC_BUILTIN_FPCMPUR{8,16,32}SHL.
14166 (check_constant_argument): New function.
14167 (sparc_vis_init_builtins): Define builtins
14168 __builtin_vis_dictunpack{8,16,32},
14169 __builtin_vis_fpcmp{le,gt,eq,ne}{8,16,32}shl,
14170 __builtin_vis_fpcmpu{le,gt}{8,16,32}shl,
14171 __builtin_vis_fpcmpde{8,16,32}shl and
14172 __builtin_vis_fpcmpur{8,16,32}shl.
14173 (sparc_expand_builtin): Check that the constant operands to
14174 __builtin_vis_fpcmp*shl and _builtin_vis_dictunpack* are indeed
14175 constant and in range.
14176 * config/sparc/sparc-c.c (sparc_target_macros): Handle
14178 * config/sparc/sparc.h (SPARC_IMM2_P): Define.
14179 (SPARC_IMM5_P): Likewise.
14180 * config/sparc/sparc.md (cpu_feature): Add new feagure "vis4b".
14181 (enabled): Handle vis4b.
14182 (UNSPEC_DICTUNPACK): New unspec.
14183 (UNSPEC_FPCMPSHL): Likewise.
14184 (UNSPEC_FPUCMPSHL): Likewise.
14185 (UNSPEC_FPCMPDESHL): Likewise.
14186 (UNSPEC_FPCMPURSHL): Likewise.
14187 (cpu_feature): New CPU feature `vis4b'.
14188 (dictunpack{8,16,32}): New insns.
14189 (FPCSMODE): New mode iterator.
14190 (fpcscond): New code iterator.
14191 (fpcsucond): Likewise.
14192 (fpcmp{le,gt,eq,ne}{8,16,32}{si,di}shl): New insns.
14193 (fpcmpu{le,gt}{8,16,32}{si,di}shl): Likewise.
14194 (fpcmpde{8,16,32}{si,di}shl): Likewise.
14195 (fpcmpur{8,16,32}{si,di}shl): Likewise.
14196 * config/sparc/constraints.md: Define constraints `q' for unsigned
14197 2-bit integer constants and `t' for unsigned 5-bit integer
14199 * config/sparc/predicates.md (imm5_operand_dictunpack8): New
14201 (imm5_operand_dictunpack16): Likewise.
14202 (imm5_operand_dictunpack32): Likewise.
14203 (imm2_operand): Likewise.
14204 * doc/invoke.texi (SPARC Options): Document -mvis4b.
14205 * doc/extend.texi (SPARC VIS Built-in Functions): Document the
14206 ditunpack* and fpcmp*shl builtins.
14208 2017-07-07 Jose E. Marchesi <jose.marchesi@oracle.com>
14210 * config.gcc: Handle m8 in --with-{cpu,tune} options.
14211 * config.in: Add HAVE_AS_SPARC6 define.
14212 * config/sparc/driver-sparc.c (cpu_names): Add entry for the SPARC
14214 * config/sparc/sol2.h (CPP_CPU64_DEFAULT_SPEC): Define for
14216 (ASM_CPU32_DEFAUILT_SPEC): Likewise.
14217 (CPP_CPU_SPEC): Handle m8.
14218 (ASM_CPU_SPEC): Likewise.
14219 * config/sparc/sparc-opts.h (enum processor_type): Add
14221 * config/sparc/sparc.c (m8_costs): New struct.
14222 (sparc_option_override): Handle TARGET_CPU_m8.
14223 (sparc32_initialize_trampoline): Likewise.
14224 (sparc64_initialize_trampoline): Likewise.
14225 (sparc_issue_rate): Likewise.
14226 (sparc_register_move_cost): Likewise.
14227 * config/sparc/sparc.h (TARGET_CPU_m8): Define.
14228 (CPP_CPU64_DEFAULT_SPEC): Define for M8.
14229 (ASM_CPU64_DEFAULT_SPEC): Likewise.
14230 (CPP_CPU_SPEC): Handle M8.
14231 (ASM_CPU_SPEC): Likewise.
14232 (AS_M8_FLAG): Define.
14233 * config/sparc/sparc.md: Add m8 to the cpu attribute.
14234 * config/sparc/sparc.opt: New option -mcpu=m8 for sparc targets.
14235 * configure.ac (HAVE_AS_SPARC6): Check for assembler support for
14237 * configure: Regenerate.
14238 * doc/invoke.texi (SPARC Options): Document -mcpu=m8 and
14241 2017-07-07 Jose E. Marchesi <jose.marchesi@oracle.com>
14243 * config/sparc/niagara7.md: Rework the DFA scheduler to use insn
14245 * config/sparc/sparc.md: Remove the `v3pipe' insn attribute.
14246 ("*movdi_insn_sp32"): Do not set v3pipe.
14247 ("*movsi_insn"): Likewise.
14248 ("*movdi_insn_sp64"): Likewise.
14249 ("*movsf_insn"): Likewise.
14250 ("*movdf_insn_sp32"): Likewise.
14251 ("*movdf_insn_sp64"): Likewise.
14252 ("*zero_extendsidi2_insn_sp64"): Likewise.
14253 ("*sign_extendsidi2_insn"): Likewise.
14254 ("*mov<VM32:mode>_insn"): Likewise.
14255 ("*mov<VM64:mode>_insn_sp64"): Likewise.
14256 ("*mov<VM64:mode>_insn_sp32"): Likewise.
14257 ("<plusminus_insn><VADDSUB:mode>3"): Likewise.
14258 ("<vlop:code><VL:mode>3"): Likewise.
14259 ("*not_<vlop:code><VL:mode>3"): Likewise.
14260 ("*nand<VL:mode>_vis"): Likewise.
14261 ("*<vlnotop:code>_not1<VL:mode>_vis"): Likewise.
14262 ("*<vlnotop:code>_not2<VL:mode>_vis"): Likewise.
14263 ("one_cmpl<VL:mode>2"): Likewise.
14264 ("faligndata<VM64:mode>_vis"): Likewise.
14265 ("alignaddrsi_vis"): Likewise.
14266 ("alignaddrdi_vis"): Likweise.
14267 ("alignaddrlsi_vis"): Likewise.
14268 ("alignaddrldi_vis"): Likewise.
14269 ("fcmp<gcond:code><GCM:gcm_name><P:mode>_vis"): Likewise.
14270 ("bmaskdi_vis"): Likewise.
14271 ("bmasksi_vis"): Likewise.
14272 ("bshuffle<VM64:mode>_vis"): Likewise.
14273 ("cmask8<P:mode>_vis"): Likewise.
14274 ("cmask16<P:mode>_vis"): Likewise.
14275 ("cmask32<P:mode>_vis"): Likewise.
14276 ("pdistn<P:mode>_vis"): Likewise.
14277 ("<vis3_addsub_ss_patname><VASS:mode>3"): Likewise.
14279 2017-07-07 Jose E. Marchesi <jose.marchesi@oracle.com>
14281 * config/sparc/sparc.md ("subtype"): New insn attribute.
14282 ("*wrgsr_sp64"): Set insn subtype.
14283 ("*rdgsr_sp64"): Likewise.
14284 ("alignaddrsi_vis"): Likewise.
14285 ("alignaddrdi_vis"): Likewise.
14286 ("alignaddrlsi_vis"): Likewise.
14287 ("alignaddrldi_vis"): Likewise.
14288 ("<plusminus_insn><VADDSUB:mode>3"): Likewise.
14289 ("fexpand_vis"): Likewise.
14290 ("fpmerge_vis"): Likewise.
14291 ("faligndata<VM64:mode>_vis"): Likewise.
14292 ("bshuffle<VM64:mode>_vis"): Likewise.
14293 ("cmask8<P:mode>_vis"): Likewise.
14294 ("cmask16<P:mode>_vis"): Likewise.
14295 ("cmask32<P:mode>_vis"): Likewise.
14296 ("fchksm16_vis"): Likewise.
14297 ("v<vis3_shift_patname><GCM:mode>3"): Likewise.
14298 ("fmean16_vis"): Likewise.
14299 ("fp<plusminus_insn>64_vis"): Likewise.
14300 ("<plusminus_insn>v8qi3"): Likewise.
14301 ("<vis3_addsub_ss_patname><VASS:mode>3"): Likewise.
14302 ("<vis4_minmax_patname><VMMAX:mode>3"): Likewise.
14303 ("<vis4_uminmax_patname><VMMAX:mode>3"): Likewise.
14304 ("<vis3_addsub_ss_patname>v8qi3"): Likewise.
14305 ("<vis4_addsub_us_patname><VAUS:mode>3"): Likewise.
14306 ("*movqi_insn"): Likewise.
14307 ("*movhi_insn"): Likewise.
14308 ("*movsi_insn"): Likewise.
14309 ("movsi_pic_gotdata_op"): Likewise.
14310 ("*movdi_insn_sp32"): Likewise.
14311 ("*movdi_insn_sp64"): Likewise.
14312 ("movdi_pic_gotdata_op"): Likewise.
14313 ("*movsf_insn"): Likewise.
14314 ("*movdf_insn_sp32"): Likewise.
14315 ("*movdf_insn_sp64"): Likewise.
14316 ("*zero_extendhisi2_insn"): Likewise.
14317 ("*zero_extendqihi2_insn"): Likewise.
14318 ("*zero_extendqisi2_insn"): Likewise.
14319 ("*zero_extendqidi2_insn"): Likewise.
14320 ("*zero_extendhidi2_insn"): Likewise.
14321 ("*zero_extendsidi2_insn_sp64"): Likewise.
14322 ("ldfsr"): Likewise.
14323 ("prefetch_64"): Likewise.
14324 ("prefetch_32"): Likewise.
14325 ("tie_ld32"): Likewise.
14326 ("tie_ld64"): Likewise.
14327 ("*tldo_ldub_sp32"): Likewise.
14328 ("*tldo_ldub1_sp32"): Likewise.
14329 ("*tldo_ldub2_sp32"): Likewise.
14330 ("*tldo_ldub_sp64"): Likewise.
14331 ("*tldo_ldub1_sp64"): Likewise.
14332 ("*tldo_ldub2_sp64"): Likewise.
14333 ("*tldo_ldub3_sp64"): Likewise.
14334 ("*tldo_lduh_sp32"): Likewise.
14335 ("*tldo_lduh1_sp32"): Likewise.
14336 ("*tldo_lduh_sp64"): Likewise.
14337 ("*tldo_lduh1_sp64"): Likewise.
14338 ("*tldo_lduh2_sp64"): Likewise.
14339 ("*tldo_lduw_sp32"): Likewise.
14340 ("*tldo_lduw_sp64"): Likewise.
14341 ("*tldo_lduw1_sp64"): Likewise.
14342 ("*tldo_ldx_sp64"): Likewise.
14343 ("*mov<VM32:mode>_insn"): Likewise.
14344 ("*mov<VM64:mode>_insn_sp64"): Likewise.
14345 ("*mov<VM64:mode>_insn_sp32"): Likewise.
14347 2017-07-07 Jose E. Marchesi <jose.marchesi@oracle.com>
14349 * config/sparc/sparc.md ("type"): New insn type viscmp.
14350 ("fcmp<gcond:code><GCM:gcm_name><P:mode>_vis"): Set insn type to
14352 ("fpcmp<gcond:code>8<P:mode>_vis"): Likewise.
14353 ("fucmp<gcond:code>8<P:mode>_vis"): Likewise.
14354 ("fpcmpu<gcond:code><GCM:gcm_name><P:mode>_vis"): Likewise.
14355 * config/sparc/niagara7.md ("n7_vis_logical_v3pipe"): Handle
14357 ("n7_vis_logical_11cycle"): Likewise.
14358 * config/sparc/niagara4.md ("n4_vis_logical"): Likewise.
14359 * config/sparc/niagara2.md ("niag3_vis": Likewise.
14360 * config/sparc/niagara.md ("niag_vis"): Likewise.
14361 * config/sparc/ultra3.md ("us3_fga"): Likewise.
14362 * config/sparc/ultra1_2.md ("us1_fga_double"): Likewise.
14364 2017-07-07 Jose E. Marchesi <jose.marchesi@oracle.com>
14366 * config/sparc/sparc.md: New instruction type `bmask'.
14367 (bmaskdi_vis): Use the `bmask' type.
14368 (bmasksi_vis): Likewise.
14369 * config/sparc/ultra3.md (us3_array): Likewise.
14370 * config/sparc/niagara7.md (n7_array): Likewise.
14371 * config/sparc/niagara4.md (n4_array): Likewise.
14372 * config/sparc/niagara2.md (niag2_vis): Likewise.
14373 (niag3_vis): Likewise.
14374 * config/sparc/niagara.md (niag_vis): Likewise.
14376 2017-07-06 Jan Hubicka <hubicka@ucw.cz>
14378 * ipa-comdats.c: Remove optimize check from gate.
14379 * ipa-fnsummary.c (ipa_fn_summary_generate): do not generate summary
14380 for functions not optimized.
14381 (ipa_fn_summary_read): Skip optimize check.
14382 (ipa_fn_summary_write): Likewise.
14383 * ipa-inline-analysis.c (do_estimate_growth_1): Check that caller
14385 * ipa-inline.c (can_inline_edge_p): Not optimized functions are
14387 (can_inline_edge_p): Check flag_pcc_struct_return for match.
14388 (check_callers): Give up on caller which is not optimized.
14389 (inline_small_functions): Likewise.
14390 (ipa_inline): Do not give up when not optimizing.
14391 * ipa-visbility.c (function_and_variable_visibility): Do not optimize
14392 away unoptimizes cdtors.
14393 (whole_program_function_and_variable_visibility): Do
14394 ipa_discover_readonly_nonaddressable_vars in LTO mode.
14395 * ipa.c (process_references): Do not check optimize.
14396 (symbol_table::remove_unreachable_nodes): Update optimize check.
14397 (set_writeonly_bit): Update optimize check.
14398 (pass_ipa_cdtor_merge::gate): Do not check optimize.
14399 (pass_ipa_single_use::gate): Remove.
14401 2017-07-06 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
14403 * config/rs6000/rs6000.c (union_defs, union_uses, insn_is_load_p,
14404 insn_is_store_p, insn_is_swap_p, const_load_sequence_p, v2df_reduction_p,
14405 rtx_is_swappable_p, insn_is_swappable_p, chain_contains_only_swaps,
14406 mark_swaps_for_removal, swap_const_vector_halves, adjust_subreg_index,
14407 permute_load, permute_store, adjust_extract, adjust_splat,
14408 adjust_xxpermdi, adjust_concat, adjust_vperm, handle_special_swappables,
14409 replace_swap_with_copy, dump_swap_insn_table,
14410 alignment_with_canonical_addr, alignment_mask, find_alignment_op,
14411 recombine_lvx_pattern, recombine_stvx_pattern,
14412 recombine_lvx_stvx_patterns, rs6000_analyze_swaps,
14413 make_pass_analyze_swaps): Move all code related to p8 swap optimizations
14414 to file rs6000-p8swap.c.
14415 * config/rs6000/rs6000-p8swap.c: New file.
14416 * config/rs6000/t-rs6000: Add rule to build rs6000-p8swap.o.
14417 * config.gcc: Add rs6000-p8swap.o to extra_objs for powerpc*-*-*
14418 and rs6000*-*-* targets.
14420 2017-07-06 David Malcolm <dmalcolm@redhat.com>
14422 * Makefile.in (selftest): Remove dependency on s-selftest-c++.
14424 2017-07-06 Jan Hubicka <hubicka@ucw.cz>
14426 * lto-wrapper.c (merge_and_complain): Do not merge
14427 fexceptions, fnon_call_exceptions, ftrapv, ffp_contract_, fmath_errno,
14428 fsigned_zeros, ftrapping_math, fwrapv.
14429 (append_compiler_options): Do not track these options.
14430 (append_linker_options): Likewie
14432 2017-07-06 Jan Hubicka <hubicka@ucw.cz>
14434 * cgraphunit.c (cgraph_node::finalize_function): When
14435 !flag_toplevel_reorde set no_reorder flag.
14436 (varpool_node::finalize_decl): Likewise.
14437 (symbol_table::compile): Drop no toplevel reorder path.
14439 2017-07-06 Jan Hubicka <hubicka@ucw.cz>
14441 * bb-reorder.c (better_edge_p): Do not build traces across abnormal/eh
14442 edges; zero probability is not better than uninitialized.
14444 2017-07-06 Maxim Ostapenko <m.ostapenko@samsung.com>
14446 * asan.h (asan_sanitize_allocas_p): Declare.
14447 * asan.c (asan_sanitize_allocas_p): New function.
14448 (handle_builtin_stack_restore): Bail out if !asan_sanitize_allocas_p.
14449 (handle_builtin_alloca): Likewise.
14450 * cfgexpand.c (expand_used_vars): Do not add allocas unpoisoning stuff
14451 if !asan_sanitize_allocas_p.
14452 * params.def (asan-instrument-allocas): Add new option.
14453 * params.h (ASAN_PROTECT_ALLOCAS): Define.
14454 * opts.c (common_handle_option): Disable allocas sanitization for
14457 2017-07-06 Maxim Ostapenko <m.ostapenko@samsung.com>
14459 * asan.c: Include gimple-fold.h.
14460 (get_last_alloca_addr): New function.
14461 (handle_builtin_stackrestore): Likewise.
14462 (handle_builtin_alloca): Likewise.
14463 (asan_emit_allocas_unpoison): Likewise.
14464 (get_mem_refs_of_builtin_call): Add new parameter, remove const
14465 quallifier from first paramerer. Handle BUILT_IN_ALLOCA,
14466 BUILT_IN_ALLOCA_WITH_ALIGN and BUILT_IN_STACK_RESTORE builtins.
14467 (instrument_builtin_call): Pass gimple iterator to
14468 get_mem_refs_of_builtin_call.
14469 (last_alloca_addr): New global.
14470 * asan.h (asan_emit_allocas_unpoison): Declare.
14471 * builtins.c (expand_asan_emit_allocas_unpoison): New function.
14472 (expand_builtin): Handle BUILT_IN_ASAN_ALLOCAS_UNPOISON.
14473 * cfgexpand.c (expand_used_vars): Call asan_emit_allocas_unpoison
14474 if function calls alloca.
14475 * gimple-fold.c (replace_call_with_value): Remove static keyword.
14476 * gimple-fold.h (replace_call_with_value): Declare.
14477 * internal-fn.c: Include asan.h.
14478 * sanitizer.def (BUILT_IN_ASAN_ALLOCA_POISON,
14479 BUILT_IN_ASAN_ALLOCAS_UNPOISON): New builtins.
14481 2017-07-06 David Malcolm <dmalcolm@redhat.com>
14483 * Makefile.in (SELFTEST_FLAGS): Drop "-x c", moving it to...
14484 (C_SELFTEST_FLAGS): New.
14485 (CPP_SELFTEST_FLAGS): New.
14486 (SELFTEST_DEPS): New, from deps of s-selftest.
14487 (C_SELFTEST_DEPS): New, from deps of s-selftest.
14488 (CPP_SELFTEST_DEPS): New.
14489 (selftest): Add dependency on s-selftest-c++.
14490 (s-selftest): Rename to...
14491 (s-selftest-c): ...this, moving deps to SELFTEST_DEPS
14492 and C_SELFTEST_DEPS, and using C_SELFTEST_FLAGS rather
14493 than SELFTEST_FLAGS.
14494 (selftest-gdb): Rename to...
14495 (selftest-c-gdb): ...this, using C_SELFTEST_DEPS and
14497 (selftest-gdb): Reintroduce as an alias for selftest-c-gdb.
14498 (selftest-valgrind): Rename to...
14499 (selftest-c-valgrind): ...this, using C_SELFTEST_DEPS and
14501 (selftest-valgrind): Reintroduce as an alias for
14502 selftest-c-valgrind.
14503 (s-selftest-c++): New.
14504 (selftest-c++-gdb): New.
14505 (selftest-c++-valgrind): New.
14507 2017-07-06 Olivier Hainque <hainque@adacore.com>
14509 * gcc.c (process_command): When deciding if undefined variables
14510 should be ignored when processing specs, accept "gcc -v" as well.
14512 2017-07-06 Jan Hubicka <hubicka@ucw.cz>
14514 * auto-profile.c (afdo_set_bb_count, afdo_propagate_edge,
14515 afdo_annotate_cfg): Set counts/probabilities as determined by afdo.
14517 2017-07-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
14519 * config/arm/arm-cpus.in (armv8-r): Add new entry.
14520 * config/arm/arm-isa.h (ISA_ARMv8r): Define macro.
14521 * config/arm/arm-tables.opt: Regenerate.
14522 * config/arm/arm.h (enum base_architecture): Add BASE_ARCH_8R
14524 * doc/invoke.texi: Mention -march=armv8-r and its extensions.
14526 2017-07-06 Carl Love <cel@us.ibm.com>
14528 * ChangeLog: Clean up from mid air collision
14530 2017-07-06 Carl Love <cel@us.ibm.com>
14532 * config/rs6000/rs6000-c.c: Add support for built-in functions
14533 vector signed int vec_subc (vector signed int, vector signed int);
14534 vector signed __int128 vec_subc (vector signed __int128,
14535 vector signed __int128);
14536 vector unsigned __int128 vec_subc (vector unsigned __int128,
14537 vector unsigned __int128);
14538 vector signed int vec_sube (vector signed int, vector signed int,
14539 vector signed int);
14540 vector unsigned int vec_sube (vector unsigned int,
14541 vector unsigned int,
14542 vector unsigned int);
14543 vector signed __int128 vec_sube (vector signed __int128,
14544 vector signed __int128,
14545 vector signed__int128);
14546 vector unsigned __int128 vec_sube (vector unsigned __int128,
14547 vector unsigned __int128,
14548 vector unsigned __int128);
14549 vector signed int vec_subec (vector signed int, vector signed int,
14550 vector signed int);
14551 vector unsigned int vec_subec (vector unsigned int,
14552 vector unsigned int,
14553 vector unsigned int);
14554 vector signed __int128 vec_subec (vector signed __int128,
14555 vector signed __int128,
14556 vector signed__int128);
14557 vector unsigned __int128 vec_subec (vector unsigned __int128,
14558 vector unsigned __int128,
14559 vector unsigned __int128);
14560 * config/rs6000/rs6000.c (ALTIVEC_BUILTIN_VEC_SUBE,
14561 ALTIVEC_BUILTIN_VEC_SUBEC): Add ef_builtins.
14562 * config/rs6000/rs6000-builtin.def (SUBE, SUBEC): Add
14563 BU_ALTIVEC_OVERLOAD_X definitions.
14564 * config/rs6000/altivec.h (vec_sube, vec_subec): Add builtin defines.
14565 * doc/extend.texi: Update the built-in documentation file for the new
14566 built-in functions.
14568 2017-07-06 David Malcolm <dmalcolm@redhat.com>
14571 * diagnostic-show-locus.c (layout::layout): Use start and finish
14572 spelling location for the start and finish of each range.
14573 * genmatch.c (linemap_client_expand_location_to_spelling_point):
14574 Add unused aspect param.
14575 * input.c (expand_location_1): Add "aspect" param, and use it
14576 to access the correct part of the location.
14577 (expand_location): Pass LOCATION_ASPECT_CARET to new param of
14579 (expand_location_to_spelling_point): Likewise.
14580 (linemap_client_expand_location_to_spelling_point): Add "aspect"
14581 param, and pass it to expand_location_1.
14583 2017-07-06 Sebastian Peryt <sebastian.peryt@intel.com>
14585 * config/i386/avx512fintrin.h (_mm_mask_getexp_round_ss,
14586 _mm_maskz_getexp_round_ss, _mm_mask_getexp_round_sd,
14587 _mm_maskz_getexp_round_sd, _mm_mask_getmant_round_sd,
14588 _mm_maskz_getmant_round_sd, _mm_mask_getmant_round_ss,
14589 _mm_maskz_getmant_round_ss, _mm_mask_getexp_ss, _mm_maskz_getexp_ss,
14590 _mm_mask_getexp_sd, _mm_maskz_getexp_sd, _mm_mask_getmant_sd,
14591 _mm_maskz_getmant_sd, _mm_mask_getmant_ss,
14592 _mm_maskz_getmant_ss): New intrinsics.
14593 (__builtin_ia32_getexpss128_mask): Changed to ...
14594 __builtin_ia32_getexpss128_round ... this.
14595 (__builtin_ia32_getexpsd128_mask): Changed to ...
14596 __builtin_ia32_getexpsd128_round ... this.
14597 * config/i386/i386-builtin-types.def
14598 ((V2DF, V2DF, V2DF, INT, V2DF, UQI, INT),
14599 (V4SF, V4SF, V4SF, INT, V4SF, UQI, INT)): New function type aliases.
14600 * config/i386/i386-builtin.def (__builtin_ia32_getexpsd_mask_round,
14601 __builtin_ia32_getexpss_mask_round, __builtin_ia32_getmantsd_mask_round,
14602 __builtin_ia32_getmantss_mask_round): New builtins.
14603 * config/i386/i386.c (V2DF_FTYPE_V2DF_V2DF_INT_V2DF_UQI_INT,
14604 V4SF_FTYPE_V4SF_V4SF_INT_V4SF_UQI_INT): Handle new types.
14605 (CODE_FOR_avx512f_vgetmantv2df_mask_round,
14606 CODE_FOR_avx512f_vgetmantv4sf_mask_round): New cases.
14607 * config/i386/sse.md
14608 (avx512f_sgetexp<mode><round_saeonly_name>): Changed to ...
14609 avx512f_sgetexp<mode><mask_scalar_name>
14610 <round_saeonly_scalar_name> ... this.
14611 (vgetexp<ssescalarmodesuffix>\t{<round_saeonly_op3>%2, %1, %0|
14612 %0, %1, %2<round_saeonly_op3>}): Changed to ...
14613 vgetexp<ssescalarmodesuffix>
14614 \t{<round_saeonly_scalar_mask_op3>%2, %1, %0<mask_scalar_operand3>|
14615 %0<mask_scalar_operand3>, %1, %2<round_saeonly_scalar_mask_op3>} ... this.
14616 (avx512f_vgetmant<mode><round_saeonly_name>): Changed to ...
14617 avx512f_vgetmant<mode><mask_scalar_name>
14618 <round_saeonly_scalar_name> ... this.
14619 (vgetmant<ssescalarmodesuffix>\t{%3, <round_saeonly_op4>%2, %1, %0|
14620 %0, %1, %2<round_saeonly_op4>, %3}): Changed to ...
14621 vgetmant<ssescalarmodesuffix>
14622 \t{%3, <round_saeonly_scalar_mask_op4>%2, %1, %0<mask_scalar_operand4>|
14623 %0<mask_scalar_operand4>, %1, %2
14624 <round_saeonly_scalar_mask_op4>, %3} ... this.
14625 * config/i386/subst.md (mask_scalar_operand4,
14626 round_saeonly_scalar_mask_operand4, round_saeonly_scalar_mask_op4,
14627 round_saeonly_scalar_nimm_predicate): New subst attributes.
14629 2017-07-06 Julia Koval <julia.koval@intel.com>
14631 * config/i386/i386.c (ix86_erase_embedded_rounding):
14632 Remove code for old rounding pattern.
14634 2017-07-06 Richard Earnshaw <rearnsha@arm.com>
14636 * config/arm/t-arm (GTM_H): Add arm-cpu.h.
14638 2017-07-06 Christophe Lyon <christophe.lyon@linaro.org>
14640 * doc/sourcebuild.texi (Test Directives, Variants of
14641 dg-require-support): Add documentation for dg-require-stack-check.
14643 2017-07-05 Sebastian Peryt <sebastian.peryt@intel.com>
14645 * config/i386/subst.md (mask_scalar, round_scalar,
14646 round_saeonly_scalar): New meta-templates.
14647 (mask_scalar_name, mask_scalar_operand3, round_scalar_name,
14648 round_scalar_mask_operand3, round_scalar_mask_op3,
14649 round_scalar_constraint, round_scalar_prefix, round_saeonly_scalar_name,
14650 round_saeonly_scalar_mask_operand3, round_saeonly_scalar_mask_op3,
14651 round_saeonly_scalar_constraint,
14652 round_saeonly_scalar_prefix): New subst attribute.
14653 * config/i386/sse.md
14654 (<sse>_vm<plusminus_insn><mode>3<mask_name><round_name>): Renamed to ...
14655 <sse>_vm<plusminus_insn><mode>3<mask_scalar_name>
14656 <round_scalar_name> ... this.
14657 (<sse>_vm<multdiv_mnemonic><mode>3<mask_name><round_name>): Renamed to ...
14658 <sse>_vm<multdiv_mnemonic><mode>3<mask_scalar_name>
14659 <round_scalar_name> ... this.
14660 (<sse>_vm<code><mode>3<mask_name><round_saeonly_name>): Renamed to ...
14661 <sse>_vm<code><mode>3<mask_scalar_name>
14662 <round_saeonly_scalar_name> ... this.
14663 (v<plusminus_mnemonic><ssescalarmodesuffix>
14664 \t{<round_mask_op3>%2, %1, %0<mask_operand3>|
14665 %0<mask_operand3>, %1, %<iptr>2<round_mask_op3>}): Changed to ...
14666 v<plusminus_mnemonic><ssescalarmodesuffix>
14667 \t{<round_scalar_mask_op3>%2, %1, %0<mask_scalar_operand3>|
14668 %0<mask_scalar_operand3>, %1, %<iptr>2<round_scalar_mask_op3>} ... this.
14669 (v<multdiv_mnemonic><ssescalarmodesuffix>
14670 \t{<round_mask_op3>%2, %1, %0<mask_operand3>|
14671 %0<mask_operand3>, %1, %<iptr>2<round_mask_op3>}): Changed to ...
14672 v<multdiv_mnemonic><ssescalarmodesuffix>
14673 \t{<round_scalar_mask_op3>%2, %1, %0<mask_scalar_operand3>|
14674 %0<mask_scalar_operand3>, %1, %<iptr>2<round_scalar_mask_op3>} ... this.
14675 (v<maxmin_float><ssescalarmodesuffix>
14676 \t{<round_saeonly_mask_op3>%2, %1, %0<mask_operand3>|
14677 %0<mask_operand3>, %1, %<iptr>2<round_saeonly_mask_op3>}): Changed to ...
14678 v<maxmin_float><ssescalarmodesuffix>
14679 \t{<round_saeonly_scalar_mask_op3>%2, %1, %0<mask_scalar_operand3>|
14680 %0<mask_scalar_operand3>, %1, %<iptr>2
14681 <round_saeonly_scalar_mask_op3>} ... this.
14683 2017-07-05 Richard Earnshaw <rearnsha@arm.com>
14685 * config/arm/arm.c (arm_fixed_condition_code_regs): New function.
14686 (TARGET_FIXED_CONDITION_CODE_REGS): Redefine.
14688 2017-07-05 Richard Sandiford <richard.sandiford@linaro.org>
14689 Alan Hayward <alan.hayward@arm.com>
14690 David Sherwood <david.sherwood@arm.com>
14692 * combine.c (simplify_if_then_else): Remove "enum" before
14694 * compare-elim.c (can_eliminate_compare): Likewise.
14695 * config/aarch64/aarch64-builtins.c (aarch64_simd_builtin_std_type):
14697 (aarch64_lookup_simd_builtin_type): Likewise.
14698 (aarch64_simd_builtin_type): Likewise.
14699 (aarch64_init_simd_builtin_types): Likewise.
14700 (aarch64_simd_expand_args): Likewise.
14701 * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_rglist):
14703 (aarch64_reverse_mask): Likewise.
14704 (aarch64_simd_emit_reg_reg_move): Likewise.
14705 (aarch64_gen_adjusted_ldpstp): Likewise.
14706 (aarch64_ccmp_mode_to_code): Likewise.
14707 (aarch64_operands_ok_for_ldpstp): Likewise.
14708 (aarch64_operands_adjust_ok_for_ldpstp): Likewise.
14709 * config/aarch64/aarch64.c (aarch64_ira_change_pseudo_allocno_class):
14711 (aarch64_min_divisions_for_recip_mul): Likewise.
14712 (aarch64_reassociation_width): Likewise.
14713 (aarch64_get_condition_code_1): Likewise.
14714 (aarch64_simd_emit_reg_reg_move): Likewise.
14715 (aarch64_simd_attr_length_rglist): Likewise.
14716 (aarch64_reverse_mask): Likewise.
14717 (aarch64_operands_ok_for_ldpstp): Likewise.
14718 (aarch64_operands_adjust_ok_for_ldpstp): Likewise.
14719 (aarch64_gen_adjusted_ldpstp): Likewise.
14720 * config/aarch64/cortex-a57-fma-steering.c (fma_node::rename):
14722 * config/arc/arc.c (legitimate_offset_address_p): Likewise.
14723 * config/arm/arm-builtins.c (arm_simd_builtin_std_type): Likewise.
14724 (arm_lookup_simd_builtin_type): Likewise.
14725 (arm_simd_builtin_type): Likewise.
14726 (arm_init_simd_builtin_types): Likewise.
14727 (arm_expand_builtin_args): Likewise.
14728 * config/arm/arm-protos.h (arm_expand_builtin): Likewise.
14729 * config/ft32/ft32.c (ft32_libcall_value): Likewise.
14730 (ft32_setup_incoming_varargs): Likewise.
14731 (ft32_function_arg): Likewise.
14732 (ft32_function_arg_advance): Likewise.
14733 (ft32_pass_by_reference): Likewise.
14734 (ft32_arg_partial_bytes): Likewise.
14735 (ft32_valid_pointer_mode): Likewise.
14736 (ft32_addr_space_pointer_mode): Likewise.
14737 (ft32_addr_space_legitimate_address_p): Likewise.
14738 * config/i386/i386-protos.h (ix86_operands_ok_for_move_multiple):
14740 * config/i386/i386.c (ix86_setup_incoming_vararg_bounds): Likewise.
14741 (ix86_emit_outlined_ms2sysv_restore): Likewise.
14742 (iamcu_alignment): Likewise.
14743 (canonicalize_vector_int_perm): Likewise.
14744 (ix86_noce_conversion_profitable_p): Likewise.
14745 (ix86_mpx_bound_mode): Likewise.
14746 (ix86_operands_ok_for_move_multiple): Likewise.
14747 * config/microblaze/microblaze-protos.h
14748 (microblaze_expand_conditional_branch_reg): Likewise.
14749 * config/microblaze/microblaze.c
14750 (microblaze_expand_conditional_branch_reg): Likewise.
14751 * config/powerpcspe/powerpcspe.c (rs6000_init_hard_regno_mode_ok):
14753 (rs6000_reassociation_width): Likewise.
14754 (rs6000_invalid_binary_op): Likewise.
14755 (fusion_p9_p): Likewise.
14756 (emit_fusion_p9_load): Likewise.
14757 (emit_fusion_p9_store): Likewise.
14758 * config/riscv/riscv-protos.h (riscv_regno_mode_ok_for_base_p):
14760 (riscv_hard_regno_mode_ok_p): Likewise.
14761 (riscv_address_insns): Likewise.
14762 (riscv_split_symbol): Likewise.
14763 (riscv_legitimize_move): Likewise.
14764 (riscv_function_value): Likewise.
14765 (riscv_hard_regno_nregs): Likewise.
14766 (riscv_expand_builtin): Likewise.
14767 * config/riscv/riscv.c (riscv_build_integer_1): Likewise.
14768 (riscv_build_integer): Likewise.
14769 (riscv_split_integer): Likewise.
14770 (riscv_legitimate_constant_p): Likewise.
14771 (riscv_cannot_force_const_mem): Likewise.
14772 (riscv_regno_mode_ok_for_base_p): Likewise.
14773 (riscv_valid_base_register_p): Likewise.
14774 (riscv_valid_offset_p): Likewise.
14775 (riscv_valid_lo_sum_p): Likewise.
14776 (riscv_classify_address): Likewise.
14777 (riscv_legitimate_address_p): Likewise.
14778 (riscv_address_insns): Likewise.
14779 (riscv_load_store_insns): Likewise.
14780 (riscv_force_binary): Likewise.
14781 (riscv_split_symbol): Likewise.
14782 (riscv_force_address): Likewise.
14783 (riscv_legitimize_address): Likewise.
14784 (riscv_move_integer): Likewise.
14785 (riscv_legitimize_const_move): Likewise.
14786 (riscv_legitimize_move): Likewise.
14787 (riscv_address_cost): Likewise.
14788 (riscv_subword): Likewise.
14789 (riscv_output_move): Likewise.
14790 (riscv_canonicalize_int_order_test): Likewise.
14791 (riscv_emit_int_order_test): Likewise.
14792 (riscv_function_arg_boundary): Likewise.
14793 (riscv_pass_mode_in_fpr_p): Likewise.
14794 (riscv_pass_fpr_single): Likewise.
14795 (riscv_pass_fpr_pair): Likewise.
14796 (riscv_get_arg_info): Likewise.
14797 (riscv_function_arg): Likewise.
14798 (riscv_function_arg_advance): Likewise.
14799 (riscv_arg_partial_bytes): Likewise.
14800 (riscv_function_value): Likewise.
14801 (riscv_pass_by_reference): Likewise.
14802 (riscv_setup_incoming_varargs): Likewise.
14803 (riscv_print_operand): Likewise.
14804 (riscv_elf_select_rtx_section): Likewise.
14805 (riscv_save_restore_reg): Likewise.
14806 (riscv_for_each_saved_reg): Likewise.
14807 (riscv_register_move_cost): Likewise.
14808 (riscv_hard_regno_mode_ok_p): Likewise.
14809 (riscv_hard_regno_nregs): Likewise.
14810 (riscv_class_max_nregs): Likewise.
14811 (riscv_memory_move_cost): Likewise.
14812 * config/rl78/rl78-protos.h (rl78_split_movsi): Likewise.
14813 * config/rl78/rl78.c (rl78_split_movsi): Likewise.
14814 (rl78_addr_space_address_mode): Likewise.
14815 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
14817 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Likewise.
14818 (rs6000_reassociation_width): Likewise.
14819 (rs6000_invalid_binary_op): Likewise.
14820 (fusion_p9_p): Likewise.
14821 (emit_fusion_p9_load): Likewise.
14822 (emit_fusion_p9_store): Likewise.
14823 * config/visium/visium-protos.h (prepare_move_operands): Likewise.
14824 (ok_for_simple_move_operands): Likewise.
14825 (ok_for_simple_move_strict_operands): Likewise.
14826 (ok_for_simple_arith_logic_operands): Likewise.
14827 (visium_legitimize_reload_address): Likewise.
14828 (visium_select_cc_mode): Likewise.
14829 (output_cbranch): Likewise.
14830 (visium_split_double_move): Likewise.
14831 (visium_expand_copysign): Likewise.
14832 (visium_expand_int_cstore): Likewise.
14833 (visium_expand_fp_cstore): Likewise.
14834 * config/visium/visium.c (visium_pass_by_reference): Likewise.
14835 (visium_function_arg): Likewise.
14836 (visium_function_arg_advance): Likewise.
14837 (visium_libcall_value): Likewise.
14838 (visium_setup_incoming_varargs): Likewise.
14839 (visium_legitimate_constant_p): Likewise.
14840 (visium_legitimate_address_p): Likewise.
14841 (visium_legitimize_address): Likewise.
14842 (visium_secondary_reload): Likewise.
14843 (visium_register_move_cost): Likewise.
14844 (visium_memory_move_cost): Likewise.
14845 (prepare_move_operands): Likewise.
14846 (ok_for_simple_move_operands): Likewise.
14847 (ok_for_simple_move_strict_operands): Likewise.
14848 (ok_for_simple_arith_logic_operands): Likewise.
14849 (visium_function_value_1): Likewise.
14850 (rtx_ok_for_offset_p): Likewise.
14851 (visium_legitimize_reload_address): Likewise.
14852 (visium_split_double_move): Likewise.
14853 (visium_expand_copysign): Likewise.
14854 (visium_expand_int_cstore): Likewise.
14855 (visium_expand_fp_cstore): Likewise.
14856 (visium_split_cstore): Likewise.
14857 (visium_select_cc_mode): Likewise.
14858 (visium_split_cbranch): Likewise.
14859 (output_cbranch): Likewise.
14860 (visium_print_operand_address): Likewise.
14861 * expmed.c (flip_storage_order): Likewise.
14862 * expmed.h (emit_cstore): Likewise.
14863 (flip_storage_order): Likewise.
14864 * genrecog.c (validate_pattern): Likewise.
14865 * hsa-gen.c (gen_hsa_addr): Likewise.
14866 * internal-fn.c (expand_arith_overflow): Likewise.
14867 * ira-color.c (allocno_copy_cost_saving): Likewise.
14868 * lra-assigns.c (find_hard_regno_for_1): Likewise.
14869 * lra-constraints.c (prohibited_class_reg_set_mode_p): Likewise.
14870 (process_invariant_for_inheritance): Likewise.
14871 * lra-eliminations.c (move_plus_up): Likewise.
14872 * omp-low.c (lower_oacc_reductions): Likewise.
14873 * simplify-rtx.c (simplify_subreg): Likewise.
14874 * target.def (TARGET_SETUP_INCOMING_VARARG_BOUNDS): Likewise.
14875 (TARGET_CHKP_BOUND_MODE): Likewise..
14876 * targhooks.c (default_chkp_bound_mode): Likewise.
14877 (default_setup_incoming_vararg_bounds): Likewise.
14878 * targhooks.h (default_chkp_bound_mode): Likewise.
14879 (default_setup_incoming_vararg_bounds): Likewise.
14880 * tree-ssa-math-opts.c (divmod_candidate_p): Likewise.
14881 * tree-vect-loop.c (calc_vec_perm_mask_for_shift): Likewise.
14882 (have_whole_vector_shift): Likewise.
14883 * tree-vect-stmts.c (vectorizable_load): Likewise.
14884 * doc/tm.texi: Regenerate.
14886 2017-07-05 Georg-Johann Lay <avr@gjlay.de>
14888 Graceful degrade if Binutils PR21472 is not available.
14891 * configure.ac [target=avr]: WARN instead of ERROR if avrxmega3
14892 .rodata in flash test fails.
14893 (HAVE_LD_AVR_AVRXMEGA3_RODATA_IN_FLASH): Define it if test passes.
14894 * confgure: Regenerate.
14895 * config.in: Regenerate.
14896 * config/avr/avr.c (avr_asm_named_section)
14897 [HAVE_LD_AVR_AVRXMEGA3_RODATA_IN_FLASH]: Only trigger
14898 __do_copy_data for stuff in .rodata if flash_pm_offset = 0.
14899 (avr_asm_init_sections): Same.
14901 2017-07-05 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
14903 * config/arm/neon.md (fma<VCVTF:mode>4): Remove %?.
14904 (fma<VH:mode>4_intrinsic): Likewise.
14905 (*fmsub<VCVTF:mode>4): Likewise.
14906 (*fmsub<VH:mode>4_intrinsic): Likewise.
14908 2017-07-05 Georg-Johann Lay <avr@gjlay.de>
14911 * config/avr/avr.c (avr_out_movhi_mr_r_xmega) [CONSTANT_ADDRESS_P]:
14912 Don't depend on "optimize > 0".
14913 (out_movhi_r_mr, out_movqi_mr_r): Same.
14914 (out_movhi_mr_r, out_movqi_r_mr): Same.
14915 (avr_address_cost) [CONSTANT_ADDRESS_P]: Don't depend cost for
14916 io_address_operand on "optimize > 0".
14918 2017-07-05 Bin Cheng <bin.cheng@arm.com>
14920 * tree-loop-distribution.c: Add general explanantion on the pass.
14921 (generate_loops_for_partition): Mark distributed loop.
14922 (pg_add_dependence_edges): New parameter. Handle alias data
14923 dependence specially and record it in the parameter if asked.
14924 (struct pg_vdata, pg_edata, pg_edge_callback_data): New structs.
14925 (init_partition_graph_vertices, add_partition_graph_edge): New.
14926 (pg_skip_alias_edge, free_partition_graph_edata_cb): New.
14927 (free_partition_graph_vdata, build_partition_graph): New.
14928 (sort_partitions_by_post_order, merge_dep_scc_partitions): New.
14929 (pg_collect_alias_ddrs, break_alias_scc_partitions): New.
14930 (data_ref_segment_size, latch_dominated_by_data_ref): New.
14931 (compute_alias_check_pairs, version_loop_by_alias_check): New.
14932 (version_for_distribution_p, finalize_partitions): New.
14933 (distribute_loop): Handle alias data dependence specially. Factor
14934 out loop fusion code as functions and call these functions.
14936 2017-07-05 Bin Cheng <bin.cheng@arm.com>
14938 * tree-loop-distribution.c (classify_partition): New parameter and
14939 better handle reduction statement.
14940 (rdg_build_partitions): Revise comment.
14941 (distribute_loop): Compute statements in all partitions and pass it
14942 to classify_partition.
14944 2017-07-05 Bin Cheng <bin.cheng@arm.com>
14946 * tree-loop-distribution.c (enum partition_type): New.
14947 (struct partition): New field type.
14948 (partition_merge_into): Add parameter. Update partition type.
14949 (data_dep_in_cycle_p, update_type_for_merge): New functions.
14950 (build_rdg_partition_for_vertex): Compute partition type.
14951 (rdg_build_partitions): Dump partition type.
14952 (distribute_loop): Update calls to partition_merge_into.
14954 2017-07-05 Bin Cheng <bin.cheng@arm.com>
14956 * tree-loop-distribution.c (struct ddr_hasher): New.
14957 (ddr_hasher::hash, ::equal, get_data_dependence): New function.
14959 (classify_partition): Call get_data_dependence.
14960 (pg_add_dependence_edges): Ditto.
14961 (distribute_loop): Release data dependence hash table.
14963 2017-07-05 Bin Cheng <bin.cheng@arm.com>
14965 * tree-loop-distribution.c (ref_base_address): Delete.
14966 (similar_memory_accesses): Rename ...
14967 (share_memory_accesses): ... to this. Check if partitions access
14968 the same memory reference.
14969 (distribute_loop): Call share_memory_accesses.
14971 2017-07-05 Bin Cheng <bin.cheng@arm.com>
14973 * tree-loop-distribution.c (struct partition): New field recording
14974 its data reference.
14975 (partition_alloc, partition_free): Init and release data refs.
14976 (partition_merge_into): Merge data refs.
14977 (build_rdg_partition_for_vertex): Collect data refs for partition.
14978 (pg_add_dependence_edges): Change parameters from vector to bitmap.
14980 (distribute_loop): Remve data refs from vertice data of partition
14983 2017-07-05 Bin Cheng <bin.cheng@arm.com>
14985 * tree-loop-distribution.c (params.h): Include header file.
14986 (MAX_DATAREFS_NUM, DR_INDEX): New macro.
14987 (datarefs_vec): New global var.
14988 (create_rdg_vertices): Use datarefs_vec directly.
14989 (free_rdg): Don't free data references.
14990 (build_rdg): Update use. Don't free data references.
14991 (distribute_loop): Compute global variable for data references.
14992 Bail out if there are too many data references.
14994 2017-07-05 Bin Cheng <bin.cheng@arm.com>
14996 * tree-loop-distribution.c (loop_nest): New global var.
14997 (build_rdg): Use loop directly, rather than loop nest.
14998 (pg_add_dependence_edges): Remove loop nest parameter. Use global
15000 (distribute_loop): Compute global variable loop nest. Update use.
15002 2017-07-05 Bin Cheng <bin.cheng@arm.com>
15004 * tree-loop-distribution.c (enum fuse_type, fuse_message): New.
15005 (partition_merge_into): New parameter. Dump reason for fusion.
15006 (distribute_loop): Update use of partition_merge_into.
15008 2017-07-05 Bin Cheng <bin.cheng@arm.com>
15010 * tree-loop-distribution.c (bb_top_order_index): New.
15011 (bb_top_order_index_size, bb_top_order_cmp): New.
15012 (stmts_from_loop): Use topological order.
15013 (pass_loop_distribution::execute): Compute and release topological
15014 order for basic blocks.
15016 2017-07-05 Bin Cheng <bin.cheng@arm.com>
15018 * tree-loop-distribution.c (pass_loop_distribution::execute): Skip
15021 2017-07-05 Bin Cheng <bin.cheng@arm.com>
15023 * cfgloop.h (struct loop): Add comment. New field orig_loop_num.
15024 * cfgloopmanip.c (lv_adjust_loop_entry_edge): Comment change.
15025 * internal-fn.c (expand_LOOP_DIST_ALIAS): New function.
15026 * internal-fn.def (LOOP_DIST_ALIAS): New.
15027 * tree-vectorizer.c (fold_loop_vectorized_call): Rename to ...
15028 (fold_loop_internal_call): ... this.
15029 (vect_loop_dist_alias_call): New function.
15030 (set_uid_loop_bbs): Call fold_loop_internal_call.
15031 (vectorize_loops): Fold IFN_LOOP_VECTORIZED and IFN_LOOP_DIST_ALIAS
15034 2017-07-04 Uros Bizjak <ubizjak@gmail.com>
15037 * config/i386/i386.md (setcc + movzbl/and to xor + setcc peepholes):
15038 Require dead FLAGS_REG at the beginning of a peephole.
15040 2017-07-04 Uros Bizjak <ubizjak@gmail.com>
15043 * config/i386/adxintrin.h (_subborrow_u32): Swap _X and _Y
15044 arguments in the call to __builtin_ia32_sbb_u32.
15045 (_subborrow_u64): Swap _X and _Y arguments in the call to
15046 __builtin_ia32_sbb_u64.
15048 2017-07-04 Jakub Jelinek <jakub@redhat.com>
15051 * tree-vrp.c (compare_assert_loc): Turn into a function template
15052 with stable template parameter. Only test if a->e is NULL,
15053 !a->e == !b->e has been verified already. Use e == NULL or
15054 e != NULL instead of e or ! e tests. If stable is true, don't use
15055 iterative_hash_expr, on the other side allow a or b or both NULL
15056 and sort the NULLs last.
15057 (process_assert_insertions): Sort using compare_assert_loc<false>
15058 instead of compare_assert_loc, later sort using
15059 compare_assert_loc<true> before calling process_assert_insertions_for
15060 in a loop. Use break instead of continue once seen NULL pointer.
15062 2017-07-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
15064 * config/arm/driver-arm.c (arm_cpu_table): Add entry for ARM
15065 Cortex-R7 and Cortex-R8 processors.
15067 2017-07-04 Jan Hubicka <hubicka@ucw.cz>
15069 * ipa-utils.c (ipa_merge_profiles): Fix merging when dst is
15070 uninitialized while src is not.
15072 2017-07-04 Richard Earnshaw <rearnsha@arm.com>
15074 * common/config/arm/arm-common.c: Adjust include path for
15076 * config/arm/t-arm (TM_H): Adjust path for arm-cpu.h.
15077 (arm-cpu.h): Create in build directory. Adjust dependency rules.
15078 (arm-cpu-data.h): Likewise.
15079 (arm-cpu-cdata.h): Likewise.
15080 * config/arm/arm-cpu.h: Delete.
15081 * config/arm/arm-cpu-cdata.h: Delete.
15082 * config/arm/arm-cpu-data.h: Delete.
15084 2017-07-04 James Greenhalgh <james.greenhalgh@arm.com>
15086 * config/arm/arm-cpus.in (cortex-a55): New.
15087 (cortex-a75): Likewise.
15088 (cortex-a75.cortex-a55): Likewise.
15089 * config/arm/driver-arm.c (arm_cpu_table): Add cortex-a55 and
15091 * doc/invoke.texi (-mcpu): Document cortex-a55 and cortex-a75.
15092 * config/arm/arm-cpu-cdata.h: Regenerate.
15093 * config/arm/arm-cpu-data.h: Regenerate.
15094 * config/arm/arm-cpu.h: Regenerate.
15095 * config/arm/arm-tables.opt: Regenerate.
15096 * config/arm/arm-tune.md: Regenerate.
15098 2017-07-04 Jan Hubicka <hubicka@ucw.cz>
15100 * haifa-sched.c (sched_create_recovery_edges): Update profile.
15102 2017-07-04 Jan Hubicka <hubicka@ucw.cz>
15104 * bb-reorder.c (better_edge_p): Fix handling of uninitialized
15107 2017-07-04 Richard Sandiford <richard.sandiford@linaro.org>
15109 PR tree-optimization/81292
15110 * tree-ssa-strlen.c (handle_builtin_strlen): When setting
15111 full_string_p, also call adjust_related_strinfos if the adjustment
15112 is simple, otherwise invalidate related strinfos.
15114 2017-07-04 Martin Liska <mliska@suse.cz>
15117 * sanopt.c (sanitize_rewrite_addressable_params): Mark the
15118 newly created variable as DECL_IGNORED_P.
15120 2017-07-04 Martin Liska <mliska@suse.cz>
15123 * ipa-inline.c (inline_small_functions):
15124 Use xstrdup_for_dump.
15126 2017-07-04 Tom de Vries <tom@codesourcery.com>
15128 * graph.c (draw_cfg_edges): Save and restore EDGE_DFS_BACK.
15130 2017-07-03 Dominique d'Humieres <dominiq@lps.ens.fr>
15133 * config/darwin.c (darwin_function_switched_text_sections):
15136 2017-07-03 Jan Hubicka <hubicka@ucw.cz>
15138 * tree-vect-loop-manip.c (vect_do_peeling): Fix scaling up.
15140 2017-07-03 Richard Earnshaw <rearnsha@arm.com>
15142 * doc/invoke.texi (ARM Options): Add -mbe8 and -mbe32 to option summary.
15144 2017-07-03 Richard Sandiford <richard.sandiford@linaro.org>
15146 * tree-vect-loop.c (vect_analyze_loop_2): Treat min_scalar_loop_bound,
15147 min_profitable_iters, and th as inclusive lower bounds.
15148 Fix LOOP_VINFO_PEELING_FOR_GAPS condition.
15149 (vect_estimate_min_profitable_iters): Return inclusive lower bounds
15150 for min_profitable_iters and min_profitable_estimate.
15151 (vect_transform_loop): Treat th as an inclusive lower bound.
15152 * tree-vect-loop-manip.c (vect_loop_versioning): Likewise.
15154 2017-07-03 Dominique d'Humieres <dominiq@lps.ens.fr>
15157 * config/darwin.c (darwin_function_switched_text_sections):
15158 Replace DECL_NAME with DECL_ASSEMBLER_NAME, split assemble_name_raw
15159 in two pieces, and suppress the use of buf.
15161 2017-07-03 Nathan Sidwell <nathan@acm.org>
15163 * hash-table.h (hash_table_mod1): Fix indentation.
15165 2017-07-02 Jan Hubicka <hubicka@ucw.cz>
15167 PR middle-end/81290
15168 * predict.c (force_edge_cold): Be more careful about propagation
15170 * profile-count.h (profile_probability::guessed,
15171 profile_probability::fdo, profile_count::guessed, profile_count::fdo):
15173 * tree-ssa-threadupdate.c (recompute_probabilities): Result is guessed.
15175 2017-07-03 James Greenhalgh <james.greenhalgh@arm.com>
15177 * doc/invoke.texi (rcpc architecture extension): Document it.
15179 2017-07-03 Richard Biener <rguenther@suse.de>
15181 PR tree-optimization/60510
15182 * tree-vect-loop.c (vect_create_epilog_for_reduction): Pass in
15183 the scalar reduction PHI and use it.
15184 (vectorizable_reduction): Properly guard the single_defuse_cycle
15185 path for non-SLP reduction chains where we cannot use it.
15186 Rework reduc_def/index and vector type deduction. Rework
15187 vector operand gathering during reduction op code-gen.
15188 * tree-vect-slp.c (vect_analyze_slp): For failed SLP reduction
15189 chains dissolve the chain and leave it to non-SLP reduction
15192 2017-07-03 Richard Sandiford <richard.sandiford@linaro.org>
15194 * tree-data-ref.h (dr_alignment): Declare.
15195 * tree-data-ref.c (dr_alignment): New function.
15196 * tree-vectorizer.h (dataref_aux): Remove base_element_aligned.
15197 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Don't
15199 * tree-vect-stmts.c (vectorizable_store): Use dr_alignment.
15201 2017-07-03 Richard Sandiford <richard.sandiford@linaro.org>
15203 * tree-data-ref.h (innermost_loop_behavior): Add base_alignment
15204 and base_misalignment fields.
15205 (DR_BASE_ALIGNMENT, DR_BASE_MISALIGNMENT): New macros.
15206 * tree-data-ref.c: Include builtins.h.
15207 (dr_analyze_innermost): Set up the new innmost_loop_behavior fields.
15208 * tree-vectorizer.h (STMT_VINFO_DR_BASE_ALIGNMENT): New macro.
15209 (STMT_VINFO_DR_BASE_MISALIGNMENT): Likewise.
15210 * tree-vect-data-refs.c: Include tree-cfg.h.
15211 (vect_compute_data_ref_alignment): Use the new innermost_loop_behavior
15212 fields instead of calculating an alignment here.
15213 (vect_analyze_data_refs): Use dr_analyze_innermost. Dump the new
15214 innermost_loop_behavior fields.
15216 2017-07-03 Richard Sandiford <richard.sandiford@linaro.org>
15218 * tree-data-ref.h (innermost_loop_behavior): Add a step_alignment
15220 (DR_STEP_ALIGNMENT): New macro.
15221 * tree-vectorizer.h (STMT_VINFO_DR_STEP_ALIGNMENT): Likewise.
15222 * tree-data-ref.c (dr_analyze_innermost): Initalize step_alignment.
15223 (create_data_ref): Print it.
15224 * tree-vect-stmts.c (vectorizable_load): Use the step alignment
15225 to tell whether the step preserves vector (mis)alignment.
15226 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Likewise.
15227 Move the check for an integer step and generalise to all INTEGER_CST.
15228 (vect_analyze_data_refs): Set DR_STEP_ALIGNMENT when setting DR_STEP.
15229 Print the outer step alignment.
15231 2017-07-03 Richard Sandiford <richard.sandiford@linaro.org>
15233 * tree-data-ref.h (innermost_loop_behavior): Replace aligned_to
15234 with offset_alignment.
15235 (DR_ALIGNED_TO): Delete.
15236 (DR_OFFSET_ALIGNMENT): New macro.
15237 * tree-vectorizer.h (STMT_VINFO_DR_ALIGNED_TO): Delete.
15238 (STMT_VINFO_DR_OFFSET_ALIGNMENT): New macro.
15239 * tree-data-ref.c (dr_analyze_innermost): Update after above changes.
15240 (create_data_ref): Likewise.
15241 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Likewise.
15242 (vect_analyze_data_refs): Likewise.
15243 * tree-if-conv.c (if_convertible_loop_p_1): Use memset before
15244 creating dummy innermost behavior.
15246 2017-07-03 Richard Sandiford <richard.sandiford@linaro.org>
15248 * tree-data-ref.h (dr_analyze_innermost): Replace the dr argument
15249 with a "innermost_loop_behavior *" and refeence tree.
15250 * tree-data-ref.c (dr_analyze_innermost): Likewise.
15251 (create_data_ref): Update call accordingly.
15252 * tree-predcom.c (find_looparound_phi): Likewise.
15254 2017-07-03 Richard Sandiford <richard.sandiford@linaro.org>
15256 * tree-vectorizer.h (_stmt_vec_info): Replace individual dr_*
15257 fields with dr_wrt_vec_loop.
15258 (STMT_VINFO_DR_BASE_ADDRESS, STMT_VINFO_DR_INIT, STMT_VINFO_DR_OFFSET)
15259 (STMT_VINFO_DR_STEP, STMT_VINFO_DR_ALIGNED_TO): Update accordingly.
15260 (STMT_VINFO_DR_WRT_VEC_LOOP): New macro.
15261 (vect_dr_behavior): New function.
15262 (vect_create_addr_base_for_vector_ref): Remove loop parameter.
15263 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Use
15264 vect_dr_behavior. Use a step_preserves_misalignment_p boolean to
15265 track whether the step preserves the misalignment.
15266 (vect_create_addr_base_for_vector_ref): Remove loop parameter.
15267 Use vect_dr_behavior.
15268 (vect_setup_realignment): Update call accordingly.
15269 (vect_create_data_ref_ptr): Likewise. Use vect_dr_behavior.
15270 * tree-vect-loop-manip.c (vect_gen_prolog_loop_niters): Update
15271 call to vect_create_addr_base_for_vector_ref.
15272 (vect_create_cond_for_align_checks): Likewise.
15273 * tree-vect-patterns.c (vect_recog_bool_pattern): Copy
15274 STMT_VINFO_DR_WRT_VEC_LOOP as a block.
15275 (vect_recog_mask_conversion_pattern): Likewise.
15276 * tree-vect-stmts.c (compare_step_with_zero): Use vect_dr_behavior.
15277 (new_stmt_vec_info): Remove redundant zeroing.
15279 2017-07-03 Richard Earnshaw <rearnsha@arm.com>
15281 * common/config/arm/arm-common.c (arm_be8_option): New function.
15282 * config/arm/arm-isa.h (isa_feature): Add new feature bit isa_bit_be8.
15283 (ISA_ARMv6): Add isa_bit_be8.
15284 * config/arm/arm.h (arm_be8_option): Add prototype.
15285 (BE8_SPEC_FUNCTION): New define.
15286 (EXTRA_SPEC_FUNCTIONS): Add BE8_SPEC_FUNCTION.
15287 * config/arm/arm.opt (mbig-endian): Mark as Negative of mlittle-endian.
15288 (mlittle-endian): Similarly.
15289 (mbe8, mbe32): New options.
15290 * config/arm/bpabi.h (BE8_LINK_SPEC): Call arm_be8_option.
15291 * doc/invoke.texi (ARM Options): Document -mbe8 and -mbe32.
15293 2017-07-02 Jan Hubicka <hubicka@ucw.cz>
15295 * tree-cfg.c (gimple_find_sub_bbs): Fix profile updating.
15297 2017-07-02 Jan Hubicka <hubicka@ucw.cz>
15299 * tree-cfgcleanup.c (want_merge_blocks_p): New function.
15300 (cleanup_tree_cfg_bb): Use it.
15301 * profile-count.h (profile_count::of_for_merging, profile_count::merge):
15303 * tree-cfg.c (gimple_merge_blocks): Use profile_count::merge.
15305 2017-07-02 Jan Hubicka <hubicka@ucw.cz>
15308 * loop-doloop.c (add_test): Update profile.
15310 2017-07-03 Martin Liska <mliska@suse.cz>
15313 * sanopt.c (rewrite_usage_of_param): New function.
15314 (sanitize_rewrite_addressable_params): Likewise.
15315 (pass_sanopt::execute): Call rewrite_usage_of_param.
15317 2017-07-03 Richard Biener <rguenther@suse.de>
15319 * tree-vect-loop.c (vect_create_epilog_for_reduction): Revert
15320 back to using VIEW_CONVERT_EXPR.
15322 2017-07-03 Martin Liska <mliska@suse.cz>
15325 * doc/extend.texi: Document when a resolver function is
15326 generated for target_clones.
15328 2017-07-03 Martin Liska <mliska@suse.cz>
15330 * asan.c (asan_emit_stack_protection): Unpoison just red zones
15331 and shadow memory of auto variables which are subject of
15332 use-after-scope sanitization.
15333 (asan_expand_mark_ifn): Add do set only when is_poison.
15335 2016-07-03 Richard Biener <rguenther@suse.de>
15337 * tree-vect-loop.c (vect_analyze_loop_operations): Also analyze
15339 (vect_force_simple_reduction): Record reduction def -> phi mapping.
15340 (vectorizable_reduction): Perform reduction PHI creation when
15341 visiting a reduction PHI and adjust and simplify code generation
15342 phase of the reduction op. Cache dts, use fold_binary, not fold_build2.
15343 (vect_transform_loop): Visit reduction PHIs.
15344 * tree-vect-slp.c (vect_get_and_check_slp_defs): Record reduction
15345 defs into the SLP tree.
15346 (vect_build_slp_tree): Reduction defs terminate the recursion.
15347 * tree-vect-stmts.c (vect_get_vec_def_for_operand_1): Allow lookup
15349 (vect_get_vec_defs_for_stmt_copy): Export.
15350 (vect_get_vec_defs): Likewise.
15351 * tree-vectorizer.h (struct _stmt_vec_info): Amend reduc_def
15353 (vect_get_vec_defs_for_stmt_copy): Declare.
15354 (vect_get_vec_defs): Likewise.
15356 2017-07-03 Richard Sandiford <richard.sandiford@linaro.org>
15358 * tree-data-ref.c (dr_analyze_innermost): Replace the "nest"
15359 parameter with a "loop" parameter and use it instead of the
15360 loop containing DR_STMT. Don't check simple_iv when doing
15361 BB analysis. Describe the two analysis modes in the comment.
15363 2017-07-03 Tom de Vries <tom@codesourcery.com>
15365 PR tree-optimization/69468
15366 * tree-ssa-tail-merge.c (ignore_edge_flags): New constant.
15367 (find_same_succ_bb): Handle ignore_edge_flags.
15369 2017-07-03 Tom de Vries <tom@codesourcery.com>
15371 PR tree-optimization/81192
15372 * tree-ssa-tail-merge.c (same_succ_hash): Use bb->loop_father->num in
15374 (same_succ::equal): Don't find bbs to be equal if bb->loop_father
15376 (find_same_succ_bb): Remove obsolete test on bb->loop_father->latch.
15378 2017-07-03 Tom de Vries <tom@codesourcery.com>
15380 PR tree-optimization/81192
15381 * tree-ssa-tail-merge.c (same_succ_flush_bb): Handle
15382 BB_SAME_SUCC (bb) == NULL.
15384 2017-07-02 Jan Hubicka <hubicka@ucw.cz>
15386 * cfgrtl.c (rtl_verify_edges): Enable checking of profile_probability
15389 2017-07-02 Jan Hubicka <hubicka@ucw.cz>
15391 * dumpfile.c: Include profile-count.h
15392 * tree-cfg.c (gimple_duplicate_sese_tail): Drop UNUSED attributes;
15394 (insert_cond_bb): Update profile.
15395 * tree-cfg.h (insert_cond_bb): Update prototype.
15396 * tree-chkp-opt.c (chkp_optimize_string_function_calls): Update.
15397 * tree-dump.c: Do not include tree-cfg.
15399 2017-07-02 Jan Hubicka <hubicka@ucw.cz>
15401 * bb-reorder.c (fix_up_crossing_landing_pad): Update profile.
15403 2017-07-02 Jan Hubicka <hubicka@ucw.cz>
15405 * expect.c (dw2_build_landing_pads): Update profile of the landing pad
15408 2017-07-02 Jan Hubicka <hubicka@ucw.cz>
15410 * tree-complex.c (expand_complex_div_wide): update profile.
15412 2017-07-02 Richard Sandiford <richard.sandiford@linaro.org>
15413 Alan Hayward <alan.hayward@arm.com>
15414 David Sherwood <david.sherwood@arm.com>
15416 * Makefile.in (MACHMODE_H): Remove insn-modes.h
15417 (CORETYPES_H): New define.
15418 (MOSTLYCLEANFILES): Add insn-modes-inline.h.
15419 (insn-modes-inline.h, s-modes-inline-h): New rules.
15420 (generated_files): Add insn-modes-inline.h.
15421 (RTL_BASE_H, TREE_CORE_H): Use CORETYPES_H instead of coretypes.h.
15422 (build/gensupport.o, build/ggc-none.o, build/print-rtl.o): Likewise.
15423 (build/read-md.o, build/read-rtl.o, build/rtl.o): Likewise.
15424 (build/vec.o, build/hash-table.o, build/inchash.o): Likewise.
15425 (build/gencondmd.o, build/genattr.o, build/genattr-common.o): Likewise.
15426 (build/genattrtab.o, build/genautomata.o, build/gencheck.o): Likewise.
15427 (build/gencodes.o, build/genconditions.o): Likewise.
15428 (build/genconfig.o, build/genconstants.o, build/genemit.o): Likewise.
15429 (build/genenums.o, build/genextract.o, build/genflags.o): Likewise.
15430 (build/gentarget-def.o, build/genmddeps.o, build/genopinit.o)
15431 (build/genoutput.o, build/genpeep.o, build/genpreds.o): Likewise.
15432 (build/genrecog.o, build/genmddump.o, build/genmatch.o): Likewise.
15433 (build/gencfn-macros.o, build/gcov-iov.o): Likewise.
15434 * coretypes.h: Include everything up to real.h for generators.
15435 Include insn-modes.h first. Include wide-int-print.h after
15436 wide-int.h. Include insn-modes-inline.h and then machmode.h.
15437 * machmode.h: Don't include insn-modes.h here.
15438 * function-tests.c: Remove includes of signop.h, machmode.h,
15439 double-int.h and wide-int.h.
15441 * gcc-rich-location.c: Remove includes of machmode.h, double-int.h
15443 * optc-save-gen.awk: Likewise.
15444 * gencheck.c (BITS_PER_UNIT): Delete dummy definition.
15445 * godump.c: Remove include of wide-int-print.h.
15446 * pretty-print.h: Likewise.
15447 * wide-int-print.cc: Likewise.
15448 * wide-int.cc: Likewise.
15449 * hash-map-tests.c: Remove include of signop.h.
15450 * hash-set-tests.c: Likewise.
15451 * rtl-tests.c: Likewise.
15452 * mkconfig.sh: Remove include of machmode.h.
15453 * genmodes.c (emit_insn_modes_h): Split emission of inline functions
15455 (emit_insn_modes_inline_h): ...this new function. Emit the code
15456 into an insn-modes-inline.h header file, adding appropriate
15457 include guards and end comments.
15458 (emit_insn_modes_c_header): Remove include of machmode.h.
15459 (emit_min_insn_modes_c_header): Include coretypes.h rather than
15461 (main): Handle -i flag and call emit_insn_modes_inline_h when
15464 2017-07-02 Richard Sandiford <richard.sandiford@linaro.org>
15466 * tree-ssa-strlen.c (strinfo): Rename the length field to
15467 nonzero_chars. Add a full_string_p field.
15468 (compare_nonzero_chars, zero_length_string_p): New functions.
15469 (get_addr_stridx): Add an offset_out parameter.
15470 Use compare_nonzero_chars.
15471 (get_stridx): Update accordingly. Use compare_nonzero_chars.
15472 (new_strinfo): Update after above changes to strinfo.
15473 (set_endptr_and_length): Set full_string_p.
15474 (get_string_length): Update after above changes to strinfo.
15475 (unshare_strinfo): Update call to new_strinfo.
15476 (maybe_invalidate): Likewise.
15477 (get_stridx_plus_constant): Change off to unsigned HOST_WIDE_INT.
15478 Use compare_nonzero_chars and zero_string_p. Treat nonzero_chars
15479 as a uhwi instead of an shwi. Update after above changes to
15480 strinfo and new_strinfo.
15481 (zero_length_string): Assert that chainsi contains full strings.
15482 Use zero_length_string_p. Update call to new_strinfo.
15483 (adjust_related_strinfos): Update after above changes to strinfo.
15484 Copy full_string_p from origsi.
15485 (adjust_last_stmt): Use zero_length_string_p.
15486 (handle_builtin_strlen): Update after above changes to strinfo and
15487 new_strinfo. Install the lhs as the string length if the previous
15488 entry didn't describe a full string.
15489 (handle_builtin_strchr): Update after above changes to strinfo
15491 (handle_builtin_strcpy): Likewise.
15492 (handle_builtin_strcat): Likewise.
15493 (handle_builtin_malloc): Likewise.
15494 (handle_pointer_plus): Likewise.
15495 (handle_builtin_memcpy): Likewise. Track nonzero characters
15496 that aren't necessarily followed by a nul terminator.
15497 (handle_char_store): Likewise.
15499 2017-07-02 Richard Sandiford <richard.sandiford@linaro.org>
15501 PR tree-optimization/80769
15502 * tree-ssa-strlen.c (strinfo): Document that "stmt" is also used
15503 for malloc and calloc. Document the new invariant that all related
15504 strinfos have delayed lengths or none do.
15505 (verify_related_strinfos): Move earlier in file.
15506 (set_endptr_and_length): New function, split out from...
15507 (get_string_length): ...here. Also set the lengths of related
15509 (zero_length_string): Assert that chainsi has known (rather than
15511 (adjust_related_strinfos): Likewise.
15513 2017-07-02 Richard Sandiford <richard.sandiford@linaro.org>
15515 PR tree-optimization/81136
15516 * tree-vect-data-refs.c (vect_update_misalignment_for_peel): Only
15517 assert that two references with the same misalignment have the same
15518 compile-time misalignment if those compile-time misalignments
15521 2017-07-01 Andi Kleen <ak@linux.intel.com>
15523 * print-tree.c (print_node): Print all attributes.
15525 2017-07-01 Jan Hubicka <hubicka@ucw.cz>
15527 * cfg.c (scale_bbs_frequencies): New function.
15528 * cfg.h (scale_bbs_frequencies): Declare it.
15529 * cfgloopanal.c (single_likely_exit): Cleanup.
15530 * cfgloopmanip.c (scale_loop_frequencies): Take profile_probability
15532 (scale_loop_profile): Likewise.
15533 (loop_version): Likewise.
15534 (create_empty_loop_on_edge): Update.
15535 * cfgloopmanip.h (scale_loop_frequencies, scale_loop_profile,
15536 scale_loop_frequencies, scale_loop_profile, loopify,
15537 loop_version): Update prototypes.
15538 * modulo-sched.c (sms_schedule): Update.
15539 * predict.c (unlikely_executed_edge_p): Also check probability.
15540 (probably_never_executed_edge_p): Fix typo.
15541 * tree-if-conv.c (version_loop_for_if_conversion): Update.
15542 * tree-parloops.c (gen_parallel_loop): Update.
15543 * tree-ssa-loop-ivcanon.c (try_peel_loop): Update.
15544 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Update.
15545 * tree-ssa-loop-split.c (split_loop): Update.
15546 * tree-ssa-loop-unswitch.c (tree_unswitch_loop): Update.
15547 * tree-vect-loop-manip.c (vect_do_peeling): Update.
15548 (vect_loop_versioning): Update.
15549 * tree-vect-loop.c (scale_profile_for_vect_loop): Update.
15551 2017-07-01 Jan Hubicka <hubicka@ucw.cz>
15553 * trans-mem.c (split_bb_make_tm_edge): Update profile.
15555 2017-07-01 Jan Hubicka <hubicka@ucw.cz>
15557 * tree-if-conv.c (combine_blocks): Use make_single_succ_edge
15558 to keep profile consistent.
15560 2017-07-01 Jan Hubicka <hubicka@ucw.cz>
15562 * cfgrtl.c (rtl_flow_call_edges_add): Update profile.
15563 * tree-cfg.c (gimple_flow_call_edges_add): Likewise.
15564 * profile-count.h (max_safe_multiplier): Make unsigned.
15565 (profile_count::guessed_zero): New.
15567 2017-07-01 Jan Hubicka <hubicka@ucw.cz>
15569 * bb-reorder.c (fix_up_crossing_landing_pad,
15570 fix_crossing_conditional_branches): Use make_single_succ_edge
15571 to keep profile consistent.
15573 2017-07-01 Jan Hubicka <hubicka@ucw.cz>
15575 * tree-vect-loop.c (optimize_mask_stores): Use make_single_succ_edge
15578 2017-07-01 Jakub Jelinek <jakub@redhat.com>
15581 * bb-reorder.c (fix_up_fall_thru_edges): Move variable declarations to
15582 the right scopes, make sure cond_jump isn't preserved between multiple
15583 iterations. Search for fallthru edge whenever there are 3+ edges and
15584 use find_fallthru_edge for it.
15586 2017-06-29 Jan Hubicka <hubicka@ucw.cz>
15588 Patch by Alexander Monakov <amonakov@ispras.ru>
15589 * sel-sched-ir.c (compute_succs_info): Handle uninitialized
15590 probabilities consistently.
15592 2017-06-29 Jan Hubicka <hubicka@ucw.cz>
15594 * pa.c (pa_expand_compare_and_swap_loop): Update call of
15595 emit_cmp_and_jump_insns.
15597 2017-06-29 Jan Hubicka <hubicka@ucw.cz>
15600 * tree-inline.c (expand_call_inline): Combine profile statuses.
15602 2017-06-30 Andrew Pinski <apinski@cavium.com>
15604 * tree-if-conv.c (predicate_scalar_phi): Update new_stmt if
15605 fold_stmt returned true.
15607 2017-06-30 Nathan Sidwell <nathan@acm.org>
15609 * ggc.h (empty_string): Delete.
15610 * cfgexpand.c (expand_asm_stmt): Use plain "".
15611 * optabs.c (expand_asm_memory_barrier): Likewise.
15612 * stringpool.c (empty_string): Delete.
15613 (digit_vector, digit_string): Delete.
15614 (ggc_alloc_string): Use plain "", don't optimize single digit
15615 strings. Use ggc_alloc_atomic.
15617 2017-06-30 Richard Earnshaw <rearnsha@arm.com>
15619 * rtlanal.c (insn_rtx_cost): If a parallel contains exactly one
15620 comparison set and one other set, use the cost of the non-comparison
15623 2017-06-30 Nathan Sidwell <nathan@acm.org>
15625 * ggc.h: Replace all 'static inline' with plain 'inline'. Fix
15628 2017-06-30 Peter Bergner <bergner@vnet.ibm.com>
15630 * tree-cfg.c (group_case_labels_stmt): Merge scanning and compressing
15631 loops. Remove now unneeded calls to gimple_switch_set_label() that
15632 just set removed labels to NULL_TREE.
15634 2017-06-30 Aldy Hernandez <aldyh@redhat.com>
15636 * tree-ssanames.c (set_range_info_raw): Abstract from ...
15637 (set_range_info): ...here. Only call set_range_info_raw if domain
15639 (set_nonzero_bits): Call set_range_info_raw.
15640 * tree-ssanames.h (set_range_info_raw): New.
15642 2017-06-30 Jakub Jelinek <jakub@redhat.com>
15645 * config/i386/sse.md (vec_extract_lo_<mode><mask_name>): For V8FI,
15646 V16FI and VI8F_256 iterators, use <store_mask_predicate> instead
15647 of nonimmediate_operand and <store_mask_constraint> instead of m
15648 for the input operand. For V8FI iterator, always split if input
15649 is a MEM. For V16FI and V8SF_256 iterators, don't test if both
15650 operands are MEM if <mask_applied>. For VI4F_256 iterator, use
15651 <store_mask_predicate> instead of register_operand and
15652 <store_mask_constraint> instead of v for the input operand. Make
15653 sure both operands aren't MEMs for if not <mask_applied>.
15655 2017-06-30 Sylvestre Ledru <sylvestre@debian.org>
15657 * lto-wrapper.c (copy_file) Close both file descriptors before
15660 2017-06-30 Martin Liska <mliska@suse.cz>
15663 * multiple_target.c (create_dispatcher_calls): Make ifunc
15664 also for function that don't have calls or are not referenced.
15666 2017-06-30 Richard Biener <rguenther@suse.de>
15668 * tree-vect-slp.c (vect_slp_analyze_node_operations): Only
15669 analyze the first scalar stmt. Move vector type computation
15670 for the BB case here from ...
15671 * tree-vect-stmts.c (vect_analyze_stmt): ... here. Guard
15672 live operation processing in the SLP case properly.
15674 2017-06-30 Richard Biener <rguenther@suse.de>
15676 * graph.c (draw_cfg_node_succ_edges): Fix broken dot syntax.
15678 2017-06-30 Martin Liska <mliska@suse.cz>
15681 * tree-eh.c (lower_resx): Call BUILT_IN_ASAN_HANDLE_NO_RETURN
15682 before BUILT_IN_UNWIND_RESUME when ASAN is used.
15684 2017-06-30 Yvan Roux <yvan.roux@linaro.org>
15686 * doc/invoke.texi (AArch64): Add missing options and remove redundant
15689 2017-06-30 Richard Biener <rguenther@suse.de>
15691 PR tree-optimization/81249
15692 * tree-vect-loop.c (vect_create_epilog_for_reduction): Convert
15693 condition reduction result to original scalar type.
15695 2017-06-30 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
15697 * profile-count.h (enum profile_quality): Fix typos and whitespace
15700 2017-06-30 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
15702 * config/s390/s390.c (s390_expand_setmem): Adjust to the new data
15703 type for branch probabilities.
15705 2017-06-29 Julian Brown <julian@codesourcery.com>
15706 Naveen H.S <Naveen.Hurugalawadi@cavium.com>
15708 * config/aarch64/aarch64-fusion-pairs.def: Add ALU_BRANCH entry.
15709 * config/aarch64/aarch64.c (AARCH64_FUSE_ALU_BRANCH): New fusion type.
15710 (thunderx2t99_tunings): Set AARCH64_FUSE_ALU_BRANCH flag.
15711 (aarch_macro_fusion_pair_p): Add support for AARCH64_FUSE_ALU_BRANCH.
15713 2017-06-29 Naveen H.S <Naveen.Hurugalawadi@cavium.com>
15715 * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Push the
15716 check for CC usage into AARCH64_FUSE_CMP_BRANCH.
15717 * config/i386/i386.c (ix86_macro_fusion_pair_p): Push the check for
15718 CC usage from generic code to here.
15719 * sched-deps.c (sched_macro_fuse_insns): Move the condition for
15720 CC usage into the target macros.
15722 2017-06-29 Maya Rashish <coypu@sdf.org>
15724 * config/netbsd.h (NETBSD_LIB_SPEC): Add -lc when creating shared
15727 2017-06-29 Jan Hubicka <hubicka@ucw.cz>
15729 * arm/arm-builtins.c: Include profile-count.h
15730 * except.c (sjlj_emit_function_enter): Use
15731 profile_probability::unlikely.
15733 2017-06-29 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
15735 * config/rs6000/rs6000.c (toc_relative_expr_p): Make tocrel_base
15736 and tocrel_offset be pointer args rather than implicitly using
15738 (legitimate_constant_pool_address_p, rs6000_emit_move,
15739 const_load_sequence_p, adjust_vperm): Add local tocrel_base and
15740 tocrel_offset and use in toc_relative_expr_p call.
15741 (print_operand, print_operand_address): Use static tocrel_base_oac
15742 and tocrel_offset_oac.
15743 (rs6000_output_addr_const_extra): Use static tocrel_base_oac and
15746 2017-06-29 Maya Rashish <coypu@sdf.org>
15748 * config/vax/builtins.md (ffssi2_internal): Correct constraint.
15750 2017-06-29 Eric Botcazou <ebotcazou@adacore.com>
15752 * expr.c (expand_expr) <normal_inner_ref>: When testing for unaligned
15753 objects, take into account only the alignment of 'op0' and 'mode1' if
15756 2017-06-29 Steve Ellcey <sellcey@cavium.com>
15758 * ccmp.c (ccmp_tree_comparison_p): New function.
15759 (ccmp_candidate_p): Update to use above function.
15760 (get_compare_parts): New function.
15761 (expand_ccmp_next): Update to use new functions.
15762 (expand_ccmp_expr_1): Take tree arg instead of gimple, update to use
15764 (expand_ccmp_expr): Pass tree instead of gimple to expand_ccmp_expr_1,
15765 take mode as argument.
15766 * ccmp.h (expand_ccmp_expr): Add mode as argument.
15767 * expr.c (expand_expr_real_1): Pass mode as argument.
15769 2017-06-29 Segher Boessenkool <segher@kernel.crashing.org>
15771 * combine.c (combine_instructions): Print insns to dump_file, together
15774 2017-06-29 Jan Hubicka <hubicka@ucw.cz>
15776 * asan.c (asan_emit_stack_protection): Update.
15777 (create_cond_insert_point): Update.
15778 * auto-profile.c (afdo_propagate_circuit): Update.
15779 * basic-block.h (struct edge_def): Turn probability to
15780 profile_probability.
15781 (EDGE_FREQUENCY): Update.
15782 * bb-reorder.c (find_traces_1_round): Update.
15783 (better_edge_p): Update.
15784 (sanitize_hot_paths): Update.
15785 * cfg.c (unchecked_make_edge): Initialize probability to uninitialized.
15786 (make_single_succ_edge): Update.
15787 (check_bb_profile): Update.
15788 (dump_edge_info): Update.
15789 (update_bb_profile_for_threading): Update.
15790 * cfganal.c (connect_infinite_loops_to_exit): Initialize new edge
15791 probabilitycount to 0.
15792 * cfgbuild.c (compute_outgoing_frequencies): Update.
15793 * cfgcleanup.c (try_forward_edges): Update.
15794 (outgoing_edges_match): Update.
15795 (try_crossjump_to_edge): Update.
15796 * cfgexpand.c (expand_gimple_cond): Update make_single_succ_edge.
15797 (expand_gimple_tailcall): Update.
15798 (construct_init_block): Use make_single_succ_edge.
15799 (construct_exit_block): Use make_single_succ_edge.
15800 * cfghooks.c (verify_flow_info): Update.
15801 (redirect_edge_succ_nodup): Update.
15802 (split_edge): Update.
15803 (account_profile_record): Update.
15804 * cfgloopanal.c (single_likely_exit): Update.
15805 * cfgloopmanip.c (scale_loop_profile): Update.
15806 (set_zero_probability): Remove.
15807 (duplicate_loop_to_header_edge): Update.
15808 * cfgloopmanip.h (loop_version): Update prototype.
15809 * cfgrtl.c (try_redirect_by_replacing_jump): Update.
15810 (force_nonfallthru_and_redirect): Update.
15811 (update_br_prob_note): Update.
15812 (rtl_verify_edges): Update.
15813 (purge_dead_edges): Update.
15814 (rtl_lv_add_condition_to_bb): Update.
15815 * cgraph.c: (cgraph_edge::redirect_call_stmt_to_calle): Update.
15816 * cgraphunit.c (init_lowered_empty_function): Update.
15817 (cgraph_node::expand_thunk): Update.
15818 * cilk-common.c: Include profile-count.h
15819 * dojump.c (inv): Remove.
15820 (jumpifnot): Update.
15821 (jumpifnot_1): Update.
15822 (do_jump_1): Update.
15824 (do_jump_by_parts_greater_rtx): Update.
15825 (do_compare_rtx_and_jump): Update.
15826 * dojump.h (jumpifnot, jumpifnot_1, jumpif_1, jumpif, do_jump,
15827 do_jump_1. do_compare_rtx_and_jump): Update prototype.
15828 * dwarf2cfi.c: Include profile-count.h
15829 * except.c (dw2_build_landing_pads): Use make_single_succ_edge.
15830 (sjlj_emit_dispatch_table): Likewise.
15831 * explow.c: Include profile-count.h
15832 * expmed.c (emit_store_flag_force): Update.
15833 (do_cmp_and_jump): Update.
15834 * expr.c (compare_by_pieces_d::generate): Update.
15835 (compare_by_pieces_d::finish_mode): Update.
15836 (emit_block_move_via_loop): Update.
15837 (store_expr_with_bounds): Update.
15838 (store_constructor): Update.
15839 (expand_expr_real_2): Update.
15840 (expand_expr_real_1): Update.
15841 * expr.h (try_casesi, try_tablejump): Update prototypes.
15842 * gimple-pretty-print.c (dump_probability): Update.
15843 (dump_profile): New.
15844 (dump_gimple_label): Update.
15845 (dump_gimple_bb_header): Update.
15846 * graph.c (draw_cfg_node_succ_edges): Update.
15847 * hsa-gen.c (convert_switch_statements): Update.
15848 * ifcvt.c (cheap_bb_rtx_cost_p): Update.
15849 (find_if_case_1): Update.
15850 (find_if_case_2): Update.
15851 * internal-fn.c (expand_arith_overflow_result_store): Update.
15852 (expand_addsub_overflow): Update.
15853 (expand_neg_overflow): Update.
15854 (expand_mul_overflow): Update.
15855 (expand_vector_ubsan_overflow): Update.
15856 * ipa-cp.c (good_cloning_opportunity_p): Update.
15857 * ipa-split.c (split_function): Use make_single_succ_edge.
15858 * ipa-utils.c (ipa_merge_profiles): Update.
15859 * loop-doloop.c (add_test): Update.
15860 (doloop_modify): Update.
15861 * loop-unroll.c (compare_and_jump_seq): Update.
15862 (unroll_loop_runtime_iterations): Update.
15863 * lra-constraints.c (lra_inheritance): Update.
15864 * lto-streamer-in.c (input_cfg): Update.
15865 * lto-streamer-out.c (output_cfg): Update.
15866 * mcf.c (adjust_cfg_counts): Update.
15867 * modulo-sched.c (sms_schedule): Update.
15868 * omp-expand.c (expand_omp_for_init_counts): Update.
15869 (extract_omp_for_update_vars): Update.
15870 (expand_omp_ordered_sink): Update.
15871 (expand_omp_for_ordered_loops): Update.
15872 (expand_omp_for_generic): Update.
15873 (expand_omp_for_static_nochunk): Update.
15874 (expand_omp_for_static_chunk): Update.
15875 (expand_cilk_for): Update.
15876 (expand_omp_simd): Update.
15877 (expand_omp_taskloop_for_outer): Update.
15878 (expand_omp_taskloop_for_inner): Update.
15879 * omp-simd-clone.c (simd_clone_adjust): Update.
15880 * optabs.c (expand_doubleword_shift): Update.
15881 (expand_abs): Update.
15882 (emit_cmp_and_jump_insn_1): Update.
15883 (expand_compare_and_swap_loop): Update.
15884 * optabs.h (emit_cmp_and_jump_insns): Update prototype.
15885 * predict.c (predictable_edge_p): Update.
15886 (edge_probability_reliable_p): Update.
15887 (set_even_probabilities): Update.
15888 (combine_predictions_for_insn): Update.
15889 (combine_predictions_for_bb): Update.
15890 (propagate_freq): Update.
15891 (estimate_bb_frequencies): Update.
15892 (force_edge_cold): Update.
15893 * profile-count.c (profile_count::dump): Add missing space into dump.
15894 (profile_count::debug): Add newline.
15895 (profile_count::differs_from_p): Explicitly convert to unsigned.
15896 (profile_count::stream_in): Update.
15897 (profile_probability::dump): New member function.
15898 (profile_probability::debug): New member function.
15899 (profile_probability::differs_from_p): New member function.
15900 (profile_probability::differs_lot_from_p): New member function.
15901 (profile_probability::stream_in): New member function.
15902 (profile_probability::stream_out): New member function.
15903 * profile-count.h (profile_count_quality): Rename to ...
15904 (profile_quality): ... this one.
15905 (profile_probability): New.
15906 (profile_count): Update.
15907 * profile.c (compute_branch_probabilities): Update.
15908 * recog.c (peep2_attempt): Update.
15909 * sched-ebb.c (schedule_ebbs): Update.
15910 * sched-rgn.c (find_single_block_region): Update.
15911 (compute_dom_prob_ps): Update.
15912 (schedule_region): Update.
15913 * sel-sched-ir.c (compute_succs_info): Update.
15914 * stmt.c (struct case_node): Update.
15915 (do_jump_if_equal): Update.
15916 (get_outgoing_edge_probs): Update.
15917 (conditional_probability): Update.
15918 (emit_case_dispatch_table): Update.
15919 (expand_case): Update.
15920 (expand_sjlj_dispatch_table): Update.
15921 (emit_case_nodes): Update.
15922 * targhooks.c: Update.
15923 * tracer.c (better_p): Update.
15924 (find_best_successor): Update.
15925 * trans-mem.c (expand_transaction): Update.
15926 * tree-call-cdce.c: Update.
15927 * tree-cfg.c (gimple_split_edge): Upate.
15928 (move_sese_region_to_fn): Upate.
15929 * tree-cfgcleanup.c (cleanup_control_expr_graph): Upate.
15930 * tree-eh.c (lower_resx): Upate.
15931 (cleanup_empty_eh_move_lp): Upate.
15932 * tree-if-conv.c (version_loop_for_if_conversion): Update.
15933 * tree-inline.c (copy_edges_for_bb): Update.
15934 (copy_cfg_body): Update.
15935 * tree-parloops.c (gen_parallel_loop): Update.
15936 * tree-profile.c (gimple_gen_ic_func_profiler): Update.
15937 (gimple_gen_time_profiler): Update.
15938 * tree-ssa-dce.c (remove_dead_stmt): Update.
15939 * tree-ssa-ifcombine.c (update_profile_after_ifcombine): Update.
15940 * tree-ssa-loop-im.c (execute_sm_if_changed): Update.
15941 * tree-ssa-loop-ivcanon.c (remove_exits_and_undefined_stmts): Update.
15942 (unloop_loops): Update.
15943 (try_peel_loop): Update.
15944 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Update.
15945 * tree-ssa-loop-split.c (connect_loops): Update.
15946 (split_loop): Update.
15947 * tree-ssa-loop-unswitch.c (tree_unswitch_loop): Update.
15948 (hoist_guard): Update.
15949 * tree-ssa-phionlycprop.c (propagate_rhs_into_lhs): Update.
15950 * tree-ssa-phiopt.c (replace_phi_edge_with_variable): Update.
15951 (value_replacement): Update.
15952 * tree-ssa-reassoc.c (branch_fixup): Update.
15953 * tree-ssa-tail-merge.c (replace_block_by): Update.
15954 * tree-ssa-threadupdate.c (remove_ctrl_stmt_and_useless_edges): Update.
15955 (create_edge_and_update_destination_phis): Update.
15956 (compute_path_counts): Update.
15957 (recompute_probabilities): Update.
15958 (update_joiner_offpath_counts): Update.
15959 (freqs_to_counts_path): Update.
15960 (duplicate_thread_path): Update.
15961 * tree-switch-conversion.c (hoist_edge_and_branch_if_true): Update.
15962 (struct switch_conv_info): Update.
15963 (gen_inbound_check): Update.
15964 * tree-vect-loop-manip.c (slpeel_add_loop_guard): Update.
15965 (vect_do_peeling): Update.
15966 (vect_loop_versioning): Update.
15967 * tree-vect-loop.c (scale_profile_for_vect_loop): Update.
15968 (optimize_mask_stores): Update.
15969 * ubsan.c (ubsan_expand_null_ifn): Update.
15970 * value-prof.c (gimple_divmod_fixed_value): Update.
15971 (gimple_divmod_fixed_value_transform): Update.
15972 (gimple_mod_pow2): Update.
15973 (gimple_mod_pow2_value_transform): Update.
15974 (gimple_mod_subtract): Update.
15975 (gimple_mod_subtract_transform): Update.
15976 (gimple_ic): Update.
15977 (gimple_stringop_fixed_value): Update.
15978 (gimple_stringops_transform): Update.
15979 * value-prof.h: Update.
15981 2017-06-29 Carl Love <cel@us.ibm.com>
15983 * config/rs6000/rs6000-c.c: Add support for built-in functions
15984 vector signed int vec_signed (vector float);
15985 vector signed long long vec_signed (vector double);
15986 vector signed int vec_signed2 (vector double, vector double);
15987 vector signed int vec_signede (vector double);
15988 vector signed int vec_signedo (vector double);
15989 * config/rs6000/rs6000.c (rs6000_generate_vsigned2_code): Add
15990 instruction generator.
15991 * config/rs6000/vsx.md (UNSPEC_VSX_XVCVSPSXWS, UNSPEC_VSX_XVCVSPSXDS,
15992 UNSPEC_VSX_VSIGNED2): Add UNSPECS.
15993 (vsx_xvcvspsxws, vsx_xvcvdpuxds_scale, vsx_xvcvspuxws, vsigned2_v2df):
15995 (vsignedo_v2df, vsignede_v2df, vunsigned2_v2df, vunsignedo_v2df,
15996 vunsignede_v2df): Add define_expands.
15997 * config/rs6000/rs6000-builtin.def (VEC_SIGNED, VEC_UNSIGNED,
15998 VEC_SIGNED2, VEC_UNSIGNED2, VEC_SIGNEDE, VEC_UNSIGNEDE, VEC_SIGNEDO,
15999 VEC_UNSIGNEDO): Add definitions.
16000 * config/vsx.md (UNSPEC_VSX_XVCVSPSXWS, UNSPEC_VSX_XVCVSPSXDS,
16001 UNSPEC_VSX_VSIGNED2): Add UNSPECs.
16002 (vsx_xvcvspsxws, vsx_xvcvspuxws): Add define_insn.
16003 (vsigned2_v2df, vsigendo_v2df, vsignede_v2df,
16004 vunsigned2_v2df, vunsignedo_v2df, vunsignede_v2df): Add define_expands.
16005 * config/rs6000/altivec.h (vec_signed, vec_signed2,
16006 vec_signede and vec_signedo, vec_unsigned, vec_unsigned2,
16007 vec_unsignede, vec_unsignedo): Add builtin defines.
16008 * config/rs6000-protos.h (rs6000_generate_vsigned2_code): Add extern
16010 * doc/extend.texi: Update the built-in documentation file for the
16011 new built-in functions.
16013 2017-06-29 Richard Biener <rguenther@suse.de>
16015 * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Do not add
16016 reduction chains to LOOP_VINFO_REDUCTIONS.
16017 * tree-vect-slp.c (vect_analyze_slp): Continue looking for
16018 SLP reductions after processing reduction chains.
16020 2017-06-29 Nathan Sidwell <nathan@acm.org>
16022 * builtins.c (fold_builtin_FUNCTION): Use
16023 lang_hooks.decl_printable_name.
16025 2017-06-29 Peter Bergner <bergner@vnet.ibm.com>
16027 PR middle-end/81194
16028 * cfgexpand.c (expand_gimple_stmt_1): Handle switch statements
16029 with only one label.
16030 * stmt.c (expand_case): Assert NCASES is greater than one.
16032 2017-06-29 Richard Biener <rguenther@suse.de>
16034 * tree-cfg.c (group_case_labels_stmt): Return whether we changed
16036 (group_case_labels): Likewise.
16037 (find_taken_edge): Push sanity checking on val to workers...
16038 (find_taken_edge_cond_expr): ... here
16039 (find_taken_edge_switch_expr): ... and here, handle cases
16040 with just a default label.
16041 * tree-cfg.h (group_case_labels_stmt): Adjust prototype.
16042 (group_case_labels): Likewise.
16043 * tree-cfgcleanup.c (execute_cleanup_cfg_post_optimizing): When
16044 group_case_labels does anything cleanup the CFG again.
16046 2017-06-29 Bin Cheng <bin.cheng@arm.com>
16048 PR tree-optimization/81196
16049 * tree-ssa-loop-niter.c (number_of_iterations_cond): Handle loop
16050 exit condition comparing two IVs.
16052 2017-06-29 Richard Earnshaw <rearnsha@arm.com>
16054 * config/arm/parsecpu.awk (gen_comm_data): Add initializer for
16055 profile to the dummy entry at the end of the list of architectures.
16056 * config/arm/arm-cpu-cdata.h: Regenerated.
16058 2017-06-29 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16059 Michael Collison <michael.collison@arm.com>
16062 * config/aarch64/aarch64.md (*aarch64_<optab>_reg_<mode>3_mask1):
16064 (*aarch64_reg_<mode>3_neg_mask2): New pattern.
16065 (*aarch64_reg_<mode>3_minus_mask): New pattern.
16066 (*aarch64_<optab>_reg_di3_mask2): New pattern.
16067 * config/aarch64/aarch64.c (aarch64_rtx_costs): Account for cost
16068 of shift when the shift amount is masked with constant equal to
16069 the size of the mode.
16070 * config/aarch64/predicates.md (subreg_lowpart_operator): New
16073 2017-06-29 Martin Liska <mliska@suse.cz>
16075 * config/i386/i386.opt: Change range from [1,5] to [0,5].
16077 2017-06-29 Yury Gribov <tetra2005@gmail.com>
16080 * ipa-cp.c (allocate_and_init_ipcp_value): Add initialization
16083 (edge_growth_cache_entry::edge_growth_cache_entry): New
16085 (reset_edge_growth_cache): Update to use constructor.
16087 2017-06-28 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
16089 * config/aarch64/aarch64.h (AARCH64_EXPAND_ALIGNMENT): New.
16090 (DATA_ALIGNMENT): Update to use AARCH64_EXPAND_ALIGNMENT.
16091 (LOCAL_ALIGNMENT): Update to use AARCH64_EXPAND_ALIGNMENT.
16093 2017-06-28 Sebastian Peryt <sebastian.peryt@intel.com>
16095 * config/i386/avx512vlintrin.h (_mm256_permutexvar_epi64)
16096 (_mm256_permutexvar_epi32, _mm256_permutex_epi64): New intrinsics.
16098 2017-06-28 Szabolcs Nagy <szabolcs.nagy@arm.com>
16100 * config.gcc (*-linux-musl*): Add t-musl tmake_file.
16101 (*-linux-uclibc*): Add t-uclibc tmake_file.
16102 * config/t-musl: New.
16103 * config/t-uclibc: New.
16105 2017-06-28 Richard Earnshaw <rearnsha@arm.com>
16107 * config/arm/parsecpu.awk (profile): Parse new keyword in an arch
16109 (gen_comm_data): Emit architectural setting of arch_prof.
16110 * config/arm/arm-cpus.in (armv6-m, armv6s-m, armv7-a, armv7ve): Set the
16112 (armv7-r, armv7-m, armv7e-m, armv8-a, armv8.1-a, armv8.2-a): Likewise.
16113 (armv8-m.base, armv8-m.main): Likewise.
16114 * arm-protos.h (arm_build_target): Add profile field.
16115 (arch_option): Likewise.
16116 * config/arm/arm.c (arm_configure_build_target): Copy the profile to
16118 * config/arm/arm.h (TARGET_ARM_ARCH_PROFILE): Use
16119 arm_active_target.profile.
16121 2017-06-28 Richard Biener <rguenther@suse.de>
16123 PR middle-end/81227
16124 * fold-const.c (negate_expr_p): Use TYPE_UNSIGNED, not
16125 TYPE_OVERFLOW_WRAPS.
16126 * match.pd (negate_expr_p): Likewise.
16127 * tree-ssa-reassoc.c (optimize_range_tests_diff): Use
16128 fold_build2, not fold_binary.
16130 2017-06-28 Wilco Dijkstra <wdijkstr@arm.com>
16132 * config/aarch64/aarch64 (aarch64_expand_mov_immediate):
16133 Convert memory address to Pmode.
16134 (aarch64_print_operand): Assert MEM operands are always Pmode.
16136 2017-06-28 Wilco Dijkstra <wdijkstr@arm.com>
16139 * config/arm/aarch-common.c (arm_no_early_alu_shift_dep):
16140 Remove redundant if.
16141 (aarch_forward_to_shift_is_not_shifted_reg): Remove.
16142 * config/arm/aarch-common-protos.h
16143 (aarch_forward_to_shift_is_not_shifted_re): Remove.
16144 * config/arm/cortex-a53.md: Use arm_no_early_alu_shift_dep in bypass.
16146 2017-06-28 Michael Meissner <meissner@linux.vnet.ibm.com>
16149 * multiple_target.c (create_dispatcher_calls): Set the default
16150 clone to be static, not public.
16152 2017-06-28 Richard Biener <rguenther@suse.de>
16154 * tree-vect-loop.c (vectorizable_reduction): Move special
16155 cond reduction IV var creation ...
16156 (vect_create_epilog_for_reduction): ... here. Remove induction_index
16157 parameter. Use STMT_VINFO_VECTYPE.
16158 * tree-vect-slp.c (vect_get_constant_vectors): Properly reset
16161 2017-06-28 Martin Liska <mliska@suse.cz>
16164 * ipa-visibility.c (non_local_p): Handle visibility.
16166 2017-06-28 Martin Liska <mliska@suse.cz>
16169 * common.opt: Add IntegerRange to various options.
16170 * opt-functions.awk (integer_range_info): New function.
16171 * optc-gen.awk: Add integer_range_info to cl_options struct.
16172 * opts-common.c (decode_cmdline_option): Handle
16173 CL_ERR_INT_RANGE_ARG.
16174 (cmdline_handle_error): Likewise.
16175 * opts.c (print_filtered_help): Show valid interval in
16176 when --help is provided.
16177 * opts.h (struct cl_option): Add range_min and range_max fields.
16178 * config/i386/i386.opt: Add IntegerRange for -mbranch-cost.
16180 2017-06-28 Marc Glisse <marc.glisse@inria.fr>
16182 * match.pd ((X & ~Y) | (~X & Y)): Generalize to + and ^.
16183 (x * C EQ/NE y * C): New transformation.
16185 2017-06-28 Christophe Lyon <christophe.lyon@linaro.org>
16187 * genmultilib (combination_space): Accept '+' in option names.
16189 2017-06-28 Martin Liska <mliska@suse.cz>
16192 * asan.c (instrument_derefs): Bail out inner references
16193 that are hard register variables.
16195 2017-06-28 Jakub Jelinek <jakub@redhat.com>
16198 * config/i386/i386.c (ix86_init_mmx_sse_builtins): Use def_builtin
16199 rather than def_builtin_pure for __builtin_ia32_gatherpf*.
16201 2017-06-28 Richard Biener <rguenther@suse.de>
16203 * tree-vectorizer.h (vect_get_vec_defs): Remove.
16204 (vect_get_slp_defs): Adjust.
16205 * tree-vect-loop.c (get_initial_defs_for_reduction): Split
16207 * tree-vect-slp.c (vect_get_constant_vectors): ... here and
16209 * tree-vect-loop.c (vect_create_epilog_for_reduction): Use
16210 get_initial_defs_for_reduction instead of vect_get_vec_defs.
16211 (vectorizable_reduction): Adjust.
16212 * tree-vect-slp.c (vect_get_constant_vectors): Remove reduction
16214 (vect_get_slp_defs): Likewise.
16215 * tree-vect-stmts.c (vect_get_vec_defs): Make static and adjust.
16216 (vectorizable_bswap): Adjust.
16217 (vectorizable_call): Likewise.
16218 (vectorizable_conversion): Likewise.
16219 (vectorizable_assignment): Likewise.
16220 (vectorizable_shift): Likewise.
16221 (vectorizable_operation): Likewise.
16222 (vectorizable_store): Likewise.
16223 (vectorizable_condition): Likewise.
16224 (vectorizable_comparison): Likewise.
16226 2017-06-28 Michael Collison <michael.collison@arm.com>
16229 * config/arm/arm.c (gen_ldm_seq): Remove last unnecessary
16231 (arm_gen_movmemqi): Removed unused variable 'i'.
16232 Convert 'for' loop into 'while' loop.
16233 (arm_expand_prologue): Remove last unnecessary set of insn.
16234 (thumb_pop): Remove unused variable 'pushed_words'.
16235 (thumb_exit): Remove last unnecessary set of regs_to_pop.
16237 2017-06-28 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
16239 * config/s390/predicates.md: Use s390_rel_address_ok_p.
16240 * config/s390/s390-protos.h: Add prototype of
16241 s390_rel_address_ok_p.
16242 * config/s390/s390.c (s390_got_symbol): New function.
16243 (s390_rel_address_ok_p): New function.
16244 (legitimize_pic_address): Use s390_rel_address_ok_p.
16245 (s390_load_got): Use s390_got_symbol.
16246 (s390_option_override): Issue error if
16247 -mno-pic-data-is-text-relative is used without -fpic/-fPIC.
16248 * config/s390/s390.h (TARGET_DEFAULT_PIC_DATA_IS_TEXT_RELATIVE):
16250 * config/s390/s390.opt: New option mpic-data-is-text-relative.
16252 2017-06-27 Andrew Pinski <apinski@cavium.com>
16254 * match.pd (X >/>=/</<= 0 ? 1.0 : -1.0): New patterns.
16255 (X * copysign (1.0, X)): New pattern.
16256 (X * copysign (1.0, -X)): New pattern.
16257 (copysign (-1.0, CST)): New pattern.
16259 2017-06-27 Joseph Myers <joseph@codesourcery.com>
16261 * genmultilib (combination_space): Remove variable.
16262 Validate reuse rules against regular expression for any sequence
16263 of multilib options in any order.
16265 2017-06-27 Michael Collison <michael.collison@arm.com>
16267 * config/aarch64/aarch64-simd.md (aarch64_combine<mode>): Directly
16268 call aarch64_split_simd_combine.
16269 * (aarch64_combine_internal<mode>): Delete pattern.
16270 * config/aarch64/aarch64.c (aarch64_split_simd_combine):
16271 Allow register and subreg operands.
16273 2017-06-27 Jerome Lambourg <lambourg@adacore.com>
16275 * config/i386/vxworks.h (ASM_SPEC): Remove definition. No target
16276 specific need, just fallback on defaults.
16277 (ASM_OUTPUT_ALIGNED_BSS): Add #undef before #define.
16279 2017-06-27 Jerome Lambourg <lambourg@adacore.com>
16280 Olivier Hainque <hainque@adacore.com>
16282 * config/i386/vxworks.h (DBX_REGISTER_NUMBER): Pick distinct
16284 (TARGET_OS_CPP_BUILTINS): builtin_define CPU to X86_64 for 64bit
16285 targets. Pick a default if no particular attempt applied.
16286 (STACK_CHECK_PROTECT): Double for 64bit targets, which have
16289 2017-06-27 Jerome Lambourg <lambourg@adacore.com>
16291 * config.gcc (i*86-wrs-vxworks7): Handle new acceptable triplet.
16292 (x86_64-wrs-vxworks7): Likewise.
16294 2017-06-27 Marek Polacek <polacek@redhat.com>
16297 * ubsan.c (instrument_null): Check get_base_address's result for null.
16299 2017-06-27 Marc Glisse <marc.glisse@inria.fr>
16301 * match.pd ((A+-B)+(C-A), (A+B)-(A-C)): New transformations.
16303 2017-06-27 Marc Glisse <marc.glisse@inria.fr>
16305 * builtin-types.def (BT_FENV_T_PTR, BT_CONST_FENV_T_PTR,
16306 BT_FEXCEPT_T_PTR, BT_CONST_FEXCEPT_T_PTR): New primitive types.
16307 (BT_FN_INT_FENV_T_PTR, BT_FN_INT_CONST_FENV_T_PTR,
16308 BT_FN_INT_FEXCEPT_T_PTR_INT, BT_FN_INT_CONST_FEXCEPT_T_PTR_INT):
16309 New function types.
16310 * builtins.def (BUILT_IN_FECLEAREXCEPT, BUILT_IN_FEGETENV,
16311 BUILT_IN_FEGETEXCEPTFLAG, BUILT_IN_FEGETROUND,
16312 BUILT_IN_FEHOLDEXCEPT, BUILT_IN_FERAISEEXCEPT,
16313 BUILT_IN_FESETENV, BUILT_IN_FESETEXCEPTFLAG,
16314 BUILT_IN_FESETROUND, BUILT_IN_FETESTEXCEPT,
16315 BUILT_IN_FEUPDATEENV): New builtins.
16316 * tree-core.h (TI_FENV_T_PTR_TYPE, TI_CONST_FENV_T_PTR_TYPE,
16317 TI_FEXCEPT_T_PTR_TYPE, TI_CONST_FEXCEPT_T_PTR_TYPE): New entries.
16318 * tree.h (fenv_t_ptr_type_node, const_fenv_t_ptr_type_node,
16319 fexcept_t_ptr_type_node, const_fexcept_t_ptr_type_node): New
16321 (builtin_structptr_types): Adjust size.
16322 * tree.c (builtin_structptr_types): Add four entries.
16324 2017-06-27 Jerome Lambourg <lambourg@adacore.com>
16325 Olivier Hainque <hainque@adacore.com>
16327 * config/vxworks.h (VXWORKS_LIB_SPEC): Incorporate ...
16328 (TLS_SYM): New local macro, forcing reference to __tls__ on
16329 link command lines for VxWorks 7 RTPs, triggering initialization
16331 (VXWORKS_HAVE_TLS): New macro. State whether the target VxWorks
16332 OS features TLS support, true for RTPs on VxWorks 7.
16333 * config/vxworks.c (vxworks_override_options): Setup emutls
16336 2017-06-27 Jakub Jelinek <jakub@redhat.com>
16338 * predict.c (test_prediction_value_range): Use -1U instead of -1
16339 to avoid narrowing conversion warning.
16340 * dumpfile.c (dump_options): Wrap all value into dump_flags_t cast
16341 to avoid narrowing conversion warning.
16342 * opt-functions.awk (var_ref): Return (unsigned short) -1 instead of
16344 * optc-gen.awk (END): Expect (unsigned short) -1 instead of -1.
16346 2017-06-27 Jerome Lambourg <lambourg@adacore.com>
16348 * config/vxworks.h (VXWORKS_LIBS_RTP): Alternative definition for
16349 64bit configurations.
16350 (PTR_DIFF_TYPE): Alternative definition for TARGET_LP64.
16351 (SIZE_TYPE): Likewise.
16352 * config/vxworks.c (vxworks_emutls_var_fields): Use
16353 long_unsigned_type_node instead of unsigned_type_node as the offset
16354 field type, which is "pointer" mode in emutls.c.
16356 2017-06-27 Jakub Jelinek <jakub@redhat.com>
16359 * ubsan.c (ubsan_encode_value): Initialize DECL_CONTEXT on var.
16361 PR middle-end/81207
16362 * gimple-fold.c (replace_call_with_call_and_fold): Handle
16363 gimple_vuse copying separately from gimple_vdef copying.
16365 2017-06-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
16367 * value-prof.c (free_hist): Remove call to memset and the enclosing if
16370 2017-06-26 Jerome Lambourg <lambourg@adacore.com>
16371 Olivier Hainque <hainque@adacore.com>
16373 * config.gcc (*-*-vxworks*): Add TARGET_VXWORKS7=1 to tm_defines
16374 for all vxworks7 targets.
16375 * config/vxworks.h (TARGET_VXWORKS7): If not defined, define to 0.
16376 (VXWORKS_ADDITIONAL_CPP_SPEC): Alternative definition for VXWORKS7.
16377 (VXWORKS_LIBS_RTP, VXWORKS_LIBS_RTP_DIR): New macros, allowing
16378 variations for VX6/VX7 and 32/64bits later on in ...
16379 (VXWORKS_LIB_SPEC): Leverage new macros.
16380 (VXWORKS_OS_CPP_BUILTINS): Define _VSB_CONFIG_FILE for VXWORKS7,
16381 as well as _ALLOW_KEYWORD_MACROS when "inline" is not a keyword.
16383 2017-06-26 Jerome Lambourg <lambourg@adacore.com>
16385 * config/vxworks.h (VXWORKS_OS_CPP_BUILTINS): builtin_define
16386 _VX_TOOL_FAMILY and _VX_TOOL to gnu.
16388 2017-06-26 Carl Love <cel@us.ibm.com>
16390 * config/rs6000/rs6000-c.c: Add support for built-in functions
16391 vector bool char vec_reve (vector bool char);
16392 vector signed char vec_reve (vector signed char);
16393 vector unsigned char vec_reve (vector unsigned char);
16394 vector bool int vec_reve (vector bool int);
16395 vector signed int vec_reve (vector signed int);
16396 vector unsigned int vec_reve (vector unsigned int);
16397 vector bool long long vec_reve (vector bool long long);
16398 vector signed long long vec_reve (vector signed long long);
16399 vector unsigned long long vec_reve (vector unsigned long long);
16400 vector bool short vec_reve (vector bool short);
16401 vector signed short vec_reve (vector signed short);
16402 vector double vec_reve (vector double);
16403 vector float vec_reve (vector float);
16404 * config/rs6000/rs6000-builtin.def (VREVE_V2DI, VREVE_V4SI,
16405 VREVE_V8HI, VREVE_V16QI, VREVE_V2DF, VREVE_V4SF, VREVE): New builtin.
16406 * config/rs6000/altivec.md (UNSPEC_VREVEV): New UNSPEC.
16407 (altivec_vreve): New pattern.
16408 * config/rs6000/altivec.h (vec_reve): New define.
16409 * doc/extend.texi (vec_rev): Update the built-in documentation file
16410 for the new built-in functions.
16412 2016-06-26 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
16414 PR tree-optimization/71815
16415 * gimple-ssa-strength-reduction.c (uses_consumed_by_stmt): New
16417 (find_basis_for_candidate): Call uses_consumed_by_stmt rather than
16419 (slsr_process_phi): Likewise.
16420 (replace_uncond_cands_and_profitable_phis): Don't replace a
16421 multiply candidate with a stride of 1 (copy or cast).
16422 (phi_incr_cost): Call uses_consumed_by_stmt rather than
16424 (lowest_cost_path): Likewise.
16425 (total_savings): Likewise.
16427 2017-06-26 Richard Biener <rguenther@suse.de>
16430 * config/i386/i386.c (ix86_init_mmx_sse_builtins):
16431 Use def_builtin_pure for all gather builtins.
16433 2017-06-26 Richard Biener <rguenther@suse.de>
16435 PR tree-optimization/81203
16436 * tree-tailcall.c (find_tail_calls): Do not move stmts into
16437 non-dominating BBs.
16439 2017-06-26 Marek Polacek <polacek@redhat.com>
16442 * doc/invoke.texi: Document -Wmultistatement-macros.
16444 2017-06-26 Christophe Lyon <christophe.lyon@linaro.org>
16446 * doc/sourcebuild.texi (ARM-specific attributes): Document new
16447 arm_neon_ok_no_float_abi effective target.
16449 2017-06-26 Richard Biener <rguenther@suse.de>
16451 PR tree-optimization/80928
16452 * cfghooks.c (duplicate_block): Do not copy BB_DUPLICATED flag.
16453 (copy_bbs): Set BB_DUPLICATED flag early.
16454 (execute_on_growing_pred): Do not execute for BB_DUPLICATED
16456 (execute_on_shrinking_pred): Likewise.
16457 * tree-ssa.c (ssa_redirect_edge): Do not look for PHI args in
16458 BB_DUPLICATED blocks.
16459 * tree-ssa-phionlycoprop.c (eliminate_degenerate_phis_1): Properly
16460 iterate over all PHIs considering removal of *gsi.
16462 2017-06-23 Jim Wilson <jim.wilson@linaro.org>
16464 * doc/invoke.texi (AArch64 Options, -mtune): Re-add falkor and
16467 2017-06-23 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
16469 * config/rs6000/rs6000-string.c: (expand_block_clear,
16470 do_load_for_compare, select_block_compare_mode,
16471 compute_current_alignment, expand_block_compare,
16472 expand_strncmp_align_check, expand_strn_compare,
16473 expand_block_move, rs6000_output_load_multiple)
16474 Move functions related to string/block move/compare
16475 to a separate file.
16476 * config/rs6000/rs6000.c: Move above functions to rs6000-string.c.
16477 * config/rs6000/rs6000-protos.h (rs6000_emit_dot_insn): Add prototype
16478 for this function which is now used in two files.
16479 * config/rs6000/t-rs6000: Add rule to compile rs6000-string.o.
16480 * config.gcc: Add rs6000-string.o to extra_objs for
16481 targets powerpc*-*-* and rs6000*-*-*.
16483 2017-06-23 Michael Meissner <meissner@linux.vnet.ibm.com>
16486 * config/rs6000/rs6000.md (ALTIVEC_DFORM): Do not allow DImode in
16487 32-bit, since indexed is not valid for DImode.
16488 (mov<mode>_hardfloat32): Reorder ISA 2.07 load/stores before ISA
16489 3.0 d-form load/stores to be the same as mov<mode>_hardfloat64.
16490 (define_peephole2 for Altivec d-form load): Add 32-bit support.
16491 (define_peephole2 for Altivec d-form store): Likewise.
16494 * multiple_target.c (create_dispatcher_calls): Only create the
16495 dispatcher call if the function is the default clone of a
16496 versioned function.
16498 2017-06-23 Segher Boessenkool <segher@kernel.crashing.org>
16500 PR middle-end/80902
16501 * builtins.c (expand_builtin_atomic_fetch_op): If emitting code after
16502 a call, force the call to not be a tail call.
16504 2017-06-23 Jeff Law <law@redhat.com>
16506 * doc/contrib.texi: Add entry for Steven Pemberton's work on
16509 2017-06-23 Will Schmidt <will_schmidt@vnet.ibm.com>
16511 * config/rs6000/rs6000.c: Add include of ssa-propagate.h for
16512 update_call_from_tree(). (rs6000_gimple_fold_builtin): Add
16513 handling for early expansion of vector shifts (sl,sr,sra,rl).
16514 (builtin_function_type): Add vector shift right instructions
16515 to the unsigned argument list.
16517 2017-06-23 Bernd Edlinger <bernd.edlinger@hotmail.de>
16519 rtl-optimizatoin/79286
16520 * ira.c (update_equiv_regs): Revert to using may_trap_or_fault_p again.
16521 * rtlanal.c (rtx_addr_can_trap_p_1): SYMBOL_REF_FUNCTION_P can never
16522 trap. PIC register plus a const unspec without offset can never trap.
16524 2017-06-23 Marc Glisse <marc.glisse@inria.fr>
16526 * tree.h (builtin_structptr_type): New type.
16527 (builtin_structptr_types): Declare new array.
16528 * tree.c (builtin_structptr_types): New array.
16529 (free_lang_data, build_common_tree_nodes): Use it.
16531 2017-06-23 Jonathan Wakely <jwakely@redhat.com>
16534 * doc/invoke.texi (-Wnoexcept-type): Fix name of option, from
16537 2017-06-22 Matt Turner <mattst88@gmail.com>
16539 * config/i386/driver-i386.c (host_detect_local_cpu): Add Kaby
16540 Lake models to skylake case. Assume skylake for unknown
16541 models with clflushopt.
16543 2017-06-22 Jeff Law <law@redhat.com>
16545 * config/aarch64/aarch64.c (aarch64_emit_probe_stack_range): Handle
16546 frame sizes that do not satisfy aarch64_uimm12_shift.
16548 2017-06-22 Jan Hubicka <hubicka@ucw.cz>
16550 * profile-count.h (apply_probability,
16551 apply_scale, probability_in): Fix checks for zero.
16553 2017-06-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16555 * incpath.c (add_sysroot_to_chain): Allow for $SYSROOT prefix.
16556 * doc/cppdiropts.texi (-I @var{dir}): Document it.
16558 2016-06-22 Richard Biener <rguenther@suse.de>
16560 * tree-vect-loop.c (vect_model_reduction_cost): Handle
16561 COND_REDUCTION and INTEGER_INDUC_COND_REDUCTION without
16562 REDUC_MAX_EXPR support.
16563 (vectorizable_reduction): Likewise.
16564 (vect_create_epilog_for_reduction): Likewise.
16566 2017-06-22 James Greenhalgh <james.greenhalgh@arm.com>
16568 * match.pd (A / (1 << B) -> A >> B): New.
16569 * generic-match-head.c: Include optabs-tree.h.
16570 * gimple-match-head.c: Likewise.
16571 * optabs-tree.h (target_supports_op_p): New.
16572 * optabs-tree.c (target_supports_op_p): New.
16574 2017-06-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16576 * configure.ac (gcc_cv_ld_static_dynamic): Also check stderr for
16577 $gcc_cv_ld --help output.
16578 (gcc_cv_ld_demangle): Likewise.
16579 (gcc_cv_ld_eh_frame_hdr): Likewise.
16580 (gcc_cv_ld_pie): Likewise.
16581 (gcc_cv_ld_as_needed): Likewise. Prefer native forms unless $gnu_ld.
16582 (gcc_cv_ld_buildid): Likewise.
16583 (gcc_cv_ld_sysroot): Likewise.
16584 (ld_bndplt_support): Likewise.
16585 (ld_pushpopstate_support): Likewise.
16586 * configure: Regenerate.
16587 * config/sol2.h [!USE_GLD] (SYSROOT_SPEC): Define.
16589 2017-06-21 Jakub Jelinek <jakub@redhat.com>
16592 * config/i386/sse.md (round<mode>2): Renumber match_dup and
16593 operands indexes to avoid gap between operands and match_dups.
16595 2017-06-21 Andrew Pinski <apinski@cavium.com>
16597 * config/aarch64/aarch64-cost-tables.h (thunderx_extra_costs):
16598 Increment Arith_shift and Arith_shift_reg by 1.
16599 * config/aarch64/aarch64-tuning-flags.def (cheap_shift_extend):
16601 * config/aarch64/aarch64.c (thunderx_tunings): Enable
16602 AARCH64_EXTRA_TUNE_CHEAP_SHIFT_EXTEND.
16603 (aarch64_strip_extend): Add new argument and test for it.
16604 (aarch64_cheap_mult_shift_p): New function.
16605 (aarch64_rtx_mult_cost): Call aarch64_cheap_mult_shift_p and don't
16606 add a cost if it is true.
16607 Update calls to aarch64_strip_extend.
16608 (aarch64_rtx_costs): Update calls to aarch64_strip_extend.
16610 2017-06-21 Andrew Pinski <apinski@cavium.com>
16612 * config/aarch64/aarch64-cores.def (thunderxt88p1): Use thunderxt88
16614 (thunderxt88): Likewise.
16615 * config/aarch64/aarch64.c (thunderxt88_prefetch_tune): New variable.
16616 (thunderx_prefetch_tune): New variable.
16617 (thunderx2t99_prefetch_tune): Update for the correct values.
16618 (thunderxt88_tunings): New variable.
16619 (thunderx_tunings): Use thunderx_prefetch_tune instead of
16620 generic_prefetch_tune.
16621 (thunderx2t99_tunings): Use AUTOPREFETCHER_WEAK.
16623 2017-06-21 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16625 * config/aarch64/atomics.md (aarch64_compare_and_swap<mode>_lse,
16626 SHORT): Relax operand 3 to aarch64_reg_or_zero and constraint to Z.
16627 (aarch64_compare_and_swap<mode>_lse, GPI): Likewise.
16628 (aarch64_atomic_cas<mode>, SHORT): Likewise for operand 2.
16629 (aarch64_atomic_cas<mode>, GPI): Likewise.
16631 2017-06-21 Martin Liska <mliska@suse.cz>
16633 * gimplify.c (gimplify_label_expr): Insert GIMPLE_PREDICT
16634 statements on cold and hot labels.
16635 * predict.c (tree_estimate_probability_bb): Remove the
16636 prediction from this place.
16638 2017-06-21 Martin Liska <mliska@suse.cz>
16640 PR tree-optimization/79489
16641 * gimplify.c (maybe_add_early_return_predict_stmt): New
16643 (gimplify_return_expr): Call the function.
16644 * predict.c (tree_estimate_probability_bb): Remove handling
16646 * predict.def: Update comment about early return predictor.
16647 * gimple-predict.h (is_gimple_predict): New function.
16648 * predict.def: Change default value of early return to 66.
16649 * tree-tailcall.c (find_tail_calls): Skip GIMPLE_PREDICT
16651 * passes.def: Put pass_strip_predict_hints to the beginning of
16654 2017-06-21 Pierre-Marie de Rodat <derodat@adacore.com>
16656 * dwarf2out.c (gen_decl_die): Remove the guard to skip file-scope
16657 FUNCTION_DECL declarations.
16658 (dwarf2out_early_global_decl): Remove the guard to skip FUNCTION_DECL
16660 (dwaf2out_decl): Likewise.
16661 * godump.c (go_early_global_decl): Skip call to the real debug hook
16662 for FUNCTION_DECL declarations.
16663 * passes.c (rest_of_decl_compilation): Skip call to the
16664 early_global_decl debug hook for FUNCTION_DECL declarations, unless
16665 -fdump-go-spec is passed.
16667 2017-06-21 Marc Glisse <marc.glisse@inria.fr>
16669 * config/i386/i386.c (struct builtin_isa): New field pure_p.
16670 Reorder for compactness.
16671 (def_builtin, def_builtin2, ix86_add_new_builtins): Handle pure_p.
16672 (def_builtin_pure, def_builtin_pure2): New functions.
16673 (ix86_init_mmx_sse_builtins) [__builtin_ia32_stmxcsr]: Mark as pure.
16675 2017-06-21 Marc Glisse <marc.glisse@inria.fr>
16677 * match.pd (nop_convert): New predicate.
16678 ((A +- CST1) +- CST2): Allow some NOP conversions.
16680 2017-06-21 Jakub Jelinek <jakub@redhat.com>
16683 * gimplify.c (omp_add_variable): Don't force GOVD_SEEN for types
16684 with ctors/dtors if GOVD_SHARED is set.
16686 2017-06-21 Wilco Dijkstra <wdijkstr@arm.com>
16688 * config/aarch64/aarch64.md (movti_aarch64):
16689 Emit mov rather than orr.
16690 (movtf_aarch64): Likewise.
16691 * config/aarch64/aarch64-simd.md (aarch64_simd_mov):
16692 Emit mov rather than orr.
16694 2017-06-21 Wilco Dijkstra <wdijkstr@arm.com>
16696 * config/aarch64/aarch64-simd.md (aarch64_simd_dup):
16697 Swap alternatives, make integer dup more expensive.
16699 2017-06-21 Wilco Dijkstra <wdijkstr@arm.com>
16701 * config/aarch64/aarch64.c (aarch64_legitimate_constant_p):
16702 Return true for non-tls symbols.
16704 2017-06-21 James Greenhalgh <james.greenhalgh@arm.com>
16706 * config/aarch64/aarch64-cores.def (cortex-a55): New.
16707 (cortex-a75): Likewise.
16708 (cortex-a75.cortex-a55): Likewise.
16709 * config/aarch64/aarch64-tune.md: Regenerate.
16710 * doc/invoke.texi (-mtune): Document new values for -mtune.
16712 2017-06-21 Tom de Vries <tom@codesourcery.com>
16714 * doc/sourcebuild.texi (Add Options, Features for dg-add-options): Add
16715 stack_size feature.
16716 (Effective-Target Keywords, Other attributes): Suggest using
16717 dg-add-options stack_size feature to get stack limit in stack_size
16718 effective target documentation.
16720 2017-06-21 Julian Brown <julian@codesourcery.com>
16721 Naveen H.S <Naveen.Hurugalawadi@cavium.com>
16723 * config/aarch64/aarch64-simd.md (aarch64_crypto_pmulldi)
16724 (aarch64_crypto_pmullv2di): Change type attribute to crypto_pmull.
16725 * config/aarch64/thunderx2t99.md (thunderx2t99_pmull): New
16727 * config/arm/cortex-a53.md (cortex_a53_advsimd_type): Add crypto_pmull to
16728 attribute type list for neon_multiply.
16729 * config/arm/cortex-a57.md (cortex_a57_neon_type): Add crypto_pmull to
16730 attribute type list for neon_multiply.
16731 * config/arm/crypto.md (crypto_vmullp64): Change type to crypto_pmull.
16732 * config/arm/exynos-m1.md (exynos_m1_neon_type): Add crypto_pmull to
16733 attribute type list for neon_multiply.
16734 * config/arm/types.md (crypto_pmull): Add.
16735 * config/arm/xgene1.md (xgene1_neon_pmull): Add crypto_pmull to
16736 attribute type list.
16738 2017-06-20 Andreas Tobler <andreast@gcc.gnu.org>
16740 * config.gcc (armv6*-*-freebsd*): Change the target_cpu_cname to
16743 2017-06-20 Jakub Jelinek <jakub@redhat.com>
16745 * ira-costs.c (find_costs_and_classes): Initialize cost_classes later
16746 to make sure not to dereference a NULL cost_classes_ptr pointer.
16748 2017-06-20 Carl Love <cel@us.ibm.com>
16750 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
16751 ALTIVEC_BUILTIN_VMULESW, ALTIVEC_BUILTIN_VMULEUW,
16752 ALTIVEC_BUILTIN_VMULOSW, ALTIVEC_BUILTIN_VMULOUW entries.
16753 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin,
16754 builtin_function_type): Add ALTIVEC_BUILTIN_* case statements.
16755 * config/rs6000/altivec.md (MVULEUW, VMULESW, VMULOUW,
16756 VMULOSW): New enum "unspec" values.
16757 (vec_widen_umult_even_v4si, vec_widen_smult_even_v4si,
16758 vec_widen_umult_odd_v4si, vec_widen_smult_odd_v4si,
16759 altivec_vmuleuw, altivec_vmulesw, altivec_vmulouw,
16760 altivec_vmulosw): New patterns.
16761 * config/rs6000/rs6000-builtin.def (VMLEUW, VMULESW, VMULOUW,
16762 VMULOSW): Add definitions.
16764 2017-06-20 Julia Koval <julia.koval@intel.com>
16766 * config/i386/i386.c: Fix rounding expand for new pattern.
16767 * config/i386/subst.md: Fix pattern (parallel -> unspec).
16769 2017-06-20 James Greenhalgh <james.greenhalgh@arm.com>
16771 * config/aarch64/aarch64-option-extensions.def (rcpc): New.
16772 * config/aarch64/aarch64.h (AARCH64_FL_RCPC): New.
16774 2017-06-20 James Greenhalgh <james.greenhalgh@arm.com>
16776 * config/aarch64/aarch64-option-extensions.def (fp16): Fix expected
16779 2017-06-20 James Greenhalgh <james.greenhalgh@arm.com>
16781 * config/aarch64/aarch64-cores.def: Rearrange to sort by
16782 architecture, then by implementer ID.
16783 * config/aarch64/aarch64-tune.md: Regenerate.
16785 2017-06-20 Richard Biener <rguenther@suse.de>
16787 PR middle-end/81097
16788 * fold-const.c (split_tree): Fold to type before negating.
16790 2017-06-20 David Malcolm <dmalcolm@redhat.com>
16792 * diagnostic-show-locus.c
16793 (selftest::test_fixit_deletion_affecting_newline): New function.
16794 (selftest::diagnostic_show_locus_c_tests): Call it.
16796 2017-06-20 Andreas Schwab <schwab@suse.de>
16799 * config/m68k/m68k.md (bsetdreg, bchgdreg, bclrdreg): Use "=d"
16802 2017-06-20 Prakhar Bahuguna <prakhar.bahuguna@arm.com>
16804 * config/arm/arm-c.c (arm_cpu_builtins): New block to define
16805 __ARM_FEATURE_COPROC according to support.
16807 2017-06-20 Jakub Jelinek <jakub@redhat.com>
16809 * tree-chkp.c (chkp_get_hard_register_var_fake_base_address):
16810 Rewritten to avoid overflow for > 32-bit pointers.
16813 * ubsan.h (ubsan_encode_value): Workaround buggy clang++ parser
16814 by removing enum keyword.
16815 (ubsan_type_descriptor): Likewise. Formatting fix.
16818 * config/i386/i386.md (TARGET_USE_VECTOR_CONVERTS float si->{sf,df}
16819 splitter): Require TARGET_SSE2 in the condition.
16821 2017-06-20 Michael Meissner <meissner@linux.vnet.ibm.com>
16824 * config/rs6000/rs6000.c (rs6000_expand_vector_init): Add support
16825 for doing vector set of SFmode on ISA 3.0.
16826 * config/rs6000/vsx.md (vsx_set_v4sf_p9): Likewise.
16827 (vsx_set_v4sf_p9_zero): Special case setting 0.0f to a V4SF
16829 (vsx_insert_extract_v4sf_p9): Add an optimization for inserting a
16830 SFmode value into a V4SF variable that was extracted from another
16831 V4SF variable without converting the element to double precision
16832 and back to single precision vector format.
16833 (vsx_insert_extract_v4sf_p9_2): Likewise.
16835 2017-06-19 Jakub Jelinek <jakub@redhat.com>
16837 * tree-ssa-structalias.c (get_constraint_for_ptr_offset): Multiply
16838 in UWHI to avoid undefined overflow.
16841 * ubsan.h (enum ubsan_encode_value_phase): New.
16842 (ubsan_encode_value): Change second argument to
16843 enum ubsan_encode_value_phase with default value of
16844 UBSAN_ENCODE_VALUE_GENERIC.
16845 * ubsan.c (ubsan_encode_value): Change second argument to
16846 enum ubsan_encode_value_phase PHASE from bool IN_EXPAND_P,
16847 adjust uses, for UBSAN_ENCODE_VALUE_GENERIC use just
16848 create_tmp_var_raw instead of create_tmp_var and use a
16850 (ubsan_expand_bounds_ifn, ubsan_build_overflow_builtin,
16851 instrument_bool_enum_load, ubsan_instrument_float_cast): Adjust
16852 ubsan_encode_value callers.
16855 * ubsan.c (ubsan_encode_value): If current_function_decl is NULL,
16856 use create_tmp_var_raw instead of create_tmp_var, mark it addressable
16857 just by setting TREE_ADDRESSABLE on the result and use a TARGET_EXPR.
16859 2017-06-19 Richard Biener <rguenther@suse.de>
16861 PR middle-end/81118
16862 * tree-cfgcleanup.c (cleanup_tree_cfg_noloop): Clear niter
16863 estimates if we changed anything.
16865 2017-06-19 Richard Biener <rguenther@suse.de>
16867 PR tree-optimization/80887
16868 * tree-ssa-sccvn.c (mprts_hook_cnt): New global.
16869 (vn_lookup_simplify_result): Allow only mprts_hook_cnt succesful
16870 simplified lookups, then reset mprts_hook.
16871 (vn_nary_build_or_lookup_1): Set mprts_hook_cnt to 9 before
16873 (try_to_simplify): Likewise.
16875 2017-06-19 Martin Liska <mliska@suse.cz>
16878 * gimplify.c (gimplify_switch_expr):
16879 Initialize live_switch_vars for SWITCH_BODY == STATEMENT_LIST.
16881 2017-06-19 Martin Liska <mliska@suse.cz>
16883 * doc/install.texi: Document that PGO runs in 4 stages.
16885 2017-06-19 Martin Liska <mliska@suse.cz>
16888 * attribs.c (make_dispatcher_decl): Do not append '.ifunc'
16889 to dispatcher function name.
16890 * multiple_target.c (replace_function_decl): New function.
16891 (create_dispatcher_calls): Redirect both edges and references.
16893 2017-06-19 Jan Hubicka <hubicka@ucw.cz>
16895 * profile-count.c (profile_count::dump): Dump quality.
16896 (profile_count::differs_from_p): Update for unsigned val.
16897 * profile-count.h (profile_count_quality): New enum.
16898 (profile_count): Turn m_val to 62bit unsigned, add quality tracking.
16900 2017-06-19 Richard Biener <rguenther@suse.de>
16902 * tree-ssa-loop-niter.h (estimate_numbers_of_iterations): Take
16903 struct function as arg.
16904 (estimate_numbers_of_iterations): Export overload with loop arg.
16905 (free_numbers_of_iterations_estimates_loop): Use an overload of
16906 free_numbers_of_iterations_estimates instead.
16907 * tree-cfg.c (remove_bb): Adjust.
16908 * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Likewise.
16909 * tree-parloops.c (gen_parallel_loop): Likewise.
16910 * tree-ssa-loop-ivcanon.c (canonicalize_induction_variables):
16912 (tree_unroll_loops_completely): Likewise.
16913 * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop):
16914 Use an overload instead and export.
16915 (estimated_loop_iterations): Adjust.
16916 (max_loop_iterations): Likewise.
16917 (likely_max_loop_iterations): Likewise.
16918 (estimate_numbers_of_iterations): Take struct function as arg
16920 (loop_exits_before_overflow): Adjust.
16921 (free_numbers_of_iterations_estimates_loop): Use an overload.
16922 * tree-vect-loop.c (vect_analyze_loop_form): Adjust.
16923 * tree-vectorizer.c (vect_free_loop_info_assumptions): Likewise.
16925 2017-06-19 Richard Biener <rguenther@suse.de>
16928 * ipa-prop.c (find_constructor_constant_at_offset): Handle
16929 RANGE_EXPR conservatively.
16931 2017-06-16 Carl Love <cel@us.ibm.com>
16933 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
16934 definitions for vec_float, vec_float2, vec_floato,
16935 vec_floate built-ins.
16936 * config/rs6000/vsx.md (define_c_enum "unspec"): Add RTL code
16937 for instructions vsx_xvcvsxws vsx_xvcvuxwsp, float2, floato and
16939 * config/rs6000/rs6000-builtin.def (FLOAT2_V2DI, FLOATE_V2DF,
16940 FLOATE_2DI, FLOATO_V2DF, FLOATEE_V2DI, XVCVSXWSP_V4SF,
16941 UNS_FLOATO_V2DI, UNS_FLOATE_V2DI): Add definitions.
16942 * config/altivec.md (define_insn "p8_vmrgew_<mode>",
16943 define_mode_attr VF_sxddp): Add V4SF type to p8_vmrgew.
16944 * config/rs6000/altivec.h (vec_float, vec_float2, vec_floate,
16945 vec_floato): Add builtin defines.
16946 * doc/extend.texi (vec_float, vec_float2, vec_floate, vec_floato):
16947 Update the built-in documentation file for the new built-in
16950 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
16952 * config/arm/arm.opt (marm): Mark as the negative of of -mthumb.
16953 (mthumb): Mark as the negative of -marm.
16955 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
16957 * doc/invoke.texi (ARM Options, -mcpu): Document supported
16959 (ARM Options, -mtune): Document that this accepts the same
16960 extension options as -mcpu.
16961 (ARM Options, -mfpu): Document addition of -mfpu=auto.
16963 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
16965 * doc/invoke.texi (ARM Options, -march=): Document new syntax and
16966 permitted extensions.
16968 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
16970 * config/arm/arm-cpus.in (armv7): Add extension +nofp.
16971 (armv7-r): Add aliases vfpv3xd and vfpv3-d16.
16972 (armv8-m.main): Add option +nodsp.
16973 * config/arm/arm-cpu-cdata.h: Regenerated.
16975 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
16977 * config/arm/t-fuchsia: New file.
16978 * config.gcc (arm*-*-fuchsia*): Use it.
16980 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
16982 * config/arm/t-symbian: Rewrite for new option infrastructure.
16984 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
16986 * config/arm/t-phoenix (MULTILIB_REUSE): Clear variable.
16987 (MULTILIB_REQUIRED): Likewise.
16989 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
16991 * config/arm/t-linux-eabi (MULTILIB_EXCEPTIONS): Set to empty.
16992 (MULTILIB_RESUE): Likewise.
16993 (MULTILIB_MATCHES): Likewise.
16994 (MULTLIB_REQUIRED): Likewise.
16996 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
16998 * config/arm/t-rtems: Rewrite for new option framework.
17000 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17002 * config/arm/t-aprofile (v7_a_nosimd_variants, v7_a_simd_variants)
17003 (v7ve_nosimd_variatns, v7ve_vfpv3_simd_variants)
17004 (v7ve_vfpv4_simd_variants, v8_a_nosimd_variants, v8_a_simd_variants)
17005 (v8_1_a_simd_variants, v8_2_a_simd_variants): Move to ...
17006 * config/arm/t-multilib: ... here.
17007 (MULTILIB_OPTIONS): Add armv7 and armv7+fp architectures.
17008 (MULTILIB_MATCHES): Use armv7 libraries for armv7-r. Also use for
17009 armv7-a and armv8*-a when A-profile libraries have not been built.
17010 * config/arm/t-rmprofile: Rewrite.
17012 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17014 * genmultilib (multilib_reuse): Allow an explicit period to be escaped
17015 with a backslash. Remove the backslash after substituting unescaped
17017 * doc/fragments.texi (MULTILIB_REUSE): Document it.
17019 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17021 * config.gcc: (arm*-*-*): When building a-profile libraries, force
17022 the driver to pass through the default setting of -mfloat-abi.
17023 * common/config/arm/arm-common.c (arm_target_thumb_only): Return -marm
17025 * config/arm/t-multilib (MULTILIB_REUSE): Initialize to empty.
17026 (all_feat_combs): New rule.
17027 (MULTILIB_OPTIONS): Use explicit ARM and Thumb directories. Rework
17029 * config/arm/t-aprofile: Rewrite.
17031 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17033 * config/arm/arm.h (FPUTYPE_AUTO): Define.
17034 * config/arm/arm.c (arm_option_override): Use FPUTYPE_AUTO if the
17035 fpu is not specified by the user/command-line.
17036 * config/arm/bpabi.h (FPUTYPE_DEFAULT): Delete.
17037 * config/arm/netbsd-elf.h (FPUTYPE_DEFAULT): Delete.
17038 * config/arm/linux-elf.h (FPUTYPE_DEFAULT): Delete.
17039 * config/arm/vxworks.h (FPUTYPE_DEFAULT): Delete.
17040 * common/config/arm/arm-common.c (arm_canon_arch_option): Use
17041 FPUTYPE_AUTO insted of FPUTYPE_DEFAULT.
17043 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17045 * config/arm/elf.h (MULTILIB_DEFAULTS): Delete.
17046 * config/arm/t-arm-elf: Rewritten.
17048 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17050 * config/arm/arm.h (TARGET_HARD_FLOAT): Also check that we
17051 have some floating-point instructions.
17052 (TARGET_SOFT_FLOAT): Define as inverse of TARGET_HARD_FLOAT.
17053 (TARGET_MAYBE_HARD_FLOAT): New macro.
17054 * config/arm/arm-builtins.c (arm_init_builtins): Use
17055 TARGET_MAYBE_HARD_FLOAT.
17056 * config/arm/arm.c (arm_option_override): Use TARGET_HARD_FLOAT_ABI.
17058 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17060 * common/config/arm/arm-common.c: Define INCLUDE_LIST.
17061 (configargs.h): Include it.
17062 (arm_print_hint_for_fpu_option): New function.
17063 (arm_parse_fpu_option): New function.
17064 (candidate_extension): New class.
17065 (arm_canon_for_multilib): New function.
17066 * config/arm/arm.h (CANON_ARCH_SPEC_FUNCTION): New macro.
17067 (EXTRA_SPEC_FUNCTIONS): Add CANON_ARCH_SPEC_FUNCTION.
17068 (ARCH_CANONICAL_SPECS): New macro.
17069 (DRIVER_SELF_SPECS): Add ARCH_CANONICAL_SPECS.
17071 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17073 * config.gcc (arm*-*-*): Ensure both target_cpu_cname and with_cpu
17074 are set after handling multilib fragments. Set target_cpu_default2
17077 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17079 * config.gcc (arm*-*-fucshia*): Set target_cpu_cname to the real
17081 (arm*-*-*): Set target_cpu_default2 to a quoted string.
17082 * config/arm/parsecpu.awk (check_cpu): Validate any extension
17084 (check_arch): Likewise.
17085 * config/arm/arm.c (arm_configure_build_target): Handle
17086 TARGET_CPU_DEFAULT being a string constant. Scan any feature
17087 options in the default.
17089 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17091 * config/arm/arm-protos.h (cpu_arch_extension): Add field to record
17092 when an option is an alias of another.
17093 * config/arm/parsecpu.awk (optalias): New parser token.
17094 (gen_comm_data): Mark non-alias options as such. Emit entries
17095 for extension aliases.
17096 * config/arm/arm-cpus.in (armv5e): Make vfpv2 an alias.
17097 (armv5te, armv5tej, armv6, armv6j, armv6k, armv6z): Likewise.
17098 (armv6kz, armv6zk, armv6t2): Likewise.
17099 (armv7): Make vfpv3-d16 an alias.
17100 (armv7-a): Make vfpv3-d16, neon and neon-vfpv3 aliases. Sort in
17102 (armv7ve): Make vfpv4-d16, neon-vfpv3 and neon-vfpv4 aliases.
17103 Sort in canonical order.
17104 (armv8-a): Sort in canonical order.
17105 (armv8.1-a, armv8.2-a): Likewise.
17106 (generic-armv7-a): Make neon and neon-vfpv3 aliases. Sort in
17108 (cortex-a9): Sort in canonical order.
17109 * config/arm/arm.c (selftests.h): Include it.
17110 (arm_test_cpu_arch_data): New function.
17111 (arm_run_self_tests): New function.
17112 (TARGET_RUN_TARGET_SELFTESTS): Redefine.
17113 (targetm): Move declaration to the end of the file.
17114 * arm-cpu-cdata.h: Regenerated.
17116 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17118 * config/arm/arm.h (TARGET_MODE_SPECS): Add additional parameter to
17119 call to target_mode_check describing the type of option passed.
17120 * common/config/arm/arm-common.c (arm_arch_core_flag): Delete.
17121 (arm_target_thumb_only): Use arm_parse_arch_option_name or
17122 arm_parse_cpu_option_name to match parameters against list of
17124 * config/arm/parsecpu.awk (gen_comm_data): Don't generate
17125 arm_arch_core_flags data structure.
17126 * config/arm/arm-cpu_cdata.h: Regenerated.
17128 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17130 * common/config/arm/arm-common.c (arm_initialize_isa): Moved here from
17132 (arm_print_hint_for_cpu_option): Likewise.
17133 (arm_print_hint_for_arch_option): Likewise.
17134 (arm_parse_cpu_option_name): Likewise.
17135 (arm_parse_arch_option_name): Likewise.
17136 * config/arm/arm.c (arm_identify_fpu_from_isa): Use the computed number
17137 of entries in the all_fpus list.
17138 * config/arm/arm-protos.h (all_architectures, all_cores): Declare.
17139 (arm_parse_cpu_option_name): Declare.
17140 (arm_parse_arch_option_name): Declare.
17141 (arm_parse_option_features): Declare.
17142 (arm_intialize_isa): Declare.
17143 * config/arm/parsecpu.awk (gen_data): Move CPU and architecture
17145 (gen_comm_data): ... here. Make definitions non-static.
17146 * config/arm/arm-cpu-data.h: Regenerated.
17147 * config/arm/arm-cpu-cdata.h: Regenerated.
17149 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17151 * config/arm/arm-protos.h (arm_build_target): Remove arch_core.
17152 (cpu_arch_extension): New structure.
17153 (cpu_arch_option, arch_option, cpu_option): New structures.
17154 * config/arm/parsecpu.awk (gen_headers): Build an enumeration of
17155 architecture types.
17156 (gen_data): Generate new format data tables.
17157 * config/arm/arm.c (cpu_tune): New structure.
17158 (cpu_option, processors): Delete.
17159 (arm_print_hint_for_core_or_arch): Delete. Replace with ...
17160 (arm_print_hint_for_cpu_option): ... this and ...
17161 (arm_print_hint_for_arch_option): ... this.
17162 (arm_parse_arch_cpu_name): Delete. Replace with ...
17163 (arm_parse_cpu_option_name): ... this and ...
17164 (arm_parse_arch_option_name): ... this.
17165 (arm_unrecognized_feature): Change type of target parameter to
17167 (arm_parse_arch_cpu_features): Delete. Replace with ...
17168 (arm_parse_option_features): ... this.
17169 (arm_configure_build_target): Rework to use new configuration data
17171 (arm_print_tune_info): Rework for new configuration data tables.
17172 * config/arm/arm-cpu-data.h: Regenerated.
17173 * config/arm/arm-cpu.h: Regenerated.
17175 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17177 * Makefile.in (OBJS): Move sbitmap.o from here ...
17178 (OBJS-libcommon): ... to here.
17180 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17182 * config/arm/arm-isa.h (ISA_ALL_FPU_INTERNAL): Renamed from ISA_ALL_FPU.
17183 (ISA_ALL_CRYPTO): New macro.
17184 (ISA_ALL_SIMD): New macro
17185 (ISA_ALL_FP): New macro.
17186 * config/arm/arm.c (fpu_bitlist): Update initializer.
17187 * config/arm/arm-cpus.in: Use new ISA_ALL macros to disable crypto,
17189 (arm9e): Add fpu. Add option for nofp
17190 (arm946e-s, arm966e-s, arm968e-s, arm10e, arm1020e, arm1022e): Likewise.
17191 (arm926ej-s, arm1026ej-s): Likewise.
17192 (generic-armv7-a): Add fpu. Add options for simd, vfpv3, vfpv3-d16,
17193 vfpv3-fp16, vfpv3-d16-fp16, vfpv4, vfpv4-d16, neon, neon-vfp3,
17194 neon-fp16, neon-vfpv4, nofp and nosimd.
17195 (cortex-a5, cortex-a7): Add fpu. Add options for nosimd and nofp.
17196 (cortex-a8): Add fpu. Add option for nofp.
17197 (cortex-a9): Add fpu. Add options for nosimd and nofp.
17198 (cortex-a12, cortex-a15, cortex-a17): Add fpu. Add option for nofp.
17199 (cortex-r4f): Add fpu.
17200 (cortex-r5): Add fpu. Add options for nofp.dp and nofp.
17201 (cortex-r7): Use idiv option from architecture. Add fpu. Add option
17203 (cortex-r8): Likewise.
17204 (cortex-m4): Add fpu. Add option for nofp.
17205 (cortex-a15.cortex-a7): Add fpu. Add option for nofp.
17206 (cortex-a17.cortex-a7): Likewise.
17207 (cortex-a32): Add fpu. Add options for crypto and nofp.
17208 (cortex-a35, cortex-a53): Likewise.
17209 (cortex-a57): Add fpu. Add option for crypto.
17210 (cortex-a72, cortex-a73): Likewise.
17211 (exynos-m1): Likewise.
17212 (cortex-a57.cortex-a53, cortex-a72.cortex-a53): Likewise.
17213 (cortex-a73.cortex-a35, cortex-a73.cortex-a53): Likewise.
17214 (cortex-m33): Add fpu. Add option for nofp.
17215 * config/arm/arm-cpu-cdata.h: Regenerated
17216 * config/arm/arm-cpu-data.h: Regenerated.
17218 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17220 * arm-cpus.in (armv5e): Add options fp, vfpv2 and nofp.
17221 (armv5te, armv5tej): Likewise.
17222 (armv6, armv6j, armv6k, armv6z, armv6kz, armv6zk, armv6t2): Likewise.
17223 (armv7): Add options fp and vfpv3-d16.
17224 (armv7-a): Add options fp, simd, vfpv3, vfpv3-d16, vfpv3-d16-fp16,
17225 vfpv3-fp16, vfpv4, vfpv4-d16, neon, neon-vfpv3, neon-fp16, neon-vfpv4,
17227 (armv7ve): Likewise.
17228 (armv7-r): Add options fp, fp.sp, idiv, nofp and noidiv.
17229 (armv7e-m): Add options fp, fpv5, fp.dp and nofp.
17230 (armv8-a): Add nocrypto option.
17231 (armv8.1-a, armv8.2-a): Likewise.
17232 (armv8-m.main): add options fp, fp.dp and nofp.
17234 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17236 * config/arm/arm-cpus.in (armv8-a): Add options crc, simd crypto and
17238 (armv8-a+crc): Delete.
17239 (armv8.1-a): Add options simd, crypto and nofp.
17240 (armv8.2-a): Add options fp16, simd, crypto and nofp.
17241 (armv8.2-a+fp16): Delete.
17242 (armv8-m.main): Add option dsp.
17243 (armv8-m.main+dsp): Delete.
17244 (cortex-a8): Add fpu. Add nofp option.
17245 (cortex-a9): Add fpu. Add nofp and nosimd options.
17246 * config/arm/parsecpu.awk (gen_data): Generate option tables and
17247 link to main cpu and architecture data structures.
17248 (gen_comm_data): Only put isa attributes from the main architecture
17250 (option): New statement for architecture and CPU entries.
17251 * arm.c (struct cpu_option): New structure.
17252 (struct processors): Add entry for options.
17253 (arm_unrecognized_feature): New function.
17254 (arm_parse_arch_cpu_name): Ignore any characters after the first
17256 (arm_parse_arch_cpu_feature): New function.
17257 (arm_configure_build_target): Separate out any CPU and architecture
17258 features and parse separately. Don't error out if -mfpu=auto is
17259 used with only an architecture string.
17260 (arm_print_asm_arch_directives): New function.
17261 (arm_file_start): Call it.
17262 * config/arm/arm-cpu-cdata.h: Regenerated.
17263 * config/arm/arm-cpu-data.h: Likewise.
17264 * config/arm/arm-tables.opt: Likewise.
17266 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17268 * config/arm/elf.h (ASM_SPEC): Only pass -mfpu through to the
17269 assembler when it is not -mfpu=auto.
17271 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17273 * config/arm/arm.h (BIG_LITTLE_SPEC): Delete macro.
17274 (ASM_REWRITE_SPEC_FUNCTIONS): New macro.
17275 (BIG_LITTLE_CPU_SPEC_FUNCTIONS): Delete macro.
17276 (ASM_CPU_SPEC): Rewrite.
17277 (MCPU_MTUNE_NATIVE_FUNCTIONS): New macro.
17278 (EXTRA_SPEC_FUNCTIONS): Move outside of ifdef. Use
17279 MCPU_MTUNE_NATIVE_FUNCTIONS and ASM_REWRITE_SPEC_FUNCTIONS. Remove
17280 reference to BIG_LITTLE_CPU_SPEC_FUNCTIONS.
17281 * common/config/arm/arm-common.c (arm_rewrite_selected_cpu): Ensure
17282 copied string is NUL-terminated. Also strip any characters prefixed
17284 (arm_rewrite_selected_arch): New function.
17285 (arm_rewrite_march): New function.
17287 2017-06-16 Richard Earnshaw <rearnsha@arm.com>
17289 * config/arm/arm.opt (x_arm_arch_string): New TargetSave option.
17290 (x_arm_cpu_string, x_arm_tune_string): Likewise.
17291 (march, mcpu, mtune): Convert to string-based options.
17292 * config/arm/arm.c (arm_print_hint_for_core_or_arch): New function.
17293 (arm_parse_arch_cpu_name): New function.
17294 (arm_configure_build_target): Use arm_parse_arch_cpu_name to
17295 identify selected architecture or CPU.
17296 (arm_option_save): New function.
17297 (TARGET_OPTION_SAVE): Redefine.
17298 (arm_option_restore): Restore string options.
17299 (arm_option_print): Print string options.
17301 2017-06-16 Martin Sebor <msebor@redhat.com>
17303 PR tree-optimization/80933
17304 PR tree-optimization/80934
17305 * builtins.c (fold_builtin_3): Do not handle bcmp here.
17306 * gimple-fold.c (gimple_fold_builtin_bcmp): New function.
17307 (gimple_fold_builtin_bcopy, gimple_fold_builtin_bzero): Likewise.
17308 (gimple_fold_builtin): Call them.
17310 2017-06-16 Jan Hubicka <hubicka@ucw.cz>
17312 * gimple-ssa-isolate-paths.c (isolate_path): Set edge leading to path
17313 as unlikely; update profile.
17315 2017-06-16 Jan Hubicka <hubicka@ucw.cz>
17317 * predict.c (force_edge_cold): Handle declaring edges impossible
17320 2017-06-16 Jan Hubicka <hubicka@ucw.cz>
17322 * tree-ssa-loop-ivcanon.c (remove_exits_and_undefined_stmts): Update
17324 (try_unroll_loop_completely): Fix reporting.
17326 2017-06-16 Jan Hubicka <hubicka@ucw.cz>
17328 * tree-ssa-tail-merge.c (replace_block_by): Fix profile updating.
17330 2017-06-16 James Greenhalgh <james.greenhalgh@arm.com>
17333 * config/arm/arm-builtins.c (arm_expand_builtin_args): Return TARGET
17334 if given a non-constant argument for an intrinsic which requires a
17337 2017-06-16 Jan Hubicka <hubicka@ucw.cz>
17339 * profile.c (compare_freqs): New function.
17340 (branch_prob): Sort edge list.
17341 (find_spanning_tree): Assume that the list is priority sorted.
17343 2017-06-16 Richard Biener <rguenther@suse.de>
17345 PR tree-optimization/81090
17346 * passes.def (pass_record_bounds): Remove.
17347 * tree-pass.h (make_pass_record_bounds): Likewise.
17348 * tree-ssa-loop.c (pass_data_record_bounds, pass_record_bounds,
17349 make_pass_record_bounds): Likewise.
17350 * tree-ssa-loop-ivcanon.c (canonicalize_induction_variables): Do
17351 not free niter estimates at the beginning but at the end.
17352 * tree-scalar-evolution.c (scev_finalize): Free niter estimates.
17354 2017-06-16 Richard Biener <rguenther@suse.de>
17356 * tree-switch-conversion.c (emit_case_bit_tests): Adjust
17357 initializer to workaround ICE in host GCC 4.8.
17359 2017-06-16 Jan Hubicka <hubicka@ucw.cz>
17361 * ipa-inline-transform.c (update_noncloned_frequencies): Update also
17363 (clone_inlined_nodes): Update.
17365 2017-06-16 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
17367 * config/aarch64/aarch64.c (qdf24xx_prefetch_tune): Update
17368 prefetch settings, and enable prefetching by default at -O3.
17370 2017-06-16 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
17372 * config/aarch64/aarch64.c (aarch64_override_options_internal):
17373 Set flag_prefetch_loop_arrays according to tuning data.
17375 2017-06-16 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
17377 * config/aarch64/aarch64-protos.h (struct cpu_prefetch_tune):
17378 New tune structure.
17379 (struct tune_params): Use cpu_prefetch_tune instead of cache_line_size.
17380 [Unrelated to main purpose of the patch] Place the pointer field last
17381 to enable type checking errors when tune structure are wrongly merged.
17382 * config/aarch64/aarch64.c (generic_prefetch_tune,)
17383 (exynosm1_prefetch_tune, qdf24xx_prefetch_tune,)
17384 (thunderx2t99_prefetch_tune): New tune constants.
17385 (tune_params *_tunings): Update all tunings (no functional change).
17386 (aarch64_override_options_internal): Set PARAM_SIMULTANEOUS_PREFETCHES,
17387 PARAM_L1_CACHE_SIZE, PARAM_L1_CACHE_LINE_SIZE, and PARAM_L2_CACHE_SIZE
17388 from tunings structures.
17390 2017-06-16 Jakub Jelinek <jakub@redhat.com>
17393 * ubsan.c (instrument_null): Add T argument, use it instead
17394 of computing it based on IS_LHS.
17395 (instrument_object_size): Likewise.
17396 (pass_ubsan::execute): Adjust instrument_null and
17397 instrument_object_size callers to pass gimple_get_lhs or
17398 gimple_assign_rhs1 result to it. Use instrument_null instead of
17399 calling get_base_address and instrument_mem_ref. Handle
17400 aggregate call arguments for object-size sanitization.
17402 2017-06-16 Yury Gribov <tetra2005@gmail.com>
17404 PR tree-optimization/81089
17405 * tree-vrp.c (is_masked_range_test): Validate operands of
17408 2017-06-15 Martin Sebor <msebor@redhat.com>
17411 * dumpfile.c (dump_register): Avoid calling memset to initialize
17412 a class with a default ctor.
17413 * gcc.c (struct compiler): Remove const qualification.
17414 * genattrtab.c (gen_insn_reserv): Replace memset with initialization.
17415 * hash-table.h: Ditto.
17416 * ipa-cp.c (allocate_and_init_ipcp_value): Replace memset with
17418 * ipa-prop.c (ipa_free_edge_args_substructures): Ditto.
17419 * omp-low.c (lower_omp_ordered_clauses): Replace memset with
17421 * params.h (struct param_info): Make struct members non-const.
17422 * tree-switch-conversion.c (emit_case_bit_tests): Replace memset
17423 with default initialization.
17424 * vec.h (vec_copy_construct, vec_default_construct): New helper
17426 (vec<T>::copy, vec<T>::splice, vec<T>::reserve): Replace memcpy
17427 with vec_copy_construct.
17428 (vect<T>::quick_grow_cleared): Replace memset with default ctor.
17429 (vect<T>::vec_safe_grow_cleared, vec_safe_grow_cleared): Same.
17430 * doc/invoke.texi (-Wclass-memaccess): Document.
17432 2017-06-15 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
17434 * emit-rtl.h (is_leaf): Update comment about local
17435 register allocator.
17437 2017-06-15 Jozef Lawrynowicz <jozef.l@somniumtech.com>
17440 * config/msp430/msp430.c (msp430_data_attr): Check that it's possible
17441 for a variable to have a section before checking if the section has a
17443 Set section to.persistent if persistent attribute is set.
17444 Warn if .persistent attribute is used on an automatic variable.
17446 2017-06-15 Eric Botcazou <ebotcazou@adacore.com>
17448 PR rtl-optimization/80474
17449 * reorg.c (update_block): Do not ignore instructions in a delay slot.
17451 2017-06-15 Segher Boessenkool <segher@kernel.crashing.org>
17453 * config/rs6000/rs6000.md (add<mode>3): Use reg_or_subregno instead
17456 2017-06-14 Maciej W. Rozycki <macro@imgtec.com>
17458 * config/mips/mips.md (MIPS16_T_REGNUM): Remove constant.
17459 (casesi): Emit bounds checking as RTL.
17460 (casesi_internal_mips16_<mode>): Remove bounds checking.
17462 2017-06-14 Max Filippov <jcmvbkbc@gmail.com>
17464 * config/xtensa/xtensa.c (xtensa_option_override): Append
17465 MASK_CONST16 to target_flags in the absence of TARGET_L32R.
17466 (hwloop_optimize, hwloop_fail, hwloop_pattern_reg,
17467 xtensa_doloop_hooks): Define unconditionally.
17468 (xtensa_reorg_loops): Only call reorg_loops in the presence of
17470 * config/xtensa/xtensa.h (TARGET_L32R): New definition.
17471 (TARGET_DEFAULT): Remove XCHAL_HAVE_L32R condition and account
17472 for it in xtensa_option_override.
17473 (HARD_FRAME_POINTER_IS_FRAME_POINTER,
17474 HARD_FRAME_POINTER_IS_ARG_POINTER): New definitions.
17476 2017-06-14 Boris Kolpackov <boris@codesynthesis.com>
17478 * doc/cppopts.texi: Document '-' special value to -MF.
17480 2017-06-14 Wilco Dijkstra <wdijkstr@arm.com>
17482 * config/arm/cortex-a53.md (cortex_a53_fpalu) Adjust latency.
17483 (cortex_a53_fconst): Likewise.
17484 (cortex_a53_fpmul): Likewise.
17485 (cortex_a53_f_load_64): Likewise.
17486 (cortex_a53_f_load_many): Likewise.
17487 (cortex_a53_advsimd_alu): Likewise.
17488 (cortex_a53_advsimd_alu_q): Likewise.
17489 (cortex_a53_advsimd_mul): Likewise.
17490 (cortex_a53_advsimd_mul_q): Likewise.
17491 (fpmac bypass): Add new bypass for fpmac-fpmac case.
17492 Add missing fmul, r2f_cvt and fconst cases.
17494 2017-06-14 Richard Biener <rguenther@suse.de>
17496 PR middle-end/81088
17497 * fold-const.c (split_tree): Drop TREE_OVERFLOW flag from
17499 (fold_binary_loc): When associating do not treat pre-existing
17500 TREE_OVERFLOW on literal constants as a reason to allow
17501 TREE_OVERFLOW on associated literal constants.
17503 2017-06-14 Eric Botcazou <ebotcazou@adacore.com>
17505 * config/sparc/sparc.h (MASK_ISA): Add MASK_LEON and MASK_LEON3.
17506 (MASK_FEATURES): New macro.
17507 * config/sparc/sparc.c (sparc_option_override): Remove the special
17508 handling of -mfpu and generalize it to all MASK_FEATURES switches.
17510 2017-06-14 Eric Botcazou <ebotcazou@adacore.com>
17512 * simplify-rtx.c (simplify_binary_operation_1) <UDIV>: Do not simplify
17513 a division of 0 if non-call exceptions are enabled.
17515 2017-06-14 Andrew Pinski <apinski@cavium.com>
17516 Naveen H.S <Naveen.Hurugalawadi@cavium.com>
17519 * config/aarch64/aarch64.c (aarch64_expand_vector_init):
17520 Improve vector initialization code gen for only variable case.
17522 2017-06-14 Eric Botcazou <ebotcazou@adacore.com>
17524 * config/sparc/driver-sparc.c (cpu_names): Add SPARC-T5 entry.
17526 2017-06-14 Richard Biener <rguenther@suse.de>
17528 PR tree-optimization/81083
17529 * tree-ssa-sccvn.c (vn_reference_lookup_3): Do not use abnormals
17532 2017-06-13 Segher Boessenkool <segher@kernel.crashing.org>
17534 * config/rs6000/rs6000.c: Update all comments that mentioned SPE.
17535 (rs6000_expand_builtin): Remove RS6000_BTC_EVSEL.
17536 * config/rs6000/rs6000.h (RS6000_BTC_EVSEL): Delete.
17537 * config/rs6000/vxworks.h (VXCPU_FOR_8548): Delete. Adjust former use.
17538 * config/rs6000/vxworksae.h (VXCPU_FOR_8548): Delete.
17539 * config/rs6000/vxworksmils.h (VXCPU_FOR_8548): Delete.
17541 2017-06-13 Segher Boessenkool <segher@kernel.crashing.org>
17543 * config/rs6000/rs6000-opts.h (enum rs6000_vector): Delete VECTOR_SPE.
17544 * config/rs6000/rs6000.c (rs6000_debug_vector_unit): Delete VECTOR_SPE.
17546 2017-06-13 Segher Boessenkool <segher@kernel.crashing.org>
17548 * config/rs6000/rs6000.h (FIXED_SCRATCH): Delete.
17550 2017-06-13 Segher Boessenkool <segher@kernel.crashing.org>
17552 * config/rs6000/t-rtems: Don't handle SPE.
17554 2017-06-13 Segher Boessenkool <segher@kernel.crashing.org>
17556 * config/rs6000/t-linux: Don't handle SPE.
17558 2017-06-13 Segher Boessenkool <segher@kernel.crashing.org>
17560 * config/rs6000/eabispe.h: Delete file.
17562 2017-06-13 Segher Boessenkool <segher@kernel.crashing.org>
17564 * config/rs6000/t-spe: Delete file.
17566 2017-06-13 Segher Boessenkool <segher@kernel.crashing.org>
17568 * config/rs6000/rs6000.c (SPE_CONST_OFFSET_OK): Delete.
17569 (rs6000_legitimate_offset_address_p): Return false for anything in
17570 V2SImode or V2SFmode.
17572 2017-06-13 Segher Boessenkool <segher@kernel.crashing.org>
17574 * config/rs6000/rs6000-modes.def: Remove all 8-byte vector modes
17575 except V2SF and V2SI. Rearrange the vector modes, and add comments.
17576 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Remove V8QImode
17578 (reg_offset_addressing_ok_p): Remove V4HImode and V1DImode.
17579 (rs6000_legitimate_offset_address_p): Ditto.
17580 (rs6000_emit_move): Ditto.
17581 (rs6000_init_builtins): Remove V4HI_type_node.
17583 2017-06-13 Martin Liska <mliska@suse.cz>
17586 * asan.c (asan_sanitize_stack_p): Use sanitize_flags_p.
17587 (gate_asan): Likewise.
17588 * asan.h (asan_no_sanitize_address_p): Remove the function.
17589 (sanitize_flags_p): New function.
17590 * builtins.def: Fix coding style.
17591 * common.opt: Use renamed enum value.
17592 * convert.c (convert_to_integer_1): Use sanitize_flags_p.
17593 * doc/extend.texi: Document no_sanitize attribute.
17594 * flag-types.h (enum sanitize_code): Rename SANITIZE_NONDEFAULT
17595 to SANITIZE_UNDEFINED_NONDEFAULT.
17596 * gcc.c (sanitize_spec_function): Use the renamed enum value.
17597 * gimple-fold.c (optimize_atomic_compare_exchange_p):
17598 Use sanitize_flags_p.
17599 * gimplify.c (gimplify_function_tree): Likewise.
17600 * ipa-inline.c (sanitize_attrs_match_for_inline_p): Likewise.
17601 * opts.c (parse_no_sanitize_attribute): New function.
17602 (common_handle_option): Use renamed enum value.
17603 * opts.h (parse_no_sanitize_attribute): Declare.
17604 * tree.c (sanitize_flags_p): New function.
17605 * tree.h: Declared here.
17606 * tsan.c: Use sanitize_flags_p.
17607 * ubsan.c (ubsan_expand_null_ifn): Likewise.
17608 (instrument_mem_ref): Likewise.
17609 (instrument_bool_enum_load): Likewise.
17610 (do_ubsan_in_current_function): Remove the function.
17611 (pass_ubsan::execute): Use sanitize_flags_p.
17612 * ubsan.h: Remove do_ubsan_in_current_function
17613 * tree-cfg.c (print_no_sanitize_attr_value): New function.
17614 (dump_function_to_file): Use it here.
17616 2017-06-13 Martin Jambor <mjambor@suse.cz>
17618 PR tree-optimization/80803
17619 PR tree-optimization/81063
17620 * tree-sra.c (subtree_mark_written_and_enqueue): Move up in the file.
17621 (propagate_subaccesses_across_link): Enqueue subtree whenever
17622 necessary instead of relying on the caller.
17624 2017-06-13 Martin Jambor <mjambor@suse.cz>
17626 * tree-sra.c (add_access_to_work_queue): Only enqueue accesses
17627 that have a first_link.
17628 (sort_and_splice_var_accesses): Do not check first_link before
17630 (subtree_mark_written_and_enqueue): Likewise.
17631 (propagate_all_subaccesses): Likewise and do not stop at first
17632 parent with a first_link.
17634 2017-06-13 Martin Jambor <mjambor@suse.cz>
17636 * tree-sra.c (dump_access_tree_1): Fix accidental dumping to stderr
17639 2017-06-13 Yury Gribov <tetra2005@gmail.com>
17641 * match.pd: New pattern.
17643 2017-06-13 Yury Gribov <tetra2005@gmail.com>
17645 * tree-vrp.c (is_masked_range_test): New function.
17646 (register_edge_assert_for): Determine ranges for
17649 2017-06-13 Yury Gribov <tetra2005@gmail.com>
17651 PR tree-optimization/67328
17652 * fold-const.c (maskable_range_p): New function.
17653 (build_range_check): Generate bittests if possible.
17655 2017-06-13 Martin Liska <mliska@suse.cz>
17657 * gimple-pretty-print.c (dump_probability): Add new argument.
17658 (dump_edge_probability): Dump both probability and count.
17659 (dump_gimple_label): Likewise.
17660 (dump_gimple_bb_header): Likewise.
17662 2017-06-13 Georg-Johann Lay <avr@gjlay.de>
17665 * config/avr/avr-devices.c: Fix indentation.
17666 * config/avr/gen-avr-mmcu-specs.c: Dito.
17668 2017-06-13 Richard Biener <rguenther@suse.de>
17670 * tree-vect-loop.c (vect_model_reduction_cost): Do not fail,
17671 instead get vector type from stmt_info.
17672 (vectorizable_reduction): Adjust. Remove dead code.
17674 2017-06-13 Richard Biener <rguenther@suse.de>
17676 PR middle-end/81065
17677 * fold-const.c (extract_muldiv_1): Remove bogus distribution
17678 case of C * (x * C2 + C3).
17679 (fold_addr_of_array_ref_difference): Properly fold index difference.
17681 2017-06-12 David S. Miller <davem@davemloft.net>
17684 * config/sparc/sparc.md (return expander): Emit frame blockage if
17685 function uses alloca.
17687 2017-06-12 Richard Sandiford <richard.sandiford@linaro.org>
17689 * combine.c (make_field_assignment): Check len rather than the mode
17690 precision when calling force_to_mode.
17692 2017-06-12 Georg-Johann Lay <avr@gjlay.de>
17694 Support multilibs and devices that see flash in RAM address range.
17697 * config/avr/avr-arch.h (avr_arch_id) <ARCH_AVRXMEGA3>: New enum.
17698 (avr_mcu_t) <flash_pm_offset>: New field.
17699 (avr_device_specific_features) <AVR_ISA_RCALL>: New enum.
17700 * config/avr/avr.h (AVR_SHORT_CALLS): New define.
17701 (AVR_HAVE_JMP_CALL): Don't set if AVR_SHORT_CALLS.
17702 (AVR_TINY_PM_OFFSET): Remove macro.
17703 * config/avr/avr.opt (-mshort-calls): New option.
17704 * config/avr/gen-avr-mmcu-specs.c (print_mcu)
17705 [*self_spec]: Add / remove -mshort-calls depending on AVR_ISA_RCALL.
17706 * config/avr/avr-c.c (avr_cpu_cpp_builtins)
17707 <__AVR_SHORT_CALLS__>: Built-in define if AVR_SHORT_CALLS.
17708 <__AVR_HAVE_JMP_CALL__>: Use AVR_HAVE_JMP_CALL as condition
17709 instead of avr_arch->have_jmp_call.
17710 <__AVR_PM_BASE_ADDRESS__>: Built-in define if avr_arch->flash_pm_offset.
17711 [AVR_TINY] <__AVR_TINY_PM_BASE_ADDRESS__>: Use
17712 avr_arch->flash_pm_offset to define.
17713 * config/avr/avr-devices.c (avr_arch_types): Add initializers for
17714 new field flash_pm_offset. Add entry for avrxmega3.
17715 (avr_texinfo): Add entry for avrxmega3.
17716 * config/avr/avr-mcus.def: Add entries for: avrxmega3,
17717 attiny212, attiny214,
17718 attiny412, attiny414, attiny416, attiny417,
17719 attiny814, attiny816, attiny817,
17720 attiny1614, attiny1616, attiny1617,
17721 attiny3214, attiny3216, attiny3217.
17722 * config/avr/avr.c (avr_assemble_integer)[AVR_TINY]: Use
17723 avr_arch->flash_pm_offset instead of AVR_TINY_PM_OFFSET.
17724 (avr_print_operand_address) [AVR_TINY]: Same.
17725 (avr_asm_init_sections) <readonly_data_section>: Only patch
17726 callback if avr_arch->flash_pm_offset = 0.
17727 (avr_asm_named_section) <avr_need_copy_data_p>: Skip setting it
17728 for rodata if avr_arch->flash_pm_offset != 0.
17729 (avr_encode_section_info) [AVR_TINY]: Adjust comment.
17730 * config/avr/genmultilib.awk (dir_rcall, opt_rcall): New vars.
17731 (opts) [AVR_ISA_RCALL]: Append opt_rcall.
17732 (m_options): Append opt_rcall.
17733 (m_dirnames): Append dir_rcall.
17734 * config/avr/t-multilib: Regenerate.
17736 * configure.ac [target=avr]: Check whether avrxmega3 default
17737 linker description file works as needed.
17738 * configure: Regenerate.
17739 * doc/avr-mmcu.texi: Regenerate.
17740 * doc/invoke.texi (AVR Options) <-mshort-calls>: Document it.
17741 <__AVR_ARCH__>: Document avrxmega3 and 103.
17742 <__AVR_HAVE_JMP_CALL__>: Adjust documentation.
17743 <__AVR_SHORT_CALLS__>: Document it.
17744 <__AVR_PM_BASE_ADDRESS__>: Document it.
17745 * doc/extend.texi (AVR Options) <-mshort-calls>: Document it.
17746 (AVR Variable Attributes) <progmem>: Document this is
17747 not needed for avrxmega3.
17748 (AVR Named Address Spaces) <__flash>: Dito.
17750 2017-06-12 Jan Hubicka <hubicka@ucw.cz>
17752 * cgraph.c (cgraph_node::dump): Complain about profile insanities.
17754 2017-06-12 Doug Rupp <rupp@adacore.com>
17756 * config.gcc (*-*-vxworks*): Set use_gcc_stdint to "provide".
17757 Append vxworks-stdint.h to the tm_file list.
17758 * config/vxworks-stdint.h: New file.
17760 2017-06-12 Martin Liska <mliska@suse.cz>
17762 PR tree-optimization/81041
17763 * tree-profile.c (gimple_gen_ic_func_profiler):
17764 Create an extra BB in profile-generate
17765 (gimple_gen_time_profiler): Likewise.
17767 2017-06-12 Jakub Jelinek <jakub@redhat.com>
17769 PR tree-optimization/81003
17770 * tree-ssa-reassoc.c (force_into_ssa_name): New function.
17771 (update_range_test): Use it instead of force_gimple_operand_gsi.
17773 2017-06-12 Richard Biener <rguenther@suse.de>
17775 PR tree-optimization/81053
17776 * tree-vect-loop.c (vect_is_simple_reduction): Handle PHI
17777 with backedge value not defined in loop. Simplify def stmt
17780 2017-06-11 Tom de Vries <tom@codesourcery.com>
17783 * config/nvptx/nvptx.c (nvptx_cannot_force_const_mem): New function.
17785 (TARGET_CANNOT_FORCE_CONST_MEM): Redefine to
17786 nvptx_cannot_force_const_mem.
17788 2017-06-10 Jan Hubicka <hubicka@ucw.cz>
17790 * opts.c (finish_options): Move test for flag_split_stack after
17791 it has been initialized.
17793 2017-06-11 Jason Merrill <jason@redhat.com>
17795 * tree.h (id_equal): New.
17796 * dwarf2out.c, hsa-gen.c, ipa-devirt.c, omp-expand.c,
17797 omp-simd-clone.c, read-rtl-function.c, tree-chkp.c, tree.c: Use it
17798 instead of strcmp of IDENTIFIER_POINTER.
17800 2017-06-10 Jan Hubicka <hubicka@ucw.cz>
17802 * ipa-inline-transform.c: Include function.h, cfg.h and basic-block.h
17803 (mark_all_inlined_calls_cdtor): Fix formating.
17804 (inline_transform): Rescale profile before inlining.
17806 2017-06-10 Jan Hubicka <hubicka@ucw.cz>
17808 * cgraph.h (cgraph_edge::clone): Update prototype.
17809 * cgraphclones.c (cgraph_edge::clone): Update profile scaling.
17810 (cgraph_node::create_clone): Update.
17811 (cgraph_node::create_version_clone): Update.
17812 * tree-inline.c (copy_bb): Update.
17813 (expand_call_inline): Update.
17815 2017-06-10 Segher Boessenkool <segher@kernel.crashing.org>
17817 * config/rs6000/rs6000.c (emit_vrsave_prologue): New function,
17818 factored out from ...
17819 (rs6000_emit_prologue): ... here.
17821 2017-06-10 Segher Boessenkool <segher@kernel.crashing.org>
17823 * config/rs6000/rs6000.c (emit_split_stack_prologue): New function,
17824 factored out from ...
17825 (rs6000_emit_prologue): ... here.
17827 2017-06-10 Jan Hubicka <hubicka@ucw.cz>
17829 * predict.c (drop_profile): Also drop individual bb/edge and cgraph
17831 (handle_missing_profiles): Fix computation of tp_first_run.
17832 (counts_to_freqs): Do not touch freqs when count is 0.
17834 2017-06-10 Jan Hubicka <hubicka@ucw.cz>
17836 * cgraphbuild.c (cgraph_edge::rebuild_references): Do not touch
17839 2017-06-10 Tom de Vries <tom@codesourcery.com>
17841 * doc/sourcebuild.texi (Effective-Target Keywords, Environment
17842 attributes): Document signal effective target.
17844 2017-06-10 Tom de Vries <tom@codesourcery.com>
17846 * doc/sourcebuild.texi (Effective-Target Keywords, Other attributes):
17847 Document effective target stack_size.
17849 2017-06-09 David Malcolm <dmalcolm@redhat.com>
17851 * diagnostic.c (diagnostic_report_diagnostic): Only add fixits
17852 to the edit_context if they can be auto-applied.
17854 2017-06-9 Ian Lance Taylor <iant@golang.org>
17856 * opts.c (finish_options): If -fsplit-stack, disable implicit
17857 -forder-blocks-and-partition.
17858 * doc/invoke.texi (Optimize Options): Document that when using
17859 -fsplit-stack -forder-blocks-and-partition is not implicitly
17862 2017-06-09 Jan Hubicka <hubicka@ucw.cz>
17864 * builtin-attrs.def (ATTR_NORETURN_NOTHROW_LEAF_COLD_LIST,
17865 ATTR_CONST_NORETURN_NOTHROW_LEAF_COLD_LIST,
17866 ATTR_TMPURE_NORETURN_NOTHROW_LEAF_COLD_LIST): New.
17867 * builtins.def (abort, trap, unreachable): Declare cold.
17868 * calls.c (flags_from_decl_or_type): Lookup ECF_COLD.
17869 * tree-core.h (ECF_COLD): New.
17870 * tree.c (set_call_expr_flags): Handle ECF_COLD.
17871 (build_common_builtin_nodes): Mark unreachable and abort as cold.
17873 2017-06-09 Jan Hubicka <hubicka@ucw.cz>
17875 * predict.c (unlikely_executed_stmt_p): Cleanup.
17877 2017-06-09 Richard Biener <rguenther@suse.de>
17879 * tree-ssa-loop-im.c (execute_sm): Do not force multi-threaded
17880 model if the ref is always written to.
17882 2017-06-09 Tamar Christina <tamar.christina@arm.com>
17884 * config/aarch64/aarch64.md (lrint<GPF:mode><GPI:mode>2): New.
17886 2017-06-09 Tamar Christina <tamar.christina@arm.com>
17888 * config/arm/arm.c (arm_rtx_costs_internal): Make sdiv more expensive
17891 2017-06-09 Tom de Vries <tom@codesourcery.com>
17894 * config/nvptx/nvptx.md (define_expand "mov<QHSDISDFM>"): Error out with
17895 "target cannot support label values" when encountering LABEL_REF.
17897 2017-06-09 Martin Liska <mliska@suse.cz>
17899 * tree-profile.c (gimple_gen_ic_profiler): Update comment.
17900 (gimple_gen_ic_func_profiler): Emit direct comparison
17901 of __gcov_indirect_call_callee with NULL.
17902 (gimple_gen_time_profiler): Change probability from
17903 PROB_VERY_UNLIKELY to PROB_UNLIKELY.
17905 2017-06-09 Jan Hubicka <hubicka@ucw.cz>
17907 * profile.c (edge_gcov_counts): Turn to pointer.
17908 (compute_branch_probabilities, compute_branch_probabilities): Update.
17909 (branch_prob): Do not clear edge_gcov_count.
17910 * profile.h (edge_gcov_counts): Turn to pointer.
17911 (edge_gcov_count): Update.
17913 2017-06-09 Jan Hubicka <hubicka@ucw.cz>
17915 * gimple.h (gimple_check_failed): Mark cold.
17917 2017-06-09 Richard Biener <rguenther@suse.de>
17919 PR tree-optimization/66623
17920 * tree-vect-loop.c (vect_is_simple_reduction): Cleanup,
17921 refactor check_reduction into two parts, properly computing
17922 whether we have to check reduction validity for outer loop
17925 2017-06-09 Richard Biener <rguenther@suse.de>
17927 PR tree-optimization/79483
17928 * graphite-scop-detection.c (order): New global.
17929 (get_order): Compute bb to order mapping that satisfies code
17930 generation constraints.
17931 (cmp_pbbs): New helper.
17932 (build_scops): Start domwalk at entry block, sort generated
17935 2017-06-09 Richard Biener <rguenther@suse.de>
17937 PR middle-end/81007
17938 * ipa-polymorphic-call.c
17939 (ipa_polymorphic_call_context::restrict_to_inner_class):
17940 Skip FIELD_DECLs with error_mark_node type.
17941 * passes.def (all_lowering_passes): Run pass_build_cgraph_edges
17944 2017-06-09 Martin Liska <mliska@suse.cz>
17946 * predict.c (struct branch_predictor): New struct.
17947 (test_prediction_value_range): New test.
17948 (predict_c_tests): New function.
17949 * selftest-run-tests.c (selftest::run_tests): Run the function.
17950 * selftest.h: Declare new tests.
17952 2017-06-09 Segher Boessenkool <segher@kernel.crashing.org>
17955 * config/rs6000/rs6000.c (rs6000_emit_allocate_stack): Assert that
17956 gen_add3_insn did not fail.
17957 * config/rs6000/rs6000.md (add<mode>3): If asked to add a constant to
17958 r0, construct that number in a temporary reg and add that reg to r0.
17959 If asked to put the result in r0 as well, fail.
17961 2017-06-08 Will Schmidt <will_schmidt@vnet.ibm.com>
17963 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Add handling
17964 for early expansion of vec_eqv.
17966 2017-06-08 Jakub Jelinek <jakub@redhat.com>
17968 PR middle-end/81005
17969 * ubsan.c (instrument_null): Avoid pointless code temporary.
17970 (pass_ubsan::execute): Instrument aggregate arguments of calls.
17972 2017-06-08 Uros Bizjak <ubizjak@gmail.com>
17976 2016-12-14 Uros Bizjak <ubizjak@gmail.com>
17979 * config/i386/i386.md (*ctzhi2): New insn_and_split pattern.
17982 2017-06-08 Jan Hubicka <hubicka@ucw.cz>
17984 * predict.c (unlikely_executed_edge_p): Move ahead.
17985 (probably_never_executed_edge_p): Use it.
17987 2017-06-08 Alexander Ivchenko <alexander.ivchenko@intel.com>
17989 PR middle-end/79988
17990 * tree-chkp.c (chkp_gimple_call_builtin_p): Remove
17991 gimple_call_builtin_p call.
17993 2017-06-08 Jan Hubicka <hubicka@ucw.cz>
17995 * system.h (fancy_abort): Annotate by ATTRIBUTE_COLD.
17996 * rtl.h (rtl_check_failed_bounds, rtl_check_failed_type1,
17997 rtl_check_failed_type2, rtl_check_failed_code1,
17998 rtl_check_failed_code2, rtl_check_failed_code_mode,
17999 rtl_check_failed_block_symbol, cwi_check_failed_bounds,
18000 rtvec_check_failed_bounds, rtl_check_failed_flag,
18001 _fatal_insn_not_found, _fatal_insn): Likewise.
18002 * tree.h (tree_contains_struct_check_failed,
18003 tree_check_failed, tree_not_check_failed,
18004 tree_class_check_failed, tree_range_check_failed,
18005 tree_not_class_check_failed, tree_int_cst_elt_check_failed,
18006 tree_vec_elt_check_failed, phi_node_elt_check_failed,
18007 tree_operand_check_failed, omp_clause_check_failed,
18008 omp_clause_operand_check_failed, omp_clause_range_check_failed):
18011 2017-06-08 Jan Hubicka <hubicka@ucw.cz>
18013 * cgraph.c (cgraph_edge::maybe_hot_p): Do not check
18014 flag_branch_probabilities.
18015 * ipa-inline.c (edge_badness): Likewise.
18016 * ipa-profile.c (ipa_propagate_frequency_1): Likewise.
18017 * postreload-gcse.c (eliminate_partially_redundant_load): Likewise.
18018 * predict.c (maybe_hot_frequency_p): Likewise.
18019 (probably_never_executed): Likewise.
18020 * sched-ebb.c (schedule_ebbs): Likewise.
18021 * sched-rgn.c (find_single_block_region): Likewise.
18022 * tracer.c (tail_duplicate): Likewise.
18024 2017-06-08 Jan Hubicka <hubicka@ucw.cz>
18026 * opts.c (finish_options): x_flag_reorder_blocks_and_partition no
18027 longer requires x_flag_profile_use.
18029 2017-06-08 Jan Hubicka <hubicka@ucw.cz>
18031 * cfgrtl.c (cfg_layout_initialize): Check crtl->has_bb_partition
18032 instead of flag_reorder_blocks_and_partition.
18033 * dbxout.c (dbxout_function_end): Likewise.
18034 * dwarf2out.c (gen_subprogram_die): Likewise.
18035 * haifa-sched.c (sched_create_recovery_edges): Likewise.
18036 * hw-doloop.c (reorg_loops): Likewise.
18037 * varasm.c (assemble_start_function,
18038 assemble_end_function): Likewise.
18039 (decide_function_section): Do not check for
18040 flag_reorder_blocks_and_partition.
18042 2017-06-08 Alexander Ivchenko <alexander.ivchenko@intel.com>
18044 * tree-chkp.c (chkp_get_hard_register_var_fake_base_address):
18046 (chkp_get_hard_register_fake_addr_expr): Ditto.
18047 (chkp_build_addr_expr): Add check for hard reg case.
18048 (chkp_parse_array_and_component_ref): Ditto.
18049 (chkp_find_bounds_1): Ditto.
18050 (chkp_process_stmt): Don't generate bounds store for
18053 2017-06-08 Jan Hubicka <hubicka@ucw.cz>
18055 * predict.c (maybe_hot_bb_p): Do not check profile status.
18056 (maybe_hot_edge_p): Likewise.
18057 (probably_never_executed): Check for zero counts even if profile
18059 (unlikely_executed_edge_p): New function.
18060 (unlikely_executed_stmt_p): New function.
18061 (unlikely_executed_bb_p): New function.
18062 (set_even_probabilities): Use unlikely predicates.
18063 (combine_predictions_for_bb): Likewise.
18064 (predict_paths_for_bb): Likewise.
18065 (predict_paths_leading_to_edge): Likewise.
18066 (determine_unlikely_bbs): New function.
18067 (estimate_bb_frequencies): Use it.
18068 (compute_function_frequency): Use zero counts even if profile is
18070 * profile-count.h: Fix typo.
18072 2017-08-08 Julia Koval <julia.koval@intel.com>
18074 * config/i386/avx512bwintrin.h (_mm512_mask_cvtepi16_storeu_epi8,
18075 _mm512_mask_cvtsepi16_storeu_epi8,
18076 _mm512_mask_cvtusepi16_storeu_epi8): New intrinsics.
18077 * config/i386/avx512vlbwintrin.h (_mm256_mask_cvtepi16_storeu_epi8,
18078 _mm_mask_cvtsepi16_storeu_epi8, _mm256_mask_cvtsepi16_storeu_epi8,
18079 _mm_mask_cvtusepi16_storeu_epi8, _mm256_mask_cvtusepi16_storeu_epi8,
18080 _mm_mask_cvtepi16_storeu_epi8): New intrinsics.
18081 * config/i386/i386-builtin-types.def (PV8Q, V8QI): New pointer type.
18082 (VOID_FTYPE_PV32QI_V32HI_USI, VOID_FTYPE_PV8QI_V8HI_UQI,
18083 VOID_FTYPE_PV16QI_V16HI_UHI): New function types.
18084 * config/i386/i386-builtin.def (__builtin_ia32_pmovwb128mem_mask,
18085 __builtin_ia32_pmovwb256mem_mask, __builtin_ia32_pmovswb128mem_mask,
18086 __builtin_ia32_pmovswb256mem_mask, __builtin_ia32_pmovuswb128mem_mask,
18087 __builtin_ia32_pmovuswb256mem_mask,
18088 __builtin_ia32_pmovuswb512mem_mask, __builtin_ia32_pmovswb512mem_mask)
18089 __builtin_ia32_pmovwb512mem_mask): New builtins.
18091 2017-08-08 Julia Koval <julia.koval@intel.com>
18093 PR target/73350,80862
18094 * config/i386/subst.md (round): Fix round pattern.
18095 * config/i386/i386.c (ix86_erase_embedded_rounding):
18096 Fix erasing rounding for the fixed pattern.
18098 2017-06-08 Jan Hubicka <hubicka@ucw.cz>
18100 * cfgbuild.c (find_many_sub_basic_blocks): Fix thinko.
18102 2017-06-08 Martin Liska <mliska@suse.cz>
18104 PR gcov-profile/80911
18105 * gcov.c (block_info::block_info): New constructor.
18107 2017-06-07 Carl Love <cel@us.ibm.com>
18109 * config/rs6000/rs6000-c: The return type of the following
18110 built-in functions was implemented as int not long long. Fix sign
18111 of return value for the unsigned version of vec_mulo and vec_mule.
18112 vector unsigned long long vec_bperm (vector unsigned long long,
18113 vector unsigned char)
18114 vector signed long long vec_mule (vector signed int,
18116 vector unsigned long long vec_mule (vector unsigned int,
18117 vector unsigned int)
18118 vector signed long long vec_mulo (vector signed int,
18120 vector unsigned long long vec_mulo (vector unsigned int,
18121 vector unsigned int)
18122 * doc/extend.texi: Fix the documentation for the built-in
18125 2017-06-07 Carl Love <cel@us.ibm.com>
18128 * config/rs6000/altivec.md (double<mode>2): Fix the implementation of
18131 2017-06-07 Carl Love <cel@us.ibm.com>
18133 * config/rs6000/altivec.md: Fix argument swizzle in vec_doublel
18134 support, Generate doublehv for signed int/float for BE case only.
18136 2017-06-07 Alexander Monakov <amonakov@ispras.ru>
18138 * doc/invoke.texi (mcx16): Rewrite.
18140 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18142 * config/rs6000/predicates.md (rs6000_nonimmediate_operand): Delete.
18143 * config/rs6000/rs6000.md (*movsi_internal1, movsi_from_sf,
18144 *mov<mode>_softfloat, and an anonymous splitter): Use
18145 nonimmediate_operand instead of rs6000_nonimmediate_operand.
18147 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18149 * config/rs6000/darwin.h (REGISTER_NAMES): Delete the SPE_ACC and
18151 * config/rs6000/rs6000.c (rs6000_reg_names, alt_reg_names): Ditto.
18152 (enum rs6000_reg_type): Delete SPE_ACC_TYPE and SPEFSCR_REG_TYPE.
18153 (rs6000_debug_reg_global): Adjust.
18154 (rs6000_init_hard_regno_mode_ok): Adjust.
18155 (rs6000_dbx_register_number): Adjust.
18156 * config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Change to 115.
18157 (FIXED_REGISTERS, CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS):
18158 Remove SPE_ACC and SPEFSCR.
18159 (REG_ALLOC_ORDER): Ditto.
18160 (FRAME_POINTER_REGNUM): Change to 111.
18161 (enum reg_class): Remove the SPE_ACC and SPEFSCR registers.
18162 (REG_CLASS_NAMES): Ditto.
18163 (REG_CLASS_CONTENTS): Delete the SPE_ACC and SPEFSCR registers.
18164 (REGISTER_NAMES): Ditto.
18165 (ADDITIONAL_REG_NAMES): Ditto.
18166 (rs6000_reg_names): Ditto.
18167 * config/rs6000/rs6000.md: Renumber some register number
18170 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18172 * config/rs6000/darwin.h (REGISTER_NAMES): Delete the SPE high
18174 * config/rs6000/rs6000.c (rs6000_reg_names, alt_reg_names): Ditto.
18175 * config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Change from 149
18177 (DWARF_REG_TO_UNWIND_COLUMN): Do not define.
18178 (FIXED_REGISTERS, CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS):
18179 Delete the SPE high registers.
18180 (REG_ALLOC_ORDER): Ditto.
18181 (enum reg_class): Remove SPE_HIGH_REGS.
18182 (REG_CLASS_NAMES): Ditto.
18183 (REG_CLASS_CONTENTS): Delete the SPE high registers.
18184 (REGISTER_NAMES): Ditto.
18185 (rs6000_reg_names): Ditto.
18186 * doc/tm.texi.in: Remove SPE as example.
18187 * doc/tm.texi: Regenerate.
18189 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18191 * config/rs6000/8540.md (ppc8540_brinc): Delete.
18192 * config/rs6000/e500mc.md (e500mc_brinc): Delete.
18193 * config/rs6000/e500mc64.md (e500mc64_brinc): Delete.
18194 * config/rs6000/rs6000.md (type): Remove "brinc".
18196 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18198 * config.gcc (powerpc*-*-*): Don't add spe.h to extra_headers.
18199 (powerpc*-linux*spe*): Use ${cpu_type} instead of rs6000.
18200 * config/rs6000/linuxspe.h: Delete file.
18201 * config/rs6000/rs6000.md: Don't include spe.md.
18202 * config/rs6000/spe.h: Delete file.
18203 * config/rs6000/spe.md: Delete file.
18204 * config/rs6000/t-rs6000: Remove spe.md.
18206 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18208 * config/rs6000/predicates.md (reg_or_mem_operand): Reformat.
18209 (reg_or_none500mem_operand): Delete.
18210 * config/rs6000/rs6000.md (extendsfdf2): Use reg_or_mem_operand
18211 instead of reg_or_none500mem_operand.
18213 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18215 * config/rs6000/rs6000.c (rs6000_option_override_internal): Delete
18216 handling of SPE flags.
18217 * config/rs6000/rs6000.opt (-mspe, -mspe=no, -mspe=yes): Delete.
18219 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18221 * config/rs6000/rs6000-common.c (rs6000_handle_option): Remove
18223 * config/rs6000/paired.md (paired_negv2sf2): Rename to negv2sf2.
18224 (paired_absv2sf2, paired_addv2sf3, paired_subv2sf3, paired_mulv2sf3,
18225 paired_divv2sf3): Similar.
18226 * config/rs6000/predicates.md: Replace TARGET_SPE, TARGET_SPE_ABI,
18227 SPE_VECTOR_MODE and SPE_HIGH_REGNO_P by 0; simplify.
18228 * config/rs6000/rs6000-builtin.def: Delete RS6000_BUILTIN_E and
18230 Delete BU_SPE_1, BU_SPE_2, BU_SPE_3, BU_SPE_E, BU_SPE_P, and BU_SPE_X.
18231 Rename the paired_* instruction patterns.
18232 * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Do not
18234 * config/rs6000/rs6000-protos.h (invalid_e500_subreg): Delete.
18235 * config/rs6000/rs6000.c: Delete RS6000_BUILTIN_E and RS6000_BUILTIN_S.
18236 (struct rs6000_stack): Delete fields spe_gp_save_offset, spe_gp_size,
18237 spe_padding_size, and spe_64bit_regs_used. Replace TARGET_SPE and
18238 TARGET_SPE_ABI with 0, simplify. Replace SPE_VECTOR_MODE with
18239 PAIRED_VECTOR_MODE.
18240 (struct machine_function): Delete field spe_insn_chain_scanned_p.
18241 (spe_func_has_64bit_regs_p): Delete.
18242 (spe_expand_predicate_builtin): Delete.
18243 (spe_expand_evsel_builtin): Delete.
18244 (TARGET_DWARF_REGISTER_SPAN): Do not define.
18245 (TARGET_MEMBER_TYPE_FORCES_BLK): Do not define.
18246 (invalid_e500_subreg): Delete.
18247 (rs6000_legitimize_address): Always force_reg op2 as well, for
18248 paired single memory accesses.
18249 (rs6000_member_type_forces_blk): Delete.
18250 (rs6000_spe_function_arg): Delete.
18251 (rs6000_expand_unop_builtin): Delete SPE handling.
18252 (rs6000_expand_binop_builtin): Ditto.
18253 (spe_expand_stv_builtin): Delete.
18254 (bdesc_2arg_spe): Delete.
18255 (spe_expand_builtin): Delete.
18256 (spe_expand_predicate_builtin): Delete.
18257 (spe_expand_evsel_builtin): Delete.
18258 (rs6000_invalid_builtin): Remove RS6000_BTM_SPE handling.
18259 (spe_init_builtins): Delete.
18260 (spe_func_has_64bit_regs_p): Delete.
18261 (savres_routine_name): Delete "info" parameter. Adjust callers.
18262 (rs6000_emit_stack_reset): Ditto.
18263 (rs6000_dwarf_register_span): Delete.
18264 * config/rs6000/rs6000.h (TARGET_SPE_ABI, TARGET_SPE,
18265 UNITS_PER_SPE_WORD, SPE_HIGH_REGNO_P, SPE_SIMD_REGNO_P,
18266 SPE_VECTOR_MODE, RS6000_BTM_SPE, RS6000_BUILTIN_E, RS6000_BUILTIN_S):
18268 * config/rs6000/rs6000.md (FIRST_SPE_HIGH_REGNO, LAST_SPE_HIGH_REGNO):
18270 * config/rs6000/rs6000.opt (-mabi=spe, -mabi=no-spe): Delete.
18271 * config/rs6000/spe.md: Delete every pattern that uses TARGET_SPE.
18272 * config/rs6000/vector.md (absv2sf2, negv2sf2, addv2sf3, subv2sf3,
18273 mulv2sf3, divv2sf3): Delete expanders.
18275 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18277 config/rs6000/rs6000.md (UNSPEC_MV_CR_GT): Delete.
18279 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18281 * config/rs6000/rs6000-protos.h (output_e500_flip_gt_bit): Delete.
18282 * config/rs6000/rs6000.c: Ditto.
18284 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18286 * config/rs6000/predicated.md (rs6000_cbranch_operator): Delete.
18287 * config/rs6000/rs6000.md: Replace rs6000_cbranch_operator by
18288 comparison_operator.
18290 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18292 * config/rs6000/rs6000.c: Remove everything related to -mfloat-gprs.
18293 * config/rs6000/rs6000.opt: Ditto.
18294 * config/rs6000/t-rtems: Ditto.
18296 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18298 * config/rs6000/predicates.md: Replace TARGET_E500_DOUBLE and
18299 TARGET_E500_SINGLE by 0, simplify.
18300 * config/rs6000/rs6000.c: Ditto.
18301 (rs6000_option_override_internal): Delete CHECK_E500_OPTIONS.
18302 (spe_build_register_parallel): Delete.
18303 * config/rs6000/rs6000.h: Delete TARGET_E500_SINGLE,
18304 TARGET_E500_DOUBLE, and CHECK_E500_OPTIONS.
18305 * config/rs6000/rs6000.md: Replace TARGET_E500_DOUBLE,
18306 TARGET_E500_SINGLE, and <E500_CONVERT> by 0, simplify.
18307 (E500_CONVERT): Delete.
18308 * config/rs6000/spe.md: Remove many patterns and all define_constants.
18310 2017-06-07 Segher Boessenkool <segher@kernel.crashing.org>
18312 * config/rs6000/darwin.md: Replace TARGET_FPRS by 1 and simplify.
18313 * config/rs6000/dfp.md: Ditto.
18314 (negdd2, *negdd2_fpr): Merge.
18315 (absdd2, *absdd2_fpr): Merge.
18316 (negtd2, *negtd2_fpr): Merge.
18317 (abstd2, *abstd2_fpr): Merge.
18318 * config/rs6000/e500.h: Delete file.
18319 * config/rs6000/predicates.md (rs6000_cbranch_operator): Replace
18320 TARGET_FPRS by 1 and simplify.
18321 * config/rs6000/rs6000-c.c: Ditto.
18322 * config/rs6000/rs6000.c: Ditto. Also replace TARGET_SF_SPE and
18323 TARGET_DF_SPE by 0.
18324 * config/rs6000/rs6000.h: Ditto. Delete TARGET_SF_SPE and
18326 * config/rs6000/rs6000.md: Ditto.
18327 (floatdidf2, *floatdidf2_fpr): Merge.
18328 (move_from_CR_gt_bit): Delete.
18329 * config/rs6000/spe.md: Replace TARGET_FPRS by 1 and simplify.
18330 (E500_CR_IOR_COMPARE): Delete.
18331 (All patterns that require !TARGET_FPRS): Delete.
18332 * config/rs6000/vsx.md: Replace TARGET_FPRS by 1 and simplify.
18334 2017-06-07 Bin Cheng <bin.cheng@arm.com>
18336 * passes.def (pass_iv_canon): Move before pass_loop_distribution.
18338 2017-06-07 Bin Cheng <bin.cheng@arm.com>
18340 * graphds.c (add_edge): Intitialize edge's attached data.
18341 (foll_in_subgraph, dfs_fst_edge, dfs_next_edge): New function
18342 pointer parameter. Call pointed function on each edge during
18343 graph traversing. Skip traversing the edge when the function
18345 (graphds_dfs, graphds_scc): Ditto.
18346 (for_each_edge): New parameter. Pass the new parameter to callback
18348 * graphds.h (skip_edge_callback): New function pointer type.
18349 (graphds_dfs, graphds_scc): New function pointer parameter.
18350 (graphds_edge_callback, for_each_edge): New parameter.
18352 2017-06-07 Bin Cheng <bin.cheng@arm.com>
18354 * tree-vect-data-refs.c (vect_mark_for_runtime_alias_test): Factor
18355 out code checking if runtime alias check is possible to below ...
18356 Call the new function.
18357 * tree-data-ref.c (runtime_alias_check_p): ... to new function.
18358 * tree-data-ref.h (runtime_alias_check_p): New decalaration.
18360 2017-06-07 Marek Polacek <polacek@redhat.com>
18363 * fold-const.c (extract_muldiv_1) <case MINUS_EXPR>: Add
18364 TYPE_OVERFLOW_WRAPS check.
18366 2017-06-07 Bin Cheng <bin.cheng@arm.com>
18368 * tree-vect-loop-manip.c (vect_do_peeling): Don't skip vector loop
18369 if versioning is required.
18370 * tree-vect-loop.c (vect_analyze_loop_2): Merge niter check for loop
18371 peeling with the check for versioning.
18373 2017-06-07 Bin Cheng <bin.cheng@arm.com>
18375 * tree-vectorizer.h (vect_build_loop_niters): New parameter.
18376 * tree-vect-loop-manip.c (vect_build_loop_niters): New parameter.
18377 Set true to new parameter if new ssa variable is defined.
18378 (vect_gen_vector_loop_niters): Refactor. Set range information
18379 for the new vector loop bound variable.
18380 (vect_do_peeling): Ditto.
18382 2017-06-07 Bin Cheng <bin.cheng@arm.com>
18384 * tree-affine.c (ssa.h): Include header file.
18385 (tree_to_aff_combination): Handle (T1)(X - CST) when inner type
18386 has wrapping overflow behavior.
18388 2017-06-07 Bin Cheng <bin.cheng@arm.com>
18390 * tree-affine.c (tree_to_aff_combination): Handle (T1)(X + X).
18392 2017-06-07 Bin Cheng <bin.cheng@arm.com>
18394 (aff_combination_expand): Move (T1)(X *+- CST) simplification to ...
18395 (tree_to_aff_combination): ... here.
18397 2017-06-07 Bin Cheng <bin.cheng@arm.com>
18399 * tree-ssa-loop-ivopts.c (ivopts_estimate_reg_pressure): New
18400 reg_pressure model function.
18401 (ivopts_global_cost_for_size): Delete.
18402 (determine_set_costs, iv_ca_recount_cost): Call new model function
18403 ivopts_estimate_reg_pressure.
18405 2017-06-07 Tamar Christina <tamar.christina@arm.com>
18407 * config/aarch64/aarch64.c (aarch64_rtx_costs): Make sdiv more
18408 expensive than udiv. Remove floating point cases from mod.
18410 2017-06-07 Tamar Christina <tamar.christina@arm.com>
18412 * config/arm/aarch-cost-tables.h (cortexa53_extra_cost):
18413 Increase idiv cost.
18415 2017-06-07 Tamar Christina <tamar.christina@arm.com>
18417 * config/aarch64/aarch64.md
18418 (copysignsf3): Fix mask generation.
18420 2017-06-07 Jakub Jelinek <jakub@redhat.com>
18422 * dumpfile.h (enum tree_dump_index): Rename TDI_generic to
18424 (class dump_manager): Add register_dumps method.
18425 * dumpfile.c: Include langhooks.h.
18426 (dump_files): Use 0 instead of 3/4/5 for TDI_{original,gimple,nested}.
18427 (FIRST_AUTO_NUMBERED_DUMP): Decrease to 1.
18428 (FIRST_ME_AUTO_NUMBERED_DUMP): Define.
18429 (dump_manager::dump_register): Start with 512 entries instead of 32.
18430 (dump_manager::register_dumps): New method.
18431 * toplev.c (general_init): Instead of invoking register_dumps
18432 langhook, invoke register_dumps method on the dump manager.
18433 * gimplify.c (gimplify_function_tree): Use TDI_gimple instead of
18436 2017-06-07 Richard Sandiford <richard.sandiford@linaro.org>
18438 * doc/md.texi: Clarify the restrictions on a define_insn condition.
18439 Say that # requires an associated define_split to exist, and that
18440 the define_split must be suitable for use after register allocation.
18442 2017-06-06 Jan Hubicka <hubicka@ucw.cz>
18444 * cfgbuild.c (find_bb_boundaries): Initialize profile of split blocks.
18445 (compute_outgoing_frequencies): Also initialize zero counts.
18446 (find_many_sub_basic_blocks): Do not produce uninitialized profile
18447 around loops; preserve more of profile when nothing changes.
18449 2017-06-06 Jim Wilson <jim.wilson@linaro.org>
18451 * config/aarch64/aarch64-cost-tables.h (qdf24xx_extra_costs): Move to
18453 * config/arm/aarch-cost-tables.h (qdf24xx_extra_costs): From here.
18454 * config/arm/arm-cpu-cdata.h: Regenerate.
18455 * config/arm/arm-cpu-data.h, config/arm/arm-cpu.h: Likewise.
18456 * config/arm/arm-tables.opt, config/arm/arm-tune.md: Likewise.
18457 * config/arm/arm-cpus.in: Delete falkor and qdf24xx entries.
18458 * config/arm/arm.c (arm_qdf24xx_tune): Delete.
18459 * config/arm/bpabi.h (BE8_LINK_SPEC): Delete falkor and qdf24xx
18461 * config/arm/t-aprofile (MULTILIB_MATCHES): Delete falkor and qdf24xx
18463 * config/arm/t-rmprofile: Likewise.
18464 * doc/invoke.texi (ARM Options): Drop falkor and qdf24xx support.
18466 2017-06-06 David S. Miller <davem@davemloft.net>
18469 * config/sparc/sparc.c (sparc_expand_prologue): Emit frame
18470 blockage if function uses alloca.
18472 2017-06-06 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
18474 * tree-ssa-loop-prefetch.c (struct mem_ref_group, struct mem_ref):
18475 New "uid" fields to hold pretty-print IDs of group and ref.
18476 Memory references are now identified as <group_id>:<ref_id>
18477 instead of using [random] addresses.
18478 (dump_mem_details): Simplify, no functional change.
18479 (dump_mem_ref): Simplify and make output more concise.
18480 Replace couple of fprintf's throughout code with calls to dump_mem_ref.
18481 (find_or_create_group): Initialize group uid.
18482 (record_ref): Initialize ref uid. Improve debug output.
18483 (prune_group_by_reuse, should_issue_prefetch_p,)
18484 (should_issue_prefetch_p, schedule_prefetches, issue_prefetch_ref,)
18485 (mark_nontemporal_store, determine_loop_nest_reuse):
18486 Improve debug output.
18488 2017-06-06 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
18490 * dbgcnt.def (prefetch): New debug counter.
18491 * tree-ssa-loop-prefetch.c (dbgcnt.h): New include.
18492 (schedule_prefetches): Stop issueing prefetches if debug counter
18495 2017-06-06 Tom de Vries <tom@codesourcery.com>
18497 * doc/sourcebuild.texi (Testsuites, C Language Testsuites,
18498 gcc.c-torture/compile): Remove mention of NO_LABEL_VALUES in fixme.
18500 2017-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18502 * config/aarch64/atomics.md (atomic_compare_and_swap<mode> expander):
18503 Use aarch64_reg_or_zero predicate for operand 4.
18504 (aarch64_compare_and_swap<mode> define_insn_and_split):
18505 Use aarch64_reg_or_zero predicate for operand 3. Add 'Z' constraint.
18506 (aarch64_store_exclusive<mode>): Likewise for operand 2.
18508 2017-06-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
18510 * config/arm/arm.c (arm_compute_save_reg_mask): Rename into ...
18511 (arm_compute_save_core_reg_mask): This.
18512 (thumb1_compute_save_reg_mask): Rename into ...
18513 (thumb1_compute_save_core_reg_mask): This.
18514 (arm_compute_save_reg0_reg12_mask): Adapt comment.
18515 (arm_compute_frame_layout): Likewise.
18517 2017-06-06 Richard Biener <rguenther@suse.de>
18519 PR tree-optimization/80974
18520 * tree-ssa-sccvn.c (set_ssa_val_to): Do not change but only
18521 keep or clear leaders SSA info.
18523 2017-06-06 Tom de Vries <tom@codesourcery.com>
18525 * config/nvptx/nvptx.c (split_mode_p): New function.
18526 (nvptx_declare_function_name, nvptx_print_operand): Use split_mode_p.
18528 2017-06-06 Tom de Vries <tom@codesourcery.com>
18530 * config/nvptx/nvptx.c (nvptx_print_operand): Use maybe_split_mode.
18532 2017-06-06 Jan Hubicka <hubicka@ucw.cz>
18535 * tree-cfg.c (execute_fixup_cfg): Fix condition on when to rescale
18538 2017-06-06 Jan Hubicka <hubicka@ucw.cz>
18540 * shrink-wrap.c (handle_simple_exit): Update profile.
18541 (try_shrink_wrapping): Upate profile.
18543 2017-06-06 Jan Hubicka <hubicka@ucw.cz>
18545 * predict.c (tree_estimate_probability_bb): Add LOCAL_ONLY.
18546 (tree_guess_outgoing_edge_probabilities): New.
18547 * predict.h (tree_guess_outgoing_edge_probabilities): Declare.
18548 * tree-cfg.c (gimple_find_sub_bbs): Propagate profile.
18550 2017-06-06 Jan Hubicka <hubicka@ucw.cz>
18552 * ipa-split.c (split_function): Initialize return bb profile.
18554 2017-06-06 Jan Hubicka <hubicka@ucw.cz>
18556 * profile.c (compute_branch_probabilities): Also initialize
18557 EXIT_BLOCK profile.
18559 2017-06-06 Richard Biener <rguenther@suse.de>
18561 PR tree-optimization/80928
18562 * tree-vect-loop.c (vect_update_vf_for_slp): Amend dumps.
18563 (vect_analyze_loop_operations): Properly guard analysis for
18565 (vect_transform_loop): Likewise.
18566 (vect_analyze_loop_2): Also reset SLP type on PHIs.
18567 (vect_model_induction_cost): Do not cost for pure SLP.
18568 (vectorizable_induction): Pass in SLP node, implement SLP vectorization
18569 of induction in inner loop vectorization.
18570 * tree-vect-slp.c (vect_create_new_slp_node): Handle PHIs.
18571 (vect_get_and_check_slp_defs): Handle vect_induction_def.
18572 (vect_build_slp_tree): Likewise. Handle PHIs as terminating the
18574 (vect_analyze_slp_cost_1): Cost induction.
18575 (vect_detect_hybrid_slp_stmts): Handle PHIs.
18576 (vect_get_slp_vect_defs): Likewise.
18577 * tree-vect-stmts.c (vect_analyze_stmt): Handle induction.
18578 (vect_transform_stmt): Handle SLP reductions.
18579 * tree-vectorizer.h (vectorizable_induction): Adjust.
18581 2017-06-05 Michael Meissner <meissner@linux.vnet.ibm.com>
18583 * config/rs6000/rs6000.c (make_resolver_func): Update
18584 init_lowered_empty_function call.
18586 2017-06-05 Bernd Edlinger <bernd.edlinger@hotmail.de>
18588 * doc/invoke.texi: Document the -fprofile-abs-path option.
18589 * common.opt (fprofile-abs-path): New option.
18590 * gcov-io.h (gcov_write_filename): Declare.
18591 * gcov-io.c (gcov_write_filename): New function.
18592 * coverage.c (coverage_begin_function): Use gcov_write_filename.
18593 * profile.c (output_location): Likewise.
18595 2017-06-05 Jan Hubicka <hubicka@ucw.cz>
18597 * shring-wrap.c: Revert accidental commit.
18599 2017-06-05 Volker Reichelt <v.reichelt@netcologne.de>
18601 * doc/invoke.texi (-Wduplicated-branches): Add to warning list.
18603 2017-06-05 Jan Hubicka <hubicka@ucw.cz>
18605 * cfgexpand.c (expand_gimple_tailcall): Initialize profile of
18607 * ipa-inline.c (want_inline_self_recursive_call_p): Watch for missing
18608 profile in callgraph edge.
18609 * profile-count.h (apply_probability): If THIS is 0, then result is 0
18610 (apply_scale): Likewise.
18611 * tree-inline.c (copy_bb, copy_edges_for_bb, copy_cfg_body):
18612 Also scale profile when inlining function with zero profile.
18613 (initialize_cfun): Update exit block profile even when it is zero.
18614 * tree-ssa-threadupdate.c (clear_counts_path): Handle correctly case
18615 when profile is read.
18617 2017-06-05 Michael Meissner <meissner@linux.vnet.ibm.com>
18619 * config/rs6000/rs6000.c (toplevel): Include attribs.h.
18620 (CLONE_*): New constants to define the processors we can generate
18621 code for with the target_clone attribute.
18622 (rs6000_clone_map): New array to identify which clone processors
18623 the current program is running on.
18624 (TARGET_COMPARE_VERSION_PRIORITY): Define to enable the
18625 target_clone attribute.
18626 (TARGET_GENERATE_VERSION_DISPATCHER_BODY): Likewise.
18627 (TARGET_GET_FUNCTION_VERSIONS_DISPATCHER): Likewise.
18628 (TARGET_OPTION_FUNCTION_VERSIONS): Likewise.
18629 (cpu_expand_builtin): Add support for target_clone attribute.
18630 (rs6000_valid_attribute_p): Allow "default" attribute.
18631 (get_decl_name): New debug function to simplify printing the
18632 current function name in debugging statements.
18633 (rs6000_clone_priority): New functions to support the target_clone
18634 attribute, and be able to generate code to switch between ISA 2.05
18635 through ISA 3.0 (power6 through power9).
18636 (rs6000_compare_version_priority): Likewise.
18637 (rs6000_get_function_versions_dispatcher): Likewise.
18638 (make_resolver_func): Likewise.
18639 (add_condition_to_bb): Likewise.
18640 (dispatch_function_versions): Likewise.
18641 (rs6000_generate_version_dispatcher_body): Likewise.
18642 (rs6000_can_inline_p): Call get_decl_name for debugging usage.
18643 (fusion_gpr_load_p): Fix a spacing issue.
18644 * doc/extend.texi (Common Function Attributes): Document that the
18645 PowerPC supports the target_clone attribute.
18647 2017-06-05 Thomas Preud'homme <thomas.preudhomme@arm.com>
18649 * config/arm/arm.h: explain F symbol found in description of ARM
18650 register allocation in its legend.
18652 2017-06-05 Jan Hubicka <hubicka@ucw.cz>
18654 * config/mips/frame-header-opt.c: Include profile-count.h.
18655 * config/riscv/riscv.c: Include profile-count.h
18657 2017-06-05 Jan Hubicka <hubicka@ucw.cz>
18659 * tree-ssa-loop-im.c (execute_sm_if_changed): Add FLAG_BBS parameter;
18661 (sm_set_flag_if_changed): Add bbs field.
18662 (execute_sm_if_changed_flag_set): Pass BBS.
18663 (execute_sm): Update.
18665 2017-06-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18667 * config/aarch64/aarch64-simd.md (aarch64_store_lane0<mode>):
18670 2017-06-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18672 * config/aarch64/aarch64.md (sub<mode>3_compare1_imm): New define_insn.
18673 (peephole2): New peephole2 to emit the above.
18674 * config/aarch64/predicates.md (aarch64_sub_immediate): New predicate.
18676 2017-06-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18678 * config/aarch64/aarch64.c (define_peephole2 above
18679 *sub_<shift>_<mode>): New peephole.
18681 2017-05-23 Jan Hubicka <hubicka@ucw.cz>
18683 * config/i386/i386.c (make_resolver_func): Update.
18684 * Makefile.in: Add profile-count.h and profile-count.o
18685 * auto-profile.c (afdo_indirect_call): Update to new API.
18686 (afdo_set_bb_count): Update.
18687 (afdo_propagate_edge): Update.
18688 (afdo_propagate_circuit): Update.
18689 (afdo_calculate_branch_prob): Update.
18690 (afdo_annotate_cfg): Update.
18691 * basic-block.h: Include profile-count.h
18692 (struct edge_def): Turn count to profile_count.
18693 (struct basic_block_def): Likewie.
18694 (REG_BR_PROB_BASE): Move to profile-count.h
18695 (RDIV): Move to profile-count.h
18696 * bb-reorder.c (max_entry_count): Turn to profile_count.
18697 (find_traces): Update.
18698 (rotate_loop):Update.
18699 (connect_traces):Update.
18700 (sanitize_hot_paths):Update.
18701 * bt-load.c (migrate_btr_defs): Update.
18702 * cfg.c (RDIV): Remove.
18703 (init_flow): Use alloc_block.
18704 (alloc_block): Uninitialize count.
18705 (unchecked_make_edge): Uninitialize count.
18706 (check_bb_profile): Update.
18707 (dump_edge_info): Update.
18708 (dump_bb_info): Update.
18709 (update_bb_profile_for_threading): Update.
18710 (scale_bbs_frequencies_int): Update.
18711 (scale_bbs_frequencies_gcov_type): Update.
18712 (scale_bbs_frequencies_profile_count): New.
18713 * cfg.h (update_bb_profile_for_threading): Update.
18714 (scale_bbs_frequencies_profile_count): Declare.
18715 * cfgbuild.c (compute_outgoing_frequencies): Update.
18716 (find_many_sub_basic_blocks): Update.
18717 * cfgcleanup.c (try_forward_edges): Update.
18718 (try_crossjump_to_edge): Update.
18719 * cfgexpand.c (expand_gimple_tailcall): Update.
18720 (construct_exit_block): Update.
18721 * cfghooks.c (verify_flow_info): Update.
18722 (dump_bb_for_graph): Update.
18723 (split_edge): Update.
18724 (make_forwarder_block): Update.
18725 (duplicate_block): Update.
18726 (account_profile_record): Update.
18727 * cfgloop.c (find_subloop_latch_edge_by_profile): Update.
18728 (get_estimated_loop_iterations): Update.
18729 * cfgloopanal.c (expected_loop_iterations_unbounded): Update.
18730 (single_likely_exit): Update.
18731 * cfgloopmanip.c (scale_loop_profile): Update.
18733 (set_zero_probability): Update.
18734 (lv_adjust_loop_entry_edge): Update.
18735 * cfgrtl.c (force_nonfallthru_and_redirect): Update.
18736 (purge_dead_edges): Update.
18737 (rtl_account_profile_record): Update.
18738 * cgraph.c (cgraph_node::create): Uninitialize count.
18739 (symbol_table::create_edge): Uninitialize count.
18740 (cgraph_update_edges_for_call_stmt_node): Update.
18741 (cgraph_edge::dump_edge_flags): Update.
18742 (cgraph_node::dump): Update.
18743 (cgraph_edge::maybe_hot_p): Update.
18744 * cgraph.h: Include profile-count.h
18745 (create_clone), create_edge, create_indirect_edge): Update.
18746 (cgraph_node): Turn count to profile_count.
18747 (cgraph_edge0: Likewise.
18748 (make_speculative, clone): Update.
18749 (create_edge): Update.
18750 (init_lowered_empty_function): Update.
18751 * cgraphclones.c (cgraph_edge::clone): Update.
18752 (duplicate_thunk_for_node): Update.
18753 (cgraph_node::create_clone): Update.
18754 * cgraphunit.c (cgraph_node::analyze): Update.
18755 (cgraph_node::expand_thunk): Update.
18756 * final.c (dump_basic_block_info): Update.
18757 * gimple-streamer-in.c (input_bb): Update.
18758 * gimple-streamer-out.c (output_bb): Update.
18759 * graphite.c (print_global_statistics): Update.
18760 (print_graphite_scop_statistics): Update.
18761 * hsa-brig.c: Include basic-block.h.
18762 * hsa-dump.c: Include basic-block.h.
18763 * hsa-gen.c (T sum_slice): Update.
18764 (convert_switch_statements):Update.
18765 * hsa-regalloc.c: Include basic-block.h.
18766 * ipa-chkp.c (chkp_produce_thunks): Update.
18767 * ipa-cp.c (struct caller_statistics): Update.
18768 (init_caller_stats): Update.
18769 (gather_caller_stats): Update.
18770 (ipcp_cloning_candidate_p): Update.
18771 (good_cloning_opportunity_p): Update.
18772 (get_info_about_necessary_edges): Update.
18773 (dump_profile_updates): Update.
18774 (update_profiling_info): Update.
18775 (update_specialized_profile): Update.
18776 (perhaps_add_new_callers): Update.
18777 (decide_about_value): Update.
18778 (ipa_cp_c_finalize): Update.
18779 * ipa-devirt.c (struct odr_type_warn_count): Update.
18780 (struct decl_warn_count): Update.
18781 (struct final_warning_record): Update.
18782 (possible_polymorphic_call_targets): Update.
18783 (ipa_devirt): Update.
18784 * ipa-fnsummary.c (redirect_to_unreachable): Update.
18785 * ipa-icf.c (sem_function::merge): Update.
18786 * ipa-inline-analysis.c (do_estimate_edge_time): Update.
18787 * ipa-inline.c (compute_uninlined_call_time): Update.
18788 (compute_inlined_call_time): Update.
18789 (want_inline_small_function_p): Update.
18790 (want_inline_self_recursive_call_p): Update.
18791 (edge_badness): Update.
18792 (lookup_recursive_calls): Update.
18793 (recursive_inlining): Update.
18794 (inline_small_functions): Update.
18795 (dump_overall_stats): Update.
18796 (dump_inline_stats): Update.
18797 * ipa-profile.c (ipa_profile_generate_summary): Update.
18798 (ipa_propagate_frequency): Update.
18799 (ipa_profile): Update.
18800 * ipa-prop.c (ipa_make_edge_direct_to_target): Update.
18801 * ipa-utils.c (ipa_merge_profiles): Update.
18802 * loop-doloop.c (doloop_modify): Update.
18803 * loop-unroll.c (report_unroll): Update.
18804 (unroll_loop_runtime_iterations): Update.
18805 * lto-cgraph.c (lto_output_edge): Update.
18806 (lto_output_node): Update.
18807 (input_node): Update.
18808 (input_edge): Update.
18809 (merge_profile_summaries): Update.
18810 * lto-streamer-in.c (input_cfg): Update.
18811 * lto-streamer-out.c (output_cfg): Update.
18812 * mcf.c (create_fixup_graph): Update.
18813 (adjust_cfg_counts): Update.
18814 (sum_edge_counts): Update.
18815 * modulo-sched.c (sms_schedule): Update.
18816 * postreload-gcse.c (eliminate_partially_redundant_load): Update.
18817 * predict.c (maybe_hot_count_p): Update.
18818 (probably_never_executed): Update.
18819 (dump_prediction): Update.
18820 (combine_predictions_for_bb): Update.
18821 (propagate_freq): Update.
18822 (handle_missing_profiles): Update.
18823 (counts_to_freqs): Update.
18824 (rebuild_frequencies): Update.
18825 (force_edge_cold): Update.
18826 * predict.h: Include profile-count.h
18827 (maybe_hot_count_p, counts_to_freqs): UPdate.
18828 * print-rtl-function.c: Do not include cfg.h
18829 * print-rtl.c: Include basic-block.h
18830 * profile-count.c: New file.
18831 * profile-count.h: New file.
18832 * profile.c (is_edge_inconsistent): Update.
18833 (correct_negative_edge_counts): Update.
18834 (is_inconsistent): Update.
18835 (set_bb_counts): Update.
18836 (read_profile_edge_counts): Update.
18837 (compute_frequency_overlap): Update.
18838 (compute_branch_probabilities): Update; Initialize and deinitialize
18840 (branch_prob): Update.
18841 * profile.h (bb_gcov_counts, edge_gcov_counts): New.
18842 (edge_gcov_count): New.
18843 (bb_gcov_count): New.
18844 * shrink-wrap.c (try_shrink_wrapping): Update.
18845 * tracer.c (better_p): Update.
18846 * trans-mem.c (expand_transaction): Update.
18847 (ipa_tm_insert_irr_call): Update.
18848 (ipa_tm_insert_gettmclone_call): Update.
18849 * tree-call-cdce.c: Update.
18850 * tree-cfg.c (gimple_duplicate_sese_region): Update.
18851 (gimple_duplicate_sese_tail): Update.
18852 (gimple_account_profile_record): Update.
18853 (execute_fixup_cfg): Update.
18854 * tree-inline.c (copy_bb): Update.
18855 (copy_edges_for_bb): Update.
18856 (initialize_cfun): Update.
18857 (freqs_to_counts): Update.
18858 (copy_cfg_body): Update.
18859 (expand_call_inline): Update.
18860 * tree-ssa-ifcombine.c (update_profile_after_ifcombine): Update.
18861 * tree-ssa-loop-ivcanon.c (unloop_loops): Update.
18862 (try_unroll_loop_completely): Update.
18863 (try_peel_loop): Update.
18864 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Update.
18865 * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Update.
18866 * tree-ssa-loop-split.c (connect_loops): Update.
18867 * tree-ssa-loop-unswitch.c (hoist_guard): Update.
18868 * tree-ssa-reassoc.c (branch_fixup): Update.
18869 * tree-ssa-tail-merge.c (replace_block_by): Update.
18870 * tree-ssa-threadupdate.c (create_block_for_threading): Update.
18871 (compute_path_counts): Update.
18872 (update_profile): Update.
18873 (recompute_probabilities): Update.
18874 (update_joiner_offpath_counts): Update.
18875 (estimated_freqs_path): Update.
18876 (freqs_to_counts_path): Update.
18877 (clear_counts_path): Update.
18878 (ssa_fix_duplicate_block_edges): Update.
18879 (duplicate_thread_path): Update.
18880 * tree-switch-conversion.c (case_bit_test_cmp): Update.
18881 (struct switch_conv_info): Update.
18882 * tree-tailcall.c (decrease_profile): Update.
18883 * tree-vect-loop-manip.c (slpeel_add_loop_guard): Update.
18884 * tree-vect-loop.c (scale_profile_for_vect_loop): Update.
18885 * value-prof.c (check_counter): Update.
18886 (gimple_divmod_fixed_value): Update.
18887 (gimple_mod_pow2): Update.
18888 (gimple_mod_subtract): Update.
18889 (gimple_ic_transform): Update.
18890 (gimple_stringop_fixed_value): Update.
18891 * value-prof.h (gimple_ic): Update.
18893 2017-06-02 Carl Love <cel@us.ibm.com>
18895 * config/rs6000/rs6000-c: Add support for built-in functions
18896 vector double vec_doublee (vector signed int);
18897 vector double vec_doublee (vector unsigned int);
18898 vector double vec_doublee (vector float);
18899 vector double vec_doubleh (vector signed int);
18900 vector double vec_doubleh (vector unsigned int);
18901 vector double vec_doubleh (vector float);
18902 vector double vec_doublel (vector signed int);
18903 vector double vec_doublel (vector unsigned int);
18904 vector double vec_doublel (vector float);
18905 vector double vec_doubleo (vector signed int);
18906 vector double vec_doubleo (vector unsigned int);
18907 vector double vec_doubleo (vector float);.
18908 * config/rs6000/rs6000-builtin.def: Add definitions for DOUBLEE,
18909 DOUBLEO, DOUBLEH, DOUBLEL, UNS_DOUBLEO, UNS_DOUBLEE, UNS_DOUBLEH,
18911 * config/rs6000/altivec.md: Add code generator for doublee<mode>2,
18912 unsdoubleev4si2, doubleo<mode>2, unsdoubleov4si2, doubleh<mode>2,
18913 unsdoublehv4si2, doublel<mode>2, unsdoublelv4si2, add mode attribute
18915 * config/rs6000/altivec.h: Add define for vec_doublee, vec_doubleo,
18916 vec_doublel, vec_doubleh.
18917 * doc/extend.texi: Update the built-in documentation file for the
18918 new built-in functions.
18920 2017-06-02 David Malcolm <dmalcolm@redhat.com>
18923 * ipa-inline-analysis.c (free_growth_caches): Set
18924 edge_removal_hook_holder to NULL after removing it.
18926 2017-06-02 Sudakshina Das <sudi.das@arm.com>
18928 * config/aarch64/aarch64.c (aarch64_select_cc_mode): Return CC_SWP for
18929 comparision with zero.
18931 2017-06-02 Will Schmidt <will_schmidt@vnet.ibm.com>
18932 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Add handling
18933 for early expansion of vec_min and vec_max builtins.
18934 (builtin_function_type): Add min/max unsigned variants to those
18935 identified as having unsigned arguments.
18937 2017-06-02 Olivier Hainque <hainque@adacore.com>
18939 * config/vx-common.h (DWARF_UNWIND_INFO): Switch #define to 1.
18941 2017-06-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18943 * config/aarch64/aarch64-simd.md (*aarch64_simd_vec_copy_lane<mode>):
18944 Use VALL_F16 iterator rather than VALL.
18946 2017-06-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18948 * config/aarch64/aarch64.c (aarch64_split_compare_and_swap):
18949 Emit CBNZ inside loop when doing a strong exchange and comparing
18950 against zero. Generate the CC flags after the loop.
18952 2017-06-02 David Edelsohn <dje.gcc@gmail.com>
18954 * dwarf2out.c (DWARF_INITIAL_LENGTH_SIZE_STR): New.
18955 (dl_section_ref): New.
18956 (dwarf2out_finish): Copy debug_line_section_label to dl_section_ref.
18957 On AIX, append an expression to subtract the size of the
18958 section length to dl_section_ref.
18960 2017-06-02 Will Schmidt <will_schmidt@vnet.ibm.com>
18962 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Add handling
18963 for early expansion of vector absolute builtins.
18965 2017-06-02 Richard Biener <rguenther@suse.de>
18967 * tree-vect-slp.c (vect_detect_hybrid_slp_2): Match up
18968 what we consider a relevant use stmt with vect_detect_hybrid_slp_stmts.
18970 2017-06-02 Richard Biener <rguenther@suse.de>
18972 PR tree-optimization/80948
18973 * tree-tailcall.c (find_tail_calls): Track stmts to move in
18974 stmt order as well.
18976 2017-06-02 Richard Biener <rguenther@suse.de>
18978 * tree-vect-loop.c (vect_analyze_loop_operations): Not relevant
18980 * tree-vect-stmts.c (process_use): Do not mark backedge defs
18981 for inductions as relevant.
18983 2017-06-02 Richard Biener <rguenther@suse.de>
18985 * tree-vect-loop.c (get_initial_def_for_induction): Inline into ...
18986 (vectorizable_induction): ... this. Remove dead code.
18988 2017-06-02 Eric Botcazou <ebotcazou@adacore.com>
18990 * builtins. (expand_builtin_alloca): Remove second parameter and
18991 infer its value from the first parameter instead.
18992 (expand_builtin) <BUILT_IN_ALLOCA>: Adjust call to above.
18994 2017-06-02 Jakub Jelinek <jakub@redhat.com>
18996 PR rtl-optimization/80903
18997 * loop-doloop.c (add_test): Unshare sequence.
18999 2017-06-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
19001 * doc/invoke.texi: Document the -Wsizeof-pointer-div warning.
19003 2017-06-01 Bernd Edlinger <bernd.edlinger@hotmail.de>
19005 * config/i386/i386.c (x86_64_ms_sysv_extra_clobbered_registers): Make
19007 (xlogue_layout::get_stack_space_used, xlogue_layout::s_instances,
19008 xlogue_layout::get_instance, logue_layout::xlogue_layout,
19009 sp_valid_at, fp_valid_at, choose_basereg): Formatting.
19010 (xlogue_layout::get_stub_rtx): Make static.
19011 (xlogue_layout::get_stub_name): Avoid const-cast, make static.
19012 (xlogue_layout::compute_stub_managed_regs): Rename to...
19013 (xlogue_layout::count_stub_managed_regs): ...this.
19014 (xlogue_layout::is_stub_managed_reg): New function.
19015 (xlogue_layout::m_stub_names): Rename to...
19016 (xlogue_layout::s_stub_names): ...this, make static.
19017 (xlogue_layout::STUB_INDEX_OFFSET, xlogue_layout::MIN_REGS,
19018 xlogue_layout::MAX_REGS, xlogue_layout::MAX_EXTRA_REGS,
19019 xlogue_layout::VARIANT_COUNT, xlogue_layout::STUB_NAME_MAX_LEN,
19020 xlogue_layout::s_stub_names): Instantiate statics.
19021 (stub_managed_regs): Remove.
19022 (ix86_save_reg): Use xlogue_layout::compute_stub_managed_regs.
19023 (disable_call_ms2sysv_xlogues): Rename to...
19024 (warn_once_call_ms2sysv_xlogues): ...this, and warn only once.
19025 (ix86_initial_elimination_offset, ix86_expand_call): Fix call_ms2sysv
19027 (ix86_static_chain): Make sure that ix86_static_chain_on_stack can't
19028 change after reload_completed.
19029 (ix86_can_use_return_insn_p): Use the ix86_frame data structure
19031 (ix86_expand_prologue): Likewise.
19032 (ix86_expand_epilogue): Likewise.
19033 (ix86_expand_split_stack_prologue): Likewise.
19034 (ix86_compute_frame_layout): Remove frame parameter ...
19035 (TARGET_COMPUTE_FRAME_LAYOUT): ... and export it as a target hook.
19036 (ix86_finalize_stack_realign_flags): Call ix86_compute_frame_layout
19038 (ix86_init_machine_status): Don't set use_fast_prologue_epilogue_nregs.
19039 (ix86_frame): Move from here ...
19040 * config/i386/i386.h (ix86_frame): ... to here.
19041 (machine_function): Remove use_fast_prologue_epilogue_nregs, cache the
19042 complete ix86_frame data structure instead. Remove some_ld_name.
19044 2017-06-01 Pierre-Marie de Rodat <derodat@adacore.com>
19046 * dwarf2out.c (dwarf2out_late_global_decl): Add locations for
19047 symbols that hold a DECL_VALUE_EXPR.
19049 2017-06-01 Martin Jambor <mjambor@suse.cz>
19051 PR tree-optimization/80898
19052 * tree-sra.c (process_subtree_disqualification): Removed.
19053 (disqualify_candidate): Do not acll
19054 process_subtree_disqualification.
19055 (subtree_mark_written_and_enqueue): New function.
19056 (propagate_all_subaccesses): Set grp_write of LHS subtree if the
19057 RHS has been disqualified and re-queue LHS if necessary. Apart
19058 from that, ignore disqualified RHS.
19060 2017-06-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
19062 * config/s390/s390.c (s390_emit_epilogue): Disable early return
19063 address fetch for z10 or later.
19065 2017-06-01 Claudiu Zissulescu <claziss@synopsys.com>
19067 * config/arc/arc.md (tst_movb): Add guard when splitting.
19069 2017-06-01 Claudiu Zissulescu <claziss@synopsys.com>
19071 * config/arc/arc.c (arc_can_eliminate): Test against
19072 arc_frame_pointer_needed.
19074 2017-06-01 Claudiu Zissulescu <claziss@synopsys.com>
19076 * config/arc/arc.c (arc_expand_prologue): Emit a special barrier
19077 to prevent store reordering.
19078 * config/arc/arc.md (UNSPEC_ARC_STKTIE): Define.
19079 (type): Add block type.
19080 (stack_tie): Define special instruction to be used in
19083 2017-06-01 Claudiu Zissulescu <claziss@synopsys.com>
19085 * config/arc/arc.md (commutative_binary_comparison): Remove 'I'
19086 constraint. It is not valid for the pattern.
19087 (noncommutative_binary_comparison): Likewise.
19089 2017-06-01 Claudiu Zissulescu <claziss@synopsys.com>
19091 * config/arc/simdext.md (movv2hi_insn): Change predicate to avoid
19094 2017-06-01 Claudiu Zissulescu <claziss@synopsys.com>
19096 * config/arc/arc.c (arc_conditional_register_usage): Allow r30 to
19097 be used by the reg-alloc.
19099 2017-06-01 Claudiu Zissulescu <claziss@synopsys.com>
19101 * config/arc/arc.md (mulsi3): Avoid use of hard registers before
19102 reg-alloc when having mul64 or mul32x16 instructions.
19103 (mulsidi3): Likewise.
19104 (umulsidi3): Likewise.
19105 (mulsi32x16): New pattern.
19106 (mulsi64): Likewise.
19107 (mulsidi64): Likewise.
19108 (umulsidi64): Likewise.
19109 (MUL32x16_REG): Define.
19110 (mul64_600): Use MUL32x16_REG.
19111 (mac64_600): Likewise.
19112 (umul64_600): Likewise.
19113 (umac64_600): Likewise.
19115 2017-06-01 Claudiu Zissulescu <claziss@synopsys.com>
19117 * config/arc/arc.md (mulsi3_700): Make it commutative.
19119 2017-06-01 Jose E. Marchesi <jose.marchesi@oracle.com>
19121 * config/sparc/sparc.md (*zero_extendsidi2_insn_sp64): Set insn
19123 (*sign_extendsidi2_insn): Likewise for movstosw.
19125 2017-06-01 Pierre-Marie de Rodat <derodat@adacore.com>
19127 * dwarf2out.c (get_discr_value): Call the get_debug_type hook on
19128 the type of the input discriminant value. Convert the
19129 discriminant value of signedness vary.
19131 2017-06-01 Volker Reichelt <v.reichelt@netcologne.de>
19133 * doc/invoke.texi (-Wcatch-value): Document new shortcut.
19134 Add to -Wall section.
19136 2017-06-01 Richard Biener <rguenther@suse.de>
19138 PR middle-end/66313
19139 * fold-const.c (fold_plusminus_mult_expr): If the factored
19140 factor may be zero use a wrapping type for the inner operation.
19141 * tree-tailcall.c (independent_of_stmt_p): Pass in to_move bitmap
19142 and handle moved defs.
19143 (process_assignment): Properly guard the unary op case. Return a
19144 tri-state indicating that moving the stmt before the call may allow
19145 to continue. Pass through to_move.
19146 (find_tail_calls): Handle moving unrelated defs before
19149 2017-05-31 Segher Boessenkool <segher@kernel.crashing.org>
19152 * config/rs6000/vector.md (*vector_uneq<mode>): Write the nor in the
19153 splitter result in the canonical way.
19155 2017-05-31 Uros Bizjak <ubizjak@gmail.com>
19157 * config/i386/i386.md (*zero_extendsidi2): Enable alternative (?r, *Yj)
19158 also for 32bit target. Update insn attributes.
19159 (zero-extendsidi2 splitter): Allow all registers for operand 1.
19161 2017-05-31 Sebastian Peryt <sebastian.peryt@intel.com>
19163 * config/i386/avx512fintrin.h (_mm_mask_max_sd)
19164 (_mm_maskz_max_sd, _mm_mask_max_ss, _mm_maskz_max_ss)
19165 (_mm_mask_min_sd, _mm_maskz_min_sd, _mm_mask_min_ss)
19166 (_mm_maskz_min_ss): New intrinsics.
19168 2017-05-31 Martin Liska <mliska@suse.cz>
19170 * tree-vect-loop.c (vect_create_epilog_for_reduction):
19171 Change comment style to one we normally use.
19172 (vectorizable_reduction): Likewise.
19173 (vectorizable_induction): Likewise.
19174 * tree-vect-stmts.c (vectorizable_mask_load_store): Likewise.
19175 (vectorizable_call): Likewise.
19176 (vectorizable_simd_clone_call): Likewise.
19177 (vectorizable_conversion): Likewise.
19178 (vectorizable_assignment): Likewise.
19179 (vectorizable_shift): Likewise.
19180 (vectorizable_operation): Likewise.
19181 (vectorizable_store): Likewise.
19182 (vectorizable_load): Likewise.
19183 * tree-vectorizer.h: Likewise.
19185 2017-05-31 Alexander Monakov <amonakov@ispras.ru>
19187 * passes.c (emergency_dump_function): New.
19188 * tree-pass.h (emergency_dump_function): Declare.
19189 * plugin.c (plugins_internal_error_function): Remove.
19190 * plugin.h (plugins_internal_error_function): Remove declaration.
19191 * toplev.c (internal_error_function): New static function. Use it...
19192 (general_init): ...here.
19194 2017-05-31 Graham Markall <graham.markall@embecosm.com>
19196 * config/arc/arc.c (arc_print_operand): Handle constant operands.
19197 (arc_rtx_costs): Add costs for new patterns.
19198 * config/arc/arc.md: Additional *add_n and *sub_n patterns.
19199 * config/arc/predicates.md: Add _1_2_3_operand predicate.
19201 2017-05-31 Richard Sandiford <richard.sandiford@linaro.org>
19203 * tree-ssa-strlen.c (get_next_strinfo): New function.
19204 (get_stridx_plus_constant): Use it.
19205 (zero_length_string): Likewise.
19206 (adjust_related_strinfos): Likewise.
19207 (adjust_last_stmt): Likewise.
19209 2017-05-31 Richard Biener <rguenther@suse.de>
19212 * config/i386/i386.c (ix86_expand_builtin): Remove assert
19213 for arg being an SSA name when expanding IX86_BUILTIN_BNDRET.
19215 2017-05-31 Richard Sandiford <richard.sandiford@linaro.org>
19217 * tree-vect-data-refs.c (vect_find_same_alignment_drs): Remove
19218 loop_vinfo argument and use of dependence distance vectors.
19219 Check instead whether the two references differ only in their
19220 initial value and assume that they have the same alignment if the
19221 difference is a multiple of the vector alignment.
19222 (vect_analyze_data_refs_alignment): Update call accordingly.
19224 2017-05-31 Martin Liska <mliska@suse.cz>
19227 * config/i386/cpuid.h: Fix typo in a comment in cpuid.h.
19229 2017-05-31 Bin Cheng <bin.cheng@arm.com>
19231 * tree-vect-loop-manip.c (create_intersect_range_checks_index)
19232 (create_intersect_range_checks): Move from ...
19233 * tree-data-ref.c (create_intersect_range_checks_index)
19234 (create_intersect_range_checks): ... to here.
19235 (create_runtime_alias_checks): New function factored from ...
19236 * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks): ...
19237 here. Call above function.
19238 * tree-data-ref.h (create_runtime_alias_checks): New function.
19240 2017-05-31 Bin Cheng <bin.cheng@arm.com>
19242 * tree-data-ref.c (prune_runtime_alias_test_list): Relax minimal
19243 segment length for dr_b and compute it in wide_int.
19245 2017-05-31 Richard Biener <rguenther@suse.de>
19247 PR tree-optimization/80906
19248 * graphite-isl-ast-to-gimple.c (copy_loop_close_phi_nodes): Get
19249 and pass through iv_map.
19250 (copy_bb_and_scalar_dependences): Adjust.
19251 (translate_pending_phi_nodes): Likewise.
19252 (copy_loop_close_phi_args): Handle code-generating IVs instead
19255 2017-05-30 David Malcolm <dmalcolm@redhat.com>
19257 * diagnostic-color.c (color_dict): Add "type-diff".
19258 (parse_gcc_colors): Update comment.
19259 * doc/invoke.texi (Diagnostic Message Formatting Options): Add
19260 -fdiagnostics-show-template-tree and -fno-elide-type.
19261 (GCC_COLORS): Add type-diff to example.
19263 (-fdiagnostics-show-template-tree): New.
19264 (-fno-elide-type): New.
19265 * pretty-print.c (pp_format): Pass quote and formatters[argno] to
19266 the pp_format_decoder callback. Call any m_format_postprocessor's
19268 (pretty_printer::pretty_printer): Initialize
19269 m_format_postprocessor.
19270 (pretty_printer::~pretty_printer): Delete any
19271 m_format_postprocessor.
19272 * pretty-print.h (printer_fn): Add bool and const char ** parameters.
19273 (class format_postprocessor): New class.
19274 (struct pretty_printer::format_decoder): Document the new parameters.
19275 (struct pretty_printer::m_format_postprocessor): New field.
19276 * tree-diagnostic.c (default_tree_printer): Update for new
19277 bool and const char ** params.
19278 * tree-diagnostic.h (default_tree_printer): Likewise.
19280 2017-05-30 Segher Boessenkool <segher@kernel.crashing.org>
19282 * config/rs6000/predicates.md (cc_reg_not_micro_cr0_operand): Delete.
19283 (lwa_operand): Delete rs6000_gen_cell_microcode test.
19284 * config/rs6000/rs6000.c (rs6000_option_override_internal): Delete
19285 rs6000_gen_cell_microcode code.
19286 (rs6000_final_prescan_insn): Delete.
19287 (rs6000_opt_vars): Delete the "gen-cell-microcode" and
19288 "warn-cell-microcode" entries.
19289 * config/rs6000/rs6000.h (FINAL_PRESCAN_INSN): Delete.
19290 * config/rs6000/rs6000.md: Delete rs6000_gen_cell_microcode tests
19291 throughout. Change cc_reg_not_micro_cr0_operand to
19292 cc_reg_not_cr0_operand throughout.
19293 (*extendhi<mode>2_noload): Delete.
19294 * config/rs6000/rs6000.opt (mgen-cell-microcode): Replace by stub.
19295 (mwarn-cell-microcode): Delete.
19296 * doc/invoke.texi (RS/6000 and PowerPC Options): Delete
19297 -mgen-cell-microcode and -mwarn-cell-microcode.
19299 2017-05-30 Uros Bizjak <ubizjak@gmail.com>
19302 * config/i386/constraints.md (Yd): New constraint.
19304 * config/i386/i386.md (*movti_internal): Add (?r, Ye)
19305 and (?Yd, r) alternatives. Update insn attributes.
19306 * config/i386/i386.md (*movti_internal): Add (?r, *Ye)
19307 and (?*Yd, r) alternatives. Update insn attributes.
19308 (double-mode inter-unit splitters): Add new GR<->XMM splitters.
19310 2017-05-30 Pierre-Marie de Rodat <derodat@adacore.com>
19312 * gimplify.c (gimplify_modify_expr): Don't create a
19313 DECL_DEBUG_EXPR link if *FROM_P does not belong to the current
19316 2017-05-30 Wilco Dijkstra <wdijkstr@arm.com>
19318 * config/arm/arm-builtins.c (arm_expand_builtin): Remove const.
19320 2017-05-30 Richard Biener <rguenther@suse.de>
19322 * tree-vectorizer.h (struct _stmt_vec_info): Add reduc_type
19323 and reduc_def fields.
19324 (STMT_VINFO_REDUC_TYPE): New define.
19325 (STMT_VINFO_REDUC_DEF): Likewise.
19326 (vect_force_simple_reduction): Adjust prototype.
19327 * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Adjust.
19328 (vect_is_simple_reduction): Remove check_reduction argument.
19329 (vect_force_simple_reduction): Adjust and set
19330 STMT_VINFO_REDUC_TYPE and STMT_VINFO_REDUC_DEF.
19331 (vectorizable_reduction): Do not re-do reduction analysis
19332 but use STMT_VINFO_REDUC_TYPE and STMT_VINFO_REDUC_DEF.
19333 * tree-parloops.c (gather_scalar_reductions): Adjust.
19335 2017-05-30 Richard Biener <rguenther@suse.de>
19337 PR middle-end/80901
19338 * cfgexpand.c (expand_gimple_cond): Match up loop fixup with
19341 2017-05-24 Robin Dapp <rdapp@linux.vnet.ibm.com>
19343 * tree-vect-data-refs.c (vect_get_peeling_costs_all_drs):
19344 Introduce unknown_misalignment parameter and remove vf.
19345 (vect_peeling_hash_get_lowest_cost):
19346 Pass unknown_misalignment parameter.
19347 (vect_enhance_data_refs_alignment):
19348 Fix unsupportable data ref treatment.
19350 2017-05-30 Robin Dapp <rdapp@linux.vnet.ibm.com>
19352 * tree-vect-data-refs.c (vect_get_data_access_cost):
19353 Workaround for SLP handling.
19354 (vect_enhance_data_refs_alignment):
19355 Compute costs for doing no peeling at all, compare to the best
19356 peeling costs so far and avoid peeling if cheaper.
19358 2017-05-30 Robin Dapp <rdapp@linux.vnet.ibm.com>
19360 * tree-vect-data-refs.c (vect_peeling_hash_choose_best_peeling):
19361 Return peeling info and set costs to zero for unlimited cost
19363 (vect_enhance_data_refs_alignment): Also inspect all datarefs
19364 with unknown misalignment. Compute and costs for unknown
19365 misalignment, compare them to the costs for known misalignment
19366 and choose the cheapest for peeling.
19368 2017-05-30 Robin Dapp <rdapp@linux.vnet.ibm.com>
19370 * tree-vect-data-refs.c (vect_update_misalignment_for_peel): Rename.
19371 (vect_get_peeling_costs_all_drs): Create function.
19372 (vect_peeling_hash_get_lowest_cost):
19373 Use vect_get_peeling_costs_all_drs.
19374 (vect_peeling_supportable): Create function.
19375 (vect_enhance_data_refs_alignment): Use vect_peeling_supportable.
19377 2017-05-30 Robin Dapp <rdapp@linux.vnet.ibm.com>
19379 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Create
19380 DR_HAS_NEGATIVE_STEP.
19381 (vect_update_misalignment_for_peel): Define DR_MISALIGNMENT.
19382 (vect_enhance_data_refs_alignment): Use.
19383 (vect_duplicate_ssa_name_ptr_info): Use.
19384 * tree-vectorizer.h (dr_misalignment): Use.
19385 (known_alignment_for_access_p): Use.
19387 2017-05-30 Jozef Lawrynowicz <jozef.l@somniumtech.com>
19390 * config/msp430/msp430.c (gen_prefix): Return NULL when section name is
19392 (has_section_name): New function.
19394 2017-05-30 Martin Liska <mliska@suse.cz>
19397 * auto-profile.c (get_function_decl_from_block): Fix
19400 2017-05-30 Richard Biener <rguenther@suse.de>
19402 PR middle-end/80876
19403 * cfgexpand.c (expand_gimple_cond): Fixup preserving loops again.
19405 2017-05-30 Martin Liska <mliska@suse.cz>
19407 * dumpfile.c: Use newly added macro DUMP_FILE_INFO.
19408 * dumpfile.h (struct dump_file_info): Remove ctors.
19410 2017-05-30 Martin Liska <mliska@suse.cz>
19412 * predict.def: Fix GNU coding style.
19414 2017-05-29 Max Filippov <jcmvbkbc@gmail.com>
19416 * config/xtensa/xtensa.c (xtensa_initial_elimination_offset):
19417 Mark 'to' argument with ATTRIBUTE_UNUSED.
19419 2017-05-29 Max Filippov <jcmvbkbc@gmail.com>
19421 * config/xtensa/xtensa.c (xtensa_emit_call): Use
19422 HOST_WIDE_INT_PRINT_HEX instead of 0x%lx format string.
19423 (print_operand): Use HOST_WIDE_INT_PRINT_DEC instead of %ld
19426 2017-05-29 Eric Botcazou <ebotcazou@adacore.com>
19428 * doc/install.texi (Options specification): Restore entry of
19429 --enable-sjlj-exceptions.
19431 2017-05-27 Michael Eager <eager@eagercon.com>
19434 2016-01-21 Ajit Agarwal <ajitkum@xilinx.com>
19436 See https://gcc.gnu.org/ml/gcc/2017-05/msg00221.html.
19438 * config/microblaze/microblaze.h
19439 (FIXED_REGISTERS): Update in macro.
19440 (CALL_USED_REGISTERS): Update in macro.
19442 2017-05-27 François-Xavier Coudett <fxcoudert@gcc.gnu.org>
19444 * doc/install.texi: Add links to macOS binary distributions.
19446 2017-05-27 Jakub Jelinek <jakub@redhat.com>
19450 2017-05-25 Marc Glisse <marc.glisse@inria.fr>
19452 * match.pd ((A +- CST1) +- CST2): Allow some conversions.
19454 2017-05-26 Martin Liska <mliska@suse.cz>
19456 * dumpfile.h (enum dump_kind): Renumber TDF_* flags to be contiguous.
19458 2017-05-26 Martin Liska <mliska@suse.cz>
19460 * cfg.c (check_bb_profile): Do not use TDF_COMMENT and print
19461 always leading ';; '.
19462 (dump_bb_info): Likewise.
19463 (brief_dump_cfg): Likewise.
19464 * cfgrtl.c (print_rtl_with_bb): Do not use TDF_COMMENT.
19465 * dumpfile.c: Remove usage of TDF_VERBOSE.
19466 * dumpfile.h (enum dump_kind): Likewise.
19467 (dump_gimple_bb_header): Do not use TDF_COMMENT.
19468 * print-tree.c (debug_verbose): Remove.
19469 * tree-cfg.c (gimple_dump_cfg): Do not use TDF_COMMENT.
19470 (dump_function_to_file): Remove dumps guarded with TDF_VERBOSE.
19471 * tree-diagnostic.c (default_tree_printer): Replace
19472 TDF_DIAGNOSTIC with TDF_SLIM.
19474 2017-05-26 Bin Cheng <bin.cheng@arm.com>
19476 * tree-vect-loop-manip.c (create_intersect_range_checks_index): Pass
19477 in parameter loop, rather than loop_vinfo.
19478 (create_intersect_range_checks): Ditto.
19479 (vect_create_cond_for_alias_checks): Update call to above functions.
19481 2017-05-26 Bin Cheng <bin.cheng@arm.com>
19483 PR tree-optimization/80815
19484 * tree-data-ref.c (prune_runtime_alias_test_list): Simplify condition
19485 for merging runtime alias checks. Handle negative DR_STEPs.
19487 2017-05-26 Bin Cheng <bin.cheng@arm.com>
19489 * tree-vect-data-refs.c (Operator==, comp_dr_with_seg_len_pair):
19491 * tree-data-ref.c (Operator==, comp_dr_with_seg_len_pair): To here.
19492 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list): Factor
19493 out code pruning runtime alias checks.
19494 * tree-data-ref.c (prune_runtime_alias_test_list): New function
19495 factored out from above.
19496 * tree-vectorizer.h (struct dr_with_seg_len, dr_with_seg_len_pair_t):
19498 * tree-data-ref.h (struct dr_with_seg_len, dr_with_seg_len_pair_t):
19500 (prune_runtime_alias_test_list): New decalaration.
19502 2017-05-26 Bin Cheng <bin.cheng@arm.com>
19504 * tree-vect-data-refs.c (compare_tree): Rename and move ...
19505 * tree-data-ref.c (data_ref_compare_tree): ... to here.
19506 * tree-data-ref.h (data_ref_compare_tree): New decalaration.
19507 * tree-vect-data-refs.c (dr_group_sort_cmp): Update uses.
19508 (operator==, comp_dr_with_seg_len_pair): Ditto.
19509 (vect_prune_runtime_alias_test_list): Ditto.
19511 2017-05-26 Martin Liska <mliska@suse.cz>
19514 * params.def: Bound partial-inlining-entry-probability param.
19516 2017-05-26 Marek Polacek <polacek@redhat.com>
19519 * fold-const.c (fold_binary_loc) <case MULT_EXPR>: Check if OP1
19522 2017-05-26 Richard Biener <rguenther@suse.de>
19524 PR tree-optimization/80842
19525 * tree-ssa-ccp.c (set_lattice_value): Always meet with the old
19528 2017-05-26 Richard Biener <rguenther@suse.de>
19530 PR tree-optimization/80844
19531 * tree-vectorizer.c (adjust_simduid_builtins): Propagate results.
19533 2017-05-25 Sebastian Peryt <sebastian.peryt@intel.com>
19535 * doc/md.texi (Machine Constraints): Update x86 family
19536 machine constraints section to match 'config/i386/constraints.md'.
19538 2017-05-25 Volker Reichelt <v.reichelt@netcologne.de>
19540 * doc/invoke.texi (-Wcatch-value=): Document new warning option.
19542 2017-05-25 Nathan Sidwell <nathan@acm.org>
19544 * doc/invoke.texi (--enable-languages): Update documentation.
19546 2017-05-25 Martin Liska <mliska@suse.cz>
19548 * dumpfile.c: Add TDF_FOLDING.
19549 * dumpfile.h (enum dump_kind): Likewise.
19550 * genmatch.c (dt_simplify::gen_1): Use it.
19552 2017-05-25 Marc Glisse <marc.glisse@inria.fr>
19554 * match.pd (view_convert (convert@0 @1)): Handle zero-extension.
19556 2017-05-25 Marc Glisse <marc.glisse@inria.fr>
19558 * match.pd ((A +- CST1) +- CST2): Allow some conversions.
19559 * tree.c (drop_tree_overflow): Handle COMPLEX_CST and VECTOR_CST.
19561 2017-05-25 Marc Glisse <marc.glisse@inria.fr>
19563 * fold-const.c (fold_binary_loc) [(A & C) == D]: Remove transformation.
19564 * match.pd (X == C): Rewrite it here.
19565 (with_possible_nonzero_bits, with_possible_nonzero_bits2,
19566 with_certain_nonzero_bits2): New predicates.
19567 * tree-ssanames.c (get_nonzero_bits): Handle INTEGER_CST.
19569 2017-05-24 Nathan Sidwell <nathan@acm.org>
19571 * lto-streamer-in.c (lto_input_data_block): Adjust T const cast to
19574 * auto-profile.c (afdo_propagate): Adjust T const cast to avoid
19577 2017-05-24 Segher Boessenkool <segher@kernel.crashing.org>
19579 * config/powerpcspe: New port. Files are copied from the rs6000
19580 port, with "rs6000" in filenames replaced by "powerpcspe".
19582 2017-05-24 Wilco Dijkstra <wdijkstr@arm.com>
19584 PR rtl-optimization/80754
19585 * lra-remat.c (do_remat): Add overlap checks for dst_regno.
19587 2017-05-24 Sheldon Lobo <smlobo@sheldon.us.oracle.com>
19589 * config/sparc/sparc.md (length): Return the correct value for -mflat
19590 sibcalls to match output_sibcall.
19592 2017-05-24 Segher Boessenkool <segher@kernel.crashing.org>
19596 * config/rs6000/rs6000.c (struct machine_function): Add new field
19598 (rs6000_get_separate_components): Init that field, use it.
19599 (rs6000_components_for_bb): Use the field.
19601 2017-05-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
19603 * config/arm/arm.c (arm_expand_prologue): Fix typo in comment.
19605 2017-05-24 Peter Bergner <bergner@vnet.ibm.com>
19607 PR middle-end/80823
19608 * tree-cfg.c (group_case_labels_stmt): Delete increment of "i";
19610 2017-05-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
19613 * config/s390/s390.c (s390_check_qrst_address): Check incoming
19614 address against address_operand predicate.
19615 * config/s390/s390.md ("*indirect_jump"): Swap alternatives.
19617 2017-05-24 Eric Botcazou <ebotcazou@adacore.com>
19619 * var-tracking.c (track_expr_p): Do not return 0 for tracked record
19620 parameters passed indirectly.
19622 2017-05-23 Uros Bizjak <ubizjak@gmail.com>
19624 * config/i386/i386.md (*movdi_internal): Remove SSE4
19625 alternative 18 (?r, *v). Update insn attributes.
19626 (*movsi_internal): Remove SSE4 alternative 13 (?r, *v).
19627 Update insn attributes.
19628 (*zero_extendsidi2): Remove SSE4 alternative (?r, *x).
19629 Update insn attributes.
19630 * config/i386/sse.md (vec_extract<ssevecmodelower>_0): Remove SSE4
19631 alternative 1 (r, v). Remove isa attribute.
19632 * config/i386/i386.c (dimode_scalar_chain::make_vector_copies):
19633 Always move value through stack for !TARGET_INTER_UNIT_MOVES_TO_VEC
19634 and !TARGET_INTER_UNIT_MOVES_TO_VEC targets.
19636 2017-05-23 Tom de Vries <tom@codesourcery.com>
19638 * doc/sourcebuild.texi (Directives, Verify compiler message): Document
19641 2017-05-23 Jan Hubicka <hubicka@ucw.cz>
19643 * cgraphunit.c (symbol_table::process_new_functions): Update.
19644 * ipa-fnsummary.c (pass_data_inline_parameters): Remove.
19645 (inline_generate_summary): Rename to ...
19646 (ipa_fn_summary_generate): ... this one.
19647 (inline_read_summary): Rename to ...
19648 (ipa_fn_summary_read): ... this one.
19649 (inline_write_summary): Rename to ...
19650 (ipa_fn_summary_write): ... this one.
19651 (inline_free_summary): Rename to ...
19652 (ipa_free_fn_summary): ... this one.
19653 (pass_data_local_fn_summary, pass_local_fn_summary,
19654 make_pass_local_fn_summary, pass_data_ipa_free_fn_summary,
19655 pass_ipa_free_fn_summary, make_pass_ipa_free_fn_summary,
19656 pass_data_ipa_fn_summary, pass_ipa_fn_summary,
19657 make_pass_ipa_fn_summary): New.
19658 * ipa-fnsummary.h (inline_generate_summary, inline_read_summary,
19659 inline_write_summary, inline_free_summary): Remove.
19660 (ipa_free_fn_summary) : New.
19661 * ipa-inline.c (ipa_inline): Update.
19662 (pass_ipa_inline): Do not generate summaries.
19663 * ipa.c (pass_data_ipa_free_fn_summary, pass_ipa_free_fn_summary):
19665 * passes.def: Replace pass_inline_parameters by pass_local_fn_summary
19666 and add pass_ipa_fn_summary.
19667 * tree-pass.h (make_pass_ipa_fn_summary, make_pass_local_fn_summary):
19669 (make_pass_inline_parameters): Remove.
19671 2017-05-23 Thomas Schwinge <thomas@codesourcery.com>
19673 * omp-low.c (struct omp_context): Remove "default_kind" member.
19676 * omp-offload.c (execute_oacc_device_lower): Remove the
19677 parallelism dimensions function attributes for unparallelized
19678 OpenACC kernels constructs.
19680 2017-05-23 Martin Liska <mliska@suse.cz>
19682 * cgraph.c (cgraph_node::get_create): Use symtab_node::dump_{asm_,}name
19684 (cgraph_edge::make_speculative): Likewise.
19685 (cgraph_edge::resolve_speculation): Likewise.
19686 (cgraph_edge::redirect_call_stmt_to_callee): Likewise.
19687 (cgraph_node::dump): Likewise.
19688 * cgraph.h: Likewise.
19689 * cgraphunit.c (analyze_functions): Likewise.
19690 (symbol_table::compile): Likewise.
19691 * ipa-cp.c (print_all_lattices): Likewise.
19692 (determine_versionability): Likewise.
19693 (initialize_node_lattices): Likewise.
19694 (ipcp_verify_propagated_values): Likewise.
19695 (estimate_local_effects): Likewise.
19696 (update_profiling_info): Likewise.
19697 (create_specialized_node): Likewise.
19698 (perhaps_add_new_callers): Likewise.
19699 (decide_about_value): Likewise.
19700 (decide_whether_version_node): Likewise.
19701 (identify_dead_nodes): Likewise.
19702 (ipcp_store_bits_results): Likewise.
19703 * ipa-devirt.c (dump_targets): Likewise.
19704 (ipa_devirt): Likewise.
19705 * ipa-icf.c (sem_item::dump): Likewise.
19706 (sem_function::equals): Likewise.
19707 (sem_variable::equals): Likewise.
19708 (sem_item_optimizer::read_section): Likewise.
19709 (sem_item_optimizer::execute): Likewise.
19710 (congruence_class::dump): Likewise.
19711 * ipa-inline-analysis.c (dump_ipa_call_summary): Likewise.
19712 (dump_inline_summary): Likewise.
19713 (estimate_node_size_and_time): Likewise.
19714 (inline_analyze_function): Likewise.
19715 * ipa-inline-transform.c (inline_call): Likewise.
19716 * ipa-inline.c (report_inline_failed_reason): Likewise.
19717 (want_early_inline_function_p): Likewise.
19718 (edge_badness): Likewise.
19719 (update_edge_key): Likewise.
19720 (inline_small_functions): Likewise.
19721 * ipa-profile.c (ipa_profile): Likewise.
19722 * ipa-prop.c (ipa_print_node_jump_functions): Likewise.
19723 (ipa_make_edge_direct_to_target): Likewise.
19724 (remove_described_reference): Likewise.
19725 (ipa_impossible_devirt_target): Likewise.
19726 (propagate_controlled_uses): Likewise.
19727 (ipa_print_node_params): Likewise.
19728 (ipcp_transform_function): Likewise.
19729 * ipa-pure-const.c (pure_const_read_summary): Likewise.
19730 (propagate_pure_const): Likewise.
19731 * ipa-reference.c (generate_summary): Likewise.
19732 (read_write_all_from_decl): Likewise.
19733 (propagate): Likewise.
19734 (ipa_reference_read_optimization_summary): Likewise.
19735 * ipa-utils.c (ipa_merge_profiles): Likewise.
19736 * ipa.c (walk_polymorphic_call_targets): Likewise.
19737 (symbol_table::remove_unreachable_nodes): Likewise.
19738 (ipa_single_use): Likewise.
19739 * passes.c (execute_todo): Likewise.
19740 * predict.c (drop_profile): Likewise.
19741 * symtab.c (symtab_node::get_dump_name): New function.
19742 (symtab_node::dump_name): Likewise.
19743 (symtab_node::dump_asm_name): Likewise.
19744 (symtab_node::dump_references): Likewise.
19745 (symtab_node::dump_referring): Likewise.
19746 (symtab_node::dump_base): Likewise.
19747 (symtab_node::debug_symtab): Likewise.
19748 * tree-sra.c (convert_callers_for_node): Likewise.
19749 * tree-ssa-structalias.c (ipa_pta_execute): Likewise.
19750 * value-prof.c (init_node_map): Likewise.
19752 2017-05-23 Martin Liska <mliska@suse.cz>
19754 * cgraph.h: Move symtab_node::dump_table to symbol_table::dump
19755 and symtab_node::debug_symtab to symbol_table::debug.
19756 * cgraphunit.c (analyze_functions): Use the renamed function.
19757 (symbol_table::compile): Likewise.
19758 * ipa-cp.c (ipcp_verify_propagated_values): Likewise.
19759 * ipa-icf.c (sem_item_optimizer::execute): Likewise.
19760 * passes.c (execute_todo): Likewise.
19761 * symtab.c (symbol_table::dump): New function.
19762 * tree-ssa-structalias.c (ipa_pta_execute): Use the renamed function.
19764 2017-05-23 Jan Hubicka <hubicka@ucw.cz>
19766 * ipa-fnsummary.c (estimate_node_size_and_time): Do not sanity check
19767 that nonconst implies exec.
19769 2017-05-23 Jan Hubicka <hubicka@ucw.cz>
19771 * ipa-inline-analysis.c (cgraph_2edge_hook_list, cgraph_edge_hook_list,
19772 inline_edge_removal_hook, inline_edge_duplication_hook): Remove.
19773 (inline_edge_summary_vec): Turn into ...
19774 (ipa_call_summaries): ... this one.
19775 (redirect_to_unreachable, edge_set_predicate,
19776 evaluate_properties_for_edge, inline_summary_alloc,
19777 reset_ipa_call_summary, reset_inline_summary,
19778 inline_summary_t::duplicate): Update.
19779 (inline_edge_duplication_hook): Turn to ...
19780 (ipa_call_summary_t::duplicate): ... this one.
19781 (inline_edge_removal_hook): Turn to ...
19782 (ipa_call_summary_t::remove): ... this one.
19783 (dump_inline_edge_summary): Turn to ...
19784 (dump_ipa_call_summary): ... this one.
19785 (estimate_function_body_sizes): Update.
19786 (inline_update_callee_summaries): Update.
19787 (remap_edge_change_prob): Update.
19788 (remap_edge_summaries): Update.
19789 (inline_merge_summary): Update.
19790 (do_estimate_edge_time): Update.
19791 (inline_generate_summary): Update.
19792 (inline_read_section): Update.
19793 (inline_read_summary): Update.
19794 (inline_free_summary): Update.
19795 * ipa-inline.c (can_inline_edge_p): Update.
19796 (compute_inlined_call_time): Update.
19797 (want_inline_small_function_p): Update.
19798 (edge_badness): Update.
19799 (early_inliner): Update.
19800 * ipa-inline.h (inline_edge_summary): Turn to ...
19801 (ipa_call_summary): ... this one.
19802 (ipa_call_summary_t): New class.
19803 (inline_edge_summary_t, inline_edge_summary_vec): Remove.
19804 (ipa_call_summaries): New.
19805 (inline_edge_summary): Remove.
19806 (estimate_edge_growth): Update.
19807 * ipa-profile.c (ipa_propagate_frequency_1): Update.
19808 * ipa-prop.c (ipa_make_edge_direct_to_target): Update.
19809 * ipa-split.c (execute_split_functions): Update.
19810 * ipa.c (symbol_table::remove_unreachable_nodes): Update.
19812 2017-05-23 Tom de Vries <tom@codesourcery.com>
19814 * doc/sourcebuild.texi (Effective-Target Keywords, Other hardware
19815 attributes): Document rdrand effective target.
19817 2017-05-23 Tom de Vries <tom@codesourcery.com>
19819 * doc/sourcebuild.texi (Effective-Target Keywords, Other hardware
19820 attributes): Sort alphabetically.
19822 2017-05-23 Georg-Johann Lay <avr@gjlay.de>
19824 * config/avr/genmultilib.awk: Use gsub instead of gensub.
19826 2017-05-22 Michael Meissner <meissner@linux.vnet.ibm.com>
19829 * config/rs6000/vsx.md (vsx_splat_<mode>, VSX_D iterator): Split
19830 V2DF/V2DI splat into two separate patterns, one that handles
19831 registers, and the other that only handles memory. Drop support
19832 for splatting from a GPR on ISA 2.07 and then splitting the
19833 splat into direct move and splat.
19834 (vsx_splat_<mode>_reg): Likewise.
19835 (vsx_splat_<mode>_mem): Likewise.
19837 2017-05-22 Segher Boessenkool <segher@kernel.crashing.org>
19839 * cfgcleanup.c (bb_is_just_return): Allow CLOBBERs.
19841 2017-05-22 Jakub Jelinek <jakub@redhat.com>
19843 PR middle-end/80809
19844 * omp-low.c (finish_taskreg_remap): New function.
19845 (finish_taskreg_scan): If unit size of ctx->record_type
19846 is non-constant, unshare the size expression and replace
19847 decls in it with possible outer var refs.
19849 PR middle-end/80809
19850 * gimplify.c (omp_add_variable): For GOVD_DEBUG_PRIVATE use
19851 GOVD_SHARED rather than GOVD_PRIVATE with it.
19852 (gimplify_adjust_omp_clauses_1, gimplify_adjust_omp_clauses): Expect
19853 GOVD_SHARED rather than GOVD_PRIVATE with GOVD_DEBUG_PRIVATE.
19855 PR middle-end/80853
19856 * omp-low.c (lower_reduction_clauses): Pass OMP_CLAUSE_PRIVATE
19857 as last argument to build_outer_var_ref for pointer bases of array
19858 section reductions.
19860 2017-05-19 Martin Sebor <msebor@redhat.com>
19862 * print-tree.c (print_node): Print DECL_READ_P flag.
19864 2017-05-22 Jan Hubicka <hubicka@ucw.cz>
19866 * Makefile.in: Add ipa-fnsummary.o and ipa-fnsummary.h
19867 * auto-profile.c: Replace ipa-inline.h by ipa-fnsummary.h
19868 * cgraph.c: Likewise.
19869 * cgraphunit.c: Likewise.
19870 * gengtype.c: Likewise.
19871 * ipa-cp.c: Likewise.
19872 * ipa-devirt.c: Likewise.
19873 * ipa-icf.c: Likewise.
19874 * ipa-predicate.c: Likewise.
19875 * ipa-profile.c: Likewise.
19876 * ipa-prop.c: Likewise.
19877 * ipa-split.c: Likewise.
19879 * ipa-inline-analysis.c (inline_summaries, ipa_call_summaries,
19880 edge_predicate_pool, dump_inline_hints,
19881 inline_summary::account_size_time, redirect_to_unreachable,
19882 edge_set_predicate, set_hint_predicate,
19883 evaluate_conditions_for_known_args, evaluate_properties_for_edge,
19884 inline_summary_alloc, ipa_call_summary::reset, inline_summary::reset,
19885 inline_summary_t::remove, remap_hint_predicate_after_duplication,
19886 inline_summary_t::duplicate, ipa_call_summary_t::duplicate,
19887 ipa_call_summary_t::remove, initialize_growth_caches,
19888 free_growth_caches, dump_ipa_call_summary, dump_inline_summary,
19889 debug_inline_summary, dump_inline_summaries, initialize_inline_failed,
19890 mark_modified, unmodified_parm_1, unmodified_parm,
19891 unmodified_parm_or_parm_agg_item, eliminated_by_inlining_prob,
19892 set_cond_stmt_execution_predicate, set_switch_stmt_execution_predicate,
19893 compute_bb_predicates, will_be_nonconstant_expr_predicate,
19894 will_be_nonconstant_predicate, record_modified_bb_info,
19895 get_minimal_bb, record_modified, param_change_prob,
19896 phi_result_unknown_predicate, predicate_for_phi_result,
19897 array_index_predicate, clobber_only_eh_bb_p, fp_expression_p,
19898 estimate_function_body_sizes, compute_inline_parameters,
19899 compute_inline_parameters_for_curren, pass_data_inline_parameters,
19900 estimate_node_size_and_time, estimate_ipcp_clone_size_and_time,
19901 inline_update_callee_summaries, remap_edge_change_prob,
19902 remap_edge_summaries, remap_hint_predicate, inline_merge_summary,
19903 inline_update_overall_summary, inline_indirect_intraprocedural_analysis,
19904 inline_analyze_function, inline_summary_t::insert,
19905 inline_generate_summary, read_ipa_call_summary, inline_read_section,
19906 inline_read_summary, write_ipa_call_summary, inline_write_summary,
19907 inline_free_summary): Move to ipa-fnsummary.h
19908 (predicate_t): Remove.
19909 * ipa-fnsummary.c: New file.
19910 * ipa-inline.h: Do not include sreal.h and ipa-predicate.h
19911 (enum inline_hints_vals, inline_hints, agg_position_info,
19912 INLINE_SIZE_SCALE, size_time_entry, inline_summary, inline_summary_t,
19913 inline_summaries, ipa_call_summary, ipa_call_summary_t,
19914 ipa_call_summaries, debug_inline_summary, dump_inline_summaries,
19915 dump_inline_summary, dump_inline_hints, inline_generate_summary,
19916 inline_read_summary, inline_write_summary, inline_free_summary,
19917 inline_analyze_function, initialize_inline_failed,
19918 inline_merge_summary, inline_update_overall_summary,
19919 compute_inline_parameters): Move to ipa-fnsummary.h
19920 * ipa-fnsummary.h: New file.
19921 * ipa-inline-transform.h: Include ipa-inline.h.
19922 * ipa-inline.c: LIkewise.
19924 2017-05-22 Jan Hubicka <hubicka@ucw.cz>
19926 * ipa-inline.c (edge_badness): Use inlined_time instead of
19927 inline_summaries->get.
19929 2017-05-22 Jan Hubicka <hubicka@ucw.cz>
19931 * ipa-inline.c (edge_badness): Use estimate_size_after_inlining.
19933 2017-05-22 Nathan Sidwell <nathan@acm.org>
19935 * doc/invoke.texi (fdump-translation-unit): Delete documentation.
19936 (fdump-lang): Document 'raw' option.
19937 * dumpfile.h (TDI_tu): Delete.
19938 * dumpfile.c (dump_files): Remove translation-unit.
19939 (FIRST_AUTO_NUMBERED_DUMP): Decrement.
19941 2017-05-22 Georg-Johann Lay <avr@gjlay.de>
19943 * config/avr/t-avr (AWK) [t-multilib]: Remove "-v FORMAT=Makefile"
19944 command option from $(AWK) call.
19945 * config/avr/genmultilib.awk: Simplify and rewrite so that it
19946 generates MULTILIB_REQUIRED instead of MULTILIB_EXCEPTIONS.
19947 [FORMAT]: Remove handling of variable.
19948 * config/avr/t-multilib: Regenerate.
19950 2017-05-22 Jan Hubicka <hubicka@ucw.cz>
19952 * ipa-inline-analysis.c (inline_summary::reset): Do not reset
19954 (dump_inline_summary): Do not print self_time.
19955 (estimate_function_body_sizes): Do not set self_time.
19956 (compute_inline_parameters): Likewise.
19957 (inline_read_section, inline_write_summary): Do not stream self_time.
19958 * ipa-inline.h (inline_summary): Drop self_time.
19960 2017-05-22 Jan Hubicka <hubicka@ucw.cz>
19962 * ipa-inline-analysis.c (account_size_time): Rename to ...
19963 (inline_summary::account_size_time): ... this one.
19964 (reset_ipa_call_summary): Turn to ...
19965 (ipa_call_summary::reset): ... this one.
19966 (reset_inline_summary): Turn to ...
19967 (inline_summary::reset): ... this one.
19968 (inline_summary_t::remove): Update.
19969 (inline_summary_t::duplicate): Update.
19970 (ipa_call_summary_t::remove): Update.
19971 (dump_inline_summary): Update.
19972 (estimate_function_body_sizes): Update.
19973 (compute_inline_parameters): Update.
19974 (estimate_node_size_and_time): Update.
19975 (inline_merge_summary): Update.
19976 (inline_update_overall_summary): Update.
19977 (inline_read_section): Update.
19978 (inline_write_summary): Update.
19979 * ipa-inline.h (inline_summary): Rename entry to size_time_table;
19980 add account_size_time and reset member functions.
19981 (ipa_call_summary): Add reset function.
19982 * ipa-predicate.h (predicate::operator &): Constify.
19984 2017-05-22 Richard Biener <rguenther@suse.de>
19986 * df-scan.c (df_insn_refs_verify): Speedup when not verifying.
19988 2017-05-19 Jason Merrill <jason@redhat.com>
19990 * tree.c (make_tree_vec_stat, grow_tree_vec_stat): Use size_t.
19992 2017-05-19 Marek Polacek <polacek@redhat.com>
19995 * fold-const.c (extract_muldiv_1) <case TRUNC_DIV_EXPR>: Add
19996 TYPE_OVERFLOW_WRAPS checks.
19998 2017-05-19 Thomas Schwinge <thomas@codesourcery.com>
20000 * tree-core.h (enum omp_clause_default_kind): Add
20001 "OMP_CLAUSE_DEFAULT_PRESENT".
20002 * tree-pretty-print.c (dump_omp_clause): Handle it.
20003 * gimplify.c (enum gimplify_omp_var_data): Add
20004 "GOVD_MAP_FORCE_PRESENT".
20005 (gimplify_adjust_omp_clauses_1): Map it to
20006 "GOMP_MAP_FORCE_PRESENT".
20007 (oacc_default_clause): Handle "OMP_CLAUSE_DEFAULT_PRESENT".
20009 * gimplify.c (oacc_default_clause): Clarify.
20011 2017-05-19 Nathan Sidwell <nathan@acm.org>
20013 LANG_HOOK_REGISTER_DUMPS
20014 * toplev.c (general_init): Call register dump lang hook.
20015 * doc/invoke.texi: Document -fdump-lang option family.
20016 * dumpfile.c (dump_files): Remove class dump here.
20017 (FIRST_AUTO_NUMBERED_DUMP): Adjust.
20018 * dumpfile.h (tree_dump_index): Remove TDI_class.
20019 * langhooks-def.h (lhd_register_dumps): Declare.
20020 (LANG_HOOKS_REGISTER_DUMPS): Define.
20021 (LANG_HOOKS_INITIALIZER): Add it.
20022 * langhooks.c (lhd_register_dumps): Define.
20023 * langhooks.h (struct lang_hooks): Add register_dumps.
20025 2017-05-19 Nathan Sidwell <nathan@acm.org>
20027 * context.h (context::set_passes): New.
20028 * context.c (context::context): Do not create pass manager.
20029 * toplev.c (general_init): Create pass manager here.
20031 2017-05-19 Segher Boessenkool <segher@kernel.crashing.org>
20033 * config/rs6000/rs6000.md (splitter to load of -1 and mask): Don't
20034 use this splitter if two add or or instructions would also work for
20035 the constant we want to generate.
20037 2017-05-19 Richard Biener <rguenther@suse.de>
20040 * genmatch.c (dt_node::gen_kids_1): Add missing scope around
20041 predicate evaluation.
20043 2017-05-19 Jan Hubicka <hubicka@ucw.cz>
20045 * ipa-inline.h (ipa_call_summary): Turn sizes into signed;
20047 * ipa-inline.c (want_inline_small_function_p): Do not cast to
20050 2017-05-19 Jan Hubicka <hubicka@ucw.cz>
20052 * ipa-inline-analysis.c (cgraph_2edge_hook_list, cgraph_edge_hook_list,
20053 inline_edge_removal_hook, inline_edge_duplication_hook): Remove.
20054 (inline_edge_summary_vec): Turn into ...
20055 (ipa_call_summaries): ... this one.
20056 (redirect_to_unreachable, edge_set_predicate,
20057 evaluate_properties_for_edge, inline_summary_alloc,
20058 reset_ipa_call_summary, reset_inline_summary,
20059 inline_summary_t::duplicate): Update.
20060 (inline_edge_duplication_hook): Turn to ...
20061 (ipa_call_summary_t::duplicate): ... this one.
20062 (inline_edge_removal_hook): Turn to ...
20063 (ipa_call_summary_t::remove): ... this one.
20064 (dump_inline_edge_summary): Turn to ...
20065 (dump_ipa_call_summary): ... this one.
20066 (estimate_function_body_sizes): Update.
20067 (inline_update_callee_summaries): Update.
20068 (remap_edge_change_prob): Update.
20069 (remap_edge_summaries): Update.
20070 (inline_merge_summary): Update.
20071 (do_estimate_edge_time): Update.
20072 (inline_generate_summary): Update.
20073 (inline_read_section): Update.
20074 (inline_read_summary): Update.
20075 (inline_free_summary): Update.
20076 * ipa-inline.c (can_inline_edge_p): Update.
20077 (compute_inlined_call_time): Update.
20078 (want_inline_small_function_p): Update.
20079 (edge_badness): Update.
20080 (early_inliner): Update.
20081 * ipa-inline.h (inline_edge_summary): Turn to ...
20082 (ipa_call_summary): ... this one.
20083 (ipa_call_summary_t): New class.
20084 (inline_edge_summary_t, inline_edge_summary_vec): Remove.
20085 (ipa_call_summaries): New.
20086 (inline_edge_summary): Remove.
20087 (estimate_edge_growth): Update.
20088 * ipa-profile.c (ipa_propagate_frequency_1): Update.
20089 * ipa-prop.c (ipa_make_edge_direct_to_target): Update.
20090 * ipa-split.c (execute_split_functions): Update.
20091 * ipa.c (symbol_table::remove_unreachable_nodes): Update.
20093 2017-05-19 Richard Biener <rguenther@suse.de>
20095 PR middle-end/80764
20096 * cfgexpand.c (expand_gimple_cond): Fix loop fixup.
20098 2017-05-18 Segher Boessenkool <segher@kernel.crashing.org>
20100 * config/rs6000/rs6000.c (struct machine_function): Add field
20101 fpr_is_wrapped_separately.
20102 (rs6000_get_separate_components): Use 64 components. Handle the
20103 new FPR components.
20104 (rs6000_components_for_bb): Handle the FPR components.
20105 (rs6000_emit_prologue_components): Handle the FPR components.
20106 (rs6000_emit_epilogue_components): Handle the FPR components.
20107 (rs6000_set_handled_components): Handle the FPR components.
20108 (rs6000_emit_prologue): Don't output prologue code for those FPRs
20109 that are already separately shrink-wrapped.
20110 (rs6000_emit_epilogue): Don't output epilogue code for those FPRs
20111 that are already separately shrink-wrapped.
20113 2017-05-18 Michael Meissner <meissner@linux.vnet.ibm.com>
20116 * config/rs6000/predicates.md (simple_offsettable_mem_operand):
20119 * config/rs6000/rs6000.md (ALTIVEC_DFORM): New iterator.
20120 (define_peephole2 for Altivec d-form load): Add peepholes to catch
20121 cases where the register allocator uses a move and an offsettable
20122 memory operation to/from a FPR register on ISA 2.06/2.07.
20123 (define_peephole2 for Altivec d-form store): Likewise.
20125 2017-05-18 Uros Bizjak <ubizjak@gmail.com>
20128 * config/i386/mmx.md (*mov<mode>_internal): Enable
20129 alternatives 11, 12, 13 and 14 also for 32bit targets.
20130 Remove alternatives 15, 16, 17 and 18.
20131 * config/i386/sse.md (vec_concatv2di): Change
20132 alternative (!x, *y) to (x, ?!*Yn).
20134 2017-05-18 Paolo Carlini <paolo.carlini@oracle.com>
20136 * dumpfile.h (enum dump_kind): Remove stray comma.
20138 2017-05-18 Jan Hubicka <hubicka@ucw.cz>
20140 * Makefile.in: Add ipa-predicate.o and ipa-predicate.h
20141 * ipa-inline-analysis.c (NUM_CONDITIONS): turn into
20142 predicate::num_conditions
20143 (IS_NOT_CONSTANT): turn into predicate::is_not_constant.
20144 (CHANGED): turn into predicate::changed.
20145 (agg_position_info): Move to ipa-predicate.h
20146 (add_condition, predicate::add_clause, predicate::operator &=,
20147 predicate::or_with, predicate::evaluate, predicate::probability,
20148 dump_condition, dump_clause, predicate::dump,
20149 predicate::remap_after_duplication, predicate::remap_after_inlining,
20150 predicate::stream_in, predicate::stream_out): Move to ipa-predicate.c
20151 (evaluate_conditions_for_known_args): Update.
20152 (set_cond_stmt_execution_predicate): Update.
20153 * ipa-inline.h: Include ipa-predicate.h
20154 (condition, inline_param_summary, conditions, agg_position_info,
20155 predicate): Move to ipa-predicate.h
20156 * ipa-predicate.c: New file.
20157 * ipa-predicate.h: New file.
20159 2017-05-18 Wilco Dijkstra <wdijkstr@arm.com>
20161 * final.c (leaf_function_p): Check we are not in a sequence.
20163 2017-05-18 Martin Liska <mliska@suse.cz>
20165 * cfgrtl.c (rtl_verify_edges): Remove usage of TDF_RTL.
20166 * dumpfile.c (dump_register): Use new enum dump_kind.
20167 (get_dump_file_name): Likewise.
20168 (dump_enable_all): Likewise.
20169 (dump_switch_p_1): Likewise.
20170 (enable_rtl_dump_file): Remove usage of TDF_RTL.
20171 * dumpfile.h (enum dump_kind): New enum type.
20172 (struct dump_file_info): Create constructor and
20173 format fields and comments.
20174 * passes.c (pass_manager::register_one_dump_file):
20176 * statistics.c (statistics_early_init): Likewise.
20177 * tree-ssa-loop-prefetch.c (dump_mem_details): Replace
20178 TDF_TREE with TDF_SLIM.
20179 (gather_memory_references_ref): Likewise.
20181 2017-05-18 Martin Liska <mliska@suse.cz>
20183 * vec.h (struct vnull): Use it.
20185 2017-05-18 Jan Hubicka <hubicka@ucw.cz>
20187 * ipa-inline-analysis.c (predicate_conditions): Move to ipa-inline.h
20188 (true_predicate, false_predicate, true_predicate_p,
20189 false_predicate_p): Remove.
20190 (single_cond_predicate, not_inlined_predicate): Turn to member function
20192 (add_condition): Update.
20193 (add_clause): Turn to...
20194 (predicate::add_clause): ... this one; update; allow passing NULL
20196 (and_predicates): Turn to ...
20197 (predicate::operator &=): ... this one.
20198 (predicates_equal_p): Move to predicate::operator == in ipa-inline.h
20199 (or_predicates): Turn to ...
20200 (predicate::or_with): ... this one.
20201 (evaluate_predicate): Turn to ...
20202 (predicate::evaluate): ... this one.
20203 (predicate_probability): Turn to ...
20204 (predicate::probability): ... this one.
20205 (dump_condition): Update.
20206 (dump_predicate): Turn to ...
20207 (predicate::dump): ... this one.
20208 (account_size_time): Update.
20209 (edge_set_predicate): Update.
20210 (set_hint_predicate): UPdate.
20211 (evaluate_conditions_for_known_args): Update.
20212 (evaluate_properties_for_edge): Update.
20213 (remap_predicate_after_duplication): Turn to...
20214 (predicate::remap_after_duplication): ... this one.
20215 (remap_hint_predicate_after_duplication): Update.
20216 (inline_summary_t::duplicate): UPdate.
20217 (dump_inline_edge_summary): Update.
20218 (dump_inline_summary): Update.
20219 (set_cond_stmt_execution_predicate): Update.
20220 (set_switch_stmt_execution_predicate): Update.
20221 (compute_bb_predicates): Update.
20222 (will_be_nonconstant_expr_predicate): Update.
20223 (will_be_nonconstant_predicate): Update.
20224 (phi_result_unknown_predicate): Update.
20225 (predicate_for_phi_result): Update.
20226 (array_index_predicate): Update.
20227 (estimate_function_body_sizes): Update.
20228 (estimate_node_size_and_time): Update.
20229 (estimate_ipcp_clone_size_and_time): Update.
20230 (remap_predicate): Rename to ...
20231 (predicate::remap_after_inlining): ... this one.
20232 (remap_hint_predicate): Update.
20233 (inline_merge_summary): Update.
20234 (inline_update_overall_summary): Update.
20235 (estimate_size_after_inlining): Update.
20236 (read_predicate): Rename to ...
20237 (predicate::stream_in): ... this one.
20238 (read_inline_edge_summary): Update.
20239 (write_predicate): Rename to ...
20240 (predicate::stream_out): ... this one.
20241 (write_inline_edge_summary): Update.
20242 * ipa-inline.h (MAX_CLAUSES): Turn to predicate::max_clauses.
20243 (clause_t): Turn to uint32_t
20244 (predicate): Turn to class; implement constructor and operators
20246 (size_time_entry): Update.
20247 (inline_summary): Update.
20248 (inline_edge_summary): Update.
20250 2017-05-18 Marc Glisse <marc.glisse@inria.fr>
20252 * fold-const.c (fold_binary_loc): Move transformation...
20253 * match.pd (C - X CMP X): ... here.
20255 2017-05-18 Sheldon Lobo <sheldon.lobo@oracle.com>
20257 * config/sparc/sparc.c (sparc_option_override): Set function
20258 alignment for -mcpu=niagara7 to 64 to match the I$ line.
20259 * config/sparc/sparc.h (BRANCH_COST): Set the SPARC M7 branch
20261 * config/sparc/sparc.h (BRANCH_COST): Set the SPARC T4 branch
20263 * config/sparc/sol2.h: Fix a ASM_CPU32_DEFAULT_SPEC typo.
20265 2017-05-18 Marek Polacek <polacek@redhat.com>
20268 * ubsan.c (instrument_null): Unwrap ADDR_EXPRs.
20269 (pass_ubsan::execute): Call gimple_assign_single_p instead of
20270 gimple_assign_load_p.
20272 2017-05-17 Segher Boessenkool <segher@kernel.crashing.org>
20274 PR middle-end/80692
20275 * real.c (do_compare): Give decimal_do_compare preference over
20276 comparing just the signs.
20278 2017-05-17 Uros Bizjak <ubizjak@gmail.com>
20280 * doc/md.texi (Canonicalization of Instructions): Describe the
20281 canonical form of instructions that inherently set a condition
20284 2017-05-17 Peter Bergner <bergner@vnet.ibm.com>
20286 PR middle-end/80775
20287 * tree-cfg.c: Move deletion of unreachable case statements to after
20288 the merging of consecutive case labels.
20290 2017-05-17 Thomas Preud'homme <thomas.preudhomme@arm.com>
20292 * config/arm/arm.c (cmse_nonsecure_call_clear_caller_saved): Refer
20293 readers to __gnu_cmse_nonsecure_call libcall for saving, clearing and
20294 restoring of callee-saved registers.
20296 2017-05-17 Eric Botcazou <ebotcazou@adacore.com>
20298 * compare-elim.c (equivalent_reg_at_start): Adjust outdated comment.
20299 * config/visium/visium.c (single_set_and_flags): Likewise.
20300 * config/visium/visium.md (Substitutions): Likewise.
20302 2017-05-17 Martin Liska <mliska@suse.cz>
20304 * cfg.c: Introduce dump_flags_t type and
20305 use it instead of int type.
20307 * cfghooks.c: Likewise.
20308 * cfghooks.h (struct cfg_hooks): Likewise.
20309 * cfgrtl.c: Likewise.
20310 * cfgrtl.h: Likewise.
20311 * cgraph.c (cgraph_node::get_body): Likewise.
20312 * coretypes.h: Likewise.
20313 * domwalk.c: Likewise.
20314 * domwalk.h: Likewise.
20315 * dumpfile.c (struct dump_option_value_info): Likewise.
20316 (dump_enable_all): Likewise.
20317 (dump_switch_p_1): Likewise.
20318 (opt_info_switch_p): Likewise.
20319 * dumpfile.h (enum tree_dump_index): Likewise.
20320 (struct dump_file_info): Likewise.
20321 * genemit.c: Likewise.
20322 * generic-match-head.c: Likewise.
20323 * gengtype.c (open_base_files): Likewise.
20324 * gimple-pretty-print.c: Likewise.
20325 * gimple-pretty-print.h: Likewise.
20326 * graph.c (print_graph_cfg): Likewise.
20327 * graphite-scop-detection.c (dot_all_sese): Likewise.
20328 * ipa-devirt.c (build_type_inheritance_graph): Likewise.
20329 * loop-unroll.c (report_unroll): Likewise.
20330 * passes.c (pass_manager::register_one_dump_file): Likewise.
20331 * print-tree.c: Likewise.
20332 * statistics.c: Likewise.
20333 * tree-cfg.c: Likewise.
20334 * tree-cfg.h: Likewise.
20335 * tree-dfa.c: Likewise.
20336 * tree-dfa.h: Likewise.
20337 * tree-dump.c (dump_function): Likewise.
20338 * tree-dump.h (struct dump_info): Likewise.
20339 * tree-pretty-print.c: Likewise.
20340 * tree-pretty-print.h: Likewise.
20341 * tree-ssa-live.c: Likewise.
20342 * tree-ssa-live.h: Likewise.
20343 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Likewise.
20344 * tree-vect-loop.c: Likewise.
20345 * tree-vect-slp.c: Likewise.
20347 2017-05-16 James Greenhalgh <james.greenhalgh@arm.com>
20348 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
20350 PR tree-optimization/80457
20351 * tree-vect-stmts.c (vect_model_simple_cost): Model the cost
20352 of all arguments to a statement as scalar_to_vec operations.
20353 (vectorizable_call): Adjust call to vect_model_simple_cost for
20355 (vectorizable_conversion): Likewise.
20356 (vectorizable_assignment): Likewise.
20357 (vectorizable_shift): Likewise.
20358 (vectorizable_operation): Likewise.
20359 (vectorizable_comparison): Likewise.
20360 (vect_is_simple_cond): Record the def types for operands.
20361 (vectorizable_condition): Likewise, call vect_model_simple_cost.
20362 * tree-vectorizer.h (vect_model_simple_cost): Add new parameter
20363 for statement argument count.
20365 2017-05-16 Carl Love <cel@us.ibm.com>
20367 * config/rs6000/rs6000-c: Add support for built-in functions
20368 vector unsigned long long vec_bperm (vector unsigned long long,
20369 vector unsigned char)
20370 vector signed long long vec_mule (vector signed int,
20372 vector unsigned long long vec_mule (vector unsigned int,
20373 vector unsigned int)
20374 vector signed long long vec_mulo (vector signed int,
20376 vector unsigned long long vec_mulo (vector unsigned int,
20377 vector unsigned int)
20378 vector signed char vec_sldw (vector signed char,
20379 vector signed char,
20381 vector unsigned char vec_sldw (vector unsigned char,
20382 vector unsigned char,
20384 vector signed short vec_sldw (vector signed short,
20385 vector signed short,
20387 vector unsigned short vec_sldw (vector unsigned short,
20388 vector unsigned short,
20390 vector signed int vec_sldw (vector signed int,
20393 vector unsigned int vec_sldw (vector unsigned int,
20394 vector unsigned int,
20396 vector signed long long vec_sldw (vector signed long long,
20397 vector signed long long,
20399 vector unsigned long long vec_sldw (vector unsigned long long,
20400 vector unsigned long long,
20402 * config/rs6000/rs6000-c: Add support for built-in functions
20403 * config/rs6000/rs6000-builtin.def: Add definition for SLDW.
20404 * config/rs6000/altivec.h: Add defintion for vec_sldw.
20405 * doc/extend.texi: Update the built-in documentation for the
20406 new built-in functions.
20408 2017-05-16 Marek Polacek <polacek@redhat.com>
20412 * tree.c (save_expr): Don't fold the expression.
20414 2017-05-16 Uros Bizjak <ubizjak@gmail.com>
20416 * config/i386/i386.md (*movsi_internal): Split (?rm,*y) alternative
20417 to (?r,*Yn) and (?m,*y) alternatives, and (?*y,rm) to (?*Ym,r)
20418 and (?*y,m). Update insn attributes.
20420 2017-05-16 Martin Liska <mliska@suse.cz>
20422 * cgraph.c (cgraph_edge::resolve_speculation): Add default value for
20423 flags argument of print_gimple_stmt, print_gimple_expr,
20424 print_generic_stmt and print_generic_expr.
20425 * cgraphclones.c (symbol_table::materialize_all_clones): Likewise.
20426 * coretypes.h: Likewise.
20427 * except.c (dump_eh_tree): Likewise.
20428 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Likewise.
20429 * gimple-pretty-print.h: Likewise.
20430 * gimple-ssa-backprop.c (dump_usage_prefix): Likewise.
20431 (backprop::push_to_worklist): Likewise.
20432 (backprop::pop_from_worklist): Likewise.
20433 (backprop::process_use): Likewise.
20434 (backprop::intersect_uses): Likewise.
20435 (note_replacement): Likewise.
20436 * gimple-ssa-store-merging.c
20437 (pass_store_merging::terminate_all_aliasing_chains): Likewise.
20438 (imm_store_chain_info::coalesce_immediate_stores): Likewise.
20439 (pass_store_merging::execute): Likewise.
20440 * gimple-ssa-strength-reduction.c (dump_candidate): Likewise.
20441 (ssa_base_cand_dump_callback): Likewise.
20442 (dump_incr_vec): Likewise.
20443 (replace_refs): Likewise.
20444 (replace_mult_candidate): Likewise.
20445 (create_add_on_incoming_edge): Likewise.
20446 (create_phi_basis): Likewise.
20447 (insert_initializers): Likewise.
20448 (all_phi_incrs_profitable): Likewise.
20449 (introduce_cast_before_cand): Likewise.
20450 (replace_one_candidate): Likewise.
20451 * gimplify.c (gimplify_expr): Likewise.
20452 * graphite-isl-ast-to-gimple.c (is_valid_rename): Likewise.
20453 (set_rename): Likewise.
20454 (rename_uses): Likewise.
20455 (copy_loop_phi_nodes): Likewise.
20456 (add_close_phis_to_merge_points): Likewise.
20457 (copy_loop_close_phi_args): Likewise.
20458 (copy_cond_phi_args): Likewise.
20459 (graphite_copy_stmts_from_block): Likewise.
20460 (translate_pending_phi_nodes): Likewise.
20461 * graphite-poly.c (print_pdr): Likewise.
20462 (dump_gbb_cases): Likewise.
20463 (dump_gbb_conditions): Likewise.
20464 (print_scop_params): Likewise.
20465 * graphite-scop-detection.c (build_cross_bb_scalars_def): Likewise.
20466 (build_cross_bb_scalars_use): Likewise.
20467 (gather_bbs::before_dom_children): Likewise.
20468 * hsa-dump.c (dump_hsa_immed): Likewise.
20469 * ipa-cp.c (print_ipcp_constant_value): Likewise.
20470 (get_replacement_map): Likewise.
20471 * ipa-inline-analysis.c (dump_condition): Likewise.
20472 (estimate_function_body_sizes): Likewise.
20473 * ipa-polymorphic-call.c (check_stmt_for_type_change): Likewise.
20474 (ipa_polymorphic_call_context::get_dynamic_type): Likewise.
20475 * ipa-prop.c (ipa_dump_param): Likewise.
20476 (ipa_print_node_jump_functions_for_edge): Likewise.
20477 (ipa_modify_call_arguments): Likewise.
20478 (ipa_modify_expr): Likewise.
20479 (ipa_dump_param_adjustments): Likewise.
20480 (ipa_dump_agg_replacement_values): Likewise.
20481 (ipcp_modif_dom_walker::before_dom_children): Likewise.
20482 * ipa-pure-const.c (check_stmt): Likewise.
20483 (pass_nothrow::execute): Likewise.
20484 * ipa-split.c (execute_split_functions): Likewise.
20485 * omp-offload.c (dump_oacc_loop_part): Likewise.
20486 (dump_oacc_loop): Likewise.
20487 * trans-mem.c (tm_log_emit): Likewise.
20488 (tm_memopt_accumulate_memops): Likewise.
20489 (dump_tm_memopt_set): Likewise.
20490 (dump_tm_memopt_transform): Likewise.
20491 * tree-cfg.c (gimple_verify_flow_info): Likewise.
20492 (print_loop): Likewise.
20493 * tree-chkp-opt.c (chkp_print_addr): Likewise.
20494 (chkp_gather_checks_info): Likewise.
20495 (chkp_get_check_result): Likewise.
20496 (chkp_remove_check_if_pass): Likewise.
20497 (chkp_use_outer_bounds_if_possible): Likewise.
20498 (chkp_reduce_bounds_lifetime): Likewise.
20499 * tree-chkp.c (chkp_register_addr_bounds): Likewise.
20500 (chkp_mark_completed_bounds): Likewise.
20501 (chkp_register_incomplete_bounds): Likewise.
20502 (chkp_mark_invalid_bounds): Likewise.
20503 (chkp_maybe_copy_and_register_bounds): Likewise.
20504 (chkp_build_returned_bound): Likewise.
20505 (chkp_get_bound_for_parm): Likewise.
20506 (chkp_build_bndldx): Likewise.
20507 (chkp_get_bounds_by_definition): Likewise.
20508 (chkp_generate_extern_var_bounds): Likewise.
20509 (chkp_get_bounds_for_decl_addr): Likewise.
20510 * tree-chrec.c (chrec_apply): Likewise.
20511 * tree-data-ref.c (dump_data_reference): Likewise.
20512 (dump_subscript): Likewise.
20513 (dump_data_dependence_relation): Likewise.
20514 (analyze_overlapping_iterations): Likewise.
20515 * tree-inline.c (expand_call_inline): Likewise.
20516 (tree_function_versioning): Likewise.
20517 * tree-into-ssa.c (dump_defs_stack): Likewise.
20518 (dump_currdefs): Likewise.
20519 (dump_names_replaced_by): Likewise.
20520 (dump_update_ssa): Likewise.
20521 (update_ssa): Likewise.
20522 * tree-object-size.c (pass_object_sizes::execute): Likewise.
20523 * tree-parloops.c (build_new_reduction): Likewise.
20524 (try_create_reduction_list): Likewise.
20525 (ref_conflicts_with_region): Likewise.
20526 (oacc_entry_exit_ok_1): Likewise.
20527 (oacc_entry_exit_single_gang): Likewise.
20528 * tree-pretty-print.h: Likewise.
20529 * tree-scalar-evolution.c (set_scalar_evolution): Likewise.
20530 (get_scalar_evolution): Likewise.
20531 (add_to_evolution): Likewise.
20532 (get_loop_exit_condition): Likewise.
20533 (analyze_evolution_in_loop): Likewise.
20534 (analyze_initial_condition): Likewise.
20535 (analyze_scalar_evolution): Likewise.
20536 (instantiate_scev): Likewise.
20537 (number_of_latch_executions): Likewise.
20538 (gather_chrec_stats): Likewise.
20539 (final_value_replacement_loop): Likewise.
20540 (scev_const_prop): Likewise.
20541 * tree-sra.c (dump_access): Likewise.
20542 (disqualify_candidate): Likewise.
20543 (create_access): Likewise.
20544 (reject): Likewise.
20545 (maybe_add_sra_candidate): Likewise.
20546 (create_access_replacement): Likewise.
20547 (analyze_access_subtree): Likewise.
20548 (analyze_all_variable_accesses): Likewise.
20549 (sra_modify_assign): Likewise.
20550 (initialize_constant_pool_replacements): Likewise.
20551 (find_param_candidates): Likewise.
20552 (decide_one_param_reduction): Likewise.
20553 (replace_removed_params_ssa_names): Likewise.
20554 * tree-ssa-ccp.c (ccp_fold_stmt): Likewise.
20555 * tree-ssa-copy.c (dump_copy_of): Likewise.
20556 (copy_prop_visit_cond_stmt): Likewise.
20557 * tree-ssa-dce.c (mark_operand_necessary): Likewise.
20558 * tree-ssa-dom.c (pass_dominator::execute): Likewise.
20559 (record_equivalences_from_stmt): Likewise.
20560 * tree-ssa-dse.c (compute_trims): Likewise.
20561 (delete_dead_call): Likewise.
20562 (delete_dead_assignment): Likewise.
20563 * tree-ssa-forwprop.c (forward_propagate_into_gimple_cond): Likewise.
20564 (forward_propagate_into_cond): Likewise.
20565 (pass_forwprop::execute): Likewise.
20566 * tree-ssa-ifcombine.c (ifcombine_ifandif): Likewise.
20567 * tree-ssa-loop-im.c (invariantness_dom_walker::before_dom_children):
20569 (move_computations_worker): Likewise.
20570 (execute_sm): Likewise.
20571 * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Likewise.
20572 (remove_exits_and_undefined_stmts): Likewise.
20573 (remove_redundant_iv_tests): Likewise.
20574 * tree-ssa-loop-ivopts.c (dump_use): Likewise.
20575 (adjust_iv_update_pos): Likewise.
20576 * tree-ssa-math-opts.c (bswap_replace): Likewise.
20577 * tree-ssa-phiopt.c (factor_out_conditional_conversion): Likewise.
20578 (value_replacement): Likewise.
20579 * tree-ssa-phiprop.c (phiprop_insert_phi): Likewise.
20580 * tree-ssa-pre.c (print_pre_expr): Likewise.
20581 (get_representative_for): Likewise.
20582 (create_expression_by_pieces): Likewise.
20583 (insert_into_preds_of_block): Likewise.
20584 (eliminate_insert): Likewise.
20585 (eliminate_dom_walker::before_dom_children): Likewise.
20586 (eliminate): Likewise.
20587 (remove_dead_inserted_code): Likewise.
20588 * tree-ssa-propagate.c (substitute_and_fold): Likewise.
20589 * tree-ssa-reassoc.c (get_rank): Likewise.
20590 (eliminate_duplicate_pair): Likewise.
20591 (eliminate_plus_minus_pair): Likewise.
20592 (eliminate_not_pairs): Likewise.
20593 (undistribute_ops_list): Likewise.
20594 (eliminate_redundant_comparison): Likewise.
20595 (update_range_test): Likewise.
20596 (optimize_range_tests_var_bound): Likewise.
20597 (optimize_vec_cond_expr): Likewise.
20598 (rewrite_expr_tree): Likewise.
20599 (rewrite_expr_tree_parallel): Likewise.
20600 (linearize_expr): Likewise.
20601 (break_up_subtract): Likewise.
20602 (linearize_expr_tree): Likewise.
20603 (attempt_builtin_powi): Likewise.
20604 (attempt_builtin_copysign): Likewise.
20605 (transform_stmt_to_copy): Likewise.
20606 (transform_stmt_to_multiply): Likewise.
20607 (dump_ops_vector): Likewise.
20608 * tree-ssa-sccvn.c (vn_nary_build_or_lookup_1): Likewise.
20609 (print_scc): Likewise.
20610 (set_ssa_val_to): Likewise.
20611 (visit_reference_op_store): Likewise.
20612 (visit_use): Likewise.
20613 (sccvn_dom_walker::before_dom_children): Likewise.
20614 (run_scc_vn): Likewise.
20615 * tree-ssa-scopedtables.c (avail_exprs_stack::lookup_avail_expr):
20617 (expr_hash_elt::print): Likewise.
20618 (const_and_copies::pop_to_marker): Likewise.
20619 (const_and_copies::record_const_or_copy_raw): Likewise.
20620 * tree-ssa-structalias.c (compute_dependence_clique): Likewise.
20621 * tree-ssa-uninit.c (collect_phi_def_edges): Likewise.
20622 (dump_predicates): Likewise.
20623 (find_uninit_use): Likewise.
20624 (warn_uninitialized_phi): Likewise.
20625 (pass_late_warn_uninitialized::execute): Likewise.
20626 * tree-ssa.c (verify_vssa): Likewise.
20627 (verify_ssa): Likewise.
20628 (maybe_optimize_var): Likewise.
20629 * tree-vrp.c (dump_value_range): Likewise.
20630 (dump_all_value_ranges): Likewise.
20631 (dump_asserts_for): Likewise.
20632 (register_edge_assert_for_2): Likewise.
20633 (vrp_visit_cond_stmt): Likewise.
20634 (vrp_visit_switch_stmt): Likewise.
20635 (vrp_visit_stmt): Likewise.
20636 (vrp_visit_phi_node): Likewise.
20637 (simplify_cond_using_ranges_1): Likewise.
20638 (fold_predicate_in): Likewise.
20639 (evrp_dom_walker::before_dom_children): Likewise.
20640 (evrp_dom_walker::push_value_range): Likewise.
20641 (evrp_dom_walker::pop_value_range): Likewise.
20642 (execute_early_vrp): Likewise.
20644 2017-05-16 Richard Biener <rguenther@suse.de>
20646 * dwarf2out.c (loc_list_from_tree_1): Do not create
20647 DW_OP_GNU_variable_value for DECL_IGNORED_P decls.
20649 2017-05-16 Richard Biener <rguenther@suse.de>
20651 * dwarf2out.c (resolve_variable_value_in_expr): Lookup DIE
20653 (note_variable_value_in_expr): If we resolved the decl ref
20654 do not push to the stack.
20656 2017-05-16 Matthew Wahab <matthew.wahab@arm.com>
20658 * config/arm/arm_neon.h (vadd_f16): Use standard arithmetic
20659 operations in fast-math mode.
20660 (vaddq_f16): Likewise.
20661 (vmul_f16): Likewise.
20662 (vmulq_f16): Likewise.
20663 (vsub_f16): Likewise.
20664 (vsubq_f16): Likewise.
20665 * config/arm/neon.md (add<mode>3): New.
20667 (fma:<VH:mode>3): New. Also remove outdated comment.
20670 2017-05-16 Martin Liska <mliska@suse.cz>
20674 * ipa-devirt.c (warn_types_mismatch): Fix typo.
20675 (odr_types_equivalent_p): Likewise.
20677 2017-05-15 Sylvestre Ledru <sylvestre@debian.org>
20679 * plugin.c (try_init_one_plugin): Fix ressource leaks (CID 726637).
20681 2017-05-15 Uros Bizjak <ubizjak@gmail.com>
20684 * config/i386.i386.md (*zero_extendsidi2): Do not penalize
20685 non-interunit SSE move alternatives with '?'.
20686 (zero-extendsidi peephole2): New peephole to skip intermediate
20687 general register in SSE zero-extend sequence.
20689 2017-05-15 Jeff Law <law@redhat.com>
20691 * reorg.c (relax_delay_slots): Create a new variable to hold
20692 the temporary target rather than clobbering TARGET_LABEL.
20694 * config/tilegx/tilegx.c (tilegx_expand_unaligned_load): Add
20695 missing argument to extract_bit_field call.
20696 * config/tilepro/tilepro.c (tilepro_expand_unaligned_load): Likewise.
20698 2017-05-15 Martin Liska <mliska@suse.cz>
20701 * gcc.c (process_command): Do not allow empty argument of -o option.
20703 2017-05-15 Renlin Li <renlin.li@arm.com>
20705 * config/aarch64/aarch64-protos.h (aarch64_expand_call): Declare.
20706 * config/aarch64/aarch64.c (aarch64_expand_call): Define.
20707 * config/aarch64/constraints.md (Usf): Add long call check.
20708 * config/aarch64/aarch64.md (call): Use aarch64_expand_call.
20709 (call_value): Likewise.
20710 (sibcall): Likewise.
20711 (sibcall_value): Likewise.
20713 (call_value_insn): New.
20714 (sibcall_insn): Update rtx pattern.
20715 (sibcall_value_insn): Likewise.
20716 (call_internal): Remove.
20717 (call_value_internal): Likewise.
20718 (sibcall_internal): Likewise.
20719 (sibcall_value_internal): Likewise.
20720 (call_reg): Likewise.
20721 (call_symbol): Likewise.
20722 (call_value_reg): Likewise.
20723 (call_value_symbol): Likewise.
20725 2017-05-14 Krister Walfridsson <krister.walfridsson@gmail.com>
20728 * config/netbsd.h (NETBSD_LIBGCC_SPEC): Always add -lgcc.
20730 2017-05-14 Uros Bizjak <ubizjak@gmail.com>
20732 * config/i386.i386.c (ix86_cc_modes_compatible): CCNOmode is
20733 compatible with CCGOCmode and with CCZmode.
20735 2017-05-14 Martin Sebor <msebor@redhat.com>
20737 PR middle-end/77671
20738 * gimple-fold.c (gimple_fold_builtin_sprintf): Make extern.
20739 (gimple_fold_builtin_snprintf): Same.
20740 * gimple-fold.h (gimple_fold_builtin_sprintf): Declare.
20741 (gimple_fold_builtin_snprintf): Same.
20742 * gimple-ssa-sprintf.c (get_format_string): Correct the detection
20743 of character types.
20744 (is_call_safe): New function.
20745 (try_substitute_return_value): Call it.
20746 (try_simplify_call): New function.
20747 (pass_sprintf_length::handle_gimple_call): Call it.
20749 2017-05-14 Martin Sebor <msebor@redhat.com>
20751 PR middle-end/80669
20752 * builtins.c (expand_builtin_stpncpy): Simplify.
20754 2017-05-14 Daniel Santos <daniel.santos@pobox.com>
20756 * config/i386/i386.opt: Add option -mcall-ms2sysv-xlogues.
20757 * config/i386/i386.h
20758 (x86_64_ms_sysv_extra_clobbered_registers): Change type to unsigned.
20759 (NUM_X86_64_MS_CLOBBERED_REGS): New macro.
20760 (struct machine_function): Add new members call_ms2sysv,
20761 call_ms2sysv_pad_in, call_ms2sysv_pad_out and call_ms2sysv_extra_regs.
20762 (struct machine_frame_state): New fields sp_realigned and
20763 sp_realigned_offset.
20764 * config/i386/i386.c
20765 (enum xlogue_stub): New enum.
20766 (enum xlogue_stub_sets): New enum.
20767 (class xlogue_layout): New class.
20768 (struct ix86_frame): New fields stack_realign_allocate_offset,
20769 stack_realign_offset and outlined_save_offset. Modify comments to
20770 detail stack layout when using out-of-line stubs.
20771 (ix86_target_string): Add -mcall-ms2sysv-xlogues option.
20772 (ix86_option_override_internal): Add sorry() for TARGET_SEH and
20773 -mcall-ms2sysv-xlogues.
20774 (stub_managed_regs): New static variable.
20775 (ix86_save_reg): Add new parameter ignore_outlined to optionally omit
20776 registers managed by out-of-line stub.
20777 (disable_call_ms2sysv_xlogues): New function.
20778 (ix86_compute_frame_layout): Modify re-alignment calculations, disable
20779 m->call_ms2sysv when appropriate and compute frame layout for
20781 (sp_valid_at, fp_valid_at): New inline functions.
20782 (choose_basereg): New function.
20783 (choose_baseaddr): Add align parameter, use choose_basereg and modify
20785 (ix86_emit_save_reg_using_mov, ix86_emit_restore_sse_regs_using_mov):
20786 Use align parameter of choose_baseaddr to generated aligned SSE movs
20788 (pro_epilogue_adjust_stack): Modify to track
20789 machine_frame_state::sp_realigned.
20790 (ix86_nsaved_regs): Modify to accommodate changes to ix86_save_reg.
20791 (ix86_nsaved_sseregs): Likewise.
20792 (ix86_emit_save_regs): Likewise.
20793 (ix86_emit_save_regs_using_mov): Likewise.
20794 (ix86_emit_save_sse_regs_using_mov): Likewise.
20795 (get_scratch_register_on_entry): Likewise.
20796 (gen_frame_set): New function.
20797 (gen_frame_load): Likewise.
20798 (gen_frame_store): Likewise.
20799 (emit_outlined_ms2sysv_save): Likewise.
20800 (emit_outlined_ms2sysv_restore): Likewise.
20801 (ix86_expand_prologue): Modify stack re-alignment code and call
20802 emit_outlined_ms2sysv_save when appropriate.
20803 (ix86_emit_leave): Clear machine_frame_state::sp_realigned. Add
20804 parameter rtx_insn *insn, which allows the function to be used to only
20805 generate the notes.
20806 (ix86_expand_epilogue): Modify validity checks of frame and stack
20807 pointers, and call emit_outlined_ms2sysv_restore when appropriate.
20808 (ix86_expand_call): Modify to enable m->call_ms2sysv when appropriate.
20809 * config/i386/predicates.md
20810 (save_multiple): New predicate.
20811 (restore_multiple): Likewise.
20812 * config/i386/sse.md
20813 (save_multiple<mode>): New pattern.
20814 (save_multiple_realign<mode>): Likewise.
20815 (restore_multiple<mode>): Likewise.
20816 (restore_multiple_and_return<mode>): Likewise.
20817 (restore_multiple_leave_return<mode>): Likewise.
20818 * Makefile.in: Export HOSTCXX and HOSTCXXFLAGS to site.exp
20820 2017-05-14 Julia Koval <julia.koval@intel.com>
20822 * config/i386/i386-builtin-types.def (VOID_FTYPE_INT_INT64): New type.
20823 * config/i386/i386-builtin.def (__builtin_ia32_xgetbv)
20824 (__builtin_ia32_xsetbv): New builtins.
20825 * config/i386/i386.c (ix86_expand_special_args_builtin):
20827 (ix86_expand_builtin): Special expand for new intrinsics.
20828 * config/i386/i386.md (UNSPECV_XGETBV, UNSPECV_XSETBV): New.
20829 (xsetbv, xsetbv_rex64, xgetbv, xgetbv_rex64): New insn patterns.
20830 * config/i386/xsaveintrin.h (_xsetbv, _getbv): New intrinsics.
20832 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20834 * cfganal.c (inverted_post_order_compute): Change argument type
20836 * cfganal.h (inverted_post_order_compute): Adjust prototype.
20837 * df-core.c (rest_of_handle_df_initialize): Adjust.
20838 (rest_of_handle_df_finish): Likewise.
20839 (df_analyze_1): Likewise.
20840 (df_analyze): Likewise.
20841 (loop_inverted_post_order_compute): Change argument to be a vec *.
20842 (df_analyze_loop): Adjust.
20843 (df_get_n_blocks): Likewise.
20844 (df_get_postorder): Likewise.
20845 * df.h (struct df_d): Change field to be a vec.
20846 * lcm.c (compute_laterin): Adjust.
20847 (compute_available): Likewise.
20848 * lra-lives.c (lra_create_live_ranges_1): Likewise.
20849 * tree-ssa-dce.c (remove_dead_stmt): Likewise.
20850 * tree-ssa-pre.c (compute_antic): Likewise.
20852 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20854 * cfganal.c (connect_infinite_loops_to_exit): Adjust.
20855 (depth_first_search::depth_first_search): Change structure init
20856 function to this constructor.
20857 (depth_first_search::add_bb): Rename function to this member.
20858 (depth_first_search::execute): Likewise.
20859 (flow_dfs_compute_reverse_finish): Adjust.
20861 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20863 * ddg.c (find_nodes_on_paths): Use auto_sbitmap.
20864 (longest_simple_path): Likewise.
20865 * shrink-wrap.c (spread_components): Likewise.
20866 (disqualify_problematic_components): Likewise.
20867 (emit_common_heads_for_components): Likewise.
20868 (emit_common_tails_for_components): Likewise.
20869 (insert_prologue_epilogue_for_components): Likewise.
20871 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20873 * tree-ssa-dse.c (dse_dom_walker): Make m_live_byes a
20876 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20878 * df-core.c (df_set_blocks): Start using auto_bitmap.
20879 (df_compact_blocks): Likewise.
20880 * df-problems.c (df_rd_confluence_n): Likewise.
20881 * df-scan.c (df_insn_rescan_all): Likewise.
20882 (df_process_deferred_rescans): Likewise.
20883 (df_update_entry_block_defs): Likewise.
20884 (df_update_exit_block_uses): Likewise.
20885 (df_entry_block_bitmap_verify): Likewise.
20886 (df_exit_block_bitmap_verify): Likewise.
20887 (df_scan_verify): Likewise.
20888 * lra-constraints.c (lra_constraints): Likewise.
20889 (undo_optional_reloads): Likewise.
20890 (lra_undo_inheritance): Likewise.
20891 * lra-remat.c (calculate_gen_cands): Likewise.
20892 (do_remat): Likewise.
20893 * lra-spills.c (assign_spill_hard_regs): Likewise.
20894 (spill_pseudos): Likewise.
20895 * tree-ssa-pre.c (bitmap_set_and): Likewise.
20896 (bitmap_set_subtract_values): Likewise.
20898 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20900 * haifa-sched.c (estimate_shadow_tick): Replace manual bitmap
20901 management with auto_bitmap.
20902 (fix_inter_tick): Likewise.
20903 (fix_recovery_deps): Likewise.
20904 * ira.c (add_store_equivs): Likewise.
20905 (find_moveable_pseudos): Likewise.
20906 (split_live_ranges_for_shrink_wrap): Likewise.
20907 * print-rtl.c (rtx_reuse_manager::rtx_reuse_manager): Likewise.
20908 (rtx_reuse_manager::seen_def_p): Likewise.
20909 (rtx_reuse_manager::set_seen_def): Likewise.
20910 * print-rtl.h (class rtx_reuse_manager): Likewise.
20912 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20914 * bt-load.c (combine_btr_defs): Use auto_bitmap to manage bitmap
20916 (migrate_btr_def): Likewise.
20917 * cfgloop.c (get_loop_body_in_bfs_order): Likewise.
20918 * df-core.c (loop_post_order_compute): Likewise.
20919 (loop_inverted_post_order_compute): Likewise.
20920 * hsa-common.h: Likewise.
20921 * hsa-gen.c (hsa_bb::~hsa_bb): Likewise.
20922 * init-regs.c (initialize_uninitialized_regs): Likewise.
20923 * ipa-inline.c (resolve_noninline_speculation): Likewise.
20924 (inline_small_functions): Likewise.
20925 * ipa-reference.c (ipa_reference_write_optimization_summary): Likewise.
20926 * ira.c (combine_and_move_insns): Likewise.
20927 (build_insn_chain): Likewise.
20928 * loop-invariant.c (find_invariants): Likewise.
20929 * lower-subreg.c (propagate_pseudo_copies): Likewise.
20930 * predict.c (tree_predict_by_opcode): Likewise.
20931 (predict_paths_leading_to): Likewise.
20932 (predict_paths_leading_to_edge): Likewise.
20933 (estimate_loops_at_level): Likewise.
20934 (estimate_loops): Likewise.
20935 * shrink-wrap.c (try_shrink_wrapping): Likewise.
20936 (spread_components): Likewise.
20937 * tree-cfg.c (remove_edge_and_dominated_blocks): Likewise.
20938 * tree-loop-distribution.c (rdg_build_partitions): Likewise.
20939 * tree-predcom.c (tree_predictive_commoning_loop): Likewise.
20940 * tree-ssa-coalesce.c (coalesce_ssa_name): Likewise.
20941 * tree-ssa-phionlycprop.c (pass_phi_only_cprop::execute): Likewise.
20942 * tree-ssa-pre.c (remove_dead_inserted_code): Likewise.
20943 * tree-ssa-sink.c (nearest_common_dominator_of_uses): Likewise.
20944 * tree-ssa-threadupdate.c (compute_path_counts): Likewise.
20945 (mark_threaded_blocks): Likewise.
20946 (thread_through_all_blocks): Likewise.
20947 * tree-ssa.c (verify_ssa): Likewise.
20948 (execute_update_addresses_taken): Likewise.
20949 * tree-ssanames.c (verify_ssaname_freelists): Likewise.
20951 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20953 * cfganal.c (mark_dfs_back_edges): Replace manual stack with
20955 (post_order_compute): Likewise.
20956 (inverted_post_order_compute): Likewise.
20957 (pre_and_rev_post_order_compute_fn): Likewise.
20959 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20961 * genrecog.c (int_set::int_set): Explicitly construct our
20962 auto_vec base class.
20963 * vec.h (auto_vec::auto_vec): New constructor.
20965 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20967 * bitmap.h (class auto_bitmap): New constructor taking
20968 bitmap_obstack * argument.
20970 2017-05-13 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
20972 * bitmap.h (class auto_bitmap): Change type of m_bits to
20973 bitmap_head, and adjust ctor / dtor and member operators.
20975 2017-05-13 Uros Bizjak <ubizjak@gmail.com>
20977 * compare-elim.c (equivalent_reg_at_start): Return NULL_RTX
20978 when returned register mode doesn't match original mode.
20980 2017-05-12 Jeff Law <law@redhat.com>
20981 Jakub Jelinek <jakub@redhat.com>
20983 * config/mn10300/mn10300.c (mn10300_match_ccmode): Fix where
20984 we look for cc setter after the compare-elim changes.
20985 * config/mn10300/mn10300.md (addsi3_flags): Fix order of patterns
20986 within the vector to match what compare-elim now expects.
20987 (subsi3_flags, andsi3_flags, iorsi3_flags): Likewise.
20988 (xorsi3_flags, one_cmplsi2_flags): Likewise.
20990 * config/rx/rx.c (rx_match_ccmode): Fix where we look cc setter
20991 after the compare-elim changes.
20992 * config/rx/rx.md (abssi2_flags): Fix order of patterns within
20993 the vector to match what compare-elim now expects.
20994 (addsi3_flags, adc_flags, addsi3_flags peepholes): Likewise.
20995 (andsi3_flags, negsi2_flags, one_cmplsi2_flags): Likewise.
20996 (iorsi3_flags, rotlsi3_flags, rotrsi3_flags): Likewise.
20997 (ashrsi3_flags, lshrsi3_flags, ashlsi3_flags): Likewise.
20998 (ssaddsi3, subsi3_flags, sbb_flags, xorsi3_flags): Likewise.
21000 * config/visium/visium.c (single_set_and_flags): Fix where
21001 we look for cc setter after the compare-elim changes.
21002 * config/visium/visium.md (flags_subst_logic): Fix order of patterns
21003 with the vector to match what compare-elim now expects.
21004 (flags_subst_arith, add<mode>3_insn_set_carry): Likewise.
21005 (add<mode>3_insn_set_overflow, addsi3_insn_set_carry): Likewise.
21006 (addsi3_insn_set_overflow, sub<mode>3_insn_set_carry): Likewise.
21007 (sub<mode>3_insn_set_overflow, subsi3_insn_set_carry): Likewise.
21008 (subsi3_insn_set_overflow, negsi2_insn_set_carry): Likewise.
21009 (neg<mode>2_insn_set_overflow): Likewise.
21011 2017-05-12 Jim Wilson <jim.wilson@linaro.org>
21013 PR middle-end/79794
21014 * expmed.c (extract_bit_field_1): Add alt_rtl argument. Before
21015 maybe_expand_insn call, set ops[0].target. If still set after call,
21016 set alt_rtl. Add extra arg to recursive calls.
21017 (extract_bit_field): Add alt_rtl argument. Pass to
21019 * expmed.h (extract_bit_field): Fix prototype.
21020 * expr.c (emit_group_load_1, copy_blkmode_from_reg)
21021 (copy_blkmode_to_reg, read_complex_part, store_field): Pass extra NULL
21022 to extract_bit_field_calls.
21023 (expand_expr_real_1): Pass alt_rtl to expand_expr_real instead of 0.
21024 Pass alt_rtl to extract_bit_field calls.
21025 * calls.c (store_unaligned_arguments_into_psuedos)
21026 load_register_parameters): Pass extra NULL to extract_bit_field calls.
21027 * optabs.c (maybe_legitimize_operand): Clear op->target when call
21029 * optabs.h (struct expand_operand): Add target bitfield.
21031 2017-05-12 Uros Bizjak <ubizjak@gmail.com>
21033 * compare-elim.c (try_eliminate_compare): Canonicalize
21034 operation with embedded compare to
21035 [(set (reg:CCM) (compare:CCM (operation) (immediate)))
21036 (set (reg) (operation)].
21038 * config/i386/i386.c (TARGET_FLAGS_REGNUM): New define.
21040 2017-05-12 Uros Bizjak <ubizjak@gmail.com>
21043 * config/i386/i386.c (ix86_rtx_cost) [case PLUS]: Ignore the
21044 cost of adding a carry flag for ADC instruction.
21045 [case MINUS]: Ignore the cost of subtracting a carry flag
21046 for SBB instruction.
21048 2017-05-12 Steven Munroe <munroesj@gcc.gnu.org>
21050 * config.gcc (powerpc*-*-*): Add bmi2intrin.h, bmiintrin.h,
21052 * config/rs6000/bmiintrin.h: New file.
21053 * config/rs6000/bmi2intrin.h: New file.
21054 * config/rs6000/x86intrin.h: New file.
21056 2017-05-12 Jeff Law <law@redhat.com>
21058 * tree-vrp.c (vrp_dom_walker::before_dom_children): Push unwinding
21061 2017-05-12 Peter Bergner <bergner@vnet.ibm.com>
21063 PR middle-end/80707
21064 * tree-cfg.c: Remove cfg edges of unreachable case statements.
21066 2017-05-12 Will Schmidt <will_schmidt@vnet.ibm.com>
21068 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Add handling for
21069 early expansion of vector divide builtins.
21070 (builtin_function_type): Add VSX_BUILTIN_UDIV_V2DI to the list of
21071 builtins identified as having unsigned arguments.
21073 2017-05-12 Will Schmidt <will_schmidt@vnet.ibm.com>
21075 * config/rs6000/rs6000.c (gimple-fold.h): New #include.
21076 (rs6000_gimple_fold_builtin): Add handling for early GIMPLE
21077 expansion of vector logical operations (and, andc, or, xor,
21080 2017-05-12 Will Schmidt <will_schmidt@vnet.ibm.com>
21082 * gimple-fold.c (create_tmp_reg_or_ssa_name): Remove static declaration.
21083 * gimple-fold.h (create_tmp_reg_or_ssa_name): New prototype.
21085 2017-05-12 Will Schmidt <will_schmidt@vnet.ibm.com>
21087 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Add handling for
21088 early GIMPLE expansion of vector multiplies.
21090 2017-05-12 Prakhar Bahuguna <prakhar.bahuguna@arm.com>
21092 * config/arm/arm.md (movsi): Add TARGET_32BIT in addition to the
21093 TARGET_HAVE_MOVT conditional.
21094 (movt splitter): Likewise.
21096 2017-05-12 Richard Biener <rguenther@suse.de>
21098 * tree-ssa-sccvn.h (has_VN_INFO): Declare.
21099 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
21100 Fold all stmts not inplace.
21102 2017-05-12 Richard Biener <rguenther@suse.de>
21104 PR tree-optimization/80713
21105 * tree-ssa-pre.c (remove_dead_inserted_code): Clear
21106 inserted_exprs bit for not removed stmts.
21108 2017-05-12 Thomas Schwinge <thomas@codesourcery.com>
21110 PR middle-end/69921
21111 * tree-parloops.c (create_parallel_loop): Set "oacc kernels
21112 parallelized" attribute for parallelized OpenACC kernels.
21113 * omp-offload.c (execute_oacc_device_lower): Use it.
21115 * omp-expand.c (expand_omp_target) <GF_OMP_TARGET_KIND_OACC_KERNELS>:
21116 Set "oacc kernels" attribute.
21117 * omp-general.c (oacc_set_fn_attrib): Remove is_kernel formal
21118 parameter. Adjust all users.
21119 (oacc_fn_attrib_kernels_p): Remove function.
21120 * omp-offload.c (execute_oacc_device_lower): Look for "oacc
21121 kernels" attribute instead of calling oacc_fn_attrib_kernels_p.
21122 * tree-ssa-loop.c (gate_oacc_kernels): Likewise.
21123 * tree-parloops.c (create_parallel_loop): If oacc_kernels_p,
21124 assert "oacc kernels" attribute is set.
21126 2017-05-11 Carl Love <cel@us.ibm.com>
21128 * config/rs6000/rs6000-c: Add support for built-in functions
21129 vector unsigned char vec_popcnt (vector signed char)
21130 vector unsigned char vec_popcnt (vector unsigned char)
21131 vector unsigned short vec_popcnt (vector signed short)
21132 vector unsigned short vec_popcnt (vector unsigned short)
21133 vector unsigned int vec_popcnt (vector signed int)
21134 vector unsigned int vec_popcnt (vector unsigned int)
21135 vector unsigned long long vec_popcnt (vector signed long long)
21136 vector unsigned long long vec_popcnt (vector unsigned long long)
21137 vector signed long long vec_slo (vector signed long long,
21138 vector signed char)
21139 vector signed long long vec_slo (vector signed long long,
21140 vector unsigned char)
21141 vector unsigned long long vec_slo (vector unsigned long long,
21142 vector signed char)
21143 vector unsigned long long vec_slo (vector unsigned long long,
21144 vector unsigned char)
21145 * config/rs6000/rs6000-builtin.def: Add definitions for VPOPCNTUB,
21146 VPOPCNTUH, VPOPCNTUW, and VPOPCNTUD overloads.
21147 * config/rs6000/altivec.h: Add define for vec_popcnt, vec_popcntb,
21148 vec_popcnth, vec_popcntw and vec_popcntd built-in functions.
21149 * doc/extend.texi: Update the built-in documentation file for the
21150 new built-in functions.
21152 2017-05-11 Michael Meissner <meissner@linux.vnet.ibm.com>
21154 * attribs.h (sorted_attr_string): Move machine independent
21155 functions for target clone support from the i386 port to common
21156 code. Rename ix86_function_versions to common_function_versions.
21157 Rename make_name to make_unique_name.
21158 (common_function_versions): Likewise.
21159 (make_unique_name): Likewise.
21160 (make_dispatcher_decl): Likewise.
21161 (is_function_default_version): Likewise.
21162 * attribs.c (attr_strcmp): Likewise.
21163 (sorted_attr_string): Likewise.
21164 (common_function_versions): Likewise.
21165 (make_unique_name): Likewise.
21166 (make_dispatcher_decl): Likewise.
21167 (is_function_default_version): Likewise.
21168 * config/i386/i386.c (attr_strcmp): Likewise.
21169 (sorted_attr_string): Likewise.
21170 (ix86_function_versions): Likewise.
21171 (make_name): Likewise.
21172 (make_dispatcher_decl): Likewise.
21173 (is_function_default_version): Likewise.
21174 (TARGET_OPTION_FUNCTION_VERSIONS): Update target function hook.
21176 2017-05-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
21179 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost):
21180 Account for direct move costs for vec_construct of integer
21183 2017-05-11 Uros Bizjak <ubizjak@gmail.com>
21186 * config/i386/sync.md (UNSPEC_LDX_ATOMIC): New unspec.
21187 (UNSPEC_STX_ATOMIC): Ditto.
21188 (loaddi_via_sse): New insn.
21189 (storedi_via_sse): Ditto.
21190 (atomic_loaddi_fpu): Emit loaddi_via_sse and storedi_via_sse.
21191 Update corresponding peephole2 patterns.
21192 (atomic_storedi_fpu): Ditto.
21194 2017-05-11 Julia Koval <julia.koval@intel.com>
21196 * config/i386/avx512fintrin.h (_mm_mask_rsqrt14_sd)
21197 (_mm_maskz_rsqrt14_sd, _mm_mask_rsqrt14_ss, _mm_maskz_rsqrt14_ss):
21199 * config/i386/i386-builtin.def (__builtin_ia32_rsqrt14sd_mask)
21200 (__builtin_ia32_rsqrt14ss_mask): New builtins.
21201 * config/i386/sse.md (rsqrt14_<mode>_mask): New pattern.
21203 2017-05-11 Nathan Sidwell <nathan@acm.org>
21205 * graphite-poly.c: Include dumpfile.h.
21207 * dumpfle.h (dump_function): Declare here ...
21208 * tree-dump.h (dump_function): ... not here.
21209 * dumpfile.c: #include tree-cfg.h.
21210 (dump_function): Move here from ...
21211 * tree-dump.c (dump_function): ... here.
21212 * gimplify.c: #include splay-tree.h, not tree-dump.h.
21213 * graphite-poly.c: Don't include tree-dump.h.
21214 * cgraphclones.c: Include dumpfile.h not tree-dump.h.
21215 * print-tree.c: Likewise.
21216 * stor-layout.c: Likewise.
21217 * tree-nested.c: Likewise.
21219 * dumpfile.c (dump_start): Use TDF_FLAGS.
21220 (dump_enable_all): Fix TDF_KIND check thinko.
21222 2017-05-11 Kelvin Nilsen <kelvin@gcc.gnu.org>
21224 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
21225 array entries to represent two legal parameterizations of the
21226 overloaded __builtin_cmpb function, as represented by the
21227 P6_OV_BUILTIN_CMPB constant.
21228 (altivec_resolve_overloaded_builtin): Add special case handling
21229 for the __builtin_cmpb function, as represented by the
21230 P6_OV_BUILTIN_CMPB constant.
21231 * config/rs6000/rs6000-builtin.def (BU_P6_2): New macro.
21232 (BU_P6_64BIT_2): New macro.
21233 (BU_P6_OVERLOAD_2): New macro
21234 (CMPB_32): Add 32-bit compare-bytes support for 32-bit only targets.
21235 (CMPB): Add 64-bit compare-bytes support for 32-bit and 64-bit targets.
21236 (CMPB): Add overload support to represent both 32-bit and 64-bit
21237 compare-bytes function.
21238 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
21239 support for TARGET_CMPB.
21240 * config/rs6000/rs6000.h: Add support for RS6000_BTM_CMPB.
21241 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Add
21242 documentation of the __builtin_cmpb overloaded built-in function.
21244 2017-05-11 Richard Biener <rguenther@suse.de>
21246 PR tree-optimization/80705
21247 * tree-vect-data-refs.c (vect_analyze_data_refs): DECL_NONALIASED
21248 bases are not vectorizable.
21250 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21252 * tree-ssa-loop-ivopts.c (determine_set_costs): Skip non-interger
21253 when counting register pressure.
21255 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21257 * tree-ssa-loop-ivopts.c (compare_cost_pair): New.
21258 (iv_ca_more_deps): Renamed to ...
21259 (iv_ca_compare_deps): ... this.
21260 (iv_ca_extend): Extend iv_ca if NEW_CP is cheaper than OLD_CP.
21262 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21264 * tree-ssa-loop-ivopts.c (find_interesting_uses): Move inv vars dump
21266 (determine_group_iv_costs): ... here.
21267 (find_inv_vars_cb): Record inv var if it's not recorded before.
21269 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21271 * tree-ssa-loop-ivopts.c (allow_ip_end_pos_p): Refine comments.
21272 (get_shiftadd_cost): Ditto.
21274 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21276 * tree-ssa-address.c: Include header file.
21277 (move_hint_to_base): Return TRUE if BASE_HINT is moved to memory
21279 (add_to_parts): Refactor.
21280 (addr_to_parts): New parameter. Update use of move_hint_to_base.
21281 (create_mem_ref): Update use of addr_to_parts. Re-associate addr
21284 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21286 PR tree-optimization/53090
21287 * tree-ssa-loop-ivopts.c (enum comp_iv_rewrite): New enum value
21289 (extract_cond_operands): Detect condition with IV on both sides
21290 and return COMP_IV_EXPR_2.
21291 (find_interesting_uses_cond): Add iv_use for both IVs in condition.
21292 (rewrite_use_compare): Simplify by removing call to function
21293 extract_cond_operands.
21295 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21297 * tree-ssa-loop-ivopts.c (enum comp_iv_rewrite): New.
21298 (extract_cond_operands): Detect condition comparing against non-
21299 invariant bound and return appropriate enum value.
21300 (find_interesting_uses_cond): Update use of extract_cond_operands.
21301 Handle its return value accordingly.
21302 (determine_group_iv_cost_cond, rewrite_use_compare): Ditto.
21304 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21306 * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Re-associate
21307 nonlinear iv_use computation in loop invariant sensitive way.
21309 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21311 * tree-ssa-loop-ivopts.c (relate_compare_use_with_all_cands): New.
21312 (find_iv_candidates): Call relate_compare_use_with_all_cands.
21314 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21316 * tree-ssa-loop-ivopts.c (struct iv_cand): New field inv_exprs.
21317 (dump_cand): Support iv_cand.inv_exprs.
21318 (add_candidate_1): Record invariant exprs in iv_cand.inv_exprs
21320 (iv_ca_set_no_cp, iv_ca_set_cp, free_loop_data): Support
21323 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21325 * tree-ssa-loop-ivopts.c (multiplier_allowed_in_address_p): Move
21327 * tree-ssa-address.c (multiplier_allowed_in_address_p): ... to here
21328 as local function. Include necessary header files.
21329 * tree-ssa-loop-ivopts.h (multiplier_allowed_in_address_p): Delete.
21331 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21333 * tree-ssa-loop-ivopts.c (autoinc_possible_for_pair): Simplify.
21335 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21337 * tree-ssa-loop-ivopts.c (force_expr_to_var_cost): Handle more
21338 operators: TRUNC_DIV_EXPR, BIT_AND_EXPR, BIT_IOR_EXPR, LSHIFT_EXPR,
21339 RSHIFT_EXPR and BIT_NOT_EXPR.
21341 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21343 * tree-ssa-loop-ivopts.c (get_loop_invariant_expr): Simplify.
21344 (adjust_setup_cost): New parameter supporting round up adjustment.
21345 (struct address_cost_data): Delete.
21346 (force_expr_to_var_cost): Don't bound cost with spill_cost.
21347 (split_address_cost, ptr_difference_cost): Delete.
21348 (difference_cost, compare_aff_trees, record_inv_expr): Delete.
21349 (struct ainc_cost_data): New struct.
21350 (get_address_cost_ainc): New function.
21351 (get_address_cost, get_computation_cost): Reimplement.
21352 (determine_group_iv_cost_address): Record inv_expr for all uses of
21354 (determine_group_iv_cost_cond): Call get_loop_invariant_expr.
21355 (iv_ca_has_deps): Reimplemented to ...
21356 (iv_ca_more_deps): ... this. Check if NEW_CP introduces more deps
21358 (iv_ca_extend): Call iv_ca_more_deps.
21360 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21362 * tree-ssa-address.c (struct mem_address): Move to header file.
21363 (valid_mem_ref_p, move_fixed_address_to_symbol): Make it global.
21364 * tree-ssa-address.h (struct mem_address): Move from C file.
21365 (valid_mem_ref_p, move_fixed_address_to_symbol): Declare.
21367 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21369 * tree-affine.h (aff_combination_type): New interface.
21370 (aff_combination_zero_p): Remove static.
21371 (aff_combination_const_p): New interface.
21372 (aff_combination_singleton_var_p): New interfaces.
21374 2017-05-11 Richard Biener <rguenther@suse.de>
21376 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
21377 Skip unreachable blocks and destinations.
21378 (eliminate): Move stmt removal and fixup ...
21379 (fini_eliminate): ... here. Skip inserted exprs.
21380 (pass_pre::execute): Move fini_pre after fini_eliminate.
21381 * tree-ssa-tailmerge.c: Include tree-cfgcleanup.h.
21382 (tail_merge_optimize): Run cleanup_tree_cfg if requested by
21383 PRE to get rid of dead code that has invalid SSA form and
21384 split critical edges again.
21386 2017-05-11 Bin Cheng <bin.cheng@arm.com>
21388 * rtlanal.c (rtx_cost): Handle TRUNCATE between tieable modes.
21390 2017-05-11 Richard Biener <rguenther@suse.de>
21392 * passes.c (execute_function_todo): Verify loops if they are
21393 said to be up-to-date.
21394 * cfgexpand.c (pass_expand::execute): Discard loops for -dx.
21395 * trans-mem.c (pass_tm_edges::execute): Mark loops for fixup.
21397 2017-05-10 John David Anglin <danglin@gcc.gnu.org>
21400 * config/pa/pa.c (pa_assemble_integer): When outputting a SYMBOL_REF,
21401 handle calling assemble_external ourself.
21404 * config/pa/pa.c (pa_cannot_change_mode_class): Reject changes to/from
21405 modes with zero size. Enhance comment.
21407 2017-05-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
21409 * config/rs6000/rs6000.c (altivec_init_builtins): Define POWER8
21410 built-ins for vec_xl and vec_xst with short and char pointer
21413 2017-05-10 Sebastian Peryt <sebastian.peryt@intel.com>
21415 * config/i386/avx512fintrin.h (_mm_mask_max_round_sd)
21416 (_mm_maskz_max_round_sd, _mm_mask_max_round_ss)
21417 (_mm_maskz_max_round_ss, _mm_mask_min_round_sd)
21418 (_mm_maskz_min_round_sd, _mm_mask_min_round_ss)
21419 (_mm_maskz_min_round_ss): New intrinsics.
21420 * config/i386/i386-builtin-types.def (V2DF, V2DF, V2DF, V2DF, UQI, INT)
21421 (V4SF, V4SF, V4SF, V4SF, UQI, INT): New function type aliases.
21422 * config/i386/i386-builtin.def (__builtin_ia32_maxsd_mask_round)
21423 (__builtin_ia32_maxss_mask_round, __builtin_ia32_minsd_mask_round)
21424 (__builtin_ia32_minss_mask_round): New builtins.
21425 * config/i386/i386.c (V2DF_FTYPE_V2DF_V2DF_V2DF_UQI_INT)
21426 (V4SF_FTYPE_V4SF_V4SF_V4SF_UQI_INT): Handle new types.
21427 * config/i386/sse.md (<sse>_vm<code><mode>3<round_saeonly_name>):
21429 (<sse>_vm<code><mode>3<mask_name><round_saeonly_name>): ... this.
21430 (v<maxmin_float><ssescalarmodesuffix>\t{<round_saeonly_op3>%2, %1, %0|%0, %1, %<iptr>2<round_saeonly_op3>}):
21432 (v<maxmin_float><ssescalarmodesuffix>\t{<round_saeonly_mask_op3>%2, %1, %0<mask_operand3>|%0<mask_operand3>, %1, %<iptr>2<round_saeonly_mask_op3>}):
21435 2017-05-10 Sebastian Peryt <sebastian.peryt@intel.com>
21437 * config/i386/avx512fintrin.h (_mm_mask_mul_round_sd)
21438 (_mm_maskz_mul_round_sd, _mm_mask_mul_round_ss)
21439 (_mm_maskz_mul_round_ss, _mm_mask_div_round_sd)
21440 (_mm_maskz_div_round_sd, _mm_mask_div_round_ss)
21441 (_mm_maskz_div_round_ss, _mm_mask_mul_sd, _mm_maskz_mul_sd)
21442 (_mm_mask_mul_ss, _mm_maskz_mul_ss, _mm_mask_div_sd)
21443 (_mm_maskz_div_sd, _mm_mask_div_ss, _mm_maskz_div_ss): New intrinsics.
21444 * config/i386/i386-builtin-types.def (V2DF_FTYPE_V2DF_V2DF_V2DF_UQI_INT)
21445 (V4SF_FTYPE_V4SF_V4SF_V4SF_UQI_INT): New function type aliases.
21446 * config/i386/i386-builtin.def (__builtin_ia32_divsd_mask_round)
21447 (__builtin_ia32_divss_mask_round, __builtin_ia32_mulsd_mask_round)
21448 (__builtin_ia32_mulss_mask_round): New builtins.
21449 * config/i386/i386.c (V2DF_FTYPE_V2DF_V2DF_V2DF_UQI_INT)
21450 (V4SF_FTYPE_V4SF_V4SF_V4SF_UQI_INT): Handle new types.
21451 * config/i386/sse.md (<sse>_vm<multdiv_mnemonic><mode>3<round_name>):
21453 (<sse>_vm<multdiv_mnemonic><mode>3<mask_name><round_name>): ... this.
21454 (v<multdiv_mnemonic><ssescalarmodesuffix>\t{<round_op3>%2, %1, %0|%0, %1, %<iptr>2<round_op3>}):
21456 (v<multdiv_mnemonic><ssescalarmodesuffix>\t{<round_mask_op3>%2, %1, %0<mask_operand3>|%0<mask_operand3>, %1, %<iptr>2<round_mask_op3>}):
21459 2017-05-10 Julia Koval <julia.koval@intel.com>
21461 * config/i386/avxintrin.h (_mm256_set_m128, _mm256_set_m128d)
21462 (_mm256_set_m128i, _mm256_setr_m128, _mm256_setr_m128d)
21463 (_mm256_setr_m128i): New intrinsics.
21465 2017-05-10 Julia Koval <julia.koval@intel.com>
21467 * config/i386/avx512fintrin.h (_mm_mask_rcp14_sd)
21468 (_mm_maskz_rcp14_sd, _mm_mask_rcp14_ss)
21469 (_mm_maskz_rcp14_ss): New intrinsics.
21470 * config/i386/i386-builtin.def (__builtin_ia32_rcp14sd_mask)
21471 (__builtin_ia32_rcp14ss_mask): New builtins.
21472 * config/i386/sse.md (srcp14<mode>_mask): New pattern.
21474 2017-05-10 Peter Bergner <bergner@vnet.ibm.com>
21476 PR tree-optimization/51513
21477 * tree-cfg.c (gimple_seq_unreachable_p): New function.
21478 (assert_unreachable_fallthru_edge_p): Use it.
21479 (group_case_labels_stmt): Likewise.
21480 * tree-cfg.h: Prototype it.
21481 * stmt.c: Include cfghooks.h and tree-cfg.h.
21482 (emit_case_dispatch_table) <gap_label>: New local variable.
21483 Use it to fill dispatch table gaps.
21484 Test for default_label before updating probabilities.
21485 (expand_case) <default_label>: Remove unneeded initialization.
21486 Test for unreachable default case statement and remove its edge.
21487 Set default_label accordingly.
21488 * tree-ssa-ccp.c (optimize_unreachable): Update comment.
21490 2017-05-10 Carl Love <cel@us.ibm.com>
21492 * config/rs6000/rs6000-c: Add support for built-in functions
21493 vector signed char vec_neg (vector signed char)
21494 vector signed short int vec_neg (vector short int)
21495 vector signed int vec_neg (vector signed int)
21496 vector signed long long vec_neg (vector signed long long)
21497 vector float vec_neg (vector float)
21498 vector double vec_neg (vector double)
21499 * config/rs6000/rs6000-builtin.def: Add definitions for NEG function
21501 * config/rs6000/altivec.h: Add define for vec_neg
21502 * doc/extend.texi: Update the built-in documentation for the
21503 new built-in functions.
21505 2017-05-10 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
21507 PR tree-optimization/77644
21508 * match.pd (sqrt(x) cmp sqrt(y) -> x cmp y): New pattern.
21510 2017-05-10 Nathan Sidwell <nathan@acm.org>
21512 * dumpfile.h (TDI_lang_all): New.
21513 (TDF_KIND): New. Renumber others
21514 (TDF_LANG, TDF_TREE, TDF_RTL, TDF_IPA): Enumerate value, rather
21516 * dumpfile.c (dump_files): Mark language dumps as TDF_LANG. add
21518 (get_dump_file_name): Adjust suffix generation.
21519 (dump_enable_all): Use TDF_KIND.
21520 * doc/invoke.texi (-fdump-lang-all): Document.
21522 * dumpfile.h: Tabify.
21524 2017-05-10 Wilco Dijkstra <wdijkstr@arm.com>
21527 * config/aarch64/cortex-a57-fma-steering.c (merge_forest):
21528 Move member access before delete.
21530 2017-05-10 Alexandre Oliva <aoliva@redhat.com>
21532 * tree-inline.c (expand_call_inline): Split block at stmt
21535 2017-05-09 Michael Meissner <meissner@linux.vnet.ibm.com>
21538 * config/rs6000/rs6000.md (f32_lr): Delete mode attributes that
21539 are now unused after splitting mov{sf,sd}_hardfloat.
21540 (f32_lr2): Likewise.
21541 (f32_lm): Likewise.
21542 (f32_lm2): Likewise.
21543 (f32_li): Likewise.
21544 (f32_li2): Likewise.
21545 (f32_lv): Likewise.
21546 (f32_sr): Likewise.
21547 (f32_sr2): Likewise.
21548 (f32_sm): Likewise.
21549 (f32_sm2): Likewise.
21550 (f32_si): Likewise.
21551 (f32_si2): Likewise.
21552 (f32_sv): Likewise.
21553 (f32_dm): Likewise.
21554 (f32_vsx): Likewise.
21555 (f32_av): Likewise.
21556 (mov<mode>_hardfloat): Split into separate movsf and movsd pieces.
21557 For movsf, order stores so the VSX stores occur before the GPR
21558 store which encourages the register allocator to use a traditional
21559 FPR instead of a GPR. For movsd, order the stores so that the GPR
21560 store comes before the VSX stores to allow the power6 to work.
21561 This is due to the power6 not having a 32-bit integer store
21562 instruction from a FPR.
21563 (movsf_hardfloat): Likewise.
21564 (movsd_hardfloat): Likewise.
21566 2017-05-09 Martin Sebor <msebor@redhat.com>
21568 PR translation/80280
21569 * config/sol2-c.c (cmn_err_flag_specs): Initialize new data member
21572 PR translation/80280
21573 * config/i386/msformat-c.c (ms_printf_flag_specs): Initialize new
21574 data member added in r247778.
21575 (ms_scanf_flag_specs, ms_strftime_flag_specs): Same.
21577 2017-05-09 Nathan Sidwell <nathan@acm.org>
21579 * tree.h (tree_fits_shwi_p, tree_fits_uhwi_p): Unconditionally pure.
21581 * ipa-devirt.c (default_hash_traits<type_pair>): Skip struct-scope
21584 2017-05-09 Marek Polacek <polacek@redhat.com>
21586 * doc/invoke.texi: Fix typo.
21588 2017-05-09 Richard Biener <rguenther@suse.de>
21590 * tree-vrp.c (vrp_val_is_max): Adjust comment.
21591 (vrp_val_is_min): Likewise.
21592 (set_value_range_to_value): Likewise.
21593 (set_value_range_to_nonnegative): Likewise.
21594 (gimple_assign_nonzero_p): Likewise.
21595 (gimple_stmt_nonzero_p): Likewise.
21596 (vrp_int_const_binop): Likewise. Remove unreachable case.
21597 (adjust_range_with_scev): Adjust comments.
21598 (compare_range_with_value): Likewise.
21599 (extract_range_from_phi_node): Likewise.
21600 (test_for_singularity): Likewise.
21602 2017-05-09 Richard Biener <rguenther@suse.de>
21604 * tree-vrp.c (get_single_symbol): Add assert that we don't
21605 get overflowed constants as invariant part.
21606 (compare_values_warnv): Add comment before the TREE_NO_WARNING
21607 checks. Use wi::cmp instead of recursing for integer constants.
21608 (compare_values): Just ignore whether we assumed undefined
21609 overflow instead of failing the compare.
21610 (extract_range_for_var_from_comparison_expr): Add comment before the
21611 TREE_NO_WARNING sets.
21612 (test_for_singularity): Likewise.
21613 (extract_range_from_comparison): Do not disable optimization
21614 when we assumed undefined overflow.
21615 (extract_range_basic): Remove init of unused var.
21617 2017-05-09 Richard Biener <rguenther@suse.de>
21619 * tree-vrp.c (vrp_int_const_binop): Use wide-ints and simplify.
21620 (extract_range_from_multiplicative_op_1): Adjust.
21621 (extract_range_from_binary_expr_1): Use int_const_binop.
21623 2017-05-08 Kelvin Nilsen <kelvin@gcc.gnu.org>
21626 * config/rs6000/power6.md: Replace store_data_bypass_p calls with
21627 rs6000_store_data_bypass_p in seven define_bypass directives and
21628 in several comments.
21629 * config/rs6000/rs6000-protos.h: Add prototype for
21630 rs6000_store_data_bypass_p function.
21631 * config/rs6000/rs6000.c (rs6000_store_data_bypass_p): New
21632 function implements slightly different (rs6000-specific) semantics
21633 than store_data_bypass_p, returning false rather than aborting
21634 with assertion error when arguments do not satisfy the
21635 requirements of store data bypass.
21636 (rs6000_adjust_cost): Replace six calls of store_data_bypass_p with
21637 rs6000_store_data_bypass_p.
21639 2017-05-08 Max Filippov <jcmvbkbc@gmail.com>
21641 * config/xtensa/xtensa-protos.h
21642 (xtensa_initial_elimination_offset): New declaration.
21643 * config/xtensa/xtensa.c (xtensa_initial_elimination_offset):
21644 New function. Move its body from the INITIAL_ELIMINATION_OFFSET
21645 macro definition, add case for FRAME_POINTER_REGNUM when
21646 FRAME_GROWS_DOWNWARD.
21647 * config/xtensa/xtensa.h (FRAME_GROWS_DOWNWARD): New macro definition.
21648 (INITIAL_ELIMINATION_OFFSET): Replace body with call to
21649 xtensa_initial_elimination_offset.
21651 2017-05-08 Nathan Sidwell <nathan@acm.org>
21653 * doc/invoke.texi: Alphabetize -fdump options.
21655 2017-05-08 Martin Sebor <msebor@redhat.com>
21657 PR translation/80280
21658 * config/sol2-c.c (solaris_pragma_align): Correct quoting.
21660 2017-05-08 Bernd Edlinger <bernd.edlinger@hotmail.de>
21662 * target.def (compute_frame_layout): New optional target hook.
21663 * doc/tm.texi.in (TARGET_COMPUTE_FRAME_LAYOUT): Add hook.
21664 * doc/tm.texi (TARGET_COMPUTE_FRAME_LAYOUT): Add documentation.
21665 * lra-eliminations.c (update_reg_eliminate): Call compute_frame_layout
21667 * reload1.c (verify_initial_elim_offsets): Likewise.
21668 * config/arm/arm.c (TARGET_COMPUTE_FRAME_LAYOUT): Define.
21669 (use_simple_return_p): Call arm_compute_frame_layout if needed.
21670 (arm_get_frame_offsets): Split up into this ...
21671 (arm_compute_frame_layout): ... and this function.
21673 2017-05-08 Richard Sandiford <richard.sandiford@arm.com>
21675 * config/aarch64/constraints.md (Usa): New constraint.
21676 * config/aarch64/aarch64.md (*movsi_aarch64, *movdi_aarch64): Use it.
21678 2017-05-08 Thomas Preud'homme <thomas.preudhomme@arm.com>
21680 * config.gcc (arm*-*-*): Set TM_MULTILIB_CONFIG from
21681 with_multilib_list after it has been checked.
21683 2017-05-08 Richard Biener <rguenther@suse.de>
21685 * tree-ssa-pre.c (bitmap_set_and): Avoid bitmap copy.
21686 (bitmap_set_subtract_values): Likewise.
21688 2017-05-08 Richard Biener <rguenther@suse.de>
21690 * tree-vrp.c (gimple_assign_nonzero_warnv_p): Rename to ...
21691 (gimple_assign_nonzero): ... this and remove strict_overflow_p
21693 (gimple_stmt_nonzero_warnv_p): Rename to ...
21694 (gimple_stmt_nonzero_p): ... this and remove strict_overflow_p
21696 (vrp_stmt_computes_nonzero): Remove strict_overflow_p argument.
21697 (extract_range_basic): Adjust, do not disable propagation on
21698 strict overflow sensitive simplification.
21699 (vrp_visit_cond_stmt): Likewise.
21701 2017-05-05 Jan Hubicka <hubicka@ucw.cz>
21703 * ipa-inline-analysis.c (estimate_function_body_sizes): Recompute
21704 body size unconditionally.
21706 2017-05-07 Jeff Law <law@redhat.com>
21709 2017-05-06 Jeff Law <law@redhat.com>
21710 PR tree-optimization/78496
21711 * tree-vrp.c (simplify_assert_expr_using_ranges): Remove debugging
21714 PR tree-optimization/78496
21715 * tree-vrp.c (simplify_assert_expr_using_ranges): New function.
21716 (simplify_stmt_using_ranges): Call it.
21717 (vrp_dom_walker::before_dom_children): Extract equivalences
21718 from an ASSERT_EXPR with an equality comparison against a
21721 2017-05-06 Jeff Law <law@redhat.com>
21723 PR tree-optimization/78496
21724 * tree-vrp.c (simplify_assert_expr_using_ranges): Remove debugging
21727 PR tree-optimization/78496
21728 * tree-vrp.c (simplify_assert_expr_using_ranges): New function.
21729 (simplify_stmt_using_ranges): Call it.
21730 (vrp_dom_walker::before_dom_children): Extract equivalences
21731 from an ASSERT_EXPR with an equality comparison against a
21734 2017-05-06 Richard Sandiford <richard.sandiford@linaro.org>
21736 * lra-constraints.c (lra_copy_reg_equiv): New function.
21737 (split_reg): Use it to copy equivalence information from the
21738 original register to the spill register.
21740 2017-05-06 Richard Sandiford <richard.sandiford@linaro.org>
21742 PR rtl-optimization/75964
21743 * simplify-rtx.c (simplify_const_relational_operation): Remove
21744 invalid handling of comparisons of integer ABS.
21746 2017-05-06 Uros Bizjak <ubizjak@gmail.com>
21748 * config/i386/i386.c (ext_80387_constant_init): Do not explicitly
21749 initialize to zero.
21750 (init_regs): Remove declaration.
21751 (function_arg_advance_32): Initialize error_p as boolean variable.
21753 2017-05-05 Nathan Sidwell <nathan@acm.org>
21755 * store-motion.c (remove_reachable_equiv_notes): Reformat long
21756 lines. Use for (;;).
21758 2017-05-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
21760 * config/rs6000/rs6000.c (rs6000_vect_nonmem): New static var.
21761 (rs6000_init_cost): Initialize rs6000_vect_nonmem.
21762 (rs6000_add_stmt_cost): Update rs6000_vect_nonmem.
21763 (rs6000_finish_cost): Avoid vectorizing simple copy loops with
21764 VF=2 that require versioning.
21766 2017-05-05 David Malcolm <dmalcolm@redhat.com>
21768 * diagnostic.h (CARET_LINE_MARGIN): Convert from macro to const
21771 2017-05-05 David Malcolm <dmalcolm@redhat.com>
21773 * diagnostic.h (diagnostic_override_option_index): Convert from
21774 macro to inline function.
21776 2017-05-05 David Malcolm <dmalcolm@redhat.com>
21778 * diagnostic.c (last_module_changed_p): New function.
21779 (set_last_module): New function.
21780 (diagnostic_report_current_module): Convert macro usage to
21781 the above functions.
21782 * diagnostic.h (diagnostic_context::last_module): Strengthen
21783 from const line_map * to const line_map_ordinary *.
21784 (diagnostic_last_module_changed): Delete macro.
21785 (diagnostic_set_last_module): Delete macro.
21787 2017-05-05 David Malcolm <dmalcolm@redhat.com>
21789 * diagnostic.c (diagnostic_impl): Replace report_diagnostic
21790 with diagnostic_report_diagnostic.
21791 (diagnostic_n_impl_richloc): Likewise.
21792 * diagnostic.h (report_diagnostic): Delete macro.
21793 * rtl-error.c (diagnostic_for_asm): Replace report_diagnostic
21794 with diagnostic_report_diagnostic.
21795 * substring-locations.c (format_warning_va): Likewise.
21797 2017-05-05 David Malcolm <dmalcolm@redhat.com>
21799 * diagnostic.c (diagnostic_report_diagnostic): Eliminate
21800 save/restor of format_spec. Move option-printing code to...
21801 (print_option_information): ...this new function, and
21802 reimplement by simply printing to the pretty_printer,
21803 rather than appending to the format string.
21805 2017-05-05 David Malcolm <dmalcolm@redhat.com>
21807 * diagnostic.c (diagnostic_report_diagnostic): Split out pragma
21808 handling logic into...
21809 (update_effective_level_from_pragmas): ...this new function.
21811 2017-05-04 Andrew Waterman <andrew@sifive.com>
21813 * config/riscv/riscv.opt (mstrict-align): New option.
21814 * config/riscv/riscv.h (STRICT_ALIGNMENT): Use it. Update comment.
21815 (SLOW_UNALIGNED_ACCESS): Define.
21816 (riscv_slow_unaligned_access): Declare.
21817 * config/riscv/riscv.c (riscv_tune_info): Add slow_unaligned_access
21819 (riscv_slow_unaligned_access): New variable.
21820 (rocket_tune_info): Set slow_unaligned_access to true.
21821 (optimize_size_tune_info): Set slow_unaligned_access to false.
21822 (riscv_cpu_info_table): Add entry for optimize_size_tune_info.
21823 (riscv_valid_lo_sum_p): Use TARGET_STRICT_ALIGN.
21824 (riscv_option_override): Set riscv_slow_unaligned_access.
21825 * doc/invoke.texi: Add -mstrict-align to RISC-V.
21827 2017-05-04 Kito Cheng <kito.cheng@gmail.com>
21829 * config/riscv/riscv.md: Unify indentation.
21831 2017-05-05 Michael Meissner <meissner@linux.vnet.ibm.com>
21836 * config/rs6000/rs6000.md (u code attribute): Add FIX and
21838 (extendsi<mode>2): Add support for doing sign extension via
21839 VUPKHSW and XXPERMDI if the value is in Altivec registers and we
21840 don't have ISA 3.0 instructions.
21841 (extendsi<mode>2 splitter): Likewise.
21842 (fix_trunc<mode>si2): If we are at ISA 2.07 (VSX small integer),
21843 generate the normal insns since SImode can now go in vector
21844 registers. Disallow the special UNSPECs needed for previous
21845 machines to hide SImode being used. Add new insns
21846 fctiw{,w}_<mode>_smallint if SImode can go in vector registers.
21847 (fix_trunc<mode>si2_stfiwx): Likewise.
21848 (fix_trunc<mode>si2_internal): Likewise.
21849 (fixuns_trunc<mode>si2): Likewise.
21850 (fixuns_trunc<mode>si2_stfiwx): Likewise.
21851 (fctiw<u>z_<mode>_smallint): Likewise.
21852 (fctiw<u>z_<mode>_mem): New combiner pattern to prevent conversion
21853 of floating point to 32-bit integer from doing a direct move to
21854 the GPR registers to do a store.
21855 (fctiwz_<mode>): Break long line.
21857 2017-05-05 Bin Cheng <bin.cheng@arm.com>
21859 * Makefile.in (GTFILES): Add tree-ssa-loop-ivopts.c.
21860 * tree-ssa-loop-ivopts.c (compute_max_addr_offset): Delete.
21861 (addr_list, addr_offset_valid_p): New.
21862 (split_address_groups): Check offset validity with above function.
21863 (gt-tree-ssa-loop-ivopts.h): Include header file.
21865 2017-05-05 Nathan Sidwell <nathan@acm.org>
21867 * config.gcc (arm*-*-*): Add missing 'fi'.
21869 2017-05-05 Steve Ellcey <sellcey@cavium.com>
21871 * doc/invoke.texi (-fopt-info): Explicitly say order of options
21872 included in -fopt-info does not matter.
21873 * doc/optinfo.texi (-fopt-info): Fix description of default
21874 behavour. Explicitly say order of options included in -fopt-info
21877 2017-05-05 Thomas Preud'homme <thomas.preudhomme@arm.com>
21879 * config.gcc: Allow combinations of aprofile and rmprofile values for
21880 --with-multilib-list.
21881 * config/arm/t-multilib: New file.
21882 * config/arm/t-aprofile: Remove initialization of MULTILIB_*
21883 variables. Remove setting of ISA and floating-point ABI in
21884 MULTILIB_OPTIONS and MULTILIB_DIRNAMES. Set architecture and FPU in
21885 MULTI_ARCH_OPTS_A and MULTI_ARCH_DIRS_A rather than MULTILIB_OPTIONS
21886 and MULTILIB_DIRNAMES respectively. Add comment to introduce all
21887 matches. Add architecture matches for marvel-pj4 and generic-armv7-a
21889 * config/arm/t-rmprofile: Likewise except for the matches changes.
21890 * doc/install.texi (--with-multilib-list): Document the combination of
21891 aprofile and rmprofile values and warn about pitfalls in doing that.
21893 2017-05-05 Wilco Dijkstra <wdijkstr@arm.com>
21895 * config/aarch64/aarch64.md (movsi_aarch64): Remove '*' from r=w.
21896 (movdi_aarch64): Likewise.
21898 2017-05-05 Jakub Jelinek <jakub@redhat.com>
21900 PR tree-optimization/80632
21901 * tree-switch-conversion.c (struct switch_conv_info): Add target_vop
21903 (build_arrays): Initialize it for virtual phis.
21904 (fix_phi_nodes): Use it for virtual phis.
21906 PR tree-optimization/80558
21907 * tree-vrp.c (extract_range_from_binary_expr_1): Optimize
21908 [x, y] op z into [x op, y op z] for op & or | if conditions
21911 2017-05-05 Andre Vieira <andre.simoesdiasvieira@arm.com>
21912 Prakhar Bahuguna <prakhar.bahuguna@arm.com>
21915 * config/arm/arm.md (use_literal_pool): Remove.
21916 (64-bit immediate split): No longer takes cost into consideration
21917 if arm_disable_literal_pool is enabled.
21918 * config/arm/arm.c (arm_tls_referenced_p): Add diagnostic if TLS is
21919 used when arm_disable_literal_pool is enabled.
21920 (arm_max_const_double_inline_cost): Remove use of
21921 arm_disable_literal_pool.
21922 (push_minipool_fix): Add assert.
21923 (arm_reorg): Add return if arm_disable_literal_pool is enabled.
21924 * config/arm/vfp.md (no_literal_pool_df_immediate): New.
21925 (no_literal_pool_sf_immediate): New.
21927 2017-05-05 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
21929 PR tree-optimization/80613
21930 * tree-ssa-dce.c (propagate_necessity): Remove cases for
21931 BUILT_IN_STRDUP and BUILT_IN_STRNDUP.
21933 2017-05-05 Richard Biener <rguenther@suse.de>
21935 * tree-ssa-pre.c (get_or_alloc_expr_for): Simplify.
21937 2017-05-05 Georg-Johann Lay <avr@gjlay.de>
21939 * config/avr/avr.md [flag_strict_overflow]: Remove any occurence
21940 of this flag from insn conditions due to removal from r247495.
21942 2017-05-05 Wilco Dijkstra <wdijkstr@arm.com>
21944 * config/arm/aarch-common.c (arm_early_load_addr_dep_ptr):
21946 (arm_early_store_addr_dep_ptr): Likewise.
21947 * config/arm/aarch-common-protos.h
21948 (arm_early_load_addr_dep_ptr): Add prototype.
21949 (arm_early_store_addr_dep_ptr): Likewise.
21950 * config/arm/cortex-a53.md: Add new bypasses.
21952 2017-05-05 Jakub Jelinek <jakub@redhat.com>
21954 * tree.c (next_type_uid): Change type to unsigned.
21955 (type_hash_canon): Decrement back next_type_uid if
21956 freeing a type node with the highest TYPE_UID. For INTEGER_TYPEs
21957 also ggc_free TYPE_MIN_VALUE, TYPE_MAX_VALUE and TYPE_CACHED_VALUES
21960 2017-05-04 Martin Sebor <msebor@redhat.com>
21962 * builtins.c: Fix a trivial typo in a comment.
21964 PR middle-end/79234
21965 * builtins.c (check_sizes): Adjust to handle reading past the end.
21966 Avoid printing excessive upper bound of ranges. Use %E to print
21967 tree nodes instead of converting them to %wu.
21968 (expand_builtin_memchr): New function.
21969 (compute_dest_size): Rename...
21970 (compute_objsize): ...to this.
21971 (expand_builtin_memcpy): Adjust.
21972 (expand_builtin_mempcpy): Adjust.
21973 (expand_builtin_strcat): Adjust.
21974 (expand_builtin_strcpy): Adjust.
21975 (check_strncat_sizes): Adjust.
21976 (expand_builtin_strncat): Adjust.
21977 (expand_builtin_strncpy): Adjust and simplify.
21978 (expand_builtin_memset): Adjust.
21979 (expand_builtin_bzero): Adjust.
21980 (expand_builtin_memcmp): Adjust.
21981 (expand_builtin): Handle memcmp.
21982 (maybe_emit_chk_warning): Check strncat just once.
21984 2017-05-04 Martin Sebor <msebor@redhat.com>
21986 PR preprocessor/79214
21987 PR middle-end/79222
21988 PR middle-end/79223
21989 * builtins.c (check_sizes): Add inlining context and issue
21990 warnings even when -Wno-system-headers is set.
21991 (check_strncat_sizes): Same.
21992 (expand_builtin_strncat): Same.
21993 (expand_builtin_memmove): New function.
21994 (expand_builtin_stpncpy): Same.
21995 (expand_builtin): Handle memmove and stpncpy.
21997 2017-05-04 Bin Cheng <bin.cheng@arm.com>
21999 * tree-ssa-loop-ivopts.c (struct cost_pair): Remove field inv_expr
22000 which is not used any more.
22002 2017-05-04 Wilco Dijkstra <wdijkstr@arm.com>
22004 * config/aarch64/aarch64.c (generic_tunings): Update prefetch model.
22006 2017-05-04 Wilco Dijkstra <wdijkstr@arm.com>
22008 * config/aarch64/aarch64.c (cortexa35_tunings): Set jump alignment to 4.
22009 (cortexa53_tunings): Likewise.
22010 (cortexa57_tunings): Likewise.
22011 (cortexa72_tunings): Likewise.
22012 (cortexa73_tunings): Likewise.
22014 2017-05-04 Wilco Dijkstra <wdijkstr@arm.com>
22016 * config/aarch64/aarch64.c (generic_tunings): Set jump alignment to 4.
22017 Set loop alignment to 8.
22019 2017-05-04 Martin Sebor <msebor@redhat.com>
22021 PR translation/80280
22022 * builtins.c (expand_builtin_object_size): Add missing quoting to
22023 %D and like directives.
22024 * hsa-gen.c (hsa_type_for_scalar_tree_type): Same.
22025 (hsa_type_for_tree_type): Same.
22026 (verify_function_arguments): Same.
22027 * symtab.c (symbol_table::change_decl_assembler_name): Same.
22028 * varasm.c (get_section): Same.
22031 2017-05-04 Martin Sebor <msebor@redhat.com>
22033 PR translation/80280
22034 * config/i386/i386.c (ix86_function_versions): Quote a %D directive.
22036 2017-05-04 Wilco Dijkstra <wdijkstr@arm.com>
22038 * config/aarch64/aarch64.c (generic_addrcost_table):
22039 Change HI/TI mode setting.
22041 2017-05-04 Martin Jambor <mjambor@suse.cz>
22043 PR tree-optimization/80622
22044 * tree-sra.c (comes_initialized_p): New function.
22045 (build_accesses_from_assign): Only set write lazily when
22046 comes_initialized_p is false.
22047 (analyze_access_subtree): Use comes_initialized_p.
22048 (propagate_subaccesses_across_link): Assert !comes_initialized_p
22049 instead of testing for PARM_DECL.
22051 2017-05-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22053 * config/aarch64/aarch64.md (prefetch); Adjust predicate and
22054 constraint on operand 0 to allow more general addressing modes.
22055 Adjust output template.
22056 * config/aarch64/aarch64.c (aarch64_address_valid_for_prefetch_p):
22058 * config/aarch64/aarch64-protos.h
22059 (aarch64_address_valid_for_prefetch_p): Declare prototype.
22060 * config/aarch64/constraints.md (Dp): New address constraint.
22061 * config/aarch64/predicates.md (aarch64_prefetch_operand): New
22064 2017-05-04 Jan Hubicka <hubicka@ucw.cz>
22066 * ipa-cp.c (perform_estimation_of_a_value): Drop base_time parameter;
22067 update use of estimate_ipcp_clone_size_and_time.
22068 (estimate_local_effects): Update use of
22069 estimate_ipcp_clone_size_and_time and perform_estimation_of_a_value.
22070 * ipa-inline.h (estimate_ipcp_clone_size_and_time): Update prototype.
22071 * ipa-inline-analysis.c (estimate_ipcp_clone_size_and_time):
22072 Return nonspecialized time.
22074 2017-05-04 Richard Biener <rguenther@suse.de>
22076 * tree-ssa-alias.c (get_continuation_for_phi): Improve looking
22077 for the last VUSE which def dominates the PHI. Directly call
22079 (get_continuation_for_phi_1): Remove.
22081 2017-05-04 Richard Sandiford <richard.sandiford@linaro.org>
22083 * tree-ssa-loop-manip.c (niter_for_unrolled_loop): Add commentary
22084 to explain the use of truncating division. Cap the number of
22085 iterations to the maximum given by nb_iterations_upper_bound,
22088 2017-05-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
22090 * configure.ac (--enable-mingw-wildcard): Add new configurable feature.
22091 * configure: Regenerate.
22092 * config.in: Regenerate.
22093 * config/i386/driver-mingw32.c: new file.
22094 * config/i386/x-mingw32: Add rule to build driver-mingw32.o.
22095 * config.host: Link driver-mingw32.o on MinGW host.
22096 * doc/install.texi: Document new --enable-mingw-wildcard configure
22099 2017-05-04 Marek Polacek <polacek@redhat.com>
22101 PR tree-optimization/80612
22102 * calls.c (get_size_range): Check for INTEGRAL_TYPE_P.
22104 2017-05-04 Prakhar Bahuguna <prakhar.bahuguna@arm.com>
22105 Andre Simoes Dias Vieira <andre.simoesdiasvieira@arm.com>
22107 * config/arm/arm.md (movsi): Change TARGET_32BIT to TARGET_HAVE_MOVT.
22108 (movt splitter): Likewise.
22109 * config/arm/arm.c (arm_option_check_internal): Change arm_arch_thumb2
22110 to TARGET_HAVE_MOVT, and merge with -mslow-flash-data check.
22111 (const_ok_for_arm): Change else to else if (TARGET_THUMB2) and add else
22112 block for Thumb-1 with MOVT.
22113 (thumb2_legitimate_address_p): Move code block ...
22114 (can_avoid_literal_pool_for_label_p): ... into this new function.
22115 (thumb1_legitimate_address_p): Add check for TARGET_HAVE_MOVT and
22117 (thumb_legitimate_constant_p): Add conditional on TARGET_HAVE_MOVT
22118 * doc/invoke.texi (-mpure-code): Change "ARMv7-M targets" for
22119 "M-profile targets with the MOVT instruction".
22121 2017-05-04 Prakhar Bahuguna <prakhar.bahuguna@arm.com>
22123 * config/arm/arm-builtins.c (arm_init_builtins): Rename
22124 __builtin_arm_ldfscr to __builtin_arm_get_fpscr, and rename
22125 __builtin_arm_stfscr to __builtin_arm_set_fpscr.
22127 2017-05-04 Martin Liska <mliska@suse.cz>
22129 * tree-vrp.c (simplify_cond_using_ranges_2): Remove unused
22130 variable cond_code.
22132 2017-05-04 Richard Biener <rguenther@suse.de>
22134 * tree.c (array_at_struct_end_p): Handle arrays at struct
22135 end with flexarrays more conservatively. Refactor and treat
22136 arrays of arrays or aggregates more strict. Fix
22137 VIEW_CONVERT_EXPR handling. Remove allow_compref argument.
22138 * tree.c (array_at_struct_end_p): Adjust prototype.
22139 * emit-rtl.c (set_mem_attributes_minus_bitpos): Adjust.
22140 * gimple-fold.c (get_range_strlen): Likewise.
22141 * tree-chkp.c (chkp_may_narrow_to_field): Likewise.
22143 2017-05-04 Richard Biener <rguenther@suse.de>
22145 PR tree-optimization/31130
22146 * tree-vrp.c (needs_overflow_infinity): Remove as always returning
22148 (supports_overflow_infinity): Likewise.
22149 (is_negative_overflow_infinity): Likewise.
22150 (is_positive_overflow_infinity): Likewise.
22151 (is_overflow_infinity): Likewise.
22152 (stmt_overflow_infinity): Likewise.
22153 (overflow_infinity_range_p): Likewise.
22154 (usable_range_p): Remove as always returning true.
22155 (make_overflow_infinity): Remove.
22156 (negative_overflow_infinity): Likewise.
22157 (positive_overflow_infinity): Likewise.
22158 (avoid_overflow_infinity): Likewise.
22159 (set_value_range): Adjust accordingly.
22160 (set_value_range_to_nonnegative): Likewise, remove now unused
22161 overflow_infinity arg.
22162 (vrp_operand_equal_p): Adjust.
22163 (update_value_range): Likewise.
22164 (range_int_cst_singleton_p): Likewise.
22165 (operand_less_p): Likewise.
22166 (compare_values_warnv): Likewise.
22167 (extract_range_for_var_from_comparison_expr): Likewise.
22168 (vrp_int_const_binop): Likewise.
22169 (zero_nonzero_bits_from_vr): Likewise.
22170 (extract_range_from_multiplicative_op_1): Likewise.
22171 (extract_range_from_binary_expr_1): Likewise.
22172 (extract_range_from_unary_expr): Likewise.
22173 (extract_range_from_comparison): Likewise.
22174 (extract_range_basic): Likewise.
22175 (adjust_range_with_scev): Likewise.
22176 (compare_ranges): Likewise.
22177 (compare_range_with_value): Likewise.
22178 (dump_value_range): Likewise.
22179 (test_for_singularity): Likewise, remove strict_overflow_p parameter
22181 (simplify_cond_using_ranges): Adjust.
22183 2017-05-04 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com>
22185 * brig-builtins.def: Added a builtin for class_f64.
22186 * builtin-types.def: Added a builtin type needed by class_f64.
22188 2017-05-03 Jason Merrill <jason@redhat.com>
22190 * timevar.def: Add TV_CONSTEXPR.
22192 2017-05-03 David Malcolm <dmalcolm@redhat.com>
22194 * common.opt (fdiagnostics-parseable-fixits): Fix typo.
22196 2017-05-03 Martin Jambor <mjambor@suse.cz>
22198 * ipa-prop.c (ipa_update_after_lto_read): Removed.
22199 * ipa-prop.h (ipa_update_after_lto_read): Remove declaration.
22200 * ipa-cp.c (ipcp_propagate_stage): Do not call
22201 ipa_update_after_lto_read.
22202 * ipa-inline.c (ipa_inline): Likewise.
22204 2017-05-03 Martin Jambor <mjambor@suse.cz>
22206 * ipa-prop.h (ipa_edge_args): Make a class. Mark with for_user GTY
22207 tag. Added a default constructor and a destructor.
22208 (ipa_edge_args_sum_t): New class;
22209 (ipa_edge_args_sum): Declare.
22210 (ipa_edge_args_vector): Remove declaration.
22211 (IPA_EDGE_REF): Use ipa_edge_args_sum.
22212 (ipa_free_edge_args_substructures): Remove declaration.
22213 (ipa_check_create_edge_args): Use ipa_edge_args_sum.
22214 (ipa_edge_args_info_available_for_edge_p): Likewise.
22215 * ipa-prop.c (ipa_edge_args_vector): Removed.
22216 (edge_removal_hook_holder): Likewise.
22217 (edge_duplication_hook_holder): Likewise.
22218 (ipa_edge_args_sum): New variable.
22219 (ipa_propagate_indirect_call_infos): Test ipa_edge_args_sum instead of
22220 ipa_edge_args_vector.
22221 (ipa_free_edge_args_substructures): Likewise.
22222 (ipa_free_all_edge_args): Free ipa_edge_args_sum instead of
22223 ipa_edge_args_vector.
22224 (ipa_edge_removal_hook): Turned into method
22225 ipa_edge_args_sum_t::remove.
22226 (ipa_edge_duplication_hook): Turned into method
22227 ipa_edge_args_sum_t::duplicate.
22228 (ipa_register_cgraph_hooks): Create ipa_edge_args_sum instead of
22229 registering edge hooks.
22230 (ipa_unregister_cgraph_hooks): Do not unregister edge hooks.
22231 * ipa-inline-analysis.c (estimate_function_body_sizes): Test
22232 ipa_edge_args_sum instead of ipa_edge_args_vector.
22233 * ipa-profile.c (ipa_profile): Likewise.
22235 2017-05-03 Martin Jambor <mjambor@suse.cz>
22237 * symbol-summary.h (function_summary): New method exists.
22238 (function_summary::symtab_removal): Deallocate through release.
22239 (call_summary): New class.
22240 (gt_ggc_mx): New overload.
22241 (gt_pch_nx): Likewise.
22242 (gt_pch_nx): Likewise.
22244 2017-05-03 Jeff Law <law@redhat.com>
22246 PR tree-optimization/78496
22247 * tree-vrp.c (simplify_cond_using_ranges_1): Renamed
22248 from simplify_cond_using_ranges. Split off code to walk
22249 backwards through casts into ...
22250 (simplify_cond_using_ranges_2): New function.
22251 (simplify_stmt_using_ranges): Call simplify_cond_using_ranges_1.
22252 (execute_vrp): After identifying jump threads, call
22253 simplify_cond_using_ranges_2.
22255 2017-05-03 Jan Hubicka <hubicka@ucw.cz>
22258 * ipa-inline.h (inline_summary): Add ctor.
22259 (create_ggc): Do not use ggc_cleared_alloc.
22261 2017-05-03 Jeff Downs <heydowns@somuchpressure.net>
22262 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
22264 * gcc.c (handle_braces): Support escaping in switch matching
22266 * doc/invoke.texi (Spec Files): Document it.
22267 Remove superfluous @code markup in items.
22269 2017-05-03 David Malcolm <dmalcolm@redhat.com>
22271 * diagnostic-show-locus.c (struct column_range): New struct.
22272 (get_affected_columns): New function.
22273 (get_printed_columns): New function.
22274 (struct correction): New struct.
22275 (correction::ensure_capacity): New function.
22276 (correction::ensure_terminated): New function.
22277 (struct line_corrections): New struct.
22278 (line_corrections::~line_corrections): New dtor.
22279 (line_corrections::add_hint): New function.
22280 (layout::print_trailing_fixits): Reimplement in terms of the new
22282 (selftest::test_overlapped_fixit_printing): New function.
22283 (selftest::diagnostic_show_locus_c_tests): Call it.
22285 2017-05-03 Nathan Sidwell <nathan@acm.org>
22287 Canonicalize canonical type hashing
22288 * tree.h (type_hash_canon_hash): Declare.
22289 * tree.c (type_hash_list, attribute_hash_list): Move into
22290 type_hash_canon_hash.
22291 (build_type_attribute_qual_variant): Break out hash code calc into
22292 type_hash_canon_hash.
22293 (type_hash_canon_hash): New. Generic type hash computation.
22294 (build_range_type_1, build_array_type_1, build_function_type,
22295 build_method_type_directly, build_offset_type, build_complex_type,
22296 make_vector_type): Call it.
22298 2017-05-03 Richard Biener <rguenther@suse.de>
22300 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
22301 When all DRs have unknown misaligned do not always peel
22302 when there is a store but apply the same costing model as if
22303 there were only loads.
22305 2017-05-03 Richard Biener <rguenther@suse.de>
22308 PR tree-optimization/80492
22309 * tree-ssa-alias.c (decl_refs_may_alias_p): Handle
22310 compare_base_decls returning dont-know properly.
22312 2017-05-03 Thomas Preud'homme <thomas.preudhomme@arm.com>
22314 * config/arm/iterators.md (CCSI): New mode iterator.
22315 (arch): New mode attribute.
22316 * config/arm/sync.md (atomic_compare_and_swap<mode>_1): Rename into ...
22317 (atomic_compare_and_swap<CCSI:arch><NARROW:mode>_1): This and ...
22318 (atomic_compare_and_swap<CCSI:arch><SIDI:mode>_1): This. Use CCSI
22319 code iterator for success result mode.
22320 * config/arm/arm.c (arm_expand_compare_and_swap): Adapt code to use
22321 the corresponding new insn generators.
22323 2017-05-03 Bin Cheng <bin.cheng@arm.com>
22326 2017-05-02 Bin Cheng <bin.cheng@arm.com>
22327 * rtlanal.c (rtx_cost): Handle TRUNCATE between tieable modes.
22329 2017-05-03 Richard Sandiford <richard.sandiford@linaro.org>
22331 * tree-data-ref.h (SUB_CONFLICTS_IN_A): Wrap SUB argument in brackets.
22332 (SUB_CONFLICTS_IN_B, SUB_LAST_CONFLICT, SUB_DISTANCE): Likewise.
22333 (DDR_A): Wrap DDR argument in brackets.
22334 (DDR_B, DDR_AFFINE_P, DDR_ARE_DEPENDENT, DDR_SUBSCRIPTS): Likewise.
22335 (DDR_LOOP_NEST, DDR_INNER_LOOP, DDR_SELF_REFERENCE): Likewise.
22336 (DDR_REVERSED_P): Likewise.
22338 2017-05-03 Jakub Jelinek <jakub@redhat.com>
22340 PR tree-optimization/79472
22341 * tree-switch-conversion.c (struct switch_conv_info): Add
22342 contiguous_range and default_case_nonstandard fields.
22343 (collect_switch_conv_info): Compute contiguous_range and
22344 default_case_nonstandard fields, don't clear final_bb if
22345 contiguous_range and only the default case doesn't have the required
22347 (check_all_empty_except_final): Set default_case_nonstandard instead
22348 of failing if contiguous_range and the default case doesn't have empty
22350 (check_final_bb): Add SWTCH argument, don't fail if contiguous_range
22351 and only the default case doesn't have the required constants. Skip
22353 (gather_default_values): Skip virtual phis. Allow non-NULL CASE_LOW
22354 if default_case_nonstandard.
22355 (build_constructors): Build constant 1 just once. Assert that default
22356 values aren't inserted in between cases if contiguous_range. Skip
22358 (build_arrays): Skip virtual phis.
22359 (prune_bbs): Add DEFAULT_BB argument, don't remove that bb.
22360 (fix_phi_nodes): Don't add e2f phi arg if default_case_nonstandard.
22361 Handle virtual phis.
22362 (gen_inbound_check): Handle default_case_nonstandard case.
22363 (process_switch): Adjust check_final_bb caller. Call
22364 gather_default_values with the first non-default case instead of
22365 default case if default_case_nonstandard.
22367 2017-05-02 Nathan Sidwell <nathan@acm.org>
22369 * ggc-page.c (move_ptes_to_front): Replace unsigned >0 with i--
22370 check. Fix formatting.
22372 2017-05-02 Jan Hubicka <hubicka@ucw.cz>
22374 * ipa-inline-analysis.c (estimate_node_size_and_time): Allow roundoff
22375 errors when comparing specialized and unspecialized times.
22377 2017-05-02 David Malcolm <dmalcolm@redhat.com>
22379 * diagnostic-show-locus.c
22380 (layout::should_print_annotation_line_p): Make private.
22381 (layout::print_annotation_line): Make private.
22382 (layout::annotation_line_showed_range_p): Make private.
22383 (layout::show_ruler): Make private.
22384 (layout::print_source_line): Make private. Pass in line and
22385 line_width, rather than calling location_get_source_line. Drop
22387 (layout::print_leading_fixits): New method.
22388 (layout::print_any_fixits): Rename to...
22389 (layout::print_trailing_fixits): ...this, and make private.
22390 Don't print newline fixits.
22391 (diagnostic_show_locus): Move logic for printing one row into...
22392 (layout::print_line): ...this new function. Move the
22393 location_get_source_line call and error-handling from
22394 print_source_line to here. Call print_leading_fixits, and rename
22395 print_any_fixits to print_trailing_fixits.
22396 (selftest::test_fixit_insert_containing_newline): Update now that
22397 newlines are partially supported.
22398 (selftest::test_fixit_insert_containing_newline_2): New test.
22399 (selftest::test_fixit_replace_containing_newline): Update comments.
22400 (selftest::diagnostic_show_locus_c_tests): Call the new test.
22401 * edit-context.c (class added_line): New class.
22402 (class edited_line): Describe newline handling in comment.
22403 (edited_line::actually_edited_p): New method.
22404 (edited_line::print_content): Delete redundant decl.
22405 (edited_line::m_predecessors): New field.
22406 (edited_file::print_content): Call edited_line::print_content.
22407 (edited_file::print_diff): Update to support newlines.
22408 (edited_file::print_diff_hunk): Likewise.
22409 (edited_file::print_run_of_changed_lines): New function.
22410 (edited_file::print_diff_line): Convert to...
22411 (print_diff_line): ...this.
22412 (edited_file::get_effective_line_count): New function.
22413 (edited_line::edited_line): Initialize new field m_predecessors.
22414 (edited_line::~edited_line): Clean up m_predecessors.
22415 (edited_line::apply_fixit): Handle newlines.
22416 (edited_line::get_effective_line_count): New function.
22417 (edited_line::print_content): New function.
22418 (edited_line::print_diff_lines): New function.
22419 (selftest::test_applying_fixits_insert_containing_newline): New
22421 (selftest::test_applying_fixits_replace_containing_newline): New
22423 (selftest::insert_line): New function.
22424 (selftest::test_applying_fixits_multiple_lines): Add example of
22426 (selftest::edit_context_c_tests): Call the new tests.
22428 2017-05-02 Bin Cheng <bin.cheng@arm.com>
22430 * tree-ssa-loop-ivopts.c (get_scaled_computation_cost_at): Delete
22431 parameter cand. Update dump information.
22432 (get_computation_cost): Update uses.
22434 2017-05-02 Bin Cheng <bin.cheng@arm.com>
22436 * tree-ssa-loop-ivopts.c (get_computation_aff_1): New.
22437 (get_computation_aff): Reorder parameters. Use get_computation_aff_1.
22438 (get_computation_at, rewrite_use_address): Update use of
22439 get_computation_aff.
22441 2017-05-02 Bin Cheng <bin.cheng@arm.com>
22443 * tree-ssa-loop-ivopts.c (get_computation_at): Reorder parameters.
22444 (get_computation): Delete.
22445 (get_computation_cost): Implement like get_computation_cost_at.
22446 Use get_computation_at.
22447 (get_computation_cost_at): Delete.
22448 (rewrite_use_nonlinear_expr): Use get_computation_at.
22449 (rewrite_use_compare, remove_unused_ivs): Ditto.
22451 2017-05-02 Bin Cheng <bin.cheng@arm.com>
22453 * tree-ssa-loop-ivopts.c (rewrite_use_address): Simple refactor.
22455 2017-05-02 Bin Cheng <bin.cheng@arm.com>
22457 * tree-ssa-loop-ivopts.c (struct iv_ca): Rename n_regs to n_invs.
22458 (ivopts_global_cost_for_size): Rename parameter and update uses.
22459 (iv_ca_recount_cost): Update uses.
22460 (iv_ca_set_remove_invs, iv_ca_set_no_cp): Record invariants and
22461 candidates seperately in n_invs and n_cands.
22462 (iv_ca_set_add_invs, iv_ca_set_cp, iv_ca_new): Ditto.
22464 2017-05-02 Bin Cheng <bin.cheng@arm.com>
22466 * tree-ssa-loop-ivopts.c (struct walk_tree_data): New.
22467 (find_inv_vars_cb): New.
22468 (find_depends): Renamed to ...
22469 (find_inv_vars): ... this.
22470 (add_candidate_1, force_var_cost): Call find_inv_vars.
22471 (split_address_cost, determine_group_iv_cost_cond): Ditto.
22473 2017-05-02 Bin Cheng <bin.cheng@arm.com>
22475 * tree-ssa-loop-ivopts.c (struct cost_pair): Rename depends_on to
22476 inv_vars. Add inv_exprs.
22477 (struct iv_cand): Rename depends_on to inv_vars.
22478 (struct ivopts_data): Rename max_inv_id/n_invariant_uses to
22479 max_inv_var_id/n_inv_var_uses. Move max_inv_expr_id around.
22480 Refactor field used_inv_exprs from has_map to array n_inv_expr_uses.
22481 (dump_cand): Dump inv_vars.
22482 (tree_ssa_iv_optimize_init): Support inv_vars and inv_exprs.
22483 (record_invariant, find_depends, add_candidate_1): Ditto.
22484 (set_group_iv_cost, force_var_cost): Ditto.
22485 (split_address_cost, ptr_difference_cost, difference_cost): Ditto.
22486 (get_computation_cost_at, get_computation_cost): Ditto.
22487 (determine_group_iv_cost_generic): Ditto.
22488 (determine_group_iv_cost_address): Ditto.
22489 (determine_group_iv_cost_cond, autoinc_possible_for_pair): Ditto.
22490 (determine_group_iv_costs): Ditto.
22491 (iv_ca_recount_cost): Update call to ivopts_global_cost_for_size.
22492 (iv_ca_set_remove_invariants): Renamed to ...
22493 (iv_ca_set_remove_invs): ... this. Support inv_vars and inv_exprs.
22494 (iv_ca_set_no_cp): Use iv_ca_set_remove_invs.
22495 (iv_ca_set_add_invariants): Renamed to ...
22496 (iv_ca_set_add_invs): ... this. Support inv_vars and inv_exprs.
22497 (iv_ca_set_cp): Use iv_ca_set_add_invs.
22498 (iv_ca_has_deps): Support inv_vars and inv_exprs.
22499 (iv_ca_new, iv_ca_free, iv_ca_dump, free_loop_data): Ditto.
22500 (create_new_ivs): Remove useless dump.
22502 2017-05-02 Bin Cheng <bin.cheng@arm.com>
22504 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Remove pseudo
22506 (determine_group_iv_cost_cond, determine_iv_cost): Ditto.
22507 (iv_ca_set_no_cp, create_new_iv): Ditto.
22509 2017-05-02 Bin Cheng <bin.cheng@arm.com>
22511 * rtlanal.c (rtx_cost): Handle TRUNCATE between tieable modes.
22513 2017-05-02 Xi Ruoyao <ryxi@stu.xidian.edu.cn>
22515 * tree.h (EXPR_CILK_SPAWN): Use macro TREE_CHECK2 instead of
22516 function tree_check2.
22518 2017-05-02 Martin Liska <mliska@suse.cz>
22520 * doc/gcov.texi: Add missing preposition.
22521 * gcov.c (function_info::function_info): Properly fill up
22522 all member variables.
22524 2017-05-02 Tamar Christina <tamar.christina@arm.com>
22526 * expr.c (expand_expr_real_2): Re-cost if previous costs are the same.
22528 2017-05-02 Tamar Christina <tamar.christina@arm.com>
22530 * simplify-rtx.c (simplify_binary_operation_1): Add LSHIFTRT case.
22532 2017-05-02 Martin Liska <mliska@suse.cz>
22535 * lto-streamer-in.c (lto_read_tree_1): Remove
22536 LTO_STREAMER_DEBUG.
22537 * lto-streamer.c (struct tree_hash_entry): Likewise.
22538 (struct tree_entry_hasher): Likewise.
22539 (tree_entry_hasher::hash): Likewise.
22540 (tree_entry_hasher::equal): Likewise.
22541 (lto_streamer_init): Likewise.
22542 (lto_orig_address_map): Likewise.
22543 (lto_orig_address_get): Likewise.
22544 (lto_orig_address_remove): Likewise.
22545 * lto-streamer.h: Likewise.
22546 * tree-streamer-in.c (streamer_alloc_tree): Likewise.
22547 * tree-streamer-out.c (streamer_write_tree_header): Likewise.
22549 2017-05-02 Sebastian Peryt <sebastian.peryt@intel.com>
22551 * config/i386/avx512fintrin.h (_mm_mask_add_round_sd)
22552 (_mm_maskz_add_round_sd, _mm_mask_add_round_ss)
22553 (mm_maskz_add_round_ss, _mm_mask_sub_round_sd)
22554 (mm_maskz_sub_round_sd, _mm_mask_sub_round_ss)
22555 (mm_maskz_sub_round_ss, _mm_mask_add_sd)
22556 (mm_maskz_add_sd, _mm_mask_add_ss, _mm_maskz_add_ss)
22557 (mm_mask_sub_sd, _mm_maskz_sub_sd, _mm_mask_sub_ss)
22558 (mm_maskz_sub_ss): New intrinsics.
22559 * config/i386/i386-builtin-types.def (V2DF_FTYPE_V2DF_V2DF_V2DF_UQI_INT)
22560 (V4SF_FTYPE_V4SF_V4SF_V4SF_UQI_INT): New function type aliases.
22561 * config/i386/i386-builtin.def (__builtin_ia32_addsd_mask_round)
22562 (__builtin_ia32_addss_mask_round, __builtin_ia32_subsd_mask_round)
22563 (__builtin_ia32_subss_mask_round): New builtins.
22564 * config/i386/i386.c (V2DF_FTYPE_V2DF_V2DF_V2DF_UQI_INT)
22565 (V4SF_FTYPE_V4SF_V4SF_V4SF_UQI_INT): Handle new types.
22566 * config/i386/sse.md (<sse>_vm<plusminus_insn><mode>3<round_name>):
22568 (<sse>_vm<plusminus_insn><mode>3<mask_name><round_name>): ... this.
22569 (v<plusminus_mnemonic><ssescalarmodesuffix>\t{<round_op3>%2, %1, %0|%0, %1, %<iptr>2<round_op3>}):
22571 (v<plusminus_mnemonic><ssescalarmodesuffix>\t{<round_mask_op3>%2, %1, %0<mask_operand3>|%0<mask_operand3>, %1, %<iptr>2<round_mask_op3>}):
22574 2017-05-02 Martin Jambor <mjambor@suse.cz>
22576 PR tree-optimization/78687
22577 * tree-sra.c (access): New field parent.
22578 (process_subtree_disqualification): New function.
22579 (disqualify_candidate): Call it.
22580 (build_accesses_from_assign): Reset write flag if creating an
22582 (build_access_subtree): Fill in parent field and also prpagate
22583 down grp_write flag.
22584 (create_artificial_child_access): New parameter set_grp_write, set
22585 grp_write to its value.
22586 (propagate_subaccesses_across_link): Also propagate grp_write flag
22588 (propagate_all_subaccesses): Push the closest parent back to work
22589 queue if add_access_to_work_queue returned true.
22591 2017-05-02 Richard Biener <rguenther@suse.de>
22593 * common.opt (fstrict-overflow): Alias negative to fwrapv.
22594 * doc/invoke.texi (fstrict-overflow): Remove all traces of
22595 -fstrict-overflow documentation.
22596 * tree.h (TYPE_OVERFLOW_UNDEFINED): Do not test flag_strict_overflow.
22597 (POINTER_TYPE_OVERFLOW_UNDEFINED): Test !flag_wrapv instead of
22598 flag_strict_overflow.
22599 * ipa-inline.c (can_inline_edge_p): Do not test flag_strict_overflow.
22600 * lto-opts.c (lto_write_options): Do not stream it.
22601 * lto-wrapper.c (merge_and_complain): Do not handle it.
22602 * opts.c (default_options_table): Do not set -fstrict-overflow.
22603 (finish_options): Likewise do not clear it when sanitizing.
22604 * simplify-rtx.c (simplify_const_relational_operation): Do not
22605 test flag_strict_overflow.
22607 2017-05-02 Uros Bizjak <ubizjak@gmail.com>
22609 * config/alpha/alpha.md (*add<mode>3_ieee): Merge to add<mode>3
22610 using enabled attribute.
22611 (*sub<mode>3_ieee): Merge to sub<mode>3 using enabled attribute.
22612 (*mul<mode>3_ieee): Merge to mul<mode>3 using enabled attribute.
22613 (*div<mode>3_ieee): Merge to div<mode>3 using enabled attribute.
22614 (*sqrt<mode>2_ieee): Merge to sqrt<mode>2 using enabled attribute.
22615 (*fix_truncdfdi_ieee): Merge to *fix_truncdfdi2 using enabled attribute.
22616 (*fix_truncsfdi_ieee): Merge to *fix_truncsfdi2 using enabled attribute.
22617 (*floatdisf_ieee): Merge to floatdisf2 using enabled attribute.
22618 (*floatdidf_ieee): Merge to floatdidf2 using enabled attribute.
22619 (*truncdfsf2_ieee): Merge to truncdfsf2 using enabled attribute.
22620 (*cmpdf_ieee): Merge to *cmpdf_internal using enabled attribute.
22622 2017-05-02 Uros Bizjak <ubizjak@gmail.com>
22624 * config/i386/i386.c (ix86_code_end): Use {FIRST,LAST}_INT_REG.
22626 2017-05-02 Richard Biener <rguenther@suse.de>
22628 PR tree-optimization/80591
22630 2017-04-10 Richard Biener <rguenther@suse.de>
22632 * tree-ssa-structalias.c (find_func_aliases): Properly handle
22635 2017-05-02 Richard Biener <rguenther@suse.de>
22637 PR tree-optimization/80549
22638 * tree-cfgcleanup.c (mfb_keep_latches): New helper.
22639 (cleanup_tree_cfg_noloop): Create forwarders to known loop
22640 headers if they do not have a preheader.
22642 2017-05-02 Martin Liska <mliska@suse.cz>
22645 * common.opt: Fix typo.
22646 * doc/invoke.texi: Likewise.
22648 2017-05-01 Jan Beulich <jbeulich@suse.com>
22650 * config/i386/sse.md (xop_vpermil2<mode>3): Do not allow operand
22651 swapping, add (x,x,m,x,n) alternative.
22653 2017-05-01 Nathan Sidwell <nathan@acm.org>
22655 * calls.c (combine_pending_stack_adjustment_and_call): Remove
22656 unnecessary unadjusted_alignment check.
22658 2017-05-01 Xi Ruoyao <ryxi@stu.xidian.edu.cn>
22661 * cilk_common.c (expand_builtin_cilk_detach): Move pedigree
22663 * gimplify.c (gimplify_cilk_detach): New function.
22664 (gimplify_call_expr, gimplify_modify_expr): Call it as needed.
22665 * tree-core.h: Document EXPR_CILK_SPAWN.
22666 * tree.h (EXPR_CILK_SPAWN): Define.
22668 2017-05-01 David Malcolm <dmalcolm@redhat.com>
22670 * diagnostic-show-locus.c (layout::get_expanded_location): Rewrite
22671 to use new fixit_hint representation, using the "replace" logic.
22672 (get_line_span_for_fixit_hint): Likewise.
22673 (layout::print_any_fixits): Likewise.
22674 (selftest::test_one_liner_many_fixits): Rename to...
22675 (selftest::test_one_liner_many_fixits_1): ...this, and update
22676 comment and expected output to reflect that the multiple fix-it
22677 hints are now consolidated into one insertion.
22678 (selftest::test_one_liner_many_fixits_2): New test.
22679 (selftest::test_diagnostic_show_locus_one_liner): Update for
22681 (selftest::test_fixit_consolidation): Update for fix-it API
22683 * diagnostic.c (print_parseable_fixits): Likewise.
22684 * edit-context.c (edited_line::m_line_events): Convert from
22685 auto_vec <line_event *> to auto_vec <line_event>.
22686 (class line_event): Convert from abstract base class to a concrete
22687 class, taking over the role of replace_event.
22688 (class insert_event): Delete.
22689 (class replace_event): Rename to class line_event. Convert to
22691 (edit_context::add_fixits): Reimplement.
22692 (edit_context::apply_insert): Delete.
22693 (edit_context::apply_replace): Rename to...
22694 (edit_context::apply_fixit): ...this. Convert to half-open range.
22695 (edited_file::apply_insert): Delete.
22696 (edited_file::apply_replace): Rename to...
22697 (edited_file::apply_fixit): ...this.
22698 (edited_line::~edited_line): Drop deletion of events.
22699 (edited_line::apply_insert): Delete.
22700 (edited_line::apply_replace): Rename to...
22701 (edited_line::apply_fixit): ...this. Convert to half-open range.
22702 Update for change to type of m_line_events.
22703 * edit-context.h (edit_context::apply_insert): Delete.
22704 (edit_context::apply_replace): Rename to...
22705 (edit_context::apply_fixit): ...this.
22707 2017-05-01 Martin Sebor <msebor@redhat.com>
22709 * gimple-ssa-sprintf.c (format_integer): Set knownrange when it's
22712 2017-05-01 Uros Bizjak <ubizjak@gmail.com>
22715 * config/i386/cpuid.h (__get_cpuid): Always return 0 when
22716 __get_cpuid_max returns 0.
22717 (__get_cpuid_count): Ditto.
22719 2017-05-01 Eric Botcazou <ebotcazou@adacore.com>
22721 * tree.c (substitute_in_expr) <tcc_vl_exp>: Also inline a call if the
22722 replacement expression is another instance of one of its arguments.
22724 2017-05-01 Jakub Jelinek <jakub@redhat.com>
22727 * rtlanal.c (reg_set_p): If reg is a stack_pointer_rtx, also
22728 check for stack push/pop autoinc.
22729 * config/i386/i386.c (ix86_agi_dependent): Return false
22730 if the only reason why modified_in_p returned true is that
22731 addr is SP based and set_insn is a push or pop.
22733 2017-04-29 Jan Hubicka <hubicka@ucw.cz>
22735 * ipa-inline.c (compute_inlined_call_time): Remove now unnecesary
22738 2017-04-29 Jan Hubicka <hubicka@ucw.cz>
22741 * ipa-inline-analysis.c (dump_predicate): Add optional parameter NL.
22742 (account_size_time): Use two predicates - exec_pred and
22744 (evaluate_conditions_for_known_args): Compute both clause and
22746 (evaluate_properties_for_edge): Evaulate both clause and nonspec_clause.
22747 (inline_summary_t::duplicate): Update.
22748 (estimate_function_body_sizes): Caluculate exec and nonconst predicates
22750 (compute_inline_parameters): Likewise.
22751 (estimate_edge_size_and_time): Update caluclation of time.
22752 (estimate_node_size_and_time): Compute both time and nonspecialized
22754 (estimate_ipcp_clone_size_and_time): Update.
22755 (inline_merge_summary): Update.
22756 (do_estimate_edge_time): Update.
22757 (do_estimate_edge_size): Update.
22758 (do_estimate_edge_hints): Update.
22759 (inline_read_section, inline_write_summary): Stream both new predicates.
22760 * ipa-inline.c (compute_uninlined_call_time): Take uninlined_call_time
22762 (compute_inlined_call_time): Cleanup.
22763 (big_speedup_p): Update.
22764 (edge_badness): Update.
22765 * ipa-inline.h (INLINE_TIME_SCALE): Remove.
22766 (size_time_entry): Replace predicate by exec_predicate and
22767 nonconst_predicate.
22768 (edge_growth_cache_entry): Cache both time nad nonspecialized time.
22769 (estimate_edge_time): Return also nonspec_time.
22770 (reset_edge_growth_cache): Update.
22772 2017-04-29 Jakub Jelinek <jakub@redhat.com>
22774 PR rtl-optimization/80491
22775 * ifcvt.c (noce_process_if_block): When looking for x setter
22776 with missing else_bb, don't check only the insn right before
22777 cond_earliest, but look for the last insn that x is modified in
22778 within the same bb.
22780 PR rtl-optimization/80491
22781 * alias.c (memory_modified_in_insn_p): Return true for CALL_INSNs.
22783 2017-04-29 Marc Glisse <marc.glisse@inria.fr>
22785 PR tree-optimization/80487
22786 * tree-ssa-alias.c (stmt_kills_ref_p): Handle stpncpy and strncpy.
22788 2017-04-29 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
22790 PR tree-optimization/79697
22791 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Check if callee
22792 is BUILT_IN_STRDUP, BUILT_IN_STRNDUP, BUILT_IN_REALLOC.
22793 (propagate_necessity): Check if def_callee is BUILT_IN_STRDUP or
22795 * gimple-fold.c (gimple_fold_builtin_realloc): New function.
22796 (gimple_fold_builtin): Call gimple_fold_builtin_realloc.
22798 2017-04-28 Martin Sebor <msebor@redhat.com>
22800 PR tree-optimization/80523
22801 * gimple-ssa-sprintf.c (target_to_host_charmap): New global variable.
22802 (init_target_to_host_charmap, target_to_host, target_strtol10): New
22804 (maybe_warn, format_directive, parse_directive): Use new functions.
22805 (pass_sprintf_length::execute): Call init_target_to_host_charmap.
22807 2017-04-28 Marc Glisse <marc.glisse@inria.fr>
22809 * match.pd (X+Z OP Y+Z, X-Z OP Y-Z, Z-X OP Z-Y): New transformations.
22811 2017-04-28 Bernd Edlinger <bernd.edlinger@hotmail.de>
22813 * configure.ac (SYSTEM_HEADER_DIR, BUILD_SYSTEM_HEADER_DIR,
22814 target_header_dir): Set correctly.
22815 * configure: Regenerated.
22816 * Makefile.in (BUILD_SYSTEM_HEADER_DIR): New make variabe.
22817 (LIMITS_H_TEST, if_multiarch, stmp-fixinc): Use BUILD_SYSTEM_HEADER_DIR
22818 instead of SYSTEM_HEADER_DIR.
22820 2017-04-28 Jan Hubicka <hubicka@ucw.cz>
22822 * ipa-cp.c (perform_estimation_of_a_value): Turn time to sreal.
22823 (estimate_local_effects): Likewise.
22824 * ipa-inline.c (compute_inlined_call_time, want_inline_small_function_p,
22825 edge_badness, inline_small_functions, dump_overall_stats): LIkewise.
22826 * ipa-inline.h (edge_growth_cache_entry, estimate_time_after_inlining,
22827 estimate_ipcp_clone_size_and_time, do_estimate_edge_time,
22828 do_estimate_edge_time, estimate_edge_time): Likewise.
22829 * ipa-inline-analysis.c (estimate_node_size_and_time,
22830 estimate_ipcp_clone_size_and_time, do_estimate_edge_time): Likewise.
22831 (estimate_time_after_inlining): Remove.
22833 2017-04-28 Martin Liska <mliska@suse.cz>
22835 * doc/gcov.texi: Enhance documentation of gcov.
22837 2017-04-28 Martin Liska <mliska@suse.cz>
22839 * doc/gcov.texi: Sort options in alphabetic order.
22840 * doc/gcov-dump.texi: Likewise.
22841 * doc/gcov-tool.texi: Likewise.
22842 * gcov.c (print_usage): Likewise.
22843 * gcov-dump.c (print_usage): Likewise.
22844 * gcov-tool.c (print_merge_usage_message): Likewise.
22845 (print_rewrite_usage_message): Likewise.
22846 (print_overlap_usage_message): Likewise.
22848 2017-04-28 Martin Liska <mliska@suse.cz>
22850 PR gcov-profile/53915
22851 * gcov.c (format_gcov): Print 'NAN %' when top > bottom.
22853 2017-04-28 Martin Liska <mliska@suse.cz>
22855 PR gcov-profile/79891
22856 * gcov.c (add_line_counts): Assign BBs to lines just if the BB
22857 is marked by compiler as living on a line.
22858 (get_cycles_count): Remove usage of the union.
22859 (output_intermediate_file): Likewise.
22860 (find_source): Fix GNU coding style.
22861 (accumulate_line_counts): Remove old non-all block mode.
22862 (output_lines): Remove usage of the union.
22863 * profile.c (output_location): Include all BBs, even if
22864 belonging to a same line (and file) as a previous BB.
22866 2017-04-28 Martin Liska <mliska@suse.cz>
22868 * gcov.c (process_args): Handle new argument 'w'.
22869 (read_graph_file): Assign ID to BBs.
22870 (output_branch_count): Display BB # if verbose flag is set.
22871 (output_lines): Likewise for arcs.
22872 (print_usage): Add '--verbose' option help.
22873 * doc/gcov.texi: Document --verbose (-w) option.
22875 2017-04-28 Martin Liska <mliska@suse.cz>
22877 * gcov.c (struct block_location_info): New struct.
22878 (process_file): Fill up the new structure.
22879 (read_graph_file): Replace usage of encoding by the newly added
22881 (add_line_counts): Likewise.
22882 (accumulate_line_counts): Remove usage of the union.
22883 (function_info::function_info): New function.
22884 (function_info::~function_info): Likewise.
22885 (process_file): Call delete instead of release_function.
22886 (release_function): Release the function.
22887 (release_structures): Call delete instead of release_function.
22888 (solve_flow_graph): Replace usage of num_blocks.
22889 (find_exception_blocks): Likewise.
22890 (output_lines): Fix GNU coding style.
22892 2017-04-28 Martin Liska <mliska@suse.cz>
22895 * coverage.c (coverage_remove_note_file): New function.
22896 * coverage.h: Declare the function.
22897 * toplev.c (finalize): Clean if an error has been seen.
22899 2017-04-28 Martin Liska <mliska@suse.cz>
22901 PR gcov-profile/80031
22902 * gcov-dump.c (tag_blocks): Just print number of basic blocks.
22903 * gcov-io.h (GCOV_TAG_BLOCKS_NUM): Remove unused macro.
22904 * gcov.c (read_graph_file): Read just number of blocks.
22905 * profile.c (branch_prob): Do not stream 0 flags per a basic
22908 2017-04-28 Martin Liska <mliska@suse.cz>
22910 * gcov-dump.c (tag_*): Add new argument to declarations.
22911 (dump_gcov_file): Likewise.
22912 (tag_blocks): Add and use new argument depth.
22913 (tag_arcs): Likewise.
22914 (tag_lines): Likewise.
22915 (tag_counters): Likewise.
22916 (tag_summary): Likewise.
22917 (dump_working_sets): Use depth to do a proper indentation.
22919 2017-04-28 Jakub Jelinek <jakub@redhat.com>
22922 * cgraph.h (symtab_node::debug_symtab): No longer inline.
22923 * symtab.c (symtab_node::debug_symtab): Move definition here.
22925 2017-04-28 Richard Biener <rguenther@suse.de>
22927 * lto-streamer.h (LTO_major_version): Bump to 7.
22929 2017-04-28 Richard Biener <rguenther@suse.de>
22931 * tree-vrp.c (assert_info): New struct.
22932 (add_assert_info): New helper.
22933 (register_edge_assert_for_2): Refactor to add asserts to a vector
22935 (register_edge_assert_for_1): Likewise.
22936 (register_edge_assert_for): Likewise.
22937 (finish_register_edge_assert_for): New helper actually registering
22938 asserts where live on edge.
22939 (find_conditional_asserts): Adjust.
22940 (find_switch_asserts): Likewise.
22941 (evrp_dom_walker::try_find_new_range): Generalize.
22942 (evrp_dom_walker::before_dom_children): Use register_edge_assert_for.
22944 2017-04-27 Marek Polacek <polacek@redhat.com>
22947 * fold-const.c (fold_binary_loc) <case EQ_EXPR, NE_EXPR>: Convert
22948 arg10 and arg11 to itype.
22950 2017-04-27 Jonathan Wakely <jwakely@redhat.com>
22952 * doc/extend.texi (Object Size Checking): Improve grammar.
22954 2017-04-27 Richard Earnshaw <rearnsha@arm.com>
22957 * config/aarch64/aarch64.c (aarch64_emit_approx_sqrt): Ensure
22958 that the logic for permitting reciprocal estimates matches that
22961 2017-04-27 Jakub Jelinek <jakub@redhat.com>
22964 * tree.c (type_cache_hasher::equal): Only compare
22965 TYPE_TYPELESS_STORAGE flag on non-aggregate element types.
22966 (build_array_type_1): Only hash TYPE_TYPELESS_STORAGE flag on
22967 non-aggregate element types.
22968 * tree.h (TYPE_TYPELESS_STORAGE): Fix comment typo, add more details
22969 about the flag on ARRAY_TYPEs in the comment, formatting fix.
22971 2017-04-27 Richard Biener <rguenther@suse.de>
22973 PR middle-end/80533
22974 * emit-rtl.c (set_mem_attributes_minus_bitpos): When
22975 stripping ARRAY_REFs from MEM_EXPR make sure we're not
22976 keeping a reference to a trailing array.
22978 2017-04-27 Richard Biener <rguenther@suse.de>
22980 PR middle-end/80539
22981 * tree-chrec.c (chrec_fold_plus_poly_poly): Deal with not
22982 being in loop-closed SSA form conservatively.
22983 (chrec_fold_multiply_poly_poly): Likewise.
22985 2017-04-27 Tamar Christina <tamar.christina@arm.com>
22987 PR middle-end/79665
22988 * expr.c (expand_expr_real_2): Move TRUNC_MOD_EXPR, FLOOR_MOD_EXPR,
22989 CEIL_MOD_EXPR, ROUND_MOD_EXPR cases.
22991 2017-04-27 Jakub Jelinek <jakub@redhat.com>
22994 * config/aarch64/aarch64.c (struct aarch64_fn_arg_alignment): Remove.
22995 (aarch64_function_arg_alignment): Return unsigned int again, but still
22996 ignore TYPE_FIELDS chain decls other than FIELD_DECLs.
22997 (aarch64_layout_arg): Adjust aarch64_function_arg_alignment caller.
22998 Don't emit -Wpsabi note.
22999 (aarch64_function_arg_boundary): Likewise.
23000 (aarch64_gimplify_va_arg_expr): Adjust aarch64_function_arg_alignment
23003 2017-04-26 Nathan Sidwell <nathan@acm.org>
23005 * tree.h (crc32_unsigned_n): Declare.
23006 (crc32_unsigned, crc32_unsigned): Make inline.
23007 * tree.c (crc32_unsigned_bits): Replace with ...
23008 (crc32_unsigned_n): ... this.
23009 (crc32_unsigned, crc32_byte): Remove.
23010 (crc32_string): Remove unnecessary braces.
23012 2017-04-25 Jan Hubicka <hubicka@ucw.cz>
23014 * ipa-cp.c (estimate_local_effects): Convert sreal to int.
23015 * ipa-inline-analysis.c (MAX_TIME): Remove.
23016 (account_size_time): Use sreal for time.
23017 (dump_inline_summary): Update.
23018 (estimate_function_body_sizes): Update.
23019 (estimate_edge_size_and_time): Update.
23020 (estimate_calls_size_and_time): Update.
23021 (estimate_node_size_and_time): Update.
23022 (inline_merge_summary): Update.
23023 (inline_update_overall_summary): Update.
23024 (estimate_time_after_inlining): Update.
23025 (inline_read_section): Update.
23026 (inline_write_summary): Update.
23027 * ipa-inline.c (compute_uninlined_call_time): Update.
23028 (compute_inlined_call_time): Update.
23029 (recursive_inlining): Update.
23030 (inline_small_functions): Update.
23031 (dump_overall_stats): Update.
23032 * ipa-inline.h: Include sreal.h.
23033 (size_time_entry): Turn time to sreal.
23034 (inline_summary): Turn self_time nad time to sreal.
23036 2017-04-25 Jan Hubicka <hubicka@ucw.cz>
23038 * sreal.c: Include backend.h, tree.h, gimple.h, cgraph.h and
23040 (sreal::stream_out, sreal::stream_in): New.
23041 * sreal.h (sreal::stream_out, sreal::stream_in): Declare.
23043 2017-04-25 Jakub Jelinek <jakub@redhat.com>
23045 * Makefile.in (s-options): Invoke opt-gather.awk with LC_ALL=C in the
23048 2017-04-25 Uros Bizjak <ubizjak@gmail.com>
23051 * config/i386/i386.c (dimode_scalar_to_vector_candidate_p):
23053 (dimode_scalar_chain::compute_convert_gain): Ditto.
23054 (dimode_scalar_chain::make_vector_copies): Ditto.
23055 (dimode_scalar_chain::convert_reg): Ditto.
23056 (dimode_scalar_chain::convert_insn): Ditto.
23057 * config/i386/sse.md (VI24_AVX512BW_1): Remove mode iterator.
23058 (VI248_AVX512BW_1): New mode iterator.
23059 (<mask_codefor>ashr<mode>3<mask_name>): Merge insn pattern with
23060 <mask_codefor>ashrv2di3<mask_name> insn using VI248_AVX512BW_1
23063 2017-04-25 Martin Sebor <msebor@redhat.com>
23065 PR tree-optimization/80497
23066 * gimple-ssa-sprintf.c (get_int_range): Avoid assuming all integer
23067 constants are representable in HOST_WIDE_INT.
23068 (parse_directive): Ditto.
23070 2017-04-25 Martin Sebor <msebor@redhat.com>
23073 * dominance.c (dom_info::m_n_basic_blocks): Change type to unsigned.
23074 (new_zero_array): Adjust signature.
23075 (dom_info::dom_init): Used unsigned rather that size_t.
23076 (dom_info::dom_info): Same.
23078 2017-04-25 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
23079 Jakub Jelinek <jakub@redhat.com>
23082 * config/arm/arm.c: Include gimple.h.
23083 (aapcs_layout_arg): Emit -Wpsabi note if arm_needs_doubleword_align
23084 returns negative, increment ncrn only if it returned positive.
23085 (arm_needs_doubleword_align): Return int instead of bool,
23086 ignore DECL_ALIGN of non-FIELD_DECL TYPE_FIELDS chain
23087 members, but if there is any such non-FIELD_DECL
23088 > PARM_BOUNDARY aligned decl, return -1 instead of false.
23089 (arm_function_arg): Emit -Wpsabi note if arm_needs_doubleword_align
23090 returns negative, increment nregs only if it returned positive.
23091 (arm_setup_incoming_varargs): Likewise.
23092 (arm_function_arg_boundary): Emit -Wpsabi note if
23093 arm_needs_doubleword_align returns negative, return
23094 DOUBLEWORD_ALIGNMENT only if it returned positive.
23096 2017-04-25 Marek Polacek <polacek@redhat.com>
23099 * fold-const.c (fold_binary_loc) <case BIT_IOR_EXPR>: Convert arg0's
23100 first argument to type.
23102 2017-04-25 Bill Seurer <seurer@linux.vnet.ibm.com>
23105 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Change
23106 type checks to test for compatibility instead of equality.
23108 2017-04-25 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
23109 Jakub Jelinek <jakub@redhat.com>
23112 * config/aarch64/aarch64.c (struct aarch64_fn_arg_alignment): New
23114 (aarch64_function_arg_alignment): Return aarch64_fn_arg_alignment
23115 struct. Ignore DECL_ALIGN of decls other than FIELD_DECL for
23116 the alignment computation, but return their maximum in warn_alignment.
23117 (aarch64_layout_arg): Adjust aarch64_function_arg_alignment caller.
23118 Emit a -Wpsabi note if warn_alignment is 16 bytes, but alignment
23120 (aarch64_function_arg_boundary): Likewise. Simplify using MIN/MAX.
23121 (aarch64_gimplify_va_arg_expr): Adjust aarch64_function_arg_alignment
23124 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
23126 * config/arc/simdext.md (dmpyh): Fix typo.
23128 2017-04-25 Richard Biener <rguenther@suse.de>
23130 PR tree-optimization/80492
23131 * alias.c (compare_base_decls): Handle registers with asm
23132 specification conservatively.
23133 * tree-ssa-alias.c (decl_refs_may_alias_p): Handle
23134 compare_base_decls returning dont-know properly.
23136 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
23138 * config/arc/arc.c (LEGITIMATE_OFFSET_ADDRESS_P): Delete macro.
23139 (legitimate_offset_address_p): New function.
23140 (arc_legitimate_address_p): Use above function.
23142 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
23144 * config/arc/arc.c (arc_output_mi_thunk): Emit PIC calls.
23146 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
23148 * config/arc/arc.c (arc_conditional_register_usage): Use ACCL,
23149 ACCH registers whenever they are available.
23151 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
23153 * config/arc/arc.c (arc_conditional_register_usage): Make D0, D1
23154 double regs fix when not used.
23156 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
23158 * config/arc/arc.h (REGNO_OK_FOR_BASE_P): Consider also extension
23160 (REG_OK_FOR_INDEX_P_NONSTRICT): Likewise.
23161 (REG_OK_FOR_BASE_P_NONSTRICT): Likewise.
23163 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
23165 * config/arc/arc.c (arc_output_addsi): Check for h-register class
23166 when emitting short ADD instructions.
23168 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
23170 * config/arc/arc.md (cmpsi_cc_insn_mixed): Use 'h' register
23172 (cmpsi_cc_c_insn): Likewise.
23173 (cbranchsi4_scratch): Compute proper instruction length using
23174 compact_hreg_operand.
23175 * config/arc/predicates.md (compact_hreg_operand): New predicate.
23177 2017-04-25 Richard Biener <rguenther@suse.de>
23179 PR middle-end/80509
23180 * passes.c (pass_manager::pass_manager): Initialize
23181 m_name_to_pass_map.
23183 2017-04-25 Richard Biener <rguenther@suse.de>
23185 PR tree-optimization/79201
23186 * tree-ssa-sink.c (statement_sink_location): Handle calls.
23188 2017-04-25 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
23191 * config/s390/vector.md: Split MEM->GPR vector moves for
23192 non-s_operand addresses.
23194 2017-04-25 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
23197 * config/s390/predicates.md (reload_const_wide_int_operand): New
23199 * config/s390/s390.md ("movti"): Remove d/P alternative.
23200 ("movti_bigconst"): New pattern definition.
23202 2017-04-25 Dominik Vogt <vogt@linux.vnet.ibm.com>
23205 * s390-protos.h (s390_expand_cs_hqi): Removed.
23206 (s390_expand_cs, s390_expand_atomic_exchange_tdsi): New prototypes.
23207 * config/s390/s390.c (s390_emit_compare_and_swap): Handle all integer
23208 modes as well as CCZ1mode and CCZmode.
23209 (s390_expand_atomic_exchange_tdsi, s390_expand_atomic): Adapt to new
23210 signature of s390_emit_compare_and_swap.
23211 (s390_expand_cs_hqi): Likewise, make static.
23212 (s390_expand_cs_tdsi): Generate an explicit compare before trying
23213 compare-and-swap, in some cases.
23214 (s390_expand_cs): Wrapper function.
23215 (s390_expand_atomic_exchange_tdsi): New backend specific expander for
23217 (s390_match_ccmode_set): Allow CCZmode <-> CCZ1 mode.
23218 * config/s390/s390.md ("atomic_compare_and_swap<mode>"): Merge the
23219 patterns for small and large integers. Forbid symref memory operands.
23220 Move expander to s390.c. Require cc register.
23221 ("atomic_compare_and_swap<DGPR:mode><CCZZ1:mode>_internal")
23222 ("*atomic_compare_and_swap<TDI:mode><CCZZ1:mode>_1")
23223 ("*atomic_compare_and_swapdi<CCZZ1:mode>_2")
23224 ("*atomic_compare_and_swapsi<CCZZ1:mode>_3"): Use s_operand to forbid
23225 symref memory operands. Remove CC mode and call s390_match_ccmode
23227 ("atomic_exchange<mode>"): Allow and implement all integer modes.
23229 2017-04-25 Dominik Vogt <vogt@linux.vnet.ibm.com>
23231 * config/s390/s390.md (define_peephole2): New peephole to help
23232 combining the load-and-test pattern with volatile memory.
23234 2017-04-25 Dominik Vogt <vogt@linux.vnet.ibm.com>
23236 * config/s390/s390.md ("cstorecc4"): Use load-on-condition and deal
23237 with CCZmode for TARGET_Z196.
23239 2017-04-25 Jakub Jelinek <jakub@redhat.com>
23241 PR rtl-optimization/80501
23242 * combine.c (make_compound_operation_int): Set subreg_code to SET
23243 even for AND with mask of the sign bit of mode.
23245 PR rtl-optimization/80500
23246 * loop-unroll.c (combine_var_copies_in_loop_exit): Call copy_rtx on
23247 sum's initial value.
23249 2017-04-25 Julian Brown <julian@codesourcery.com>
23250 Naveen H.S <Naveen.Hurugalawadi@cavium.com>
23252 * config/aarch64/thunderx2t99.md (thunderx2t99_crc): New Reservation.
23254 2017-04-25 Marc Glisse <marc.glisse@inria.fr>
23256 * fold-const.c (tree_single_nonzero_warnv_p): Handle SSA_NAME.
23258 2017-04-25 Julian Brown <julian@codesourcery.com>
23259 Naveen H.S <Naveen.Hurugalawadi@cavium.com>
23261 * config/aarch64/thunderx2t99.md (thunderx2t99_aes): New Reservation.
23262 (thunderx2t99_sha): New Reservation.
23264 2017-04-25 Julian Brown <julian@codesourcery.com>
23265 Naveen H.S <Naveen.Hurugalawadi@cavium.com>
23267 * config/aarch64/aarch64-simd.md (aarch64_simd_vec_set<mode>): Fix
23268 type for 1-element load.
23270 2017-04-24 Marc Glisse <marc.glisse@inria.fr>
23272 * match.pd (X/[ex]C CMP Y/[ex]C): New transformation.
23274 2017-04-24 Martin Jambor <mjambor@suse.cz>
23276 PR tree-optimization/80293
23277 * tree-sra.c (scalarizable_type_p): New parameter const_decl, make
23278 char arrays not totally scalarizable if it is false.
23279 (analyze_all_variable_accesses): Pass correct value in the new
23280 parameter. Add a statistics counter.
23282 2017-04-24 Jan Hubicka <hubicka@ucw.cz>
23284 PR middle-end/79931
23285 * ipa-devirt.c (dump_possible_polymorphic_call_targets): Fix ICE.
23287 2017-04-24 Richard Biener <rguenther@suse.de>
23289 PR tree-optimization/80494
23290 * tree-scalar-evolution.c (analyze_scalar_evolution_1): Bail
23291 out for complex types.
23293 2017-04-24 Richard Biener <rguenther@suse.de>
23295 * tree-ssa-sccvn.h (run_scc_vn): Adjust prototype.
23296 * tree-ssa-sccvn.c (print_scc): Print SCC size.
23297 (extract_and_process_scc_for_name): Never fail but drop SCC to varying.
23298 (DFS): Adjust and never fail.
23299 (sccvn_dom_walker::fail): Remove.
23300 (sccvn_dom_walker::before_dom_children): Adjust.
23301 (run_scc_vn): Likewise and never fail.
23302 * tree-ssa-pre.c (pass_pre::execute): Adjust.
23303 (pass_fre::execute): Likewise.
23305 2017-04-24 Richard Biener <rguenther@suse.de>
23307 PR tree-optimization/79725
23308 * tree-ssa-sink.c (statement_sink_location): Return whether
23309 failure reason was zero uses. Move that check later.
23310 (sink_code_in_bb): Deal with zero uses by removing the stmt
23313 2017-04-24 Richard Biener <rguenther@suse.de>
23316 * tree-ssa-uninit.c (warn_uninitialized_vars): Handle some
23317 pointer-based references.
23319 2017-04-24 Richard Biener <rguenther@suse.de>
23322 * pass_manager.h (pass_manager::operator new): Remove.
23323 (pass_manager::operator delete): Likewise.
23324 * passes.c (pass_manager::operator new): Remove.
23325 (pass_manager::operator delete): Likewise.
23326 (pass_manager::pass_manager): Zero individual pass members.
23328 2017-04-23 Uros Bizjak <ubizjak@gmail.com>
23331 * config/i386/i386.c (dimode_scalar_to_vector_candidate_p)
23332 <case ASHIFT, case LSHIFTRT>: Also consider variable shifts.
23333 Check "XEXP (src, 1)" operand here.
23334 <case PLUS, case MINUS, case IOR, case XOR, case AND>:
23335 Check "XEXP (src, 1)" operand here.
23336 (dimode_scalar_chain::make_vector_copies): Detect count register
23337 of a shift instruction. Zero extend count register from QImode
23338 to DImode to satisfy vector shift pattern count operand predicate.
23339 Substitute vector shift count operand with a DImode copy.
23340 (dimode_scalar_chain::convert_reg): Ditto, zero-extend from
23343 2017-04-21 Uros Bizjak <ubizjak@gmail.com>
23345 * config/i386/i386.md (*extzvqi_mem_rex64): Move above *extzv<mode>.
23346 Remove UNSPEC_NOREX_MEM tag. Update corresponding peephole2 pattern.
23347 (*insvqi_1_mem_rex64): Move above insv<mode>_1. Remove
23348 UNSPEC_NOREX_MEM tag. Update corresponding peephole2 pattern.
23349 (UNSPEC_NOREX_MEM): Remove definition.
23351 2017-04-21 Richard Biener <rguenther@suse.de>
23353 PR tree-optimization/79547
23354 * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
23355 Handle strlen, strcmp, strncmp, strcasecmp, strncasecmp, memcmp,
23356 bcmp, strspn, strcspn, __builtin_object_size and __builtin_constant_p
23357 without any constraints.
23359 2017-04-21 Richard Biener <rguenther@suse.de>
23361 PR tree-optimization/78847
23362 * fold-const.c (split_tree): Handle POINTER_PLUS_EXPR.
23364 2017-04-21 Richard Biener <rguenther@suse.de>
23366 * tree.h (build_qualified_type): Annotate with CXX_MEM_STAT_INFO.
23367 (build_distinct_type_copy): Likewise.
23368 (build_variant_type_copy): Likewise.
23369 * tree.c (build_qualified_type): Pass down mem-stat info.
23370 (build_distinct_type_copy): Likewise.
23371 (build_variant_type_copy): Likewise.
23373 2017-04-21 Richard Biener <rguenther@suse.de>
23375 PR tree-optimization/80237
23376 * tree-ssa-pre.c (find_leader_in_sets): Add third set argument,
23378 (phi_translate_1): Also allow a leader in AVAIL_OUT of pred
23379 for a simplified result.
23381 2016-04-21 Richard Biener <rguenther@suse.de>
23383 * tree-ssa-loop-ivcanon.c (constant_after_peeling): Do not require
23384 sth as strict as a simple_iv but a chrec without symbols and an
23385 operand defined in the loop we are peeling (and not some subloop).
23386 (propagate_constants_for_unrolling): Propagate all constants.
23388 2017-04-20 Uros Bizjak <ubizjak@gmail.com>
23391 * config/i386/i386.c (print_reg): Remove assert for disalowed
23392 regno values, call output_operand_lossage instead.
23394 2017-04-20 Uros Bizjak <ubizjak@gmail.com>
23397 * config/i386/constraints.md (Yc): New register constraint.
23398 * config/i386/i386.md (*float<SWI48:mode><MODEF:mode>2_mixed):
23399 Use Yc constraint for alternative 2 of operand 0. Remove
23400 preferred_for_speed attribute.
23402 2017-04-20 Alexander Monakov <amonakov@ispras.ru>
23404 * omp-low.c (lower_lastprivate_clauses): Correct handling of linear and
23405 lastprivate clauses in SIMT case.
23407 2017-04-20 Volker Reichelt <v.reichelt@netcologne.de>
23409 * doc/invoke.texi (-Wextra-semi): Document new warning option.
23411 2017-04-20 Richard Biener <rguenther@suse.de>
23413 PR tree-optimization/57796
23414 * tree-vect-stmts.c (vect_model_store_cost): Cost scatters
23415 as N scalar stores.
23416 (vect_model_load_cost): Cost gathers as N scalar loads.
23418 2017-04-20 Richard Biener <rguenther@suse.de>
23420 * ggc-page.c (ggc_allocated_p): Rename to ...
23421 (safe_lookup_page_table_entry): ... this and return the lookup
23423 (gt_ggc_m_S): Use safe_lookup_page_table_entry.
23425 2017-04-20 Richard Biener <rguenther@suse.de>
23427 PR tree-optimization/80453
23428 * tree-ssa-sccvn.h (struct vn_phi_s): Add cclhs and ccrhs members.
23429 * tree-ssa-sccvn.c (cond_stmts_equal_p): Use recorded lhs and rhs
23430 from the conditions.
23431 (vn_phi_eq): Pass them down.
23432 (vn_phi_lookup): Record them.
23433 (vn_phi_insert): Likewise.
23435 2017-04-20 Matthew Fortune <matthew.fortune@imgtec.com>
23437 * config/mips/mips.c (mips_expand_vec_perm_const): Re-fix
23438 uninitialized variable warning to avoid buffer overrun.
23440 2017-04-20 Alexander Monakov <amonakov@ispras.ru>
23443 * doc/invoke.texi (-Wmissing-field-initializers): Mention that warning
23444 is suppressed for '{ 0 }' in C.
23446 2017-04-20 Jakub Jelinek <jakub@redhat.com>
23448 * BASE-VER: Set to 8.0.0.
23450 2017-04-20 Thomas Preud'homme <thomas.preudhomme@arm.com>
23452 * config/arm/arm.c (arm_elf_asm_cdtor): Create non-default
23453 priority .init_array and .fini_array section with SECTION_NOTYPE
23456 2017-04-20 Jakub Jelinek <jakub@redhat.com>
23458 PR middle-end/80423
23459 * tree.h (build_array_type): Add typeless_storage default argument.
23460 * tree.c (type_cache_hasher::equal): Also compare
23461 TYPE_TYPELESS_STORAGE flag for ARRAY_TYPEs.
23462 (build_array_type): Add typeless_storage argument, set
23463 TYPE_TYPELESS_STORAGE to it, if shared also hash it, and pass to
23465 (build_nonshared_array_type): Adjust build_array_type_1 caller.
23466 (build_array_type): Likewise. Add typeless_storage argument.
23468 2017-04-19 Eric Botcazou <ebotcazou@adacore.com>
23469 Jakub Jelinek <jakub@redhat.com>
23471 PR tree-optimization/80426
23472 * tree-vrp.c (extract_range_from_binary_expr_1): For an additive
23473 operation on symbolic operands, also compute the overflow for the
23474 invariant part when the operation degenerates into a negation.
23476 2017-04-19 Jakub Jelinek <jakub@redhat.com>
23479 * dwarf2out.c (modified_type_die, gen_type_die_with_usage):
23480 Check for t with zero TYPE_QUALS_NO_ADDR_SPACE.
23483 * tree-ssa-loop-manip.c (find_uses_to_rename_def): Ignore debug uses.
23485 2017-04-19 Georg-Johann Lay <avr@gjlay.de>
23488 * config/avr/avr.c (tree.h): Include it.
23489 (cgraph.h): Include it.
23490 (avr_encode_section_info): Don't warn for uninitialized progmem
23491 variable if it's just an alias.
23493 2017-04-19 Richard Biener <rguenther@suse.de>
23496 * auto-profile.c (afdo_vpt_for_early_inline): Update SSA
23497 when needed by AutoPGO.
23499 2017-04-19 Paulo J. Matos <paulo@matos-sorge.com>
23502 * doc/lto.texi: Remove an extra 'that'.
23504 2017-04-19 Segher Boessenkool <segher@kernel.crashing.org>
23506 PR rtl-optimization/80429
23507 * ira.c (split_live_ranges_for_shrink_wrap): Don't split regs that
23508 are only used in debug insns.
23510 2017-04-19 Eric Botcazou <ebotcazou@adacore.com>
23511 Vladimir Makarov <vmakarov@redhat.com>
23513 * config/sparc/predicates.md (input_operand): Add comment. Return
23514 true for any memory operand when LRA is in progress.
23515 * config/sparc/sparc.c (sparc_expand_move): Minor formatting fix.
23517 2017-04-18 Jeff Law <law@redhat.com>
23520 * mips.md ({return,simple_return}_internal): Do not overwrite
23523 2017-04-18 Jakub Jelinek <jakub@redhat.com>
23525 PR tree-optimization/80443
23526 * tree-vrp.c (intersect_ranges): For signed 1-bit precision type,
23527 instead of adding 1, subtract -1 and similarly instead of subtracting
23530 2017-04-18 Richard Sandiford <richard.sandiford@arm.com>
23532 PR rtl-optimization/80357
23533 * haifa-sched.c (tmp_bitmap): New variable.
23534 (model_recompute): Handle duplicate use records.
23535 (alloc_global_sched_pressure_data): Initialize tmp_bitmap.
23536 (free_global_sched_pressure_data): Free it.
23538 2017-04-18 Bernd Edlinger <bernd.edlinger@hotmail.de>
23541 2017-02-20 Bernd Edlinger <bernd.edlinger@hotmail.de>
23542 * Makefile.in (BUILD_SYSTEM_HEADER_DIR): New make variabe.
23543 (LIMITS_H_TEST, if_multiarch, stmp-fixinc): Use BUILD_SYSTEM_HEADER_DIR
23544 instead of SYSTEM_HEADER_DIR.
23546 2017-04-18 Jeff Law <law@redhat.com>
23548 PR middle-end/80422
23549 * cfgcleanup.c (try_crossjump_to_edge): Verify SRC1 and SRC2 have
23550 predecessors after walking up the insn chain.
23552 2017-04-18 Jakub Jelinek <jakub@redhat.com>
23555 * dwarf2out.c (modified_type_die): Try harder not to emit internal
23556 sizetype type into debug info.
23558 2017-04-18 Michael Meissner <meissner@linux.vnet.ibm.com>
23561 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Eliminate
23562 unneeded test for TARGET_UPPER_REGS_SF.
23563 * config/rs6000/vsx.md (vsx_extract_v4sf_var): Likewise.
23565 2017-04-18 Jakub Jelinek <jakub@redhat.com>
23568 * sancov.c (sancov_pass): Use gsi_start_nondebug_after_labels_bb
23569 instead of gsi_after_labels.
23571 2017-04-18 Jeff Law <law@redhat.com>
23573 * regcprop.c (maybe_mode_change): Avoid creating copies of the
23577 2017-04-13 Jeff Law <law@redhat.com>
23578 * config/mips.mips.md (zero_extendsidi2): Do not allow SP to appear
23579 in operands[1] if it is a MEM and TARGET_MIPS16 is active.
23581 2017-04-18 Georg-Johann Lay <avr@gjlay.de>
23584 * config/avr/avr.c (intl.h): Include it.
23585 (avr_pgm_check_var_decl) [reason]: Wrap diagnostic snippets into _().
23587 2017-04-18 Martin Liska <mliska@suse.cz>
23589 PR gcov-profile/78783
23590 * gcov-tool.c (gcov_output_files): Validate that destination
23591 file is either removed by the tool or by a user.
23593 2017-04-14 Andrew Burgess <andrew.burgess@embecosm.com>
23594 Guy Benyei <guybe@mellanox.com>
23596 * config/arc/arc.c (arc_reorg): Move loop_end_id into a more local
23597 block, and do not negate it, the stored id is already negative.
23599 2017-04-14 Andrew Burgess <andrew.burgess@embecosm.com>
23601 * config/arc/arc.md (doloop_begin_i): Use @pcl assembler syntax.
23603 2017-04-14 Michael Meissner <meissner@linux.vnet.ibm.com>
23606 * config/rs6000/rs6000-cpus.def (OTHER_P9_VECTOR_MASKS): Define
23607 masks of options that should be turned off if the VSX vector
23608 options are turned off.
23609 (OTHER_P8_VECTOR_MASKS): Likewise.
23610 (OTHER_VSX_VECTOR_MASKS): Likewise.
23611 * config/rs6000/rs6000.c (rs6000_option_override_internal): Call
23612 rs6000_disable_incompatible_switches to validate no type switches
23614 (rs6000_incompatible_switch): New function to disallow turning on
23615 other vector options if -mno-vsx, -mno-power8-vector, or
23616 -mno-power9-vector are specified.
23618 2017-04-14 Claudiu Zissulescu <claziss@synopsys.com>
23620 * config/arc/arc.h (CRT_CALL_STATIC_FUNCTION): Use long calls.
23622 2017-04-14 Claudiu Zissulescu <claziss@synopsys.com>
23624 * config/arc/arc-protos.h (arc_decl_pretend_args): Remove.
23625 * config/arc/arc.c (arc_decl_pretend_args): Likewise.
23626 * config/arc/arc.h (CFA_FRAME_BASE_OFFSET): Likewise.
23627 (ARG_POINTER_CFA_OFFSET): Likewise.
23629 2017-04-14 Claudiu Zissulescu <claziss@synopsys.com>
23631 * config/arc/arc.c (arc_mode_dependent_address_p): Relax
23632 conditions to take advantage of various optimizations.
23634 2017-04-13 Jeff Law <law@redhat.com>
23636 * config/mips.mips.md (zero_extendsidi2): Do not allow SP to appear
23637 in operands[1] if it is a MEM and TARGET_MIPS16 is active.
23638 (zero_extendsidi2_dext): Likewise.
23640 2017-04-13 Jakub Jelinek <jakub@redhat.com>
23643 * fold-const.c (fold_ternary_loc): Revert
23644 use op0 instead of fold_convert_loc (loc, type, arg0) part of
23647 2017-04-13 Vladimir Makarov <vmakarov@redhat.com>
23649 PR rtl-optimization/80343
23650 * lra-remat.c (update_scratch_ops): Assign original hard reg to
23651 new scratch pseudo.
23653 2017-04-13 Denis Khalikov <d.khalikov@partner.samsung.com>
23656 * ubsan.c (ubsan_expand_bounds_ifn): Pass original index
23657 to ubsan_encode_value.
23659 2017-04-13 Jeff Law <law@redhat.com>
23661 * reload1.c (eliminate_regs_1): Call gen_rtx_raw_SUBREG for SUBREGs
23662 appearing in DEBUG_INSNs.
23664 2017-04-13 Martin Liska <mliska@suse.cz>
23666 PR gcov-profile/80413
23667 * gcov-io.c (gcov_write_string): Copy to buffer just when
23668 allocated size is greater than zero.
23670 2017-04-13 Jakub Jelinek <jakub@redhat.com>
23673 * dwarf2out.c (decls_for_scope): Ignore declarations of
23674 current_function_decl in BLOCK_NONLOCALIZED_VARS.
23676 2017-04-12 Jan Hubicka <hubicka@ucw.cz>
23679 * ipa-visibility.c (non_local_p): Fix typos.
23680 (localize_node): When localizing symbol in same comdat group,
23681 dissolve the group only when we know external symbols are going
23683 (function_and_variable_visibility): Do not localize DECL_EXTERNAL.
23685 2017-04-12 Jakub Jelinek <jakub@redhat.com>
23687 PR tree-optimization/79390
23688 * optabs.c (emit_conditional_move): If the preferred op2/op3 operand
23689 order does not result in usable sequence, retry with reversed operand
23695 * fold-const.c (fold_ternary_loc): Use op1 instead of arg1 as argument
23696 to fold_build2_loc. Convert TREE_OPERAND (tem, 0) to type. Use
23697 op0 instead of fold_convert_loc (loc, type, arg0).
23699 2017-04-12 Jeff Law <law@redhat.com>
23701 * genattrtab.c (write_eligible_delay): Verify DELAY_INSN still
23702 has a delay slot in the generated code.
23704 * config/cris/cris.md (cris_preferred_reload_class): Return
23705 GENNONACR_REGS rather than GENERAL_REGS.
23707 2017-04-12 Jakub Jelinek <jakub@redhat.com>
23710 * expr.c <CASE_CONVERT>: For EXPAND_INITIALIZER determine SIGN_EXTEND
23711 vs. ZERO_EXTEND based on signedness of treeop0's type rather than
23712 signedness of the result type.
23714 2017-04-12 Richard Biener <rguenther@suse.de>
23715 Jeff Law <law@redhat.com>
23717 PR tree-optimization/80359
23718 * tree-ssa-dse.c (maybe_trim_partially_dead_store): Do not
23719 trim stores to TARGET_MEM_REFs.
23721 2017-04-12 Richard Biener <rguenther@suse.de>
23723 PR tree-optimization/79390
23724 * gimple-ssa-split-paths.c (is_feasible_trace): Restrict
23725 threading case even more.
23727 2017-04-12 Segher Boessenkool <segher@kernel.crashing.org>
23730 * config/rs6000/sync.md (atomic_load<mode>, atomic_store<mode): Test
23731 for quad_address_p for TImode, instead of just not indexed_address.
23733 2017-04-12 Richard Biener <rguenther@suse.de>
23734 Bernd Edlinger <bernd.edlinger@hotmail.de>
23736 PR middle-end/79671
23737 * alias.c (component_uses_parent_alias_set_from): Handle
23738 TYPE_TYPELESS_STORAGE.
23739 (get_alias_set): Likewise.
23740 * tree-core.h (tree_type_common): Add typeless_storage flag.
23741 * tree.h (TYPE_TYPELESS_STORAGE): New macro.
23742 * stor-layout.c (place_union_field): Set TYPE_TYPELESS_STORAGE
23743 for types containing members with TYPE_TYPELESS_STORAGE.
23744 (place_field): Likewise.
23745 (layout_type): Likewise for ARRAY_TYPE.
23746 * lto-streamer-out.c (hash_tree): Hash TYPE_TYPELESS_STORAGE.
23747 * tree-streamer-in.c (unpack_ts_type_common_value_fields): Stream
23748 TYPE_TYPELESS_STORAGE.
23749 * tree-streamer-out.c (pack_ts_type_common_value_fields): Likewise.
23751 2017-04-12 Jakub Jelinek <jakub@redhat.com>
23754 * fold-const.c (fold_binary_loc) <case BIT_IOR_EXPR>: Convert arg0's
23755 first argument to type.
23757 2017-04-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
23761 * config/rs6000/rs6000.c (rs6000_expand_unop_builtin): Return
23762 CONST0_RTX (mode) rather than const0_rtx where appropriate.
23763 (rs6000_expand_binop_builtin): Likewise.
23764 (rs6000_expand_ternop_builtin): Likewise; also add missing
23765 vsx_xxpermdi_* variants; also fix typo (arg1 => arg2) for
23766 vshasigma built-ins.
23767 * doc/extend.texi: Document that vec_xxpermdi's third argument
23768 must be a constant.
23770 2017-04-11 Uros Bizjak <ubizjak@gmail.com>
23772 * config/i386/i386.c (dimode_scalar_chain::compute_convert_gain):
23773 Use shift_const cost parameter when calculating gain of STV shifts.
23775 2017-04-11 Vladimir Makarov <vmakarov@redhat.com>
23777 PR rtl-optimization/70478
23778 * lra-constraints.c (process_alt_operands): Check memory for
23779 disfavoring memory insn operand.
23781 2017-04-11 Jakub Jelinek <jakub@redhat.com>
23783 PR middle-end/80100
23784 * simplify-rtx.c (simplify_binary_operation_1) <case IOR>: Perform
23785 left shift in unsigned HOST_WIDE_INT type.
23787 PR rtl-optimization/80385
23788 * simplify-rtx.c (simplify_unary_operation_1): Don't transform
23789 (not (neg X)) into (plus X -1) for complex or non-integral modes.
23792 * omp-low.c (scan_omp_task): Don't optimize away empty tasks
23793 if they have any depend clauses.
23795 2017-04-11 Martin Liska <mliska@suse.cz>
23798 * cgraph.c (cgraph_node::dump): Dump calls_comdat_local.
23799 * ipa-split.c (split_function): Create a local comdat symbol
23800 if caller is in a comdat group.
23802 2017-04-11 Martin Liska <mliska@suse.cz>
23805 * ipa-cp.c (determine_versionability): Handle calls_comdat_local
23808 2017-04-11 Martin Sebor <msebor@redhat.com>
23810 PR middle-end/80364
23811 * gimple-ssa-sprintf.c (get_int_range): Remove second argument and
23812 always use the int type. Use INTEGRAL_TYPE_P() rather than testing
23814 (directive::set_width, directive::set_precision, format_character):
23816 (parse_directive): Use INTEGRAL_TYPE_P() rather than testing for
23819 2017-04-11 Richard Earnshaw <rearnsha@arm.com>
23822 * config/arm/arm.c (arm_configure_build_target): When -mcpu and -arch
23823 conflict, set target->arch_name instead of target->cpu_name.
23825 2017-04-11 Richard Biener <rguenther@suse.de>
23827 PR tree-optimization/80374
23828 * tree-ssa-dom.c (derive_equivalences_from_bit_ior): Use
23829 build_zero_cst, remove fold_convertible_p check again.
23831 2017-04-11 Martin Liska <mliska@suse.cz>
23834 * ubsan.c (instrument_object_size): Do not instrument register
23837 2017-04-11 Jakub Jelinek <jakub@redhat.com>
23840 * config/i386/i386-builtin-types.def
23841 (V16HI_FTYPE_V16HI_INT_V16HI_UHI_COUNT,
23842 V16HI_FTYPE_V16HI_V8HI_V16HI_UHI_COUNT,
23843 V16SI_FTYPE_V16SI_INT_V16SI_UHI_COUNT,
23844 V16SI_FTYPE_V16SI_V4SI_V16SI_UHI_COUNT,
23845 V2DI_FTYPE_V2DI_INT_V2DI_UQI_COUNT,
23846 V2DI_FTYPE_V2DI_V2DI_V2DI_UQI_COUNT,
23847 V32HI_FTYPE_V32HI_INT_V32HI_USI_COUNT,
23848 V32HI_FTYPE_V32HI_V8HI_V32HI_USI_COUNT,
23849 V4DI_FTYPE_V4DI_INT_V4DI_UQI_COUNT,
23850 V4DI_FTYPE_V4DI_V2DI_V4DI_UQI_COUNT,
23851 V4SI_FTYPE_V4SI_INT_V4SI_UQI_COUNT,
23852 V4SI_FTYPE_V4SI_V4SI_V4SI_UQI_COUNT,
23853 V8DI_FTYPE_V8DI_INT_V8DI_UQI_COUNT,
23854 V8DI_FTYPE_V8DI_V2DI_V8DI_UQI_COUNT,
23855 V8HI_FTYPE_V8HI_INT_V8HI_UQI_COUNT,
23856 V8HI_FTYPE_V8HI_V8HI_V8HI_UQI_COUNT,
23857 V8SI_FTYPE_V8SI_INT_V8SI_UQI_COUNT,
23858 V8SI_FTYPE_V8SI_V4SI_V8SI_UQI_COUNT): New function type aliases.
23859 * config/i386/i386-builtin.def (__builtin_ia32_pslld512_mask,
23860 __builtin_ia32_pslldi512_mask, __builtin_ia32_psllq512_mask,
23861 __builtin_ia32_psllqi512_mask, __builtin_ia32_psrad512_mask,
23862 __builtin_ia32_psradi512_mask, __builtin_ia32_psraq512_mask,
23863 __builtin_ia32_psraqi512_mask, __builtin_ia32_psrld512_mask,
23864 __builtin_ia32_psrldi512_mask, __builtin_ia32_psrlq512_mask,
23865 __builtin_ia32_psrlqi512_mask, __builtin_ia32_psllwi128_mask,
23866 __builtin_ia32_pslldi128_mask, __builtin_ia32_psllqi128_mask,
23867 __builtin_ia32_psllw128_mask, __builtin_ia32_pslld128_mask,
23868 __builtin_ia32_psllq128_mask, __builtin_ia32_psllwi256_mask,
23869 __builtin_ia32_psllw256_mask, __builtin_ia32_pslldi256_mask,
23870 __builtin_ia32_pslld256_mask, __builtin_ia32_psllqi256_mask,
23871 __builtin_ia32_psllq256_mask, __builtin_ia32_psradi128_mask,
23872 __builtin_ia32_psrad128_mask, __builtin_ia32_psradi256_mask,
23873 __builtin_ia32_psrad256_mask, __builtin_ia32_psraqi128_mask,
23874 __builtin_ia32_psraq128_mask, __builtin_ia32_psraqi256_mask,
23875 __builtin_ia32_psraq256_mask, __builtin_ia32_psrldi128_mask,
23876 __builtin_ia32_psrld128_mask, __builtin_ia32_psrldi256_mask,
23877 __builtin_ia32_psrld256_mask, __builtin_ia32_psrlqi128_mask,
23878 __builtin_ia32_psrlq128_mask, __builtin_ia32_psrlqi256_mask,
23879 __builtin_ia32_psrlq256_mask, __builtin_ia32_psrawi256_mask,
23880 __builtin_ia32_psraw256_mask, __builtin_ia32_psrawi128_mask,
23881 __builtin_ia32_psraw128_mask, __builtin_ia32_psrlwi256_mask,
23882 __builtin_ia32_psrlw256_mask, __builtin_ia32_psrlwi128_mask,
23883 __builtin_ia32_psrlw128_mask, __builtin_ia32_psllwi512_mask,
23884 __builtin_ia32_psllw512_mask, __builtin_ia32_psrawi512_mask,
23885 __builtin_ia32_psraw512_mask, __builtin_ia32_psrlwi512_mask,
23886 __builtin_ia32_psrlw512_mask): Use _COUNT suffixed function type
23888 * config/i386/i386.c (ix86_expand_args_builtin): Rename last_arg_count
23889 flag to second_arg_count, handle 4 argument function type _COUNT
23890 aliases, handle second_arg_count on second argument rather than last.
23892 2017-04-10 Jeff Law <law@redhat.com>
23894 PR tree-optimization/80374
23895 * tree-ssa-dom.c (derive_equivalences_from_bit_ior): Do not try to
23896 record anything if we can not convert integer_zero_node to the
23899 2017-04-10 Kelvin Nilsen <kelvin@gcc.gnu.org>
23902 * config/rs6000/rs6000.c (rs6000_option_override_internal):
23903 Enhance special handling given to the TARGET_P9_MINMAX option in
23904 relation to certain other options.
23906 2017-04-10 Bin Cheng <bin.cheng@arm.com>
23908 PR tree-optimization/80153
23909 * tree-ssa-loop-ivopts.c (add_iv_candidate_for_use): Check and
23910 remove POINTER_PLUS_EXPR's base part directly, rather than through
23913 2017-04-10 Richard Biener <rguenther@suse.de>
23914 Bin Cheng <bin.cheng@arm.com>
23916 PR tree-optimization/80153
23917 * tree-affine.c (aff_combination_to_tree): Get base pointer from
23918 the first element of pointer type aff_tree. Build result expr in
23920 (add_elt_to_tree): Convert to type unconditionally. Remove other
23921 fold_convert calls.
23922 * tree-ssa-loop-ivopts.c (alloc_iv): Pass in consistent types.
23923 (rewrite_use_nonlinear_expr): Check invariant using iv information.
23925 2017-04-10 Richard Biener <rguenther@suse.de>
23927 * tree-ssa-structalias.c (find_func_aliases): Properly handle
23930 2017-04-10 Vladimir Makarov <vmakarov@redhat.com>
23932 PR rtl-optimization/70478
23933 * lra-constraints.c (curr_small_class_check): New.
23934 (update_and_check_small_class_inputs): New.
23935 (process_alt_operands): Update curr_small_class_check. Disfavor
23936 alternative insn memory operands. Check available regs for small
23939 2017-03-31 Matthew Fortune <matthew.fortune@imgtec.com>
23942 * config/mips/mips.opt (-mvirt): Update description.
23943 * doc/invoke.texi (-mvirt): Likewise.
23945 2017-04-10 Richard Biener <rguenther@suse.de>
23947 PR middle-end/80362
23948 * fold-const.c (fold_binary_loc): Look at unstripped ops when
23949 looking for NEGATE_EXPR in -A / -B to A / B folding.
23951 2017-04-10 Martin Liska <mliska@suse.cz>
23953 PR gcov-profile/80224
23954 * gcov.c (print_usage): Fix usage string.
23955 (get_gcov_intermediate_filename): Remove.
23956 (output_gcov_file): Use both for normal and intermediate format.
23957 (generate_results): Do not initialize special file for
23958 intermediate format.
23960 2017-04-10 Richard Biener <rguenther@suse.de>
23962 PR tree-optimization/80304
23963 * tree-ssa-loop-im.c (ref_indep_loop_p_1): Also recurse
23966 2017-04-10 Nathan Sidwell <nathan@acm.org>
23969 * config/rs6000/rs6000.c (rs6000_vector_type): New.
23970 (rs6000_init_builtins): Use it.
23972 2016-04-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23974 * config/arm/arm.md (<mrc>): Add mode to SET source.
23975 (<mrrc>): Likewise.
23977 2017-04-10 Richard Biener <rguenther@suse.de>
23979 PR middle-end/80344
23980 * gimplify.c (is_gimple_mem_rhs_or_call): Allow CLOBBERs.
23982 2017-04-10 Jakub Jelinek <jakub@redhat.com>
23985 * config/i386/avx512fintrin.h (_mm512_reduce_add_epi32,
23986 _mm512_reduce_mul_epi32, _mm512_reduce_and_epi32,
23987 _mm512_reduce_or_epi32, _mm512_mask_reduce_add_epi32,
23988 _mm512_mask_reduce_mul_epi32, _mm512_mask_reduce_and_epi32,
23989 _mm512_mask_reduce_or_epi32, _mm512_reduce_min_epi32,
23990 _mm512_reduce_max_epi32, _mm512_reduce_min_epu32,
23991 _mm512_reduce_max_epu32, _mm512_mask_reduce_min_epi32,
23992 _mm512_mask_reduce_max_epi32, _mm512_mask_reduce_min_epu32,
23993 _mm512_mask_reduce_max_epu32, _mm512_reduce_add_ps,
23994 _mm512_reduce_mul_ps, _mm512_mask_reduce_add_ps,
23995 _mm512_mask_reduce_mul_ps, _mm512_reduce_min_ps, _mm512_reduce_max_ps,
23996 _mm512_mask_reduce_min_ps, _mm512_mask_reduce_max_ps,
23997 _mm512_reduce_add_epi64, _mm512_reduce_mul_epi64,
23998 _mm512_reduce_and_epi64, _mm512_reduce_or_epi64,
23999 _mm512_mask_reduce_add_epi64, _mm512_mask_reduce_mul_epi64,
24000 _mm512_mask_reduce_and_epi64, _mm512_mask_reduce_or_epi64,
24001 _mm512_reduce_min_epi64, _mm512_reduce_max_epi64,
24002 _mm512_mask_reduce_min_epi64, _mm512_mask_reduce_max_epi64,
24003 _mm512_reduce_min_epu64, _mm512_reduce_max_epu64,
24004 _mm512_mask_reduce_min_epu64, _mm512_mask_reduce_max_epu64,
24005 _mm512_reduce_add_pd, _mm512_reduce_mul_pd, _mm512_mask_reduce_add_pd,
24006 _mm512_mask_reduce_mul_pd, _mm512_reduce_min_pd, _mm512_reduce_max_pd,
24007 _mm512_mask_reduce_min_pd, _mm512_mask_reduce_max_pd): New intrinsics.
24009 2017-04-08 Vladimir Makarov <vmakarov@redhat.com>
24011 PR rtl-optimization/70478
24012 * lra-constraints.c: Reverse the last patch.
24014 2017-04-08 Andreas Tobler <andreast@gcc.gnu.org>
24016 * config/aarch64/aarch64-freebsd.h: Define MCOUNT_NAME.
24017 Add comment for WCHAR_T.
24019 2017-04-08 Martin Liska <mliska@suse.cz>
24022 2017-04-07 Martin Liska <mliska@suse.cz>
24025 * ipa-split.c (split_function): Add function part to a same comdat
24028 2017-04-08 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
24031 * config/rs6000/rs6000.c (expand_block_compare): Fix boundary check.
24033 2017-04-07 Pat Haugen <pthaugen@us.ibm.com>
24035 * rs6000/rs6000.c (vec_load_pendulum): Rename...
24036 (vec_pairing): ...to this.
24037 (power9_sched_reorder2): Rewrite code for pairing vector/vecload insns.
24038 (rs6000_sched_init): Adjust for name change.
24039 (struct rs6000_sched_context): Likewise.
24040 (rs6000_init_sched_context): Likewise.
24041 (rs6000_set_sched_context): Likewise.
24043 2017-04-07 Jakub Jelinek <jakub@redhat.com>
24049 * config/i386/avxintrin.h (_mm256_cvtsd_f64, _mm256_cvtss_f32): New
24051 * config/i386/avx512fintrin.h (_mm512_int2mask, _mm512_mask2int,
24052 _mm512_abs_ps, _mm512_mask_abs_ps, _mm512_abs_pd, _mm512_mask_abs_pd,
24053 _mm512_cvtsd_f64, _mm512_cvtss_f32): Likewise.
24055 2017-04-07 Andreas Tobler <andreast@gcc.gnu.org>
24057 * config/aarch64/aarch64-freebsd.h: Define WCHAR_TYPE.
24059 2017-04-07 Vladimir Makarov <vmakarov@redhat.com>
24061 PR rtl-optimization/70703
24062 * ira-color.c (update_conflict_hard_regno_costs): Use
24063 int64_t instead of HOST_WIDE_INT.
24065 2017-04-07 Vladimir Makarov <vmakarov@redhat.com>
24067 PR rtl-optimization/70478
24068 * lra-constraints.c (process_alt_operands): Disfavor alternative
24069 insn memory operands.
24071 2017-04-07 Jeff Law <law@redhat.com>
24073 * config/iq2000/iq2000.c (final_prescan_insn): Do not separate a
24074 CALL and NOTE_INSN_CALL_ARG_LOCATION.
24076 2017-04-07 Martin Liska <mliska@suse.cz>
24079 * config/aarch64/aarch64.c (aarch64_process_target_attr):
24080 Show error message instead of an ICE.
24082 2017-04-07 Martin Liska <mliska@suse.cz>
24085 * ipa-split.c (split_function): Add function part to a same comdat
24088 2017-04-07 Richard Biener <rguenther@suse.de>
24090 PR middle-end/80341
24091 * tree.c (get_unwidened): Also handle ! for_type case for
24093 * convert.c (do_narrow): Split out from ...
24094 (convert_to_integer_1): ... here. Do not pass final truncation
24095 type to get_unwidened for TRUNC_DIV_EXPR.
24097 2017-04-07 Richard Biener <rguenther@suse.de>
24099 * tree-affine.c (wide_int_ext_for_comb): Take type rather
24101 (aff_combination_const): Adjust.
24102 (aff_combination_scale): Likewise.
24103 (aff_combination_add_elt): Likewise.
24104 (aff_combination_add_cst): Likewise.
24105 (aff_combination_convert): Likewise.
24106 (add_elt_to_tree): Likewise. Remove unused argument.
24107 (aff_combination_to_tree): Adjust calls to add_elt_to_tree.
24109 2017-04-07 Sebastian Huber <sebastian.huber@embedded-brains.de>
24111 * config/arm/arm.h (ARM_DEFAULT_SHORT_ENUMS): Provide default
24113 * config/arm/arm.c (arm_default_short_enums): Use
24114 ARM_DEFAULT_SHORT_ENUMS.
24115 * config/arm/rtems.h (ARM_DEFAULT_SHORT_ENUMS): Define.
24117 2017-04-06 Jakub Jelinek <jakub@redhat.com>
24120 * dwarf2out.c (gen_member_die): Handle C++17 inline static data
24121 members with redundant out-of-class redeclaration.
24123 2017-04-06 Uros Bizjak <ubizjak@gmail.com>
24126 * config/i386/sse.md (*vec_extractv4si_0_zext_sse4): New pattern.
24127 * config/i386/i386.md (*zero_extendsidi2):
24128 Add (?*x,*x) and (?*v,*v) alternatives.
24130 2017-04-06 Uros Bizjak <ubizjak@gmail.com>
24133 * config/i386/i386.c (ix86_expand_builtin)
24134 <case IX86_BUILTIN_K{,OR}TEST{C,Z}{8,16,32,64}>: Determine insn operand
24135 mode from insn data. Convert operands to insn operand mode.
24136 Copy operands that don't satisfy insn predicate to a register.
24138 2017-04-06 Sam Thursfield <sam.thursfield@codethink.co.uk>
24140 * config/rs6000/x-aix: Increase memory limit for genautomata on AIX.
24143 2017-04-06 Richard Biener <rguenther@suse.de>
24145 PR tree-optimization/80334
24146 * tree-ssa-loop-ivopts.c (rewrite_use_address): Properly
24147 preserve alignment of accesses.
24149 2017-04-06 Richard Biener <rguenther@suse.de>
24151 PR tree-optimization/80262
24152 * tree-sra.c (build_ref_for_offset): Preserve address-space
24154 * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address):
24155 Drop useless address-space information on MEM_REF offsets.
24157 2017-04-05 Andreas Schwab <schwab@linux-m68k.org>
24159 * builtins.def (BUILT_IN_UPDATE_SETJMP_BUF): Fix type.
24161 2017-04-05 Vladimir Makarov <vmakarov@redhat.com>
24163 PR rtl-optimization/70703
24164 * ira-color.c (update_conflict_hard_regno_costs): Use
24165 HOST_WIDE_INT instead of long.
24167 2017-04-05 Uros Bizjak <ubizjak@gmail.com>
24170 * config/i386/mmintrin.h: Add -msse target option when __SSE__ is
24171 not defined for x86_64 target. Add -mmmx target option when __SSE2__
24173 * config/i386/mm3dnow.h: Add -msse target when __SSE__ is not defined
24174 for x86_64 target. Handle -m3dnowa option.
24176 2017-04-05 Vladimir Makarov <vmakarov@redhat.com>
24178 PR rtl-optimization/70703
24179 * ira-color.c (update_costs_from_allocno): Use the smallest mode.
24180 (update_conflict_hard_regno_costs): Use long instead of unsigned
24181 arithmetic for cost calculation.
24183 2017-04-05 Jakub Jelinek <jakub@redhat.com>
24184 Bernd Edlinger <bernd.edlinger@hotmail.de>
24187 * asan.c (asan_store_shadow_bytes): Fix location of last_chunk_value
24190 2017-04-05 Eric Botcazou <ebotcazou@adacore.com>
24193 * config/aarch64/aarch64.c (aarch64_emit_probe_stack_range): Replace
24194 ptr_mode with Pmode throughout.
24195 * config/aarch64/aarch64.md (probe_stack_range_<PTR:mode): Rename
24196 into probe_stack_range and use DImode.
24198 2017-04-05 Dominik Vogt <vogt@linux.vnet.ibm.com>
24201 * config/s390/s390.c (s390_register_info_gprtofpr): Return if
24202 call_eh_return is true.
24204 2017-04-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24206 * config/s390/s390-c.c (s390_resolve_overloaded_builtin):
24207 Initialize last_match_fntype_index.
24209 2017-04-05 Jakub Jelinek <jakub@redhat.com>
24212 * tree-nvr.c: Include internal-fn.h.
24213 (pass_return_slot::execute): Ignore internal calls without
24216 2017-04-04 Jakub Jelinek <jakub@redhat.com>
24217 Richard Biener <rguenther@suse.de>
24220 * genmatch.c (capture::gen_transform): For GENERIC unshare_expr
24221 captures used multiple times, except for the last use.
24222 * generic-match-head.c: Include gimplify.h.
24224 2017-04-04 Jakub Jelinek <jakub@redhat.com>
24226 PR tree-optimization/79390
24227 * target.h (struct noce_if_info): Declare.
24228 * targhooks.h (default_noce_conversion_profitable_p): Declare.
24229 * target.def (noce_conversion_profitable_p): New target hook.
24230 * ifcvt.h (struct noce_if_info): New type, moved from ...
24231 * ifcvt.c (struct noce_if_info): ... here.
24232 (noce_conversion_profitable_p): Renamed to ...
24233 (default_noce_conversion_profitable_p): ... this. No longer
24235 (noce_try_store_flag_constants, noce_try_addcc,
24236 noce_try_store_flag_mask, noce_try_cmove, noce_try_cmove_arith,
24237 noce_convert_multiple_sets): Use targetm.noce_conversion_profitable_p
24238 instead of noce_conversion_profitable_p.
24239 * config/i386/i386.c: Include ifcvt.h.
24240 (ix86_option_override_internal): Don't override
24241 PARAM_MAX_RTL_IF_CONVERSION_INSNS default.
24242 (ix86_noce_conversion_profitable_p): New function.
24243 (TARGET_NOCE_CONVERSION_PROFITABLE_P): Redefine.
24244 * config/i386/x86-tune.def (X86_TUNE_ONE_IF_CONV_INSN): Adjust comment.
24245 * doc/tm.texi.in (TARGET_NOCE_CONVERSION_PROFITABLE_P): Add.
24246 * doc/tm.texi: Regenerated.
24248 2017-04-04 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
24250 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Grammar
24253 2017-04-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
24256 * config/arm/arm.c (thumb1_rtx_costs): Give a cost of 32
24257 instructions for small multiply cores.
24259 2017-04-04 Jeff Law <law@redhat.com>
24261 * config/mips/mips.c (mips_multi_add): Zero initialize the newly
24263 (mips_expand_vec_perm_const): Initialize elements in orig_perm
24264 that are not set by the loop over the elements.
24266 2017-04-04 Jakub Jelinek <jakub@redhat.com>
24269 * config/i386/i386.c (ix86_expand_args_builtin): If op has scalar
24270 int mode, convert_modes it to mode as unsigned, otherwise use
24271 lowpart_subreg to mode rather than SImode.
24272 * config/i386/sse.md (<mask_codefor>ashr<mode>3<mask_name>,
24273 ashr<mode>3, ashr<mode>3<mask_name>, <shift_insn><mode>3<mask_name>):
24274 Use DImode instead of SImode for the shift count operand.
24275 * config/i386/mmx.md (mmx_ashr<mode>3, mmx_<shift_insn><mode>3):
24278 2017-04-04 Richard Biener <rguenther@suse.de>
24280 PR middle-end/80281
24281 * match.pd (A + (-B) -> A - B): Make sure to preserve unsigned
24282 arithmetic done for the negate or the plus. Simplify.
24283 (A - (-B) -> A + B): Likewise.
24284 * fold-const.c (split_tree): Make sure to not negate pointers.
24286 2017-04-04 Segher Boessenkool <segher@kernel.crashing.org>
24288 PR rtl-optimization/60818
24289 * simplify-rtx.c (simplify_binary_operation_1): Do not replace
24290 a compare of comparisons with the thing compared if this results
24291 in a different machine mode.
24293 2017-04-03 Jonathan Wakely <jwakely@redhat.com>
24295 * alias.c (base_alias_check): Fix typo in comment.
24296 * cgraph.h (class ipa_polymorphic_call_context): Likewise.
24297 * cgraphunit.c (symbol_table::compile): Likewise.
24298 * collect2.c (maybe_run_lto_and_relink): Likewise.
24299 * config/arm/arm.c (arm_thumb1_mi_thunk): Likewise.
24300 * config/avr/avr-arch.h (avr_arch_info_t): Likewise.
24301 * config/avr/avr.c (avr_map_op_t): Likewise.
24302 * config/cr16/cr16.h (DATA_ALIGNMENT): Likewise.
24303 * config/epiphany/epiphany.c (TARGET_ARG_PARTIAL_BYTES): Likewise.
24304 * config/epiphany/epiphany.md (movcc): Likewise.
24305 * config/i386/i386.c (legitimize_pe_coff_extern_decl): Likewise.
24306 * config/m68k/m68k.c (struct _sched_ib, m68k_sched_variable_issue):
24308 * config/mips/mips.c (mips_save_restore_reg): Likewise.
24309 * config/rx/rx.c (rx_is_restricted_memory_address): Likewise.
24310 * config/s390/s390.c (Z10_EARLYLOAD_DISTANCE): Likewise.
24311 * config/sh/sh.c (sh_rtx_costs): Likewise.
24312 * fold-const.c (fold_truth_andor): Likewise.
24313 * genautomata.c (collapse_flag): Likewise.
24314 * gengtype.h (struct type::u::s): Likewise.
24315 * gensupport.c (has_subst_attribute, add_mnemonic_string): Likewise.
24316 * input.c (FORMAT_AMOUNT): Likewise.
24317 * ipa-cp.c (class ipcp_lattice, agg_replacements_to_vector)
24318 (known_aggs_to_agg_replacement_list): Likewise.
24319 * ipa-inline-analysis.c: Likewise.
24320 * ipa-inline.h (estimate_edge_time, estimate_edge_hints): Likewise.
24321 * ipa-polymorphic-call.c
24322 (ipa_polymorphic_call_context::restrict_to_inner_class): Likewise.
24323 * loop-unroll.c (analyze_insn_to_expand_var): Likewise.
24324 * lra.c (lra_optional_reload_pseudos, lra_subreg_reload_pseudos):
24326 * modulo-sched.c (apply_reg_moves): Likewise.
24327 * omp-expand.c (build_omp_regions_1): Likewise.
24328 * trans-mem.c (struct tm_wrapper_hasher): Likewise.
24329 * tree-ssa-loop-ivopts.c (may_eliminate_iv): Likewise.
24330 * tree-ssa-loop-niter.c (maybe_lower_iteration_bound): Likewise.
24331 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Likewise.
24332 * value-prof.c: Likewise.
24333 * var-tracking.c (val_reset): Likewise.
24335 2017-04-03 Richard Biener <rguenther@suse.de>
24337 PR tree-optimization/80275
24338 * fold-const.c (split_address_to_core_and_offset): Handle
24341 2017-04-03 Eric Botcazou <ebotcazou@adacore.com>
24343 * tree-nested.c (get_descriptor_type): Make sure that the alignment of
24344 descriptors is at least equal to that of functions.
24346 2017-04-02 Uros Bizjak <ubizjak@gmail.com>
24348 * config/i386/sse.md (movdi_to_sse): Add missing DONE.
24350 2017-04-02 Uros Bizjak <ubizjak@gmail.com>
24353 * config/i386/sse.md (mov<IMOD4:mode>): Remove insn pattern.
24354 (mov<IMOD4:mode>): New expander.
24355 (*mov<IMOD4:mode>_internal): New insn and split pattern.
24357 2017-03-31 Segher Boessenkool <segher@kernel.crashing.org>
24359 PR rtl-optimization/79405
24360 * fwprop.c (propagations_left): New variable.
24361 (forward_propagate_into): Decrement it.
24362 (fwprop_init): Initialize it.
24363 (fw_prop): If the variable has reached zero, stop propagating.
24364 (fwprop_addr): Ditto.
24366 2017-03-31 Jakub Jelinek <jakub@redhat.com>
24369 * dwarf2out.c (decls_for_scope): If BLOCK_NONLOCALIZED_VAR is
24370 a FUNCTION_DECL, pass it as decl instead of origin to
24373 2017-03-31 Alexander Monakov <amonakov@ispras.ru>
24375 * config/nvptx/nvptx.c (nvptx_output_softstack_switch): Correct format
24378 2017-03-31 Pat Haugen <pthaugen@us.ibm.com>
24381 * config/rs6000/rs6000.md (extendhi<mode>2): Add test for
24382 TARGET_VSX_SMALL_INTEGER.
24384 2017-03-31 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
24386 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Add
24387 reference to the OpenPOWER 64-Bit ELF V2 ABI Specification.
24389 2017-03-31 Matthew Fortune <matthew.fortune@imgtec.com>
24391 * config/mips/mips-msa.md (msa_vec_extract_<msafmt_f>): Update
24392 extraction from odd-numbered MSA register.
24394 2017-03-31 Jakub Jelinek <jakub@redhat.com>
24396 PR middle-end/80173
24397 * expmed.c (store_bit_field_1): Don't attempt to create
24398 a word subreg out of hard registers wider than word if they
24399 have HARD_REGNO_NREGS of 1 for their mode.
24401 PR middle-end/80163
24402 * varasm.c (initializer_constant_valid_p_1): Disallow sign-extending
24403 conversions to integer types wider than word and pointer.
24406 * cselib.h (rtx_equal_for_cselib_1): Add depth argument.
24407 (rtx_equal_for_cselib_p): Pass 0 to it.
24408 * cselib.c (cselib_hasher::equal): Likewise.
24409 (rtx_equal_for_cselib_1): Add depth argument. If depth
24410 is 128, don't look up VALUE locs and punt. Increment
24411 depth in recursive calls when walking VALUE locs.
24413 2017-03-31 Bernd Edlinger <bernd.edlinger@hotmail.de>
24415 * gcov.c (md5sum_to_hex): Fix output of MD5 hex bytes.
24416 (make_gcov_file_name): Use the canonical path name for generating
24418 (read_line): Fix handling of files with ascii null bytes.
24420 2017-03-30 Matthew Fortune <matthew.fortune@imgtec.com>
24422 * config/mips/mips.c (mips_expand_vector_init): Create a const_vector
24423 to initialise a vector register instead
24424 of using a const_int.
24426 2017-03-30 Jakub Jelinek <jakub@redhat.com>
24428 PR translation/80189
24429 * gimplify.c (omp_default_clause): Use %qs instead of %s in
24430 diagnostic messages.
24432 2017-03-30 Peter Bergner <bergner@vnet.ibm.com>
24435 * config/rs6000/dfp.md (dfp_dxex_<mode>): Update mode of operand 0.
24436 (dfp_diex_<mode>): Update mode of operand 1.
24437 * doc/extend.texi (dxex, dxexq): Document change to return type.
24438 (diex, diexq): Document change to argument type.
24440 2017-03-30 Martin Jambor <mjambor@suse.cz>
24443 * cgraph.h (cgraph_build_function_type_skip_args): Declare.
24444 * cgraph.c (redirect_call_stmt_to_callee): Set gimple fntype so that
24445 it reflects the signature changes performed at the callee side.
24446 * cgraphclones.c (build_function_type_skip_args): Make public, renamed
24447 to cgraph_build_function_type_skip_args.
24448 (build_function_decl_skip_args): Adjust call to the above function.
24450 2017-03-30 Jakub Jelinek <jakub@redhat.com>
24453 * config/i386/sse.md
24454 (<extract_type>_vextract<shuffletype><extract_suf>_mask): Use
24455 register as dest whenever it is a MEM not rtx_equal_p to the
24456 corresponding dup operand, and when forcing into reg move the
24457 reg into the memory afterwards.
24458 (<extract_type_2>_vextract<shuffletype><extract_suf_2>_mask):
24459 Likewise. Use <ssehalfvecmode> instead of <ssequartermode>
24460 for the force_reg mode.
24461 (avx512vl_vextractf128<mode>): Use register as dest either
24462 always when a MEM, or when it is a MEM not rtx_equal_p to the
24463 corresponding dup operand, or even not when it is a CONST_VECTOR
24464 depending on the mode and lo vs. hi.
24465 (avx512dq_vextract<shuffletype>64x2_1_maskm): Remove extraneous
24467 (avx512f_vextract<shuffletype>32x4_1_maskm): Likewise.
24468 (<mask_codefor>avx512dq_vextract<shuffletype>64x2_1<mask_name>):
24469 Likewise. Require that operands[2] is even.
24470 (<mask_codefor>avx512f_vextract<shuffletype>32x4_1<mask_name>):
24471 Remove extraneous parens. Require that operands[2] is a multiple
24473 (vec_extract_lo_<mode><mask_name>): Don't bother testing if
24474 operands[0] is a MEM if <mask_applied>, the predicates/constraints
24475 disallow memory then.
24477 2017-03-30 Richard Biener <rguenther@suse.de>
24479 PR tree-optimization/77498
24480 * tree-ssa-pre.c (phi_translate_1): Do not allow simplifications
24481 to non-constants over backedges.
24483 2017-03-29 Segher Boessenkool <segher@kernel.crashing.org>
24485 PR rtl-optimization/80233
24486 * combine.c (combine_instructions): Only take NONDEBUG_INSN_P insns
24487 as last_combined_insn. Do not test for BARRIER_P separately.
24489 2017-03-29 Andreas Schwab <schwab@suse.de>
24492 * calls.c (prepare_call_address): Convert funexp to Pmode before
24493 copying to temp reg.
24495 2017-03-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
24497 PR tree-optimization/80158
24498 * gimple-ssa-strength-reduction.c (replace_mult_candidate):
24499 Handle possible future case of more than one alternate
24501 (replace_rhs_if_not_dup): Likewise.
24502 (replace_one_candidate): Likewise.
24504 2017-03-28 Vladimir Makarov <vmakarov@redhat.com>
24506 PR rtl-optimization/80193
24507 * ira.c (ira): Do not check allocation for LRA.
24509 2017-03-28 Alexander Monakov <amonakov@ispras.ru>
24511 * config/nvptx/nvptx-protos.h (nvptx_output_simt_enter): Declare.
24512 (nvptx_output_simt_exit): Declare.
24513 * config/nvptx/nvptx.c (nvptx_init_unisimt_predicate): Use
24514 cfun->machine->unisimt_location. Handle NULL unisimt_predicate.
24515 (init_softstack_frame): Move initialization of crtl->is_leaf to...
24516 (nvptx_declare_function_name): ...here. Emit declaration of local
24517 memory space buffer for omp_simt_enter insn.
24518 (nvptx_output_unisimt_switch): New.
24519 (nvptx_output_softstack_switch): New.
24520 (nvptx_output_simt_enter): New.
24521 (nvptx_output_simt_exit): New.
24522 * config/nvptx/nvptx.h (struct machine_function): New fields
24523 has_simtreg, unisimt_location, simt_stack_size, simt_stack_align.
24524 * config/nvptx/nvptx.md (UNSPECV_SIMT_ENTER): New unspec.
24525 (UNSPECV_SIMT_EXIT): Ditto.
24526 (omp_simt_enter_insn): New insn.
24527 (omp_simt_enter): New expansion.
24528 (omp_simt_exit): New insn.
24529 * config/nvptx/nvptx.opt (msoft-stack-reserve-local): New option.
24531 * internal-fn.c (expand_GOMP_SIMT_ENTER): New.
24532 (expand_GOMP_SIMT_ENTER_ALLOC): New.
24533 (expand_GOMP_SIMT_EXIT): New.
24534 * internal-fn.def (GOMP_SIMT_ENTER): New internal function.
24535 (GOMP_SIMT_ENTER_ALLOC): Ditto.
24536 (GOMP_SIMT_EXIT): Ditto.
24537 * target-insns.def (omp_simt_enter): New insn.
24538 (omp_simt_exit): Ditto.
24539 * omp-low.c (struct omplow_simd_context): New fields simt_eargs,
24541 (lower_rec_simd_input_clauses): Implement SIMT privatization.
24542 (lower_rec_input_clauses): Likewise.
24543 (lower_lastprivate_clauses): Handle SIMT privatization.
24545 * omp-offload.c: Include langhooks.h, tree-nested.h, stor-layout.h.
24546 (ompdevlow_adjust_simt_enter): New.
24547 (find_simtpriv_var_op): New.
24548 (execute_omp_device_lower): Handle IFN_GOMP_SIMT_ENTER,
24549 IFN_GOMP_SIMT_ENTER_ALLOC, IFN_GOMP_SIMT_EXIT.
24551 * tree-inline.h (struct copy_body_data): New field dst_simt_vars.
24552 * tree-inline.c (expand_call_inline): Handle SIMT privatization.
24553 (copy_decl_for_dup_finish): Ditto.
24555 * tree-ssa.c (execute_update_addresses_taken): Handle GOMP_SIMT_ENTER.
24557 2017-03-28 Uros Bizjak <ubizjak@gmail.com>
24560 * config/i386/i386.c (ix86_option_override_internal): Always
24561 allow -mpreferred-stack-boundary=3 for 64-bit targets.
24563 2017-03-28 Bin Cheng <bin.cheng@arm.com>
24565 * tree-vect-loop.c (optimize_mask_stores): Add bb to the right loop.
24567 2017-03-28 Bin Cheng <bin.cheng@arm.com>
24569 * tree-vect-loop-manip.c (slpeel_add_loop_guard): New param and
24570 mark new edge's irreducible flag accordign to it.
24571 (vect_do_peeling): Check loop preheader edge's irreducible flag
24572 and pass it to function slpeel_add_loop_guard.
24574 2017-03-28 Richard Sandiford <richard.sandiford@arm.com>
24576 PR tree-optimization/80218
24577 * tree-call-cdce.c (shrink_wrap_one_built_in_call_with_conds):
24578 Update block frequencies and counts.
24580 2017-03-28 Richard Biener <rguenther@suse.de>
24582 PR tree-optimization/78644
24583 * tree-ssa-ccp.c (evaluate_stmt): When we may not use the value
24584 of a simplification result we may not use it at all.
24586 2017-03-28 Richard Biener <rguenther@suse.de>
24589 * tree-inline.c (copy_phis_for_bb): Do not create PHI node
24590 without arguments, generate default definition of a SSA name.
24592 2017-03-28 Richard Biener <rguenther@suse.de>
24594 PR middle-end/80222
24595 * gimple-fold.c (gimple_fold_indirect_ref): Do not touch
24596 TYPE_REF_CAN_ALIAS_ALL references.
24597 * fold-const.c (fold_indirect_ref_1): Likewise.
24599 2017-03-28 Martin Liska <mliska@suse.cz>
24602 * cgraphunit.c (cgraph_node::expand_thunk): Mark argument of a
24603 thunk call as DECL_GIMPLE_REG_P when vector or complex type.
24605 2017-03-28 Claudiu Zissulescu <claziss@synopsys.com>
24606 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24608 * config/arc/arc.h (CPP_SPEC): Add subtarget_cpp_spec.
24609 (EXTRA_SPECS): Define.
24610 (SUBTARGET_EXTRA_SPECS): Likewise.
24611 (SUBTARGET_CPP_SPEC): Likewise.
24612 * config/arc/elf.h (EXTRA_SPECS): Renamed to
24613 SUBTARGET_EXTRA_SPECS.
24614 * config/arc/linux.h (SUBTARGET_CPP_SPEC): Define.
24616 2017-03-28 Claudiu Zissulescu <claziss@synopsys.com>
24618 * config/arc/simdext.md (vst64_insn): Update pattern.
24619 (vld32wh_insn): Likewise.
24620 (vld32wl_insn): Likewise.
24621 (vld64_insn): Likewise.
24622 (vld32_insn): Likewise.
24624 2017-03-28 Marek Polacek <polacek@redhat.com>
24627 * fold-const.c (fold_comparison): Use protected_set_expr_location
24628 instead of SET_EXPR_LOCATION.
24630 2017-03-28 Markus Trippelsdorf <markus@trippelsdorf.de>
24632 * tree.c (add_expr): Avoid name lookup warning.
24634 2017-03-27 Jeff Law <law@redhat.com>
24636 PR tree-optimization/80216
24637 * tree-ssa-dom.c (derive_equivalences_from_bit_ior): Fix typo in
24638 function name. Limit recursion depth.
24639 (record_temporary_equivalences): Corresponding changes.
24641 2017-03-27 Jonathan Wakely <jwakely@redhat.com>
24643 * doc/invoke.texi (-Wno-narrowing): Reorder so default behavior is
24646 2017-03-27 Jakub Jelinek <jakub@redhat.com>
24649 * reg-notes.def (REG_CFA_NOTE): Define. Use it for CFA related
24651 * cfgcleanup.c (reg_note_cfa_p): New array.
24652 (insns_have_identical_cfa_notes): New function.
24653 (old_insns_match_p): Don't cross-jump in between /f
24654 and non-/f instructions. If both i1 and i2 are frame related,
24655 verify all CFA notes, their order and content.
24657 2017-03-27 Michael Meissner <meissner@linux.vnet.ibm.com>
24660 * config/rs6000/rs6000.md (bswaphi2_extenddi): Combine bswap
24661 HImode and SImode with zero extend to DImode to one insn.
24662 (bswap<mode>2_extenddi): Likewise.
24663 (bswapsi2_extenddi): Likewise.
24664 (bswaphi2_extendsi): Likewise.
24665 (bswaphi2): Combine bswap HImode and SImode into one insn.
24666 Separate memory insns from swapping register.
24667 (bswapsi2): Likewise.
24668 (bswap<mode>2): Likewise.
24669 (bswaphi2_internal): Delete, no longer used.
24670 (bswapsi2_internal): Likewise.
24671 (bswap<mode>2_load): Split bswap HImode/SImode into separate load,
24672 store, and gpr<-gpr swap insns.
24673 (bswap<mode>2_store): Likewise.
24674 (bswaphi2_reg): Register only splitter, combine with the splitter.
24675 (bswaphi2 splitter): Likewise.
24676 (bswapsi2_reg): Likewise.
24677 (bswapsi2 splitter): Likewise.
24678 (bswapdi2): If we have the LDBRX and STDBRX instructions, split
24679 the insns into load, store, and register/register insns.
24680 (bswapdi2_ldbrx): Likewise.
24681 (bswapdi2_load): Likewise.
24682 (bswapdi2_store): Likewise.
24683 (bswapdi2_reg): Likewise.
24685 2017-03-27 Gunther Nikl <gnikl@users.sourceforge.net>
24687 * system.h (HAVE_DESIGNATED_INITIALIZERS): Fix non C++ case.
24688 (HAVE_DESIGNATED_UNION_INITIALIZERS): Likewise.
24690 2017-03-27 Kelvin Nilsen <kelvin@gcc.gnu.org>
24693 * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Edit and
24695 * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
24696 special handling for target option conflicts between dform
24697 options (-mpower9-dform, -mpower9-dform-vector,
24698 -mpower9-dform-scalar) and -mno-direct-move.
24700 2017-03-27 Richard Biener <rguenther@suse.de>
24702 PR tree-optimization/80181
24703 * tree-ssa-ccp.c (likely_value): UNDEFINED ^ X is UNDEFINED.
24705 2017-03-27 Claudiu Zissulescu <claziss@synopsys.com>
24707 * config/arc/predicates.md (move_double_src_operand): Replace the
24708 call to move_double_src_operand with a call to address_operand.
24710 2017-03-27 Claudiu Zissulescu <claziss@synopsys.com>
24712 * config/arc/elf.h (ARGET_ARC_TP_REGNO_DEFAULT): Define.
24713 * config/arc/linux.h (ARGET_ARC_TP_REGNO_DEFAULT): Likewise.
24714 * config/arc/arc.opt (mtp-regno): Use ARGET_ARC_TP_REGNO_DEFAULT.
24716 2017-03-27 Claudiu Zissulescu <claziss@synopsys.com>
24718 * config/arc/predicates.md (long_immediate_loadstore_operand):
24719 Consider scaled addresses cases.
24721 2017-03-27 Claudiu Zissulescu <claziss@synopsys.com>
24723 * config/arc/arc.c (arc_epilogue_uses): BLINK should be also
24724 restored when in interrupt.
24725 * config/arc/arc.md (simple_return): ARCv2 rtie instruction
24726 doesn't have delay slot.
24728 2017-03-27 Richard Biener <rguenther@suse.de>
24731 * tree-ssa-structalias.c (associate_varinfo_to_alias): Skip
24732 inlined thunk clones.
24734 2017-03-27 Jakub Jelinek <jakub@redhat.com>
24737 * asan.c (instrument_derefs): Copy over last operand from
24738 original COMPONENT_REF to the new COMPONENT_REF with
24739 DECL_BIT_FIELD_REPRESENTATIVE.
24740 * ubsan.c (instrument_object_size): Likewise.
24742 2017-03-27 Richard Biener <rguenther@suse.de>
24744 PR tree-optimization/80170
24745 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Make
24746 sure DR/SCEV didnt fold in constants we do not see when looking
24747 at the reference base alignment.
24749 2017-03-27 Richard Biener <rguenther@suse.de>
24751 PR middle-end/80171
24752 * gimple-fold.c (fold_ctor_reference): Properly guard against
24753 NULL return value from canonicalize_constructor_val.
24755 2017-03-25 Uros Bizjak <ubizjak@gmail.com>
24758 * config/i386/i386.c (ix86_expand_builtin)
24759 <IX86_BUILTIN_RDSEED{16,32,64}_STEP>: Do not expand arg0 between
24760 flags reg setting and flags reg using instructions.
24761 <IX86_BUILTIN_RDRAND{16,32,64}_STEP>: Ditto. Use non-flags reg
24762 clobbering instructions to zero extend op2.
24764 2017-03-25 Gerald Pfeifer <gerald@pfeifer.com>
24766 * doc/install.texi (Configuration) <--with-aix-soname>:
24767 Update link to AIX ld.
24769 2017-03-25 Bernd Schmidt <bschmidt@redhat.com>
24771 PR rtl-optimization/80160
24772 PR rtl-optimization/80159
24773 * lra-assigns.c (must_not_spill_p): Tighten new test to also take
24774 reg_alternate_class into account.
24776 2017-03-24 Vladimir Makarov <vmakarov@redhat.com>
24779 * lra-assigns.c (assign_by_spills): Add spilled non-reload pseudos
24780 to consider in curr_insn_transform.
24782 2017-03-24 Jakub Jelinek <jakub@redhat.com>
24784 * genrecog.c (validate_pattern): Add VEC_SELECT validation.
24785 * genmodes.c (emit_min_insn_modes_c): Call emit_mode_nunits
24786 and emit_mode_inner.
24788 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24790 * config/s390/s390-builtins.def: Add VXE builtins. Add a flags
24791 argument to the overloaded builtin variants. Use the new flag to
24792 deprecate certain builtin variants.
24793 * config/s390/s390-builtin-types.def: Add new builtin types.
24794 * config/s390/s390-builtins.h: Support new flags field for
24795 overloaded builtins.
24796 * config/s390/s390-c.c (OB_DEF_VAR): New flags field.
24797 (s390_macro_to_expand): Enable vector float data type.
24798 (s390_cpu_cpp_builtins_internal): Indicate support of the new
24799 builtins by incrementing the __VEC__ version number.
24800 (s390_expand_overloaded_builtin): Support expansion of vec_xl and
24802 (s390_resolve_overloaded_builtin): Emit error messages depending
24803 on the builtin flags.
24804 * config/s390/s390.c (s390_expand_builtin): Support additional
24805 flags argument. Change error message to match the messages
24806 emitted in s390-c.c.
24807 * config/s390/s390.md: New UNSPEC_* constants.
24808 (op_type): Add new instruction types.
24809 * config/s390/vecintrin.h: Add new builtins and test data class
24811 * config/s390/vx-builtins.md (V_HW_32_64): Add V4SF.
24812 (V_HW_4, VEC_HW, VECF_HW): New mode iterators.
24813 (VEC_INEXACT, VEC_NOINEXACT): New constants.
24814 ("vec_splats<mode>", "vec_insert<mode>", "vec_promote<mode>")
24815 ("vec_insert_and_zero<mode>", "vec_mergeh<mode>")
24816 ("vec_mergel<mode>"): V_HW -> VEC_HW.
24818 ("vlrlrv16qi", "vstrlrv16qi", "vbpermv16qi", "vec_msumv2di")
24819 ("vmslg", "*vftci<mode>_cconly", "vftci<mode>_intcconly")
24820 ("*vftci<mode>", "vftci<mode>_intcc", "vec_double_s64")
24821 ("vec_double_u64", "vfmin<mode>", "vfmax<mode>"): New definition.
24823 ("and_av2df3", "and_cv2df3", "vec_andc_av2df3")
24824 ("vec_andc_cv2df3", "xor_av2df3", "xor_cv2df3", "vec_nor_av2df3")
24825 ("vec_nor_cv2df3", "ior_av2df3", "ior_cv2df3", "vec_nabs")
24826 ("*vftcidb", "*vftcidb_cconly", "vftcidb"): Remove definition.
24828 ("vec_all_<fpcmpcc:code>v2df", "vec_any_<fpcmpcc:code>v2df")
24829 ("vec_scatter_elementv4si_DI", "vec_cmp<fpcmp:code>v2df")
24830 ("vec_di_to_df_s64", "vec_di_to_df_u64", "vec_df_to_di_u64")
24831 ("vfidb", "*vldeb", "*vledb", "*vec_cmp<insn_cmp>v2df_cconly")
24832 ("vec_cmpeqv2df_cc", "vec_cmpeqv2df_cc", "vec_cmphv2df_cc")
24833 ("vec_cmphev2df_cc", "*vec_cmpeqv2df_cc")
24834 ("*vec_cmphv2df_cc", "*vec_cmphev2df_cc"): Enable new modes as ...
24836 ("vec_all_<fpcmpcc:code><mode>", "vec_any_<fpcmpcc:code><mode>")
24837 ("vec_scatter_element<V_HW_4:mode>_DI")
24838 ("vec_cmp<fpcmp:code><mode>", "vcdgb", "vcdlgb", "vclgdb")
24839 ("vec_fpint<mode>", "vflls")
24840 ("vflrd", "*vec_cmp<insn_cmp><mode>_cconly", "vec_cmpeq<mode>_cc")
24841 ("vec_cmpeq<mode>_cc", "vec_cmph<mode>_cc", "vec_cmphe<mode>_cc")
24842 ("*vec_cmpeq<mode>_cc", "*vec_cmph<mode>_cc")
24843 ("*vec_cmphe<mode>_cc"): ... these.
24845 ("vec_ctd_s64", "vec_ctsl", "vec_ctul", "vec_st2f"): Use rounding
24846 mode constant instead of magic value.
24848 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24850 * config/s390/s390.c (s390_expand_vec_compare): Support other
24851 vector floating point modes than just V2DF.
24852 (s390_expand_vcond): Likewise.
24853 (s390_hard_regno_mode_ok): Allow SFmode values in VRs.
24854 (s390_cannot_change_mode_class): Prevent mode changes between TF
24855 and V1TF in vector registers.
24856 * config/s390/s390.md (DF, SF): New mode attributes.
24857 ("*cmp<mode>_ccs", "add<mode>3", "sub<mode>3", "mul<mode>3")
24858 ("fma<mode>4", "fms<mode>4", "div<mode>3", "*neg<mode>2"): Add
24859 SFmode support for VRs.
24860 * config/s390/vector.md (V_HW, V_HW2, VT_HW, ti*, nonvec): Add new
24862 (VFT, VF_HW): New mode iterators.
24863 (vw, sdx): New mode attributes.
24864 ("addv2df3", "subv2df3", "mulv2df3", "divv2df3", "sqrtv2df2")
24865 ("fmav2df4","fmsv2df4", "negv2df2", "absv2df2", "*negabsv2df2")
24866 ("smaxv2df3", "sminv2df3", "*vec_cmp<VFCMP_HW_OP:code>v2df_nocc")
24867 ("vec_cmpuneqv2df", "vec_cmpltgtv2df", "vec_orderedv2df")
24868 ("vec_unorderedv2df"): Adjust the v2df only patterns to support
24869 also the new vector floating point modes. Renaming to ...
24871 ("add<mode>3", "sub<mode>3", "mul<mode>3", "div<mode>3")
24872 ("sqrt<mode>2", "fma<mode>4", "fms<mode>4", "neg<mode>2")
24873 ("abs<mode>2", "negabs<mode>2", "smax<mode>3")
24874 ("smin<mode>3", "*vec_cmp<VFCMP_HW_OP:code><mode>_nocc")
24875 ("vec_cmpuneq<mode>", "vec_cmpltgt<mode>", "vec_ordered<mode>")
24876 ("vec_unordered<mode>"): ... these.
24878 ("neg_fma<mode>4", "neg_fms<mode>4", "*smax<mode>3_vxe")
24879 ("*smin<mode>3_vxe", "*sminv2df3_vx", "*vec_extendv4sf")
24880 ("*vec_extendv2df"): New insn definitions.
24882 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24884 * config/s390/s390.md ("*adddi3_sign", "*subdi3_sign", "mulditi3")
24885 ("mulditi3_2", "*muldi3_sign"): New patterns.
24886 ("muldi3", "*muldi3", "mulsi3", "*mulsi3"): Add an expander and
24887 rename the pattern definition.
24889 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24891 * config/s390/s390.md ("indirect_jump"): Turn insn definition into
24893 ("*indirect_jump", "*indirect2_jump"): New pattern definitions.
24895 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24897 * config/s390/s390.c (s390_expand_vec_init): Use vllezl
24898 instruction if possible.
24899 * config/s390/vector.md (vec_halfnumelts): New mode
24901 ("*vec_vllezlf<mode>"): New pattern.
24903 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24905 * config/s390/vector.md ("popcountv16qi2", "popcountv8hi2")
24906 ("popcountv4si2", "popcountv2di2"): Rename to ...
24907 ("popcount<mode>2", "popcountv8hi2_vx", "popcountv4si2_vx")
24908 ("popcountv2di2_vx"): ... these and add !TARGET_VXE to the
24910 ("popcount<mode>2_vxe"): New pattern.
24912 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24914 * common/config/s390/s390-common.c (processor_flags_table): Add
24916 * config.gcc: Add arch12.
24917 * config/s390/driver-native.c (s390_host_detect_local_cpu):
24918 Default to arch12 for unknown CPU model numbers.
24919 * config/s390/s390-builtins.def: Add B_VXE builtin flag.
24920 * config/s390/s390-c.c (s390_cpu_cpp_builtins_internal): Adjust
24921 PROCESSOR_max sanity check.
24922 * config/s390/s390-opts.h (enum processor_type): Add
24924 * config/s390/s390.c (processor_table): Add arch12.
24925 (s390_expand_builtin): Add check for B_VXE flag.
24926 (s390_issue_rate): Add PROCESSOR_ARCH12.
24927 (s390_get_sched_attrmask): Likewise.
24928 (s390_get_unit_mask): Likewise.
24929 (s390_sched_score): Enable z13 scheduling for arch12.
24930 (s390_sched_reorder): Likewise.
24931 (s390_sched_variable_issue): Likewise.
24932 * config/s390/s390.h (enum processor_flags): Add PF_ARCH12 and
24934 (s390_tune_attr): Use z13 scheduling also for arch12.
24935 (TARGET_CPU_ARCH12, TARGET_CPU_ARCH12_P, TARGET_CPU_VXE)
24936 (TARGET_CPU_VXE_P, TARGET_ARCH12, TARGET_ARCH12_P, TARGET_VXE)
24937 (TARGET_VXE_P): New macros.
24938 * config/s390/s390.md: Add arch12 to cpu attribute. Add arch12
24939 and vxe to cpu_facility. Add arch12 and vxe to enabled attribute.
24940 * config/s390/s390.opt: Add arch12 as processor_type.
24942 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24944 * config/s390/s390.md
24945 ("fixuns_truncdddi2", "fixuns_trunctddi2")
24946 ("fixuns_trunc<BFP:mode><GPR:mode>2"): Merge into ...
24947 ("fixuns_trunc<FP:mode><GPR:mode>2"): New expander.
24949 ("fixuns_trunc<BFP:mode><GPR:mode>2", "fixuns_trunc<mode>si2"):
24950 Rename expanders to ...
24952 ("fixuns_trunc<BFP:mode><GPR:mode>2_emu")
24953 ("fixuns_truncdddi2_emu"): ... these.
24955 ("fixuns_trunc<mode>si2_emu"): New expander.
24957 ("*fixuns_truncdfdi2_z13"): Rename to ...
24958 ("*fixuns_truncdfdi2_vx"): ... this.
24960 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24962 * config/s390/2964.md: Remove the single element vector compare
24963 instructions which are no longer used.
24964 * config/s390/s390.c (s390_select_ccmode): Remove handling of
24966 (s390_canonicalize_comparison): Remove handling of DFmode
24968 (s390_expand_vec_compare_scalar): Remove function.
24969 (s390_emit_compare): Don't call s390_expand_vec_compare_scalar.
24970 * config/s390/s390.md ("*vec_cmp<insn_cmp>df_cconly"): Remove
24972 ("*cmp<mode>_ccs"): Add wfcdb instruction.
24974 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24976 * config/s390/s390.md ("mov<mode>_64dfp" DD_DF): Use vleig for loading a
24978 ("*mov<mode>_64" DD_DF): Remove the vector instructions. These
24979 will anyway by matched by mov<mode>_64dfp.
24981 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24983 * config/s390/s390.md ("mov<mode>" SD_SF): Change vleg/vsteg to
24984 vlef/vstef. Add missing operand to vleif.
24986 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
24988 * config/s390/s390.c (s390_expand_vec_init): Enable vector load
24989 pair for all vector types with 64 bit elements.
24990 * config/s390/vx-builtins.md (V_HW_64): Move mode iterator to ...
24991 * config/s390/vector.md (V_HW_64): ... here.
24992 (V_128_NOSINGLE): New mode iterator.
24993 ("vec_init<V_HW:mode>"): Use V_128 as mode iterator.
24994 ("*vec_splat<mode>"): Use V_128_NOSINGLE mode iterator.
24995 ("*vec_tf_to_v1tf", "*vec_ti_to_v1ti"): New pattern definitions.
24996 ("*vec_load_pairv2di"): Change to ...
24997 ("*vec_load_pair<mode>"): ... this one.
24999 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
25001 * config/s390/constraints.md: Add comments.
25002 (jKK): Reject element sizes > 8 bytes.
25003 * config/s390/s390.c (s390_split_ok_p): Enable splitting also for
25005 * config/s390/s390.md: Add the s_operand checks formerly in
25006 s390_split_ok_p to various splitters where they are still
25008 * config/s390/vector.md ("mov<mode>" V_128): Add GPR alternatives
25009 for 128 bit vectors. Plus two splitters.
25011 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
25013 * config/s390/s390.md: Rename the cpu facilty vec to vx throughout
25016 2017-03-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
25019 * config/s390/s390-c.c (s390_adjust_builtin_arglist): Issue an
25020 error if the boundary argument is not constant.
25022 2017-03-24 Jakub Jelinek <jakub@redhat.com>
25024 PR rtl-optimization/80112
25025 * loop-doloop.c (doloop_condition_get): Don't check condition
25026 if cmp isn't SET with IF_THEN_ELSE src.
25028 2017-03-24 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25030 PR tree-optimization/80158
25031 * gimple-ssa-strength-reduction.c (replace_mult_candidate): When
25032 replacing a candidate statement, also replace it for the
25033 candidate's alternate interpretation.
25034 (replace_rhs_if_not_dup): Likewise.
25035 (replace_one_candidate): Likewise.
25037 2017-03-24 Richard Biener <rguenther@suse.de>
25039 PR tree-optimization/80167
25040 * graphite-isl-ast-to-gimple.c
25041 (translate_isl_ast_to_gimple::is_valid_rename): Handle default-defs
25043 (translate_isl_ast_to_gimple::get_rename): Likewise.
25045 2017-03-23 Kelvin Nilsen <kelvin@gcc.gnu.org>
25047 * config/rs6000/rs6000.c (rs6000_option_override_internal): Change
25048 handling of certain combinations of target options, including the
25049 combinations -mpower8-vector vs. -mno-vsx, -mpower9-vector vs.
25050 -mno-power8-vector, and -mpower9_dform vs. -mno-power9-vector.
25052 2017-03-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25055 * config/arm/arm.md (*load_multiple): Add reload_completed to
25056 matching condition.
25058 2017-03-23 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25059 Richard Biener <rguenth@suse.de>
25061 PR tree-optimization/79908
25062 PR tree-optimization/80136
25063 * tree-stdarg.c (expand_ifn_va_arg_1): For a VA_ARG whose LHS has
25064 been cast away, gimplify_and_add suffices.
25066 2017-03-23 Markus Trippelsdorf <markus@trippelsdorf.de>
25068 * tree-vrp.c (identify_jump_threads): Delete avail_exprs.
25070 2017-03-23 Richard Biener <rguenther@suse.de>
25072 PR tree-optimization/80032
25073 * gimplify.c (gimple_push_cleanup): Forced unconditional
25074 cleanups still have to go to the conditional_cleanups
25077 2017-03-22 Jakub Jelinek <jakub@redhat.com>
25079 PR tree-optimization/80072
25080 * tree-ssa-reassoc.c (struct operand_entry): Change id field type
25082 (next_operand_entry_id): Change type to unsigned int.
25083 (sort_by_operand_rank): Make sure to return the right return value
25084 even if unsigned fields are bigger than INT_MAX.
25085 (struct oecount): Change cnt and id type to unsigned int.
25086 (oecount_hasher::equal): Formatting fix.
25087 (oecount_cmp): Make sure to return the right return value
25088 even if unsigned fields are bigger than INT_MAX.
25089 (undistribute_ops_list): Change next_oecount_id type to unsigned int.
25092 * gimplify.c (gimplify_modify_expr_rhs) <case COND_EXPR>: Clear
25093 TREE_READONLY on result if writing it more than once.
25096 * doc/invoke.texi (-fsanitize=thread): Document that with
25097 -fnon-call-exceptions atomics are not able to throw
25101 * tsan.c: Include tree-eh.h.
25102 (instrument_builtin_call): Call maybe_clean_eh_stmt or
25103 maybe_clean_or_replace_eh_stmt where needed.
25104 (instrument_memory_accesses): Add cfg_changed argument.
25105 Call gimple_purge_dead_eh_edges on each block and set *cfg_changed
25106 if it returned true.
25107 (tsan_pass): Adjust caller. Return TODO_cleanup_cfg if cfg_changed.
25109 PR rtl-optimization/63191
25110 * config/i386/i386.c (ix86_delegitimize_address): Turn into small
25111 wrapper function, moved the whole old content into ...
25112 (ix86_delegitimize_address_1): ... this. New inline function.
25113 (ix86_find_base_term): Use ix86_delegitimize_address_1 with
25114 true as last argument instead of ix86_delegitimize_address.
25116 2017-03-22 Wilco Dijkstra <wdijkstr@arm.com>
25118 * config/aarch64/aarch64.c (generic_branch_cost): Copy
25119 cortexa57_branch_cost.
25121 2017-03-22 Wilco Dijkstra <wdijkstr@arm.com>
25123 * config/aarch64/aarch64.c (generic_tunings): Add AES fusion.
25125 2017-03-21 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
25128 * doc/md.texi (Constraints): Document wA constraint.
25129 * config/rs6000/constraints.md (wA): New.
25130 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Add wA reg_class.
25131 (rs6000_init_hard_regno_mode_ok): Init wA constraint.
25132 * config/rs6000/rs6000.h (RS6000_CONSTRAINT_wA): New.
25133 * config/rs6000/vsx.md (vsx_splat_<mode>): Use wA constraint.
25135 2017-03-22 Cesar Philippidis <cesar@codesourcery.com>
25138 * gimplify.c (is_oacc_declared): New function.
25139 (oacc_default_clause): Use it to set default flags for acc declared
25140 variables inside parallel regions.
25141 (gimplify_scan_omp_clauses): Strip firstprivate pointers for acc
25142 declared variables.
25143 (gimplify_oacc_declare): Gimplify the declare clauses. Add the
25144 declare attribute to any decl as necessary.
25146 2017-03-22 Thomas Preud'homme <thomas.preudhomme@arm.com>
25149 * config/arm/arm-isa.h (isa_bit_lpae): New feature bit.
25150 (ISA_ARMv7ve): Add isa_bit_lpae to the definition.
25151 * config/arm/arm-protos.h (arm_arch7ve): Rename into ...
25152 (arm_arch_lpae): This.
25153 * config/arm/arm.c (arm_arch7ve): Rename into ...
25154 (arm_arch_lpae): This. Define it in term of isa_bit_lpae.
25155 * config/arm/arm.h (TARGET_HAVE_LPAE): Redefine in term of
25158 2017-03-22 Martin Liska <mliska@suse.cz>
25161 * config/rs6000/rs6000.c (rs6000_inner_target_options): Show
25162 error message instead of an ICE.
25164 2017-03-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25166 * doc/extend.texi (6.11 Additional Floating Types): Revise.
25168 2017-03-21 Kelvin Nilsen <kelvin@gcc.gnu.org>
25170 * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Add
25172 * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
25175 2017-03-21 Martin Sebor <msebor@redhat.com>
25177 * doc/extend.texi: Use "cannot" instead of "can't."
25178 * doc/hostconfig.texi: Same.
25179 * doc/install.texi: Same.
25180 * doc/invoke.texi: Same.
25181 * doc/loop.texi: Same.
25182 * doc/md.texi: Same.
25183 * doc/objc.texi: Same.
25184 * doc/rtl.texi: Same.
25185 * doc/tm.texi: Same.
25186 * doc/tm.texi.in: Same.
25187 * doc/trouble.texi: Same.
25189 2017-03-21 Alexandre Oliva <aoliva@redhat.com>
25192 * dwarf2out.c (struct checksum_attributes): Add at_alignment.
25193 (collect_checksum_attributes): Set it.
25194 (die_checksum_ordered): Use it.
25196 2017-03-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25198 PR tree-optimization/79908
25199 * tree-stdarg.c (expand_ifn_va_arg_1): Revert the following
25200 change: For a VA_ARG whose LHS has been cast away, use
25201 force_gimple_operand to construct the side effects.
25203 2017-03-21 David Malcolm <dmalcolm@redhat.com>
25205 PR translation/80001
25206 * omp-offload.c (oacc_loop_fixed_partitions): Make diagnostics
25207 more amenable to translation.
25208 (oacc_loop_auto_partitions): Likewise.
25210 2017-03-21 Marek Polacek <polacek@redhat.com>
25211 Martin Sebor <msebor@redhat.com>
25213 PR tree-optimization/80109
25214 * gimple-ssa-warn-alloca.c (alloca_call_type): Only call get_range_info
25215 on INTEGRAL_TYPE_P.
25217 2017-03-21 Jakub Jelinek <jakub@redhat.com>
25218 Segher Boessenkool <segher@kernel.crashing.org>
25221 * combine.c (can_combine_p): Revert the 2017-03-20 change, only
25222 check reg_used_between_p between insn and one of succ or succ2
25223 depending on if succ is artificial insn not inserted into insn
25226 2017-03-21 Martin Liska <mliska@suse.cz>
25228 PR gcov-profile/80081
25229 * Makefile.in: Add gcov-dump and fix installation of gcov-tool.
25230 * doc/gcc.texi: Include gcov-dump stuff.
25231 * doc/gcov-dump.texi: New file.
25233 2017-03-21 Toma Tabacu <toma.tabacu@imgtec.com>
25235 PR rtl-optimization/79150
25236 * config/mips/mips.c (mips_block_move_loop): Emit a NOP after the
25237 conditional jump, if the jump is the last insn of the loop.
25239 2017-03-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25240 Richard Biener <rguenth@suse.de>
25242 PR tree-optimization/79908
25243 * tree-stdarg.c (expand_ifn_va_arg_1): For a VA_ARG whose LHS has
25244 been cast away, use force_gimple_operand to construct the side
25247 2017-03-21 Martin Liska <mliska@suse.cz>
25249 PR libfortran/79956
25250 * simplify-rtx.c (simplify_immed_subreg): Initialize a variable
25253 2017-03-21 Brad Spengler <spender@grsecurity.net>
25256 * plugin.c (htab_hash_plugin): New function.
25257 (add_new_plugin): Use it and adjust.
25258 (parse_plugin_arg_opt): Adjust.
25259 (init_one_plugin): Likewise.
25261 2017-03-21 Richard Biener <rguenther@suse.de>
25263 PR tree-optimization/80032
25264 * gimplify.c (gimple_push_cleanup): Add force_uncond parameter,
25265 if set force the cleanup to happen unconditionally.
25266 (gimplify_target_expr): Push inserted clobbers with force_uncond
25267 to avoid them being removed by control-dependent DCE.
25269 2017-03-21 Richard Biener <rguenther@suse.de>
25271 PR tree-optimization/80122
25272 * tree-inline.c (copy_bb): Do not expans va-arg packs or
25273 va_arg_pack_len when the inlined call stmt requires pack
25275 * tree-inline.h (struct copy_body_data): Make call_stmt a gcall *.
25277 2017-03-21 Jakub Jelinek <jakub@redhat.com>
25280 * tsan.c (instrument_builtin_call): If the memory model argument
25281 is not a constant, assume it is valid.
25284 * fold-const.c (round_up_loc): Negate divisor in unsigned type to
25287 2017-03-20 Segher Boessenkool <segher@kernel.crashing.org>
25289 PR rtl-optimization/79910
25290 * combine.c (can_combine_p): Do not allow combining an I0 or I1
25291 if its dest is used by an insn before I2 (other than the combined
25292 insns themselves, which are properly handled already).
25294 2017-03-20 Segher Boessenkool <segher@kernel.crashing.org>
25297 2017-03-17 Bernd Schmidt <bschmidt@redhat.com>
25299 * combine.c (record_used_regs): New static function.
25300 (try_combine): Handle situations where there is an additional
25301 instruction between I2 and I3 which needs to have a LOG_LINK
25305 2017-03-17 Jim Wilson <jim.wilson@linaro.org>
25307 * combine.c (try_combine): Delete redundant i1 test. Call
25308 prev_nonnote_nondebug_insn instead of prev_nonnote_insn.
25310 2017-03-20 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
25313 * config/rs6000/rs6000.md (*movsi_internal1): Fix constraints for
25314 alternatives 13/14.
25316 2017-03-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25318 PR tree-optimization/80054
25319 * gimple-ssa-strength-reduction.c (all_phi_incrs_profitable): Fail
25320 the optimization if a PHI or any of its arguments is not dominated
25321 by the candidate's basis. Use gphi* rather than gimple* as
25323 (replace_profitable_candidates): Clean up a gimple* variable that
25324 should be a gphi* variable.
25326 2017-03-20 Martin Sebor <msebor@redhat.com>
25329 * doc/extend.texi (attribute constructor): Document present limitation.
25331 2017-03-20 Kelvin Nilsen <kelvin@gcc.gnu.org>
25334 * config/rs6000/altivec.h (vec_all_ne): Under __cplusplus__ and
25335 __POWER9_VECTOR__ #ifdef control, change template definition to
25336 use Power9-specific built-in function.
25337 (vec_any_eq): Likewise.
25338 * config/rs6000/vector.md (vector_ae_v2di_p): Change the flag used
25339 to control outcomes from this test.
25340 (vector_ae_<mode>p): For VEC_F modes, likewise.
25342 2017-03-20 Ian Lance Taylor <iant@google.com>
25344 * config/i386/i386.c (ix86_function_regparm): Save an extra
25345 register for -fsplit-stack with DECL_STATIC_CHAIN.
25347 2017-03-17 Palmer Dabbelt <palmer@dabbelt.com>
25350 * config/riscv/riscv.c (riscv_preferred_reload_class): Remove.
25351 (TARGET_PREFERRED_RELOAD_CLASS): Likewise.
25353 2017-03-17 Palmer Dabbelt <palmer@dabbelt.com>
25355 * config/riscv/riscv.c (riscv_print_operand): Use "fence
25357 * config/riscv/sync.mc (mem_thread_fence_1): Use "fence
25360 2017-03-20 Marek Polacek <polacek@redhat.com>
25363 * asan.c (DEF_SANITIZER_BUILTIN): Use do { } while (0).
25365 2017-03-20 Richard Biener <rguenther@suse.de>
25367 PR tree-optimization/80113
25368 * graphite-isl-ast-to-gimple.c (copy_loop_phi_nodes): Do not
25369 allocate extra SSA name for PHI def.
25370 (add_close_phis_to_outer_loops): Likewise.
25371 (add_close_phis_to_merge_points): Likewise.
25372 (copy_loop_close_phi_args): Likewise.
25373 (copy_cond_phi_nodes): Likewise.
25375 2017-03-20 Martin Liska <mliska@suse.cz>
25377 PR middle-end/79753
25378 * tree-chkp.c (chkp_build_returned_bound): Do not build
25379 returned bounds for a LHS that's not a BOUNDED_P type.
25381 2017-03-20 Martin Liska <mliska@suse.cz>
25385 * tree-chkp.c (chkp_find_bounds_1): Handle REAL_CST,
25386 COMPLEX_CST and VECTOR_CST.
25388 2017-03-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
25391 * config/s390/s390.md ("cmp<mode>_ccs_0"): Add a clobber of the
25392 target operand. A new splitter adds the clobber statement in case
25393 the target operand is dead anyway.
25395 2017-03-19 Gerald Pfeifer <gerald@pfeifer.com>
25397 * doc/install.texi (Specific) <sparc-*-linux*>: No longer refer
25398 to age-old versions of binutils and glibc.
25400 2017-03-18 Segher Boessenkool <segher@kernel.crashing.org>
25402 * doc/contrib.texi (Contributors): Remove duplicate entry for myself.
25404 2017-03-18 Gerald Pfeifer <gerald@pfeifer.com>
25406 * doc/contrib.texi (Contributors): Add Segher Boessenkool.
25408 2017-03-18 Gerald Pfeifer <gerald@pfeifer.com>
25410 * doc/install.texi (Specific) <arm-*-eabi>: Remove old
25411 requirement for binutils 2.13.
25413 2017-03-17 Jim Wilson <jim.wilson@linaro.org>
25415 * combine.c (try_combine): Delete redundant i1 test. Call
25416 prev_nonnote_nondebug_insn instead of prev_nonnote_insn.
25418 2017-03-17 Palmer Dabbelt <palmer@dabbelt.com
25420 * doc/install.texi (Specific) <riscv32-*-elf>: Add riscv32-*-elf,
25421 riscv32-*-linux, riscv64-*-elf, riscv64-*-linux to the table of
25423 <riscv64-*-elf>: Re-arrange section
25424 <riscv32-*-elf>: Add a note about requiring binutils 2.28.
25425 <riscv32-*-linux>: Likewise.
25426 <riscv64-*-elf>: Likewise
25427 <riscv64-*-linux>: Likewise.
25429 2017-03-17 Richard Earnshaw <rearnsha@arm.com>
25432 * aarch64.opt(verbose-cost-dump): Fix typo.
25434 2017-03-17 Pat Haugen <pthaugen@us.ibm.com>
25437 * config/rs6000/rs6000.md (copysign<mode>3_fcpsgn): Test
25438 for VECTOR_UNIT_VSX_P (<MODE>mode) too.
25440 2017-03-17 Bernd Schmidt <bschmidt@redhat.com>
25442 * reload.c (find_reloads): When reloading a nonoffsettable address,
25443 use RELOAD_OTHER for it and its address reloads.
25445 PR rtl-optimization/79910
25446 * combine.c (record_used_regs): New static function.
25447 (try_combine): Handle situations where there is an additional
25448 instruction between I2 and I3 which needs to have a LOG_LINK
25451 2017-03-17 Jeff Law <law@redhat.com>
25453 PR tree-optimization/71437
25454 * tree-vrp.c (simplify_stmt_for_jump_threading): Lookup the
25455 conditional in the hash table first.
25456 (vrp_dom_walker::before_dom_children): Extract condition from
25457 ASSERT_EXPR. Record condition, its inverion and any implied
25458 conditions as well.
25460 2017-03-17 Marek Polacek <polacek@redhat.com>
25461 Markus Trippelsdorf <markus@trippelsdorf.de>
25463 PR tree-optimization/80079
25464 * gimple-ssa-store-merging.c (class pass_store_merging): Initialize
25467 2017-03-17 Richard Biener <rguenther@suse.de>
25469 PR middle-end/80075
25470 * tree-eh.c (stmt_could_throw_1_p): Only handle gimple assigns.
25471 Properly verify the LHS before the RHS possibly claims to be
25473 (stmt_could_throw_p): Hande gimple conds fully here. Clobbers
25476 2017-03-17 Martin Jambor <mjambor@suse.cz>
25478 * doc/invoke.texi (Option Options): Include -fipa-vrp in the list.
25479 (List of -O2 options): Likewise.
25480 (-fipa-bit-cp): Replace "ipa" with "interprocedural."
25483 2017-03-17 Tom de Vries <tom@codesourcery.com>
25485 * gcov-dump.c (print_usage): Print bug_report_url.
25487 2017-03-17 Richard Biener <rguenther@suse.de>
25489 PR middle-end/80050
25490 * genmatch.c (parser::next): Remove pointless check for CPP_EOF.
25491 (parser::peek): Likewise.
25493 2017-03-17 Richard Biener <rguenther@suse.de>
25495 PR tree-optimization/80048
25496 * sese.c (free_sese_info): Properly release rename_map and
25497 copied_bb_map elements.
25499 2017-03-16 Alexandre Oliva <aoliva@redhat.com>
25501 * gimple-ssa-store-merging.c (struct imm_store_chain_info):
25502 Add linked-list forward and backlinks. Insert on
25503 construction, remove on destruction.
25504 (class pass_store_merging): Add m_stores_head field.
25505 (pass_store_merging::terminate_and_process_all_chains):
25506 Iterate over m_stores_head list.
25507 (pass_store_merging::terminate_all_aliasing_chains):
25509 (pass_store_merging::execute): Check for debug stmts first.
25510 Push new chains onto the m_stores_head stack.
25512 2017-03-16 Michael Meissner <meissner@linux.vnet.ibm.com>
25515 * config/rs6000/vsx.md (vsx_splat_<mode>, VSX_D iterator): Allow a
25516 SPLAT operation on ISA 2.07 64-bit systems that have direct move,
25517 but no MTVSRDD support, by doing MTVSRD and XXPERMDI.
25519 2017-03-16 Jeff Law <law@redhat.com>
25521 PR tree-optimization/71437
25522 * tree-ssa-dom.c (dom_opt_dom_walker): Remove thread_across_edge
25523 member function. Implementation moved into after_dom_children
25524 member function and into the threader's thread_outgoing_edges
25526 (dom_opt_dom_walker::after_dom_children): Simplify by moving
25527 some code into new thread_outgoing_edges.
25528 * tree-ssa-threadedge.c (thread_across_edge): Make static and simplify
25529 definition. Simplify marker handling (do it here). Assume we always
25530 have the available expression and the const/copies tables.
25531 (thread_outgoing_edges): New function extracted from tree-ssa-dom.c
25533 * tree-ssa-threadedge.h (thread_outgoing_edges): Declare.
25534 * tree-vrp.c (equiv_stack): No longer file scoped.
25535 (vrp_dom_walker): New class.
25536 (vrp_dom_walker::before_dom_children): New member function.
25537 (vrp_dom_walker::after_dom_children): Likewise.
25538 (identify_jump_threads): Setup domwalker. Use it rather than
25539 walking edges in a random order by hand. Simplify setup/finalization.
25540 (finalize_jump_threads): Remove.
25541 (vrp_finalize): Do not call identify_jump_threads here.
25542 (execute_vrp): Do it here instead and call thread_through_all_blocks
25545 PR tree-optimization/71437
25546 * tree-ssa-dom.c (pfn_simplify): Add basic_block argument. All
25548 (simplify_stmt_for_jump_threading): Add basic_block argument. All
25550 (lhs_of_dominating_assert): Moved from here into tree-vrp.c.
25551 (dom_opt_dom_walker::thread_across_edge): Remove
25552 handle_dominating_asserts argument. All callers changed.
25553 (record_temporary_equivalences_from_stmts_at_dest): Corresponding
25554 changes. Remove calls to lhs_of_dominating_assert. Other
25555 uses of handle_dominating_asserts turn into unconditional code
25556 (simplify_control_stmt_condition_1): Likewise.
25557 (simplify_control_stmt_condition): Likewise.
25558 (thread_through_normal_block, thread_across_edge): Likewise.
25559 * tree-ssa-threadedge.h (thread_across_edge): Corresponding changes.
25560 * tree-vrp.c (lhs_of_dominating_assert): Move here. Return original
25561 object if it is not an SSA_NAME.
25562 (simplify_stmt_for_jump_threading): Call lhs_of_dominating_assert
25563 before calling into the VRP specific simplifiers.
25564 (identify_jump_threads): Remove handle_dominating_asserts
25567 2017-03-16 Jakub Jelinek <jakub@redhat.com>
25570 * tree-diagnostic.c (default_tree_printer): No longer static.
25571 * tree-diagnostic.h (default_tree_printer): New prototype.
25573 2017-03-16 Tamar Christina <tamar.christina@arm.com>
25575 * config/aarch64/aarch64-simd.md (*aarch64_simd_mov<mode>)
25576 Change ins into fmov.
25578 2017-03-16 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25580 * config/aarch64/iterators.md (h_con): Return "x" for V4HF and V8HF.
25581 * config/aarch64/aarch64-simd.md (*aarch64_fma4_elt_from_dup<mode>):
25582 Use h_con constraint for operand 1.
25583 (*aarch64_fnma4_elt_from_dup<mode>): Likewise.
25584 (*aarch64_mulx_elt_from_dup<mode>): Likewise for operand 2.
25586 2017-03-15 Jeff Law <law@redhat.com>
25588 PR tree-optimization/71437
25589 * tree-ssa-dom.c (derive_equivalences_from_bit_ior): New function.
25590 (record_temporary_equivalences): Use it.
25592 PR tree-optimization/71437
25593 * tree-ssa-dom.c (struct cond_equivalence): Moved from here into
25594 tree-ssa-scopedtables.
25595 (lookup_avail_expr, build_and_record_new_cond): Likewise.
25596 (record_conditions, record_cond, vuse_eq): Likewise.
25597 (record_edge_info): Adjust to API tweak of record_conditions.
25598 (simplify_stmt_for_jump_threading): Similarly for lookup_avail_expr.
25599 (record_temporary_equivalences, optimize_stmt): Likewise.
25600 (eliminate_redundant_computations): Likewise.
25601 (record_equivalences_from_stmt): Likewise.
25602 * tree-ssa-scopedtables.c: Include options.h and params.h.
25603 (vuse_eq): New function, moved from tree-ssa-dom.c
25604 (build_and_record_new_cond): Likewise.
25605 (record_conditions): Likewise. Accept vector of conditions rather
25606 than edge_equivalence structure for first argument.
25607 for the first argument.
25608 (avail_exprs_stack::lookup_avail_expr): New member function, moved
25609 from tree-ssa-dom.c.
25610 (avail_exprs_stack::record_cond): Likewise.
25611 * tree-ssa-scopedtables.h (struct cond_equivalence): Moved here
25612 from tree-ssa-dom.c.
25613 (avail_exprs_stack): Add new member functions lookup_avail_expr
25615 (record_conditions): Declare.
25617 2017-03-15 Vladimir Makarov <vmakarov@redhat.com>
25620 * lra-constraints.c (process_alt_operands): Increase reject for
25621 reloading an input/output operand.
25623 2017-03-15 Michael Meissner <meissner@linux.vnet.ibm.com>
25626 * config/rs6000/rs6000.md (float<QHI:mode><IEEE128:mode>2): Define
25627 insns to convert from signed/unsigned char/short to IEEE 128-bit
25629 (floatuns<QHI:mode><IEEE128:mode>2): Likewise.
25631 2017-03-15 Uros Bizjak <ubizjak@gmail.com>
25634 * config/i386/i386.c (ix86_vector_duplicate_value): Create
25635 subreg of inner mode for values already in registers.
25637 2017-03-15 Bernd Schmidt <bschmidt@redhat.com>
25639 * config/c6x/c6x.c (hwloop_optimize): Handle case where the old
25640 iteration reg is used after the loop.
25642 2017-03-14 Martin Sebor <msebor@redhat.com>
25644 PR tree-optimization/79800
25645 * gimple-ssa-sprintf.c (format_floating: Add argument. Handle
25646 precision in negative-positive range.
25647 (format_floating): Call non-const overload with adjusted precision.
25649 2017-03-14 Michael Meissner <meissner@linux.vnet.ibm.com>
25652 * config/rs6000/rs6000.h (TARGET_FRSQRTES): Add check for
25655 2017-03-14 Martin Sebor <msebor@redhat.com>
25657 PR middle-end/80020
25658 * builtin-attrs.def (ATTR_ALLOC_SIZE_2_NOTHROW_LIST): New macro.
25659 * builtins.def (aligned_alloc): Use it.
25662 * Makefile.in (GTFILES): Add calls.c.
25663 * calls.c: Include "gt-calls.h".
25665 2017-03-14 Bernd Schmidt <bschmidt@redhat.com>
25667 PR rtl-optimization/79728
25668 * regs.h (struct target_regs): New field
25669 x_contains_allocatable_regs_of_mode.
25670 (contains_allocatable_regs_of_mode): New macro.
25671 * reginfo.c (init_reg_sets_1): Initialize it, and change
25672 contains_reg_of_mode so it includes global regs as well.
25673 * reload.c (push_reload): Use contains_allocatable_regs_of_mode
25674 rather than contains_regs_of_mode.
25676 2017-03-14 Martin Liska <mliska@suse.cz>
25678 * doc/invoke.texi: Document options that can't be combined with
25679 -fcheck-pointer-bounds.
25681 2017-03-14 Martin Liska <mliska@suse.cz>
25683 PR middle-end/79831
25684 * doc/invoke.texi (-Wchkp): Document the option.
25686 2017-03-14 Martin Liska <mliska@suse.cz>
25688 * Makefile.in: Install gcov-dump.
25690 2017-03-14 Martin Liska <mliska@suse.cz>
25692 * multiple_target.c (expand_target_clones): Bail out for
25693 an invalid attribute.
25695 2017-03-14 Richard Biener <rguenther@suse.de>
25697 * alias.c (struct alias_set_entry): Pack properly.
25698 * cfgloop.h (struct loop): Likewise.
25699 * cse.c (struct set): Likewise.
25700 * ipa-utils.c (struct searchc_env): Likewise.
25701 * loop-invariant.c (struct invariant): Likewise.
25702 * lra-remat.c (struct cand): Likewise.
25703 * recog.c (struct change_t): Likewise.
25704 * rtl.h (struct address_info): Likewise.
25705 * symbol-summary.h (function_summary): Likewise.
25706 * tree-loop-distribution.c (struct partition): Likewise.
25707 * tree-object-size.c (struct object_size_info): Likewise.
25708 * tree-ssa-loop-ivopts.c (struct cost_pair): Likewise.
25709 * tree-ssa-threadupdate.c (struct ssa_local_info_t): Likewise.
25710 * tree-vect-data-refs.c (struct _vect_peel_info): Likewise.
25711 * tree-vect-slp.c (struct _slp_oprnd_info): Likewise.
25712 * tree-vect-stmts.c (struct simd_call_arg_info): Likewise.
25713 * tree-vectorizer.h (struct _loop_vec_info): Likewise.
25714 (struct _stmt_vec_info): Likewise.
25716 2017-03-14 Martin Liska <mliska@suse.cz>
25719 * multiple_target.c (create_dispatcher_calls): Check that
25720 a target can create a function dispatcher.
25722 2017-03-14 Martin Liska <mliska@suse.cz>
25725 * multiple_target.c (expand_target_clones): Drop local.local
25726 flag for default implementation.
25728 2017-03-14 Richard Biener <rguenther@suse.de>
25730 PR tree-optimization/80030
25731 * tree-vect-stmts.c (vectorizable_store): Plug memleak.
25733 2017-03-13 Kito Cheng <kito.cheng@gmail.com>
25735 * config/riscv/riscv.c (riscv_emit_float_compare>: Use
25736 gcc_fallthrough() instead of __attribute__((fallthrough));
25738 2017-03-13 Gerald Pfeifer <gerald@pfeifer.com>
25740 * doc/gcc.texi: Remove "up" link to (DIR).
25741 * doc/gccint.texi: Ditto.
25743 2017-03-13 Gerald Pfeifer <gerald@pfeifer.com>
25745 * doc/install.texi (Specific) <avr>: Remove reference to
25748 2017-03-13 Jeff Law <law@redhat.com>
25750 * config/riscv/riscv.c (riscv_emit_float_compare): Use fallthru
25751 attribute rather than comments.
25753 * config/pdp11/pdp11.md (movmemhi): Adjust operand numbers to
25754 match_scratch operand is highest.
25756 2017-03-13 Martin Liska <mliska@suse.cz>
25758 PR middle-end/78339
25759 * ipa-pure-const.c (warn_function_noreturn): If the declarations
25760 is a CHKP clone, use original declaration.
25762 2017-03-13 Claudiu Zissulescu <claziss@synopsys.com>
25764 * config/arc/arc.c (arc_init): Use multiplier whenever we have it.
25765 (arc_conditional_register_usage): Use a different allocation order
25766 when optimizing for size.
25767 * common/config/arc/arc-common.c (arc_option_optimization_table):
25768 Section anchors default on when optimizing for size.
25770 2017-03-13 Claudiu Zissulescu <claziss@synopsys.com>
25772 * config/arc/arc.md (*tst_bitfield_tst): Fix pattern.
25774 2017-03-13 Claudiu Zissulescu <claziss@synopsys.com>
25776 * config/arc/arc.c (arc_output_addsi): Emit code density adds.
25777 * config/arc/arc.md (cpu_facility): Add cd variant.
25778 (*movqi_insn): Add code density variant.
25779 (*movhi_insn): Likewise.
25780 (*movqi_insn): Likewise.
25781 (*addsi3_mixed): Likewise.
25782 (subsi3_insn): Likewise.
25784 2017-03-13 Claudiu Zissulescu <claziss@synopsys.com>
25786 * config/arc/arc.md (movsi_cond_exec): Update constraint.
25788 2017-03-13 Claudiu Zissulescu <claziss@synopsys.com>
25790 * config/arc/arc.c (arc_legitimize_pic_address): Handle PIC
25791 expressions with MINUS and UNARY ops.
25793 2017-03-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25796 * config/arm/neon.md (vec_sel_widen_ssum_lo<VQI:mode><VW:mode>3):
25798 (vec_sel_widen_ssum_lo<mode><V_half>3): ... This. Avoid mismatch
25799 between vec_select and vector argument.
25800 (vec_sel_widen_ssum_hi<VQI:mode><VW:mode>3): Rename to...
25801 (vec_sel_widen_ssum_hi<mode><V_half>3): ... This. Likewise.
25802 (vec_sel_widen_usum_lo<VQI:mode><VW:mode>3): Rename to...
25803 (vec_sel_widen_usum_lo<mode><V_half>3): ... This.
25804 (vec_sel_widen_usum_hi<VQI:mode><VW:mode>3): Rename to...
25805 (vec_sel_widen_usum_hi<mode><V_half>3): ... This.
25807 2017-03-13 Richard Biener <rguenther@suse.de>
25810 * params.def (vect-max-peeling-for-alignment): Fix typo.
25812 2017-03-12 Gerald Pfeifer <gerald@pfeifer.com>
25814 * doc/install.texi (Specific) <mips-*-*>: Remove description of
25815 issue that only occurred with binutils below 2.18.
25817 2017-03-12 Gerald Pfeifer <gerald@pfeifer.com>
25819 * doc/install.texi (Specific) <cris-axis-elf>: No longer
25820 refer to binutils 2.11/2.12 minimum.
25822 2017-03-12 Gerald Pfeifer <gerald@pfeifer.com>
25824 * doc/install.texi (Specific) <powerpc-*-*>: Remove link to
25825 ftp.kernel.org and simplify binutils requirement.
25827 2017-03-11 Gerald Pfeifer <gerald@pfeifer.com>
25829 * doc/invoke.texi (Warning Options): Fix spelling of link-time
25831 (Optimize Options): Ditto. Also remove redundancy.
25833 2017-03-10 David Malcolm <dmalcolm@redhat.com>
25835 PR translation/79848
25836 * ipa-devirt.c (warn_types_mismatch): Simplify uses of "%<%s%>" to
25838 * ipa-pure-const.c (suggest_attribute): Likewise. Convert _
25839 to G_ to avoid double translation.
25841 2017-03-10 David Malcolm <dmalcolm@redhat.com>
25843 PR translation/79923
25844 * auto-profile.c (get_combined_location): Convert leading
25845 character of diagnostics to lower case and remove trailing period.
25846 (read_profile): Likewise for various diagnostics.
25847 * config/arm/arm.c (arm_option_override): Remove trailing period
25848 from various diagnostics.
25849 * config/msp430/msp430.c (msp430_expand_delay_cycles): Likewise.
25850 (msp430_expand_delay_cycles): Likewise.
25852 2017-03-10 David Malcolm <dmalcolm@redhat.com>
25855 * config/aarch64/aarch64.c (aarch64_validate_mcpu): Quote the
25856 full command-line argument, rather than just "str".
25857 (aarch64_validate_march): Likewise.
25858 (aarch64_validate_mtune): Likewise.
25860 2017-03-10 Bernd Schmidt <bschmidt@redhat.com>
25862 PR rtl-optimization/78911
25863 * lra-assigns.c (must_not_spill_p): New function.
25864 (spill_for): Use it.
25866 2017-03-10 Jakub Jelinek <jakub@redhat.com>
25868 PR tree-optimization/79981
25869 * tree-vrp.c (extract_range_basic): Handle IMAGPART_EXPR of
25870 ATOMIC_COMPARE_EXCHANGE ifn result.
25871 (stmt_interesting_for_vrp, vrp_visit_stmt): Handle
25872 IFN_ATOMIC_COMPARE_EXCHANGE.
25874 2017-03-10 David Malcolm <dmalcolm@redhat.com>
25877 * opts.c (parse_sanitizer_options): Add missing question mark to
25878 "did you mean" message.
25880 2017-03-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25882 * config/rs6000/rs6000-builtin.def (VMULEUB_UNS): Remove orphaned
25884 (VMULEUH_UNS): Likewise.
25885 (VMULOUB_UNS): Likewise.
25886 (VMULOUH_UNS): Likewise.
25887 * config/rs6000/rs6000.c (builtin_function_type): Remove
25888 references to ALTIVEC_BUILTIN_VMUL[EO]U[BH]_UNS.
25890 2017-03-10 David Malcolm <dmalcolm@redhat.com>
25893 * read-rtl-function.c (function_reader::read_rtx_operand): Update
25894 x with result of extra_parsing_for_operand_code_0.
25895 (function_reader::extra_parsing_for_operand_code_0): Convert
25896 return type from void to rtx, returning x. When reading
25897 SYMBOL_REF with SYMBOL_FLAG_HAS_BLOCK_INFO, reallocate x to the
25898 larger size containing struct block_symbol.
25900 2017-03-10 Segher Boessenkool <segher@kernel.crashing.org>
25902 * config/rs6000/rs6000.c (rs6000_option_override_internal): Disallow
25903 -mfloat128-hardware without -m64.
25905 2017-03-10 Will Schmidt <will_schmidt@vnet.ibm.com>
25908 * config/rs6000/rs6000.c (builtin_function_type): Add VMUL*U[HB]
25909 entries to the case statement that marks unsigned arguments to
25910 overloaded functions.
25912 2017-03-10 Kelvin Nilsen <kelvin@gcc.gnu.org>
25914 * config/rs6000/rs6000.c (rs6000_option_override_internal): Fix
25915 two typographic errors in the handling of TARGET_UPPER_REGS_DI.
25917 2017-03-10 Pat Haugen <pthaugen@us.ibm.com>
25920 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Test
25921 TARGET_UPPER_REGS_DI when setting 'wi' constraint regclass.
25923 2017-03-10 Martin Liska <mliska@suse.cz>
25927 * toplev.c (process_options): Enable MPX with LSAN and UBSAN.
25928 * tree-chkp.c (chkp_walk_pointer_assignments): Verify that
25931 2017-03-10 Olivier Hainque <hainque@adacore.com>
25933 * tree-switch-conversion (array_value_type): Start by resetting
25934 candidate type to it's main variant.
25936 2017-03-10 Jakub Jelinek <jakub@redhat.com>
25938 PR rtl-optimization/79909
25939 * combine.c (try_combine): Use simplify_replace_rtx on individual
25940 CALL_INSN_FUNCTION_USAGE elements instead of replace_rtx on copy_rtx
25941 of the whole CALL_INSN_FUNCTION_USAGE.
25943 PR tree-optimization/79972
25944 * gimple-ssa-warn-alloca.c (alloca_call_type): Only call
25945 get_range_info on SSA_NAMEs. Formatting fixes.
25947 2017-03-10 Richard Biener <rguenther@suse.de>
25948 Jakub Jelinek <jakub@redhat.com>
25950 PR tree-optimization/77975
25951 * tree-ssa-loop-niter.c (get_base_for): Allow phi argument from latch
25952 edge to be constant.
25953 (get_val_for): For constant x return it. Formatting fix.
25954 (loop_niter_by_eval): Avoid pointless looping if the next iteration
25955 would use the same bases as the current one.
25957 2017-03-09 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25959 * config/rs6000/rs6000.c (rs6000_gen_le_vsx_permute): Use rotate
25960 instead of vec_select for V1TImode.
25961 * conifg/rs6000/vsx.md (VSX_LE): Remove mode iterator that is no
25963 (VSX_LE_128): Add V1TI to this mode iterator.
25964 (*vsx_le_perm_load_<mode>): Change to use VSX_D mode iterator.
25965 (*vsx_le_perm_store_<mode>): Likewise.
25966 (pre-reload splitter for VSX stores): Likewise.
25967 (post-reload splitter for VSX stores): Likewise.
25968 (*vsx_xxpermdi2_le_<mode>): Likewise.
25969 (*vsx_lxvd2x2_le_<mode>): Likewise.
25970 (*vsx_stxvd2x2_le_<mode>): Likewise.
25972 2017-03-09 Michael Eager <eager@eagercon.com>
25974 Correct failures with --enable-checking=yes,rtl.
25976 * config/microblaze/microblaze.c (microblaze_expand_shift):
25977 Replace GET_CODE test with CONST_INT_P and INTVAL test with
25978 test for const0_rtx.
25979 * config/microblaze/microblaze.md (ashlsi3_byone, ashrsi3_byone,
25980 lshrsi3_byone): Replace INTVAL with test for const1_rtx.
25982 2017-03-09 Richard Biener <rguenther@suse.de>
25984 PR tree-optimization/79977
25985 * graphite-scop-detection.c (scop_detection::merge_sese):
25986 Handle the case of extra exits to blocks dominating the entry.
25988 2017-03-09 Toma Tabacu <toma.tabacu@imgtec.com>
25990 * doc/sourcebuild.texi (Effective-Target Keywords, Other attributes):
25993 2017-03-09 Vladimir Makarov <vmakarov@redhat.com>
25995 PR rtl-optimization/79949
25996 * lra-constraints.c (process_alt_operands): Check memory when
25997 trying to predict a cycle. Print about the overall increase.
25999 2017-03-09 Richard Biener <rguenther@suse.de>
26001 PR middle-end/79971
26002 * gimple-expr.c (useless_type_conversion_p): Preserve
26003 TYPE_SATURATING for fixed-point types.
26005 2017-03-09 Richard Biener <rguenther@suse.de>
26008 * ipa-prop.c (ipa_modify_formal_parameters): Avoid changing
26009 alignment of BLKmode params.
26011 2017-03-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26014 * config/aarch64/iterators.md (VALL_F16_NO_V2Q): New mode iterator.
26015 (VALL_NO_V2Q): Likewise.
26017 * config/aarch64/aarch64-simd.md
26018 (aarch64_dup_lane_<vswap_width_name><mode>): Use VALL_F16_NO_V2Q
26020 (*aarch64_simd_vec_copy_lane_<vswap_width_name><mode>): Use
26021 VALL_NO_V2Q mode iterator.
26022 (*aarch64_vgetfmulx<mode>): Use VDQF iterator.
26024 2017-03-09 Martin Liska <mliska@suse.cz>
26026 PR tree-optimization/79631
26027 * tree-chkp-opt.c (chkp_is_constant_addr): Call
26028 tree_int_cst_sign_bit just for INTEGER constants.
26030 2017-03-09 Martin Liska <mliska@suse.cz>
26034 * toplev.c (process_options): Disable -fcheck-pointer-bounds with
26037 2017-03-09 Marek Polacek <polacek@redhat.com>
26040 * tree.c (inchash::add_expr): Handle TREE_VEC.
26042 2017-03-09 Martin Liska <mliska@suse.cz>
26045 (chkp_narrow_size_and_offset): New function.
26046 (chkp_parse_array_and_component_ref): Support BIT_FIELD_REF.
26047 (void chkp_parse_bit_field_ref): New function.
26048 (chkp_make_addressed_object_bounds): Add case for BIT_FIELD_REF.
26049 (chkp_process_stmt): Use chkp_parse_bit_field_ref.
26051 2017-03-09 Martin Liska <mliska@suse.cz>
26054 * tree-chkp.c (chkp_get_bound_for_parm): Get bounds for a param.
26055 (chkp_find_bounds_1): Remove gcc_unreachable.
26057 2017-03-09 Jakub Jelinek <jakub@redhat.com>
26060 * asan.c (get_mem_refs_of_builtin_call): For BUILT_IN_ATOMIC* and
26061 BUILT_IN_SYNC*, determine the access type from the size suffix and
26062 always build a MEM_REF with that type. Handle forgotten
26063 BUILT_IN_SYNC_FETCH_AND_NAND_16 and BUILT_IN_SYNC_NAND_AND_FETCH_16.
26066 * config/i386/avx512vlintrin.h (_mm256_cmpge_epi32_mask,
26067 _mm256_cmpge_epi64_mask, _mm256_cmpge_epu32_mask,
26068 _mm256_cmpge_epu64_mask, _mm256_cmple_epi32_mask,
26069 _mm256_cmple_epi64_mask, _mm256_cmple_epu32_mask,
26070 _mm256_cmple_epu64_mask, _mm256_cmplt_epi32_mask,
26071 _mm256_cmplt_epi64_mask, _mm256_cmplt_epu32_mask,
26072 _mm256_cmplt_epu64_mask, _mm256_cmpneq_epi32_mask,
26073 _mm256_cmpneq_epi64_mask, _mm256_cmpneq_epu32_mask,
26074 _mm256_cmpneq_epu64_mask, _mm256_mask_cmpge_epi32_mask,
26075 _mm256_mask_cmpge_epi64_mask, _mm256_mask_cmpge_epu32_mask,
26076 _mm256_mask_cmpge_epu64_mask, _mm256_mask_cmple_epi32_mask,
26077 _mm256_mask_cmple_epi64_mask, _mm256_mask_cmple_epu32_mask,
26078 _mm256_mask_cmple_epu64_mask, _mm256_mask_cmplt_epi32_mask,
26079 _mm256_mask_cmplt_epi64_mask, _mm256_mask_cmplt_epu32_mask,
26080 _mm256_mask_cmplt_epu64_mask, _mm256_mask_cmpneq_epi32_mask,
26081 _mm256_mask_cmpneq_epi64_mask, _mm256_mask_cmpneq_epu32_mask,
26082 _mm256_mask_cmpneq_epu64_mask, _mm_cmpge_epi32_mask,
26083 _mm_cmpge_epi64_mask, _mm_cmpge_epu32_mask, _mm_cmpge_epu64_mask,
26084 _mm_cmple_epi32_mask, _mm_cmple_epi64_mask, _mm_cmple_epu32_mask,
26085 _mm_cmple_epu64_mask, _mm_cmplt_epi32_mask, _mm_cmplt_epi64_mask,
26086 _mm_cmplt_epu32_mask, _mm_cmplt_epu64_mask, _mm_cmpneq_epi32_mask,
26087 _mm_cmpneq_epi64_mask, _mm_cmpneq_epu32_mask, _mm_cmpneq_epu64_mask,
26088 _mm_mask_cmpge_epi32_mask, _mm_mask_cmpge_epi64_mask,
26089 _mm_mask_cmpge_epu32_mask, _mm_mask_cmpge_epu64_mask,
26090 _mm_mask_cmple_epi32_mask, _mm_mask_cmple_epi64_mask,
26091 _mm_mask_cmple_epu32_mask, _mm_mask_cmple_epu64_mask,
26092 _mm_mask_cmplt_epi32_mask, _mm_mask_cmplt_epi64_mask,
26093 _mm_mask_cmplt_epu32_mask, _mm_mask_cmplt_epu64_mask,
26094 _mm_mask_cmpneq_epi32_mask, _mm_mask_cmpneq_epi64_mask,
26095 _mm_mask_cmpneq_epu32_mask, _mm_mask_cmpneq_epu64_mask): Move
26096 definitions outside of __OPTIMIZE__ guarded section.
26099 * config/i386/avx512bwintrin.h (_mm512_packs_epi32,
26100 _mm512_maskz_packs_epi32, _mm512_mask_packs_epi32,
26101 _mm512_packus_epi32, _mm512_maskz_packus_epi32,
26102 _mm512_mask_packus_epi32): Move definitions outside of __OPTIMIZE__
26105 2017-03-09 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
26107 * config/s390/vx-builtins.md ("vfee<mode>", "vfeez<mode>")
26108 ("vfenez<mode>"): Add missing constraints.
26110 2017-03-08 Martin Sebor <msebor@redhat.com>
26113 * config/nds32/nds32.c (nds32_option_override):
26114 Fix misspelled diagnostic.
26116 2017-03-08 Jakub Jelinek <jakub@redhat.com>
26119 * gimplify.c (gimplify_omp_for): Replace index var in outer
26120 taskloop statement with an artificial variable and add
26121 OMP_CLAUSE_PRIVATE clause for it.
26123 2017-03-08 Richard Biener <rguenther@suse.de>
26125 PR tree-optimization/79955
26126 * tree-ssa-uninit.c (warn_uninitialized_vars): Do not warn
26127 for accesses that are completely outside of the variable.
26129 2017-03-08 Andrew Haley <aph@redhat.com>
26131 PR tree-optimization/79943
26132 * tree-ssa-loop-split.c (compute_new_first_bound): When
26133 calculating the new upper bound, (END-BEG) should be added, not
26136 2017-03-08 Jakub Jelinek <jakub@redhat.com>
26138 * config/avr/avr.md (setmemhi): Make sure match_dup
26139 operand number comes before match_scratch.
26141 2017-03-08 Richard Biener <rguenther@suse.de>
26143 PR tree-optimization/79920
26144 * tree-vect-slp.c (vect_create_mask_and_perm): Remove and inline
26145 with ncopies == 1 to ...
26146 (vect_transform_slp_perm_load): ... here. Properly compute
26147 all element loads by iterating VF times over the group. Do
26148 not handle ncopies (computed in a broken way) in
26149 vect_create_mask_and_perm.
26151 2017-03-08 Jakub Jelinek <jakub@redhat.com>
26154 * internal-fn.c (expand_vector_ubsan_overflow): If arg0 or arg1
26155 is a uniform vector, use uniform_vector_p return value instead of
26156 building ARRAY_REF on folded VIEW_CONVERT_EXPR to array type.
26158 2017-03-07 Marek Polacek <polacek@redhat.com>
26160 PR middle-end/79809
26161 * gimple-ssa-warn-alloca.c (pass_walloca::gate): Use HOST_WIDE_INT.
26162 (alloca_call_type): Likewise.
26164 2017-03-07 Martin Liska <mliska@suse.cz>
26166 * gcov.c (process_args): Put comment to correct location.
26168 2017-03-07 Martin Liska <mliska@suse.cz>
26170 PR middle-end/68270
26171 * tree-chkp.c (chkp_may_narrow_to_field): Add new argument ref.
26172 Use array_at_struct_end_p instead of DECL_CHAIN (field).
26173 (chkp_narrow_bounds_for_field): Likewise.
26174 (chkp_parse_array_and_component_ref): Pass one more argument to
26177 2017-03-07 Richard Biener <rguenther@suse.de>
26179 * tree-vect-loop-manip.c (slpeel_add_loop_guard): Preserve
26182 2017-03-07 Segher Boessenkool <segher@kernel.crashing.org>
26184 * config/i386/i386.c (ix86_local_alignment): Align most aggregates
26185 of 16 bytes and more to 16 bytes, not those of 16 bits and more.
26187 2017-03-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26190 * params.def (PARAM_STORE_MERGING_ALLOW_UNALIGNED): Add full stop
26191 to end of description.
26192 (PARAM_MAX_STORES_TO_MERGE): Likewise.
26194 2017-03-07 Jakub Jelinek <jakub@redhat.com>
26196 PR rtl-optimization/79901
26197 * config/i386/sse.md (*avx512bw_<code><mode>3<mask_name>): Renamed to
26199 (*avx512f_<code><mode>3<mask_name>): ... this.
26200 (<code><mode>3 with maxmin code iterator): Use VI8_AVX2_AVX512F
26201 iterator instead of VI8_AVX2_AVX512BW.
26203 PR rtl-optimization/79901
26204 * expr.c (expand_expr_real_2): For vector MIN/MAX, if there is no
26205 min/max expander, expand it using expand_vec_cond_expr.
26208 * ubsan.c (ubsan_encode_value): Call mark_addressable on the
26211 2017-03-06 Jakub Jelinek <jakub@redhat.com>
26214 * dwarf2out.h (dw_vec_const): Change array type from unsigned char *
26215 to void * for PCH reasons.
26216 * dwarf2out.c (output_loc_operands, output_die): Cast
26217 v.val_vec.array to unsigned char *.
26219 2017-03-06 John David Anglin <danglin@gcc.gnu.org>
26222 * config/pa/pa-64.h (PAD_VARARGS_DOWN): Don't pad down complex and
26225 2017-03-06 Vladimir Makarov <vmakarov@redhat.com>
26227 PR rtl-optimization/79571
26228 * lra-constraints.c (process_alt_operands): Calculate static
26229 reject and subtract it from overall when only addresses will be
26232 2017-03-06 Julia Koval <julia.koval@intel.com>
26235 * config/i386/i386.c (ix86_minimum_incoming_stack_boundary): Set
26236 incoming stack boundary to 128 for 64-bit targets.
26238 2017-03-06 Richard Biener <rguenther@suse.de>
26240 PR tree-optimization/79894
26241 * tree-vectorizer.c (vectorize_loops): Set loop_vectorized_call
26242 to NULL after folding it.
26244 2017-03-06 Richard Biener <rguenther@suse.de>
26246 PR tree-optimization/79824
26247 * tree-vect-stmts.c (get_group_load_store_type): Fix alignment
26248 check disabling peeling for gaps.
26250 2017-03-06 Toma Tabacu <toma.tabacu@imgtec.com>
26252 * doc/sourcebuild.texi (Effective-Target Keywords, Environment
26253 attributes): Document gettimeofday.
26255 2017-03-06 Robin Dapp <rdapp@linux.vnet.ibm.com>
26257 * config/s390/s390.c (s390_option_override_internal): Set
26258 PARAM_MIN_VECT_LOOP_BOUND
26260 2017-03-06 Robin Dapp <rdapp@linux.vnet.ibm.com>
26262 * config/s390/s390.c (s390_asm_output_function_label): Use nopr %r0.
26263 * config/s390/s390.md: Likewise.
26265 2017-03-06 Jakub Jelinek <jakub@redhat.com>
26268 * config/i386/sse.md (VI8F_256_512): Remove mode iterator.
26269 (<avx2_avx512>_perm<mode>): Rename to ...
26270 (avx2_perm<mode>): ... this. Use VI8F_256 iterator instead
26272 (<avx512>_perm<mode>_mask): Rename to ...
26273 (avx512vl_perm<mode>_mask): ... this. Use VI8F_256 iterator instead
26275 (<avx2_avx512>_perm<mode>_1<mask_name>): Rename to ...
26276 (avx2_perm<mode>_1<mask_name): ... this. Use VI8F_256 iterator
26277 instead of VI8F_256_512.
26278 (avx512f_perm<mode>): New define_expand.
26279 (avx512f_perm<mode>_mask): Likewise.
26280 (avx512f_perm<mode>_1<mask_name>): New define_insn.
26281 (<avx512>_vec_dup<mode>_1): Fix up vec_select mode.
26283 2017-03-06 Prachi Godbole <prachi.godbole@imgtec.com>
26285 * config/mips/mips-msa.md (msa_fmax_a_<msafmt>, msa_fmin_a_<msafmt>,
26286 msa_max_a_<msafmt>, msa_min_a_<msafmt>): Introduce mode interator for
26288 (smin<mode>3, smax<mode>3): Change operand print code from 'B' to 'E'.
26290 2017-03-06 Martin Liska <mliska@suse.cz>
26293 * asan.c (asan_expand_poison_ifn): Do not expand ASAN_POISON
26294 when having a SSA NAME w/o VAR_DECL assigned to it.
26296 2017-03-06 Prachi Godbole <prachi.godbole@imgtec.com>
26298 * config/mips/mips-msa.md (msa_dotp_<su>_d, msa_dpadd_<su>_d,
26299 msa_dpsub_<su>_d): Fix MODE for vec_select.
26301 2017-03-06 Prachi Godbole <prachi.godbole@imgtec.com>
26303 * config/mips/mips.c (mips_gen_const_int_vector): Change type of last
26305 * config/mips/mips-protos.h (mips_gen_const_int_vector): Likewise.
26307 2017-03-06 Richard Biener <rguenther@suse.de>
26309 * lto-streamer.c (lto_check_version): Use %qs in diagnostics.
26310 * plugin.c (register_plugin_info): Likewise.
26311 * tree-chkp.c (chkp_make_static_const_bounds): Likewise.
26313 2017-03-05 Jakub Jelinek <jakub@redhat.com>
26315 * config/i386/sse.md (sse_storehps, sse_storelps,
26316 avx_<castmode><avxsizesuffix>_<castmode>,
26317 avx512f_<castmode><avxsizesuffix>_<castmode>,
26318 avx512f_<castmode><avxsizesuffix>_256<castmode>): Require
26319 in condition that at least one operand is not a MEM.
26321 2017-03-03 Jakub Jelinek <jakub@redhat.com>
26323 PR middle-end/79805
26324 * internal-fn.def (ATOMIC_BIT_TEST_AND_SET, ATOMIC_BIT_TEST_AND_RESET,
26325 ATOMIC_BIT_TEST_AND_COMPLEMENT, ATOMIC_COMPARE_EXCHANGE): Remove
26327 * gimple-fold.c (fold_builtin_atomic_compare_exchange): Set
26328 gimple_call_nothrow_p flag based on whether original builtin can throw.
26329 If it can, emit following stmts on the fallthrough edge.
26330 * tree-ssa-ccp.c (optimize_atomic_bit_test_and): Similarly, except
26331 don't create new bb if inserting just debug stmts on the edge, try to
26332 insert them on the fallthru bb or just reset debug stmts.
26334 2017-03-03 Segher Boesssenkool <segher@kernel.crashing.org>
26337 * config/rs6000/rs6000.c (rs6000_final_prescan_insn): Save and
26338 restore recog_data (including the operand rtxes inside it) around
26339 the call to get_insn_template.
26341 2017-03-03 Martin Sebor <msebor@redhat.com>
26343 PR tree-optimization/79699
26344 * context.c (context::~context): Free MPFR caches to avoid
26345 a memory leak on program exit.
26347 2017-03-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26349 * config/aarch64/aarch64.c (aarch64_float_const_representable_p):
26350 Use wide_int::ulow () instead of .elt (0).
26352 2017-03-03 Uros Bizjak <ubizjak@gmail.com>
26354 * config/i386/i386.md (*pushtf): Change *roF constraint to *roC.
26355 (*pushxf): Limit oF constraint to 32bit targets and add oC
26356 constraint for 64bit targets.
26357 (pushxf splitter): Use PUSH_ROUNDING to calculate stack adjustment.
26358 (*pushdf): Change rmF constraint to rmC.
26360 2017-03-03 Martin Liska <mliska@suse.cz>
26362 * tree-ssa-loop-prefetch.c (pass_loop_prefetch::execute):
26363 Remove unused variable.
26365 2017-03-03 Jakub Jelinek <jakub@redhat.com>
26368 * config/i386/i386.c (ix86_expand_multi_arg_builtin): If target
26369 is a memory operand, increase num_memory.
26370 (ix86_expand_args_builtin): Likewise.
26372 2017-03-03 Jan Hubicka <jh@suse.cz>
26375 * ipa-devirt.c (maybe_record_node): Properly handle
26376 __cxa_pure_virtual visibility.
26378 2017-03-03 Martin Liska <mliska@suse.cz>
26380 PR tree-optimization/79803
26381 * tree-ssa-loop-prefetch.c (tree_ssa_prefetch_arrays): Remove
26383 (pass_loop_prefetch::execute): Disabled optimization if an
26384 assumption about L1 cache size is not met.
26386 2017-03-03 Martin Liska <mliska@suse.cz>
26388 PR rtl-optimization/79574
26389 * gcse.c (struct gcse_expr): Use HOST_WIDE_INT instead of int.
26390 (hash_scan_set): Likewise.
26391 (dump_hash_table): Likewise.
26392 (hoist_code): Likewise.
26394 2017-03-03 Richard Biener <rguenther@suse.de>
26396 * fixed-value.c (fixed_from_string): Restore use of elt (1)
26397 in place of uhigh ().
26398 (fixed_convert_from_real): Likewise.
26400 2017-03-03 Uros Bizjak <ubizjak@gmail.com>
26403 * config/i386/i386.md (*pushxf_rounded): Use Pmode instead of DImode.
26405 2017-03-03 Richard Biener <rguenther@suse.de>
26407 PR middle-end/79818
26408 * match.pd ( X +- C1 CMP C2 -> X CMP C2 -+ C1): Add missing
26409 TYPE_OVERFLOW_UNDEFINED check.
26411 2017-03-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
26413 * config/rs6000/vector.md (vector_ne_<mode>_p): Correct operand
26415 (vector_ae_<mode>_p): Likewise.
26416 (vector_nez_<mode>_p): Likewise.
26417 (vector_ne_v2di_p): Likewise.
26418 (vector_ae_v2di_p): Likewise.
26419 (vector_ne_<mode>_p): Likewise.
26420 * config/rs6000/vsx.md (vsx_tsqrt<mode>2_fg): Correct operand
26422 (vsx_tsqrt<mode>2_fe): Likewise.
26424 2017-03-02 Uros Bizjak <ubizjak@gmail.com>
26427 * config/i386/i386.md (*pushxf_rounded): New insn_and_split pattern.
26429 2017-03-02 Jakub Jelinek <jakub@redhat.com>
26431 PR rtl-optimization/79780
26432 * cprop.c (one_cprop_pass): When second and further conditional trap
26433 in a single basic block is turned into an unconditional trap, turn it
26434 into a deleted note to avoid RTL verification failures.
26436 2017-03-02 Richard Biener <rguenther@suse.de>
26438 * fold-const.c (const_binop): Use ulow () instead of elt (0).
26440 2017-03-02 Richard Biener <rguenther@suse.de>
26442 PR tree-optimization/79345
26444 * tree-ssa-alias.c (walk_aliased_vdefs_1): Take a limit
26445 param and abort the walk, returning -1 if it is hit.
26446 (walk_aliased_vdefs): Take a limit param and pass it on.
26447 * tree-ssa-alias.h (walk_aliased_vdefs): Add a limit param,
26448 defaulting to 0 and return a signed int.
26449 * tree-ssa-uninit.c (struct check_defs_data): New struct.
26450 (check_defs): New helper.
26451 (warn_uninitialized_vars): Use walk_aliased_vdefs to warn
26452 about uninitialized memory.
26453 * fixed-value.c (fixed_from_string): Use ulow/uhigh to avoid
26454 bogus uninitialized warning.
26455 (fixed_convert_from_real): Likewise.
26457 2017-03-02 Bin Cheng <bin.cheng@arm.com>
26459 PR tree-optimization/66768
26460 * tree-ssa-loop-ivopts.c (find_interesting_uses_address): Skip addr
26461 iv_use if base object can't be determined.
26463 2017-03-02 Jakub Jelinek <jakub@redhat.com>
26465 PR tree-optimization/79345
26466 * gensupport.h (struct pattern_stats): Add min_scratch_opno field.
26467 * gensupport.c (get_pattern_stats_1) <case MATCH_SCRATCH>: Update it.
26468 (get_pattern_stats): Initialize it.
26469 * genemit.c (gen_expand): Verify match_scratch numbers come after
26470 match_operand/match_dup numbers.
26471 * config/i386/i386.md (<s>mul<mode>3_highpart): Swap match_dup and
26472 match_scratch numbers.
26473 * config/i386/sse.md (avx2_gathersi<mode>, avx2_gatherdi<mode>):
26475 * config/s390/s390.md (trunctdsd2): Likewise.
26477 2017-03-02 Richard Biener <rguenther@suse.de>
26479 * wide-int.h (wide_int_storage::operator=): Implement in terms
26482 2017-03-02 Richard Biener <rguenther@suse.de>
26484 PR tree-optimization/79777
26485 * tree-ssa-pre.c (eliminate_insert): Give up if we simplify
26486 the to insert expression to sth existing.
26488 2017-03-01 Martin Sebor <msebor@redhat.com>
26490 PR middle-end/79692
26491 * gimple-ssa-sprintf.c
26492 (directive::known_width_and_precision): New function.
26493 (format_integer): Use it.
26494 (get_mpfr_format_length): Consider the full range of precision
26495 when computing %g output with the # flag. Set the likely byte
26496 count to 3 rather than 1 when precision is indeterminate.
26497 (format_floating): Correct the lower bound of precision.
26499 2017-03-01 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
26501 * doc/invoke.texi: Document default code model for 64-bit Linux.
26503 2017-03-01 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
26506 * config/rs6000/rs6000.md (peephole2 for udiv/umod): Should emit
26507 udiv rather than div since input pattern is unsigned.
26509 2017-03-01 Uros Bizjak <ubizjak@gmail.com>
26511 * config/i386/i386.c (print_reg): Warn for values of
26512 unsupported size in integer register.
26514 2017-03-01 Michael Meissner <meissner@linux.vnet.ibm.com>
26517 * config/rs6000/predicates.md (current_file_function_operand): Do
26518 not allow self calls to be local if the function is replaceable.
26520 2017-03-01 Kelvin Nilsen <kelvin@gcc.gnu.org>
26523 * config/rs6000/altivec.h (vec_ctz and others): Change the
26524 preprocessor macro that controls conditional compilation from
26525 _ARCH_PWR9 to __POWER9_VECTOR__.
26526 (vec_all_ne): Change parameterization of __altivec_scalar_pred
26527 macro expansion under preprocessor #ifdef __POWER9_VECTOR__
26528 control (instead of _ARCH_PWR9 control) so that template
26529 definition uses power9-specific function.
26530 (vec_any_eq): Likewise.
26531 (vec_all_ne): Change macro definition to use a power9-specific
26532 expansion under #ifdef __POWER9_VECTOR__ control (instead of
26533 _ARCH_PWR9 control).
26534 (vec_any_eq) Likewise.
26535 * config/rs6000/rs6000-builtin.def (CMPNEF): Remove BU_P9V_AV_2
26536 expansion for CMPNEF to remove support for xvcmpnesp instruction.
26537 (CMPNED): Remove BU_P9V_AV2 expansion for CMPNED to remove
26538 support for xvcmpnedp instruction.
26539 (VCMPNEB_P): Replace BU_P9V_AV_P macro expansion with BU_P9V_AV_2
26540 macro expansion so that Power9 implementation of vec_all_ne does
26541 not use the AltiVec predicate framework.
26542 (VCMPNEH_P): Likewise.
26543 (VCMPNEW_P): Likewise.
26544 (VCMPNED_P): Likewise.
26545 (VCMPNEFP_P): Likewise.
26546 (VCMPNEDP_P): Likewise.
26547 (VCMPAEB_P): Add BU_P9V_AV_2 macro expansion to change
26548 implementation of vec_any_eq to not use AltiVec predicate
26550 (VCMPAEH_P): Likewise.
26551 (VCMPAEW_P): Likewise.
26552 (VCMPAED_P): Likewise.
26553 (VCMPAEFP_P): Likewise.
26554 (VCMPAEDP_P): Likewise.
26555 (VCMPNE_P): Replace BU_P9V_OVERLOAD_P macro expansion with
26556 BU_P9V_OVERLOAD_2 so that Power9 implementation of vec_all_ne does
26557 not use the AltiVec predicate framework.
26558 (VCMPAE_P): Add BU_P9V_OVERLOAD_2 macro to change implementation
26559 of vec_any_eq to not use AltiVec predicate framework.
26560 * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Add
26561 support for predefined __POWER9_VECTOR__ macro to indicate that
26562 Power9 instruction selection is enabled.
26563 (altivec_overloaded_builtins): Remove extraneous
26564 ALTIVEC_BUILTIN_VEC_CMPNE entry for overloaded
26565 function argument types RS6000_BTI_bool_V16QI and
26566 RS6000_BTI_bool_V16QI. Remove erroneous ALTIVEC_BUILTIN_VEC_CMPNE
26567 entry for overloaded function argument types RS6000_BTI_bool_V4SI
26568 andRS6000_BTI_bool_V4SI, mapping to P9V_BUILTIN_CMPNEB. Remove
26569 two entries mapping to P9V_BUITIN_CMPNED and one entry mapping to
26570 P9V_BUILTIN_CMPNEF to force use of instructions not specific to
26571 Power9 for implementations of vec_cmpne. Change the signature for
26572 all definitions of the overloaded P9V_BUILTIN_VEC_CMPNE_P function
26573 (representing vec_all_ne) to remove the previously described first
26574 argument of type RS6000_BTI_INTSI, as this was an artifact of
26575 reliance on the AltiVec predicate framework, which is no longer
26576 used in the implementation of these functions. Add
26577 P9V_BUILTIN_VEC_VCMPAE_P entries (representing the vec_anyeq
26578 function) to match all of the P9V_BUILTIN_VEC_VCMNE_P entries
26579 since, unlike the AltiVec predicate framework implementation, we
26580 do not share function descriptors between vec_alle and vec_anyeq.
26581 (altivec_resolve_overloaded_builtin): Add SFmode and DFmode to the
26582 set of modes that receive special treatment even when
26583 TARGET_P9_VECTOR is true. The special treatment emits code that
26584 does not depend on Power9 instructions.
26585 * config/rs6000/vector.md (vector_ne_<mode>_p): Change this
26586 define_expand to not rely on AltiVec predicate framework.
26587 (vector_ae_<mode>p): New define_expand to represent vec_any_eq
26589 (vector_ne_v2di_p): Change this define_expand to not rely on
26590 AltiVec predicate framework.
26591 (vector_ae_v2di_p): New define_expand to represent vec_any_eq
26593 (vector_ne_<mode>_p): Change this define_expand to not rely on
26594 AltiVec predicate framework.
26595 (vector_ae_<mode>p): New define_expand to represent vec_any_eq
26597 * config/rs6000/vsx.md (*vsx_ne_<mode>_p): For modes VSX_EXTRACT_I
26598 (V16QI, V8HI, V4SI), correct a typo in the code emitted for this
26599 define_insn pattern.
26600 (*vsx_ne_<mode>_p): For modes VSX_F (V4SF and V2DF), remove this
26601 define_insn pattern because the xvcmpne<VSs>. instruction is not
26603 (vcmpne<VSs>): Remove this define_insn because xvcmpne<VSs>
26604 instruction is not supported.
26606 2017-03-01 Jakub Jelinek <jakub@redhat.com>
26608 * config/nvptx/nvptx.c: Include intl.h.
26610 2017-03-01 Martin Jambor <mjambor@suse.cz>
26613 * ipa-prop.h (ipa_bits): Removed field known.
26614 (ipa_jump_func): Removed field vr_known. Changed fields bits and m_vr
26615 to pointers. Adjusted their comments to warn about their sharing.
26616 (ipcp_transformation_summary): Change bits to a vector of pointers.
26617 (ipa_check_create_edge_args): Moved to ipa-prop.c, declare.
26618 (ipa_get_ipa_bits_for_value): Declare.
26619 * tree-vrp.h (value_range): Mark as GTY((for_user)).
26620 * ipa-prop.c (ipa_bit_ggc_hash_traits): New.
26621 (ipa_bits_hash_table): Likewise.
26622 (ipa_vr_ggc_hash_traits): Likewise.
26623 (ipa_vr_hash_table): Likewise.
26624 (ipa_print_node_jump_functions_for_edge): Adjust for bits and m_vr
26625 being pointers and vr_known being removed.
26626 (ipa_set_jf_unknown): Likewise.
26627 (ipa_get_ipa_bits_for_value): New function.
26628 (ipa_set_jfunc_bits): Likewise.
26629 (ipa_get_value_range): New overloaded functions.
26630 (ipa_set_jfunc_vr): Likewise.
26631 (ipa_compute_jump_functions_for_edge): Use the above functions to
26632 construct bits and vr parts of jump functions.
26633 (ipa_check_create_edge_args): Move here from ipa-prop.h, also allocate
26634 ipa_bits_hash_table and ipa_vr_hash_table if they do not already
26636 (ipcp_grow_transformations_if_necessary): Also allocate
26637 ipa_bits_hash_table and ipa_vr_hash_table if they do not already
26639 (ipa_node_params_t::duplicate): Do not copy bits, just pointers to
26640 them. Fix too long lines.
26641 (ipa_write_jump_function): Adjust for bits and m_vr being pointers and
26642 vr_known being removed.
26643 (ipa_read_jump_function): Use new setter functions to construct bits
26644 and vr parts of jump functions or set them to NULL.
26645 (write_ipcp_transformation_info): Adjust for bits being pointers.
26646 (read_ipcp_transformation_info): Likewise.
26647 (ipcp_update_bits): Likewise. Fix excessively long lines a trailing
26649 Include gt-ipa-prop.h.
26650 * ipa-cp.c (propagate_bits_across_jump_function): Adjust for bits
26652 (ipcp_store_bits_results): Likewise.
26653 (propagate_vr_across_jump_function): Adjust for m_vr being a pointer.
26654 Do not write to existing jump functions but use a temporary instead.
26656 2017-03-01 Jakub Jelinek <jakub@redhat.com>
26659 * fold-const.c (make_bit_field_ref): If orig_inner is COMPONENT_REF,
26660 attempt to use its first operand as BIT_FIELD_REF base.
26662 2017-03-01 Richard Biener <rguenther@suse.de>
26664 PR middle-end/79721
26665 * tree-chrec.c (chrec_evaluate): Perform computation of Newtons
26666 interpolating formula in wrapping arithmetic.
26667 (chrec_apply): Convert chrec_evaluate return value to wanted type.
26669 2017-03-01 Jakub Jelinek <jakub@redhat.com>
26671 PR tree-optimization/79734
26672 * tree-vect-generic.c (expand_vector_condition): Optimize
26673 AVX512 vector boolean VEC_COND_EXPRs into bitwise operations.
26674 Handle VEC_COND_EXPR where comparison has different inner width from
26675 type's inner width.
26677 2017-02-28 Sandra Loosemore <sandra@codesourcery.com>
26679 * doc/invoke.texi (ARC Options): Copy-edit to fix punctuation,
26680 markup, and similar issues. Remove @opindex entries for things
26681 that aren't options. Add missing -mmpy-option entries.
26683 2017-02-28 Jakub Jelinek <jakub@redhat.com>
26685 PR tree-optimization/79737
26686 * gimple-ssa-store-merging.c (encode_tree_to_bitpos): If bitlen is
26687 a multiple of BITS_PER_UNIT and !BYTES_BIG_ENDIAN, clear
26688 tmpbuf[byte_size - 1]. Call natice_encode_expr with byte_size - 1
26689 instead of byte_size. Formatting fix.
26690 (shift_bytes_in_array_right): Formatting fix.
26692 2017-02-28 Eric Botcazou <ebotcazou@adacore.com>
26695 * config/sparc/sparc.c (sparc_frame_pointer_required): Add missing
26696 condition on optimize for the leaf function test.
26698 2017-02-28 Martin Liska <mliska@suse.cz>
26701 * read-rtl-function.c (function_reader::handle_unknown_directive):
26702 Bail out when one uses -flto.
26704 2017-02-28 Martin Liska <mliska@suse.cz>
26706 * common.opt: Replace space with tabular for options of <number>
26708 * config/i386/i386.opt: Show <number> value for
26709 -mlarge-data-threshold.
26710 * opts.c (print_filtered_help): Do not display number in hexadecimal
26713 2017-02-28 Martin Liska <mliska@suse.cz>
26715 * common.opt: Fix --help=option -Q for options which are of
26718 2017-02-28 Uros Bizjak <ubizjak@gmail.com>
26720 * config/i386/i386.c (print_reg): Error out for values
26721 of 8-bit size in invalid integer register.
26723 2017-02-28 Martin Sebor <msebor@redhat.com>
26725 PR tree-optimization/79691
26726 * passes.def (pass_all_optimizations_g): Enable pass_sprintf_length.
26728 2017-02-28 Jakub Jelinek <jakub@redhat.com>
26731 * config/i386/i386.c (ix86_print_operand) <case 'R'>: Replace
26732 gcc_unreachable with output_operand_lossage.
26734 2017-02-28 Richard Biener <rguenther@suse.de>
26736 PR tree-optimization/79740
26737 * tree-ssa-sccvn.c (vn_nary_op_insert_into): Allow redundant
26739 (visit_nary_op): Insert the nary into the hashtable if we
26740 pattern-matched sth.
26741 * tree-ssa-pre.c (eliminate_insert): Robustify.
26743 2017-02-28 Richard Biener <rguenther@suse.de>
26745 PR middle-end/79731
26746 * fold-const.c (decode_field_reference): Reject out-of-bound
26749 2017-02-28 Jakub Jelinek <jakub@redhat.com>
26751 * config/i386/i386.c: Include intl.h.
26752 (ix86_option_override_internal): Use cond ? G_("...") : G_("...")
26753 instead of just cond ? "..." : "...".
26754 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims): Likewise.
26755 * coverage.c (read_counts_file): Likewise.
26756 * omp-offload.c: Include intl.h.
26757 (oacc_loop_fixed_partitions): Use cond ? G_("...") : G_("...") instead
26758 of just cond ? "..." : "...".
26759 * gcov.c (read_count_file): Use cond ? N_("...") : N_("...") instead
26760 of just cond ? "..." : "...".
26762 2017-02-28 Richard Earnshaw <rearnsha@arm.com>
26765 * config/arm/parsecpu.awk (gen_data): Set tuning target to 'tune for'
26767 * config/arm/arm-cpus.in (cortex-m0plus.small-multiply): Correct
26768 'tune for' CPU name.
26769 * config/arm/arm-cpu-data.h: Regenerated.
26771 2017-02-28 Richard Biener <rguenther@suse.de>
26773 PR tree-optimization/79732
26774 * tree-inline.c (expand_call_inline): Do not shadow var.
26776 2017-02-28 Richard Biener <rguenther@suse.de>
26778 PR tree-optimization/79723
26779 * tree-vect-stmts.c (get_vectype_for_scalar_type_and_size): Preserve
26780 address-space properly.
26782 2017-02-28 Thomas Schwinge <thomas@codesourcery.com>
26784 * doc/optinfo.texi (Optimization groups): Fix option used for
26786 * doc/invoke.texi (-fopt-info): Document "omp".
26787 * dumpfile.h: Sort OPTGROUP_OMP before OPTGROUP_VEC.
26788 (OPTGROUP_ALL): Add OPTGROUP_OMP.
26789 * hsa-gen.c (pass_data_gen_hsail): Use OPTGROUP_OMP.
26790 * ipa-hsa.c (pass_data_ipa_hsa): Likewise.
26791 * omp-simd-clone.c (pass_data_omp_simd_clone): Likewise.
26793 * dumpfile.h (OPTGROUP_OPENMP): Rename to OPTGROUP_OMP. Adjust
26795 * dumpfile.c (optgroup_options): Instead of "openmp", associate
26796 OPTGROUP_OMP with "omp".
26798 2017-02-27 Pat Haugen <pthaugen@us.ibm.com>
26801 * config/rs6000/rs6000-c.c (struct altivec_builtin_types): Use VSRAD
26802 for arithmetic shift of unsigned V2DI.
26804 2017-02-27 Claudiu Zissulescu <claziss@synopsys.com>
26806 * config.gcc (arc*-): Clean up, use arc/big.h, arc/elf.h, and
26807 arc/linux.h headers.
26808 * config/arc/arc.h (TARGET_OS_CPP_BUILTINS): Remove.
26809 (LINK_SPEC): Likewise.
26810 (ARC_TLS_EXTRA_START_SPEC): Likewise.
26811 (EXTRA_SPECS): Likewise.
26812 (STARTFILE_SPEC): Likewise.
26813 (ENDFILE_SPEC): Likewise.
26814 (LIB_SPEC): Likewise.
26815 (TARGET_SDATA_DEFAULT): Likewise.
26816 (TARGET_MMEDIUM_CALLS_DEFAULT): Likewise.
26817 (MULTILIB_DEFAULTS): Likewise.
26818 (DWARF2_UNWIND_INFO): Likewise.
26819 * config/arc/big.h: New file.
26820 * config/arc/elf.h: Likewise.
26821 * config/arc/linux.h: Likewise.
26822 * config/arc/t-uClibc: Remove.
26824 2017-02-27 Bin Cheng <bin.cheng@arm.com>
26826 PR tree-optimization/77536
26827 * tree-ssa-loop-manip.c (niter_for_unrolled_loop): New function.
26828 (tree_transform_and_unroll_loop): Use above function to compute the
26829 estimated niter of unrolled loop and use it when scaling profile.
26830 Also use count info rather than frequency if it's non-zero.
26831 * tree-ssa-loop-manip.h niter_for_unrolled_loop(): New declaration.
26832 * tree-vect-loop.c (scale_profile_for_vect_loop): New function.
26833 (vect_transform_loop): Call above function.
26835 2017-02-27 Richard Biener <rguenther@suse.de>
26837 PR tree-optimization/45397
26838 * tree-ssa-pre.c (eliminate_insert): Handle BIT_AND_EXPR.
26839 * tree-ssa-sccvn.c (valueized_wider_op): New helper.
26840 (visit_nary_op): Add pattern matching for CSEing sign-changed
26841 or truncated operations with wider ones.
26843 2017-02-27 Richard Biener <rguenther@suse.de>
26845 PR tree-optimization/79690
26846 * tree-vect-stmts.c (vectorizable_store): Use vector type
26847 built from the DR with address-space.
26849 2017-02-26 Gerald Pfeifer <gerald@pfeifer.com>
26851 * doc/invoke.texi (Optimize Options): Refine the description
26852 of asan-use-after-return.
26854 2017-02-25 Alan Modra <amodra@gmail.com>
26856 PR rtl-optimization/79584
26857 * lra-constraints.c (base_to_reg): Reload ad->base, the entire
26858 base, not ad->base_term, the reg within base. Remove assertion
26859 that ad->base == ad->base_term. Replace gen_int_mode using
26860 bogus mode with const0_rtx.
26862 2017-02-25 Jakub Jelinek <jakub@redhat.com>
26864 PR middle-end/79396
26865 * tree-eh.c (operation_could_trap_p, stmt_could_throw_1_p): Handle
26866 FMA_EXPR like tcc_binary or tcc_unary.
26868 * tree-ssa-loop-niter.c (number_of_iterations_exit): Simplify warning.
26871 * dwarf2out.c (struct dw_loc_list_struct): Add noted_variable_value
26873 (size_of_loc_descr): Handle DW_OP_GNU_variable_value.
26874 (output_loc_operands): Handle DW_OP_call_ref and
26875 DW_OP_GNU_variable_value.
26876 (struct variable_value_struct): New type.
26877 (struct variable_value_hasher): Likewise.
26878 (variable_value_hash): New variable.
26879 (string_types): Remove.
26880 (copy_loc_descr): New function.
26881 (add_loc_descr_to_each): Clarify comment. Use copy_loc_descr.
26882 (prepend_loc_descr_to_each): New function.
26883 (add_loc_list): Fix comment typo. Use prepend_loc_descr_to_each
26884 instead of add_loc_descr_to_each if the first argument is single
26885 location list and the second has multiple.
26886 (resolve_args_picking_1): Handle DW_OP_GNU_variable_value.
26887 (loc_list_from_tree_1): For early_dwarf, emit DW_OP_GNU_variable_value
26888 when looking for variable value which doesn't have other location info.
26889 (loc_list_from_tree): Formatting fix.
26890 (gen_array_type_die): Simplify DW_AT_string_length handling.
26891 (adjust_string_types): Remove.
26892 (gen_subprogram_die): Don't call adjust_string_types nor test/set
26893 string_types. Call resolve_variable_values.
26894 (prune_unused_types_walk_loc_descr): Handle DW_OP_GNU_variable_value.
26895 (resolve_addr_in_expr): Likewise. Add A argument.
26896 (copy_deref_exprloc): Remove deref argument. Adjust for the
26897 original expression being DW_OP_GNU_variable_value with optionally
26898 DW_OP_stack_value after it instead of DW_OP_call4 with DW_OP_deref
26899 optionally after it.
26900 (optimize_string_length): Rework for DW_OP_GNU_variable_value.
26901 (resolve_addr): Adjust optimize_string_length and resolve_addr_in_expr
26902 callers. Set remove_AT_byte_size if removing DW_AT_string_length.
26903 (variable_value_hasher::hash, variable_value_hasher::equal): New
26905 (resolve_variable_value_in_expr, resolve_variable_value,
26906 resolve_variable_values, note_variable_value_in_expr,
26907 note_variable_value): New functions.
26908 (dwarf2out_early_finish): Call note_variable_value on all toplevel
26911 2017-02-24 Jakub Jelinek <jakub@redhat.com>
26914 * opts.h (handle_generated_option): Add GENERATED_P argument.
26915 * opts-common.c (handle_option): Adjust function comment.
26916 (handle_generated_option): Add GENERATED_P argument, pass it to
26918 (control_warning_option): Pass false to handle_generated_option
26920 * opts.c (maybe_default_option): Pass true to handle_generated_option
26922 * optc-gen.awk: Likewise.
26924 2017-02-24 Segher Boessenkool <segher@kernel.crashing.org>
26926 * config/sh/sh.md (tstsi_t): If operands[0] is a SUBREG instead of
26927 a REG, look at the REG it is a SUBREG of.
26928 (splitter for cmpeqsi_t): Ditto.
26930 2017-02-24 Segher Boessenkool <segher@kernel.crashing.org>
26932 * config/pa/pa.c (pa_combine_instructions): Do not share RTL. Make
26933 the special USEs with the pattern of the insn, not the insn itself.
26935 2017-02-24 Matthew Fortune <matthew.fortune@imgtec.com>
26938 * doc/invoke.texi: Document -mload-store-pairs.
26940 2017-02-24 Segher Boessenkool <segher@kernel.crashing.org>
26941 Sandra Loosemore <sandra@codesourcery.com>
26943 * config/nios2/nios2.c (nios2_simple_const_p): Returns false if the
26944 argument isn't a CONST_INT.
26945 (nios2_alternate_compare_const): Assert op is a CONST_INT.
26946 (nios2_valid_compare_const_p): Assert op is a CONST_INT.
26947 (nios2_validate_compare): Bypass alternate compare logic if *op2
26948 is not a CONST_INT.
26949 (ldstwm_operation_p): Return false if first_base is not a REG or
26950 if first_offset is not a CONST_INT.
26952 2017-02-24 Segher Boessenkool <segher@kernel.crashing.org>
26954 * config/cris/cris.md: Use correct operand in a define_peephole2.
26956 2017-02-24 Segher Boessenkool <segher@kernel.crashing.org>
26958 * config/c6x/c6x.c (predicate_insn): Do not incorrectly share RTL.
26960 2017-02-24 Segher Boessenkool <segher@kernel.crashing.org>
26962 * config/arc/arc.c (arc_ccfsm_advance): Only take the PATTERN of
26963 this_insn if it is an INSN or JUMP_INSN.
26964 (force_offsettable): Look at base, not at addr.
26965 * config/arc/predicates.md (brcc_nolimm_operator): Don't call INTVAL
26966 on things that aren't necessarily CONST_INTs.
26968 2017-02-24 Uros Bizjak <ubizjak@gmail.com>
26970 * doc/invoke.texi (x86 Options, -mfpmath=sse): Mention that
26971 -mfpmath=sse is the default also for x86-32 targets with SSE2
26972 instruction set when @option{-ffast-math} is enabled
26974 2017-02-24 Jeff Law <law@redhat.com>
26976 PR rtl-optimizatoin/79286
26977 * ira.c (update_equiv_regs): Drop may_trap_p exception to
26980 2017-02-24 Richard Biener <rguenther@suse.de>
26982 PR tree-optimization/79389
26983 * gimple-ssa-split-paths.c (is_feasible_trace): Properly skip
26986 2017-02-24 Aldy Hernandez <aldyh@redhat.com>
26988 * tree-ssa-loop-niter.c (number_of_iterations_exit): Update
26989 function comment to reflect reality.
26990 (loop_exits_before_overflow): Fix typo in function description.
26992 2017-02-24 Richard Biener <rguenther@suse.de>
26994 PR tree-optimization/79389
26995 * gimple-ssa-split-paths.c (is_feasible_trace): Verify more
26996 properly that a threading opportunity exists. Detect conditional
26997 copy/constant propagation opportunities.
26999 2017-02-23 Eric Botcazou <ebotcazou@adacore.com>
27001 * config/visium/visium.md (type): Add trap.
27002 (b): New mode attribute.
27003 (*btst): Rename into...
27004 (*btst<mode>): ...this and adjust.
27005 (*cbranchsi4_btst_insn): Rename into...
27006 (*cbranch<mode>4_btst_insn): ...this and adjust.
27007 (trap): New define_insn.
27009 2017-02-23 Jakub Jelinek <jakub@redhat.com>
27011 PR tree-optimization/79389
27012 * ifcvt.c (struct noce_if_info): Add rev_cond field.
27013 (noce_reversed_cond_code): New function.
27014 (noce_emit_store_flag): Use rev_cond if non-NULL instead of
27015 reversed_comparison_code. Formatting fix.
27016 (noce_try_store_flag): Test rev_cond != NULL in addition to
27017 reversed_comparison_code.
27018 (noce_try_store_flag_constants): Likewise.
27019 (noce_try_store_flag_mask): Likewise.
27020 (noce_try_addcc): Use rev_cond if non-NULL instead of
27021 reversed_comparison_code.
27022 (noce_try_cmove_arith): Likewise. Formatting fixes.
27023 (noce_try_minmax, noce_try_abs): Clear rev_cond.
27024 (noce_find_if_block): Initialize rev_cond.
27025 (find_cond_trap): Call noce_get_condition with then_bb == trap_bb
27026 instead of false as last argument never attempt to reverse it
27029 2017-02-23 Bin Cheng <bin.cheng@arm.com>
27031 PR tree-optimization/79663
27032 * tree-predcom.c (combine_chains): Process refs in reverse order
27033 only for ZERO length chains, and add explaining comment.
27035 2017-02-23 Jeff Law <law@redhat.com>
27037 PR tree-optimization/79578
27038 * tree-ssa-dse.c (clear_bytes_written_by): Use OEP_ADDRESS_OF
27039 in call to operand_equal_p.
27041 2017-01-23 Dominique d'Humieres <dominiq@lps.ens.fr>
27044 * config/i386/cpuid.h: Fix another undefined behavior.
27046 2017-02-23 Richard Biener <rguenther@suse.de>
27048 PR tree-optimization/79683
27049 * tree-vect-stmts.c (vect_analyze_stmt): Do not overwrite
27050 vector types for data-refs.
27052 2017-02-23 Martin Liska <mliska@suse.cz>
27054 * params.def (PARAM_MIN_NONDEBUG_INSN_UID): Change default to 0.
27056 2017-02-23 Jakub Jelinek <jakub@redhat.com>
27058 PR middle-end/79665
27059 * internal-fn.c (get_range_pos_neg): Moved to ...
27060 * tree.c (get_range_pos_neg): ... here. No longer static.
27061 * tree.h (get_range_pos_neg): New prototype.
27062 * expr.c (expand_expr_real_2) <case TRUNC_DIV_EXPR>: If both arguments
27063 are known to be in between 0 and signed maximum inclusive, try to
27064 expand both unsigned and signed divmod and use the cheaper one from
27067 2017-02-22 Jeff Law <law@redhat.com>
27069 PR tree-optimization/79578
27070 * tree-ssa-dse.c (clear_bytes_written_by): Use operand_equal_p
27071 to compare base operands.
27073 2017-02-22 Segher Boessenkool <segher@kernel.crashing.org>
27076 * config/rs6000/rs6000.md (*fsel<SFDF:mode><SFDF2:mode>4): Use
27077 gpc_reg_operand instead of fpr_reg_operand.
27079 2017-02-22 Sameera Deshpande <sameera.deshpande@imgtec.com>
27081 * config/mips/mips.c (mips_return_in_memory): Force FP
27082 vector types to be returned in memory for o32 ABI.
27084 2017-02-22 Jakub Jelinek <jakub@redhat.com>
27086 * dwarf2out.c (gen_variable_die): For -gdwarf-5, use DW_TAG_variable
27087 instead of DW_TAG_member for static data member declarations and don't
27088 set no_linkage_name for static inline data members.
27089 (gen_member_die): For -gdwarf-5 don't change DW_TAG_variable
27092 2017-02-22 Martin Liska <mliska@suse.cz>
27094 * doc/invoke.texi: Replace inequality signs with square brackets
27097 2017-02-22 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
27099 PR tree-optimization/68644
27100 * gcc.dg/tree-ssa/ivopts-lt-2.c: Skip for powerpc*-*-*.
27102 2017-02-22 Matthew Fortune <matthew.fortune@imgtec.com>
27105 * lra-constraints.c (simplify_operand_subreg): Handle
27106 WORD_REGISTER_OPERATIONS targets.
27108 2017-02-22 Jakub Jelinek <jakub@redhat.com>
27111 * reg-stack.c (emit_swap_insn): Treat (float_extend:?F (mem:?F))
27112 and (const_double:?F) like (mem:?F) for the purpose of fxch %st(1)
27113 elimination by swapping fld*.
27115 2017-02-22 Richard Biener <rguenther@suse.de>
27117 PR tree-optimization/79673
27118 * tree-ssa-pre.c (compute_avail): Use wide_int_to_tree to
27119 convert the [TARGET_]MEM_REF offset INTEGER_CST, scrapping off
27120 irrelevant address-space qualifiers and avoiding a
27121 ADDR_SPACE_CONVERT_EXPR from fold_convert.
27123 2017-02-22 Richard Biener <rguenther@suse.de>
27125 PR tree-optimization/79666
27126 * tree-vrp.c (extract_range_from_binary_expr_1): Make sure
27127 to not symbolically negate if that may introduce undefined
27130 2017-02-22 Martin Liska <mliska@suse.cz>
27133 * data-streamer-in.c (streamer_read_gcov_count): Remove assert.
27134 * data-streamer-out.c (streamer_write_gcov_count_stream):
27136 * value-prof.c (stream_out_histogram_value): Make assert more
27137 precise based on type of counter.
27139 2017-02-21 Uros Bizjak <ubizjak@gmail.com>
27142 * config/i386/i386.md (standard_x87sse_constant_load splitter):
27143 Use nonimmediate_operand instead of memory_operand for operand 1.
27144 (float-extend standard_x87sse_constant_load splitter): Ditto.
27146 2017-02-21 Jeff Law <law@redhat.com>
27148 PR tree-optimization/79621
27149 * gimple-ssa-isolate-paths.c (find_implicit_erroneous_behavior): Ignore
27150 blocks with edges to themselves.
27152 2017-02-21 Jakub Jelinek <jakub@redhat.com>
27155 * tree-chkp-opt.c (chkp_optimize_string_function_calls): Use
27156 is_gimple_call instead of comparing gimple_code with GIMPLE_CALL.
27157 Use gimple_call_builtin_p.
27160 * sel-sched.c (moveup_expr_cached): Don't call sel_bb_head
27161 on temporarily removed DEBUG_INSNs.
27163 PR tree-optimization/79649
27164 * tree-loop-distribution.c (classify_partition): Give up on
27165 non-generic address space loads/stores.
27167 2017-02-21 Aldy Hernandez <aldyh@redhat.com>
27169 * doc/loop.texi (Loop manipulation): Remove nonexistent
27170 tree_ssa_loop_version from the documentation.
27171 * cfgloopmanip.c (loop_version): Document CONDITION_BB argument.
27173 2017-02-21 Jakub Jelinek <jakub@redhat.com>
27176 * config/i386/i386.c (ix86_expand_split_stack_prologue): Call
27177 make_reg_eh_region_note_nothrow_nononlocal on call_insn.
27178 * config/rs6000/rs6000.c: Include except.h.
27179 (rs6000_expand_split_stack_prologue): Call
27180 make_reg_eh_region_note_nothrow_nononlocal on the call insn.
27182 2017-02-21 Martin Jambor <mjambor@suse.cz>
27185 * ipa-prop.c (ipa_prop_write_jump_functions): Bail out if no edges
27186 have been analyzed.
27188 2017-02-21 Martin Jambor <mjambor@suse.cz>
27190 * common.opt (-fipa-cp-alignment): Mark as ignored and preserved
27191 for backward compatibility only.
27192 * doc/invoke.texi (Option Summary): Remove all references to
27193 -fipa-cp-alignment.
27195 2017-02-21 Matthew Fortune <matthew.fortune@imgtec.com>
27199 2017-02-20 Matthew Fortune <matthew.fortune@imgtec.com>
27201 * lra-constraints.c (curr_insn_transform): Handle
27202 WORD_REGISTER_OPERATIONS requirements when reloading SUBREGs.
27204 2017-02-21 Martin Liska <mliska@suse.cz>
27206 * config/i386/i386.opt: Replace -masm-dialect with -masm.
27208 2017-02-21 Thomas Schwinge <thomas@codesourcery.com>
27210 PR translation/79638
27211 * config/nvptx/nvptx.c (ENTRY_TEMPLATE): Single out "%ntid.y".
27213 2017-02-21 Eric Botcazou <ebotcazou@adacore.com>
27216 * config/arm/arm.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Define.
27217 (arm_function_ok_for_sibcall): Return false for an indirect call by
27218 descriptor if all the argument registers are used.
27219 (arm_relayout_function): Use FUNCTION_ALIGNMENT macro to adjust the
27220 alignment of the function.
27222 2017-02-21 Jakub Jelinek <jakub@redhat.com>
27224 PR tree-optimization/61441
27225 * simplify-rtx.c (simplify_const_unary_operation): For
27226 -fsignaling-nans and sNaN operand, return NULL_RTX rather than
27227 the sNaN unmodified.
27229 2017-02-20 Bernd Edlinger <bernd.edlinger@hotmail.de>
27231 * Makefile.in (BUILD_SYSTEM_HEADER_DIR): New make variabe.
27232 (LIMITS_H_TEST, if_multiarch, stmp-fixinc): Use BUILD_SYSTEM_HEADER_DIR
27233 instead of SYSTEM_HEADER_DIR.
27235 2017-02-20 Gerald Pfeifer <gerald@pfeifer.com>
27236 Martin Liška <mliska@suse.cz>
27238 * doc/invoke.texi (use-after-scope-direct-emission-threshold):
27239 Fix typos and grammar, use active voice, and clarify.
27241 2017-02-20 Marek Polacek <polacek@redhat.com>
27243 PR middle-end/79537
27244 * gimplify.c (gimplify_expr): Handle unused *&&L;.
27247 * ubsan.c (ubsan_type_descriptor): Check if TYPE_MAX_VALUE is null.
27249 2017-02-20 Jakub Jelinek <jakub@redhat.com>
27252 * config/i386/i386.c (ix86_expand_builtin): Handle
27253 OPTION_MASK_ISA_AVX512VL and OPTION_MASK_ISA_64BIT in
27254 ix86_builtins_isa[fcode].isa as a requirement of those
27255 flags and any other flag in the bitmask.
27256 (ix86_init_mmx_sse_builtins): Use 0 instead of
27257 ~OPTION_MASK_ISA_64BIT as mask.
27258 * config/i386/i386-builtin.def (__builtin_ia32_rdtsc,
27259 __builtin_ia32_rdtscp, __builtin_ia32_pause, __builtin_ia32_bsrsi,
27260 __builtin_ia32_rdpmc, __builtin_ia32_rolqi, __builtin_ia32_rolhi,
27261 __builtin_ia32_rorqi, __builtin_ia32_rorhi): Likewise.
27263 2017-02-20 Matthew Fortune <matthew.fortune@imgtec.com>
27266 * lra-constraints.c (split_reg): Check requested split mode
27267 is supported by the register.
27269 2017-02-20 Matthew Fortune <matthew.fortune@imgtec.com>
27271 * lra-constraints.c (simplify_operand_subreg): Remove early
27274 2017-02-20 Matthew Fortune <matthew.fortune@imgtec.com>
27277 * lra-constraints.c (curr_insn_transform): Tighten condition
27278 for converting SUBREG reloads from OP_OUT to OP_INOUT.
27280 2017-02-20 Matthew Fortune <matthew.fortune@imgtec.com>
27283 * lra-constraints.c (curr_insn_transform): Handle
27284 WORD_REGISTER_OPERATIONS requirements when reloading SUBREGs.
27286 2017-02-19 Uros Bizjak <ubizjak@gmail.com>
27289 2016-05-30 Uros Bizjak <ubizjak@gmail.com>
27291 * config/i386/sync.md (mfence_nosse): Use "lock orl $0, -4(%esp)".
27293 2017-02-19 Jonathan Wakely <jwakely@redhat.com>
27296 * doc/invoke.texi (C++ Dialect Options) [-Wliteral-suffix]: Update
27299 2017-02-19 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
27301 * gimple-pretty-print.c (dump_ternary_rhs): Adjust gimple dump format
27304 2017-02-18 Jakub Jelinek <jakub@redhat.com>
27306 * final.c (last_columnnum, override_columnnum): New variables.
27307 (final_start_function): Set last_columnnum, pass it to begin_prologue
27308 hook and pass 0 to dwarf2out_begin_prologue.
27309 (final_scan_insn): Update override_columnnum. Pass last_columnnum
27310 to source_line debug hook.
27311 (notice_source_line): Compute last_columnnum and for debug_column_info
27312 return true on column changes.
27313 * debug.h (struct gcc_debug_hooks): Add column argument to
27314 source_line and begin_prologue hooks.
27315 (debug_nothing_int_charstar_int_bool): Remove prototype.
27316 (debug_nothing_int_int_charstar,
27317 debug_nothing_int_int_charstar_int_bool): New prototypes.
27318 (dwarf2out_begin_prologue): Add column argument.
27319 * debug.c (do_nothing_debug_hooks): Adjust source_line and
27320 begin_prologue hooks.
27321 (debug_nothing_int_charstar_int_bool): Remove.
27322 (debug_nothing_int_int_charstar,
27323 debug_nothing_int_int_charstar_int_bool): New functions.
27324 * dwarf2out.c (dwarf2out_begin_prologue): Add column argument, pass it
27325 through to dwarf2out_source_line.
27326 (dwarf2_lineno_debug_hooks): Adjust begin_prologue hook.
27327 (dwarf2out_source_line): Add column argument, emit it if requested.
27328 * sdbout.c (sdbout_source_line, sdbout_begin_prologue): Add column
27330 * xcoffout.h (xcoffout_begin_prologue, xcoffout_source_line): Likewise.
27331 * xcoffout.c (xcoffout_begin_prologue, xcoffout_source_line): Likewise.
27332 * vmsdbgout.c (vmsdbgout_begin_prologue): Add column argument, pass it
27333 through to dwarf2out_begin_prologue.
27334 (vmsdbgout_source_line): Add column argument, pass it through to
27335 dwarf2out_source_line.
27336 * dbxout.c (dbxout_begin_prologue): Add column argument, adjust
27337 dbxout_source_line caller.
27338 (dbxout_source_line): Add column argument.
27340 * common.opt (gno-column-info, gcolumn-info): New options.
27341 * dwarf2out.c (dwarf2_lineno_debug_hooks): Formatting fix.
27342 (check_die): Also test for multiple DW_AT_decl_column attributes.
27343 (add_src_coords_attributes, dwarf2out_imported_module_or_decl_1): Add
27344 DW_AT_decl_column if requested.
27345 (gen_subprogram_die): Compare and/or add also DW_AT_decl_column
27347 (gen_variable_die): Likewise.
27348 (add_call_src_coords_attributes): Add DW_AT_call_column if requested.
27349 * doc/invoke.texi (-gcolumn-info, -gno-column-info): Document.
27352 * config/i386/i386.opt (m3dnowa): Replace Undocumented with Report.
27353 * common/config/i386/i386-common.c (OPTION_MASK_ISA_3DNOW_A_SET): Define.
27354 (ix86_handle_option): Handle OPT_m3dnowa.
27355 * doc/invoke.texi (-m3dnowa): Document.
27356 * doc/extend.texi (__builtin_ia32_pmulhuw, __builtin_ia32_pf2iw): Use
27357 -m3dnowa instead of -m3dnow -march=athlon.
27360 * config/i386/i386.c (ix86_print_operand): Use output_operand_lossage
27361 instead of gcc_assert for K, r and R code checks. Formatting fixes.
27363 2017-02-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
27366 * config/rs6000/rs6000.c (rs6000_expand_ternop_builtin): Add
27367 support for CODE_FOR_vsx_xxpermdi_v2d[fi]_be.
27368 * config/rs6000/rs6000.md (reload_gpr_from_vsx<mode>): Call
27369 generator for vsx_xxpermdi_<mode>_be.
27370 * config/rs6000/vsx.md (vsx_xxpermdi_<mode>): Remove logic to
27371 force big-endian semantics.
27372 (vsx_xxpermdi_<mode>_be): New define_expand with same
27373 implementation as previous version of vsx_xxpermdi_<mode>.
27375 2017-02-17 Jakub Jelinek <jakub@redhat.com>
27377 PR tree-optimization/79327
27378 * gimple-ssa-sprintf.c (format_integer): Remove likely_adjust
27379 variable, its initialization and use.
27381 2017-02-17 Julia Koval <julia.koval@intel.com>
27383 * common/config/i386/i386-common.c (OPTION_MASK_ISA_RDPID_SET): New.
27384 (OPTION_MASK_ISA_PKU_UNSET): New.
27385 (ix86_handle_option): Handle -mrdpid.
27386 * config/i386/cpuid.h (bit_RDPID): New.
27387 * config/i386/driver-i386.c (host_detect_local_cpu):
27388 Detect RDPID feature.
27389 * config/i386/i386-builtin.def (__builtin_ia32_rdpid): New.
27390 * config/i386/i386-c.c (ix86_target_macros_internal):
27392 * config/i386/i386.c (ix86_target_string): Add -mrdpid to isa2_opts.
27393 (ix86_valid_target_attribute_inner_p): Add "rdpid".
27394 (ix86_expand_builtin): Handle IX86_BUILTIN_RDPID.
27395 * config/i386/i386.h (TARGET_RDPID, TARGET_RDPID_P): New.
27396 * config/i386/i386.md (define_insn "rdpid"): New.
27397 * config/i386/i386.opt Add -mrdpid.
27398 * config/i386/immintrin.h (_rdpid_u32): New.
27400 2017-02-17 Vladimir Makarov <vmakarov@redhat.com>
27402 PR rtl-optimization/79541
27403 * lra-constraints.c (curr_insn_transform): Remove wrong asm insn
27404 instead of transforming it into USE.
27406 2017-02-17 Segher Boessenkool <segher@kernel.crashing.org>
27408 * config/rs6000/rs6000.md (extendsfdf2): Remove default arguments.
27409 If HONOR_SNANS (SFmode) force the input to a register.
27410 (*extendsfdf2_fpr): Add !HONOR_SNANS (SFmode) condition.
27411 (*extendsfdf2_snan): New pattern, used when using SNaNs; it generates
27412 an frsp or similar insn.
27414 2017-02-17 Martin Liska <mliska@suse.cz>
27416 PR rtl-optimization/79577
27417 * params.def (selsched-max-sched-times): Increase minimum to 1.
27419 2017-02-17 Martin Liska <mliska@suse.cz>
27421 PR rtl-optimization/79574
27422 * gcse.c (want_to_gcse_p): Prevent integer overflow.
27424 2017-02-17 Martin Liska <mliska@suse.cz>
27426 PR tree-optimization/79529
27427 * tree-ssa-loop-unswitch.c (is_maybe_undefined): Use
27428 ssa_defined_default_def_p to handle cases which are implicitly
27430 * tree-ssa.c (ssa_defined_default_def_p): New function.
27431 (ssa_undefined_value_p): Use ssa_defined_default_def_p to handle cases
27432 which are implicitly defined.
27433 * tree-ssa.h (ssa_defined_default_def_p): Declare.
27435 2017-02-17 Richard Biener <rguenther@suse.de>
27437 PR middle-end/79576
27438 * params.def (max-ssa-name-query-depth): Limit to 10.
27440 2017-02-17 Richard Biener <rguenther@suse.de>
27442 PR tree-optimization/79552
27443 * tree-ssa-structalias.c (visit_loadstore): Properly verify
27446 2017-02-17 Richard Biener <rguenther@suse.de>
27449 * genmatch.c (output_line_directive): Handle DIR_SEPARATOR_2.
27451 2017-02-17 Marek Polacek <polacek@redhat.com>
27453 PR middle-end/79536
27454 * fold-const.c (fold_negate_expr_1): Renamed from fold_negate_expr.
27455 (fold_negate_expr): New wrapper.
27457 2017-02-16 Sandra Loosemore <sandra@codesourcery.com>
27459 * doc/invoke.texi (C++ Dialect Options) [-Wno-non-template-friend]:
27460 Correct terminology and de-emphasize pre-standard behavior.
27462 2017-02-16 Alan Modra <amodra@gmail.com>
27464 PR rtl-optimization/79286
27465 * ira.c (def_dominates_uses): New function.
27466 (update_equiv_regs): Don't create an equivalence for insns that
27467 may trap where the register def does not dominate the use.
27469 2017-02-16 Vladimir Makarov <vmakarov@redhat.com>
27471 PR rtl-optimization/78127
27472 * lra.c (lra): Call lra_eliminate before finish the loop after
27475 2017-02-16 Richard Biener <rguenther@suse.de>
27477 * graphite.h: Do not include isl/isl_val_gmp.h, instead include
27479 * graphite-isl-ast-to-gimple.c (gmp_cst_to_tree): Remove.
27480 (gcc_expression_from_isl_expr_int): Use generic isl_val interface.
27481 * graphite-sese-to-poly.c: Do not include isl/isl_val_gmp.h.
27482 (isl_val_int_from_wi): New function.
27483 (extract_affine_gmp): Rename to ...
27484 (extract_affine_wi): ... this, take a widest_int.
27485 (extract_affine_int): Just wrap extract_affine_wi.
27486 (add_param_constraints): Use isl_val_int_from_wi.
27487 (add_loop_constraints): Likewise, and extract_affine_wi.
27489 2017-02-15 Jeff Law <law@redhat.com>
27491 PR middle-end/79521
27492 * ira-costs.c (scan_one_insn): Check have_regs_of_mode before calling
27493 ira_init_register_move_cost_if_necessary.
27495 2017-02-15 Martin Sebor <msebor@redhat.com>
27497 PR middle-end/32003
27498 * doc/invoke.texi (-fdump-final-insns): Replace option accidentally
27499 removed in a prior commit.
27501 2017-02-15 Bin Cheng <bin.cheng@arm.com>
27503 PR tree-optimization/79347
27504 * tree-vect-loop-manip.c (vect_do_peeling): Maintain profile
27505 counters during peeling.
27507 2017-02-15 Thomas Schwinge <thomas@codesourcery.com>
27509 * Makefile.in (site.exp): Remove "set ISLVER".
27511 2017-02-15 Jakub Jelinek <jakub@redhat.com>
27514 * real.c (real_from_integer): Call real_convert even for decimal.
27516 2017-02-15 Dominik Vogt <vogt@linux.vnet.ibm.com>
27519 * config/s390/s390.c: define TARGET_CUSTOM_FUNCTION_DESCRIPTORS.
27521 2017-02-14 Andrew Pinski <apinski@cavium.com>
27523 * config/aarch64/aarch64-cores.def (thunderx2t99): Move to under 'C"
27524 cores and change the partno/implementer to be correct.
27525 (thunderx2t99p1): New core which replaces thunderx2t99 and still has
27526 the 'B" as the implementer.
27527 * config/aarch64/aarch64-tune.md: Regenerate.
27529 2017-02-14 Carl Love <cel@us.ibm.com>
27531 * config/rs6000/rs6000.c: Add case statement entry to make the
27532 xvcvuxdsp built-in argument unsigned.
27533 * config/rs6000/vsx.md: Fix the source and return operand types so they
27534 match the instruction definitions from the ISA document. Fix typo
27535 in the instruction generation for the (define_insn "vsx_xvcvuxdsp"
27538 2017-02-14 Vladimir Makarov <vmakarov@redhat.com>
27541 * lra-int.h (struct lra_operand_data, struct lra_insn_reg): Add
27542 member early_clobber_alts.
27543 * lra-lives.c (reg_early_clobber_p): New.
27544 (process_bb_lives): Use it.
27545 * lra.c (new_insn_reg): New arg early_clobber_alts. Use it.
27546 (debug_operand_data): Initialize early_clobber_alts.
27547 (setup_operand_alternative): Set up early_clobber_alts.
27548 (collect_non_operand_hard_regs): Ditto. Pass early clobber
27549 alternatives to new_insn_reg.
27550 (add_regs_to_insn_regno_info): Add arg early_clobber_alts. Use
27552 (lra_update_insn_regno_info): Pass the new arg.
27554 2017-02-14 Jakub Jelinek <jakub@redhat.com>
27556 PR middle-end/79505
27557 * omp-offload.c (free_oacc_loop): Release loop->ifns vector.
27558 (new_oacc_loop_raw): Don't clear already cleared fields.
27561 * config/i386/avx512pfintrin.h (_mm512_prefetch_i32gather_pd,
27562 _mm512_prefetch_i32gather_ps, _mm512_prefetch_i64gather_pd,
27563 _mm512_prefetch_i64gather_ps): New inline functions and macros.
27565 2017-02-14 Uros Bizjak <ubizjak@gmail.com>
27568 * config/i386/i386.md (*movxf_internal): Add (o,rC) alternative.
27570 2017-02-14 H.J. Lu <hongjiu.lu@intel.com>
27573 * config/i386/i386.c (timode_scalar_chain::convert_insn): Insert
27574 the extra instruction to the right place to store 128-bit constant
27577 2017-02-14 Martin Sebor <msebor@redhat.com>
27579 PR middle-end/79448
27580 * gimple-ssa-sprintf.c (format_directive): Avoid issuing INT_MAX
27581 warning for strings of unknown length.
27583 2017-02-13 Segher Boessenkool <segher@kernel.crashing.org>
27585 * config.gcc (supported_defaults) [powerpc*-*-*]: Update.
27587 2017-02-14 Jeff Law <law@redhat.com>
27590 * ira-costs.c (scan_one_insn): Initialize register move costs
27591 for pseudos seen in USE/CLOBBER insns.
27593 PR tree-optimization/79095
27594 * tree-vrp.c (extract_range_from_binary_expr_1): For EXACT_DIV_EXPR,
27595 if the numerator has the range ~[0,0] make the resultant range ~[0,0].
27596 (extract_range_from_binary_expr): For MINUS_EXPR with no derived range,
27597 if the operands are known to be not equal, then the resulting range
27599 (intersect_ranges): If the new range is ~[0,0] and the old range is
27600 wide, then prefer ~[0,0].
27601 * tree-vrp.c (overflow_comparison_p_1): New function.
27602 (overflow_comparison_p): New function.
27603 * tree-vrp.c (register_edge_assert_for_2): Register additional asserts
27604 if NAME is used in an overflow test.
27605 (vrp_evaluate_conditional_warnv_with_ops): If the ops represent an
27606 overflow check that can be expressed as an equality test, then adjust
27607 ops to be that equality test.
27609 2017-02-14 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
27611 * config/s390/s390-builtin-types.def: Remove flags argument.
27612 * config/s390/s390.c (s390_init_builtins): Likewise.
27614 2017-02-14 Martin Liska <mliska@suse.cz>
27616 * tree-ssa-loop-unswitch.c (hoist_guard): Release get_loop_body
27617 vector. Fix trailing white spaces.
27619 2017-02-14 James Greenhalgh <james.greenhalgh@arm.com>
27621 * config/aarch64/aarch64.c (aarch64_simd_container_mode): Handle
27624 2017-02-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27626 PR rtl-optimization/68664
27627 * config/arm/arm.c (arm_sched_can_speculate_insn):
27628 New function. Declare prototype.
27629 (TARGET_SCHED_CAN_SPECULATE_INSN): Define.
27631 2017-02-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27633 PR rtl-optimization/68664
27634 * config/aarch64/aarch64.c (aarch64_sched_can_speculate_insn):
27636 (TARGET_SCHED_CAN_SPECULATE_INSN): Define.
27638 2017-02-14 Amit Pawar <amit.pawar@amd.com>
27640 * config/i386/i386.c (znver1_cost): Fix the alignment for function and
27641 max skip bytes for function, loop and jump.
27643 2017-02-14 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
27645 * gimple-pretty-print.c (dump_unary_rhs): Adjust dump format for
27646 ABS_EXPR for gimple dump.
27648 2017-02-14 Jakub Jelinek <jakub@redhat.com>
27651 * config/sh/sh.c (expand_cbranchdi4): Don't clear operands[4].
27653 PR tree-optimization/79408
27654 * tree-vrp.c (simplify_div_or_mod_using_ranges): Handle also the
27655 case when on TRUNC_MOD_EXPR op0 is INTEGER_CST.
27656 (simplify_stmt_using_ranges): Call simplify_div_or_mod_using_ranges
27657 also if rhs1 is INTEGER_CST.
27659 2017-02-14 Richard Biener <rguenther@suse.de>
27661 PR middle-end/79432
27662 * tree-into-ssa.c (insert_phi_nodes): When the function can
27663 have abnormal edges rewrite SSA names with broken use-def
27664 dominance out of SSA and register them for PHI insertion.
27666 2017-02-13 Martin Sebor <msebor@redhat.com>
27668 PR middle-end/79496
27669 * gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call): Avoid
27670 clearing info.nowrite flag when snprintf size argument is a range.
27672 2017-02-13 Jakub Jelinek <jakub@redhat.com>
27674 * cprop.c (cprop_jump): Add missing space in string literal.
27675 * tree-ssa-structalias.c (rewrite_constraints): Likewise.
27676 (get_constraint_for_component_ref): Likewise.
27677 * df-core.c (df_worklist_dataflow_doublequeue): Likewise.
27678 * tree-outof-ssa.c (insert_partition_copy_on_edge): Likewise.
27679 * lra-constraints.c (process_alt_operands): Likewise.
27680 * ipa-inline.c (inline_small_functions): Likewise.
27681 * tree-ssa-sccvn.c (visit_reference_op_store): Likewise.
27682 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Likewise.
27683 * trans-mem.c (diagnose_tm_1_op): Likewise.
27684 * omp-grid.c (grid_find_single_omp_among_assignments): Likewise.
27685 (grid_parallel_clauses_gridifiable): Likewise.
27687 * config/nvptx/mkoffload.c (process): Add space in between
27690 * config/i386/i386.h (REG_CLASS_NAMES): Add , in between
27691 "MOD4_SSE_REGS" and "ALL_REGS".
27693 * spellcheck.c (test_data): Add , in between "foo" and "food".
27695 2017-02-13 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
27698 * config/rs6000/rs6000.c (expand_block_compare): Make sure runtime
27699 boundary crossing check and subsequent code generation agree.
27701 2017-02-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27703 * config/aarch64/aarch64.c (has_memory_op): Delete.
27704 (aarch64_madd_needs_nop): Use contains_mem_rtx_p instead of
27707 2017-02-13 Jakub Jelinek <jakub@redhat.com>
27709 PR rtl-optimization/79388
27710 PR rtl-optimization/79450
27711 * combine.c (distribute_notes): When removing TEM_INSN for which
27712 corresponding dest has last value recorded, invalidate that last
27715 2017-02-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27717 * config/arm/arm.c (arm_print_tune_info): Use ASM_COMMENT_START instead
27718 of explicit '@'. Add missing assembly comment marker on branch costs
27721 2017-02-13 Nathan Sidwell <nathan@acm.org>
27723 * gengtype-lex.l (<in_struct>): Add '/'.
27725 2017-02-13 Martin Liska <mliska@suse.cz>
27728 * calls.c (expand_call): Replace XALLOCAVEC with XCNEWVEC.
27730 2017-02-13 Richard Biener <rguenther@suse.de>
27732 * configure.ac (HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS):
27734 * configure: Re-generate.
27735 * config.in: Likewise.
27736 * graphite-dependences.c: Simplify as if
27737 HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS was defined.
27738 * graphite-isl-ast-to-gimple.c: Likewise.
27739 * graphite-optimize-isl.c: Likewise.
27740 * graphite-poly.c: Likewise.
27741 * graphite-sese-to-poly.c: Likewise.
27742 * graphite.h: Likewise.
27743 * toplev.c: Include isl/version.h and use isl_version () for
27744 printing the ISL version.
27745 * doc/install.texi: Update ISL requirement.
27747 2017-02-12 Gerald Pfeifer <gerald@pfeifer.com>
27749 * doc/standards.texi (Standards): Update reference to
27752 2017-02-12 Gerald Pfeifer <gerald@pfeifer.com>
27754 * doc/extend.texi (Named Address Spaces): sourceware.org now
27756 * doc/install.texi (Binaries): Ditto.
27759 2017-02-11 Sandra Loosemore <sandra@codesourcery.com>
27761 * doc/cpp.texi: Replace "stringify"/"stringification" with C
27762 standard terminology "stringize"/"stringizing" throughout.
27763 * doc/cppinternals.texi: Likewise.
27765 2017-02-11 Sandra Loosemore <sandra@codesourcery.com>
27767 * doc/extend.texi: Fix some spelling mistakes and typos.
27768 * doc/invoke.texi: Likewise.
27770 2017-02-11 Jan Hubicka <hubicka@ucw.cz>
27773 * params.def (inline-min-speedup) Change from 10 to 8.
27775 2017-02-11 Jakub Jelinek <jakub@redhat.com>
27777 * doc/invoke.texi (fopenmp): Bump OpenMP version from 4.0 to
27780 2017-02-11 Jan Hubicka <hubicka@ucw.cz>
27783 * ipa-inline-analysis.c (get_minimal_bb): New function.
27784 (record_modified): Use it.
27785 (remap_edge_change_prob): Handle also ancestor functions.
27787 2017-02-11 Gerald Pfeifer <gerald@pfeifer.com>
27789 * doc/contrib.texi (Contributors): Remove broken link into
27790 the Mauve CVS repository.
27792 2017-02-11 Jakub Jelinek <jakub@redhat.com>
27794 PR middle-end/79454
27795 * internal-fn.c (expand_vector_ubsan_overflow): Use piece-wise
27796 result computation whenever lhs doesn't have vector mode, not
27797 just when it has BLKmode.
27799 2017-02-10 Gerald Pfeifer <gerald@pfeifer.com>
27801 * doc/makefile.texi (profiledbootstrap): Refer to the
27802 installation instructions only in textual form.
27804 2017-02-10 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
27807 * config/rs6000/altivec.md (bcd<bcd_add_sub>): Fix constraints.
27809 2017-02-10 Gerald Pfeifer <gerald@pfeifer.com>
27811 * doc/install.texi (Specific): Use https for blackfin.uclinux.org.
27812 (Specific): Update mingw-w64 reference.
27814 (Specific): Remove broken link to Renesas RX processor.
27816 2017-02-10 Richard Biener <rguenther@suse.de>
27818 * toplev.c (process_options): Do not mention obsolete graphite
27819 options when printing sorry message about missing graphite support.
27820 Mention -floop-nest-optimize.
27822 2017-02-10 Christophe Lyon <christophe.lyon@linaro.org>
27824 * config/aarch64/arm_neon.h (vtst_p8): Rewrite without asm.
27825 (vtst_p16): Likewise.
27826 (vtstq_p8): Likewise.
27827 (vtstq_p16): Likewise.
27829 (vtstq_p64): Likewise.
27830 * config/arm/arm_neon.h (vgetq_lane_p64): New.
27831 (vset_lane_p64): New.
27832 (vsetq_lane_p64): New.
27834 2017-02-10 Jakub Jelinek <jakub@redhat.com>
27836 PR tree-optimization/79411
27837 * tree-ssa-reassoc.c (is_reassociable_op): Return false if
27838 stmt operands are SSA_NAMEs used in abnormal phis.
27839 (can_reassociate_p): Return false if op is SSA_NAME used in abnormal
27842 2017-02-09 Jan Hubicka <hubicka@ucw.cz>
27845 * cgraphunit.c (cgraph_node::add_new_function): Set externally_visible
27848 2017-02-09 Jan Hubicka <hubicka@ucw.cz>
27850 * tree-ssa-loop-unswitch.c (hoist_guard): Update profile.
27852 2017-02-09 Jakub Jelinek <jakub@redhat.com>
27854 * omp-offload.c (oacc_loop_auto_partitions): Use || instead of |
27858 * gimplify.h (is_gimple_sizepos): Only test for INTEGER_CST constants,
27859 not arbitrary TREE_CONSTANT.
27862 * gimplify.c (gimplify_adjust_omp_clauses): Ignore
27863 "omp declare target link" attribute unless is_global_var.
27864 * omp-offload.c (find_link_var_op): Likewise.
27866 2017-02-09 Nathan Sidwell <nathan@codesourcery.com>
27867 Chung-Lin Tang <cltang@codesourcery.com>
27869 * gimplify.c (gimplify_scan_omp_clauses): No special handling for
27871 (gimplify_adjust_omp_clauses): Don't delete TILE.
27872 (gimplify_omp_for): Deal with TILE.
27873 * internal-fn.c (expand_GOACC_TILE): New function.
27874 * internal-fn.def (GOACC_DIM_POS): Comment may be overly conservative.
27876 * omp-expand.c (struct oacc_collapse): Add tile and outer fields.
27877 (expand_oacc_collapse_init): Add LOC paramter. Initialize tile
27879 (expand_oacc_collapse_vars): Add INNER parm, adjust for tiling,
27880 avoid DIV for outermost collapse var.
27881 (expand_oacc_for): Insert tile element loop as needed. Adjust.
27882 Remove out of date comments, fix whitespace.
27883 * omp-general.c (omp_extract_for_data): Deal with tiling.
27884 * omp-general.h (enum oacc_loop_flags): Add OLF_TILE flag,
27885 adjust OLF_DIM_BASE value.
27886 (struct omp_for_data): Add tiling field.
27887 * omp-low.c (scan_sharing_clauses): Allow OMP_CLAUSE_TILE.
27888 (lower_oacc_head_mark): Add OLF_TILE as appropriate. Ensure 2 levels
27889 for auto loops. Remove default auto determining, moved to
27890 oacc_loop_fixed_partitions.
27891 * omp-offload.c (struct oacc_loop): Change 'ifns' to vector of call
27892 stmts, add e_mask field.
27893 (oacc_dim_call): New function, abstracted out from oacc_thread_numbers.
27894 (oacc_thread_numbers): Use oacc_dim_call.
27895 (oacc_xform_tile): New.
27896 (new_oacc_loop_raw): Initialize e_mask, adjust for ifns vector.
27897 (finish_oacc_loop): Adjust for ifns vector.
27898 (oacc_loop_discover_walk): Append loop abstraction sites to list,
27899 add case for GOACC_TILE fns.
27900 (oacc_loop_xform_loop): Delete.
27901 (oacc_loop_process): Iterate over call list directly, and add
27902 handling for GOACC_TILE fns.
27903 (oacc_loop_fixed_partitions): Determine default auto, deal with TILE,
27905 (oacc_loop_auto_partitions): Add outer_assign parm. Assign all but
27906 vector partitioning to outer loops. Assign 2 partitions to loops
27907 when available. Add TILE handling.
27908 (oacc_loop_partition): Adjust oacc_loop_auto_partitions call.
27909 (execite_oacc_device_lower): Process GOACC_TILE fns,
27910 ignore unknown specs.
27911 * tree-nested.c (convert_nonlocal_omp_clauses): Allow OMP_CLAUSE_TILE.
27912 * tree.c (omp_clause_num_ops): Adjust TILE ops.
27913 * tree.h (OMP_CLAUSE_TILE_ITERVAR, OMP_CLAUSE_TILE_COUNT): New.
27915 2017-02-09 Gerald Pfeifer <gerald@pfeifer.com>
27917 * configure.ac (ACX_BUGURL): Update.
27918 * configure: Regenerate.
27920 2017-02-09 Richard Biener <rguenther@suse.de>
27922 PR tree-optimization/69823
27923 * graphite-scop-detection.c (scop_detection::harmful_loop_in_region):
27924 Properly enumerate all BBs in the region. Use auto_vec/auto_bitmap.
27926 2017-02-09 Andrew Burgess <andrew.burgess@embecosm.com>
27928 * config/arc/arc-c.def: Add __NPS400__ definition.
27929 * config/arc/arc.h (CPP_SPEC): Don't define __NPS400__ here.
27930 (TARGET_NPS400): Define.
27932 2017-02-09 Andrew Burgess <andrew.burgess@embecosm.com>
27934 * config/arc/arc-arch.h (arc_arch_t): Move unchanged to earlier in
27936 (arc_cpu_t): Change base_architecture field, arch, to a arc_arc_t
27937 pointer, arch_info.
27938 (arc_cpu_types): Fill the arch_info field with a pointer into the
27939 arc_arch_types table.
27940 (arc_selected_cpu): Declare.
27941 * config/arc/arc.c (arc_selected_cpu): Make global.
27942 (arc_selected_arch): Delete.
27943 (arc_base_cpu): Delete.
27944 (arc_override_options): Remove references to deleted variables,
27945 update access to arch information.
27946 (ARC_OPT): Update access to arch information.
27947 (ARC_OPTX): Likewise.
27948 * config/arc/arc.h (arc_base_cpu): Remove declaration.
27949 (TARGET_ARC600): Update access to arch information.
27950 (TARGET_ARC601): Likewise.
27951 (TARGET_ARC700): Likewise.
27952 (TARGET_EM): Likewise.
27953 (TARGET_HS): Likewise.
27954 * config/arc/driver-arc.c (arc_cpu_to_as): Update access to arch
27957 2017-02-08 Pat Haugen <pthaugen@us.ibm.com>
27960 * config/rs6000/rs6000.c (rs6000_emit_vector_cond_expr): Invert
27961 condition/operands for integer GE/LE/GEU/LEU operations.
27963 2017-02-08 Segher Boessenkool <segher@kernel.crashing.org>
27965 PR translation/79397
27966 * config/rs6000/rs6000.opt (maltivec=le, maltivec=be): Fix spelling
27969 2017-02-08 Martin Jambor <mjambor@suse.cz>
27972 * ipa-prop.c (ipa_alloc_node_params): Make static, return bool
27973 whether allocation happened.
27974 (ipa_initialize_node_params): Do not call ipa_alloc_node_params if
27975 nothing was allocated.
27977 2017-02-08 Jakub Jelinek <jakub@redhat.com>
27979 PR tree-optimization/79408
27980 * tree-vrp.c (simplify_div_or_mod_using_ranges): If op1 is not
27981 constant, but SSA_NAME with a known integer range, use the minimum
27982 of that range instead of op1 to determine if modulo can be replaced
27983 with its first operand.
27985 2016-02-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27987 * config/riscv/riscv.c (riscv_build_integer_1): Avoid use of INT16_MAX.
27989 2017-02-08 Richard Biener <rguenther@suse.de>
27991 PR tree-optimization/71824
27992 * graphite-scop-detection.c (scop_detection::build_scop_breadth):
27993 Check all loops contained in the merged region.
27995 2017-02-07 Andrew Pinski <apinski@cavium.com>
27997 * config/aarch64/aarch64.md (popcount<mode>2): New pattern.
27999 2017-02-07 Andrew Pinski <apinski@cavium.com>
28001 * config/aarch64/aarch64-cores.def (thunderx): Disable LSE.
28002 (thunderxt88): Likewise.
28003 (thunderxt81): Disable LSE and change v8.1 to v8.
28004 (thunderxt83): Likewise.
28006 2017-02-07 Jakub Jelinek <jakub@redhat.com>
28007 Richard Biener <rguenther@suse.de>
28009 PR middle-end/79399
28010 * ira-int.h (struct target_ira_int): Change x_max_struct_costs_size
28011 type from int to size_t.
28012 * ira-costs.c (struct_costs_size): Change type from int to size_t.
28014 2017-02-07 Jakub Jelinek <jakub@redhat.com>
28016 PR rtl-optimization/79386
28017 * cprop.c (bypass_conditional_jumps): Initialize
28018 bypass_last_basic_block already before splitting bbs after
28019 unconditional traps...
28020 (bypass_conditional_jumps): ... rather than here.
28023 * config/i386/sse.md (xtg_mode, gatherq_mode): New mode attrs.
28024 (*avx512f_gathersi<mode>, *avx512f_gathersi<mode>_2,
28025 *avx512f_gatherdi<mode>, *avx512f_gatherdi<mode>_2): Use them,
28026 fix -masm=intel patterns.
28028 2017-02-07 Richard Biener <rguenther@suse.de>
28030 PR tree-optimization/79256
28031 PR middle-end/79278
28032 * builtins.c (get_object_alignment_2): Use min_align_of_type
28033 to extract alignment for MEM_REFs to honor BIGGEST_FIELD_ALIGNMENT
28034 and ADJUST_FIELD_ALIGN.
28036 * doc/tm.texi.in (ADJUST_FIELD_ALIGN): Adjust to take additional
28038 * doc/tm.texi: Regenerate.
28039 * stor-layout.c (layout_decl): Adjust.
28040 (update_alignment_for_field): Likewise.
28041 (place_field): Likewise.
28042 (min_align_of_type): Likewise.
28043 * config/arc/arc.h (ADJUST_FIELD_ALIGN): Adjust.
28044 * config/epiphany/epiphany.h (ADJUST_FIELD_ALIGN): Likewise.
28045 * config/epiphany/epiphany.c (epiphany_adjust_field_align): Likewise.
28046 * config/frv/frv.h (ADJUST_FIELD_ALIGN): Likewise.
28047 * config/frv/frv.c (frv_adjust_field_align): Likewise.
28048 * config/i386/i386.h (ADJUST_FIELD_ALIGN): Likewise.
28049 * config/i386/i386.c (x86_field_alignment): Likewise.
28050 * config/rs6000/aix.h (ADJUST_FIELD_ALIGN): Likewise.
28051 * config/rs6000/darwin.h (ADJUST_FIELD_ALIGN): Likewise.
28052 * config/rs6000/freebsd64.h (ADJUST_FIELD_ALIGN): Likewise.
28053 * config/rs6000/linux64.h (ADJUST_FIELD_ALIGN): Likewise.
28054 * config/rs6000/sysv4.h (ADJUST_FIELD_ALIGN): Likewise.
28055 * config/rs6000/rs6000.c (rs6000_special_adjust_field_align_p):
28059 2017-01-30 Richard Biener <rguenther@suse.de>
28061 PR tree-optimization/79256
28062 * targhooks.c (default_builtin_vector_alignment_reachable): Honor
28063 BIGGEST_FIELD_ALIGNMENT and ADJUST_FIELD_ALIGN to fix up bogus
28066 2017-02-07 Toma Tabacu <toma.tabacu@imgtec.com>
28068 * config/mips/mips.c (mips_expand_builtin_insn): Convert the QImode
28069 argument of the pshufh, psllh, psllw, psrah, psraw, psrlh, psrlw
28070 builtins to SImode and emit a zero-extend, if necessary.
28072 2017-02-06 Palmer Dabbelt <palmer@dabbelt.com>
28074 * docs/invoke.texi (RISC-V Options): Alphabetize.
28076 2017-02-06 Palmer Dabbelt <palmer@dabbelt.com>
28078 * doc/invoke.texi (RISC-V Options): Use two spaces to separate
28081 2017-02-06 Palmer Dabbelt <palmer@dabbelt.com>
28083 * config/riscv/riscv.c: New file.
28084 * common/config/riscv/riscv-common.c: Likewise.
28085 * config.gcc: Likewise.
28086 * config/riscv/constraints.md: Likewise.
28087 * config/riscv/elf.h: Likewise.
28088 * config/riscv/generic.md: Likewise.
28089 * config/riscv/linux.h: Likewise.
28090 * config/riscv/multilib-generator: Likewise.
28091 * config/riscv/peephole.md: Likewise.
28092 * config/riscv/pic.md: Likewise.
28093 * config/riscv/predicates.md: Likewise.
28094 * config/riscv/riscv-builtins.c: Likewise.
28095 * config/riscv/riscv-c.c: Likewise.
28096 * config/riscv/riscv-ftypes.def: Likewise.
28097 * config/riscv/riscv-modes.def: Likewise.
28098 * config/riscv/riscv-opts.h: Likewise.
28099 * config/riscv/riscv-protos.h: Likewise.
28100 * config/riscv/riscv.h: Likewise.
28101 * config/riscv/riscv.md: Likewise.
28102 * config/riscv/riscv.opt: Likewise.
28103 * config/riscv/sync.md: Likewise.
28104 * config/riscv/t-elf-multilib: Likewise.
28105 * config/riscv/t-linux: Likewise.
28106 * config/riscv/t-linux-multilib: Likewise.
28107 * config/riscv/t-riscv: Likewise.
28108 * configure.ac: Likewise.
28109 * doc/contrib.texi: Add Kito Cheng, Palmer Dabbelt, and Andrew
28110 Waterman as RISC-V maintainers.
28111 * doc/install.texi: Add RISC-V entries.
28112 * doc/invoke.texi: Add RISC-V options section.
28113 * doc/md.texi: Add RISC-V constraints section.
28114 * configure: Regenerated.
28116 2017-02-06 Michael Meissner <meissner@linux.vnet.ibm.com>
28119 * config/rs6000/vector.md (vcond<mode><mode>): Allow the true and
28120 false values to be constant vectors with all 0 or all 1 bits set.
28121 (vcondu<mode><mode>): Likewise.
28122 * config/rs6000/predicates.md (vector_int_reg_or_same_bit): New
28124 (fpmask_comparison_operator): Update comment.
28125 (vecint_comparison_operator): New predicate.
28126 * config/rs6000/rs6000.c (rs6000_emit_vector_cond_expr): Optimize
28127 vector conditionals when the true and false values are constant
28128 vectors with all 0 bits or all 1 bits set.
28130 2017-02-06 Martin Sebor <msebor@redhat.com>
28132 PR tree-optimization/79376
28133 * gimple-fold.c (get_range_strlen): Set the minimum length to zero.
28135 2017-02-06 Uros Bizjak <ubizjak@gmail.com>
28137 * config/i386/sse.md (vector modes -> vec_extract* splitter): Use
28138 explicit subreg RTX with operand 1. Use VECTOR_MODE_P predicate
28139 to simplify split condition.
28141 2017-02-06 Jakub Jelinek <jakub@redhat.com>
28143 * omp-expand.c (oxpand_omp_atomic_fetch_op,
28144 expand_omp_atomic_pipeline): Return false if can_atomic_load_p is
28147 2017-02-06 Segher Boessenkool <segher@kernel.crashing.org>
28149 PR rtl-optimization/68664
28150 * target.def (can_speculate_insn): New hook.
28151 * doc/tm.texi.in (TARGET_SCHED_CAN_SPECULATE_INSN): New hook.
28152 * doc/tm.texi: Regenerate.
28153 * sched-rgn.c (can_schedule_ready_p): Use the new hook.
28154 * config/rs6000/rs6000.c (TARGET_SCHED_CAN_SPECULATE_INSN): New macro.
28155 (rs6000_sched_can_speculate_insn): New function.
28157 2017-02-06 Jakub Jelinek <jakub@redhat.com>
28159 PR tree-optimization/79284
28160 * tree-vectorizer.h (VECT_SCALAR_BOOLEAN_TYPE_P): Define.
28161 * tree-vect-stmts.c (vect_get_vec_def_for_operand,
28162 vectorizable_mask_load_store, vectorizable_operation,
28163 vect_is_simple_cond, get_same_sized_vectype): Use it instead
28164 of comparing TREE_CODE of a type against BOOLEAN_TYPE.
28165 * tree-vect-patterns.c (check_bool_pattern, search_type_for_mask_1,
28166 vect_recog_bool_pattern, vect_recog_mask_conversion_pattern): Likewise.
28167 * tree-vect-slp.c (vect_get_constant_vectors): Likewise.
28168 * tree-vect-loop.c (vect_determine_vectorization_factor): Likewise.
28169 Remove redundant gimple_code (stmt) == GIMPLE_ASSIGN test after
28170 is_gimple_assign (stmt). Replace another such test with
28171 is_gimple_assign (stmt).
28173 2017-02-06 Georg-Johann Lay <avr@gjlay.de>
28176 * config/avr/avr.c (rtl-iter.h): Include it.
28177 (TARGET_LEGITIMATE_COMBINED_INSN): New hook define...
28178 (avr_legitimate_combined_insn): ...and implementation.
28180 2017-02-06 Dominik Vogt <vogt@linux.vnet.ibm.com>
28182 * config/s390/predicates.md ("larl_operand"): Use macros from hwint.h.
28183 * config/s390/s390.c (s390_const_operand_ok)
28184 (s390_canonicalize_comparison, s390_extract_part)
28185 (s390_single_part, s390_contiguous_bitmask_nowrap_p)
28186 (s390_contiguous_bitmask_p, s390_rtx_costs)
28187 (legitimize_pic_address): Likewise.
28188 * config/s390/s390.md ("clzdi2", "clztidi2"): Likewise.
28189 * config/s390/vx-builtins.md ("vec_genbytemaskv16qi")
28190 ("vec_permi<mode>", "vfae<mode>", "*vfaes<mode>", "vstrc<mode>")
28191 ("*vstrcs<mode>"): Use UINTVAL() to set unsigned HOST_WIDE_INT.
28192 * config/s390/vector.md ("vec_vfenes<mode>"): Likewise.
28194 2017-02-06 Georg-Johann Lay <avr@gjlay.de>
28196 * config/avr/avr.md (*addhi3_zero_extend): Add alternative where
28197 REGNO($0) == REGNO($1).
28199 2017-02-06 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28201 * config/s390/linux.h(SIZE_TYPE): Add comment.
28203 2017-02-06 Julian Brown <julian@codesourcery.com>
28204 Naveen H.S <Naveen.Hurugalawadi@cavium.com>
28205 Virendra Pathak <virendra.pathak@broadcom.com>
28207 * config/aarch64/aarch64-cores.def: Change the scheduler
28209 * config/aarch64/aarch64.md: Include thunderx2t99.md.
28210 * config/aarch64/thunderx2t99.md: New file.
28212 2017-02-05 Gerald Pfeifer <gerald@pfeifer.com>
28214 * doc/standards.texi (Go Language): Update link to language
28217 2017-02-05 Jan Hubicka <hubicka@ucw.cz>
28219 * tree-eh.c (lower_resx): Sanitize profile.
28220 (cleanup_empty_eh_move_lp): Likewise.
28222 2017-02-05 Jan Hubicka <hubicka@ucw.cz>
28225 * cfgloopmanip.c (lv_adjust_loop_entry_edge, loop_version): Add
28227 * cfgloopmanip.h (loop_version): Update prototype.
28228 * modulo-sched.c (sms_schedule): Update call of loop_version.
28229 * tree-if-conv.c(version_loop_for_if_conversion): Likewise.
28230 * tree-parloops.c (gen_parallel_loop): Likewise.
28231 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Likewise.
28232 * tree-ssa-loop-split.c (split_loop): Likewise.
28233 * tree-ssa-loop-unswitch.c (tree_unswitch_loop): Likewise.
28234 * tree-vect-loop-manip.c (vect_loop_versioning): Likewise.
28236 2017-02-05 Martin Liska <mliska@suse.cz>
28239 * config/s390/s390.c (s390_gimplify_va_arg): Initialize local
28241 (print_operand_address): Initialize a struct to zero.
28243 2017-02-05 Gerald Pfeifer <gerald@pfeifer.com>
28245 * doc/contrib.texi (Contributors): Refer to Hans Boehm's
28246 garbage collector only in textual form.
28248 2017-02-05 Gerald Pfeifer <gerald@pfeifer.com>
28250 * doc/extend.texi (x86 specific memory model extensions for
28251 transactional memory): Simplify a phrase.
28253 2017-02-05 Eric Botcazou <ebotcazou@adacore.com>
28256 * config/sparc/sync.md (atomic_loaddi_1): Replace 'U' constraint with
28257 'r', 'm' constraint with 'T' and !TARGET_ARCH64 with TARGET_ARCH32.
28258 (atomic_storedi_1): Likewise.
28260 2017-02-04 Jakub Jelinek <jakub@redhat.com>
28262 PR tree-optimization/79338
28263 * tree-parloops.c (gather_scalar_reductions): Don't call
28264 vect_analyze_loop_form for loop->inner before destroying loop's
28267 2017-02-03 Martin Sebor <msebor@redhat.com>
28269 PR tree-optimization/79327
28270 * gimple-ssa-sprintf.c (tree_digits): Avoid adding the base prefix
28271 when precision has resulted in leading zeros.
28272 (format_integer): Adjust the likely counter to assume an unknown
28273 argument that may be zero is non-zero.
28275 2017-02-03 Jason Merrill <jason@redhat.com>
28278 * tree-inline.c (copy_tree_body_r) [COND_EXPR]: Revert change to
28279 avoid copying non-taken branch.
28281 2017-02-03 Jakub Jelinek <jakub@redhat.com>
28283 PR tree-optimization/79340
28284 * tree-vect-loop.c (vectorizable_reduction): Release
28285 vec_defs elements after safe_splicing them into other vectors.
28288 PR tree-optimization/79327
28289 * gimple-ssa-sprintf.c (adjust_range_for_overflow): If returning
28290 true, always set *argmin and *argmax to TYPE_{MIN,MAX}_VALUE of
28292 (format_integer): Use wide_int_to_tree instead of build_int_cst
28293 + to_?hwi. If argmin is NULL, just set argmin and argmax to
28294 TYPE_{MIN,MAX}_VALUE of argtype. Simplify and fix computation
28295 of shortest and longest sequence.
28297 2017-02-03 Uros Bizjak <ubizjak@gmail.com>
28299 * config/i386/i386.c (dimode_scalar_chain::convert_reg):
28300 Use pextrd for TARGET_SSE4_1 when creating scalar copy.
28302 2017-02-03 Walter Lee <walt@tilera.com>
28305 * config/tilegx/tilegx.md (tilegx_expand_prologue): Add blockage
28306 after initial stackframe link reg save.
28307 * config/tilepro/tilepro.md (tilepro_expand_prologue): Likewise.
28309 2017-02-03 Jakub Jelinek <jakub@redhat.com>
28312 * config/rs6000/rs6000.md (movsi_from_sf): Use wb constraint instead of
28313 wu for stxssp alternative.
28315 2017-02-03 Martin Sebor <msebor@redhat.com>
28317 PR tree-optimization/79352
28318 * gimple-fold.c (get_range_strlen): Add argument.
28319 (get_range_strlen): Change return type to bool.
28320 (get_maxval_strlen): Pass in a dummy argument.
28321 * gimple-fold.h (get_range_strlen): Change return type to bool.
28322 * gimple-ssa-sprintf.c (get_string_length): Set unlikely counter.
28323 * tree.h (array_at_struct_end_p): Add argument.
28324 * tree.c (array_at_struct_end_p): Handle it.
28326 2017-02-03 Martin Liska <mliska@suse.cz>
28329 * multiple_target.c (create_dispatcher_calls): Redirect edge
28330 from a caller of a dispatcher.
28331 (expand_target_clones): Make the clones local.
28332 (ipa_target_clone): Do both target clones and resolvers.
28333 (ipa_dispatcher_calls): Remove the pass.
28334 (pass_dispatcher_calls::gate): Likewise.
28335 (make_pass_dispatcher_calls): Likewise.
28336 * passes.def (pass_target_clone): Put as very first IPA early
28339 2017-02-03 Martin Liska <mliska@suse.cz>
28341 * symtab.c (symtab_node::binds_to_current_def_p): Bail out
28342 in case of a function with ifunc attribute.
28344 2017-02-03 Martin Liska <mliska@suse.cz>
28346 * cgraph.c (cgraph_node::dump): Dump function version info.
28347 * symtab.c (symtab_node::dump_base): Add missing new line.
28349 2017-02-02 Jan Hubicka <hubicka@ucw.cz>
28351 * tree-ssa-ifcombine.c (update_profile_after_ifcombine): New function.
28352 (ifcombine_ifandif): Use it.
28354 2017-02-03 Martin Liska <mliska@suse.cz>
28356 * doc/invoke.texi: Document default value for
28357 use-after-scope-direct-emission-threshold.
28359 2017-02-03 Martin Liska <mliska@suse.cz>
28361 PR tree-optimization/79339
28362 * gimple-ssa-sprintf.c (format_floating_max): Call mpfr_clear.
28363 (format_floating): Likewise.
28365 2017-02-03 Martin Liska <mliska@suse.cz>
28368 * ipa-prop.c (ipa_node_params_t::insert): Remove current
28370 (ipa_node_params_t::remove): Likewise.
28371 * ipa-prop.h (ipa_node_params::ipa_node_params): Make default
28372 initialization from removed ipa_node_params_t::insert.
28373 (ipa_node_params::~ipa_node_params): Move from removed
28374 ipa_node_params_t::release.
28375 * symbol-summary.h (symbol_summary::m_released): New member.
28376 Do not release a summary twice. Do not allow to call finalizer
28377 for types of a summary that live in GGC memory.
28379 2017-02-02 Naveen H.S <Naveen.Hurugalawadi@cavium.com>
28381 * config/aarch64/aarch64.c (thunderx2t99_tunings): Enable AES and
28384 2017-02-02 Martin Sebor <msebor@redhat.com>
28386 PR middle-end/79275
28387 * gimple-ssa-sprintf.c (get_string_length): Set lower bound to zero.
28388 (format_string): Tighten up the range of output for non-constant
28389 strings and correct the expected range for wide non-constant strings.
28391 2017-02-02 Martin Sebor <msebor@redhat.com>
28393 * doc/invoke.texi (-maccumulate-args): Fix bad grammar.
28395 PR middle-end/32003
28396 * doc/invoke.texi (-fdump-tree-): Remove pass-specific options from
28398 (-fdump-tree-@var): Add to index and document how to come up
28399 with pass-specific option and dump file names.
28400 (-fdump-passes): Clarify where to look for output.
28402 2017-02-02 Jan Hubicka <hubicka@ucw.cz>
28404 PR middle-end/77445
28405 * tree-ssa-threadbackward.c (profitable_jump_thread_path): Dump
28406 statistics of the analyzed path; allow threading for speed when
28407 any of BBs along the path are optimized for speed.
28409 2017-02-02 Eric Botcazou <ebotcazou@adacore.com>
28411 PR middle-end/78468
28412 * emit-rtl.c (init_emit): Add ??? comment for problematic alignment
28413 settings of the virtual registers.
28416 2016-08-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
28418 * explow.c (get_dynamic_stack_size): Take known alignment of stack
28419 pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
28422 2017-02-02 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28424 * config/s390/vx-builtins.md ("vec_ceil", "vec_floor")
28425 ("vec_trunc", "vec_roundc", "vec_round"): Remove expanders.
28427 2017-02-02 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28429 * config/s390/s390.md: Add missing comments with the expanded
28431 * config/s390/vector.md: Likewise.
28432 * config/s390/vx-builtins.md: Likewise.
28434 2017-02-02 Jakub Jelinek <jakub@redhat.com>
28437 * config/rs6000/rs6000.md (*fixuns_trunc<mode>di2_fctiduz): Rename to ...
28438 (fixuns_trunc<mode>di2): ... this, remove previous expander. Put all
28439 conditions on a single line.
28441 2017-02-02 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28443 * config/s390/s390-c.c (s390_cpu_cpp_builtins_internal): Rename
28444 __S390_VX__ to __VX__.
28446 2017-02-01 Andrew Pinski <apinski@cavium.com>
28448 * tree-vect-loop.c (vect_compute_single_scalar_iteration_cost): Pass
28449 stmt_info to record_stmt_cost.
28450 (vect_get_known_peeling_cost): Pass stmt_info if known to
28452 * config/aarch64/aarch64-protos.h (cpu_vector_cost): Split
28453 cpu_vector_cost field into
28454 scalar_int_stmt_cost and scalar_fp_stmt_cost. Split vec_stmt_cost
28455 field into vec_int_stmt_cost and vec_fp_stmt_cost.
28456 * config/aarch64/aarch64.c (generic_vector_cost): Update for the
28457 splitting of scalar_stmt_cost and vec_stmt_cost.
28458 (thunderx_vector_cost): Likewise.
28459 (cortexa57_vector_cost): LIkewise.
28460 (exynosm1_vector_cost): Likewise.
28461 (xgene1_vector_cost): Likewise.
28462 (thunderx2t99_vector_cost): Improve after the splitting of the two
28464 (aarch64_builtin_vectorization_cost): Update for the splitting of
28465 scalar_stmt_cost and vec_stmt_cost.
28467 2017-02-01 Torvald Riegel <triegel@redhat.com>
28468 Richard Henderson <rth@redhat.com>
28470 * builtins.c (fold_builtin_atomic_always_lock_free): Make "lock-free"
28471 conditional on existance of a fast atomic load.
28472 * optabs-query.c (can_atomic_load_p): New function.
28473 * optabs-query.h (can_atomic_load_p): Declare it.
28474 * optabs.c (expand_atomic_exchange): Always delegate to libatomic if
28475 no fast atomic load is available for the particular size of access.
28476 (expand_atomic_compare_and_swap): Likewise.
28477 (expand_atomic_load): Likewise.
28478 (expand_atomic_store): Likewise.
28479 (expand_atomic_fetch_op): Likewise.
28480 * testsuite/lib/target-supports.exp
28481 (check_effective_target_sync_int_128): Remove x86 because it provides
28482 no fast atomic load.
28483 (check_effective_target_sync_int_128_runtime): Likewise.
28485 2017-02-01 Richard Biener <rguenther@suse.de>
28487 * graphite.c: Include tree-vectorizer.h for find_loop_location.
28488 (graphite_transform_loops): Provide opt-info for optimized nests.
28489 * tree-parloop.c (parallelize_loops): Provide opt-info for
28490 parallelized loops.
28492 2017-02-01 Richard Biener <rguenther@suse.de>
28494 PR middle-end/79315
28495 * tree-cfg.c (move_stmt_op): Never set TREE_BLOCK when it
28496 was not set before.
28498 2017-02-01 Richard Biener <rguenther@suse.de>
28500 PR tree-optimization/71824
28501 * graphite-scop-detection.c (scop_detection::build_scop_breadth):
28502 Verify the loops are valid in the merged SESE region.
28503 (scop_detection::can_represent_loop_1): Check analyzing the
28504 evolution of the number of iterations in the region succeeds.
28506 2017-01-31 Ian Lance Taylor <iant@golang.org>
28508 * config/i386/i386.c (ix86_expand_split_stack_prologue): Add
28509 REG_ARGS_SIZE note to 32-bit push insns and call insn.
28511 2017-01-31 David Malcolm <dmalcolm@redhat.com>
28513 PR preprocessor/79210
28514 * input.c (get_substring_ranges_for_loc): Replace line_width
28515 assertion with error-handling.
28517 2017-01-31 Richard Biener <rguenther@suse.de>
28519 PR tree-optimization/77318
28520 * graphite-sese-to-poly.c (extract_affine): Fix assert.
28521 (create_pw_aff_from_tree): Take loop parameter.
28522 (add_condition_to_pbb): Pass loop of the condition to
28523 create_pw_aff_from_tree.
28525 2017-01-31 Jakub Jelinek <jakub@redhat.com>
28527 * config/s390/s390.c (s390_asan_shadow_offset): New function.
28528 (TARGET_ASAN_SHADOW_OFFSET): Redefine.
28530 2017-01-31 Michael Meissner <meissner@linux.vnet.ibm.com>
28534 * config/rs6000/rs6000-protos.h (convert_float128_to_int): Delete,
28536 (convert_int_to_float128): Likewise.
28537 * config/rs6000/rs6000.c (convert_float128_to_int): Likewise.
28538 (convert_int_to_float128): Likewise.
28539 * config/rs6000/rs6000.md (UNSPEC_IEEE128_MOVE): Likewise.
28540 (UNSPEC_IEEE128_CONVERT): Likewise.
28541 (floatsi<mode>2, FLOAT128 iterator): Bypass calling
28542 rs6000_expand_float128_convert if we have IEEE 128-bit hardware.
28543 Use local variables for IBM extended format.
28544 (fix_trunc<mode>si2, FLOAT128 iterator): Likewise.
28545 (fix_trunc<mode>si2_fprs): Likewise.
28546 (fixuns_trunc<IEEE128:mode><SDI:mode>2): Likewise.
28547 (floatuns<IEEE128:mode>2, IEEE128 iterator): Likewise.
28548 (fix<uns>_<mode>si2_hw): Rework the IEEE 128-bt hardware support
28549 to know that we can now have integers of all sizes in vector
28551 (fix<uns>_<mode>di2_hw): Likewise.
28552 (float<uns>_<mode>si2_hw): Likewise.
28553 (fix_<mode>si2_hw): Likewise.
28554 (fixuns_<mode>si2_hw): Likewise.
28555 (float<uns>_<mode>di2_hw): Likewise.
28556 (float_<mode>di2_hw): Likewise.
28557 (float_<mode>si2_hw): Likewise.
28558 (floatuns_<mode>di2_hw): Likewise.
28559 (floatuns_<mode>si2_hw): Likewise.
28560 (xscvqp<su>wz_<mode>): Delete, no longer used.
28561 (xscvqp<su>dz_<mode>): Likewise.
28562 (xscv<su>dqp_<mode>): Likewise.
28563 (ieee128_mfvsrd_64bit): Likewise.
28564 (ieee128_mfvsrd_32bit): Likewise.
28565 (ieee128_mfvsrwz): Likewise.
28566 (ieee128_mtvsrw): Likewise.
28567 (ieee128_mtvsrd_64bit): Likewise.
28568 (ieee128_mtvsrd_32bit): Likewise.
28570 2017-01-31 Martin Liska <mliska@suse.cz>
28573 * ipa-prop.c (ipa_free_all_node_params): Call release method
28574 instead of ~sumbol_summary to not to trigger double times
28577 2017-01-31 Aldy Hernandez <aldyh@redhat.com>
28579 PR tree-optimization/71691
28580 * bitmap.h (class auto_bitmap): New.
28581 * tree-ssa-loop-unswitch.c (tree_may_unswitch_on): Call
28582 is_maybe_undefined instead of ssa_undefined_value_p.
28584 2017-01-31 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
28586 * config/s390/s390-c.c (s390_cpu_cpp_builtins_internal): Rename
28587 __S390_ARCH_LEVEL__ to __ARCH__.
28589 2017-01-31 Jakub Jelinek <jakub@redhat.com>
28591 PR tree-optimization/79267
28592 * value-prof.c (gimple_ic): Only drop lhs for noreturn calls
28593 if should_remove_lhs_p is true.
28595 2017-01-30 Alexandre Oliva <aoliva@redhat.com>
28598 * dwarf2out.c (clone_as_declaration): Drop DW_AT_alignment.
28599 (add_alignment_attribute): New.
28600 (base_type_die): Add alignment attribute.
28601 (subrange_type_die): Likewise.
28602 (modified_type_die): Likewise.
28603 (gen_array_type_die): Likewise.
28604 (gen_descr_array_type_die: Likewise.
28605 (gen_enumeration_type_die): Likewise.
28606 (gen_subprogram_die): Likewise.
28607 (gen_variable_die): Likewise.
28608 (gen_field_die): Likewise.
28609 (gen_ptr_to_mbr_type_die): Likewise.
28610 (gen_struct_or_union_type_die): Likewise.
28611 (gen_subroutine_type_die): Likewise.
28612 (gen_typedef_die): Likewise.
28613 (base_type_cmp): Compare alignment attribute.
28615 2017-01-30 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
28618 * config/rs6000/altivec.md (*setb_internal): Rename to setb_signed.
28619 (setb_unsigned) New pattern for setb with CCUNS.
28620 * config/rs6000/rs6000.c (expand_block_compare): Use a different
28621 subfc./subfe sequence to avoid overflow problems. Generate a
28622 shorter sequence with cmpld/setb for power9.
28623 * config/rs6000/rs6000.md (subf<mode>3_carry_dot2): Add a new pattern
28624 for generating subfc. instruction.
28625 (cmpstrsi): Add TARGET_POPCNTD predicate as the generate sequence
28626 now uses this instruction.
28628 2017-01-30 Ian Lance Taylor <iant@google.com>
28631 * dwarf2out.c (gen_type_die_with_usage): When picking a variant
28632 for FUNCTION_TYPE/METHOD_TYPE, use the first matching one.
28634 2017-01-30 Martin Sebor <msebor@redhat.com>
28636 * gimple-ssa-sprintf.c (fmtresult::adjust_for_width_or_precision):
28637 Move constant to the right of a relational operator.
28638 (get_mpfr_format_length, format_character, format_string): Ditto.
28639 (should_warn_p, maybe_warn): Same.
28641 * doc/invoke.texi (-Wformat-truncation=1): Fix typo.
28643 2017-01-30 Maxim Ostapenko <m.ostapenko@samsung.com>
28646 * asan.c (get_translation_unit_decl): Remove function.
28647 (asan_add_global): Force has_dynamic_init to zero in LTO mode.
28649 2017-01-30 Martin Liska <mliska@suse.cz>
28651 PR gcov-profile/79259
28652 * opts.c (common_handle_option): Enable flag_ipa_bit_cp w/
28653 -fprofile-generate.
28655 2017-01-30 Martin Liska <mliska@suse.cz>
28658 * config/aarch64/cortex-a57-fma-steering.c (func_fma_steering::analyze):
28659 Initialize variables with NULL value.
28661 2017-01-30 Richard Earnshaw <rearnsh@arm.com>
28664 * config.gcc (arm*-*-*): Add arm/arm-flags.h and arm/arm-isa.h to
28666 * arm/arm-protos.h: Don't directly include arm-flags.h and arm-isa.h.
28668 2017-01-30 Richard Biener <rguenther@suse.de>
28670 PR tree-optimization/79276
28671 * tree-vrp.c (process_assert_insertions): Properly adjust common
28672 when removing a duplicate.
28674 * gcc.dg/torture/pr79276.c: New testcase.
28676 2017-01-30 Richard Biener <rguenther@suse.de>
28678 PR tree-optimization/79256
28679 * targhooks.c (default_builtin_vector_alignment_reachable): Honor
28680 BIGGEST_FIELD_ALIGNMENT and ADJUST_FIELD_ALIGN to fix up bogus
28682 * tree.c (build_aligned_type): Set TYPE_USER_ALIGN.
28684 2017-01-30 Dominik Vogt <vogt@linux.vnet.ibm.com>
28687 * config/s390/s390.md ("*r<noxa>sbg_<mode>_srl_bitmask")
28688 ("*r<noxa>sbg_<mode>_sll_bitmask")
28689 ("*extzv_<mode>_srl<clobbercc_or_nocc>")
28690 ("*extzv_<mode>_sll<clobbercc_or_nocc>"):
28691 Use contiguous_bitmask_nowrap_operand.
28693 2017-01-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
28696 * config/rs6000/altivec.h (vec_xl): Revise #define.
28697 (vec_xst): Likewise.
28699 2017-01-27 Uros Bizjak <ubizjak@gmail.com>
28701 * config/i386/i386.c (print_reg): Use REGNO instead of true_regnum.
28703 2017-01-27 Bernd Schmidt <bschmidt@redhat.com>
28705 PR rtl-optimization/79194
28706 * cprop.c (one_cprop_pass): Move deletion of code after unconditional
28707 traps before call to bypass_conditional_jumps.
28709 2017-01-27 Vladimir Makarov <vmakarov@redhat.com>
28711 PR tree-optimization/71374
28712 * lra-constraints.c (check_conflict_input_operands): New.
28713 (match_reload): Use it.
28715 2017-01-27 Vladimir Makarov <vmakarov@redhat.com>
28718 * lra-assigns.c (find_hard_regno_for_1): Take endianess for into
28719 account to calculate conflict_set.
28721 2017-01-27 Bin Cheng <bin.cheng@arm.com>
28723 PR rtl-optimization/78559
28724 * combine.c (try_combine): Discard REG_EQUAL and REG_EQUIV for
28725 other_insn in combine.
28727 2017-01-27 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com>
28729 * builtin-types.def: Use unsigned_char_type_node for BT_UINT8. Use
28730 uint16_type_node for BT_UINT16.
28732 2017-01-27 David Malcolm <dmalcolm@redhat.com>
28734 * doc/sourcebuild.texi (Testsuites): Add "GIMPLE Tests" and
28735 "RTL Tests" to menu.
28736 (GIMPLE Tests): New node.
28737 (RTL Tests): New node.
28739 2017-01-27 Richard Biener <rguenther@suse.de>
28741 PR tree-optimization/79245
28742 * tree-loop-distribution.c (distribute_loop): Apply cost
28743 modeling also to detected patterns.
28745 2017-01-27 Richard Biener <rguenther@suse.de>
28747 PR tree-optimization/71433
28748 * tree-vrp.c (register_new_assert_for): Revert earlier changes.
28749 (compare_assert_loc): New function.
28750 (process_assert_insertions): Sort and optimize assert locations
28751 to remove duplicates and push down identical assertions on
28752 edges to their destination block.
28754 2017-01-27 Richard Biener <rguenther@suse.de>
28756 PR tree-optimization/79244
28757 * tree-vrp.c (remove_range_assertions): Forcefully propagate
28758 out SSA names even if abnormal.
28760 2017-01-27 Jakub Jelinek <jakub@redhat.com>
28762 * realmpfr.h: Poison MPFR_RND{N,Z,U,D}.
28763 * gimple-ssa-sprintf.c (format_floating_max): Use GMP_RNDN
28764 instead of MPFR_RNDN.
28766 2017-01-27 Richard Earnshaw <rearnsha@arm.com>
28769 * arm.c (arm_option_override): Don't call build_target_option_node
28770 until after doing all option overrides.
28771 (arm_valid_target_attribute_tree): Likewise.
28773 2017-01-27 Martin Liska <mliska@suse.cz>
28775 * doc/invoke.texi (-fprofile-arcs): Document profiling support
28776 for {cd}tors and C++ {cd}tors.
28778 2017-01-27 Dominik Vogt <vogt@linux.vnet.ibm.com>
28780 * config/s390/s390.md ("*setmem_long_and")
28781 ("*setmem_long_and_31z"): Use zero_extend instead of and.
28783 2017-01-26 Martin Sebor <msebor@redhat.com>
28785 * gimple-ssa-sprintf.c (format_floating): Simplify the computation
28788 2017-01-26 Martin Sebor <msebor@redhat.com>
28790 * gimple-ssa-sprintf.c (format_floating): Test HAVE_XFmode and
28791 HAVE_DFmode before using XFmode or DFmode.
28792 (parse_directive): Avoid using the z length modifier to avoid
28793 the ISO C++98 does not support the ‘z’ gnu_printf length modifier.
28795 PR middle-end/78703
28796 * gimple-ssa-sprintf.c (adjust_for_width_or_precision): Change
28797 to accept adjustment as an array.
28798 (get_int_range): New function.
28799 (struct directive): Make width and prec arrays.
28800 (directive::set_width, directive::set_precision): Call get_int_range.
28801 (format_integer, format_floating): Handle width and precision ranges.
28802 (format_string, parse_directive): Same.
28804 2017-01-26 Jakub Jelinek <jakub@redhat.com>
28807 * dwarf2out.c (generate_skeleton_bottom_up): For children with
28808 comdat_type_p set, just clone them, but keep the children in the
28812 * dwarf2out.c (prune_unused_types): Mark all functions with DIEs
28813 which have direct callers with -fvar-tracking-assignments enabled
28815 (resolve_addr): Avoid adding skeleton DIEs for DW_AT_call_origin
28816 inside of type units.
28818 2017-01-26 Martin Sebor <msebor@redhat.com>
28820 PR middle-end/78703
28821 * gimple-ssa-sprintf.c (struct result_range): Add likely and
28823 (struct format_result): Replace number_chars, number_chars_min,
28824 and number_chars_max with a single member of struct result_range.
28826 (format_result::operator+=): Adjust.
28827 (struct fmtresult): Remove bounded. Handle likely and unlikely
28829 (fmtresult::adjust_for_width_or_precision): New function.
28830 (fmtresult:type_max_digits): New function.
28831 (bytes_remaining): Handle likely and unlikely counters.
28832 (min_bytes_remaining): Remove.
28833 (format_percent): Simplify.
28834 (format_integer, format_floating): Set likely and unlikely counters.
28835 (get_string_length, format_character, format_string): Same.
28836 (format_plain, should_warn_p): New function.
28837 (maybe_warn): Call should_warn_p. Update diagnostic messages
28838 and handle those for all directives, including plain strings.
28839 (format_directive): Handle likely and unlikely counters.
28840 Remove unnecessary quoting from diagnostics. Add an informational
28842 (add_bytes): Remove.
28843 (pass_sprintf_length::compute_format_length): Simplify.
28844 (try_substitute_return_value): Handle likely and unlikely counters.
28846 2017-01-26 Carl Love <cel@us.ibm.com>
28848 * config/rs6000/rs6000-c (altivec_overloaded_builtins): Remove
28849 bogus entries for the P8V_BUILTIN_VEC_VGBBD built-ins
28851 2017-01-26 Vladimir Makarov <vmakarov@redhat.com>
28854 * lra-assigns.c (setup_live_pseudos_and_spill_after_risky): Take
28855 endianess for subregs into account.
28856 * lra-constraints.c (lra_constraints): Do risky transformations
28857 always on the first iteration.
28858 * lra-lives.c (check_pseudos_live_through_calls): Add arg
28859 last_call_used_reg_set.
28860 (process_bb_lives): Define and use last_call_used_reg_set.
28861 * lra.c (lra): Always continue after lra_constraints on the first
28864 2017-01-26 Kirill Yukhin <kirill.yukhin@gmail.com>
28866 * gcc.target/i386/avx512bw-kshiftlq-2.c: Use unsigned long long
28868 * gcc.target/i386/avx512bw-kshiftrq-2.c: Ditto.
28870 2017-01-26 Jakub Jelinek <jakub@redhat.com>
28872 * config/i386/avx512fintrin.h (_ktest_mask16_u8,
28873 _ktestz_mask16_u8, _ktestc_mask16_u8, _kadd_mask16): Move to ...
28874 * config/i386/avx512dqintrin.h (_ktest_mask16_u8,
28875 _ktestz_mask16_u8, _ktestc_mask16_u8, _kadd_mask16): ... here.
28876 * config/i386/i386-builtin.def (__builtin_ia32_ktestchi,
28877 __builtin_ia32_ktestzhi, __builtin_ia32_kaddhi): Use
28878 OPTION_MASK_ISA_AVX512DQ instead of OPTION_MASK_ISA_AVX512F.
28879 * config/i386/sse.md (SWI1248_AVX512BWDQ2): New mode iterator.
28880 (kadd<mode>, ktest<mode>): Use it instead of SWI1248_AVX512BWDQ.
28882 2017-01-26 Marek Polacek <polacek@redhat.com>
28885 * fold-const.c (operand_equal_p) [COND_EXPR]: Use OP_SAME_WITH_NULL
28886 for the third operand.
28888 2017-01-26 Jakub Jelinek <jakub@redhat.com>
28890 PR middle-end/79236
28891 * omp-low.c (struct omp_context): Add simt_stmt field.
28892 (scan_omp_for): Return omp_context *.
28893 (scan_omp_simd): Set simt_stmt on the non-_simt_ SIMD
28894 context to the _simt_ SIMD stmt.
28895 (lower_omp_for): For combined SIMD with sibling _simt_
28896 SIMD, make sure to use the same decls in _looptemp_
28897 clauses as in the sibling.
28899 2017-01-26 David Sherwood <david.sherwood@arm.com>
28901 PR middle-end/79212
28902 * gimplify.c (omp_notice_variable): Add GOVD_SEEN flag to variables in
28905 2017-01-26 Jakub Jelinek <jakub@redhat.com>
28908 * reg-stack.c (emit_swap_insn): Instead of fld a; fld b; fxchg %st(1);
28909 emit fld b; fld a; if possible.
28911 * brig-builtins.def: Update copyright years.
28912 * config/arm/arm_acle_builtins.def: Update copyright years.
28914 2017-01-25 Michael Meissner <meissner@linux.vnet.ibm.com>
28917 * config/rs6000/vsx.md (vsx_extract_<mode>_store): Use wY
28918 constraint instead of o for the stxsd instruction.
28920 2017-01-25 Carl Love <cel@us.ibm.com>
28922 * config/rs6000/rs6000-c (altivec_overloaded_builtins): Fix order
28923 of entries for ALTIVEC_BUILTIN_VEC_PACKS and P8V_BUILTIN_VEC_VGBBD.
28925 2017-01-25 Jonathan Wakely <jwakely@redhat.com>
28927 * doc/invoke.texi (C++ Dialect Options): Fix typo.
28929 2017-01-25 Richard Biener <rguenther@suse.de>
28931 PR tree-optimization/69264
28932 * target.def (vector_alignment_reachable): Improve documentation.
28933 * doc/tm.texi: Regenerate.
28934 * targhooks.c (default_builtin_vector_alignment_reachable): Simplify
28936 * tree-vect-data-refs.c (vect_supportable_dr_alignment): Revert
28937 earlier changes with respect to TYPE_USER_ALIGN.
28938 (vector_alignment_reachable_p): Likewise. Improve dumping.
28940 2016-01-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28943 * config/arm/arm.md (xordi3): Force constant operand into a register
28946 2016-01-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28948 * doc/invoke.texi (-fstore-merging): Correct default optimization
28949 levels at which it is enabled.
28950 (-O): Move -fstore-merging from list to...
28953 2017-01-25 Richard Biener <rguenther@suse.de>
28956 * omp-expand.c: Include debug.h.
28957 (expand_omp_taskreg): Make sure to generate early debug before
28958 outlining anything from a function.
28959 (expand_omp_target): Likewise.
28960 (grid_expand_target_grid_body): Likewise.
28962 2017-01-25 Maxim Ostapenko <m.ostapenko@samsung.com>
28965 * asan.c (get_translation_unit_decl): New function.
28966 (asan_add_global): Extract modules file name from globals
28967 TRANSLATION_UNIT_DECL name.
28969 2017-01-24 Eric Botcazou <ebotcazou@adacore.com>
28972 * config/arm/arm.c (arm_function_ok_for_sibcall): Add back restriction
28973 for long calls with APCS frame and VFP.
28975 2017-01-24 David Malcolm <dmalcolm@redhat.com>
28977 * cfg.c (original_copy_tables_initialized_p): New function.
28978 * cfg.h (original_copy_tables_initialized_p): New decl.
28979 * cfgrtl.c (relink_block_chain): Guard the call to
28980 free_original_copy_tables with a call to
28981 original_copy_tables_initialized_p.
28982 * cgraph.h (symtab_node::native_rtl_p): New decl.
28983 * cgraphunit.c (symtab_node::native_rtl_p): New function.
28984 (symtab_node::needed_p): Don't assert for early assembly output
28985 for __RTL functions.
28986 (cgraph_node::finalize_function): Set "force_output" for __RTL
28988 (cgraph_node::analyze): Bail out early for __RTL functions.
28989 (analyze_functions): Update assertion to support __RTL functions.
28990 (cgraph_node::expand): Bail out early for __RTL functions.
28991 * final.c (rest_of_clean_state): Don't call delete_tree_ssa for
28993 * function.h (struct function): Update comment for field
28995 * gimple-expr.c: Include "tree-pass.h".
28996 (gimple_has_body_p): Return false for __RTL functions.
28997 * Makefile.in (OBJS): Add run-rtl-passes.o.
28998 * pass_manager.h (gcc::pass_manager::get_rest_of_compilation): New
29000 (gcc::pass_manager::get_clean_slate): New accessor.
29001 * passes.c: Include "insn-addr.h".
29002 (should_skip_pass_p): Add logging. Update logic for running
29003 "expand" to be compatible with both __GIMPLE and __RTL. Guard
29004 property-provider override so it is only done for gimple passes.
29006 (skip_pass): New function.
29007 (execute_one_pass): Call skip_pass when skipping passes.
29008 * read-md.c (md_reader::read_char): Support filtering
29009 the input to a subset of line numbers.
29010 (md_reader::md_reader): Initialize fields
29011 m_first_line and m_last_line.
29012 (md_reader::read_file_fragment): New function.
29013 * read-md.h (md_reader::read_file_fragment): New decl.
29014 (md_reader::m_first_line): New field.
29015 (md_reader::m_last_line): New field.
29016 * read-rtl-function.c (function_reader::create_function): Only
29017 create cfun if it doesn't already exist. Set PROP_rtl on cfun's
29018 curr_properties. Set DECL_INITIAL to a dummy block.
29019 (read_rtl_function_body_from_file_range): New function.
29020 * read-rtl-function.h (read_rtl_function_body_from_file_range):
29022 * run-rtl-passes.c: New file.
29023 * run-rtl-passes.h: New file.
29025 2017-01-24 Jeff Law <law@redhat.com>
29027 * config/microblaze/microblaze.h (ASM_FORMAT_PRIVATE_NAME): Increase
29030 2017-01-24 Bin Cheng <bin.cheng@arm.com>
29032 PR tree-optimization/79159
29033 * tree-ssa-loop-niter.c (get_cst_init_from_scev): New function.
29034 (record_nonwrapping_iv): Improve boundary using above function if no
29035 value range information.
29037 2017-01-24 Pekka Jääskeläinen <pekka@parmance.com>
29038 Martin Jambor <mjambor@suse.cz>
29040 * brig-builtins.def: New file.
29041 * builtins.def (DEF_HSAIL_BUILTIN): New macro.
29042 (DEF_HSAIL_ATOMIC_BUILTIN): Likewise.
29043 (DEF_HSAIL_SAT_BUILTIN): Likewise.
29044 (DEF_HSAIL_INTR_BUILTIN): Likewise.
29045 (DEF_HSAIL_CVT_ZEROI_SAT_BUILTIN): Likewise.
29046 * builtin-types.def (BT_INT8): New.
29047 (BT_INT16): Likewise.
29048 (BT_UINT8): Likewise.
29049 (BT_UINT16): Likewise.
29050 (BT_FN_ULONG): Likewise.
29051 (BT_FN_UINT_INT): Likewise.
29052 (BT_FN_UINT_ULONG): Likewise.
29053 (BT_FN_UINT_LONG): Likewise.
29054 (BT_FN_UINT_PTR): Likewise.
29055 (BT_FN_ULONG_PTR): Likewise.
29056 (BT_FN_INT8_FLOAT): Likewise.
29057 (BT_FN_INT16_FLOAT): Likewise.
29058 (BT_FN_UINT32_FLOAT): Likewise.
29059 (BT_FN_UINT16_FLOAT): Likewise.
29060 (BT_FN_UINT8_FLOAT): Likewise.
29061 (BT_FN_UINT64_FLOAT): Likewise.
29062 (BT_FN_UINT16_UINT32): Likewise.
29063 (BT_FN_UINT32_UINT16): Likewise.
29064 (BT_FN_UINT16_UINT16_UINT16): Likewise.
29065 (BT_FN_INT_PTR_INT): Likewise.
29066 (BT_FN_UINT_PTR_UINT): Likewise.
29067 (BT_FN_LONG_PTR_LONG): Likewise.
29068 (BT_FN_ULONG_PTR_ULONG): Likewise.
29069 (BT_FN_VOID_UINT64_UINT64): Likewise.
29070 (BT_FN_UINT8_UINT8_UINT8): Likewise.
29071 (BT_FN_INT8_INT8_INT8): Likewise.
29072 (BT_FN_INT16_INT16_INT16): Likewise.
29073 (BT_FN_INT_INT_INT): Likewise.
29074 (BT_FN_UINT_FLOAT_UINT): Likewise.
29075 (BT_FN_FLOAT_UINT_UINT): Likewise.
29076 (BT_FN_ULONG_UINT_UINT): Likewise.
29077 (BT_FN_ULONG_UINT_PTR): Likewise.
29078 (BT_FN_ULONG_ULONG_ULONG): Likewise.
29079 (BT_FN_UINT_UINT_UINT): Likewise.
29080 (BT_FN_VOID_UINT_PTR): Likewise.
29081 (BT_FN_UINT_UINT_PTR: Likewise.
29082 (BT_FN_UINT32_UINT64_PTR): Likewise.
29083 (BT_FN_INT_INT_UINT_UINT): Likewise.
29084 (BT_FN_UINT_UINT_UINT_UINT): Likewise.
29085 (BT_FN_UINT_UINT_UINT_PTR): Likewise.
29086 (BT_FN_UINT_ULONG_ULONG_UINT): Likewise.
29087 (BT_FN_ULONG_ULONG_ULONG_ULONG): Likewise.
29088 (BT_FN_LONG_LONG_UINT_UINT): Likewise.
29089 (BT_FN_ULONG_ULONG_UINT_UINT): Likewise.
29090 (BT_FN_VOID_UINT32_UINT64_PTR): Likewise.
29091 (BT_FN_VOID_UINT32_UINT32_PTR): Likewise.
29092 (BT_FN_UINT_UINT_UINT_UINT_UINT): Likewise.
29093 (BT_FN_UINT_FLOAT_FLOAT_FLOAT_FLOAT): Likewise.
29094 (BT_FN_ULONG_ULONG_ULONG_UINT_UINT): Likewise.
29095 * doc/frontends.texi: List BRIG FE.
29096 * doc/install.texi (Testing): Add BRIG tesring requirements.
29097 * doc/invoke.texi (Overall Options): Mention BRIG.
29098 * doc/standards.texi (Standards): Doucment BRIG HSA version.
29100 2017-01-24 Richard Biener <rguenther@suse.de>
29102 PR translation/79208
29103 * ipa-devirt.c (odr_types_equivalent_p): Fix typo in diagnostic.
29105 2017-01-24 Martin Jambor <mjambor@suse.cz>
29108 * ipa-prop.c (ipa_free_all_node_params): Call summary destructor.
29109 * ipa-prop.c (ipa_node_params_t::insert): Initialize fields known_csts
29110 and known_contexts.
29112 2017-01-24 Aldy Hernandez <aldyh@redhat.com>
29114 PR middle-end/79123
29115 * gimple-ssa-warn-alloca.c (alloca_call_type): Make sure
29116 casts from signed to unsigned really don't have a range.
29118 2017-01-24 Markus Trippelsdorf <markus@trippelsdorf.de>
29120 * gimple-ssa-sprintf.c (format_floating): Change MPFR_RNDx to
29121 GMP_RNDx for compatiblity.
29123 2017-01-24 Martin Liska <mliska@suse.cz>
29126 * tree-ssa-reassoc.c (rewrite_expr_tree_parallel): Insert assert
29127 that would prevent us to call alloca with -1 as argument.
29129 2017-01-24 Jakub Jelinek <jakub@redhat.com>
29131 * dwarf2out.c (output_compilation_unit_header, output_file_names):
29132 Avoid -Wformat-security warning.
29134 2017-01-23 Andrew Pinski <apinski@cavium.com>
29136 * config/aarch64/aarch64.c (thunderx2t99_addrcost_table): Improve
29139 2017-01-23 Martin Sebor <msebor@redhat.com>
29141 PR middle-end/78703
29142 * gimple-ssa-sprintf.c (warn_level): New global.
29143 (format_integer): Use it here and throughout the rest of the file.
29144 Use the same switch to compute sign as base.
29145 (maybe_warn): New function.
29146 (format_directive): Factor out warnings into maybe_warn.
29147 Add debugging output. Use warn_level.
29148 (add_bytes): Use warn_level.
29149 (pass_sprintf_length::compute_format_length): Add debugging output.
29150 (try_substitute_return_value): Same.
29151 (pass_sprintf_length::handle_gimple_call): Set and use warn_level.
29153 PR middle-end/78703
29154 * gimple-ssa-sprintf.c (struct format_result): Remove constant member.
29155 (struct fmtresult, format_integer, format_floating): Adjust.
29156 (fmtresult::fmtresult): Set max correctly in two argument ctor.
29157 (get_string_length, format_string,format_directive): Same.
29158 (pass_sprintf_length::compute_format_length): Same.
29159 (try_substitute_return_value): Simplify slightly.
29161 PR middle-end/78703
29162 * gimple-ssa-sprintf.c (pass_sprintf_length::gate): Adjust formatting.
29163 (fmtresult::operator+=): Outlined.
29164 (struct fmtresult): Add ctors.
29165 (struct conversion_spec): Rename...
29166 (struct directive): ...to this. Add and remove data members.
29167 (directive::set_width, directive::set_precision): New functions.
29168 (format_percent): Use fmtresult ctor.
29169 (get_width_and_precision): Remove.
29170 (format_integer): Make naming changes. Avoid computing width and
29172 (format_floating): Same. Adjust indentation.
29173 (format_character, format_none): New functions.
29174 (format_string): Moved character handling to format_character.
29175 (format_directive): Remove arguments, change return type.
29176 (parse_directive): New function.
29177 (pass_sprintf_length::compute_format_length): Move directive
29178 parsing to parse_directive.
29180 2017-01-23 Jakub Jelinek <jakub@redhat.com>
29182 * tree.h (assign_assembler_name_if_neeeded): Rename to ...
29183 (assign_assembler_name_if_needed): ... this.
29184 * tree.c (assign_assembler_name_if_neeeded): Rename to ...
29185 (assign_assembler_name_if_needed): ... this.
29186 (free_lang_data_in_cgraph): Adjust callers.
29187 * cgraphunit.c (cgraph_node::analyze): Likewise.
29188 * omp-expand.c (expand_omp_taskreg, expand_omp_target):
29191 2017-01-23 Richard Biener <rguenther@suse.de>
29193 PR tree-optimization/79088
29194 PR tree-optimization/79188
29195 * tree-ssa-threadupdate.c (mark_threaded_blocks): Move code
29196 resetting loop bounds after last path deletion. Reset loop
29197 bounds of the target loop, make code match the comments.
29198 * tree-ssa-threadbackwards.c (pass_early_thread_jumps::execute):
29199 Make sure loops need no fixups.
29201 2017-01-23 Kelvin Nilsen <kelvin@gcc.gnu.org>
29203 * config/rs6000/rs6000-builtin.def (VSIEDPF): Add scalar insert
29204 exponent support with double type for first argument.
29205 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Changed
29206 type returned by __builtin_vec_extract_sig,
29207 __builtin_vec_extract_sig_sp, and __builtin_vec_extract_sig_dp
29208 functions from "vector int" to "vector unsigned int" or from
29209 "vector long long int" to "vector unsigned long long int".
29210 Changed type returned by __builtin_vec_extract_exp,
29211 __builtin_vec_extract_exp_sp, and __builtin_vec_extract_exp_dp
29212 functions from "vector int" to "vector unsigned int" or from
29213 "vector long long int" to "vector unsigned long long int".
29214 Changed return type of __builtin_vec_test_data_class,
29215 __builtin_vec_test_data_class_sp, and
29216 __builtin_vec_test_data_class_dp from "vector int" to
29217 "vector bool int" or from "vector long long int" to "vector bool
29218 long long int" and changed second argument type from "unsigned
29219 int" to "int". Added new overloaded function forms "vector float
29220 __builtin_vec_insert_exp (vector float, vector unsigned int)" and
29221 "vector float __builtin_vec_insert_exp_sp (vector float, vector
29222 unsigned int)" and "vector double __builtin_vec_insert_exp (vector
29223 double, vector unsigned long long int)" and "vector double
29224 __builtin_vec_insert_exp_dp (vector double, vector unsigned long
29225 long int)". Changed return type of
29226 __builtin_scalar_test_data_class and
29227 __builtin_scalar_test_data_class_sp and
29228 __builtin_scalar_test_data_class_dp from "unsigned int" to "bool
29229 int" and changed second argument from "unsigned int" to "int".
29230 Changed type returned by __builtin_scalar_test_neg,
29231 __builtin_scalar_test_neg_sp, and __builtin_scalar_test_neg_dp
29232 from "int" to "bool int". Added new overloaded function form
29233 "double __builtin_scalar_insert_exp (double, unsigned long long int)".
29234 * config/rs6000/vsx.md (xsiexpdpf): New insn for scalar insert
29235 exponent double-precision with floating point first argument.
29236 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Adjust
29237 documentation of scalar_test_data_class, scalar_test_neg,
29238 scalar_extract_sig, scalar_extract_exp, scalar_insert_exp,
29239 vector_extract_exp, vec_extract_sig, vec_insert_exp, and
29240 vec_test_data_class built-in functions to reflect refinements in
29241 their type signatures.
29243 2017-01-23 Andreas Tobler <andreast@gcc.gnu.org>
29245 * config/aarch64/aarch64.c (aarch64_elf_asm_constructor): Increase
29247 (aarch64_elf_asm_destructor): Likewise.
29249 2017-01-23 Bernd Schmidt <bschmidt@redhat.com>
29251 PR rtl-optimization/78634
29252 * config/i386/i386.c (ix86_max_noce_ifcvt_seq_cost): New function.
29253 (TARGET_MAX_NOCE_IFCVT_SEQ_COST): Define.
29254 * ifcvt.c (noce_try_cmove): Add missing cost check.
29256 PR rtl-optimization/71724
29257 * combine.c (if_then_else_cond): Look for situations where it is
29258 beneficial to undo the work of one of the recursive calls.
29260 2017-01-23 Bin Cheng <bin.cheng@arm.com>
29262 PR tree-optimization/70754
29263 * tree-predcom.c (stmt_combining_refs): New parameter INSERT_BEFORE.
29264 (reassociate_to_the_same_stmt): New parameter INSERT_BEFORE. Insert
29265 combined stmt before it if not NULL.
29266 (combine_chains): Process refs reversely and compute dominance point
29269 2017-01-23 Martin Liska <mliska@suse.cz>
29271 PR tree-optimization/79196
29272 * tree-ssa-strlen.c (fold_strstr_to_memcmp): Rename to ...
29273 (fold_strstr_to_strncmp): ... this. Fold the pattern to strncmp
29275 (strlen_optimize_stmt): Call the renamed function.
29277 2017-01-23 Michael Matz <matz@suse.de>
29279 PR tree-optimization/78384
29280 * tree-ssa-loop-split.c (patch_loop_exit): Use correct edge.
29282 2017-01-23 Richard Biener <rguenther@suse.de>
29284 PR tree-optimization/79186
29285 * tree-vrp.c (register_new_assert_for): Make sure we've seen
29286 both incoming edges before moving an assert.
29288 2017-01-23 Martin Jambor <mjambor@suse.cz>
29290 * ipa-prop.c (load_from_param_1): Removed.
29291 (load_from_unmodified_param): Bits from load_from_param_1 put back
29293 (load_from_param): Removed.
29294 (compute_complex_assign_jump_func): Removed stmt2 and just replaced it
29295 with stmt. Reverted back to use of load_from_unmodified_param.
29297 2017-01-23 Martin Jambor <mjambor@suse.cz>
29300 * ipa-prop.h (ipa_param_descriptor): Anotate with with GTY(()).
29301 (ipa_node_params): Annotate with GTY((for_user)). Make descriptors
29302 field a pointer to garbage collected vector, mark lattices and
29303 ipcp_orig_node with GTY((skip)).
29304 (ipa_get_param_count): Adjust to descriptors being a pointer.
29305 (ipa_get_param): Likewise.
29306 (ipa_get_type): Likewise.
29307 (ipa_get_param_move_cost): Likewise.
29308 (ipa_set_param_used): Likewise.
29309 (ipa_get_controlled_uses): Likewise.
29310 (ipa_set_controlled_uses): Likewise.
29311 (ipa_is_param_used): Likewise.
29312 (ipa_node_params_t): Move into garbage collector. New methods insert
29314 (ipa_node_params_sum): Annotate wth GTY(()).
29315 (ipa_check_create_node_params): Adjust to ipa_node_params_sum being
29317 (ipa_load_from_parm_agg): Adjust declaration.
29318 * ipa-icf.c (param_used_p): Adjust to descriptors being a pointer.
29319 * ipa-profile.c (ipa_profile): Likewise.
29320 * ipa-prop.c (ipa_get_param_decl_index_1): Likewise.
29321 (ipa_populate_param_decls): Make descriptors parameter garbage
29323 (ipa_dump_param): Adjust to descriptors being a pointer.
29324 (ipa_alloc_node_params): Likewise.
29325 (ipa_initialize_node_params): Likewise.
29326 (load_from_param_1): Make descriptors parameter garbage collected.
29327 (load_from_unmodified_param): Likewise.
29328 (load_from_param): Likewise.
29329 (ipa_load_from_parm_agg): Likewise.
29330 (ipa_node_params::~ipa_node_params): Removed.
29331 (ipa_free_all_node_params): Remove call to delete operator.
29332 (ipa_node_params_t::insert): New.
29333 (ipa_node_params_t::remove): Likewise.
29334 (ipa_node_params_t::duplicate): Adjust to descriptors being a pointer,
29335 copy known_csts and known_contexts vectors.
29336 (ipa_read_node_info): Adjust to descriptors being a pointer.
29337 (ipcp_modif_dom_walker): Make m_descriptors field garbage
29339 (ipcp_transform_function): Make descriptors variable garbage
29342 2017-01-23 Andrew Senkevich <andrew.senkevich@intel.com>
29344 * config/i386/avx512bwintrin.h: Add k-mask test, kortest intrinsics.
29345 * config/i386/avx512dqintrin.h: Ditto.
29346 * config/i386/avx512fintrin.h: Ditto.
29347 * config/i386/i386.c: Handle new builtins.
29348 * config/i386/i386-builtin.def: Add new builtins.
29349 * config/i386/sse.md (ktest<mode>, kortest<mode>): New.
29350 (UNSPEC_KORTEST, UNSPEC_KTEST): New.
29352 2017-01-23 Jakub Jelinek <jakub@redhat.com>
29353 Martin Liska <mliska@suse.cz>
29355 * asan.h: Define ASAN_USE_AFTER_SCOPE_ATTRIBUTE.
29356 * asan.c (asan_expand_poison_ifn): Support stores and use
29357 appropriate ASAN report function.
29358 * internal-fn.c (expand_ASAN_POISON_USE): New function.
29359 * internal-fn.def (ASAN_POISON_USE): Declare.
29360 * tree-into-ssa.c (maybe_add_asan_poison_write): New function.
29361 (maybe_register_def): Create ASAN_POISON_USE when sanitizing.
29362 * tree-ssa-dce.c (eliminate_unnecessary_stmts): Remove
29363 ASAN_POISON calls w/o LHS.
29364 * tree-ssa.c (execute_update_addresses_taken): Create clobber
29365 for ASAN_MARK (UNPOISON, &x, ...) in order to prevent usage of a LHS
29366 from ASAN_MARK (POISON, &x, ...) coming to a PHI node.
29367 * gimplify.c (asan_poison_variables): Add attribute
29368 use_after_scope_memory to variables that really needs to live
29370 * tree-ssa.c (is_asan_mark_p): Do not rewrite into SSA when
29371 having the attribute.
29373 2017-01-23 Martin Liska <mliska@suse.cz>
29375 * asan.c (create_asan_shadow_var): New function.
29376 (asan_expand_poison_ifn): Likewise.
29377 * asan.h (asan_expand_poison_ifn): New declaration.
29378 * internal-fn.c (expand_ASAN_POISON): Likewise.
29379 * internal-fn.def (ASAN_POISON): New builtin.
29380 * sanopt.c (pass_sanopt::execute): Expand
29381 asan_expand_poison_ifn.
29382 * tree-inline.c (copy_decl_for_dup_finish): Make function
29384 * tree-inline.h (copy_decl_for_dup_finish): Likewise.
29385 * tree-ssa.c (is_asan_mark_p): New function.
29386 (execute_update_addresses_taken): Rewrite local variables
29387 (identified just by use-after-scope as addressable) into SSA.
29389 2017-01-22 Gerald Pfeifer <gerald@pfeifer.com>
29391 * doc/install.texi (Specific): opensource.apple.com uses https
29392 now. Remove trailing slash.
29394 2017-01-22 Gerald Pfeifer <gerald@pfeifer.com>
29396 * README.Portability: Remove note on an Irix compatibility issue.
29398 2017-01-22 Dimitry Andric <dim@FreeBSD.org>
29400 * gcov.c (INCLUDE_ALGORITHM): Define.
29401 (INCLUDE_VECTOR): Define.
29402 No longer include <vector> and <algorithm> directly.
29404 2017-01-21 Gerald Pfeifer <gerald@pfeifer.com>
29406 * doc/extend.texi (Thread-Local): Change www.akkadia.org reference
29408 * doc/invoke.texi (Code Gen Options): Ditto.
29410 2017-01-21 Jan Hubicka <hubicka@ucw.cz>
29413 * cfg.c (update_bb_profile_for_threading): Fix updating of probablity.
29415 2017-01-21 Bernd Schmidt <bschmidt@redhat.com>
29417 rtl-optimization/79125
29418 * cprop.c (local_cprop_pass): Handle cases where we make an
29419 unconditional trap.
29421 2017-01-20 Segher Boessenkool <segher@kernel.crashing.org>
29425 * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Adjust address to
29426 read from, for big endian.
29428 2017-01-20 Jiong Wang <jiong.wang@arm.com>
29430 * config/aarch64/aarch64-builtins.c (aarch64_init_builtins): Register
29431 register pauth builtins for LP64 only.
29433 2017-01-20 Marek Polacek <polacek@redhat.com>
29436 * gimplify.c (should_warn_for_implicit_fallthrough): Handle consecutive
29439 2017-01-20 Alexander Monakov <amonakov@ispras.ru>
29441 * omp-expand.c (expand_omp_simd): Clear PROP_gimple_lomp_dev regardless
29443 * omp-offload.c (pass_omp_device_lower::gate): Use PROP_gimple_lomp_dev.
29444 * passes.c (dump_properties): Handle PROP_gimple_lomp_dev.
29445 * tree-inline.c (expand_call_inline): Propagate PROP_gimple_lomp_dev.
29447 2017-01-20 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29450 * config/arm/arm.c (neon_valid_immediate): Reject vector constants
29451 in big-endian mode when they are not a single duplicated value.
29453 2017-01-20 Richard Biener <rguenther@suse.de>
29455 * BASE-VER: Bump to 7.0.1.
29457 2017-01-20 Alexander Monakov <amonakov@ispras.ru>
29459 * omp-low.c (omplow_simd_context): New struct. Use it...
29460 (lower_rec_simd_input_clauses): ...here and...
29461 (lower_rec_input_clauses): ...here to hold common data. Adjust all
29462 references to idx, lane, max_vf, is_simt.
29464 2017-01-20 Graham Markall <graham.markall@embecosm.com>
29466 * config/arc/arc.h (LINK_SPEC): Use arclinux_nps emulation when
29469 2017-01-20 Martin Jambor <mjambor@suse.cz>
29471 * hsa.h: Renaed to hsa-common.h. Adjusted a comment.
29472 * hsa.c: Renaed to hsa-common.c. Change include of gt-hsa.h to
29474 * Makefile.in (OBJS): Rename hsa.o to hsa-common.o.
29475 (GTFILES): Rename hsa.c to hsa-common.c.
29476 * hsa-brig.c: Change include of hsa.h to hsa-common.h.
29477 * hsa-dump.c: Likewise.
29478 * hsa-gen.c: Likewise.
29479 * hsa-regalloc.c: Likewise.
29480 * ipa-hsa.c: Likewise.
29481 * omp-expand.c: Likewise.
29482 * omp-low.c: Likewise.
29483 * toplev.c: Likewise.
29485 2017-01-20 Marek Polacek <polacek@redhat.com>
29488 * doc/invoke.texi: Document -Wduplicated-branches.
29489 * fold-const.c (operand_equal_p): Handle MODIFY_EXPR, INIT_EXPR,
29490 COMPOUND_EXPR, PREDECREMENT_EXPR, PREINCREMENT_EXPR,
29491 POSTDECREMENT_EXPR, POSTINCREMENT_EXPR, CLEANUP_POINT_EXPR, EXPR_STMT,
29492 STATEMENT_LIST, and RETURN_EXPR. For non-pure non-const functions
29493 return 0 only when not OEP_LEXICOGRAPHIC.
29494 (fold_build_cleanup_point_expr): Use the expression
29495 location when building CLEANUP_POINT_EXPR.
29496 * tree-core.h (enum operand_equal_flag): Add OEP_LEXICOGRAPHIC.
29497 * tree.c (add_expr): Handle error_mark_node.
29499 2017-01-20 Martin Liska <mliska@suse.cz>
29502 * tree-profile.c (init_ic_make_global_vars): Do not call
29504 (gimple_init_gcov_profiler): Likewise.
29506 2017-01-20 Martin Liska <mliska@suse.cz>
29509 * cgraph.h (maybe_create_reference): Remove argument and
29511 * cgraphclones.c (cgraph_node::create_virtual_clone): Remove one
29513 * ipa-cp.c (create_specialized_node): Likewise.
29514 * symtab.c (symtab_node::maybe_create_reference): Handle
29515 VAR_DECLs and ADDR_EXPRs and select ipa_ref_use type.
29517 2017-01-20 Martin Liska <mliska@suse.cz>
29519 * read-rtl-function.c (function_reader::create_function): Use
29520 build_decl instread of build_decl_stat.
29522 2017-01-20 Andrew Senkevich <andrew.senkevich@intel.com>
29524 * config/i386/avx512bwintrin.h: Add k-mask registers shift intrinsics.
29525 * config/i386/avx512dqintrin.h: Ditto.
29526 * config/i386/avx512fintrin.h: Ditto.
29527 * config/i386/i386-builtin-types.def: Add new types.
29528 * config/i386/i386.c: Handle new types.
29529 * config/i386/i386-builtin.def (__builtin_ia32_kshiftliqi)
29530 (__builtin_ia32_kshiftlihi, __builtin_ia32_kshiftlisi)
29531 (__builtin_ia32_kshiftlidi, __builtin_ia32_kshiftriqi)
29532 (__builtin_ia32_kshiftrihi, __builtin_ia32_kshiftrisi)
29533 (__builtin_ia32_kshiftridi): New.
29534 * config/i386/sse.md (k<code><mode>): Rename *k<code><mode>.
29536 2017-01-19 Segher Boessenkool <segher@kernel.crashing.org>
29540 * config/rs6000/rs6000.c (TARGET_STACK_PROTECT_GUARD): Unconditionally
29541 define to rs6000_init_stack_protect_guard.
29542 (rs6000_init_stack_protect_guard): New function.
29544 2017-01-19 Matthew Fortune <matthew.fortune@imgtec.com>
29545 Yunqiang Su <yunqiang.su@imgtec.com>
29547 * config.gcc (supported_defaults): Add madd4.
29548 (with_madd4): Add validation.
29549 (all_defaults): Add madd4.
29550 * config/mips/mips.opt (mmadd4): New option.
29551 * config/mips/mips.h (OPTION_DEFAULT_SPECS): Add a default for
29553 (TARGET_CPU_CPP_BUILTINS): Add builtin_define for
29555 (ISA_HAS_UNFUSED_MADD4): Gate with mips_madd4.
29556 (ISA_HAS_FUSED_MADD4): Likewise.
29557 * doc/invoke.texi (-mmadd4): Document the new option.
29558 * doc/install.texi (--with-madd4): Document the new option.
29560 2017-01-19 Jiong Wang <jiong.wang@arm.com>
29562 * config/aarch64/aarch64-builtins.c (enum aarch64_builtins): New
29563 entries for AARCH64_PAUTH_BUILTIN_XPACLRI,
29564 AARCH64_PAUTH_BUILTIN_PACIA1716, AARCH64_PAUTH_BUILTIN_AUTIA1716.
29565 (aarch64_init_pauth_hint_builtins): New.
29566 (aarch64_init_builtins): Call aarch64_init_pauth_hint_builtins.
29567 (aarch64_expand_builtin): Expand new builtins.
29569 2017-01-19 Jiong Wang <jiong.wang@arm.com>
29571 * reg-notes.def (CFA_TOGGLE_RA_MANGLE): New reg-note.
29572 * combine-stack-adj.c (no_unhandled_cfa): Handle
29573 REG_CFA_TOGGLE_RA_MANGLE.
29574 * dwarf2cfi.c (dwarf2out_frame_debug): Handle REG_CFA_TOGGLE_RA_MANGLE.
29575 * config/aarch64/aarch64.c (aarch64_expand_prologue): Generates DWARF
29576 info for return address signing.
29577 (aarch64_expand_epilogue): Likewise.
29579 2017-01-19 Jiong Wang <jiong.wang@arm.com>
29581 * config/aarch64/aarch64-opts.h (aarch64_function_type): New enum.
29582 * config/aarch64/aarch64-protos.h
29583 (aarch64_return_address_signing_enabled): New declaration.
29584 * config/aarch64/aarch64.c (aarch64_return_address_signing_enabled):
29586 (aarch64_expand_prologue): Sign return address before it's pushed onto
29588 (aarch64_expand_epilogue): Authenticate return address fetched from
29590 (aarch64_override_options): Sanity check for ILP32 and ISA level.
29591 (aarch64_attributes): New function attributes for "sign-return-address".
29592 * config/aarch64/aarch64.md (UNSPEC_AUTI1716, UNSPEC_AUTISP,
29593 UNSPEC_PACI1716, UNSPEC_PACISP, UNSPEC_XPACLRI): New unspecs.
29594 ("*do_return"): Generate combined instructions according to key index.
29595 ("<pauth_mnem_prefix>sp", "<pauth_mnem_prefix1716", "xpaclri"): New.
29596 * config/aarch64/iterators.md (PAUTH_LR_SP, PAUTH_17_16): New integer
29598 (pauth_mnem_prefix, pauth_hint_num_a): New integer attributes.
29599 * config/aarch64/aarch64.opt (msign-return-address=): New.
29600 * doc/extend.texi (AArch64 Function Attributes): Documents
29601 "sign-return-address=".
29602 * doc/invoke.texi (AArch64 Options): Documents "-msign-return-address=".
29604 2017-01-19 Matthew Fortune <matthew.fortune@imgtec.com>
29606 * doc/invoke.texi: Add missing -mlxc1-sxc1 options to
29607 overall option summary.
29609 2017-01-19 Jiong Wang <jiong.wang@arm.com>
29611 * config/aarch64/aarch64-arches.def: New entry for "armv8.3-a".
29612 * config/aarch64/aarch64.h (AARCH64_FL_V8_3, AARCH64_FL_FOR_ARCH8_3,
29613 AARCH64_ISA_V8_3, TARGET_ARMV8_3): New.
29614 * doc/invoke.texi (AArch64 Options): Document "armv8.3-a".
29616 2017-01-19 Michael Meissner <meissner@linux.vnet.ibm.com>
29618 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Enable
29619 -mpower9-minmax by default for -mcpu=power9.
29620 (ISA_3_MASKS_IEEE): Require -mvsx-small-integer to enable IEEE
29621 128-bit floating point.
29623 2017-01-20 Alan Modra <amodra@gmail.com>
29625 * config/rs6000/rs6000.md (cmpstrnsi, cmpstrsi): Fail if
29626 optimizing for size.
29628 2017-01-20 Alan Modra <amodra@gmail.com>
29631 * config/rs6000/rs6000.c (expand_strn_compare): Get the asm name
29632 for strcmp and strncmp from corresponding builtin decl.
29634 2017-01-19 Uros Bizjak <ubizjak@gmail.com>
29636 * config.gcc (x86_64-*-rtems*): Use i386/rtemself.h
29637 instead of i386/rtems-64.h.
29638 * config/i386/rtems-64.h: Remove.
29640 2017-01-19 Uros Bizjak <ubizjak@gmail.com>
29644 2013-11-05 Uros Bizjak <ubizjak@gmail.com>
29646 * config/i386/rtemself.h (LONG_DOUBLE_TYPE_SIZE): New define.
29648 2017-01-19 Tamar Christina <tamar.christina@arm.com>
29650 * config/aarch64/aarch64.c (aarch64_simd_gen_const_vector_dup):
29651 Change int to HOST_WIDE_INT.
29652 * config/aarch64/aarch64-protos.h
29653 (aarch64_simd_gen_const_vector_dup): Likewise.
29654 * config/aarch64/aarch64-simd.md: Add copysign<mode>3.
29656 2017-01-19 David Malcolm <dmalcolm@redhat.com>
29658 * langhooks-def.h (lhd_type_for_size): New decl.
29659 (LANG_HOOKS_TYPE_FOR_SIZE): Define as lhd_type_for_size.
29660 * langhooks.c (lhd_type_for_size): New function, taken from
29663 2017-01-19 Pat Haugen <pthaugen@us.ibm.com>
29665 * config/rs6000/power9.md (power9-alu): Remove 'cmp' type and add
29666 define_bypass for CR latency.
29667 (power9-cracked-alu): Update bypass latency and remove power9-branch.
29668 (power9-alu2): Add define_bypass for CR latency.
29670 (power9-mul): Update insn latency.
29671 (power9-mul-compare): Update insn latency, bypass latency and remove
29674 2016-01-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29676 * config/aarch64/aarch64-protos.h (aarch64_nopcrelative_literal_loads):
29678 * config/aarch64/aarch64.md
29679 (aarch64_reload_movcp<GPF_TF:mode><P:mode>): Delete reference to
29680 aarch64_nopcrelative_literal_loads.
29681 (aarch64_reload_movcp<VALL:mode><P:mode>): Likewise.
29683 2017-01-19 Chenghua Xu <paul.hua.gm@gmail.com>
29685 * config/mips/mips.h (ISA_HAS_FUSED_MADD4): Enable for
29686 TARGET_LOONGSON_3A.
29687 (ISA_HAS_UNFUSED_MADD4): Exclude TARGET_LOONGSON_3A.
29689 2017-01-19 Doug Gilmore <doug.gilmore@imgtec.com>
29692 * config.gcc (supported_defaults): Add lxc1-sxc1.
29693 (with_lxc1_sxc1): Add validation.
29694 (all_defaults): Add lxc1-sxc1.
29695 * config/mips/mips.opt (mlxc1-sxc1): New option.
29696 * config/mips/mips.h (OPTION_DEFAULT_SPECS): Add a default for
29698 (TARGET_CPU_CPP_BUILTINS): Add builtin_define for
29699 __mips_no_lxc1_sxc1.
29700 (ISA_HAS_LXC1_SXC1): Gate with mips_lxc1_sxc1.
29701 * doc/invoke.texi (-mlxc1-sxc1): Document the new option.
29702 * doc/install.texi (--with-lxc1-sxc1): Document the new option.
29704 2017-01-19 Richard Biener <rguenther@suse.de>
29706 PR tree-optimization/72488
29707 * tree-ssa-sccvn.c (run_scc_vn): When we abort the VN make
29708 sure to restore SSA info.
29709 * tree-ssa.c (verify_ssa): Verify SSA info is not shared.
29711 2017-01-19 Richard Earnshaw <rearnsha@arm.com>
29713 PR rtl-optimization/79121
29714 * expr.c (expand_expr_real_2, case LSHIFT_EXPR): Look at the signedness
29715 of the inner type when shifting an extended value.
29717 2017-01-17 Jan Hubicka <hubicka@ucw.cz>
29720 * symtab.c (symtab_node::equal_address_to): Fix comparing of
29721 interposable aliases.
29723 2017-01-18 Peter Bergner <bergner@vnet.ibm.com>
29726 * config/rs6000/spe.md (mov_si<mode>_e500_subreg0): Fix constraints.
29727 Use the evmergelohi instruction.
29728 (mov_si<mode>_e500_subreg4_2_le): Likewise.
29729 (mov_sitf_e500_subreg8_2_be): Likewise.
29730 (mov_sitf_e500_subreg12_2_le): Likewise.
29731 (mov_si<mode>_e500_subreg0_2_le): Fix constraints.
29732 (mov_si<mode>_e500_subreg4_2_be): Likewise.
29733 (mov_sitf_e500_subreg8_2_le): Likewise.
29734 (mov_sitf_e500_subreg12_2_be): Likewise.
29736 2017-01-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
29738 * config/rs6000/altivec.md (altivec_vbpermq): Change "type"
29739 attribute from vecsimple to vecperm.
29740 (altivec_vbpermq2): Likewise.
29742 2017-01-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
29745 * config/rs6000/altivec.h: Fix typo of vec_cntlz to vec_cnttz.
29747 2017-01-18 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
29748 * config/rs6000/rs6000-protos.h (expand_strn_compare): Add arg.
29749 * config/rs6000/rs6000.c (expand_strn_compare): Add ability to expand
29750 strcmp. Fix bug where comparison didn't stop with zero byte. Fix
29751 case where N arg is SIZE_MAX.
29752 * config/rs6000/rs6000.md (cmpstrnsi): Args to expand_strn_compare.
29753 (cmpstrsi): Add pattern.
29755 2017-01-18 Michael Meissner <meissner@linux.vnet.ibm.com>
29757 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
29758 __builtin_vec_revb builtins.
29759 * config/rs6000/rs6000-builtins.def (P9V_BUILTIN_XXBRQ_V16QI): Add
29760 built-in functions to support generation of the ISA 3.0 XXBR<x>
29761 vector byte reverse instructions.
29762 (P9V_BUILTIN_XXBRQ_V1TI): Likewise.
29763 (P9V_BUILTIN_XXBRD_V2DI): Likewise.
29764 (P9V_BUILTIN_XXBRD_V2DF): Likewise.
29765 (P9V_BUILTIN_XXBGW_V4SI): Likewise.
29766 (P9V_BUILTIN_XXBGW_V4SF): Likewise.
29767 (P9V_BUILTIN_XXBGH_V8HI): Likewise.
29768 (P9V_BUILTIN_VEC_REVB): Likewise.
29769 * config/rs6000/vsx.md (p9_xxbrq_v1ti): New insns/expanders to
29770 generate the ISA 3.0 XXBR<x> vector byte reverse instructions.
29771 (p9_xxbrq_v16qi): Likewise.
29772 (p9_xxbrd_<mode>, VSX_D iterator): Likewise.
29773 (p9_xxbrw_<mode>, VSX_W iterator): Likewise.
29774 (p9_xxbrh_v8hi): Likewise.
29775 * config/rs6000/altivec.h (vec_revb): Define if ISA 3.0.
29776 * doc/extend.texi (RS/6000 Altivec Built-ins): Document the
29777 vec_revb built-in functions.
29779 2017-01-18 Uros Bizjak <ubizjak@gmail.com>
29781 PR rtl-optimization/78952
29782 * config/i386/i386.md (any_extract): New code iterator.
29783 (*insvqi_2): Use any_extract for source operand.
29784 (*insvqi_3): Use any_shiftrt for source operand.
29786 2017-01-18 Wilco Dijkstra <wdijkstr@arm.com>
29788 * config/aarch64/aarch64.c (aarch64_sched_adjust_priority)
29790 (TARGET_SCHED_ADJUST_PRIORITY): Define target hook.
29792 2017-01-18 Matthias Klose <doko@ubuntu.com>
29794 * doc/install.texi: Allow default for --with-target-bdw-gc-include.
29796 2016-01-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
29798 * config/rs6000/altivec.h (vec_bperm): Change #define.
29799 * config/rs6000/altivec.md (UNSPEC_VBPERMD): New enum constant.
29800 (altivec_vbpermq2): New define_insn.
29801 (altivec_vbpermd): Likewise.
29802 * config/rs6000/rs6000-builtin.def (VBPERMQ2): New monomorphic
29803 function interface.
29804 (VBPERMD): Likewise.
29805 (VBPERM): New polymorphic function interface.
29806 * config/rs6000/r6000-c.c (altivec_overloaded_builtins_table):
29807 Add entries for P9V_BUILTIN_VEC_VBPERM.
29808 * doc/extend.texi: Add interfaces for vec_bperm.
29810 2017-01-18 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
29812 * config/s390/s390-c.c (s390_expand_overloaded_builtin): Downcase
29813 first letter of error messages.
29814 (s390_resolve_overloaded_builtin): Likewise.
29815 * config/s390/s390.c (s390_expand_builtin): Likewise.
29816 (s390_invalid_arg_for_unprototyped_fn): Likewise.
29817 (s390_valid_target_attribute_inner_p): Likewise.
29818 * config/s390/s390.md ("tabort"): Likewise.
29820 2017-01-18 Toma Tabacu <toma.tabacu@imgtec.com>
29822 * config/mips/mips.h (ISA_HAS_DIV3): Remove unused macro.
29823 (ISA_AVOID_DIV_HILO): New macro.
29824 (ISA_HAS_DIV): Use new ISA_AVOID_DIV_HILO macro.
29825 (ISA_HAS_DDIV): Likewise.
29827 2017-01-18 Markus Trippelsdorf <markus@trippelsdorf.de>
29829 * doc/invoke.texi (fabi-version): Correct number of occurrences.
29831 2017-01-18 Markus Trippelsdorf <markus@trippelsdorf.de>
29833 * doc/invoke.texi (fabi-version): Spelling fix.
29835 2017-01-18 Markus Trippelsdorf <markus@trippelsdorf.de>
29838 * doc/invoke.texi (fabi-version): Mention mangling fix for
29841 2017-01-18 Markus Trippelsdorf <markus@trippelsdorf.de>
29844 * doc/invoke.texi (fabi-version): Document discriminator mangling.
29846 2017-01-17 Segher Boessenkool <segher@kernel.crashing.org>
29849 * config/rs6000/rs6000-opts.h (stack_protector_guard): New enum.
29850 * config/rs6000/rs6000.c (rs6000_option_override_internal): Handle
29852 * config/rs6000/rs6000.md (stack_protect_set): Handle the new more
29854 (stack_protect_test): Ditto.
29855 * config/rs6000/rs6000.opt (mstack-protector-guard=,
29856 mstack-protector-guard-reg=, mstack-protector-guard-offset=): New
29858 * doc/invoke.texi (Option Summary) [RS/6000 and PowerPC Options]:
29859 Add -mstack-protector-guard=, -mstack-protector-guard-reg=, and
29860 -mstack-protector-guard-offset=.
29861 (RS/6000 and PowerPC Options): Ditto.
29863 2017-01-17 Uros Bizjak <ubizjak@gmail.com>
29865 * config/i386/i386.h (MASK_CLASS_P): New define.
29866 * config/i386/i386.c (inline_secondary_memory_needed): Ensure that
29867 there are no registers from different register sets also when
29868 mask registers are used. Update function comment.
29869 * config/i386/i386.md (*movsi_internal): Split (*k/*krm) alternative
29870 to (*k/*r) and (*k/*km) alternatives.
29872 2017-01-17 Wilco Dijkstra <wdijkstr@arm.com>
29874 * config/aarch64/aarch64.md (eh_return): Remove pattern and splitter.
29875 * config/aarch64/aarch64.h (AARCH64_EH_STACKADJ_REGNUM): Remove.
29876 (EH_RETURN_HANDLER_RTX): New define.
29877 * config/aarch64/aarch64.c (aarch64_frame_pointer_required):
29878 Force frame pointer in EH return functions.
29879 (aarch64_expand_epilogue): Add barrier for eh_return.
29880 (aarch64_final_eh_return_addr): Remove.
29881 (aarch64_eh_return_handler_rtx): New function.
29882 * config/aarch64/aarch64-protos.h (aarch64_final_eh_return_addr):
29884 (aarch64_eh_return_handler_rtx): New prototype.
29886 2017-01-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
29888 * config/rs6000/altivec.h (vec_rlmi): New #define.
29889 (vec_vrlnm): Likewise.
29890 (vec_rlnm): Likewise.
29891 * config/rs6000/altivec.md (UNSPEC_VRLMI): New UNSPEC enum value.
29892 (UNSPEC_VRLNM): Likewise.
29893 (VIlong): New mode iterator.
29894 (altivec_vrl<VI_char>mi): New define_insn.
29895 (altivec_vrl<VI_char>nm): Likewise.
29896 * config/rs6000/rs6000-builtin.def (VRLWNM): New monomorphic
29898 (VRLDNM): Likewise.
29899 (RLNM): New polymorphic function entry.
29900 (VRLWMI): New monomorphic function entry.
29901 (VRLDMI): Likewise.
29902 (RLMI): New polymorphic function entry.
29903 * config/rs6000/r6000-c.c (altivec_overloaded_builtin_table): Add
29904 new entries for P9V_BUILTIN_VEC_RLMI and P9V_BUILTIN_VEC_RLNM.
29905 * doc/extend.texi: Add description of vec_rlmi, vec_rlnm, and
29908 2017-01-17 Jakub Jelinek <jakub@redhat.com>
29911 * dwarf2out.c (field_byte_offset): Restore the
29912 PCC_BITFIELD_TYPE_MATTERS behavior for INTEGER_CST DECL_FIELD_OFFSET
29913 and DECL_FIELD_BIT_OFFSET. Use fold_build2 instead of build2 + fold.
29914 (analyze_variants_discr, gen_variant_part): Use fold_build2 instead
29917 2017-01-17 Eric Botcazou <ebotcazou@adacore.com>
29920 * config/aarch64/aarch64.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Define
29922 2017-01-17 Jakub Jelinek <jakub@redhat.com>
29925 * dwarf2out.c (add_data_member_location_attribute): For constant
29926 offset bitfield emit for -gdwarf-5 DW_AT_data_bit_offset attribute
29927 instead of DW_AT_data_member_location, DW_AT_bit_offset and
29928 DW_AT_byte_size attributes.
29930 2017-01-17 Eric Botcazou <ebotcazou@adacore.com>
29932 * config/rs6000/rs6000.c (rs6000_emit_move): Also use a TOC reference
29933 after forcing to constant memory when the code model is medium.
29935 2017-01-17 Julia Koval <julia.koval@intel.com>
29938 * config/i386/avx512fintrin.h
29939 (_mm512_i32gather_ps): Change __addr type to void const*.
29940 (_mm512_mask_i32gather_ps): Ditto.
29941 (_mm512_i32gather_pd): Ditto.
29942 (_mm512_mask_i32gather_pd): Ditto.
29943 (_mm512_i64gather_ps): Ditto.
29944 (_mm512_mask_i64gather_ps): Ditto.
29945 (_mm512_i64gather_pd): Ditto.
29946 (_mm512_mask_i64gather_pd): Ditto.
29947 (_mm512_i32gather_epi32): Ditto.
29948 (_mm512_mask_i32gather_epi32): Ditto.
29949 (_mm512_i32gather_epi64): Ditto.
29950 (_mm512_mask_i32gather_epi64): Ditto.
29951 (_mm512_i64gather_epi32): Ditto.
29952 (_mm512_mask_i64gather_epi32): Ditto.
29953 (_mm512_i64gather_epi64): Ditto.
29954 (_mm512_mask_i64gather_epi64): Ditto.
29955 (_mm512_i32scatter_ps): Change __addr type to void*.
29956 (_mm512_mask_i32scatter_ps): Ditto.
29957 (_mm512_i32scatter_pd): Ditto.
29958 (_mm512_mask_i32scatter_pd): Ditto.
29959 (_mm512_i64scatter_ps): Ditto.
29960 (_mm512_mask_i64scatter_ps): Ditto.
29961 (_mm512_i64scatter_pd): Ditto.
29962 (_mm512_mask_i64scatter_pd): Ditto.
29963 (_mm512_i32scatter_epi32): Ditto.
29964 (_mm512_mask_i32scatter_epi32): Ditto.
29965 (_mm512_i32scatter_epi64): Ditto.
29966 (_mm512_mask_i32scatter_epi64): Ditto.
29967 (_mm512_i64scatter_epi32): Ditto.
29968 (_mm512_mask_i64scatter_epi32): Ditto.
29969 (_mm512_i64scatter_epi64): Ditto.
29970 (_mm512_mask_i64scatter_epi64): Ditto.
29971 * config/i386/avx512pfintrin.h
29972 (_mm512_mask_prefetch_i32gather_pd): Change __addr type to void const*.
29973 (_mm512_mask_prefetch_i32gather_ps): Ditto.
29974 (_mm512_mask_prefetch_i64gather_pd): Ditto.
29975 (_mm512_mask_prefetch_i64gather_ps): Ditto.
29976 (_mm512_prefetch_i32scatter_pd): Change __addr type to void*.
29977 (_mm512_prefetch_i32scatter_ps): Ditto.
29978 (_mm512_mask_prefetch_i32scatter_pd): Ditto.
29979 (_mm512_mask_prefetch_i32scatter_ps): Ditto.
29980 (_mm512_prefetch_i64scatter_pd): Ditto.
29981 (_mm512_prefetch_i64scatter_ps): Ditto.
29982 (_mm512_mask_prefetch_i64scatter_pd): Ditto.
29983 (_mm512_mask_prefetch_i64scatter_ps): Ditto.
29984 * config/i386/avx512vlintrin.h
29985 (_mm256_mmask_i32gather_ps): Change __addr type to void const*.
29986 (_mm_mmask_i32gather_ps): Ditto.
29987 (_mm256_mmask_i32gather_pd): Ditto.
29988 (_mm_mmask_i32gather_pd): Ditto.
29989 (_mm256_mmask_i64gather_ps): Ditto.
29990 (_mm_mmask_i64gather_ps): Ditto.
29991 (_mm256_mmask_i64gather_pd): Ditto.
29992 (_mm_mmask_i64gather_pd): Ditto.
29993 (_mm256_mmask_i32gather_epi32): Ditto.
29994 (_mm_mmask_i32gather_epi32): Ditto.
29995 (_mm256_mmask_i32gather_epi64): Ditto.
29996 (_mm_mmask_i32gather_epi64): Ditto.
29997 (_mm256_mmask_i64gather_epi32): Ditto.
29998 (_mm_mmask_i64gather_epi32): Ditto.
29999 (_mm256_mmask_i64gather_epi64): Ditto.
30000 (_mm_mmask_i64gather_epi64): Ditto.
30001 (_mm256_i32scatter_ps): Change __addr type to void*.
30002 (_mm256_mask_i32scatter_ps): Ditto.
30003 (_mm_i32scatter_ps): Ditto.
30004 (_mm_mask_i32scatter_ps): Ditto.
30005 (_mm256_i32scatter_pd): Ditto.
30006 (_mm256_mask_i32scatter_pd): Ditto.
30007 (_mm_i32scatter_pd): Ditto.
30008 (_mm_mask_i32scatter_pd): Ditto.
30009 (_mm256_i64scatter_ps): Ditto.
30010 (_mm256_mask_i64scatter_ps): Ditto.
30011 (_mm_i64scatter_ps): Ditto.
30012 (_mm_mask_i64scatter_ps): Ditto.
30013 (_mm256_i64scatter_pd): Ditto.
30014 (_mm256_mask_i64scatter_pd): Ditto.
30015 (_mm_i64scatter_pd): Ditto.
30016 (_mm_mask_i64scatter_pd): Ditto.
30017 (_mm256_i32scatter_epi32): Ditto.
30018 (_mm256_mask_i32scatter_epi32): Ditto.
30019 (_mm_i32scatter_epi32): Ditto.
30020 (_mm_mask_i32scatter_epi32): Ditto.
30021 (_mm256_i32scatter_epi64): Ditto.
30022 (_mm256_mask_i32scatter_epi64): Ditto.
30023 (_mm_i32scatter_epi64): Ditto.
30024 (_mm_mask_i32scatter_epi64): Ditto.
30025 (_mm256_i64scatter_epi32): Ditto.
30026 (_mm256_mask_i64scatter_epi32): Ditto.
30027 (_mm_i64scatter_epi32): Ditto.
30028 (_mm_mask_i64scatter_epi32): Ditto.
30029 (_mm256_i64scatter_epi64): Ditto.
30030 (_mm256_mask_i64scatter_epi64): Ditto.
30031 (_mm_i64scatter_epi64): Ditto.
30032 (_mm_mask_i64scatter_epi64): Ditto.
30033 * config/i386/i386-builtin-types.def (V16SF_V16SF_PCFLOAT_V16SI_HI_INT)
30034 (V8DF_V8DF_PCDOUBLE_V8SI_QI_INT, V8SF_V8SF_PCFLOAT_V8DI_QI_INT)
30035 (V8DF_V8DF_PCDOUBLE_V8DI_QI_INT, V16SI_V16SI_PCINT_V16SI_HI_INT)
30036 (V8DI_V8DI_PCINT64_V8SI_QI_INT, V8SI_V8SI_PCINT_V8DI_QI_INT)
30037 (V8DI_V8DI_PCINT64_V8DI_QI_INT, V2DF_V2DF_PCDOUBLE_V4SI_QI_INT)
30038 (V4DF_V4DF_PCDOUBLE_V4SI_QI_INT, V2DF_V2DF_PCDOUBLE_V2DI_QI_INT)
30039 (V4DF_V4DF_PCDOUBLE_V4DI_QI_INT, V4SF_V4SF_PCFLOAT_V4SI_QI_INT)
30040 (V8SF_V8SF_PCFLOAT_V8SI_QI_INT, V4SF_V4SF_PCFLOAT_V2DI_QI_INT)
30041 (V4SF_V4SF_PCFLOAT_V4DI_QI_INT, V2DI_V2DI_PCINT64_V4SI_QI_INT)
30042 (V4DI_V4DI_PCINT64_V4SI_QI_INT, V2DI_V2DI_PCINT64_V2DI_QI_INT)
30043 (V4DI_V4DI_PCINT64_V4DI_QI_INT, V4SI_V4SI_PCINT_V4SI_QI_INT)
30044 (V8SI_V8SI_PCINT_V8SI_QI_INT, V4SI_V4SI_PCINT_V2DI_QI_INT)
30045 (V4SI_V4SI_PCINT_V4DI_QI_INT, VOID_PFLOAT_HI_V16SI_V16SF_INT)
30046 (VOID_PFLOAT_QI_V8SI_V8SF_INT, VOID_PFLOAT_QI_V4SI_V4SF_INT)
30047 (VOID_PDOUBLE_QI_V8SI_V8DF_INT, VOID_PDOUBLE_QI_V4SI_V4DF_INT)
30048 (VOID_PDOUBLE_QI_V4SI_V2DF_INT, VOID_PFLOAT_QI_V8DI_V8SF_INT)
30049 (VOID_PFLOAT_QI_V4DI_V4SF_INT, VOID_PFLOAT_QI_V2DI_V4SF_INT)
30050 (VOID_PDOUBLE_QI_V8DI_V8DF_INT, VOID_PDOUBLE_QI_V4DI_V4DF_INT)
30051 (VOID_PDOUBLE_QI_V2DI_V2DF_INT, VOID_PINT_HI_V16SI_V16SI_INT)
30052 (VOID_PINT_QI_V8SI_V8SI_INT, VOID_PINT_QI_V4SI_V4SI_INT)
30053 (VOID_PLONGLONG_QI_V8SI_V8DI_INT, VOID_PLONGLONG_QI_V4SI_V4DI_INT)
30054 (VOID_PLONGLONG_QI_V4SI_V2DI_INT, VOID_PINT_QI_V8DI_V8SI_INT)
30055 (VOID_PINT_QI_V4DI_V4SI_INT, VOID_PINT_QI_V2DI_V4SI_INT)
30056 (VOID_PLONGLONG_QI_V8DI_V8DI_INT, VOID_QI_V8SI_PCINT64_INT_INT)
30057 (VOID_PLONGLONG_QI_V4DI_V4DI_INT, VOID_PLONGLONG_QI_V2DI_V2DI_INT)
30058 (VOID_HI_V16SI_PCINT_INT_INT, VOID_QI_V8DI_PCINT64_INT_INT)
30059 (VOID_QI_V8DI_PCINT_INT_INT): Remove.
30060 (V16SF_V16SF_PCVOID_V16SI_HI_INT, V8DF_V8DF_PCVOID_V8SI_QI_INT)
30061 (V8SF_V8SF_PCVOID_V8DI_QI_INT, V8DF_V8DF_PCVOID_V8DI_QI_INT)
30062 (V16SI_V16SI_PCVOID_V16SI_HI_INT, V8DI_V8DI_PCVOID_V8SI_QI_INT)
30063 (V8SI_V8SI_PCVOID_V8DI_QI_INT, V8DI_V8DI_PCVOID_V8DI_QI_INT)
30064 (VOID_PVOID_HI_V16SI_V16SF_INT, VOID_PVOID_QI_V8SI_V8DF_INT)
30065 (VOID_PVOID_QI_V8DI_V8SF_INT, VOID_PVOID_QI_V8DI_V8DF_INT)
30066 (VOID_PVOID_HI_V16SI_V16SI_INT, VOID_PVOID_QI_V8SI_V8DI_INT)
30067 (VOID_PVOID_QI_V8DI_V8SI_INT, VOID_PVOID_QI_V8DI_V8DI_INT)
30068 (V2DF_V2DF_PCVOID_V4SI_QI_INT, V4DF_V4DF_PCVOID_V4SI_QI_INT)
30069 (V2DF_V2DF_PCVOID_V2DI_QI_INT, V4DF_V4DF_PCVOID_V4DI_QI_INT
30070 (V4SF_V4SF_PCVOID_V4SI_QI_INT, V8SF_V8SF_PCVOID_V8SI_QI_INT)
30071 (V4SF_V4SF_PCVOID_V2DI_QI_INT, V4SF_V4SF_PCVOID_V4DI_QI_INT)
30072 (V2DI_V2DI_PCVOID_V4SI_QI_INT, V4DI_V4DI_PCVOID_V4SI_QI_INT)
30073 (V2DI_V2DI_PCVOID_V2DI_QI_INT, V4DI_V4DI_PCVOID_V4DI_QI_INT)
30074 (V4SI_V4SI_PCVOID_V4SI_QI_INT, V8SI_V8SI_PCVOID_V8SI_QI_INT)
30075 (V4SI_V4SI_PCVOID_V2DI_QI_INT, V4SI_V4SI_PCVOID_V4DI_QI_INT)
30076 (VOID_PVOID_QI_V8SI_V8SF_INT, VOID_PVOID_QI_V4SI_V4SF_INT)
30077 (VOID_PVOID_QI_V4SI_V4DF_INT, VOID_PVOID_QI_V4SI_V2DF_INT)
30078 (VOID_PVOID_QI_V4DI_V4SF_INT, VOID_PVOID_QI_V2DI_V4SF_INT)
30079 (VOID_PVOID_QI_V4DI_V4DF_INT, VOID_PVOID_QI_V2DI_V2DF_INT)
30080 (VOID_PVOID_QI_V8SI_V8SI_INT, VOID_PVOID_QI_V4SI_V4SI_INT)
30081 (VOID_PVOID_QI_V4SI_V4DI_INT, VOID_PVOID_QI_V4SI_V2DI_INT)
30082 (VOID_PVOID_QI_V4DI_V4SI_INT, VOID_PVOID_QI_V2DI_V4SI_INT)
30083 (VOID_PVOID_QI_V4DI_V4DI_INT, VOID_PVOID_QI_V2DI_V2DI_INT)
30084 (VOID_QI_V8SI_PCVOID_INT_INT, VOID_HI_V16SI_PCVOID_INT_INT)
30085 (VOID_QI_V8DI_PCVOID_INT_INT): Add.
30086 * config/i386/i386.c (ix86_init_mmx_sse_builtins): Adjust builtin
30087 definitions accordingly.
30089 2017-01-17 Kito Cheng <kito.cheng@gmail.com>
30090 Kuan-Lin Chen <kuanlinchentw@gmail.com>
30093 * internal-fn.c (expand_mul_overflow): Use convert_modes instead of
30096 2017-01-17 Vladimir Makarov <vmakarov@redhat.com>
30099 * ira-conflicts.c (ira_build_conflicts): Update total conflict
30100 hard regs for inner regno.
30102 2017-01-17 Martin Liska <mliska@suse.cz>
30105 * ipa-polymorphic-call.c (contains_type_p): Fix wrong
30106 assumption and add comment.
30108 2017-01-17 Nathan Sidwell <nathan@acm.org>
30110 * ipa-visibility.c (localize_node): New function, broken out of ...
30111 (function_and_variable_visibility): ... here. Call it.
30113 2017-01-17 Jan Hubicka <hubicka@ucw.cz>
30115 PR middle-end/77445
30116 * tree-ssa-threadupdate.c (remove_ctrl_stmt_and_useless_edges):
30117 correctly set frequency of oudgoing edge.
30118 (duplicate_thread_path): Fix profile updating.
30120 2017-01-17 Jakub Jelinek <jakub@redhat.com>
30123 * configure.ac: Add GCC_BASE_VER.
30124 * Makefile.in (version): Use @get_gcc_base_ver@ instead of cat to get
30125 version from BASE-VER file.
30126 (CFLAGS-gcc.o): Add -DBASEVER=$(BASEVER_s).
30127 (gcc.o): Depend on $(BASEVER).
30128 * common.opt (dumpfullversion): New option.
30129 * gcc.c (driver_handle_option): Handle OPT_dumpfullversion.
30130 * doc/invoke.texi: Document -dumpfullversion.
30131 * doc/install.texi: Document --with-gcc-major-version-only.
30132 * configure: Regenerated.
30134 2017-01-17 Richard Biener <rguenther@suse.de>
30136 PR tree-optimization/71433
30137 * tree-vrp.c (register_new_assert_for): Merge same asserts
30138 on all incoming edges.
30139 (process_assert_insertions_for): Handle insertions at the
30142 2017-01-17 Gerald Pfeifer <gerald@pfeifer.com>
30144 * config/i386/cygwin.h (LIBGCJ_SONAME): Remove.
30145 * config/i386/mingw32.h (LIBGCJ_SONAME): Remove.
30147 2017-01-17 Kaz Kojima <kkojima@gcc.gnu.org>
30150 * config/sh/sh.md (cmpeqsi_t+1): Call copy_rtx to avoid invalid
30153 2017-01-17 Alan Modra <amodra@gmail.com>
30156 * config/rs6000/rs6000.md (elf_high, elf_low): Disable when pic.
30157 * config/rs6000/rs6000.c (rs6000_emit_allocate_stack): Don't allow
30158 symbolic stack limit when pic.
30160 2017-01-16 Martin Sebor <msebor@redhat.com>
30162 PR tree-optimization/78608
30163 * gimple-ssa-sprintf.c (tree_digits): Avoid negating TYPE_MIN.
30165 2017-01-16 Jeff Law <law@redhat.com>
30168 2016-12-02 Tadek Kijkowski <tkijkowski@gmail.com>
30169 * Makefile.in (PREPROCESSOR_DEFINES): Add a level of indirection
30170 for several include directories that may be relative to sysroot.
30171 * config/i386/x-mingw32 (gplus_includedir): Define.
30172 (gplus_tool_includedir, gplus_backward_include_dir): Likewise.
30173 (native_system_includedir): Likewise.
30174 * config/i386/mingw32.h (STANDARD_STARTFILE_PREFIX_1): Do not
30175 override if TARGET_SYSTEM_ROOT is defined.
30176 (NATIVE_SYSTEM_HEADER_DIR): Likewise.
30178 PR tree-optimization/79090
30179 PR tree-optimization/33562
30180 PR tree-optimization/61912
30181 PR tree-optimization/77485
30182 * tree-ssa-dse.c (compute_trims): Accept STMT argument. Dump STMT
30183 and computed trims into the dump file.
30185 2017-01-17 Uros Bizjak <ubizjak@gmail.com>
30187 * config/i386/i386.h (LIMIT_RELOAD_CLASS): Remove.
30189 2017-01-16 Jakub Jelinek <jakub@redhat.com>
30192 * gimplify.c (gimplify_init_constructor): If want_value and
30193 object == lhs, unshare lhs to avoid invalid tree sharing. Formatting
30197 * loop-doloop.c (doloop_modify): Call unshare_all_rtl_in_chain on
30198 sequence. Formatting fixes.
30199 (doloop_optimize): Formatting fixes.
30202 * gcc.c (debug_level_greater_than_spec_func): New function.
30203 (static_spec_functions): Add debug-level-gt spec function.
30204 (ASM_DEBUG_SPEC, cpp_options): Use %:debug-level-gt(0) instead of
30206 * config/darwin.h (DSYMUTIL_SPEC, ASM_DEBUG_SPEC): Likewise.
30207 * config/darwin9.h (DSYMUTIL_SPEC, ASM_DEBUG_SPEC): Likewise.
30208 * common.opt (g, gcoff, gdwarf, gdwarf-, ggdb, gno-pubnames,
30209 gpubnames, ggnu-pubnames, gno-record-gcc-switches,
30210 grecord-gcc-switches, gno-strict-dwarf, gstrict-dwarf, gstabs,
30211 gstabs+, gtoggle, gvms, gxcoff, gxcoff+): Add Driver flag.
30213 2017-01-16 Uros Bizjak <ubizjak@gmail.com>
30215 * config/i386/i386.h (HARD_REGNO_CALLER_SAVE_MODE): Apply HImode and
30216 QImode fixups to general and mask registers only.
30218 2017-01-16 Carl Love <cel@us.ibm.com>
30220 * config/rs6000/rs6000-c (altivec_overloaded_builtins): Add support
30221 for built-in functions
30222 vector signed char vec_nabs (vector signed char)
30223 vector signed short vec_nabs (vector signed short)
30224 vector signed int vec_nabs (vector signed int)
30225 vector signed long long vec_nabs (vector signed long long)
30226 vector float vec_nabs (vector float)
30227 vector double vec_nabs (vector double)
30228 * config/rs6000/rs6000-builtin.def: Add definitions for NABS functions
30230 * config/rs6000/altivec.md: New define_expand nabs<mode>2 types
30231 * config/rs6000/altivec.h: New define for vec_nabs built-in function.
30232 * doc/extend.texi: Update the documentation file for the new built-in
30235 2017-01-16 Martin Sebor <msebor@redhat.com>
30237 * gimple-ssa-sprintf.c (format_directive): Correct a typo in a warning
30240 2017-01-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
30242 * config/rs6000/rs6000.c (rtx_is_swappable_p): Change
30243 UNSPEC_VSX__XXSPLTD to require special splat handling.
30245 2017-01-16 David Malcolm <dmalcolm@redhat.com>
30248 * system.h: Poison strndup.
30250 2017-01-16 Alan Modra <amodra@gmail.com>
30253 * config/rs6000/rs6000.c (rs6000_legitimate_combined_insn): Don't
30256 2017-01-16 Georg-Johann Lay <avr@gjlay.de>
30258 * config/avr/avr.h (BRANCH_COST) [reload_completed]: Increase by 4.
30260 2017-01-15 Uros Bizjak <ubizjak@gmail.com>
30262 * config/i386/i386.c (ix86_legitimate_combined_insn): Do not
30263 call recog here. Assert that INSN_CODE (insn) is non-negative.
30265 2017-01-15 Segher Boessenkool <segher@kernel.crashing.org>
30268 * cfgrtl.c (rtl_split_edge): Also patch jump insns that jump to the
30270 * haifa-sched.c (dump_insn_stream): Don't crash if there is a label
30271 in the currently scheduled RTL fragment.
30273 2017-01-15 Segher Boessenkool <segher@kernel.crashing.org>
30275 PR rtl-optimization/78751
30276 * ifcvt.c (find_cond_trap): If we generated a non-existing insn,
30279 2017-01-14 Jeff Law <law@redhat.com>
30281 PR tree-optimization/79090
30282 * tree-ssa-dse.c (valid_ao_ref_for_dse): Reject zero length and
30283 variable length stores.
30284 (compute_trims): Delete dead assignment to *trim_tail.
30285 (dse_dom_walker::dse_optimize_stmt): Optimize mem* calls with
30288 2017-01-14 Bernd Schmidt <bschmidt@redhat.com>
30290 PR rtl-optimization/78626
30291 PR rtl-optimization/78727
30292 * cprop.c (one_cprop_pass): Collect unconditional traps in the middle
30293 of a block, and split such blocks after everything else is finished.
30295 2017-01-14 Alan Modra <amodra@gmail.com>
30298 * combine.c (recog_for_combine_1): Set INSN_CODE before calling
30299 target legitimate_combined_insn.
30300 * config/rs6000/rs6000.c (TARGET_LEGITIMATE_COMBINED_INSN): Define.
30301 (rs6000_legitimate_combined_insn): New function.
30302 * config/rs6000/rs6000.md (UNSPEC_DOLOOP): Delete, and remove
30304 (ctr<mode>_internal3): Rename from *ctr<mode>_internal5.
30305 (ctr<mode>_internal4): Rename from *ctr<mode>_internal6.
30306 (ctr<mode>_internal1, ctr<mode>_internal2): Remove '*' from name.
30308 2017-01-14 Gerald Pfeifer <gerald@pfeifer.com>
30310 * doc/frontends.texi (G++ and GCC): Remove references to Java.
30312 2017-01-13 Jeff Law <law@redhat.com>
30314 PR tree-optimization/33562
30315 PR tree-optimization/61912
30316 PR tree-optimization/77485
30317 * tree-ssa-dse.c (delete_dead_call): Accept gsi rather than
30319 (delete_dead_assignment): Likewise.
30320 (dse_dom_walker::dse_optimize_stmt): Pass in the gsi rather than
30321 statement to delete_dead_call and delete_dead_assignment.
30323 2017-01-13 David Malcolm <dmalcolm@redhat.com>
30326 * substring-locations.c (format_warning_va): Strengthen case 1 so
30327 that both endpoints of the substring must be within the format
30328 range for just the substring to be printed.
30330 2017-01-13 Uros Bizjak <ubizjak@gmail.com>
30332 * config/i386/i386.opt (msgx): Use ix86_isa_flags2 variable.
30333 * config/i386/i386.c (ix86_target_string): Add missing options
30334 to isa_opts and reorder options by implied ISAs. Rename isa_opts2 to
30335 isa2_opts, ix86_flag_opts to flag2_opts, ix86_target_other to
30336 flags_other and ix86_target_other to flags2_other. Display unknown
30338 (ix86_valid_target_attribute_inner_p): Add missing options and
30339 reorder options by implied ISAs, as in ix86_target_string.
30341 2017-01-13 Richard Sandiford <richard.sandiford@arm.com>
30343 * hash-table.h (hash_table::too_empty_p): New function.
30344 (hash_table::expand): Use it.
30345 (hash_table::traverse): Likewise.
30346 (hash_table::empty_slot): Use sizeof (value_type) instead of
30347 sizeof (PTR) to convert bytes to elements. Shrink the table
30348 if the current size is excessive for the current number of
30351 2017-01-13 Richard Sandiford <richard.sandiford@arm.com>
30353 * ira-costs.c (record_reg_classes): Break from the inner loop
30354 early once alt_fail is known to be true. Update outer loop
30355 handling accordingly.
30357 2017-01-13 Jeff Law <law@redhat.com>
30359 * tree-ssa-dse.c (decrement_count): New function.
30360 (increment_start_addr, maybe_trim_memstar_call): Likewise.
30361 (dse_dom_walker::optimize_stmt): Call maybe_trim_memstar_call directly
30362 when we know the partially dead statement is a mem* function.
30364 PR tree-optimization/61912
30365 PR tree-optimization/77485
30366 * tree-ssa-dse.c: Include expr.h.
30367 (maybe_trim_constructor_store): New function.
30368 (maybe_trim_partially_dead_store): Call maybe_trim_constructor_store.
30370 PR tree-optimization/33562
30371 PR tree-optimization/61912
30372 PR tree-optimization/77485
30373 * doc/invoke.texi: Document new dse-max-object-size param.
30374 * params.def (PARM_DSE_MAX_OBJECT_SIZE): New PARAM.
30375 * tree-ssa-dse.c: Include params.h.
30376 (dse_store_status): New enum.
30377 (initialize_ao_ref_for_dse): New, partially extracted from
30379 (valid_ao_ref_for_dse, normalize_ref): New.
30380 (setup_live_bytes_from_ref, compute_trims): Likewise.
30381 (clear_bytes_written_by, maybe_trim_complex_store): Likewise.
30382 (maybe_trim_partially_dead_store): Likewise.
30383 (maybe_trim_complex_store): Likewise.
30384 (dse_classify_store): Renamed from dse_possibly_dead_store_p.
30385 Track what bytes live from the original store. Return tri-state
30386 for dead, partially dead or live.
30387 (dse_dom_walker): Add constructor, destructor and new private members.
30388 (delete_dead_call, delete_dead_assignment): New extracted from
30390 (dse_optimize_stmt): Make a member of dse_dom_walker.
30391 Use initialize_ao_ref_for_dse.
30393 PR tree-optimization/33562
30394 PR tree-optimization/61912
30395 PR tree-optimization/77485
30396 * sbitmap.h (bitmap_count_bits): Prototype.
30397 (bitmap_clear_range, bitmap_set_range): Likewise.
30398 * sbitmap.c (bitmap_clear_range): New function.
30399 (bitmap_set_range, sbitmap_popcount, bitmap_count_bits): Likewise.
30401 2017-01-13 Martin Liska <mliska@suse.cz>
30404 * function.c (set_cfun): Add new argument force.
30405 * function.h (set_cfun): Likewise.
30406 * ipa-inline-transform.c (inline_call): Use the function when
30407 strict alising from is dropped for function we inline to.
30409 2017-01-13 Richard Biener <rguenther@suse.de>
30411 * tree-pretty-print.c (dump_generic_node): Fix inverted condition
30412 for dumping GIMPLE INTEGER_CSTs.
30414 2017-01-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
30416 * config/sol2.h (TARGET_OS_CPP_BUILTINS): Define __STDC_VERSION__
30417 to 201112L since C++17.
30419 2017-01-13 Maxim Ostapenko <m.ostapenko@samsung.com>
30422 * asan.c (asan_needs_odr_indicator_p): Don't emit ODR indicators
30423 if -fsanitize=kernel-address is present.
30425 2017-01-13 Richard Biener <rguenther@suse.de>
30427 * tree-pretty-print.c (dump_generic_node): Dump INTEGER_CSTs
30428 as _Literal ( type ) number in case usual suffixes do not
30429 preserve all information.
30431 2017-01-13 Richard Biener <rguenther@suse.de>
30433 PR tree-optimization/77283
30434 * gimple-ssa-split-paths.c: Include gimple-ssa.h, tree-phinodes.h
30435 and ssa-iterators.h.
30436 (is_feasible_trace): Implement a cost model based on joiner
30439 2017-01-12 Michael Meissner <meissner@linux.vnet.ibm.com>
30442 * config/rs6000/rs6000.md (FP_ISA3): Do not optimize converting
30443 char or short to __float128/_Float128 directly.
30445 2017-01-12 Martin Sebor <msebor@redhat.com>
30447 to -Wformat-overflow.
30448 * gimple-ssa-sprintf.c (pass_sprintf_length::gate): Adjust.
30449 (min_bytes_remaining): Same.
30450 (get_string_length): Same.
30451 (format_string): Same.
30452 (format_directive): Same.
30454 (pass_sprintf_length::handle_gimple_call): Same.
30456 2017-01-12 Jakub Jelinek <jakub@redhat.com>
30458 * gimple-ssa-sprintf.c (try_substitute_return_value): Remove
30459 info.nowrite calls with no lhs that can't throw. Return bool
30460 whether gsi_remove has been called or not.
30461 (pass_sprintf_length::handle_gimple_call): Return bool whether
30462 try_substitute_return_value called gsi_remove. Formatting fix.
30463 (pass_sprintf_length::execute): Don't use gsi_remove if
30464 handle_gimple_call returned true.
30467 * cfgrtl.c (rtl_tidy_fallthru_edge): For any_uncondjump_p that can't
30468 be removed due to side-effects, don't remove following barrier nor
30469 turn the successor edge into fallthru edge.
30471 2017-01-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
30474 * config/rs6000/rs6000.c (insn_is_swappable_p): Mark
30475 element-reversing loads and stores as not swappable.
30477 2017-01-12 Nathan Sidwell <nathan@acm.org>
30478 Nicolai Stange <nicstange@gmail.com>
30480 * combine.c (try_combine): Don't ignore result of overlap checking
30481 loop. Combine overlap & asm check into single loop.
30483 2017-01-12 Richard Biener <rguenther@suse.de>
30485 * tree-pretty-print.c (dump_generic_node): Provide -gimple
30486 variant for MEM_REF. Sanitize INTEGER_CST for -gimple.
30488 2017-01-12 Richard Biener <rguenther@suse.de>
30490 * tree.c (initialize_tree_contains_struct): Make TS_OPTIMIZATION
30491 and TS_TARGET_OPTION directly derive from TS_BASE.
30492 * tree-core.h (tree_optimization_option): Derive from tree_base.
30493 (tree_target_option): Likewise.
30495 2017-01-11 Uros Bizjak <ubizjak@gmail.com>
30497 * config/i386/i386.c (memory_address_length): Increase len
30498 only when rip_relative_addr_p returns false.
30500 2017-01-11 Julia Koval <julia.koval@intel.com>
30502 * common/config/i386/i386-common.c (OPTION_MASK_ISA_SGX_UNSET): New.
30503 (OPTION_MASK_ISA_SGX_SET): New.
30504 (ix86_handle_option): Handle OPT_msgx.
30505 * config.gcc: Added sgxintrin.h.
30506 * config/i386/driver-i386.c (host_detect_local_cpu): Detect sgx.
30507 * config/i386/i386-c.c (ix86_target_macros_internal): Define __SGX__.
30508 * config/i386/i386.c (ix86_target_string): Add -msgx.
30510 (ix86_option_override_internal): Handle new options.
30511 (ix86_valid_target_attribute_inner_p): Add sgx.
30512 * config/i386/i386.h (TARGET_SGX, TARGET_SGX_P): New.
30513 * config/i386/i386.opt: Add msgx.
30514 * config/i386/sgxintrin.h: New file.
30515 * config/i386/x86intrin.h: Add sgxintrin.h.
30517 2017-01-11 Jakub Jelinek <jakub@redhat.com>
30520 * fold-const.c (maybe_nonzero_address): Return 1 for function
30522 (tree_single_nonzero_warnv_p): Don't handle function local objects
30526 * gcc.c (default_compilers): Don't add -o %g.s for -S -save-temps
30529 2017-01-11 David Malcolm <dmalcolm@redhat.com>
30532 * opts.c: Include "spellcheck.h"
30533 (struct string_fragment): New struct.
30534 (struct edit_distance_traits<const string_fragment &>): New
30536 (get_closest_sanitizer_option): New function.
30537 (parse_sanitizer_options): Offer suggestions for unrecognized arguments.
30539 2017-01-11 Jakub Jelinek <jakub@redhat.com>
30541 * dwarf2out.c (DWARF_COMPILE_UNIT_HEADER_SIZE): For DWARF5 decrease
30543 (DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE): Always
30544 DWARF_COMPILE_UNIT_HEADER_SIZE plus 12.
30545 (DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE): Define.
30546 (calc_base_type_die_sizes): Use DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE
30547 for initial die_offset if dwarf_split_debug_info.
30548 (output_comp_unit): Use DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE for
30549 initial next_die_offset if dwo_id is non-NULL. Don't emit padding
30551 (output_skeleton_debug_sections): Formatting fix. Use
30552 DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE instead of
30553 DWARF_COMPILE_UNIT_HEADER_SIZE. Don't emit padding.
30555 2017-01-11 Wilco Dijkstra <wdijkstr@arm.com>
30557 * config/arm/cortex-a53.md: Add bypasses for
30558 cortex_a53_r2f_cvt.
30559 (cortex_a53_r2f): Only use for transfers.
30560 (cortex_a53_f2r): Likewise.
30561 (cortex_a53_r2f_cvt): Add reservation for conversions.
30562 (cortex_a53_f2r_cvt): Likewise.
30564 2017-01-11 Tamar Christina <tamar.christina@arm.com>
30566 * config/arm/arm_neon.h: Add __artificial__ and gnu_inline
30567 to all inlined functions, change static to extern.
30569 2017-01-11 Christophe Lyon <christophe.lyon@linaro.org>
30572 * config/arm/arm.c (legitimize_pic_address): Handle reference to
30574 (arm_assemble_integer): Likewise.
30576 2017-01-11 Richard Earnshaw <rearnsha@arm.com>
30578 * config.gcc: Use new awk script to check CPU, FPU and architecture
30579 parameters for --with-... options.
30580 * config/arm/parsecpu.awk: New file
30581 * config/arm/arm-cpus.in: New file.
30582 * config/arm/arm-opts.h: Include arm-cpu.h instead of processing .def
30584 * config/arm/arm.c: Include arm-cpu-data.h instead of processing .def
30586 * config/arm/t-arm: Update dependency rules.
30587 * common/config/arm/arm-common.c: Include arm-cpu-cdata.h instead
30588 of processing .def files.
30589 * config/arm/genopt.sh: Deleted.
30590 * config/arm/gentune.sh: Deleted.
30591 * config/arm/arm-cores.def: Deleted.
30592 * config/arm/arm-arches.def: Deleted.
30593 * config/arm/arm-fpus.def: Deleted.
30594 * config/arm/arm-tune.md: Regenerated.
30595 * config/arm/arm-tables.opt: Regenerated.
30596 * config/arm/arm-cpu.h: New generated file.
30597 * config/arm/arm-cpu-data.h: New generated file.
30598 * config/arm/arm-cpu-cdata.h: New generated file.
30600 2017-01-11 Maxim Ostapenko <m.ostapenko@samsung.com>
30603 * lto-cgraph.c (lto_output_varpool_node): Pack dynamically_initialized
30605 (input_varpool_node): Unpack dynamically_initialized bit.
30607 2017-01-11 Eric Botcazou <ebotcazou@adacore.com>
30609 PR rtl-optimization/79032
30610 * lra-constraints.c (simplify_operand_subreg): In the MEM case, test
30611 the alignment of the adjusted memory reference against that of MODE,
30612 instead of the alignment of the original memory reference.
30614 2017-01-11 Martin Jambor <mjambor@suse.cz>
30616 * hsa.c (hsa_callable_function_p): Revert addition of DECL_ARTIFICIAL
30618 * ipa-hsa.c (process_hsa_functions): Only duplicate non-artificial
30619 decorated functions.
30621 2017-01-11 Richard Biener <rguenther@suse.de>
30623 * tree-vrp.c (evrp_dom_walker::before_dom_children): Also
30624 set range/nonnull info for PHI results. Do not set it on
30625 stmts marked for removal.
30627 2017-01-10 Eric Botcazou <ebotcazou@adacore.com>
30629 * expr.c (store_field): In the bitfield case, fetch the return value
30630 from the registers before applying a single big-endian adjustment.
30631 Always do a final load for a BLKmode value not larger than a word.
30633 2017-01-10 David Malcolm <dmalcolm@redhat.com>
30636 * input.c (selftest::test_accessing_ordinary_linemaps): Verify
30637 that we correctly handle column numbers greater than
30638 LINE_MAP_MAX_COLUMN_NUMBER.
30640 2017-01-10 Martin Sebor <msebor@redhat.com>
30642 PR middle-end/78245
30643 * gimple-ssa-sprintf.c (get_destination_size): Call
30644 {init,fini}object_sizes.
30645 * tree-object-size.c (addr_object_size): Adjust.
30646 (pass_through_call): Adjust.
30647 (pass_object_sizes::execute): Adjust.
30648 * tree-object-size.h (fini_object_sizes): Declare.
30650 2017-01-10 Martin Sebor <msebor@redhat.com>
30652 PR tree-optimization/78775
30653 * builtins.c (get_size_range): Move...
30654 * calls.c: ...to here.
30655 (alloc_max_size): Accept zero argument.
30656 (operand_signed_p): Remove.
30657 (maybe_warn_alloc_args_overflow): Call get_size_range.
30658 * calls.h (get_size_range): Declare.
30660 2017-01-10 Joe Seymour <joe.s@somniumtech.com>
30662 * config/msp430/driver-msp430.c (msp430_mcu_data): Sync with data
30663 from TI's devices.csv file as of September 2016.
30664 * config/msp430/msp430.c (msp430_mcu_data): Likewise.
30666 2017-01-10 Sandra Loosemore <sandra@codesourcery.com>
30668 * doc/extend.texi: Tweak formatting to fix overfull hbox warnings.
30669 * doc/invoke.texi: Likewise.
30670 * doc/md.texi: Likewise.
30671 * doc/objc.texi: Likewise.
30673 2017-01-10 Joshua Conner <joshconner@google.com>
30675 * config/arm/fuchsia-elf.h: New file.
30676 * config/fuchsia.h: New file.
30677 * config.gcc (*-*-fuchsia*): Set native_system_header_dir.
30678 (aarch64*-*-fuchsia*, arm*-*-fuchsia*, x86_64-*-fuchsia*): Add to
30680 * config.host: (aarch64*-*-fuchsia*, arm*-*-fuchsia*): Add to hosts.
30682 2016-01-10 Richard Biener <rguenther@suse.de>
30684 PR tree-optimization/79034
30685 * tree-call-cdce.c (shrink_wrap_one_built_in_call_with_conds):
30686 Propagate out degenerate PHIs in the joiner.
30688 2017-01-10 Martin Liska <mliska@suse.cz>
30690 * ipa-icf.c (sort_sem_items_by_decl_uid): New function.
30691 (sort_congruence_classes_by_decl_uid): Likewise.
30692 (sort_congruence_class_groups_by_decl_uid): Likewise.
30693 (sem_item_optimizer::merge_classes): Sort class, groups in these
30694 classes and members in the groups by DECL_UID of declarations.
30695 This would make merge operations stable.
30697 2017-01-10 Martin Liska <mliska@suse.cz>
30699 * ipa-icf.c (sem_item_optimizer::sem_item_optimizer): Remove
30700 usage of m_classes_vec.
30701 (sem_item_optimizer::~sem_item_optimizer): Likewise.
30702 (sem_item_optimizer::get_group_by_hash): Likewise.
30703 (sem_item_optimizer::subdivide_classes_by_equality): Likewise.
30704 (sem_item_optimizer::subdivide_classes_by_sensitive_refs): Likewise.
30705 (sem_item_optimizer::verify_classes): Likewise.
30706 (sem_item_optimizer::process_cong_reduction): Likewise.
30707 (sem_item_optimizer::dump_cong_classes): Likewise.
30708 (sem_item_optimizer::merge_classes): Likewise.
30709 * ipa-icf.h (congruence_class_hash): Rename from
30710 congruence_class_group_hash. Remove declaration of m_classes_vec.
30712 2017-01-10 Andrew Senkevich <andrew.senkevich@intel.com>
30714 * common/config/i386/i386-common.c (OPTION_MASK_ISA_AVX512VPOPCNTDQ_SET,
30715 OPTION_MASK_ISA_AVX512VPOPCNTDQ_UNSET): New.
30716 * config.gcc: Add avx512vpopcntdqintrin.h.
30717 * config/i386/avx512vpopcntdqintrin.h: New.
30718 * config/i386/cpuid.h (bit_AVX512VPOPCNTDQ): New.
30719 * config/i386/i386-builtin-types.def: Add new types.
30720 * config/i386/i386-builtin.def (__builtin_ia32_vpopcountd_v16si,
30721 __builtin_ia32_vpopcountd_v16si_mask, __builtin_ia32_vpopcountq_v8di,
30722 __builtin_ia32_vpopcountq_v8di_mask): New.
30723 * config/i386/i386-c.c (ix86_target_macros_internal): Define
30724 __AVX512VPOPCNTDQ__.
30725 * config/i386/i386.c (ix86_target_string): Add -mavx512vpopcntdq.
30726 (PTA_AVX512VPOPCNTDQ): Define.
30727 * config/i386/i386.h (TARGET_AVX512VPOPCNTDQ,
30728 TARGET_AVX512VPOPCNTDQ_P): Define.
30729 * config/i386/i386.opt: Add mavx512vpopcntdq.
30730 * config/i386/immintrin.h: Include avx512vpopcntdqintrin.h.
30731 * config/i386/sse.md (define_insn "vpopcount<mode><mask_name>"): New.
30733 2017-01-01 Jan Hubicka <hubicka@ucw.cz>
30735 PR middle-end/77484
30736 * predict.def (PRED_CALL): Set to 67.
30738 2017-01-09 Eric Botcazou <ebotcazou@adacore.com>
30740 * expr.c (store_field): In the bitfield case, if the value comes from
30741 a function call and is of an aggregate type returned in registers, do
30742 not modify the field mode; extract the value in all cases if the mode
30743 is BLKmode and the size is not larger than a word.
30745 2017-01-09 Dominique d'Humieres <dominiq@lps.ens.fr>
30748 * config/i386/cpuid.h: Fix undefined behavior.
30750 2017-01-04 Jeff Law <law@redhat.com>
30752 PR tree-optimization/79007
30753 PR tree-optimization/67955
30754 * tree-ssa-alias.c (same_addr_size_stores_p): Only need to be
30755 conservative for pt.null when flag_non_call_exceptions is on.
30757 2017-01-09 Jakub Jelinek <jakub@redhat.com>
30759 PR translation/79019
30760 PR translation/79020
30761 * params.def (PARAM_INLINE_MIN_SPEEDUP,
30762 PARAM_IPA_CP_SINGLE_CALL_PENALTY,
30763 PARAM_USE_AFTER_SCOPE_DIRECT_EMISSION_THRESHOLD): Fix typos
30765 * config/avr/avr.opt (maccumulate-args): Likewise.
30766 * config/msp430/msp430.opt (mwarn-mcu): Likewise.
30767 * common.opt (freport-bug): Likewise.
30768 * cif-code.def (CIF_FINAL_ERROR): Likewise.
30769 * doc/invoke.texi (ipa-cp-single-call-penalty): Likewise.
30770 * config/s390/s390.c (s390_invalid_binary_op): Fix spelling in
30771 translatable string.
30772 * config/i386/i386.c (function_value_32): Likewise.
30773 * config/nios2/nios2.c (nios2_valid_target_attribute_rec): Likewise.
30774 * config/msp430/msp430.c (msp430_option_override, msp430_attr):
30776 * config/msp430/driver-msp430.c (msp430_select_hwmult_lib): Likewise.
30777 * common/config/msp430/msp430-common.c (msp430_handle_option):
30779 * symtab.c (symtab_node::verify_base): Likewise.
30780 * opts.c (set_debug_level): Likewise.
30781 * tree.c (verify_type_variant): Likewise. Fix typo in comment.
30782 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
30783 missing whitespace to translatable strings.
30784 * config/avr/avr.md (bswapsi2): Fix typo in comment.
30785 * config/sh/superh.h: Likewise.
30786 * config/i386/xopintrin.h: Likewise.
30787 * config/i386/znver1.md: Likewise.
30788 * config/rs6000/rs6000.c (struct rs6000_opt_mask): Likewise.
30789 * ipa-inline-analysis.c (compute_inline_parameters): Likewise.
30790 * double-int.h (struct double_int): Likewise.
30791 * double-int.c (div_and_round_double): Likewise.
30792 * wide-int.cc: Likewise.
30793 * tree-ssa.c (non_rewritable_mem_ref_base): Likewise.
30794 * tree-ssa-sccvn.c (vn_reference_lookup_3): Likewise.
30795 * cfgcleanup.c (crossjumps_occured): Renamed to ...
30796 (crossjumps_occurred): ... this.
30797 (try_crossjump_bb, try_head_merge_bb, try_optimize_cfg, cleanup_cfg):
30800 PR tree-optimization/78899
30801 * tree-if-conv.c (version_loop_for_if_conversion): Instead of
30802 returning bool return struct loop *, NULL for failure and the new
30804 (versionable_outer_loop_p): Don't version outer loop if it has
30805 dont_vectorized bit set.
30806 (tree_if_conversion): When versioning outer loop, ensure
30807 tree_if_conversion is performed also on the inner loop of the
30808 non-vectorizable outer loop copy.
30809 * tree-vectorizer.c (set_uid_loop_bbs): Formatting fix. Fold
30810 LOOP_VECTORIZED in inner loop of the scalar outer loop and
30811 prevent vectorization of it.
30812 (vectorize_loops): For outer + inner LOOP_VECTORIZED, ensure
30813 the outer loop vectorization of the non-scalar version is attempted
30814 before vectorization of the inner loop in scalar version. If
30815 outer LOOP_VECTORIZED guarded loop is not vectorized, prevent
30816 vectorization of its inner loop.
30817 * tree-vect-loop-manip.c (rename_variables_in_bb): If outer_loop
30818 has 2 inner loops, rename also on edges from bb whose single pred
30819 is outer_loop->header. Fix typo in function comment.
30821 2017-01-09 Martin Sebor <msebor@redhat.com>
30824 * asan.c (asan_emit_stack_protection): Increase local buffer size
30825 to avoid snprintf truncation warning.
30827 2017-01-09 Andrew Pinski <apinski@cavium.com>
30829 * config/aarch64/aarch64-cores.def: Add thunderx2t99. Change vulcan
30830 to reference thunderx2t99 for the tuning structure
30831 * config/aarch64/aarch64-cost-tables.h (vulcan_extra_costs):
30833 (thunderx2t99_extra_costs): This.
30834 * config/aarch64/aarch64-tune.md: Regenerate.
30835 * config/aarch64/aarch64.c (vulcan_addrcost_table): Rename to ...
30836 (vulcan_addrcost_table): This.
30837 (vulcan_regmove_cost): Rename to ...
30838 (thunderx2t99_regmove_cost): This.
30839 (vulcan_vector_cost): Rename to ...
30840 (thunderx2t99_vector_cost): this.
30841 (vulcan_branch_cost): Rename to ...
30842 (thunderx2t99_branch_cost): This.
30843 (vulcan_tunings): Rename to ...
30844 (thunderx2t99_tunings): This and s/vulcan/thunderx2t99 .
30845 * doc/invoke.texi (AARCH64/mtune): Add thunderx2t99.
30847 2017-01-09 Martin Jambor <mjambor@suse.cz>
30851 * ipa-prop.h (ipa_jump_func): Swap positions of vr_known and m_vr.
30852 * ipa-cp.c (ipa_vr_operation_and_type_effects): New function.
30853 (propagate_vr_accross_jump_function): Use the above function for all
30854 value range computations for pass-through jump functions and type
30855 converasion from explicit value range values.
30856 (ipcp_propagate_stage): Do not attempt to deduce types of formal
30857 parameters from TYPE_ARG_TYPES.
30858 * ipa-prop.c (ipa_write_jump_function): Remove trailing whitespace.
30859 (ipa_write_node_info): Stream type of the actual argument.
30860 (ipa_read_node_info): Likewise. Also remove trailing whitespace.
30862 2017-01-09 Martin Liska <mliska@suse.cz>
30865 * gcc.c (driver_handle_option): Handle OPT_E and set have_E.
30866 (lookup_compiler): Do not show error message with have_E.
30868 2017-01-09 Jakub Jelinek <jakub@redhat.com>
30870 PR tree-optimization/78938
30871 * tree-vect-stmts.c (vectorizable_condition): For non-masked COND_EXPR
30872 where comp_vectype is VECTOR_BOOLEAN_TYPE_P, use
30873 BIT_{NOT,XOR,AND,IOR}_EXPR on the comparison operands instead of
30874 {EQ,NE,GE,GT,LE,LT}_EXPR directly inside of VEC_COND_EXPR. Formatting
30877 2017-01-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30879 * tree-ssa-address.c (gen_addr_rtx): Don't handle index if it
30882 2017-01-09 Richard Biener <rguenther@suse.de>
30884 PR tree-optimization/78997
30885 * tree-vect-slp.c (vect_mask_constant_operand_p): Handle SSA
30886 name condition properly.
30888 2017-01-09 Richard Biener <rguenther@suse.de>
30891 * dwarf2out.c (is_cxx): New overload with context.
30892 (is_naming_typedef_decl): Use it.
30894 2017-01-08 Sandra Loosemore <sandra@codesourcery.com>
30896 * invoke.texi (Option Summary): Correct spacing in option lists
30897 and add line breaks to fix over-long lines.
30899 2017-01-08 Sandra Loosemore <sandra@codesourcery.com>
30901 PR middle-end/17660
30903 * extend.texi (Common Variable Attributes): Add xref to GCC
30904 Internals manual to explain mode attribute keywords.
30906 2017-01-08 Sandra Loosemore <sandra@codesourcery.com>
30909 * doc/invoke.texi (Option Summary): Move -pthread to Linker Options
30910 and Preprocessor Options.
30911 (Options for Linking): Document -pthread here....
30912 (RS/6000 and PowerPC Options): ...not here.
30913 (Solaris 2 Options): ...or here.
30914 * doc/cppopts.texi: Document -pthread.
30916 2017-01-08 Martin Sebor <msebor@redhat.com>
30918 PR middle-end/77708
30919 * doc/invoke.texi (Warning Options): Document -Wformat-truncation.
30920 * gimple-ssa-sprintf.c (call_info::reval_used, call_info::warnopt):
30921 New member functions.
30922 (format_directive): Used them.
30924 (pass_sprintf_length::handle_gimple_call): Same.
30925 * graphite-sese-to-poly.c (tree_int_to_gmp): Increase buffer size
30926 to avoid truncation for any argument.
30927 (extract_affine_mul): Same.
30928 * tree.c (get_file_function_name): Same.
30930 2017-01-01 Jan Hubicka <hubicka@ucw.cz>
30932 PR middle-end/77484
30933 * predict.def (PRED_INDIR_CALL): Set to 86.
30935 2017-01-07 Sandra Loosemore <sandra@codesourcery.com>
30937 PR preprocessor/54124
30938 * doc/cppopts.texi: Reformat -d subtable to list the full name
30939 of the options. Add cross-reference to the docs for the general
30940 compiler -d options.
30941 * doc/invoke.texi (Developer Options): Add cross-reference to the
30942 preprocessor-specific -d option documentation.
30944 2017-01-07 Sandra Loosemore <sandra@codesourcery.com>
30946 PR preprocessor/13498
30947 * doc/cpp.texi (Search Path): Rewrite to remove obsolete and
30948 redudant material, and reflect new command-line options.
30949 (System Headers): Likewise.
30951 2017-01-07 Sandra Loosemore <sandra@codesourcery.com>
30953 * doc/cppdiropts.texi: Merge documentation of -I, -iquote,
30954 -isystem, and -idirafter. Copy-edit.
30955 * doc/cppopts.texi: Copy-edit. Remove contradiction about
30956 default for -ftrack-macro-expansion. Delete obsolete and
30957 badly-formatted implementation details about -fdebug-cpp output.
30958 * doc/cppwarnopts.texi: Copy-edit.
30960 2017-01-07 David Malcolm <dmalcolm@redhat.com>
30963 * input.c (selftest::test_accessing_ordinary_linemaps): Verify
30964 that the transition from a max line width >= 1<<10 to narrower
30965 lines works correctly.
30967 2017-01-07 Alexandre Oliva <aoliva@redhat.com>
30969 * doc/options.texi (PerFunction): New.
30970 * opt-functions.awk (switch_flags): Map both Optimization and
30971 PerFunction to CL_OPTIMIZATION.
30972 * opth-gen.awk: Test for PerFunction flag along with
30974 * optc-save-gen.awk: Likewise. Introduce var_opt_hash and set
30975 it only when the latter is present. Skip those that don't in
30976 the hash function generator.
30977 * common.opt (fvar-tracking): Mark as PerFunction instead of
30979 (fvar-tracking-assignments): Likewise.
30980 (fvar-tracking-assignments-toggle): Likewise.
30981 (fvar-tracking-uninit): Likewise.
30983 2017-01-07 Jakub Jelinek <jakub@redhat.com>
30985 PR translation/79018
30986 * params.def (PARAM_MAX_STORES_TO_MERGE): Add missing space between
30989 2017-01-06 Mikael Pettersson <mikpelinux@gmail.com>
30992 * config/m68k/m68k.opt (LONG_JUMP_TABLE_OFFSETS): New option.
30993 * config/m68k/linux.h (ASM_RETURN_CASE_JUMP): Handle
30994 TARGET_LONG_JUMP_TABLE_OFFSETS.
30995 * config/m68k/m68kelf.h (ASM_RETURN_CASE_JUMP): Likewise.
30996 * config/m68k/netbsd-elf.h (ASM_RETURN_CASE_JUMP): Likewise.
30997 * config/m68k/m68k.h (CASE_VECTOR_MODE): Likewise.
30998 (ASM_OUTPUT_ADDR_DIFF_ELF): Likewise.
30999 * config/m68k/m68k.md (tablejump expander): Likewise.
31000 (*tablejump_pcrel_hi): Renamed from unnamed insn, reject
31001 TARGET_LONG_JUMP_TABLE_OFFSETS.
31002 (*tablejump_pcrel_si): New insn, handle TARGET_LONG_JUMP_TABLE_OFFSETS.
31003 * doc/invoke.texi (M68K options): Add -mlong-jump-table-offsets.
31005 2017-01-06 Edgar E. Iglesias <edgar.iglesias@xilinx.com>
31006 David Holsgrove <david.holsgrove@xilinx.com>
31008 * common/config/microblaze/microblaze-common.c
31009 (TARGET_EXCEPT_UNWIND_INFO): Remove.
31010 * config/microblaze/microblaze-protos.h (microblaze_eh_return):
31012 * config/microblaze/microblaze.c (microblaze_must_save_register)
31013 (microblaze_expand_epilogue, microblaze_return_addr): Handle
31015 (microblaze_eh_return): New function.
31016 * config/microblaze/microblaze.h (RETURN_ADDR_OFFSET)
31017 (EH_RETURN_DATA_REGNO, MB_EH_STACKADJ_REGNUM)
31018 (EH_RETURN_STACKADJ_RTX, ASM_PREFERRED_EH_DATA_FORMAT): New macros.
31019 * config/microblaze/microblaze.md (eh_return): New pattern.
31021 2017-01-06 Jakub Jelinek <jakub@redhat.com>
31023 * system.h (GCC_DIAGNOSTIC_PUSH_IGNORED, GCC_DIAGNOSTIC_POP,
31024 GCC_DIAGNOSTIC_STRINGIFY): Define.
31026 * read-rtl.c (rtx_reader::read_rtx_code): Avoid -Wsign-compare warning.
31028 2017-01-06 Andre Vieira <andre.simoesdiasvieira@arm.com>
31030 * config/arm/arm.md (<mcrr>): New.
31032 * config/arm/arm.c (arm_arch5te): New.
31033 (arm_option_override): Set arm_arch5te.
31034 (arm_coproc_builtin_available): Add support for mcrr, mcrr2, mrrc
31036 * config/arm/arm-builtins.c (MCRR_QUALIFIERS): Define to...
31037 (arm_mcrr_qualifiers): ... this. New.
31038 (MRRC_QUALIFIERS): Define to...
31039 (arm_mrrc_qualifiers): ... this. New.
31040 * config/arm/arm_acle.h (__arm_mcrr, __arm_mcrr2, __arm_mrrc,
31042 * config/arm/arm_acle_builtins.def (mcrr, mcrr2, mrrc, mrrc2): New.
31043 * config/arm/iterators.md (MCRRI, mcrr, MCRR): New.
31044 (MRRCI, mrrc, MRRC): New.
31045 * config/arm/unspecs.md (VUNSPEC_MCRR, VUNSPEC_MCRR2, VUNSPEC_MRRC,
31046 VUNSPEC_MRRC2): New.
31048 2017-01-06 Andre Vieira <andre.simoesdiasvieira@arm.com>
31050 * config/arm/arm.md (<mcr>): New.
31052 * config/arm/arm.c (arm_coproc_builtin_available): Add
31053 support for mcr, mrc, mcr2 and mrc2.
31054 * config/arm/arm-builtins.c (MCR_QUALIFIERS): Define to...
31055 (arm_mcr_qualifiers): ... this. New.
31056 (MRC_QUALIFIERS): Define to ...
31057 (arm_mrc_qualifiers): ... this. New.
31058 (MCR_QUALIFIERS): Define to ...
31059 (arm_mcr_qualifiers): ... this. New.
31060 * config/arm/arm_acle.h (__arm_mcr, __arm_mrc, __arm_mcr2,
31062 * config/arm/arm_acle_builtins.def (mcr, mcr2, mrc, mrc2): New.
31063 * config/arm/iterators.md (MCRI, mcr, MCR, MRCI, mrc, MRC): New.
31064 * config/arm/unspecs.md (VUNSPEC_MCR, VUNSPEC_MCR2, VUNSPEC_MRC,
31065 VUNSPEC_MRC2): New.
31067 2017-01-06 Andre Vieira <andre.simoesdiasvieira@arm.com>
31069 * config/arm/arm.md (*ldc): New.
31073 * config/arm/arm.c (arm_coproc_builtin_available): Add
31074 support for ldc,ldcl,stc,stcl,ldc2,ldc2l,stc2 and stc2l.
31075 (arm_coproc_ldc_stc_legitimate_address): New.
31076 * config/arm/arm-builtins.c (arm_type_qualifiers): Add
31077 'qualifier_const_pointer'.
31078 (LDC_QUALIFIERS): Define to...
31079 (arm_ldc_qualifiers): ... this. New.
31080 (STC_QUALIFIERS): Define to...
31081 (arm_stc_qualifiers): ... this. New.
31082 * config/arm/arm-protos.h
31083 (arm_coproc_ldc_stc_legitimate_address): New.
31084 * config/arm/arm_acle.h (__arm_ldc, __arm_ldcl, __arm_stc,
31085 __arm_stcl, __arm_ldc2, __arm_ldc2l, __arm_stc2, __arm_stc2l): New.
31086 * config/arm/arm_acle_builtins.def (ldc, ldc2, ldcl, ldc2l, stc,
31087 stc2, stcl, stc2l): New.
31088 * config/arm/constraints.md (Uz): New.
31089 * config/arm/iterators.md (LDCI, STCI, ldc, stc, LDC STC): New.
31090 * config/arm/unspecs.md (VUNSPEC_LDC, VUNSPEC_LDC2, VUNSPEC_LDCL,
31091 VUNSPEC_LDC2L, VUNSPEC_STC, VUNSPEC_STC2, VUNSPEC_STCL,
31092 VUNSPEC_STC2L): New.
31094 2017-01-06 Andre Vieira <andre.simoesdiasvieira@arm.com>
31096 * config/arm/arm.md (<cdp>): New.
31097 * config/arm/arm.c (neon_const_bounds): Rename this ...
31098 (arm_const_bounds): ... this.
31099 (arm_coproc_builtin_available): New.
31100 * config/arm/arm-builtins.c (SIMD_MAX_BUILTIN_ARGS): Increase.
31101 (arm_type_qualifiers): Add 'qualifier_unsigned_immediate'.
31102 (CDP_QUALIFIERS): Define to...
31103 (arm_cdp_qualifiers): ... this. New.
31105 (arm_expand_builtin_args): Add case for 6 arguments.
31106 * config/arm/arm-protos.h (neon_const_bounds): Rename this ...
31107 (arm_const_bounds): ... this.
31108 (arm_coproc_builtin_available): New.
31109 * config/arm/arm_acle.h (__arm_cdp): New.
31111 * config/arm/arm_acle_builtins.def (cdp): New.
31113 * config/arm/iterators.md (CDPI,CDP,cdp): New.
31114 * config/arm/neon.md: Rename all 'neon_const_bounds' to
31115 'arm_const_bounds'.
31116 * config/arm/types.md (coproc): New.
31117 * config/arm/unspecs.md (VUNSPEC_CDP, VUNSPEC_CDP2): New.
31118 * doc/extend.texi (ACLE): Add a mention of Coprocessor intrinsics.
31119 * doc/sourcebuild.texi (arm_coproc1_ok, arm_coproc2_ok,
31120 arm_coproc3_ok, arm_coproc4_ok): Document new effective targets.
31122 2017-01-06 Andre Vieira <andre.simoesdiasvieira@arm.com>
31124 * config/arm/arm-builtins.c (arm_unsigned_binop_qualifiers): New.
31125 (UBINOP_QUALIFIERS): New.
31127 (acle_builtin_data): New. Change comment.
31128 (arm_builtins): Remove ARM_BUILTIN_CRC32B, ARM_BUILTIN_CRC32H,
31129 ARM_BUILTIN_CRC32W, ARM_BUILTIN_CRC32CB, ARM_BUILTIN_CRC32CH,
31130 ARM_BUILTIN_CRC32CW. Add ARM_BUILTIN_ACLE_BASE and include
31131 arm_acle_builtins.def.
31132 (ARM_BUILTIN_ACLE_PATTERN_START): Define.
31133 (arm_init_acle_builtins): New.
31134 (CRC32_BUILTIN): Remove.
31135 (bdesc_2arg): Remove entries for crc32b, crc32h, crc32w,
31136 crc32cb, crc32ch and crc32cw.
31137 (arm_init_crc32_builtins): Remove.
31138 (arm_init_builtins): Use arm_init_acle_builtins rather
31139 than arm_init_crc32_builtins.
31140 (arm_expand_acle_builtin): New.
31141 (arm_expand_builtin): Use 'arm_expand_acle_builtin'.
31142 * config/arm/arm_acle_builtins.def: New.
31144 2017-01-06 Andre Vieira <andre.simoesdiasvieira@arm.com>
31146 * config/arm/arm-builtins.c (neon_builtin_datum): Rename to ..
31147 (arm_builtin_datum): ... this.
31148 (arm_init_neon_builtin): Rename to ...
31149 (arm_init_builtin): ... this. Add a new parameters PREFIX
31150 and USE_SIG_IN_NAME.
31151 (arm_init_neon_builtins): Replace 'arm_init_neon_builtin' with
31152 'arm_init_builtin'. Replace type 'neon_builtin_datum' with
31153 'arm_builtin_datum'.
31154 (arm_init_vfp_builtins): Likewise.
31155 (builtin_arg): Rename enum's replacing 'NEON_ARG' with
31156 'ARG_BUILTIN' and add a 'ARG_BUILTIN_NEON_MEMORY.
31157 (arm_expand_neon_args): Rename to ...
31158 (arm_expand_builtin_args): ... this. Rename builtin_arg
31159 enum values and differentiate between ARG_BUILTIN_MEMORY
31160 and ARG_BUILTIN_NEON_MEMORY.
31161 (arm_expand_neon_builtin_1): Rename to ...
31162 (arm_expand_builtin_1): ... this. Rename builtin_arg enum
31163 values, arm_expand_builtin_args and add bool parameter NEON.
31164 (arm_expand_neon_builtin): Use arm_expand_builtin_1.
31165 (arm_expand_vfp_builtin): Likewise.
31166 (NEON_MAX_BUILTIN_ARGS): Remove, it was unused.
31168 2017-01-01 Jan Hubicka <hubicka@ucw.cz>
31170 PR middle-end/77484
31171 * predict.def (PRED_POLYMORPHIC_CALL): Set to 59.
31172 * predict.c (tree_estimate_probability_bb): Reverse direction of
31173 polymorphic call predictor.
31175 2017-01-06 David Malcolm <dmalcolm@redhat.com>
31177 * passes.c (execute_one_pass): Split out pass-skipping logic into...
31178 (determine_pass_name_match): ...this new function and...
31179 (should_skip_pass_p): ...this new function.
31181 2017-01-06 Nathan Sidwell <nathan@acm.org>
31183 * ipa-visibility.c (function_and_variable_visibility): Reformat
31184 comments and long lines. Remove extrneous if.
31185 * symtab.c (symtab_node::make_decl_local): Fix code format.
31186 (symtab_node::set_section_for_node): Fix comment typo.
31188 2017-01-06 Martin Liska <mliska@suse.cz>
31191 * lra-constraints.c: Rename invariant to lra_invariant.
31192 * predict.c (set_even_probabilities): Initialize e to NULL.
31194 2017-01-05 Martin Sebor <msebor@redhat.com>
31196 PR tree-optimization/78910
31197 * gimple-ssa-sprintf.c (tree_digits): Add an argument.
31198 (format_integer): Correct off-by-one error in the handling
31199 of precision with negative numbers in signed conversions..
31201 2017-01-05 Eric Botcazou <ebotcazou@adacore.com>
31203 * doc/invoke.texi (C Dialect Options): Adjust -fsso-struct entry.
31205 2017-01-05 Jakub Jelinek <jakub@redhat.com>
31207 PR tree-optimization/71016
31208 * tree-ssa-phiopt.c (tree_ssa_phiopt_worker): Pass cond_stmt to
31209 factor_out_conditional_conversion. Formatting fix.
31210 (factor_out_conditional_conversion): Add cond_stmt argument.
31211 If arg1 is INTEGER_CST, punt if new_arg0 is not any operand of
31212 cond_stmt and if arg0_def_stmt is not the only stmt in its bb.
31215 2017-01-05 David Malcolm <dmalcolm@redhat.com>
31217 * Makefile.in (OBJS): Add read-md.o, read-rtl.o,
31218 read-rtl-function.o, and selftest-rtl.o.
31219 * config/aarch64/aarch64.c: Include selftest.h and selftest-rtl.h.
31220 (selftest::aarch64_test_loading_full_dump): New function.
31221 (selftest::aarch64_run_selftests): New function.
31222 (TARGET_RUN_TARGET_SELFTESTS): Wire it up to
31223 selftest::aarch64_run_selftests.
31224 * config/i386/i386.c
31225 (selftest::ix86_test_loading_dump_fragment_1): New function.
31226 (selftest::ix86_test_loading_call_insn): New function.
31227 (selftest::ix86_test_loading_full_dump): New function.
31228 (selftest::ix86_test_loading_unspec): New function.
31229 (selftest::ix86_run_selftests): Call the new functions.
31230 * emit-rtl.c (maybe_set_max_label_num): New function.
31231 * emit-rtl.h (maybe_set_max_label_num): New decl.
31232 * function.c (instantiate_decls): Guard call to
31233 instantiate_decls_1 with if (DECL_INITIAL (fndecl)).
31234 * function-tests.c (selftest::verify_three_block_rtl_cfg): Remove
31236 * gensupport.c (gen_reader::gen_reader): Pass "false"
31237 for new "compact" param of rtx_reader.
31238 * print-rtl.c (rtx_writer::print_rtx_operand): Print "(nil)"
31239 rather than an empty string for NULL strings.
31240 * read-md.c: Potentially include config.h rather than bconfig.h.
31241 Wrap include of errors.h with #ifdef GENERATOR_FILE.
31242 (have_error): New global, copied from errors.c.
31243 (md_reader::read_name): Rename to...
31244 (md_reader::read_name_1): ...this, adding "out_loc" param,
31245 and converting "missing name or number" to returning false, rather
31247 (md_reader::read_name): Reimplement in terms of read_name_1.
31248 (md_reader::read_name_or_nil): New function.
31249 (md_reader::read_string): Handle "(nil)" by returning NULL.
31250 (md_reader::md_reader): Add new param "compact".
31251 (md_reader::read_md_files): Wrap with #ifdef GENERATOR_FILE.
31252 (md_reader::read_file): New method.
31253 * read-md.h (md_reader::md_reader): Add new param "compact".
31254 (md_reader::read_file): New method.
31255 (md_reader::is_compact): New accessor.
31256 (md_reader::read_name): Convert return type from void to file_location.
31257 (md_reader::read_name_or_nil): New decl.
31258 (md_reader::read_name_1): New decl.
31259 (md_reader::m_compact): New field.
31260 (noop_reader::noop_reader): Pass "false" for new "compact" param
31262 (rtx_reader::rtx_reader): Add new "compact" param.
31263 (rtx_reader::read_rtx_operand): Make virtual and convert return
31264 type from void to rtx.
31265 (rtx_reader::read_until): New decl.
31266 (rtx_reader::handle_any_trailing_information): New virtual function.
31267 (rtx_reader::postprocess): New virtual function.
31268 (rtx_reader::finalize_string): New virtual function.
31269 (rtx_reader::m_in_call_function_usage): New field.
31270 (rtx_reader::m_reuse_rtx_by_id): New field.
31271 * read-rtl-function.c: New file.
31272 * selftest-rtl.c (selftest::assert_rtx_ptr_eq_at): New function.
31273 * selftest-rtl.h (ASSERT_RTX_PTR_EQ): New macro.
31274 (selftest::verify_three_block_rtl_cfg): New decl.
31275 * read-rtl-function.h: New file.
31276 * read-rtl.c: Potentially include config.h rather than bconfig.h.
31277 For host, include function.h, memmodel.h, and emit-rtl.h.
31278 (one_time_initialization): New function.
31279 (struct compact_insn_name): New struct.
31280 (compact_insn_names): New array.
31281 (find_code): Handle insn codes in compact dumps.
31282 (apply_subst_iterator): Wrap with #ifdef GENERATOR_FILE.
31283 (bind_subst_iter_and_attr): Likewise.
31284 (add_condition_to_string): Likewise.
31285 (add_condition_to_rtx): Likewise.
31286 (apply_attribute_uses): Likewise.
31287 (add_current_iterators): Likewise.
31288 (apply_iterators): Likewise.
31289 (initialize_iterators): Guard usage of apply_subst_iterator with
31290 #ifdef GENERATOR_FILE.
31291 (read_conditions): Wrap with #ifdef GENERATOR_FILE.
31292 (md_reader::read_mapping): Likewise.
31293 (add_define_attr_for_define_subst): Likewise.
31294 (add_define_subst_attr): Likewise.
31295 (read_subst_mapping): Likewise.
31296 (check_code_iterator): Likewise.
31297 (rtx_reader::read_rtx): Likewise. Move one-time initialization
31299 (one_time_initialization): New function.
31300 (rtx_reader::read_until): New method.
31301 (read_flags): New function.
31302 (parse_reg_note_name): New function.
31303 (rtx_reader::read_rtx_code): Initialize "iterator" to NULL.
31304 Handle reuse_rtx ids.
31305 Wrap iterator lookup within #ifdef GENERATOR_FILE.
31306 Add parsing support for RTL dumps, mirroring the special-cases in
31307 print_rtx, by calling read_flags, reading REG_NOTE names, INSN_UID
31308 values, and calling handle_any_trailing_information.
31309 (rtx_reader::read_rtx_operand): Convert return type from void
31310 to rtx, returning return_rtx. Handle case 'e'. Call
31311 finalize_string on XSTR and XTMPL fields.
31312 (rtx_reader::read_nested_rtx): Handle dumps in which trailing
31313 "(nil)" values were omitted. Call the postprocess vfunc on the
31315 (rtx_reader::rtx_reader): Add new "compact" param and pass to base
31316 class ctor. Initialize m_in_call_function_usage. Call
31317 one_time_initialization.
31318 * rtl-tests.c (selftest::test_uncond_jump): Call
31319 set_new_first_and_last_insn.
31320 * rtl.h (read_rtx): Wrap decl with #ifdef GENERATOR_FILE.
31321 * selftest-rtl.c: New file.
31322 * selftest-rtl.h (class selftest::rtl_dump_test): New class.
31323 (selftest::get_insn_by_uid): New decl.
31324 * selftest-run-tests.c (selftest::run_tests): Call
31325 read_rtl_function_c_tests.
31326 * selftest.h (selftest::read_rtl_function_c_tests): New decl.
31327 * tree-dfa.c (ssa_default_def): Return NULL_TREE for rtl function
31330 2017-01-05 Uros Bizjak <ubizjak@gmail.com>
31332 * config/i386/i386.md (*testqi_ext_3): No need to handle memory
31333 operands in a special way. Assert that pos+len <= mode precision.
31335 2017-01-05 Jakub Jelinek <jakub@redhat.com>
31337 * common.opt (fvect-cost-model): Remove RejectNegative flag, use
31338 3 argument Alias with unlimited for the negative form.
31339 (fno-vect-cost-model): Removed.
31341 2017-01-05 Martin Liska <mliska@suse.cz>
31343 * hsa-gen.c (gen_hsa_divmod): New function.
31344 (gen_hsa_insn_for_internal_fn_call): Use the function for IFN_DIVMOD.
31346 2017-01-05 Martin Liska <mliska@suse.cz>
31349 * gcc.c (lookup_compiler): Reject '-' filename for a precompiled
31352 2017-01-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
31354 * config/s390/s390.c (s390_expand_setmem): Unroll the loop for
31355 small constant length operands.
31357 2017-01-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
31359 * config/s390/s390.c (s390_expand_setmem): Avoid overlapping bytes
31360 between loop iterations.
31362 2017-01-05 Martin Liska <mliska@suse.cz>
31365 * gimplify.c (gimplify_decl_expr): Compare to
31366 asan_poisoned_variables instread of checking flags.
31367 (gimplify_target_expr): Likewise.
31368 (gimplify_expr): Likewise.
31369 (gimplify_function_tree): Conditionally initialize
31370 asan_poisoned_variables.
31372 2017-01-04 Jeff Law <law@redhat.com>
31374 PR tree-optimizatin/78812
31375 * rtl.h (contains_mem_rtx_p): Prototype.
31376 * ifcvt.c (containts_mem_rtx_p): Move from here to...
31377 * rtlanal.c (contains_mem_rtx_p): Here and remove static linkage.
31378 * gcse.c (prune_expressions): Use contains_mem_rtx_p to discover
31379 and prune MEMs that are not at the toplevel of a SET_SRC rtx. Look
31380 through ZERO_EXTEND and SIGN_EXTEND when trying to avoid pruning MEMs.
31382 2017-01-04 Alexandre Oliva <aoliva@redhat.com>
31384 * input.c (assert_char_at_range): Default-initialize actual_range.
31386 2017-01-04 Alexandre Oliva <aoliva@redhat.com>
31388 * df-scan.c (df_ref_create_structure): Make regno unsigned,
31389 to match the caller.
31391 2017-01-04 Alexandre Oliva <aoliva@redhat.com>
31393 * cfgexpand.c (expand_gimple_basic_block): Disregard debug
31394 insns after final jump in test to emit dummy move.
31396 2017-01-04 Alexandre Oliva <aoliva@redhat.com>
31398 * gimple-iterator.h (gsi_one_nondebug_before_end_p): New.
31399 * tree-eh.c (cleanup_empty_eh): Skip more debug stmts.
31401 2017-01-04 Alexandre Oliva <aoliva@redhat.com>
31403 * multiple_target.c (create_dispatcher_calls): Init e_next.
31404 * tree-ssa-loop-split.c (split_loop): Init border.
31405 * tree-vect-loop.c (vect_determine_vectorization_factor): Init
31408 2017-01-04 Michael Meissner <meissner@linux.vnet.ibm.com>
31413 * config/rs6000/predicates.md (sf_subreg_operand): New predicate.
31414 (altivec_register_operand): Do not return true if the operand
31415 contains a SUBREG mixing SImode and SFmode.
31416 (vsx_register_operand): Likewise.
31417 (vsx_reg_sfsubreg_ok): New predicate.
31418 (vfloat_operand): Do not return true if the operand contains a
31419 SUBREG mixing SImode and SFmode.
31420 (vint_operand): Likewise.
31421 (vlogical_operand): Likewise.
31422 (gpc_reg_operand): Likewise.
31423 (int_reg_operand): Likewise.
31424 * config/rs6000/rs6000-protos.h (valid_sf_si_move): Add declaration.
31425 * config/rs6000/rs6000.c (valid_sf_si_move): New function to
31426 determine if a MOVSI or MOVSF operation contains SUBREGs that mix
31428 (rs6000_emit_move_si_sf_subreg): New helper function.
31429 (rs6000_emit_move): Call rs6000_emit_move_si_sf_subreg to possbily
31430 fixup SUBREGs involving SImode and SFmode.
31431 * config/rs6000/vsx.md (SFBOOL_*): New constants that are operand
31432 numbers for the new peephole2 optimization.
31433 (peephole2 for SFmode unions): New peephole2 to optimize cases in
31434 the GLIBC math library that do AND/IOR/XOR operations on single
31435 precision floating point.
31436 * config/rs6000/rs6000.h (TARGET_NO_SF_SUBREG): New internal
31437 target macros to say whether we need to avoid SUBREGs mixing
31439 (TARGET_ALLOW_SF_SUBREG): Likewise.
31440 * config/rs6000/rs6000.md (UNSPEC_SF_FROM_SI): New unspecs.
31441 (UNSPEC_SI_FROM_SF): Likewise.
31442 (iorxor): Change spacing.
31443 (and_ior_xor): New iterator for AND, IOR, and XOR.
31444 (movsi_from_sf): New insns for SImode/SFmode SUBREG support.
31445 (movdi_from_sf_zero_ext): Likewise.
31446 (mov<mode>_hardfloat, FMOVE32 iterator): Use register_operand
31447 instead of gpc_reg_operand. Add SImode/SFmode SUBREG support.
31448 (movsf_from_si): New insn for SImode/SFmode SUBREG support.
31449 (fma<mode>4): Use gpc_reg_operand instead of register_operand.
31450 (fms<mode>4): Likewise.
31451 (fnma<mode>4): Likewise.
31452 (fnms<mode>4): Likewise.
31453 (nfma<mode>4): Likewise.
31454 (nfms<mode>4): Likewise.
31456 2017-01-04 Marek Polacek <polacek@redhat.com>
31459 * doc/invoke.texi: Document -Wpointer-compare.
31461 2017-01-04 Jakub Jelinek <jakub@redhat.com>
31463 * optc-gen.awk: Emit #error for -W*/-f*/-m* Enum without
31466 * dwarf2out.c (output_loc_list): Don't throw away 64K+ location
31467 descriptions for -gdwarf-5 and emit them as uleb128 instead of
31470 2017-01-04 Kelvin Nilsen <kelvin@gcc.gnu.org>
31473 * doc/sourcebuild.texi (PowerPC-specific attributes): Add
31474 documentation of the powerpc_popcntb_ok attribute.
31475 * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
31476 code to issue warning messages if a requested CPU configuration is
31477 not supported by the binary (assembler and loader) toolchain.
31478 (spe_init_builtins): Add two assertions to prevent ICE if attempt is
31479 made to define a built-in function that has been disabled.
31480 (paired_init_builtins): Add assertion to prevent ICE if attempt is
31481 made to define a built-in function that has been disabled.
31482 (altivec_init_builtins): Add comment explaining why definition
31483 of the DST built-in functions is not preceded by an assertion
31484 check. Add assertions to prevent ICE if attempts are made to
31485 define an altivec predicate or an abs* built-in function that has
31487 (htm_init_builtins): Add comment explaining why definition of the
31488 htm built-in functions is not preceded by an assertion check.
31490 2017-01-04 Jeff Law <law@redhat.com>
31492 PR tree-optimizatin/67955
31493 * tree-ssa-alias.c (same_addr_size_stores_p): Check offsets first.
31494 Allow any SSA_VAR_P as the base objects. Use integer_zerop. Verify
31495 the points-to solution does not include pt_null. Use DECL_PT_UID
31498 2017-01-04 Uros Bizjak <ubizjak@gmail.com>
31500 * config/i386/i386.md (HI/SImode test with imm to QImode splitters):
31501 Use gen_int_mode instead of gen_lopwart for const_int operands.
31503 2017-01-04 Jakub Jelinek <jakub@redhat.com>
31505 PR tree-optimization/71563
31506 * match.pd: Simplify X << Y into X if Y is known to be 0 or
31507 out of range value - has low bits known to be zero.
31509 2017-01-04 Alan Modra <amodra@gmail.com>
31511 * Makefile.in (aclocal_deps): Update and order as per aclocal.m4.
31512 * configure: Regenerate.
31513 * config.in: Regenerate.
31515 2017-01-04 Jakub Jelinek <jakub@redhat.com>
31518 * input.c (ebcdic_execution_charset::on_error): Don't use strstr for
31519 a substring of the message, but strcmp with the whole message. Ifdef
31520 ENABLE_NLS, translate the message first using dgettext.
31522 2017-01-03 Jeff Law <law@redhat.com>
31524 PR tree-optimizatin/78856
31525 * tree-ssa-threadupdate.c: Include tree-vectorizer.h.
31526 (mark_threaded_blocks): Remove code to truncate thread paths that
31527 cross multiple loop headers. Instead invalidate the cached loop
31528 iteration information and handle case of a thread path walking
31529 into an irreducible region.
31531 2017-01-03 Michael Meissner <meissner@linux.vnet.ibm.com>
31534 * config/rs6000/rs6000.c (rs6000_split_signbit): Change some
31535 assertions. Add support for doing the signbit if the IEEE 128-bit
31536 floating point value is in a GPR.
31537 * config/rs6000/rs6000.md (Fsignbit): Delete.
31538 (signbit<mode>2_dm): Delete using <Fsignbit> and just use "wa".
31539 Update the length attribute if the value is in a GPR.
31540 (signbit<mode>2_dm_<su>ext): Add combiner pattern to eliminate
31541 the sign or zero extension instruction, since the value is always 0/1.
31542 (signbit<mode>2_dm2): Delete using <Fsignbit>.
31545 * config/rs6000/vsx.md (vsx_extract_<mode>_store_p9): If we are
31546 extracting SImode to a GPR register so that we can generate a
31547 store, limit the vector to be in a traditional Altivec register
31548 for the vextuwrx instruction.
31550 2017-01-03 Ian Lance Taylor <iant@google.com>
31552 * godump.c (go_format_type): Treat ENUMERAL_TYPE like INTEGER_TYPE.
31554 2017-01-03 Martin Sebor <msebor@redhat.com>
31556 PR tree-optimization/78696
31557 * gimple-ssa-sprintf.c (format_floating): Correct handling of
31558 precision. Use MPFR for %f for greater fidelity. Correct handling
31560 (pass_sprintf_length::compute_format_length): Set width and precision
31561 specified by asrerisk to void_node for vararg functions.
31562 (try_substitute_return_value): Adjust dump output.
31564 2017-01-03 David Edelsohn <dje.gcc@gmail.com>
31566 * doc/invoke.texi (RS6000 options): LRA is enabled by default.
31568 2017-01-03 Eric Botcazou <ebotcazou@adacore.com>
31570 * doc/invoke.texi (SPARC options): Document -mlra as the default.
31571 * config/sparc/sparc.c (sparc_option_override): Force LRA unless
31572 -mlra/-mno-lra was passed to the compiler.
31574 2017-01-03 James Cowgill <James.Cowgill@imgtec.com>
31576 PR rtl-optimization/65618
31577 * emit-rtl.c (try_split): Move initialization of "before" and
31578 "after" to just before the call to emit_insn_after_setloc.
31580 2017-01-03 Gerald Pfeifer <gerald@pfeifer.com>
31582 * doc/md.texi (Standard Names): Remove reference to Java frontend.
31584 2017-01-03 Pierre-Marie de Rodat <derodat@adacore.com>
31586 * dwarf2out.c (gen_enumeration_type_die): When
31587 -gno-strict-dwarf, add a DW_AT_encoding attribute.
31589 2017-01-03 Jakub Jelinek <jakub@redhat.com>
31591 PR tree-optimization/78965
31592 * gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length):
31593 Change first argument from const call_info & to call_info &. For %n
31594 set info.nowrite to false.
31596 PR middle-end/78901
31597 * gimple-ssa-sprintf.c (try_substitute_return_value): Don't change
31598 possibly throwing calls.
31600 * genmatch.c (dt_node::gen_kids_1): If generic_exprs include SSA_NAME
31601 and exprs_len || fns_len, emit the code for SSA_NAME next to the exprs
31602 and fns handling, rather than in a separate case SSA_NAME.
31604 2017-01-02 Jeff Law <law@redhat.com>
31606 * config/darwin-driver.c (darwin_driver_init): Const-correctness
31607 fixes for first_period and second_period variables.
31609 2017-01-02 Uros Bizjak <ubizjak@gmail.com>
31612 * config/i386/i386.md (UNSPEC_NOREX_MEM): New unspec.
31613 (*insvqi_1): New insn pattern.
31614 (*insvqi_1_mem_rex64): Ditto.
31615 (*insvqi_2): Ditto.
31616 (*insvqi_3): Rename from *insvqi.
31618 (*extzvqi_mem_rex64): Add UNSPEC_NOREX_MEM tag.
31620 2017-01-02 Gerald Pfeifer <gerald@pfeifer.com>
31622 * doc/cfg.texi (Edges): Remove reference to Java.
31623 (Maintaining the CFG): Ditto.
31625 2017-01-01 Jan Hubicka <hubicka@ucw.cz>
31627 PR middle-end/77674
31628 * symtab.c (symtab_node::binds_to_current_def_p): Fix handling of
31629 transparent aliases.
31631 2017-01-01 Jan Hubicka <hubicka@ucw.cz>
31633 PR middle-end/77484
31634 * predict.def (PRED_CALL): Update hitrate.
31635 (PRED_INDIR_CALL, PRED_POLYMORPHIC_CALL): New predictors.
31636 * predict.c (tree_estimate_probability_bb): Split CALL predictor
31637 into direct/indirect/polymorphic variants.
31639 2017-01-01 Jakub Jelinek <jakub@redhat.com>
31641 Update copyright years.
31643 * gcc.c (process_command): Update copyright notice dates.
31644 * gcov-dump.c (print_version): Ditto.
31645 * gcov.c (print_version): Ditto.
31646 * gcov-tool.c (print_version): Ditto.
31647 * gengtype.c (create_file): Ditto.
31648 * doc/cpp.texi: Bump @copying's copyright year.
31649 * doc/cppinternals.texi: Ditto.
31650 * doc/gcc.texi: Ditto.
31651 * doc/gccint.texi: Ditto.
31652 * doc/gcov.texi: Ditto.
31653 * doc/install.texi: Ditto.
31654 * doc/invoke.texi: Ditto.
31656 Copyright (C) 2017 Free Software Foundation, Inc.
31658 Copying and distribution of this file, with or without modification,
31659 are permitted in any medium without royalty provided the copyright
31660 notice and this notice are preserved.