]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ChangeLog
* cse.c: Use HOST_WIDE_INT_M1 instead of ~(HOST_WIDE_INT) 0.
[thirdparty/gcc.git] / gcc / ChangeLog
1 2016-07-20 Uros Bizjak <ubizjak@gmail.com>
2
3 * cse.c: Use HOST_WIDE_INT_M1 instead of ~(HOST_WIDE_INT) 0.
4 * combine.c: Use HOST_WIDE_INT_M1U instead of
5 ~(unsigned HOST_WIDE_INT) 0.
6 * double-int.h: Ditto.
7 * dse.c: Ditto.
8 * dwarf2asm.c:Ditto.
9 * expmed.c: Ditto.
10 * genmodes.c: Ditto.
11 * match.pd: Ditto.
12 * read-rtl.c: Ditto.
13 * tree-ssa-loop-ivopts.c: Ditto.
14 * tree-ssa-loop-prefetch.c: Ditto.
15 * tree-vect-generic.c: Ditto.
16 * tree-vect-patterns.c: Ditto.
17 * tree.c: Ditto.
18
19 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
20
21 * gcc/config/avr.c (avr_legitimize_address) [AVR_TINY]: Force
22 constant addresses outside [0,0xc0] into a register.
23 (avr_out_movhi_r_mr_reg_no_disp_tiny): Pass insn. And handle
24 cases where the base address register is unused after.
25 (avr_out_movhi_r_mr_reg_disp_tiny): Same.
26 (avr_out_movhi_mr_r_reg_disp_tiny): Same.
27 (avr_out_store_psi_reg_disp_tiny): Same.
28
29 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
30
31 Implement attribute progmem on reduced Tiny cores by adding
32 flash offset 0x4000 to respective symbols.
33
34 PR target/71948
35 * doc/extend.texi (AVR Variable Attributes) [progmem]: Add
36 documentation how it works on reduced Tiny cores.
37 (AVR Named Address Spaces): No support for reduced Tiny.
38 * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): New macro.
39 (avr_address_tiny_pm_p): New static function.
40 (avr_print_operand_address) [AVR_TINY]: Add AVR_TINY_PM_OFFSET
41 if the address is in progmem.
42 (avr_assemble_integer): Same.
43 (avr_encode_section_info) [AVR_TINY]: Set AVR_SYMBOL_FLAG_TINY_PM
44 for symbol_ref in progmem.
45 * config/avr/avr.h (AVR_TINY_PM_OFFSET): New macro.
46 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use it instead of
47 magic 0x4000 when built-in def'ing __AVR_TINY_PM_BASE_ADDRESS__.
48
49 2016-07-20 Patrick Palka <ppalka@gcc.gnu.org>
50
51 * configure.ac (thin_archive_support): New variable. AC_SUBST it.
52 * configure: Regenerate.
53 * Makefile.in (THIN_ARCHIVE_SUPPORT): New variable.
54 (USE_THIN_ARCHIVES): New variable.
55 (libbackend.a): If USE_THIN_ARCHIVES then pass T to ar to build
56 this archive as a thin archive.
57
58 2016-07-20 David Malcolm <dmalcolm@redhat.com>
59
60 * diagnostic-show-locus.c (diagnostic_show_locus): If this is the
61 same location as last time, don't skip if we have fix-it hints.
62 Clarify the skipping logic by converting it from one "if" clause
63 to repeated "if" clauses.
64 * spellcheck-tree.c: Include "cpplib.h".
65 (find_closest_macro_cpp_cb): Move here from c/c-decl.c.
66 (best_macro_match::best_macro_match): New constructor.
67 * spellcheck-tree.h (struct edit_distance_traits<cpp_hashnode *>):
68 Move here from c/c-decl.c.
69 (class best_macro_match): Move here from c/c-decl.c, converting
70 from a typedef to a subclass, gaining a ctor.
71
72 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
73
74 * config/avr/avr-protos.h (avr_addr_space_supported_p): New prototype.
75 * config/avr/avr.c (TARGET_ADDR_SPACE_DIAGNOSE_USAGE): New hook
76 define...
77 (avr_addr_space_diagnose_usage): ...and implementation.
78 (avr_addr_space_supported_p): New function.
79 (avr_nonconst_pointer_addrspace, avr_pgm_check_var_decl): Only
80 report bad address space usage if that space is supported.
81 (avr_insert_attributes): Same. No more complain about unsupported
82 address spaces.
83 * config/avr/avr-c.c (tm_p.h): Include it.
84 (avr_cpu_cpp_builtins): Only define addr-space related built-in
85 macro if avr_addr_space_supported_p.
86
87 2016-07-20 Alexander Monakov <amonakov@ispras.ru>
88
89 * config/nvptx/nvptx.c (nvptx_option_override): Do not set
90 flag_toplevel_reorder.
91
92 2016-07-20 David Malcolm <dmalcolm@redhat.com>
93
94 * gcc-rich-location.c
95 (gcc_rich_location::add_fixit_misspelled_id): New overload, taking
96 a const char *.
97 * gcc-rich-location.h
98 (gcc_rich_location::add_fixit_misspelled_id): Likewise.
99
100 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
101
102 * target.def (addr_space): Add new diagnose_usage to hook vector.
103 * targhooks.c (default_addr_space_diagnose_usage): Add default
104 implementation and...
105 * targhooks.h (default_addr_space_diagnose_usage): ... its prototype.
106 * c/c-parser.c (c_lex_one_token) [CPP_NAME]: If the token
107 is some address space, call targetm.addr_space.diagnose_usage.
108 * doc/tm.texi.in (Named Address Spaces): Add anchor for
109 TARGET_ADDR_SPACE_DIAGNOSE_USAGE documentation.
110 * doc/tm.texi: Regenerate.
111
112 2016-07-20 Martin Liska <mliska@suse.cz>
113
114 PR middle-end/71898
115 * graphite-isl-ast-to-gimple.c (later_of_the_two):
116 Properly handly PHI stmts.
117
118 2016-07-20 Bin Cheng <bin.cheng@arm.com>
119
120 PR tree-optimization/71503
121 PR tree-optimization/71683
122 * tree-if-conv.c (gen_phi_arg_condition): Record true predicate
123 and break.
124
125 2016-07-20 Martin Liska <mliska@suse.cz>
126
127 * doc/invoke.texi (-fipa-ra): Document when the option is
128 disabled. Fix a typo.
129
130 2016-07-20 Martin Liska <mliska@suse.cz>
131
132 * Makefile.in: Include fibonacci_heap.c
133 * fibonacci_heap.c: New file.
134 * fibonacci_heap.h (fibonacci_heap::insert): Use insert_node.
135 (fibonacci_heap::union_with): Fix deletion of the second heap.
136 * selftest-run-tests.c (selftest::run_tests): Incorporate
137 fibonacci heap tests.
138 * selftest.h: Declare fibonacci_heap_c_tests.
139
140 2016-07-20 Martin Liska <mliska@suse.cz>
141
142 * selftest-run-tests.c (selftest::run_tests): New function.
143 * selftest.h (sreal_c_tests): Declare.
144 * sreal.c (sreal_verify_basics): New function.
145 (verify_aritmetics): Likewise.
146 (sreal_verify_arithmetics): Likewise.
147 (verify_shifting): Likewise.
148 (sreal_verify_shifting): Likewise.
149 (void sreal_c_tests): Likewise.
150
151 2016-07-19 Jakub Jelinek <jakub@redhat.com>
152
153 PR rtl-optimization/71916
154 * cfgrtl.c (contains_no_active_insn_p): Return false also for
155 bb which have a single succ fake edge.
156
157 2016-07-19 Aldy Hernandez <aldyh@redhat.com>
158
159 PR debug/71855
160 * dwarf2out.c (gen_subprogram_die): Only call
161 gen_unspecified_parameters_die while dumping early dwarf.
162
163 2016-07-19 Jakub Jelinek <jakub@redhat.com>
164
165 PR middle-end/71874
166 * gimple-fold.c (fold_builtin_memory_op): Use
167 get_addr_base_and_unit_offset instead of get_ref_base_and_extent.
168
169 2016-07-19 Uros Bizjak <ubizjak@gmail.com>
170
171 * builtins.c: Use HOST_WIDE_INT_1 instead of (HOST_WIDE_INT) 1,
172 HOST_WIDE_INT_1U instead of (unsigned HOST_WIDE_INT) 1,
173 HOST_WIDE_INT_M1 instead of (HOST_WIDE_INT) -1 and
174 HOST_WIDE_INT_M1U instead of (unsigned HOST_WIDE_INT) -1.
175 * combine.c: Ditto.
176 * cse.c: Ditto.
177 * dojump.c: Ditto.
178 * double-int.c: Ditto.
179 * dse.c: Ditto.
180 * dwarf2out.c: Ditto.
181 * expmed.c: Ditto.
182 * expr.c: Ditto.
183 * fold-const.c: Ditto.
184 * function.c: Ditto.
185 * fwprop.c: Ditto.
186 * genmodes.c: Ditto.
187 * hwint.c: Ditto.
188 * hwint.h: Ditto.
189 * ifcvt.c: Ditto.
190 * loop-doloop.c: Ditto.
191 * loop-invariant.c: Ditto.
192 * loop-iv.c: Ditto.
193 * match.pd: Ditto.
194 * optabs.c: Ditto.
195 * real.c: Ditto.
196 * reload.c: Ditto.
197 * rtlanal.c: Ditto.
198 * simplify-rtx.c: Ditto.
199 * stor-layout.c: Ditto.
200 * toplev.c: Ditto.
201 * tree-ssa-loop-ivopts.c: Ditto.
202 * tree-vect-generic.c: Ditto.
203 * tree-vect-patterns.c: Ditto.
204 * tree.c: Ditto.
205 * tree.h: Ditto.
206 * ubsan.c: Ditto.
207 * varasm.c: Ditto.
208 * wide-int-print.cc: Ditto.
209 * wide-int.cc: Ditto.
210 * wide-int.h: Ditto.
211
212 2016-07-19 David Malcolm <dmalcolm@redhat.com>
213
214 * selftest.c (selftest::assert_streq): Handle NULL values of
215 val_actual and val_expected.
216
217 2016-07-19 Martin Jambor <mjambor@suse.cz>
218
219 PR fortran/71688
220 * trans-decl.c (gfc_generate_function_code): Use cgraph_get_create_node
221 rather than cgraph_create_node to get a call graph node.
222
223 2016-07-19 Richard Biener <rguenther@suse.de>
224
225 * gimple-fold.c (get_base_constructor): Add VIEW_CONVERT case,
226 handle all tcc_constant bases and valueize SSA names.
227 * tree-ssa-sccvn.c (fully_constant_vn_reference_p): Handle
228 tcc_constant bases.
229
230 2016-07-19 David Malcolm <dmalcolm@redhat.com>
231
232 * function-tests.c (selftest::verify_three_block_rtl_cfg): Verify
233 the flags of the exit block and bb2, not just the entry block.
234
235 2016-07-19 Richard Biener <rguenther@suse.de>
236
237 PR tree-optimization/71901
238 * tree-ssa-sccvn.h (struct vn_reference_op_struct): Add
239 align member, group stuff with the bitfield.
240 (vn_ref_op_align_unit): New inline.
241 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): For ARRAY_REFs
242 record element alignment and operand 3 unchanged.
243 (ao_ref_init_from_vn_reference): Adjust.
244 (valueize_refs_1): Likewise.
245 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Likewise.
246
247 2016-07-19 Richard Biener <rguenther@suse.de>
248
249 PR tree-optimization/71908
250 * tree-ssa-structalias.c (get_constraint_for_component_ref): Handle
251 symbolic constants in a more reliable way.
252
253 2016-07-19 Ilya Enkovich <ilya.enkovich@intel.com>
254
255 * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer): Update
256 comment.
257 (vect_update_inits_of_drs): Likewise.
258 (vect_create_cond_for_alias_checks): Likewise.
259 * tree-vect-loop.c (vect_get_known_peeling_cost): Likewise.
260
261 2016-07-19 Richard Biener <rguenther@suse.de>
262
263 PR lto/71907
264 * lto-streamer-out.c (DFS::DFS_write_tree_body): For blocks
265 with an abstract origin that is not an inlined function outer
266 scope add a self-reference as abstract origin.
267 * tree-streamer-out.c (write_ts_block_tree_pointers): Likewise.
268
269 2016-07-18 Michael Meissner <meissner@linux.vnet.ibm.com>
270
271 PR target/71493
272 * config/rs6000/rs6000.c (rs6000_function_value): Fix
273 unintentional System V.4 structure return breakage for structures
274 with a single floating point element.
275
276 2016-07-18 Yuri Rumyantsev <ysrumyan@gmail.com>
277
278 PR tree-optimization/71734
279 * tree-ssa-loop-im.c (ref_indep_loop_p_1): Add REF_LOOP argument which
280 contains REF, use it to check safelen, assume that safelen value
281 must be greater 1, fix style.
282 (ref_indep_loop_p_2): Add REF_LOOP argument.
283 (ref_indep_loop_p): Pass LOOP as additional argument to
284 ref_indep_loop_p_2.
285
286 2016-07-18 Dominik Vogt <vogt@linux.vnet.ibm.com>
287
288 * cfgexpand.c (expand_stack_vars): Implement synamic stack space
289 allocation in the prologue.
290 * explow.c (get_dynamic_stack_base): New function to return an address
291 expression for the dynamic stack base.
292 (get_dynamic_stack_size): New function to do the required dynamic stack
293 space size calculations.
294 (allocate_dynamic_stack_space): Use new functions.
295 (align_dynamic_address): Move some code from
296 allocate_dynamic_stack_space to new function.
297 * explow.h (get_dynamic_stack_base, get_dynamic_stack_size): Export.
298
299 2016-07-18 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
300
301 * config/s390/s390.c (s390_encode_section_info): Always set
302 notaligned marker if mode size is 0 or no MEM_ALIGN info could be
303 found.
304
305 2016-07-18 Richard Biener <rguenther@suse.de>
306
307 PR tree-optimization/71893
308 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Compensate
309 for sizetype cast added by array_ref_element_size.
310 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
311
312 2016-07-16 John David Anglin <danglin@gcc.gnu.org>
313
314 * config/pa/pa.c (hppa_profile_hook): Allocate stack space for
315 register parameters. Remove code to initialize argument pointer
316 on TARGET_64BIT. Optimize call to _mcount when it can be reached
317 using a pc-relative branch. Cleanup conditional code.
318 * config/pa/pa.md (call_mcount): New expander.
319 (call_mcount_nonpic): New insn.
320 (call_mcount_pic): New insn and split.
321 (call_mcount_pic_post_reload): New insn.
322 (call_mcount_64bit): New insn and split.
323 (call_mcount_64bit_post_reload): New insn.
324
325 2016-07-15 Georg-Johann Lay <avr@gjlay.de>
326
327 * config/avr/predicates.md (const_m255_to_m1_operand): New.
328 * config/avr/constraints.md (Cn8, Ca1, Co1, Yx2): New constraints.
329 * config/avr/avr.md (add<mode>3) <ALL1>: Fix set_vzn for +/-2.
330 (*cmphi.zero-extend.0, *cmphi.zero-extend.1)
331 (*usum_widenqihi3, *udiff_widenqihi3)
332 (*addhi3_zero_extend.const): New combiner insns.
333 (andqi3, iorqi3): Provide "l" (NO_LD_REGS) alternative if
334 just 1 bit is affected.
335 * config/avr/avr.c (avr_out_bitop) <QImode>: Don't access xop[3].
336 (avr_out_compare) [EQ,NE]: Tweak comparing d-regs against -1.
337
338 2016-07-15 Cesar Philippidis <cesar@codesourcery.com>
339
340 * omp-low.c (lower_omp_target): Mark data clauses with
341 GOMP_MAP_FORCE_{PRESENT,TO,FROM,TOFROM} as potentially having
342 zero-length subarrays.
343
344 2016-07-15 Richard Biener <rguenther@suse.de>
345
346 PR tree-optimization/71881
347 * tree-loop-distribution.c (destroy_loop): Remove blocks in
348 reverse DOM order to make debug temp generation happy.
349
350 2016-07-15 Richard Biener <rguenther@suse.de>
351
352 PR tree-optimization/71887
353 * tree-ssa-phiopt.c (absorbing_element_p): Add rhs arg and
354 verify it is not zero for division / modulo handling.
355 (value_replacement): Adjust.
356
357 2016-07-15 Virendra Pathak <virendra.pathak@broadcom.com>
358 Julian Brown <julian@codesourcery.com>
359
360 * config/aarch64/aarch64-cores.def: Update vulcan COSTS.
361 * config/aarch64/aarch64-cost-tables.h
362 (vulcan_extra_costs): New variable.
363 * config/aarch64/aarch64.c
364 (vulcan_addrcost_table): Likewise.
365 (vulcan_regmove_cost): Likewise.
366 (vulcan_vector_cost): Likewise.
367 (vulcan_branch_cost): Likewise.
368 (vulcan_tunings): Likewise.
369
370 2016-07-15 Alexander Monakov <amonakov@ispras.ru>
371
372 * cgraphunit.c (cgraph_order_sort_kind): New entry ORDER_VAR_UNDEF.
373 (output_in_order): Loop over undefined variables too. Output them
374 via assemble_undefined_decl. Skip variables that correspond to hard
375 registers or have value-exprs.
376 * varpool.c (symbol_table::output_variables): Handle undefined
377 variables together with defined ones.
378
379 2016-07-15 Richard Biener <rguenther@suse.de>
380
381 * tree-ssa-pre.c (get_representative_for): Make sure to return
382 the value number of SSA names.
383 (phi_translate_1): get_representative_for cannot return NULL.
384 (do_pre_regular_insertion): Remove redundant call to
385 fully_constant_expression.
386 (do_pre_partial_partial_insertion): Likewise.
387
388 2016-07-15 Bin Cheng <bin.cheng@arm.com>
389
390 * tree-scalar-evolution.c (simple_iv_with_niters): New funcion.
391 (derive_simple_iv_with_niters): New function.
392 (simple_iv): Rewrite using simple_iv_with_niters.
393 * tree-scalar-evolution.h (simple_iv_with_niters): New decl.
394 * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
395 function.
396 (number_of_iterations_exit): Rewrite using above function.
397 * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
398 Decl.
399
400 2016-07-15 Richard Biener <rguenther@suse.de>
401
402 * config/i386/i386.c (ix86_builtin_vectorization_cost): Adjust
403 vec_construct cost.
404
405 2016-07-14 Jakub Jelinek <jakub@redhat.com>
406
407 PR tree-optimization/71872
408 * tree-data-ref.c (get_references_in_stmt): Ignore references
409 with is_gimple_constant get_base_address.
410
411 2016-07-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
412
413 * config/arm/arm.h (TARGET_HAVE_LDACQ): Enable for ARMv8-M Mainline.
414 (TARGET_HAVE_LDACQD): New macro.
415 * config/arm/sync.md (atomic_loaddi): Use TARGET_HAVE_LDACQD rather
416 than TARGET_HAVE_LDACQ.
417 (arm_load_acquire_exclusivedi): Likewise.
418 (arm_store_release_exclusivedi): Likewise.
419
420 2016-07-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
421
422 PR rtl-optimization/71878
423 * lra-constraints.c (match_reload): Pass information about other
424 output operands. Create new unique register value if matching input
425 operand shares same register value as output operand being considered.
426 (curr_insn_transform): Record output operands already processed.
427
428 2016-07-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
429
430 PR target/65951
431 PR tree-optimization/70923
432 * tree-vect-patterns.c: Include mult-synthesis.h.
433 (target_supports_mult_synth_alg): New function.
434 (synth_lshift_by_additions): Likewise.
435 (apply_binop_and_append_stmt): Likewise.
436 (vect_synth_mult_by_constant): Likewise.
437 (target_has_vecop_for_code): Likewise.
438 (vect_recog_mult_pattern): Use above functions to synthesize vector
439 multiplication by integer constants.
440
441 2016-07-14 Alan Modra <amodra@gmail.com>
442
443 * gcc/config/rs6000/altivec.md (altivec_mov<mode>): Disparage
444 gpr alternatives. Correct '*' placement on Y,r alternative.
445 Add '*' on operand 1 of r,r alternative.
446
447 2016-07-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
448
449 * expmed.c (mult_variant, choose_mult_variant): Move declaration to...
450 * expmed.h: ... Here.
451
452 2016-07-14 Jan Hubicka <hubicka@ucw.cz>
453
454 * gimple.h (stmt_can_terminate_bb_p): New function.
455 * tree-cfg.c (need_fake_edge_p): Rename to ...
456 (stmt_can_terminate_bb_p): ... this; return true if stmt can
457 throw external; handle const and pure calls.
458 * tree-ssa-loop-niter.c (loop_only_exit_p): Use it.
459
460 2016-07-14 Richard Biener <rguenther@suse.de>
461
462 PR tree-optimization/71866
463 * tree-ssa-pre.c (get_constant_for_value_id): Remove.
464 (do_hoist_insertion): Avoid endless recursion when we
465 didn't insert anything because we managed to simplify
466 things down to a constant or SSA name.
467 (fully_constant_expression): Re-write in terms of ...
468 * tree-ssa-sccvn.h (vn_nary_simplify): ... this. Declare.
469 * tree-ssa-sccvn.c (vn_nary_simplify): New wrapper around
470 vn_nary_build_or_lookup_1.
471 (vn_nary_build_or_lookup_1): Added flag and renamed from ...
472 (vn_nary_build_or_lookup): ... this which now wraps it.
473
474 2016-07-14 Alan Modra <amodra@gmail.com>
475
476 PR target/71733
477 * config/rs6000/rs6000.c (rs6000_option_override_internal): Deal
478 with p9_vector override before power9-dform override.
479
480 2016-07-13 Andi Kleen <ak@linux.intel.com>
481
482 * value-prof.c (gimple_value_profile_transformations): Don't run
483 when auto_profile is on.
484
485 2016-07-13 Andi Kleen <ak@linux.intel.com>
486
487 * auto-profile.c (update_inlined_ind_target,
488 afdo_indirect_call): Print information to dump file.
489
490 2016-07-13 Andrew Burgess <andrew.burgess@embecosm.com>
491
492 * genrecog.c (special_predicate_operand_p): New function.
493 (predicate_name): Move function.
494 (validate_pattern): Don't warn about missing mode for all
495 define_special_predicate predicates.
496
497 2016-07-13 Bin Cheng <bin.cheng@arm.com>
498
499 * tree-vect-data-refs.c (vect_no_alias_p): New function.
500 (vect_prune_runtime_alias_test_list): Call vect_no_alias_p to
501 resolve alias checks which are known at compilation time.
502 Truncate vector LOOP_VINFO_MAY_ALIAS_DDRS(loop_vinfo) if all
503 alias checks are resolved. Move dump info for too many runtime
504 alias checks to here...
505 * tree-vect-loop.c (vect_analyze_loop_2): ...From here.
506
507 2016-07-13 Richard Biener <rguenther@suse.de>
508
509 PR tree-optimization/24574
510 * tree-ssa-phiopt.c (absorbing_element_p): Pass in argument
511 position and add shift, rotate, divison and modulo support
512 for left zero.
513 (value_replacement): Pass in argument position to absorbing_element_p.
514
515 2016-07-13 Ilya Enkovich <ilya.enkovich@intel.com>
516
517 PR ipa/71633
518 * ipa-inline-transform.c (inline_call): Support
519 instrumented thunks.
520
521 2016-07-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
522
523 * config/arm/arm.h (TARGET_HAVE_CBZ): Define.
524 (TARGET_IDIV): Set for all Thumb targets provided they have hardware
525 divide feature.
526 * config/arm/arm.md (divsi3): New unpredicable alternative for ARMv8-M
527 Baseline. Make initial alternative TARGET_32BIT only.
528 (udivsi3): Likewise.
529 * config/arm/thumb1.md (thumb1_cbz): New define_insn.
530 * doc/sourcebuild.texi (arm_thumb1_cbz_ok): Document new effective
531 target.
532
533 2016-07-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
534
535 * config/arm/arm.h (TARGET_HAVE_MOVT): Include ARMv8-M as having MOVT.
536 * config/arm/arm.c (arm_arch_name): (const_ok_for_op): Check MOVT/MOVW
537 availability with TARGET_HAVE_MOVT.
538 (thumb_legitimate_constant_p): Strip the high part of a label_ref.
539 (thumb1_rtx_costs): Also return 0 if setting a half word constant and
540 MOVW is available and replace (unsigned HOST_WIDE_INT) INTVAL by
541 UINTVAL.
542 (thumb1_size_rtx_costs): Make set of half word constant also cost 1
543 extra instruction if MOVW is available. Use a cost variable
544 incremented by COSTS_N_INSNS (1) when the condition match rather than
545 returning an arithmetic expression based on COSTS_N_INSNS. Make
546 constant with bottom half word zero cost 2 instruction if MOVW is
547 available.
548 * config/arm/arm.md (define_attr "arch"): Add v8mb.
549 (define_attr "arch_enabled"): Set to yes if arch value is v8mb and
550 target is ARMv8-M Baseline.
551 (arm_movt): New unpredicable alternative for ARMv8-M Baseline.
552 (arm_movtas_ze): Likewise.
553 * config/arm/thumb1.md (thumb1_movdi_insn): Add ARMv8-M Baseline only
554 alternative for constants satisfying j constraint.
555 (thumb1_movsi_insn): Likewise.
556 (movsi splitter for K alternative): Tighten condition to not trigger
557 if movt is available and j constraint is satisfied.
558 (Pe immediate splitter): Likewise.
559 (thumb1_movhi_insn): Add ARMv8-M Baseline only alternative for
560 constant fitting in an halfword to use MOVW.
561 * doc/sourcebuild.texi (arm_thumb1_movt_ok): Document new ARM
562 effective target.
563
564 2016-07-13 Richard Biener <rguenther@suse.de>
565
566 PR middle-end/71104
567 * gimplify.c (gimplify_modify_expr): Gimplify the RHS before
568 gimplifying the LHS. Make sure to gimplify a returning twice
569 call LHS without using SSA names.
570
571 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
572
573 * tree-data-ref.c (find_data_references_in_stmt): Remove
574 unnecessary call to vec::release.
575 (graphite_find_data_references_in_stmt): Likewise.
576 * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p): Likewise.
577 * tree-vect-stmts.c (vectorizable_condition): Likewise.
578
579 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
580
581 * cfgexpand.c (expand_used_vars): Make the type of a local
582 variable auto_vec.
583 * genmatch.c (lower_for): Likewise.
584 * haifa-sched.c (haifa_sched_init): Likewise.
585 (add_to_speculative_block): Likewise.
586 (create_check_block_twin): Likewise.
587 * predict.c (handle_missing_profiles): Likewise.
588 * tree-data-ref.c (loop_nest_has_data_refs): Likewise.
589 * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Likewise.
590 * tree-ssa-loop-niter.c (discover_iteration_bound_by_body_walk):
591 Likewise.
592 (maybe_lower_iteration_bound): Likewise.
593 * tree-ssa-sccvn.c (DFS): Likewise.
594 * tree-stdarg.c (reachable_at_most_once): Likewise.
595 * tree-vect-stmts.c (vectorizable_conversion): Likewise.
596 (vectorizable_store): Likewise.
597
598 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
599
600 * tree-ssa-sccvn.c (sccvn_dom_walker::~sccvn_dom_walker): remove.
601 (sccvn_dom_walker): make cond_stack an auto_vec.
602
603 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
604
605 * ree.c (struct ext_state): Make type of members auto_vec.
606 (find_and_remove_re): Adjust.
607
608 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
609
610 * cfgexpand.c (struct stack_vars_data): Make type of fields
611 auto_vec.
612 (expand_used_vars): Adjust.
613
614 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
615
616 * ipa.c (record_cdtor_fn): Adjust.
617 (build_cdtor_fns): Likewise.
618 (ipa_cdtor_merge): Make static_ctors and static_dtors local
619 variables.
620
621 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
622
623 * genextract.c (struct accum_extract): Add constructor and make
624 members auto_vec.
625 (gen_insn): Adjust.
626
627 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
628
629 * tree.c (struct free_lang_data_d): Add constructor and change
630 types of members to ones that automatically manage resources.
631 (fld_worklist_push): Adjust.
632 (find_decls_types): Likewise.
633 (find_decls_types_in_eh_region): Likewise.
634 (free_lang_data_in_cgraph): Stop manually creating and
635 destroying members of free_lang_data_d.
636
637 2016-07-13 Uros Bizjak <ubizjak@gmail.com>
638
639 PR rtl-optimization/68961
640 * config/i386/sse.md (movsd/movhpd to movupd peephole2s): Add new
641 peephole variant. Use sse_reg_operand predicates.
642
643 2016-07-12 Uros Bizjak <ubizjak@gmail.com>
644
645 * config/i386/predicates.md (x86_64_immediate_operand)
646 <case CONST_INT>: Remove unneeded truncation to DImode.
647 <case CONST>: Ditto.
648 (x86_64_zext_immediate_operand) <case CONST>: Ditto.
649
650 2016-07-12 Michael Meissner <meissner@linux.vnet.ibm.com>
651
652 PR target/71805
653 * config/rs6000/altivec.md (altivec_vperm_<mode>_internal):
654 The xxperm and xxpermr instructions require that the 2nd input
655 operand overlap with the output operand, and not the 1st.
656 (altivec_vperm_v8hiv16qi): Likewise.
657 (altivec_vperm_<mode>_uns_internal): Likewise.
658 (altivec_vpermr_<mode>_internal): Likewise.
659 (vperm_v8hiv4si): Likewise.
660 (vperm_v16qiv8hi): Likewise.
661
662 2016-07-12 Martin Liska <mliska@suse.cz>
663
664 * params.def: Add avg-loop niter.
665 * tree-ssa-loop-ivopts.c (avg_loop_niter): Use the param.
666 * cfgloopanal.c (expected_loop_iterations_unbounded): Likewise.
667 * doc/invoke.texi: Document the new parameter.
668
669 2016-07-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
670
671 PR middle-end/71700
672 * expr.c (store_constructor): Mask sign-extended bits when widening
673 sub-word constructor element at the start of a word.
674
675 2016-07-12 Martin Liska <mliska@suse.cz>
676
677 * Makefile.in: Append rule for params-options.h.
678 * params-options.h: New file.
679
680 2016-07-12 Martin Liska <mliska@suse.cz>
681
682 * ira-build.c (mark_loops_for_removal): Properly iterate
683 loops.
684
685 2016-07-12 Steven Bosscher <steven@gcc.gnu.org>
686 Richard Biener <rguenther@suse.de>
687
688 PR tree-optimization/23286
689 PR tree-optimization/70159
690 * doc/invoke.texi: Document -fcode-hoisting.
691 * common.opt (fcode-hoisting): New flag.
692 * opts.c (default_options_table): Enable -fcode-hoisting at -O2+.
693 * tree-ssa-pre.c (pre_stats): Add hoist_insert.
694 (do_regular_insertion): Rename to ...
695 (do_pre_regular_insertion): ... this and amend general comments
696 on insertion strathegy.
697 (do_partial_partial_insertion): Rename to ...
698 (do_pre_partial_partial_insertion): ... this.
699 (do_hoist_insertion): New function.
700 (insert_aux): Take flags on whether to do PRE and/or hoist insertion
701 and call do_hoist_insertion properly.
702 (insert): Adjust.
703 (pass_pre::gate): Enable also if -fcode-hoisting is enabled.
704 (pass_pre::execute): Register hoist_insert stats.
705
706 2016-07-12 Jakub Jelinek <jakub@redhat.com>
707
708 PR middle-end/71716
709 * gimple-fold.c (optimize_atomic_compare_exchange_p): Return false
710 for SCALAR_FLOAT_TYPE_P type of expected var, or if TYPE_PRECISION
711 is different from mode's bitsize. Small cleanup.
712
713 2016-07-12 Richard Biener <rguenther@suse.de>
714
715 PR rtl-optimization/68961
716 * fwprop.c (propagate_rtx): Allow SUBREGs of VEC_CONCAT and CONCAT
717 to simplify to a non-constant.
718
719 2016-07-11 Jakub Jelinek <jakub@redhat.com>
720
721 PR middle-end/71758
722 * omp-low.c (expand_omp_target): Gimplify device.
723
724 PR tree-optimization/71823
725 * tree-vect-stmts.c (vectorizable_operation): Use vect_get_vec_defs
726 to get vec_oprnds2 from op2.
727
728 2016-07-11 Uros Bizjak <ubizjak@gmail.com>
729
730 * config/i386/predicates.md (x86_64_immediate_operand) <case CONST>:
731 Hoist common subexpressions.
732 (x86_64_zext_immediate_operand) <case CONST>: Ditto.
733
734 2016-07-11 Pat Haugen <pthaugen@us.ibm.com>
735
736 PR target/71800
737 * config/rs6000/rs6000.md (stfiwx): Change constraint to 'wu' to
738 prevent generation of 'stxsiwx' on pre Power8 hardware.
739
740 2016-07-11 David Malcolm <dmalcolm@redhat.com>
741
742 * input.c: Include cpplib.h.
743 (selftest::temp_source_file): New class.
744 (selftest::temp_source_file::temp_source_file): New ctor.
745 (selftest::temp_source_file::~temp_source_file): New dtor.
746 (selftest::should_have_column_data_p): New function.
747 (selftest::test_should_have_column_data_p): New function.
748 (selftest::temp_line_table): New class.
749 (selftest::temp_line_table::temp_line_table): New ctor.
750 (selftest::temp_line_table::~temp_line_table): New dtor.
751 (selftest::test_accessing_ordinary_linemaps): Add case_ param; use
752 it to create a temp_line_table.
753 (selftest::assert_loceq): Only verify LOCATION_COLUMN for
754 locations that are known to have column data.
755 (selftest::line_table_case): New struct.
756 (selftest::test_reading_source_line): Move tempfile handling
757 to class temp_source_file.
758 (ASSERT_TOKEN_AS_TEXT_EQ): New macro.
759 (selftest::assert_token_loc_eq): New function.
760 (ASSERT_TOKEN_LOC_EQ): New macro.
761 (selftest::test_lexer): New function.
762 (selftest::boundary_locations): New array.
763 (selftest::input_c_tests): Call test_should_have_column_data_p.
764 Loop over a test matrix of interesting values of location and
765 default_range_bits, calling test_lexer on each case in the matrix.
766 Move call to test_accessing_ordinary_linemaps into the matrix.
767 * selftest.h (ASSERT_EQ): Reimplement in terms of...
768 (ASSERT_EQ_AT): New macro.
769
770 2016-07-11 H.J. Lu <hongjiu.lu@intel.com>
771
772 PR target/71801
773 * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
774 Don't convert TImode in debug insn.
775
776 2016-07-11 Bernd Edlinger <bernd.edlinger@hotmail.de>
777
778 Convert TYPE_ALIGN_OK to a TYPE_LANG_FLAG.
779 * tree-core.h (tree_base::nothrow_flag): Adjust comment.
780 (tree_type_common::lang_flag_7): New.
781 (tree_type_common::spare): Reduce size.
782 * tree.h (TYPE_ALIGN_OK): Remove.
783 (TYPE_LANG_FLAG_7): New.
784 (get_inner_reference): Adjust header.
785 * print-tree.c (print_node): Adjust.
786 * expr.c (get_inner_reference): Remove parameter keep_aligning.
787 (get_bit_range, expand_assignment, expand_expr_addr_expr_1): Adjust
788 calls to get_inner_reference.
789 (expand_expr_real_1): Adjust call to get_inner_reference. Remove
790 handling of TYPE_ALIGN_OK.
791 * builtins.c (get_object_alignment_2): Adjust call to
792 get_inner_reference. Remove handling of VIEW_CONVERT_EXPR.
793 * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove handling of
794 TYPE_ALIGN_OK.
795 * asan.c (instrument_derefs): Adjust calls to get_inner_reference.
796 * cfgexpand.c (expand_debug_expr): Likewise.
797 * dbxout.c (dbxout_expand_expr): Likewise.
798 * dwarf2out.c (loc_list_for_address_of_addr_expr_of_indirect_ref,
799 loc_list_from_tree, fortran_common): Likewise.
800 * fold-const.c (optimize_bit_field_compare,
801 decode_field_reference, fold_unary_loc, fold_comparison,
802 split_address_to_core_and_offset): Likewise.
803 * gimple-laddress.c (execute): Likewise.
804 * gimple-ssa-strength-reduction.c (slsr_process_ref): Likewise.
805 * gimplify.c (gimplify_scan_omp_clauses): Likewise.
806 * hsa-gen.c (gen_hsa_addr): Likewise.
807 * simplifx-rtx.c (delegitimize_mem_from_attrs): Likewise.
808 * tsan.c (instrument_expr): Likewise.
809 * ubsan.c (instrument_bool_enum_load, instrument_object_size): Likewise.
810 * tree.c (verify_type_variant): Remove handling of TYPE_ALIGN_OK.
811 * tree-affine.c (tree_to_aff_combination,
812 get_inner_reference_aff): Adjust calls to get_inner_reference.
813 * tree-data-ref.c (split_constant_offset_1,
814 dr_analyze_innermost): Likewise.
815 * tree-scalar-evolution.c (interpret_rhs_expr): Likewise.
816 * tree-sra.c (ipa_sra_check_caller): Likewise.
817 * tree-ssa-loop-ivopts.c (split_address_cost): Likewise.
818 * tree-ssa-math-opts.c (find_bswap_or_nop_load,
819 bswap_replace): Likewise.
820 * tree-vect-data-refs.c (vect_check_gather,
821 vect_analyze_data_refs): Likewise.
822 * config/mips/mips.c (r10k_safe_mem_expr_p): Likewise.
823 * config/pa/pa.c (pa_emit_move_sequence): Remove handling of
824 TYPE_ALIGN_OK.
825
826 2016-07-11 David Malcolm <dmalcolm@redhat.com>
827
828 * Makefile.in (selftest-valgrind): New phony target.
829 * function-tests.c (selftest::build_cfg): Delete pass instances
830 created by the test.
831 (selftest::convert_to_ssa): Likewise.
832 (selftest::test_expansion_to_rtl): Likewise.
833 * tree-cfg.c (selftest::test_linear_chain): Release dominator
834 vectors.
835 (selftest::test_diamond): Likewise.
836
837 2016-07-11 Richard Biener <rguenther@suse.de>
838
839 PR tree-optimization/71816
840 * tree-ssa-pre.c (compute_avail): Adjust alignment of ref rather
841 than replacing all of its operands.
842
843 2016-07-11 Alan Modra <amodra@gmail.com>
844
845 * config/rs6000/rs6000.md (UNSPEC_DOLOOP): New unspec.
846 (ctr<mode>): Add unspec.
847 (ctr<mode>_internal*): Likewise.
848
849 2016-07-08 James Bowman <james.bowman@ftdichip.com>
850
851 * config/ft32/ft32.c (ft32_elf_encode_section_info): New function.
852 * config/ft32/ft32.h (ASM_OUTPUT_SYMBOL_REF): New function.
853
854 2016-07-08 Vladimir Makarov <vmakarov@redhat.com>
855
856 PR rtl-optimization/71621
857 * lra-constraints.c (process_alt_operands): Check combination of
858 reg class and mode.
859
860 2016-07-08 Jason Merrill <jason@redhat.com>
861 Richard Biener <rguenther@suse.de>
862
863 P0145: Refining Expression Order for C++.
864 * gimplify.c (initial_rhs_predicate_for): New.
865 (gimplfy_modify_expr): Gimplify RHS before LHS.
866
867 2016-07-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
868
869 PR target/71297
870 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
871 Allow standard error handling to take over when a wrong number
872 of arguments is presented to __builtin_vec_ld () or
873 __builtin_vec_st ().
874
875 2016-07-08 Jiong Wang <jiong.wang@arm.com>
876
877 * config/aarch64/aarch64-simd-builtins.def (smax): Remove float
878 variants.
879 (smin): Likewise.
880 (fmax): New entry.
881 (fmin): Likewise.
882 * config/aarch64/arm_neon.h (vmaxnm_f32): Use
883 __builtin_aarch64_fmaxv2sf.
884 (vmaxnmq_f32): Likewise.
885 (vmaxnmq_f64): Likewise.
886 (vminnm_f32): Likewise.
887 (vminnmq_f32): Likewise.
888 (vminnmq_f64): Likewise.
889
890 2016-07-08 Michael Meissner <meissner@linux.vnet.ibm.com>
891
892 PR target/71806
893 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Do not
894 enable -mfloat128-hardware by default.
895 (ISA_3_0_MASKS_IEEE): New macro to give all of the VSX options
896 that IEEE 128-bit hardware support needs.
897 * config/rs6000/rs6000.c (rs6000_option_override_internal): If
898 -mcpu=power9 -mfloat128, enable -mfloat128-hardware by default.
899 Use ISA_3_0_MASKS_IEEE as the set of options that IEEE 128-bit
900 floating point requires.
901 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
902 -mfloat128 and -mfloat128-hardware changes.
903
904 2016-07-08 Alan Hayward <alan.hayward@arm.com>
905
906 PR tree-optimization/71667
907 * tree-vect-loop.c (vectorizable_live_operation): ignore DEBUG stmts
908
909 2016-07-08 Martin Liska <mliska@suse.cz>
910
911 PR middle-end/71606
912 * fold-const.c (fold_convertible_p): As COMPLEX_TYPE
913 folding produces SAVE_EXPRs, thus return false for the type.
914
915 2016-07-07 Martin Liska <mliska@suse.cz>
916
917 * file-find.c (remove_prefix): New function.
918 * file-find.h (remove_prefix): Declare the function.
919 * gcc-ar.c (main): Skip a folder of the wrapper if
920 a wrapped binary would point to the same file.
921
922 2016-07-07 Jan Hubicka <jh@suse.cz>
923
924 * tree-scalar-evolution.c (iv_can_overflow_p): export.
925 * tree-scalar-evolution.h (iv_can_overflow_p): Declare.
926 * tree-ssa-loop-ivopts.c (alloc_iv): Use it.
927
928 2016-07-07 Ilya Enkovich <ilya.enkovich@intel.com>
929
930 PR ipa/71624
931 * ipa-inline-analysis.c (compute_inline_parameters): Set
932 local.can_change_signature to false for intrumentation
933 thunk callees.
934
935 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
936
937 * config/arm/arm.h (TARGET_USE_MOVT): Check MOVT/MOVW availability
938 with TARGET_HAVE_MOVT.
939 (TARGET_HAVE_MOVT): Define.
940 * config/arm/arm.c (const_ok_for_op): Check MOVT/MOVW
941 availability with TARGET_HAVE_MOVT.
942 * config/arm/arm.md (arm_movt): Use TARGET_HAVE_MOVT to check MOVT
943 availability.
944 (addsi splitter): Use TARGET_THUMB && TARGET_HAVE_MOVT rather than
945 TARGET_THUMB2.
946 (symbol_refs movsi splitter): Remove TARGET_32BIT check.
947 (arm_movtas_ze): Use TARGET_HAVE_MOVT to check MOVT availability.
948 * config/arm/constraints.md (define_constraint "j"): Use
949 TARGET_HAVE_MOVT to check MOVT availability.
950
951 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
952
953 * config/arm/arm-protos.h: Reindent FL_FOR_* macro definitions.
954
955 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
956
957 * config/arm/arm-arches.def (armv8-m.base): Define new architecture.
958 (armv8-m.main): Likewise.
959 (armv8-m.main+dsp): Likewise.
960 * config/arm/arm-protos.h (FL_FOR_ARCH8M_BASE): Define.
961 (FL_FOR_ARCH8M_MAIN): Likewise.
962 * config/arm/arm-tables.opt: Regenerate.
963 * config/arm/bpabi.h: Add armv8-m.base, armv8-m.main and
964 armv8-m.main+dsp to BE8_LINK_SPEC.
965 * config/arm/arm.h (TARGET_HAVE_LDACQ): Exclude ARMv8-M.
966 (enum base_architecture): Add BASE_ARCH_8M_BASE and BASE_ARCH_8M_MAIN.
967 * config/arm/arm.c (arm_arch_name): Increase size to work with ARMv8-M
968 Baseline and Mainline.
969 (arm_option_override_internal): Also disable arm_restrict_it when
970 !arm_arch_notm. Update comment for -munaligned-access to also cover
971 ARMv8-M Baseline.
972 (arm_file_start): Increase buffer size for printing architecture name.
973 * doc/invoke.texi: Document architectures armv8-m.base, armv8-m.main
974 and armv8-m.main+dsp.
975 (mno-unaligned-access): Clarify that this is disabled by default for
976 ARMv8-M Baseline architectures as well.
977
978 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
979
980 * config/arm/elf.h: Use __ARM_ARCH_ISA_THUMB and __ARM_ARCH_ISA_ARM to
981 decide whether to prevent some libgcc routines being included for some
982 multilibs rather than __ARM_ARCH_6M__ and add comment to indicate the
983 link between this condition and the one in
984 libgcc/config/arm/lib1func.S.
985
986 2016-07-07 Richard Biener <rguenther@suse.de>
987
988 * tree-ssa-pre.c: Include alias.h.
989 (compute_avail): If we have multiple VN_REFERENCEs with the
990 same hashtable entry adjust that to make it a valid replacement
991 for all of them with respect to alignment and aliasing
992 when doing insertion.
993 * tree-ssa-sccvn.h (vn_reference_operands_for_lookup): Declare.
994 * tree-ssa-sccvn.c (vn_reference_operands_for_lookup): New function.
995
996 2016-07-06 Segher Boessenkool <segher@kernel.crashing.org>
997
998 PR target/70098
999 PR target/71763
1000 * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
1001 *ctr<mode>_internal5, *ctr<mode>_internal6): Add *wi to the output
1002 constraint.
1003
1004 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
1005
1006 * var-tracking.c (struct adjust_mem_data): Make side_effects a vector.
1007 (adjust_mems): Adjust.
1008 (adjust_insn): Likewise.
1009 (prepare_call_arguments): Likewise.
1010
1011 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
1012
1013 * gcse.c (struct ls_expr): Make stores field a vector.
1014 (ldst_entry): Adjust.
1015 (free_ldst_entry): Likewise.
1016 (print_ldst_list): Likewise.
1017 (compute_ld_motion_mems): Likewise.
1018 (update_ld_motion_stores): Likewise.
1019
1020 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
1021
1022 * gcse.c (struct ls_expr): Remove loads field.
1023 (ldst_entry): Adjust.
1024 (free_ldst_entry): Likewise.
1025 (print_ldst_list): Likewise.
1026 (compute_ld_motion_mems): Likewise.
1027
1028 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
1029
1030 * store-motion.c (struct st_expr): Make antic_stores a vector.
1031 (st_expr_entry): Adjust.
1032 (free_st_expr_entry): Likewise.
1033 (print_store_motion_mems): Likewise.
1034 (find_moveable_store): Likewise.
1035 (compute_store_table): Likewise.
1036 (remove_reachable_equiv_notes): Likewise.
1037 (replace_store_insn): Likewise.
1038 (build_store_vectors): Likewise.
1039
1040 2016-07-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1041
1042 * config/arm/driver-arm.c (arm_cpu_table): Add entries for cortex-a32,
1043 cortex-a35, cortex-a53, cortex-a57, cortex-a72, cortex-a73.
1044
1045 2016-07-06 Yuri Rumyantsev <ysrumyan@gmail.com>
1046
1047 PR tree-optimization/71518
1048 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Adjust
1049 misalign also for outer loops with negative step.
1050
1051 2016-07-06 Wilco Dijkstra <wdijkstr@arm.com>
1052
1053 * config/arm/cortex-a53.md: Use final_presence_set for in-order.
1054 (cortex_a53_shift): Add mov_shift.
1055 (cortex_a53_shift_reg): Add new reservation for register shifts.
1056 (cortex_a53_alu): Remove bfm.
1057 (cortex_a53_alu_shift): Add bfm, remove mov_shift.
1058 (cortex_a53_alu_extr): Add new reservation for EXTR.
1059 (bypasses): Improve bypass modelling.
1060
1061 2016-07-06 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
1062
1063 PR target/50739
1064 * config/avr/avr.c (avr_asm_select_section): Strip off
1065 SECTION_DECLARED from flags when calling get_section.
1066
1067 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
1068
1069 * tree-vectorizer.h (vect_memory_access_type): Add
1070 VMAT_INVARIANT, VMAT_CONTIGUOUS_DOWN and VMAT_CONTIGUOUS_REVERSED.
1071 * tree-vect-stmts.c (compare_step_with_zero): New function.
1072 (perm_mask_for_reverse): Move further up file.
1073 (get_group_load_store_type): Stick to VMAT_ELEMENTWISE if the
1074 step is negative.
1075 (get_negative_load_store_type): New function.
1076 (get_load_store_type): Call it. Add an ncopies argument.
1077 (vectorizable_mask_load_store): Update call accordingly and
1078 remove tests for negative steps.
1079 (vectorizable_store, vectorizable_load): Likewise. Handle new
1080 memory_access_types.
1081
1082 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
1083
1084 * tree-vectorizer.h (vect_memory_access_type): New enum.
1085 (_stmt_vec_info): Add a memory_access_type field.
1086 (STMT_VINFO_MEMORY_ACCESS_TYPE): New macro.
1087 (vect_model_store_cost): Take an access type instead of a boolean.
1088 (vect_model_load_cost): Likewise.
1089 * tree-vect-slp.c (vect_analyze_slp_cost_1): Update calls to
1090 vect_model_store_cost and vect_model_load_cost.
1091 * tree-vect-stmts.c (vec_load_store_type): New enum.
1092 (vect_model_store_cost): Take an access type instead of a
1093 store_lanes_p boolean. Simplify tests.
1094 (vect_model_load_cost): Likewise, but for load_lanes_p.
1095 (get_group_load_store_type, get_load_store_type): New functions.
1096 (vectorizable_store): Use get_load_store_type. Record the access
1097 type in STMT_VINFO_MEMORY_ACCESS_TYPE.
1098 (vectorizable_load): Likewise.
1099 (vectorizable_mask_load_store): Likewise. Replace is_store
1100 variable with vls_type.
1101
1102 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
1103
1104 * tree-vectorizer.h (vect_grouped_load_supported): Add a
1105 single_element_p parameter.
1106 * tree-vect-data-refs.c (vect_grouped_load_supported): Likewise.
1107 Check the PR65518 case here rather than in vectorizable_load.
1108 * tree-vect-loop.c (vect_analyze_loop_2): Update call accordignly.
1109 * tree-vect-stmts.c (vectorizable_load): Likewise.
1110
1111 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
1112
1113 * tree-vectorizer.h (gather_scatter_info): New structure.
1114 (vect_check_gather_scatter): Return a bool rather than a decl.
1115 Replace return-by-pointer arguments with a single
1116 gather_scatter_info *.
1117 * tree-vect-data-refs.c (vect_check_gather_scatter): Likewise.
1118 (vect_analyze_data_refs): Update call accordingly.
1119 * tree-vect-stmts.c (vect_mark_stmts_to_be_vectorized): Likewise.
1120 (vectorizable_mask_load_store): Likewise. Also record the
1121 offset dt and vectype in the gather_scatter_info.
1122 (vectorizable_store): Likewise.
1123 (vectorizable_load): Likewise.
1124
1125 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
1126
1127 * tree-vect-stmts.c (vect_model_store_cost): For non-SLP
1128 strided groups, use the cost of N scalar accesses instead
1129 of ncopies vector accesses.
1130 (vect_model_load_cost): Likewise.
1131
1132 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
1133
1134 * tree-vect-stmts.c (vect_cost_group_size): Delete.
1135 (vect_model_store_cost): Avoid calling it. Use first_stmt_p
1136 variable to indicate when once-per-group costs are being used.
1137 (vect_model_load_cost): Likewise. Fix comment and misindented code.
1138
1139 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
1140
1141 * tree-vect-stmts.c (vectorizable_load): Remove unnecessary
1142 peeling-for-gaps condition.
1143
1144 2016-07-06 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
1145
1146 * config/s390/s390.c (s390_expand_vec_init): Force initializer
1147 element to register if it doesn't match general_operand.
1148
1149 2016-07-05 Michael Meissner <meissner@linux.vnet.ibm.com>
1150 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
1151
1152 * config/rs6000/rs6000-protos.h (rs6000_split_signbit): New
1153 prototype.
1154 * config/rs6000/rs6000.c (rs6000_split_signbit): New function.
1155 * config/rs6000/rs6000.md (UNSPEC_SIGNBIT): New constant.
1156 (SIGNBIT): New mode iterator.
1157 (Fsignbit): New mode attribute.
1158 (signbit<mode>2): Change operand1 to match FLOAT128 instead of
1159 IBM128; dispatch to gen_signbit{kf,tf}2_dm for __float128
1160 when direct moves are available.
1161 (signbit<mode>2_dm): New define_insn_and_split).
1162 (signbit<mode>2_dm2): New define_insn.
1163
1164 2016-07-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1165
1166 PR rtl-optimization/71594
1167 * ifcvt.c (noce_convert_multiple_sets): Wrap new_val or old_val
1168 into subregs of appropriate mode before trying to emit a conditional
1169 move.
1170
1171 2016-07-05 Jan Hubicka <jh@suse.cz>
1172
1173 * tree-scalar-evolution.c (iv_can_overflow_p): New function.
1174 (simple_iv): Use it.
1175
1176 2016-07-05 Jan Hubicka <jh@suse.cz>
1177
1178 * tree-ssa-loop-niter.c (nowrap_type_p): Use ANY_INTEGRAL_TYPE_P.
1179
1180 2016-07-05 Jiong Wang <jiong.wang@arm.com>
1181
1182 * lra-constraints.c (process_alt_operands): Don't add spilling cost for
1183 "offmemok".
1184
1185 2016-07-05 Jan Hubicka <jh@suse.cz>
1186
1187 * tree-scalar-evoluiton.c (simple_iv): Use nowrap_type to check if
1188 IV can overflow.
1189
1190 2016-07-05 Richard Biener <rguenther@suse.de>
1191
1192 * gimple-ssa-split-paths.c (find_block_to_duplicate_for_splitting_pa):
1193 Handle empty else block.
1194 (is_feasible_trace): Likewise.
1195 (split_paths): Likewise.
1196
1197 2016-07-05 Richard Biener <rguenther@suse.de>
1198
1199 * tree-loop-distribution.c (distribute_loop): Fix issue with
1200 the cost model loop.
1201
1202 2016-07-05 Christophe Lyon <christophe.lyon@linaro.org>
1203
1204 * config/arm/neon-testgen.ml: Delete.
1205 * config/arm/neon.ml: Delete.
1206
1207 2016-07-04 Jakub Jelinek <jakub@redhat.com>
1208
1209 PR c++/71739
1210 * tree.c (attribute_value_equal): Use get_attribute_name instead of
1211 directly using TREE_PURPOSE.
1212
1213 2016-07-04 Jiong Wang <jiong.wang@arm.com>
1214
1215 * config/aarch64/aarch64.h: Rename "ARMv8.1" to "ARMv8.1-A".
1216 * config/aarch64/aarch64_neon.h: Likewise.
1217 * config/aarch64/arm_neon.h: Likewise.
1218 * config/aarch64/atomics.md: Likewise.
1219 * config/aarch64/aarch64-simd-builtins.def: Likewise.
1220 * doc/invoke.texi: Likewise.
1221
1222 2016-07-04 Dominik Vogt <vogt@linux.vnet.ibm.com>
1223
1224 * config/s390/s390.md: Add "z13" cpu_facility.
1225 ("*mov<mode>cc"): Add support for z13 instructions lochi and locghi.
1226 * config/s390/predicates.md ("loc_operand"): New predicate for "load on
1227 condition" type instructions.
1228
1229 2016-07-04 Dominik Vogt <vogt@linux.vnet.ibm.com>
1230 Jeff Law <law@redhat.com>
1231
1232 * explow.c (allocate_dynamic_stack_space): Simplify knowing that
1233 MUST_ALIGN was always true and extra_align ist always BITS_PER_UNIT.
1234
1235 2016-07-04 Yuri Rumyantsev <ysrumyan@gmail.com>
1236
1237 * config/i386/i386.c (ix86_expand_vec_perm): Add handle one-operand
1238 permutation for TARGET_AVX512F.
1239 (ix86_expand_vec_one_operand_perm_avx512): New function.
1240 (expand_vec_perm_1): Invoke introduced function.
1241 * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
1242 it may be not valid after vectorization.
1243
1244 2016-07-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
1245
1246 PR target/63874
1247 * config/aarch64/aarch64.c (aarch64_classify_symbol): Fix
1248 typo in comment. Only force to memory if it is a weak
1249 external reference.
1250
1251 2016-07-04 Matthew Wahab <matthew.wahab@arm.com>
1252 Jiong Wang <jiong.wang@arm.com>
1253
1254 * config/aarch64/aarch64-arches.def: Add "armv8.2-a".
1255 * config/aarch64/aarch64.h (AARCH64_FL_V8_2): New.
1256 (AARCH64_FL_F16): New.
1257 (AARCH64_FL_FOR_ARCH8_2): New.
1258 (AARCH64_ISA_8_2): New.
1259 (AARCH64_ISA_F16): New.
1260 (TARGET_FP_F16INST): New.
1261 (TARGET_SIMD_F16INST): New.
1262 * config/aarch64/aarch64-option-extensions.def ("fp16"): New entry.
1263 ("fp"): Disabling "fp" also disables "fp16".
1264 * config/aarch64/aarch64-c.c (arch64_update_cpp_builtins):
1265 Conditionally define __ARM_FEATURE_FP16_SCALAR_ARITHMETIC
1266 and __ARM_FEATURE_FP16_VECTOR_ARITHMETIC.
1267 * doc/invoke.texi (AArch64 Options): Document "armv8.2-a" and "fp16".
1268
1269 2016-07-04 Jan Beulich <jbeulich@suse.com>
1270
1271 * gcc.c (default_compilers["@c-header"]): Conditionalize "-o".
1272
1273 2016-07-01 Michael Meissner <meissner@linux.vnet.ibm.com>
1274
1275 PR target/71720
1276 * config/rs6000/vsx.md (vsx_splat_v4sf_internal): When splitting
1277 the insns, use an insn form that does not adjust the offset on
1278 little endian systems.
1279
1280 2016-07-01 Jan Beulich <jbeulich@suse.com>
1281
1282 * varasm.c (get_variable_section): Validate initializer in
1283 named .bss-like sections.
1284
1285 2016-07-01 Kelvin Nilsen <kelvin@gcc.gnu.org>
1286
1287 * config/rs6000/altivec.md (*altivec_vpermr_<mode>_internal):
1288 Exchange the order of the second and third operands in the vpermr
1289 instruction tmeplate.
1290
1291 2016-07-01 Peter Bergner <bergner@vnet.ibm.com>
1292
1293 PR target/71698
1294 * config/rs6000/rs6000.c (rs6000_secondary_reload_simple_move):
1295 Disallow TDmode values.
1296
1297 2016-07-01 Alan Modra <amodra@gmail.com>
1298
1299 PR rtl-optimization/71709
1300 * ira-lives.c (find_call_crossed_cheap_reg): Exit loop on arg reg
1301 being set, not referenced.
1302
1303 2016-07-01 Yuri Rumyantsev <ysrumyan@gmail.com>
1304
1305 PR tree-optimization/70729
1306 * tree-vectorizer.c (adjust_simduid_builtins): Nullify safelen field
1307 of loop since it can be not valid after transformation.
1308
1309 2016-07-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1310
1311 * config/arm/arm.c (thumb_reload_in_hi): Delete.
1312 * config/arm/arm-protos.h (thumb_reload_in_hi): Delete prototype.
1313
1314 2016-07-01 Eric Botcazou <ebotcazou@adacore.com>
1315
1316 * config/arm/arm.c (arm_function_ok_for_sibcall): Add another check
1317 for NULL decl.
1318
1319 2016-06-30 Michael Meissner <meissner@linux.vnet.ibm.com>
1320
1321 PR target/71677
1322 * config/rs6000/constraints.md (wY constraint): New constraint to
1323 match the requirements for the LXSD and STXSD instructions.
1324 * config/rs6000/predicates.md (offsettable_mem_14bit_operand): New
1325 predicate to match the requirements for the LXSD and STXSD
1326 instructions.
1327 * config/rs6000/rs6000.md (mov<mode>_hardfloat32, FMOVE64 case):
1328 Use constaint wY for LXSD/STXSD instructions instead of 'o' or 'Y'
1329 to make sure that the bottom 2 bits of offset are 0, the address
1330 form is offsettable, and no updating is done in the address mode.
1331 (mov<mode>_hardfloat64, FMOVE64 case): Likewise.
1332 (movdi_internal32): Likewise
1333 (movdi_internal64): Likewise.
1334
1335 2016-06-30 Jakub Jelinek <jakub@redhat.com>
1336
1337 PR tree-optimization/71707
1338 * tree-ssa-strlen.c (get_stridx_plus_constant): Handle already present
1339 strinfo even for ADDR_EXPR ptr.
1340
1341 2016-06-30 Kelvin Nilsen <kelvin@gcc.gnu.org>
1342
1343 * config/rs6000/altivec.md (darn_32): Change the condition to
1344 TARGET_P9_MISC instead of TARGET_MODULO.
1345 (darn_raw): Replace TARGET_MODULO with TARGET_P9_MISC in the
1346 condition expression.
1347 (darn): Replace TARGET_MODULO with TARGET_P9_MISC in the
1348 condition expression.
1349 * config/rs6000/dfp.md (UNSPEC_DTSTSFI): New unspec constant.
1350 (DFP_TEST): New code iterator.
1351 (dfptstsfi_<code>_mode>): New define_expand.
1352 (*dfp_sgnfcnc_<mode>): New define_insn.
1353 * config/rs6000/rs6000-builtin.def (BU_P9_MISC_0): Move this macro
1354 definition next to BU_P9_MISC_1 definition and change the MASK
1355 value to RS6000_BTM_P9_MISC.
1356 (BU_P9_MISC_1): Change the MASK value to RS6000_BTM_P9_MISC.
1357 (BU_P9_64BIT_MISC_0): Likewise.
1358 (BU_P9_DFP_MISC_0): New macro definition.
1359 (BU_P9_DFP_MISC_1): New macro definition.
1360 (BU_P9_DFP_MISC_2): New macro definition.
1361 (BU_P9_DFP_OVERLOAD_1): New macro definition.
1362 (BU_P9_DFP_OVERLOAD_2): New macro definition.
1363 (BU_P9_DFP_OVERLOAD_3): New macro definition.
1364 (TSTSFI_LT_DD): New BU_P9_DFP_MISC_2.
1365 (TSTSFI_LT_TD): Likewise.
1366 (TSTSFI_EQ_DD): Likewise.
1367 (TSTSFI_EQ_TD): Likewise.
1368 (TSTSFI_GT_DD): Likewise.
1369 (TSTSFI_GT_TD): Likewise.
1370 (TSTSFI_OV_DD): Likewise.
1371 (TSTSFI_OV_TD): Likewise.
1372 (TSTSFI_LT): New BU_P9_DFP_OVERLOAD_2.
1373 (TSTSFI_LT_DD): Likewise.
1374 (TSTSFI_LT_TD): Likewise.
1375 (TSTSFI_EQ): Likewise.
1376 (TSTSFI_EQ_DD): Likewise.
1377 (TSTSFI_EQ_TD): Likewise.
1378 (TSTSFI_GT): Likewise.
1379 (TSTSFI_GT_DD): Likewise.
1380 (TSTSFI_GT_TD): Likewise.
1381 (TSTSFI_OV): Likewise.
1382 (TSTSFI_OV_DD): Likewise.
1383 (TSTSFI_OV_TD): Likewise.
1384 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
1385 overloaded test significance functions.
1386 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
1387 OPTION_MASK_P9_MISC into the representation of this mask.
1388 (POWERPC_MASKS): Add OPTION_MASK_P9_MISC into the representation
1389 of this mask.
1390 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Set the
1391 RS6000_BTM_P9_MISC flag in the return value if TARGET_P9_MISC is
1392 non-zero.
1393 (rs6000_expand_binop_builtin): Enforce that argument 0 of the exp
1394 argument is a 6-bit unsigned literal value if the icode argument
1395 represents a DFP test significance built-in call.
1396 (rs6000_invalid_builtin): Add support for the RS6000_BTM_P9_MISC
1397 flag used independently and in combination with the
1398 RS6000_BTM_64BIT flag.
1399 (rs6000_opt_masks): Add entry for power9-misc command-line option.
1400 (rs6000_builtin_mask_names): Add entry for power9-misc
1401 command-line option.
1402 * config/rs6000/rs6000.h: Redefine TARGET_P9_MISC as 0 if
1403 HAVE_AS_POWER9 is not a defined macro. Define MASK_P9_MISC and
1404 RS6000_BTM_P9_MISC macros.
1405 * config/rs6000/rs6000.opt: Add support for the -mpower9-misc
1406 option and change the description of the -mpower9-vector option to
1407 enable only vector instructions, removing its erroneously claimed
1408 support for scalar instructions.
1409 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
1410 the ISA 3.0 digital floating point test significance built-in
1411 functions.
1412
1413 2016-06-30 Wilco Dijkstra <wdijkstr@arm.com>
1414
1415 * config/aarch64/aarch64.c (cortexa35_tunings):
1416 Enable AES fusion. Use cortexa57_branch_cost.
1417 (cortexa53_tunings): Use cortexa57_branch_cost.
1418 (cortexa72_tunings): Use cortexa57_branch_cost.
1419 Use AUTOPREFETCHER_WEAK.
1420 (cortexa73_tunings): Use cortexa57_branch_cost.
1421
1422 2016-06-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1423 James Greenhalgh <james.greenhalgh@arm.com>
1424
1425 * config/aarch64/arm_neon.h (vcopyq_lane_f32, vcopyq_lane_f64,
1426 vcopyq_lane_p8, vcopyq_lane_p16, vcopyq_lane_s8, vcopyq_lane_s16,
1427 vcopyq_lane_s32, vcopyq_lane_s64, vcopyq_lane_u8, vcopyq_lane_u16,
1428 vcopyq_lane_u32, vcopyq_lane_u64): Reimplement in C.
1429 (vcopy_lane_f32, vcopy_lane_f64, vcopy_lane_p8, vcopy_lane_p16,
1430 vcopy_lane_s8, vcopy_lane_s16, vcopy_lane_s32, vcopy_lane_s64,
1431 vcopy_lane_u8, vcopy_lane_u16, vcopy_lane_u32, vcopy_lane_u64,
1432 vcopy_laneq_f32, vcopy_laneq_f64, vcopy_laneq_p8, vcopy_laneq_p16,
1433 vcopy_laneq_s8, vcopy_laneq_s16, vcopy_laneq_s32, vcopy_laneq_s64,
1434 vcopy_laneq_u8, vcopy_laneq_u16, vcopy_laneq_u32, vcopy_laneq_u64,
1435 vcopyq_laneq_f32, vcopyq_laneq_f64, vcopyq_laneq_p8, vcopyq_laneq_p16,
1436 vcopyq_laneq_s8, vcopyq_laneq_s16, vcopyq_laneq_s32, vcopyq_laneq_s64,
1437 vcopyq_laneq_u8, vcopyq_laneq_u16, vcopyq_laneq_u32, vcopyq_laneq_u64):
1438 New intrinsics.
1439
1440 2016-06-30 James Greenhalgh <james.greenhalgh@arm.com>
1441 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1442
1443 * config/aarch64/aarch64-simd.md (*aarch64_simd_vec_copy_lane<mode>):
1444 New define_insn.
1445 (*aarch64_simd_vec_copy_lane_<vswap_width_name><mode>): Likewise.
1446
1447 2016-06-30 David Malcolm <dmalcolm@redhat.com>
1448
1449 PR driver/71651
1450 * gcc.c (driver::build_option_suggestions): Pass "option" to
1451 add_misspelling_candidates.
1452 * opts-common.c (add_misspelling_candidates): Add "option" param;
1453 use it to avoid adding negated forms for options marked with
1454 RejectNegative.
1455 * opts.h (add_misspelling_candidates): Add "option" param.
1456
1457 2016-06-30 Jakub Jelinek <jakub@redhat.com>
1458
1459 PR middle-end/71693
1460 * fold-const.c (fold_binary_loc) <case RROTATE_EXPR>: Cast
1461 TREE_OPERAND (arg0, 0) and TREE_OPERAND (arg0, 1) to type
1462 first when permuting bitwise operation with rotate. Cast
1463 TREE_OPERAND (arg0, 0) to type when cancelling two rotations.
1464
1465 2016-06-29 David Malcolm <dmalcolm@redhat.com>
1466
1467 * opts.c (handle_param): Use find_param_fuzzy to offer suggestions
1468 for misspelled param names.
1469 * params.c: Include spellcheck.h.
1470 (find_param_fuzzy): New function.
1471 * params.h (find_param_fuzzy): New prototype.
1472 * spellcheck.c (struct edit_distance_traits<const char *>): Move to...
1473 * spellcheck.h (struct edit_distance_traits<const char *>):
1474 ...here.
1475
1476 2016-06-29 Michael Meissner <meissner@linux.vnet.ibm.com>
1477
1478 * config/rs6000/predicates.md (const_0_to_7_operand): New
1479 predicate, recognize 0..7.
1480 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
1481 support for doing extracts from V16QImode, V8HImode, V4SImode
1482 under ISA 3.0.
1483 * config/rs6000/vsx.md (VSX_EXTRACT_I): Mode iterator for ISA 3.0
1484 vector extract support.
1485 (VSX_EXTRACT_PREDICATE): Mode attribute to validate element number
1486 for ISA 3.0 vector extract.
1487 (VSX_EX): Constraints to use for ISA 3.0 vector extract.
1488 (vsx_extract_<mode>, VSX_EXTRACT_I): Add support for doing
1489 extracts of a constant element number from small integer vectors
1490 on 64-bit ISA 3.0 systems.
1491 (vsx_extract_<mode>_di): Likewise.
1492 * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): New target macro to
1493 say when we can do ISA 3.0 vector extracts.
1494 * config/rs6000/rs6000.md (stfiwx): Allow DImode in Altivec
1495 registers, using the stxsiwx instruction.
1496
1497 2016-06-29 Jim Wilson <jim.wilson@linaro.org>
1498
1499 * config/aarch64/aarch64-cores.def (qdf24xx): Use qdf24xx tuning.
1500 * config/aarch64/aarch64.c (qdf24xx_addrcost_table,
1501 qdf24xx_regmove_cost, qdf24xx_tunings): New.
1502 * config/arm/aarch64-cost-tables.h (qdf24xx_extra_costs): New.
1503 * config/arm/arm-cores.def (qdf24xx): Use qdf24xx tuning.
1504 * config/arm/arm.c (arm_qdf24xx_tune): New.
1505
1506 2016-06-29 Wilco Dijkstra <wdijkstr@arm.com>
1507
1508 * config/aarch64/aarch64.c (cortexa53_tunings):
1509 Increase loop alignment to 8. Set function alignment to 16.
1510 (cortexa35_tunings): Likewise.
1511 (cortexa57_tunings): Increase loop alignment to 8.
1512 (cortexa72_tunings): Likewise.
1513 (cortexa73_tunings): Likewise.
1514
1515 2016-06-29 Matthew Wahab <matthew.wahab@arm.com>
1516
1517 * doc/sourcebuild.texi (Effective-Target keywords): Add entries
1518 for arm_fp16_ok and arm_fp16_hw.
1519 (Add Options): Add entries for arm_fp16, arm_fp16_ieee and
1520 arm_fp16_alternative.
1521
1522 2016-06-29 Ilya Enkovich <ilya.enkovich@intel.com>
1523
1524 PR tree-optimization/71655
1525 * tree-vect-stmts.c (vectorizable_comparison): Swap definition
1526 types when swapping operands.
1527
1528 2016-06-29 Martin Liska <mliska@suse.cz>
1529
1530 PR middle-end/71585
1531 * common.opt (flag_stack_protect): Mark the flag as optimization flag.
1532 * ipa-inline-transform.c (inline_call): Remove unnecessary call
1533 of build_optimization_node.
1534
1535 2016-06-29 Yuri Rumyantsev <ysrumyan@gmail.com>
1536
1537 PR tree-optimization/70729
1538 * tree-ssa-loop-im.c (ref_indep_loop_p_1): Consider memory reference as
1539 independent in loops having positive safelen value.
1540 * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
1541 it may be not valid after vectorization.
1542
1543 2016-06-29 Jakub Jelinek <jakub@redhat.com>
1544
1545 PR tree-optimization/71625
1546 * tree-ssa-strlen.c (get_addr_stridx): Add PTR argument. Assume list
1547 is sorted by ascending list->offset. If PTR is non-NULL and there is
1548 previous strinfo, call get_stridx_plus_constant.
1549 (get_stridx): Pass exp as second argument to get_addr_stridx.
1550 (addr_stridxptr): Add missing list = list->next, so that there can be
1551 more than one entries in the list. Bump limit from 16 to 32. Ensure
1552 the list is sorted by ascending list->offset.
1553 (get_stridx_plus_constant): Adjust so that it can be also called with
1554 ADDR_EXPR instead of SSA_NAME as PTR.
1555 (handle_char_store): Pass NULL_TREE as second argument to
1556 get_addr_stridx.
1557
1558 2016-06-29 Richard Biener <rguenther@suse.de>
1559
1560 PR rtl-optimization/68961
1561 * simplify-rtx.c (simplify_subreg): Handle VEC_CONCAT like CONCAT.
1562
1563 2016-06-29 Richard Biener <rguenther@suse.de>
1564
1565 PR middle-end/71002
1566 * alias.c (component_uses_parent_alias_set_from): Handle
1567 type punning through union accesses by using the union alias set.
1568 * gimple.c (gimple_get_alias_set): Remove union type punning case.
1569
1570 2016-07-29 Richard Biener <rguenther@suse.de>
1571
1572 * match.pd ((T)(T2)x -> (T)x): Remove restriction on final
1573 precision not matching mode precision.
1574
1575 2016-06-28 John David Anglin <danglin@gcc.gnu.org>
1576
1577 * config/pa/pa.md (call_symref_64bit_post_reload): Don't call
1578 pa_output_arg_descriptor.
1579 (call_val_symref_64bit_post_reload): Likewise.
1580 (call_val_powf_64bit_post_reload): Likewise.
1581 (sibcall_internal_symref_64bit): Likewise.
1582 (sibcall_value_internal_symref_64bit): Likewise.
1583
1584 2016-06-28 Jakub Jelinek <jakub@redhat.com>
1585
1586 PR middle-end/71626
1587 * config/i386/i386.c (ix86_expand_vector_move): For SUBREG of
1588 a constant, force its SUBREG_REG into memory or register instead
1589 of whole op1.
1590
1591 2016-06-28 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
1592
1593 PR target/58655
1594 * config/avr/avr.opt (-mfract-convert-truncate): Update description.
1595 * doc/invoke.texi (AVR Options): Document it.
1596
1597 2016-06-28 Walter Lee <walt@tilera.com>
1598
1599 * config/tilegx/linux.h: Do not include arch/icache.h
1600 (CLEAR_INSN_CACHE): Provide inlined definition directly.
1601 * config/tilepro/linux.h: Do not include arch/icache.h
1602 (CLEAR_INSN_CACHE): Provide inlined definition directly.
1603
1604 2016-06-28 Wilco Dijkstra <wdijkstr@arm.com>
1605
1606 * tree-ssa-math-opts.c (find_bswap_or_nop_1): Adjust bitnumbering
1607 for big-endian BIT_FIELD_REF.
1608
1609 2016-06-28 Pat Haugen <pthaugen@us.ibm.com>
1610
1611 * config/rs6000/rs6000.md ('type' attribute): Add htmsimple/dfp types.
1612 ('size' attribute): Add '128'.
1613 Include power9.md.
1614 (*mov<mode>_hardfloat32, *mov<mode>_hardfloat64, *movdi_internal32,
1615 *movdi_internal64, *movdf_update1): Set size attribute to '64'.
1616 (add<mode>3, sub<mode>3, mul<mode>3, div<mode>3, sqrt<mode>2,
1617 copysign<mode>3, neg<mode>2_hw, abs<mode>2_hw, *nabs<mode>2_hw,
1618 *fma<mode>4_hw, *fms<mode>4_hw, *nfma<mode>4_hw, *nfms<mode>4_hw,
1619 extend<SFDF:mode><IEEE128:mode>2_hw, trunc<mode>df2_hw,
1620 *xscvqp<su>wz_<mode>, *xscvqp<su>dz_<mode>, *xscv<su>dqp_<mode>,
1621 *trunc<mode>df2_odd): Set size attribute to '128'.
1622 (*cmp<mode>_hw): Change type to veccmp and set size attribute to '128'.
1623 * config/rs6000/power6.md (power6-fp): Include dfp type.
1624 * config/rs6000/power7.md (power7-fp): Likewise.
1625 * config/rs6000/power8.md (power8-fp): Likewise.
1626 * config/rs6000/power9.md: New file.
1627 * config/rs6000/t-rs6000 (MD_INCLUDES): Add power9.md.
1628 * config/rs6000/htm.md (*tabort, *tabort<wd>c, *tabort<wd>ci,
1629 *trechkpt, *treclaim, *tsr, *ttest): Change type attribute to
1630 htmsimple.
1631 * config/rs6000/dfp.md (extendsddd2, truncddsd2, extendddtd2,
1632 trunctddd2, adddd3, addtd3, subdd3, subtd3, muldd3, multd3, divdd3,
1633 divtd3, *cmpdd_internal1, *cmptd_internal1, floatdidd2, floatditd2,
1634 ftruncdd2, fixdddi2, ftrunctd2, fixtddi2, dfp_ddedpd_<mode>,
1635 dfp_denbcd_<mode>, dfp_dxex_<mode>, dfp_diex_<mode>, dfp_dscli_<mode>,
1636 dfp_dscri_<mode>): Change type attribute to dfp.
1637 * config/rs6000/crypto.md (crypto_vshasigma<CR_char>): Change type
1638 attribute to vecsimple.
1639 * config/rs6000/rs6000.c (power9_cost): Update costs, cache size
1640 and prefetch streams.
1641 (rs6000_option_override_internal): Remove temporary code setting
1642 tuning to power8. Don't set rs6000_sched_groups for power9.
1643 (last_scheduled_insn): Change to rtx_insn *.
1644 (divide_cnt, vec_load_pendulum): New variables.
1645 (rs6000_adjust_cost): Add Power9 to test for store->load separation.
1646 (rs6000_issue_rate): Set issue rate for Power9.
1647 (is_power9_pairable_vec_type): New.
1648 (power9_sched_reorder2): New.
1649 (rs6000_sched_reorder2): Call new function for Power9 specific
1650 reordering.
1651 (insn_must_be_first_in_group): Remove Power9.
1652 (insn_must_be_last_in_group): Likewise.
1653 (force_new_group): Likewise.
1654 (rs6000_sched_init): Fix initialization of last_scheduled_insn.
1655 Initialize divide_cnt/vec_load_pendulum.
1656 (_rs6000_sched_context, rs6000_init_sched_context,
1657 rs6000_set_sched_context): Handle context save/restore of new
1658 variables.
1659
1660 2016-06-28 Richard Biener <rguenther@suse.de>
1661
1662 * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
1663 Properly handle DECL_BIT_FIELD_REPRESENTATIVE occuring as
1664 COMPONENT_REF operand.
1665 (nonoverlapping_component_refs_p): Likewise.
1666 * stor-layout.c (start_bitfield_representative): Mark
1667 DECL_BIT_FIELD_REPRESENTATIVE as DECL_NONADDRESSABLE_P.
1668
1669 2016-06-28 Jakub Jelinek <jakub@redhat.com>
1670
1671 * Makefile.in: Don't cat ../stage_current if it does not exist.
1672
1673 * doc/extend.texi (__builtin_add_overflow_p): Clarify behavior when
1674 last argument is a bit-field.
1675
1676 PR rtl-optimization/71673
1677 * internal-fn.c (expand_arith_overflow_result_store): Use
1678 OPTAB_LIB_WIDEN instead of OPTAB_DIRECT as last argument to
1679 expand_simple_binop.
1680
1681 PR middle-end/66867
1682 * builtins.c (expand_ifn_atomic_compare_exchange_into_call,
1683 expand_ifn_atomic_compare_exchange): New functions.
1684 * internal-fn.c (expand_ATOMIC_COMPARE_EXCHANGE): New function.
1685 * tree.h (build_call_expr_internal_loc): Rename to ...
1686 (build_call_expr_internal_loc_array): ... this. Fix up type of
1687 last argument.
1688 * internal-fn.def (ATOMIC_COMPARE_EXCHANGE): New internal fn.
1689 * predict.c (expr_expected_value_1): Handle IMAGPART_EXPR of
1690 ATOMIC_COMPARE_EXCHANGE result.
1691 * builtins.h (expand_ifn_atomic_compare_exchange): New prototype.
1692 * gimple-fold.h (optimize_atomic_compare_exchange_p,
1693 fold_builtin_atomic_compare_exchange): New prototypes.
1694 * gimple-fold.c (optimize_atomic_compare_exchange_p,
1695 fold_builtin_atomic_compare_exchange): New functions..
1696 * tree-ssa.c (execute_update_addresses_taken): If
1697 optimize_atomic_compare_exchange_p, ignore &var in 2nd argument
1698 of call when finding addressable vars, and if such var becomes
1699 non-addressable, call fold_builtin_atomic_compare_exchange.
1700
1701 2016-06-27 Segher Boessenkool <segher@kernel.crashing.org>
1702
1703 PR target/71670
1704 * config/rs6000/rs6000.md (ashdi3_extswsli_dot): Use
1705 gen_ashdi3_extswsli_dot2 instead of gen_ashdi3_extswsli_dot.
1706
1707 2016-06-27 Pat Haugen <pthaugen@us.ibm.com>
1708
1709 * config/rs6000/rs6000.md ('type' attribute): Add
1710 veclogical,veccmpfx,vecexts,vecmove insn types.
1711 (*abs<mode>2_fpr, *nabs<mode>2_fpr, *neg<mode>2_fpr, *extendsfdf2_fpr,
1712 copysign<mode>3_fcpsgn, trunc<mode>df2_internal1, neg<mode>2_internal,
1713 p8_fmrgow_<mode>, pack<mode>): Change type to fpsimple.
1714 (*xxsel<mode>, copysign<mode>3_hard, neg<mode>2_hw, abs<mode>2_hw,
1715 *nabs<mode>2_hw): Change type to vecmove.
1716 (*and<mode>3_internal, *bool<mode>3_internal, *boolc<mode>3_internal,
1717 *boolcc<mode>3_internal, *eqv<mode>3_internal,
1718 *one_cmpl<mode>3_internal, *ieee_128bit_vsx_neg<mode>2_internal,
1719 *ieee_128bit_vsx_abs<mode>2_internal,
1720 *ieee_128bit_vsx_nabs<mode>2_internal, extendkftf2, trunctfkf2,
1721 *ieee128_mfvsrd_64bit, *ieee128_mfvsrd_32bit, *ieee128_mtvsrd_64bit,
1722 *ieee128_mtvsrd_32bit): Change type to veclogical.
1723 (mov<mode>_hardfloat, *mov<mode>_hardfloat32, *mov<mode>_hardfloat64,
1724 *movdi_internal32, *movdi_internal64): Update insn types.
1725 * config/rs6000/vsx.md (*vsx_le_undo_permute_<mode>,
1726 vsx_extract_<mode>): Change type to veclogical.
1727 (*vsx_xxsel<mode>, *vsx_xxsel<mode>_uns): Change type to vecmove.
1728 (vsx_sign_extend_qi_<mode>, *vsx_sign_extend_hi_<mode>,
1729 *vsx_sign_extend_si_v2di): Change type to vecexts.
1730 * config/rs6000/altivec.md (*altivec_mov<mode>, *altivec_movti): Change
1731 type to veclogical.
1732 (*altivec_eq<mode>, *altivec_gt<mode>, *altivec_gtu<mode>,
1733 *altivec_vcmpequ<VI_char>_p, *altivec_vcmpgts<VI_char>_p,
1734 *altivec_vcmpgtu<VI_char>_p): Change type to veccmpfx.
1735 (*altivec_vsel<mode>, *altivec_vsel<mode>_uns): Change type to vecmove.
1736 * config/rs6000/dfp.md (*negdd2_fpr, *absdd2_fpr, *nabsdd2_fpr,
1737 negtd2, *abstd2_fpr, *nabstd2_fpr): Change type to fpsimple.
1738 * config/rs6000/40x.md (ppc405-float): Add fpsimple.
1739 * config/rs6000/440.md (ppc440-fp): Add fpsimple.
1740 * config/rs6000/476.md (ppc476-fp): Add fpsimple.
1741 * config/rs6000/601.md (ppc601-fp): Add fpsimple.
1742 * config/rs6000/603.md (ppc603-fp): Add fpsimple.
1743 * config/rs6000/6xx.md (ppc604-fp): Add fpsimple.
1744 * config/rs6000/7xx.md (ppc750-fp): Add fpsimple.
1745 (ppc7400-vecsimple): Add veclogical, vecmove, veccmpfx.
1746 * config/rs6000/7450.md (ppc7450-fp): Add fpsimple.
1747 (ppc7450-vecsimple): Add veclogical, vecmove.
1748 (ppc7450-veccmp): Add veccmpfx.
1749 * config/rs6000/8540.md (ppc8540_simple_vector): Add veclogical,
1750 vecmove.
1751 (ppc8540_vector_compare): Add veccmpfx.
1752 * config/rs6000/a2.md (ppca2-fp): Add fpsimple.
1753 * config/rs6000/cell.md (cell-fp): Add fpsimple.
1754 (cell-vecsimple): Add veclogical, vecmove.
1755 (cell-veccmp): Add veccmpfx.
1756 * config/rs6000/e300c2c3.md (ppce300c3_fp): Add fpsimple.
1757 * config/rs6000/e6500.md (e6500_vecsimple): Add veclogical, vecmove,
1758 veccmpfx.
1759 * config/rs6000/mpc.md (mpccore-fp): Add fpsimple.
1760 * config/rs6000/power4.md (power4-fp): Add fpsimple.
1761 (power4-vecsimple): Add veclogical, vecmove.
1762 (power4-veccmp): Add veccmpfx.
1763 * config/rs6000/power5.md (power5-fp): Add fpsimple.
1764 * config/rs6000/power6.md (power6-fp): Add fpsimple.
1765 (power6-vecsimple): Add veclogical, vecmove.
1766 (power6-veccmp): Add veccmpfx.
1767 * config/rs6000/power7.md (power7-fp): Add fpsimple.
1768 (power7-vecsimple): Add veclogical, vecmove, veccmpfx.
1769 * config/rs6000/power8.md (power8-fp): Add fpsimple.
1770 (power8-vecsimple): Add veclogical, vecmove, veccmpfx.
1771 * config/rs6000/rs64.md (rs64a-fp): Add fpsimple.
1772 * config/rs6000/titan.md (titan_fp): Add fpsimple.
1773 * config/rs6000/xfpu.md (fp-default, fp-addsub-s, fp-addsub-d): Add
1774 fpsimple.
1775 * config/rs6000/rs6000.c (rs6000_adjust_cost): Add TYPE_FPSIMPLE.
1776
1777 2016-06-27 Peter Bergner <bergner@vnet.ibm.com>
1778
1779 PR target/71656
1780 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
1781 OPTION_MASK_P9_DFORM_VECTOR.
1782 * config/rs6000/rs6000.c (rs6000_option_override_internal): Do not
1783 disable -mpower9-dform-vector when using reload.
1784 (quad_address_p): Remove 'gpr_p' argument and all associated code.
1785 New 'strict' argument. Update all callers. Add strict addressing
1786 support.
1787 (rs6000_legitimate_offset_address_p): Remove call to
1788 virtual_stack_registers_memory_p.
1789 (rs6000_legitimize_reload_address): Add quad address support.
1790 (rs6000_legitimate_address_p): Move call to quad_address_p above
1791 call to virtual_stack_registers_memory_p. Adjust quad_address_p args
1792 to account for new strict usage.
1793 (rs6000_output_move_128bit): Adjust quad_address_p args to account
1794 for new strict usage.
1795 * config/rs6000/predicates.md (quad_memory_operand): Likewise.
1796
1797 2016-06-26 Uros Bizjak <ubizjak@gmail.com>
1798
1799 PR target/70902
1800 PR target/71453
1801 PR target/71555
1802 PR target/71596
1803 PR target/71657
1804 * config/i386/i386.c (ix86_spill_class): Disable condition to
1805 always return NO_REGS.
1806
1807 2016-06-26 Jan Hubicka <hubicka@ucw.cz>
1808
1809 * predict.c: Include gimple-pretty-print.h
1810 (predicted_by_loop_heuristics_p): Check also
1811 PRED_LOOP_EXIT_WITH_RECURSION
1812 (predict_loops): Find self recursive calls and use special purpose
1813 predictors for them; dump log about decisions.
1814 (pass_profile::execute): Dump info about #of iterations.
1815 * predict.def (PRED_LOOP_EXIT_WITH_RECURSION,
1816 (PRED_LOOP_GUARD_WITH_RECURSION): New predictors.
1817
1818 2016-06-26 John David Anglin <danglin@gcc.gnu.org>
1819
1820 * config/pa/pa.c (pa_output_indirect_call): Rework to combine
1821 output_asm_insn calls and shorten long lines. Output .CALL
1822 argument descriptor using pa_output_arg_descriptor. Add various
1823 inline $$dyncall and other optimizations.
1824 (pa_attr_length_indirect_call): Adjust ordering and lengths.
1825
1826 2016-06-25 Jakub Jelinek <jakub@redhat.com>
1827
1828 PR tree-optimization/71643
1829 * tree-ssa-tail-merge.c (find_clusters_1): Ignore basic blocks with
1830 EH preds.
1831
1832 * tree-ssa-tail-merge.c (deps_ok_for_redirect_from_bb_to_bb): Don't
1833 leak a bitmap if dep_bb is NULL.
1834
1835 PR tree-optimization/71631
1836 * tree-ssa-reassoc.c (reassociate_bb): Pass true as last argument
1837 to rewrite_expr_tree even if negate_result, move new_lhs var
1838 declaration and initialization earlier, for powi_result set afterwards
1839 new_lhs to lhs. For negate_result, use new_lhs instead of tmp
1840 if new_lhs != lhs, and don't shadow gsi var.
1841
1842 2016-06-24 Jan Hubicka <hubicka@ucw.cz>
1843
1844 * predict.c (predict_paths_leading_to, predict_paths_leading_to_edge):
1845 Add in_loop parameter.
1846 (predict_loops): Add loop guard heuristics.
1847 * predict.def (PRED_LOOP_GUARD): New heuristics.
1848
1849 2016-06-24 Jan Hubicka <hubicka@ucw.cz>
1850
1851 * predict.c: Include ipa-utils.h
1852 (tree_bb_level_prediction): Predict recursive calls.
1853 (tree_estimate_probability_bb): Skip inexpensive calls for call
1854 predictor.
1855 * predict.def (PRED_RECURSIVE_CALL): New.
1856
1857 2016-06-24 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
1858
1859 * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): New #define.
1860 (BU_FLOAT128_1): Likewise.
1861 (FABSQ): Likewise.
1862 (COPYSIGNQ): Likewise.
1863 (RS6000_BUILTIN_NANQ): Likewise.
1864 (RS6000_BUILTIN_NANSQ): Likewise.
1865 (RS6000_BUILTIN_INFQ): Likewise.
1866 (RS6000_BUILTIN_HUGE_VALQ): Likewise.
1867 * config/rs6000/rs6000.c (rs6000_fold_builtin): New prototype.
1868 (TARGET_FOLD_BUILTIN): New #define.
1869 (rs6000_builtin_mask_calculate): Add TARGET_FLOAT128 entry.
1870 (rs6000_invalid_builtin): Add handling for RS6000_BTM_FLOAT128.
1871 (rs6000_fold_builtin): New target hook implementation, handling
1872 folding of 128-bit NaNs and infinities.
1873 (rs6000_init_builtins): Initialize const_str_type_node; ensure all
1874 entries are filled in to avoid problems during bootstrap
1875 self-test; define builtins for 128-bit NaNs and infinities.
1876 (rs6000_opt_mask): Add entry for float128.
1877 * config/rs6000/rs6000.h (RS6000_BTM_FLOAT128): New #define.
1878 (RS6000_BTM_COMMON): Include RS6000_BTM_FLOAT128.
1879 (rs6000_builtin_type_index): Add RS6000_BTI_const_str.
1880 (const_str_type_node): New #define.
1881 * config/rs6000/rs6000.md (copysign<mode>3 for IEEE128): Convert
1882 to a define_expand that dispatches to either copysign<mode>3_soft
1883 or copysign<mode>3_hard.
1884 (copysign<mode>3_hard): Rename from copysign<mode>3.
1885 (copysign<mode>3_soft): New define_insn.
1886 * doc/extend.texi: Document new builtins.
1887
1888 2016-06-24 Jakub Jelinek <jakub@redhat.com>
1889
1890 * cfgloop.c (flow_loop_dump): Cast nit to uint64_t and print it using
1891 PRIu64 instead of lu.
1892
1893 2016-06-24 Eric Botcazou <ebotcazou@adacore.com>
1894
1895 PR debug/71642
1896 * tree-inline.c (remap_decl): When fixing up DECL_ORIGINAL_TYPE, just
1897 copy the type name.
1898
1899 2016-06-24 Jakub Jelinek <jakub@redhat.com>
1900
1901 PR tree-optimization/71647
1902 * omp-low.c (lower_rec_input_clauses): Convert
1903 omp_clause_aligned_alignment (c) to size_type_node for the
1904 last argument of __builtin_assume_aligned.
1905
1906 2016-06-24 H.J. Lu <hongjiu.lu@intel.com>
1907
1908 * configure.ac (calling ___tls_get_addr via GOT): New
1909 assembler/linker check.
1910 (HAVE_AS_IX86_TLS_GET_ADDR_GOT): New. Defined to 1 if 32-bit
1911 assembler and linker supports calling ___tls_get_addr via GOT.
1912 Otherise, defined to 0.
1913 * config.in: Regenerated.
1914 * configure: Likewise.
1915 * config/i386/constraints.md (Yb): New constraint.
1916 * config/i386/i386.h (reg_class): Add TLS_GOTBASE_REGS.
1917 (REG_CLASS_NAMES): Likewise.
1918 (REG_CLASS_CONTENTS): Likewise.
1919 * config/i386/i386.md (*tls_global_dynamic_32_gnu): Replace
1920 the b constraint with the Yb constraint. Call ___tls_get_addr
1921 via GOT for GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT
1922 is 1.
1923 (*tls_local_dynamic_base_32_gnu): Likewise.
1924 (*tls_global_dynamic_64_<mode>): Call _tls_get_addr via GOT for
1925 GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT is 1.
1926 (*tls_local_dynamic_base_64_<mode>): Likewise.
1927
1928 2016-06-24 Martin Liska <mliska@suse.cz>
1929
1930 * cfgloop.c (flow_loop_dump): Dump average number of loop iterations.
1931 * cfgloop.h: Change 'struct loop' to 'const struct loop' for a
1932 few functions.
1933 * cfgloopanal.c (expected_loop_iterations_unbounded): Set a new
1934 argument to true if the expected number of iterations is
1935 loop-based.
1936
1937 2016-06-24 Uros Bizjak <ubizjak@gmail.com>
1938
1939 * configure.ac (HAVE_AS_GOTOF_IN_DATA): Use $as_ix86_gas_32_opt to
1940 assemble for 32bit target.
1941 (HAVE_AS_IX86_TLSGDPLT): Use $as_ix86_gas_32_opt to assemble
1942 and $ld_ix86_gld_32_opt to link for 32bit target.
1943 (HAVE_AS_IX86_TLSLDMPLT): Ditto.
1944 * configure: Regenerate.
1945
1946 2016-06-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1947
1948 * config/arm/arm.c (int_log2): Delete definition and prototype.
1949 (shift_op): Use exact_log2 instead of int_log2.
1950 (vfp3_const_double_for_fract_bits): Likewise.
1951
1952 2016-06-24 Jakub Jelinek <jakub@redhat.com>
1953
1954 * internal-fn.c (expand_arith_set_overflow): New function.
1955 (expand_addsub_overflow, expand_neg_overflow, expand_mul_overflow):
1956 Use it.
1957 (expand_arith_overflow_result_store): Likewise. Handle precision
1958 smaller than mode precision.
1959 * tree-vrp.c (extract_range_basic): For imag part, handle
1960 properly signed 1-bit precision result.
1961 * doc/extend.texi (__builtin_add_overflow): Document that last
1962 argument can't be pointer to enumerated or boolean type.
1963 (__builtin_add_overflow_p): Document that last argument can't
1964 have enumerated or boolean type.
1965
1966 2016-06-23 Michael Meissner <meissner@linux.vnet.ibm.com>
1967 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
1968
1969 * config/rs6000/predicates.md (splat_input_operand): Rework.
1970 Don't allow constants, since the insns that use this predicate
1971 don't support constants. Constants are handled by other insns
1972 that are created via combine. During and after register
1973 allocation, only allow indexed or indirect addresses, and not
1974 general addresses. Only allow modes supported by the hardware.
1975 * config/rs6000/rs6000.c (xxsplitb_constant_p): Update usage
1976 comment. Move check for using VSPLTIS<x> to a common location,
1977 instead of doing it in two different places.
1978
1979 2016-06-23 Jocelyn Mayer <l_indien@magic.fr>
1980
1981 * config/i386/driver-i386.c (host_detect_local_cpu): Set
1982 PROCESSOR_PENTIUMPRO for signature_CENTAUR_ebx family >= 9.
1983 <case PROCESSOR_PENTIMUMPRO>: Pass c7 or nehemiah for
1984 signature_CENTAUR_ebx.
1985
1986 2016-06-23 H.J. Lu <hongjiu.lu@intel.com>
1987
1988 PR target/66232
1989 PR target/67400
1990 * configure.ac (as_ix86_tls_ldm_opt): Renamed to ...
1991 (as_ix86_gas_32_opt): This.
1992 (ld_ix86_tls_ldm_opt): Renamed to ...
1993 (ld_ix86_gld_32_opt): This.
1994 (R_386_TLS_LDM reloc): Updated.
1995 (R_386_GOT32X reloc): New assembler/linker check.
1996 (HAVE_AS_IX86_GOT32X): New. Defined to 1 if 32-bit assembler and
1997 linker support "jmp *_start@GOT" and "cmpl $0, bar@GOT". Otherise,
1998 defined to 0.
1999 * config.in: Regenerated.
2000 * configure: Likewise.
2001 * config/i386/i386.c (ix86_force_load_from_GOT_p): Return
2002 true if HAVE_AS_IX86_GOT32X is 1 in 32-bit mode.
2003 (ix86_legitimate_address_p): Allow UNSPEC_GOT for -fno-plt
2004 if ix86_force_load_from_GOT_p returns true.
2005 (ix86_print_operand_address_as): Also support UNSPEC_GOT if
2006 ix86_force_load_from_GOT_p returns true.
2007 (ix86_expand_move): Generate UNSPEC_GOT in 32-bit mode to load
2008 the external function address via the GOT slot.
2009 (ix86_nopic_noplt_attribute_p): Check both TARGET_64BIT and
2010 HAVE_AS_IX86_GOT32X before returning false.
2011 (ix86_output_call_insn): Generate "%!jmp/call\t*%p0@GOT" in
2012 32-bit mode if ix86_nopic_noplt_attribute_p returns true.
2013
2014 2016-06-23 Eric Botcazou <ebotcazou@adacore.com>
2015
2016 * tree-inline.c (remap_decl): Preserve DECL_ORIGINAL_TYPE invariant.
2017
2018 2016-06-23 Andi Kleen <ak@linux.intel.com>
2019
2020 * Makefile.in: Regenerate.
2021 * doc/install.texi: Document autoprofiledbootstrap.
2022
2023 2016-06-23 Andi Kleen <ak@linux.intel.com>
2024
2025 * config/i386/gcc-auto-profile: New file.
2026
2027 2016-06-23 Martin Liska <mliska@suse.cz>
2028
2029 PR middle-end/71619
2030 * predict.c (predict_loops): Revert the hunk that was removed
2031 in r237103.
2032
2033 2016-06-23 Jakub Sejdak <jakub.sejdak@phoesys.com>
2034
2035 * config.gcc: Add support for arm*-*-phoenix* targets.
2036 * config/arm/t-phoenix: New.
2037 * config/phoenix.h: New.
2038
2039 2016-06-23 Uros Bizjak <ubizjak@gmail.com>
2040 H.J. Lu <hongjiu.lu@intel.com>
2041
2042 PR target/67400
2043 * config/i386/i386-protos.h (ix86_force_load_from_GOT_p): New.
2044 * config/i386/i386.c (ix86_force_load_from_GOT_p): New function.
2045 (ix86_legitimate_constant_p): Do not allow UNSPEC_GOTPCREL if
2046 ix86_force_load_from_GOT_p returns true.
2047 (ix86_legitimate_address_p): Allow UNSPEC_GOTPCREL if
2048 ix86_force_load_from_GOT_p returns true.
2049 (ix86_print_operand_address_as): Support UNSPEC_GOTPCREL if
2050 ix86_force_load_from_GOT_p returns true.
2051 (ix86_expand_move): Load the external function address via the
2052 GOT slot if ix86_force_load_from_GOT_p returns true.
2053 * config/i386/predicates.md (x86_64_immediate_operand): Return
2054 false for SYMBOL_REFs where ix86_force_load_from_GOT_p returns true.
2055 (x86_64_zext_immediate_operand): Ditto.
2056
2057 2016-06-22 Uros Bizjak <ubizjak@gmail.com>
2058
2059 * config/i386/i386.c (ix86_expand_move): Simplify SYMBOL_REF handling.
2060
2061 2016-06-22 David Malcolm <dmalcolm@redhat.com>
2062
2063 PR c/70339
2064 * diagnostic-core.h (pedwarn_at_rich_loc): New prototype.
2065 * diagnostic.c (pedwarn_at_rich_loc): New function.
2066 * spellcheck.h (best_match::best_match): Add a
2067 "best_distance_so_far" optional parameter.
2068 (best_match::set_best_so_far): New method.
2069 (best_match::get_best_distance): New accessor.
2070 (best_match::get_best_candidate_length): New accessor.
2071
2072 2016-06-22 Nick Clifton <nickc@redhat.com>
2073
2074 * dwarf2out.c (scompare_loc_descriptor): Use SCALAR_INT_MODE_P() in
2075 place of GET_MODE_CLASS() == MODE_INT, so that partial integer
2076 modes are accepted as well.
2077 (ucompare_loc_descriptor): Likewise.
2078 (minmax_loc_descriptor): Likewise.
2079 (clz_loc_descriptor): Likewise.
2080 (popcount_loc_descriptor): Likewise.
2081 (bswap_loc_descriptor): Likewise.
2082 (rotate_loc_descriptor): Likewise.
2083 (mem_loc_descriptor): Likewise.
2084 (loc_descriptor): Likewise.
2085
2086 2016-06-22 David Malcolm <dmalcolm@redhat.com>
2087
2088 * common.opt (fdiagnostics-parseable-fixits): New option.
2089 * diagnostic.c: Include "selftest.h".
2090 (print_escaped_string): New function.
2091 (print_parseable_fixits): New function.
2092 (diagnostic_report_diagnostic): Call print_parseable_fixits.
2093 (selftest::assert_print_escaped_string): New function.
2094 (ASSERT_PRINT_ESCAPED_STRING_STREQ): New macro.
2095 (selftest::test_print_escaped_string): New function.
2096 (selftest::test_print_parseable_fixits_none): New function.
2097 (selftest::test_print_parseable_fixits_insert): New function.
2098 (selftest::test_print_parseable_fixits_remove): New function.
2099 (selftest::test_print_parseable_fixits_replace): New function.
2100 (selftest::diagnostic_c_tests): New function.
2101 * diagnostic.h (struct diagnostic_context): Add field
2102 "parseable_fixits_p".
2103 * doc/invoke.texi (Diagnostic Message Formatting Options): Add
2104 -fdiagnostics-parseable-fixits.
2105 (-fdiagnostics-parseable-fixits): New option.
2106 * opts.c (common_handle_option): Handle
2107 -fdiagnostics-parseable-fixits.
2108 * selftest-run-tests.c (selftest::run_tests): Call
2109 selftest::diagnostic_c_tests.
2110 * selftest.h (selftest::diagnostic_c_tests): New prototype.
2111
2112 2016-06-22 Ilya Enkovich <ilya.enkovich@intel.com>
2113
2114 PR tree-optimization/71488
2115 * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Support
2116 comparison of boolean vectors.
2117 * tree-vect-stmts.c (vectorizable_comparison): Vectorize comparison
2118 of boolean vectors using bitwise operations.
2119
2120 2016-06-22 Andreas Schwab <schwab@suse.de>
2121
2122 * config/aarch64/aarch64-protos.h (aarch64_elf_asm_named_section):
2123 Remove declaration.
2124
2125 2016-06-22 Eric Botcazou <ebotcazou@adacore.com>
2126
2127 * function.c (assign_parm_setup_reg): Prevent sharing in another case.
2128
2129 2016-06-22 Bernd Edlinger <bernd.edlinger@hotmail.de>
2130
2131 * config/i386/i386.c (print_reg): Emit an error message on attempt to
2132 print FLAGS_REG.
2133
2134 2016-06-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2135
2136 * config/arm/arm.c (arm_cortex_a73_tune): New struct.
2137 * config/arm/arm-cores.def (cortex-a73): New entry.
2138 (cortex-a73.cortex-a35): Likewise.
2139 (cortex-a73.cortex-a53): Likewise.
2140 * config/arm/arm-tables.opt: Regenerate.
2141 * config/arm/arm-tune.md: Likewise.
2142 * config/arm/bpabi.h (BE8_LINK_SPEC): Handle mcpu=cortex-a73,
2143 mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
2144 * config/arm/t-aprofile: Handle mcpu=cortex-a73,
2145 mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
2146 * doc/invoke.texi (ARM Options): Document cortex-a73,
2147 cortex-a73.cortex-a35 and cortex-a73.cortex-a53.
2148
2149 2016-06-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2150
2151 * config/aarch64/aarch64.c (cortexa73_tunings): New struct.
2152 * config/aarch64/aarch64-cores.def (cortex-a73): New entry.
2153 (cortex-a73.cortex-a35): Likewise.
2154 (cortex-a73.cortex-a53): Likewise.
2155 * config/aarch64/aarch64-tune.md: Regenerate.
2156 * doc/invoke.texi (AArch64 Options): Document cortex-a73,
2157 cortex-a73.cortex-a35 and cortex-a73.cortex-a53 arguments to
2158 -mcpu and -mtune.
2159
2160 2016-06-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2161
2162 * configure.ac (gcc_cv_as_compress_debug): Remove
2163 --compress-debug-sections as extra as switch.
2164 Handle gas --compress-debug-sections=type.
2165 (gcc_cv_ld_compess_debug): Remove bogus ld_date check.
2166 Handle gld --compress-debug-sections=type.
2167 * configure: Regenerate.
2168
2169 2016-06-21 Andrew Burgess <andrew.burgess@embecosm.com>
2170
2171 * bb-reorder.c (pass_partition_blocks::gate): Update comment.
2172
2173 2016-06-21 John David Anglin <danglin@gcc.gnu.org>
2174
2175 * gcov-tool.c (profile_rewrite): Use int64_t instead of long long.
2176 (do_rewrite): likewise.
2177
2178 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2179
2180 * common/config/mep/mep-common.c: Remove.
2181 * config.gcc: Remove mep-* support.
2182 * config/mep/constraints.md: Remove.
2183 * config/mep/default.h: Remove.
2184 * config/mep/intrinsics.h: Remove.
2185 * config/mep/intrinsics.md: Remove.
2186 * config/mep/ivc2-template.h: Remove.
2187 * config/mep/mep-c5.cpu: Remove.
2188 * config/mep/mep-core.cpu: Remove.
2189 * config/mep/mep-default.cpu: Remove.
2190 * config/mep/mep-ext-cop.cpu: Remove.
2191 * config/mep/mep-intrin.h: Remove.
2192 * config/mep/mep-ivc2.cpu: Remove.
2193 * config/mep/mep-pragma.c: Remove.
2194 * config/mep/mep-protos.h: Remove.
2195 * config/mep/mep.c: Remove.
2196 * config/mep/mep.cpu: Remove.
2197 * config/mep/mep.h: Remove.
2198 * config/mep/mep.md: Remove.
2199 * config/mep/mep.opt: Remove.
2200 * config/mep/predicates.md: Remove.
2201 * config/mep/t-mep: Remove.
2202 * doc/install.texi: Remove mep-* documentation.
2203 * doc/md.texi: Likewise.
2204
2205 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2206
2207 * config.gcc: Remove support for avr-rtems.
2208 * config/avr/gen-avr-mmcu-specs.c: Likewise.
2209 * config/avr/rtems.h: Remove.
2210 * config/avr/t-rtems: Remove.
2211
2212 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2213
2214 * config.gcc: Remove m32r-rtems support.
2215 * config/m32r/rtems.h: Remove.
2216
2217 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2218
2219 * config.gcc: Remove h8300-rtems support.
2220 * config/h8300/rtems.h: Remove.
2221 * config/h8300/t-rtems: Remove.
2222
2223 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2224
2225 * config.gcc: Remove support for knetbsd.
2226 * configure.ac: Likewise.
2227 * config/i386/knetbsd-gnu.h: Remove. * config/i386/knetbsd-gnu64.h: Remove.
2228 * config/knetbsd-gnu.h: Remove.
2229 * configure: Regenerate.
2230
2231 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2232
2233 * config.gcc: Remove support for openbsd 2 and 3.
2234 * config/openbsd-oldgas.h: Remove.
2235
2236 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
2237
2238 * config.gcc: Remove interix support.
2239 * config/i386/i386-interix.h: Remove.
2240 * config/i386/interix.opt: Remove.
2241 * config/i386/t-interix: Remove.
2242 * configure: Regenerate.
2243 * configure.ac: Remove interix support.
2244 * doc/install.texi: Remove interix documentation.
2245
2246 2016-06-21 Kelvin Nilsen <kelvin@gcc.gnu.org>
2247
2248 * config/rs6000/rs6000.h: Add conditional preprocessing directives
2249 to disable Power9-specific compiler features if HAVE_AS_POWER9 is
2250 not defined.
2251
2252 2016-06-21 Eric Botcazou <ebotcazou@adacore.com>
2253
2254 * tree.c (verify_type_variant): Skip TYPE_SIZE and TYPE_SIZE_UNIT if
2255 they are both PLACEHOLDER_EXPRs.
2256
2257 2016-06-21 Michael Meissner <meissner@linux.vnet.ibm.com>
2258
2259 * stor-layout.c (layout_type): Move setting complex MODE to
2260 layout_type, instead of setting it ahead of time by the caller.
2261 * tree.c (build_complex_type): Likewise.
2262
2263 2016-06-21 Martin Liska <mliska@suse.cz>
2264
2265 * predict.c (force_edge_cold): Replace imposisble with
2266 impossible.
2267
2268 2016-06-21 Ilya Verbin <ilya.verbin@intel.com>
2269
2270 * config/i386/i386.c (ix86_emit_swsqrtsf): Emit vrsqrt28ps.
2271 * config/i386/sse.md (define_expand "rsqrtv16sf2"): New.
2272
2273 2016-06-21 Ilya Verbin <ilya.verbin@intel.com>
2274
2275 * config/i386/i386.c (ix86_emit_swdivsf): Emit vrcp28ps.
2276
2277 2016-06-21 H.J. Lu <hongjiu.lu@intel.com>
2278 Ilya Enkovich <ilya.enkovich@intel.com>
2279
2280 PR target/71549
2281 * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
2282 New member function to convert V1TImode register to SUBREG
2283 TImode in debug insn.
2284 (timode_scalar_chain::convert_insn): Call fix_debug_reg_uses
2285 after changing register mode to V1TImode.
2286
2287 2016-06-21 Virendra Pathak <virendra.pathak@broadcom.com>
2288
2289 * config/aarch64/aarch64-cores.def (vulcan): New core.
2290 * config/aarch64/aarch64-tune.md: Regenerate.
2291 * doc/invoke.texi: Document vulcan as an available option.
2292
2293 2016-06-21 Eric Botcazou <ebotcazou@adacore.com>
2294
2295 * cse.c (canon_asm_operands): New function extracted from...
2296 (canonicalize_insn): ...here. Call it to canonicalize an ASM_OPERANDS
2297 either standalone or member of a PARALLEL.
2298
2299 2016-06-21 Georg-Johann Lay <avr@gjlay.de>
2300
2301 PR target/30417
2302 * config/avr/gen-avr-mmcu-specs.c (print_mcu):
2303 [*link_data_start]: Wrap -Tdata into %{!Tdata:...}.
2304 [*link_text_start]: Wrap -Ttext into %{!Ttext:...}.
2305
2306 2016-06-21 Georg-Johann Lay <avr@gjlay.de>
2307
2308 PR target/71103
2309 * config/avr/avr.md (movqi): Only handle loading subreg:qi of
2310 constant addresses if can_create_pseudo_p.
2311
2312 2016-06-21 Jakub Jelinek <jakub@redhat.com>
2313
2314 PR tree-optimization/71588
2315 * tree-ssa-strlen.c (valid_builtin_call): New function.
2316 (adjust_last_stmt, handle_builtin_memset, strlen_optimize_stmt): Use
2317 it.
2318
2319 2016-06-20 Jakub Jelinek <jakub@redhat.com>
2320
2321 PR middle-end/71581
2322 * tree-ssa-uninit.c (warn_uninit): If EXPR and VAR are NULL,
2323 see if T isn't anonymous SSA_NAME with COMPLEX_EXPR created
2324 for conversion of scalar user var to complex type and use the
2325 underlying SSA_NAME_VAR in that case. If EXPR is still NULL,
2326 punt.
2327
2328 PR rtl-optimization/71591
2329 * toplev.c (toplev::run_self_tests): If no_backend, complain and
2330 don't run any tests.
2331
2332 2016-06-20 Hans-Peter Nilsson <hp@axis.com>
2333
2334 PR target/71571
2335 * config/cris/cris.c (cris_asm_output_mi_thunk): Add missing "ba"
2336 delay-slot "nop" for PIC with CRIS v32. Also add missing leading
2337 space for PIC with non-v32 and the common non-PIC "jump".
2338
2339 2016-06-20 Jakub Jelinek <jakub@redhat.com>
2340
2341 PR target/71559
2342 * config/i386/i386.c (ix86_fp_cmp_code_to_pcmp_immediate): Fix up
2343 returned values and add UN*/LTGT/*ORDERED cases with values matching
2344 D operand modifier on vcmp for AVX.
2345
2346 2016-06-20 Wilco Dijkstra <wdijkstr@arm.com>
2347
2348 * config/aarch64/aarch64.opt
2349 (mpc-relative-literal-loads): Rename internal option name.
2350 * config/aarch64/aarch64.c
2351 (aarch64_nopcrelative_literal_loads): Rename to
2352 aarch64_pcrelative_literal_loads.
2353 (aarch64_expand_mov_immediate): Likewise.
2354 (aarch64_secondary_reload): Likewise.
2355 (aarch64_can_use_per_function_literal_pools_p): Likewise.
2356 (aarch64_override_options_after_change_1): Rename and simplify logic.
2357 (aarch64_classify_symbol): Merge large model checks into switch,
2358 remove pc-relative load check.
2359
2360 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
2361
2362 * config/arm/aarch-cost-tables.h (cortexa53_extra_costs): Make FP
2363 costs relative to the cost of a register move.
2364
2365 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
2366
2367 * config/aarch64/arm_neon.h (vcvt_n_f64_s64): New.
2368 (vcvt_n_f64_u64): Likewise.
2369 (vcvt_n_s64_f64): Likewise.
2370 (vcvt_n_u64_f64): Likewise.
2371 (vcvt_f64_s64): Likewise.
2372 (vrecpe_f64): Likewise.
2373 (vcvt_f64_u64): Likewise.
2374 (vrecps_f64): Likewise.
2375
2376 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
2377
2378 * config/aarch64/aarch64.md
2379 (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3): Add attributes to
2380 iterators.
2381 (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>3): Likewise. Correct
2382 attributes.
2383 * config/aarch64/aarch64-builtins.c
2384 (aarch64_types_binop_uss_qualifiers): Delete.
2385 (TYPES_BINOP_USS): Likewise.
2386 (aarch64_types_binop_sus_qualifiers): Likewise.
2387 (TYPES_BINOP_SUS): Likewise.
2388 (aarch64_types_fcvt_from_unsigned_qualifiers): New.
2389 (TYPES_FCVTIMM_SUS): Likewise.
2390 * config/aarch64/aarch64-simd-builtins.def (scvtf): Use SHIFTIMM
2391 rather than BINOP.
2392 (ucvtf): Use FCVTIMM_SUS rather than BINOP_SUS.
2393 (fcvtzs): Use SHIFTIMM rather than BINOP.
2394 (fcvtzu): Use SHIFTIMM_USS rather than BINOP_USS.
2395
2396 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
2397
2398 * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): Make FP
2399 costs relative to the cost of a register move.
2400
2401 2016-06-20 Wilco Dijkstra <wdijkstr@arm.com>
2402
2403 * config/aarch64/aarch64.c (aarch64_modes_tieable_p):
2404 Allow scalar/single vector modes to be tieable.
2405
2406 2016-06-20 Wilco Dijkstra <wdijkstr@arm.com>
2407
2408 * config/arm/cortex-a57.md (cortex_a57_fp_cpys): Add fcsel.
2409
2410 2016-06-20 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2411
2412 * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of
2413 "alignement".
2414 * tree.h (TYPE_ALIGN): Likewise.
2415
2416 2016-06-20 Georg-Johann Lay <avr@gjlay.de>
2417
2418 PR target/71103
2419 * config/avr/avr.md (movqi): Handle loading subreg:qi (const).
2420
2421 2016-06-20 Georg-Johann Lay <avr@gjlay.de>
2422
2423 * config/avr/avr.c (avr_print_operand): Fix "format not a string
2424 literal" build warnings.
2425 (avr_print_operand_address): Dito.
2426
2427 2016-06-19 David Edelsohn <dje.gcc@gmail.com>
2428
2429 PR target/71375
2430 * config/rs6000/aix51.h (TARGET_EXTRA_BUILTINS): Define as 0.
2431 * config/rs6000/aix43.h (TARGET_EXTRA_BUILTINS): Same.
2432
2433 2016-06-18 John David Anglin <danglin@gcc.gnu.org>
2434
2435 * config/pa/pa.h (TARGET_LONG_PIC_PCREL_CALL): Remove.
2436
2437 2016-06-18 Eric Botcazou <ebotcazou@adacore.com>
2438
2439 PR bootstrap/71435
2440 * reload1.c (reload): Pass 0 to finish_spills when called because
2441 update_eliminables_and_spill returns true and remove did_spill.
2442 (finish_spills): Adjust comment and document GLOBAL parameter.
2443
2444 2016-06-17 DJ Delorie <dj@redhat.com>
2445
2446 PR target/71338
2447 * config/rl78/rl78-expand.c (umulqihi3): Enable for G10.
2448 * config/rl78/rl78-virtual.c (umulhi3_shift_virt): Likewise.
2449 (umulqihi3_virt): Likewise.
2450 * config/rl78/rl78-real.c (umulhi3_shift_real): Likewise.
2451 (umulqihi3_real): Likewise.
2452
2453 2016-06-17 Martin Liska <mliska@suse.cz>
2454
2455 * tree-ssa-reassoc.c (transform_add_to_multiply): Use auto_vec.
2456
2457 2016-06-17 Martin Liska <mliska@suse.cz>
2458
2459 * predict.def: PRED_LOOP_EXIT from 92 to 85.
2460
2461 2016-06-17 James Greenhalgh <james.greenhalgh@arm.com>
2462
2463 * config/arm/arm_neon.h (vadd_f32): replace __FAST_MATH with
2464 __FAST_MATH__.
2465 (vaddq_f32): Likewise.
2466 (vmul_f32): Likewise.
2467 (vmulq_f32): Likewise.
2468 (vsub_f32): Likewise.
2469 (vsubq_f32): Likewise.
2470
2471 2016-06-17 Bin Cheng <bin.cheng@arm.com>
2472
2473 PR tree-optimization/71347
2474 * tree-ssa-loop-ivopts.c (determine_group_iv_cost_address): Compute
2475 cost for all uses in group.
2476
2477 2016-06-17 Bin Cheng <bin.cheng@arm.com>
2478
2479 * tree-vect-loop.c (vect_create_epilog_for_reduction): Only
2480 insert gimple seq if it's not empty.
2481
2482 2016-06-17 Bin Cheng <bin.cheng@arm.com>
2483
2484 * tree-vectorizer.h (struct dr_with_seg_len): Remove class
2485 member OFFSET.
2486 * tree-vect-data-refs.c (operator ==): Handle DR_OFFSET directly,
2487 rather than OFFSET.
2488 (comp_dr_with_seg_len_pair): Ditto.
2489 (vect_prune_runtime_alias_test_list): Ditto. Also Canonicalize
2490 struct dr_with_seg_len_pair against DR_OFFSET.
2491 * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks): Handle
2492 DR_OFFSET directly.
2493
2494 2016-06-17 Szabolcs Nagy <szabolcs.nagy@arm.com>
2495
2496 * config/aarch64/geniterators.sh: Handle parenthesised conditions.
2497
2498 2016-06-16 John David Anglin <danglin@gcc.gnu.org>
2499
2500 * config/pa/pa.c (pa_output_pic_pcrel_sequence): New.
2501 (pa_output_lbranch): Use pa_output_pic_pcrel_sequence.
2502 (pa_output_millicode_call): Likewise.
2503 (pa_output_call): Likewise.
2504 (pa_output_indirect_call): Likewise.
2505 (pa_asm_output_mi_thunk): Likewise.
2506
2507 2016-06-16 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
2508
2509 * doc/invoke.texi (x86 Options): Fix -mno-fp-ret-in-387 typo.
2510
2511 2016-06-16 Martin Liska <mliska@suse.cz>
2512
2513 * predict.c (combine_predictions_for_insn): When we find a first
2514 match predictor, we should consider just predictors with
2515 PRED_FLAG_FIRST_MATCH. Print either first match (if any) or
2516 DS theory predictor.
2517 (combine_predictions_for_bb): Likewise.
2518
2519 2016-06-16 Jakub Jelinek <jakub@redhat.com>
2520
2521 * gimplify.c (gimplify_scan_omp_clauses): Handle COMPONENT_REFs
2522 with base of reference to struct.
2523
2524 2016-06-16 Uros Bizjak <ubizjak@gmail.com>
2525
2526 * doc/invoke.texi (x86 Options): Document -m80387 and -mhard-float.
2527
2528 2016-06-16 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
2529
2530 PR target/71151
2531 * config/avr/avr.c (avr_asm_init_sections): Remove setup of
2532 progmem_swtable_section.
2533 (progmem_swtable_section): Remove.
2534 (avr_asm_function_rodata_section): Remove.
2535 (TARGET_ASM_FUNCTION_RODATA_SECTION): Remove.
2536 * config/avr/avr.h (JUMP_TABLES_IN_TEXT_SECTION: Define to 1.
2537
2538 2016-06-16 Jocelyn Mayer <l_indien@magic.fr>
2539
2540 * config/i386/driver-i386.c (host_detect_local_cpu): Set
2541 PROCESSOR_K8 for signature_CENTAUR_ebx with has_longmode.
2542 <case PROCESSOR_K8>: Pass nano-3000, nano, eden-x2 or k8 for
2543 signature_CENTAUR_ebx.
2544 * config/i386/i386.c (ix86_option_override_internal): Add
2545 definitions for VIA c7, samuel-2, nehemiah, esther, eden-x2, eden-x4,
2546 nano, nano-1000, nano-2000, nano-3000, nano-x2 and nano-x4.
2547 * doc/invoke.texi (x86 Options): Document new VIA -march entries.
2548
2549 2016-06-16 Martin Liska <mliska@suse.cz>
2550
2551 * predict.def: Add fortran loop preheader predictor.
2552 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Properly
2553 fold IFN_BUILTIN_EXPECT with a known constant argument.
2554
2555 2016-06-16 Martin Liska <mliska@suse.cz>
2556
2557 * predict.def: Add 'Fortran' to display text of all
2558 PRED_FORTRAN_* predictors.
2559
2560 2016-06-16 Uros Bizjak <ubizjak@gmail.com>
2561
2562 PR target/71242
2563 * config/ia64/ia64.c (enum ia64_builtins) [IA64_BUILTIN_NANQ]: New.
2564 [IA64_BUILTIN_NANSQ]: Ditto.
2565 (ia64_fold_builtin): New function.
2566 (TARGET_FOLD_BUILTIN): New define.
2567 (ia64_init_builtins) Declare const_string_type node.
2568 Add __builtin_nanq and __builtin_nansq builtin functions.
2569 (ia64_expand_builtin): Handle IA64_BUILTIN_NANQ and IA64_BUILTIN_NANSQ.
2570
2571 2016-06-16 Nick Clifton <nickc@redhat.com>
2572
2573 * config/msp430/msp430-opts.h (msp430_hwmult_types): Add
2574 MSP430_HWMULT_ prefix to enum values.
2575 (msp430_regions): Add MSP430_REGION_ prefix to enum values.
2576 * config/msp430/msp430.c: Update use of enum values.
2577 * config/msp430/msp430.md: Likewise.
2578 * config/msp430/msp430.opt: Likewise.
2579
2580 2016-06-16 Jan Hubicka <hubicka@ucw.cz>
2581
2582 * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Fix estimation
2583 of comparsions in the last iteration.
2584
2585 2016-06-16 Claudiu Zissulescu <claziss@synopsys.com>
2586 Joern Rennecke <joern.rennecke@embecosm.com>
2587
2588 * config/arc/arc.c (arc_print_operand_address): Handle pc-relative
2589 addresses.
2590 (arc_needs_pcl_p): Add GOTOFFPC.
2591 (arc_legitimate_pic_addr_p): Likewise.
2592 (arc_output_pic_addr_const): Likewise.
2593 (arc_legitimize_pic_address): Generate a pc-relative address using
2594 GOTOFFPC.
2595 (arc_output_libcall): Use @pcl syntax.
2596 (arc_delegitimize_address_0): Delegitimize ARC_UNSPEC_GOTOFFPC.
2597 * config/arc/arc.md ("unspec"): Add ARC_UNSPEC_GOTOFFPC.
2598 (*movsi_insn): Use @pcl syntax.
2599 (doloop_begin_i): Likewise.
2600
2601 2016-06-16 Martin Liska <mliska@suse.cz>
2602
2603 * predict.def: Define a new predictor.
2604
2605 2016-06-16 Claudiu Zissulescu <claziss@synopsys.com>
2606
2607 * config/arc/arc.opt (mtp-regno): Update text.
2608
2609 2016-06-16 Renlin Li <renlin.li@arm.com>
2610
2611 * config/aarch64/aarch64.c (aarch64_legitimize_address): Fix a typo.
2612
2613 2016-06-16 Jakub Jelinek <jakub@redhat.com>
2614
2615 PR target/71554
2616 * config/i386/i386.md (setcc + movzbl peephole2): Use reg_set_p.
2617 (setcc + and peephole2): Likewise.
2618
2619 PR rtl-optimization/71532
2620 * cse.c (cse_insn): For const/pure calls, invalidate argument passing
2621 memory slots.
2622
2623 2016-06-15 Michael Meissner <meissner@linux.vnet.ibm.com>
2624
2625 * config/rs6000/vsx.md (VSINT_84): Add DImode to enable loading
2626 DImode constants with XXSPLTIB in vector registers.
2627 (vsx_extract_<mode>, V2DImode/V2DFmode): Combine both
2628 vsx_extract_<mode>_internal{1,2} into a single insn that handles
2629 direct move (both ISA 2.07 and ISA 3.0 versions), and optimizes
2630 extraction of the element at the top of the register as a scalar
2631 value.
2632 (vsx_extract_<mode>_internal1): Likewise.
2633 (vsx_extract_<mode>_internal2): Likewise.
2634 * config/rs6000/constraints.md (wi constraint): Remove a comment
2635 about DImode not being allowed in Altivec registers.
2636 (wB constraint): New constraint for constants that can be
2637 generated in Altivec registers with VSPLTISW/VUPKHSW.
2638 * config/rs6000/predicates.md (xxspltib_constant_split): Update
2639 comments.
2640 (xxspltib_constant_nosplit): Likewise.
2641 * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Add
2642 support for -mupper-regs-di to enable DImode to go into Altivec
2643 registers.
2644 (POWERPC_MASKS): Likewise.
2645 (power7 cpu): Likewise.
2646 * config/rs6000/rs6000.opt (-mupper-regs-di): Likewise.
2647 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Add support
2648 for DImode being allowed in Altivec registers. Update wi/wj
2649 constraints. Set scalar_in_vmx_p flag.
2650 (rs6000_option_override_internal): Add checks for -mupper-regs-di.
2651 (xxspltib_constant_p): Allow CONST_INT's with VOIDmode. Don't
2652 return true if we could use VSPLTISW/VUPKHSW instead of XXSPLTIB.
2653 (rs6000_opt_masks): Add -mupper-regs-di.
2654 * config/rs6000/rs6000.md (lfiwax): Update clobbers that don't use
2655 direct move to use wi and not wj.
2656 (lfiwzx): Likewise.
2657 (floatsi<mode>2_lfiwax_mem): Combine alternatives into a single
2658 alternative.
2659 (floatunssi<mode>2_lfiwzx_mem): Likewise.
2660 (fix_trunc<mode>di2_fctidz): Change second alternative to allow
2661 any VSX register, instead of just Altivec registers, to allow
2662 either operand to be an Altivec register or both.
2663 (fixuns_trunc<mode>di2_fctiduz): Likewise.
2664 (movdi_internal32): Add support for -mupper-regs-di. Add support
2665 to load constants via XXSPLTIB or VSPLTISW. Add spacing to allow
2666 the alternatives and attributes to be lined up to be easier to
2667 read.
2668 (movdi_internal64): Likewise.
2669 (64-bit DImode splitters): Change predicates to only split loading
2670 up GPR registers. Add splits for using XXSPLTIB or VSPLTISW to
2671 load constants in ISA 3.0 or ISA 2.07 respectively.
2672 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
2673 -mupper-regs-di. Update -mupper-regs-df and -mupper-regs-sf to
2674 mention -mcpu=power9 sets these options.
2675 * doc/md.texi (PowerPC and IBM RS6000 constraints): Document the
2676 wB constraint.
2677
2678 2016-06-15 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
2679
2680 PR target/67353
2681 * config/avr/avr.c (avr_set_current_function): Warn misspelled
2682 interrupt/ signal handler if -Wmisspelled-isr flag is enabled.
2683 * config/avr/avr.opt (Wmisspelled-isr): New warning flag. Enabled
2684 by default to warn misspelled interrupt/ signal handler.
2685 * doc/invoke.texi (AVR Options): Document it. Update description
2686 for -nodevicelib option.
2687
2688 2016-06-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2689
2690 * config/aarch64/aarch64-simd.md (aarch64_<sur>shll_n<mode>): Clean
2691 up parentheses. Use GET_MODE_UNIT_BITSIZE.
2692 (aarch64_<sur>shll2_n<mode>): Likewise.
2693
2694 2016-06-15 Ilya Enkovich <ilya.enkovich@intel.com>
2695
2696 PR middle-end/71529
2697 * ipa-chkp.c (chkp_build_instrumented_fndecl): Fix
2698 DECL_CONTEXT for copied arguments.
2699
2700 2016-06-15 Alan Hayward <alan.hayward@arm.com>
2701
2702 PR tree-optimization/71483
2703 * tree-vect-loop.c (vectorizable_live_operation): Pick correct index
2704 for slp
2705
2706 2016-06-15 Martin Liska <mliska@suse.cz>
2707
2708 * predict.c (tree_predict_by_opcode): Call predict_edge_def
2709 instead of predict_edge w/o a probability.
2710
2711 2016-06-15 Alan Hayward <alan.hayward@arm.com>
2712
2713 PR tree-optimization/71439
2714 * tree-vect-loop.c (vect_analyze_loop_operations): Additional check for
2715 live PHIs.
2716
2717 2016-06-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2718
2719 * ifcvt.c (bb_ok_for_noce_multiple_sets): Allow simple lowpart
2720 register subregs in SET_SRC.
2721
2722 2016-06-15 Richard Biener <rguenther@suse.de>
2723
2724 * tree-vect-stmts.c (vectorizable_store): Remove strided grouped
2725 store restrictions.
2726
2727 2016-06-15 Richard Biener <rguenther@suse.de>
2728
2729 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Do
2730 not consider dependences between accesses that belong to the
2731 same group.
2732 (vect_analyze_data_ref_dependences): Do not analyze read-read
2733 or self-dependences.
2734
2735 2016-06-14 David Malcolm <dmalcolm@redhat.com>
2736
2737 * spellcheck-tree.c: Include spellcheck-tree.h rather than
2738 spellcheck.h.
2739 (find_closest_identifier): Reimplement in terms of
2740 best_match<tree,tree>.
2741 * spellcheck-tree.h: New file.
2742 * spellcheck.c (struct edit_distance_traits<const char *>): New
2743 struct.
2744 (find_closest_string): Reimplement in terms of
2745 best_match<const char *, const char *>.
2746 * spellcheck.h (levenshtein_distance): Move prototype of tree-based
2747 overload to spellcheck-tree.h.
2748 (find_closest_identifier): Likewise.
2749 (struct edit_distance_traits<T>): New template.
2750 (class best_match): New class.
2751
2752 2016-06-14 David Malcolm <dmalcolm@redhat.com>
2753
2754 * selftest-run-tests.c (selftest::run_tests): Call
2755 selftest::spellcheck_tree_c_tests.
2756 * selftest.h (selftest::spellcheck_tree_c_tests): New decl.
2757 * spellcheck-tree.c: Include selftest.h and stringpool.h.
2758 (selftest::test_find_closest_identifier): New function.
2759 (selftest::spellcheck_tree_c_tests): New function.
2760 * spellcheck.c (selftest::test_find_closest_string): Verify that
2761 the order of the vec does not affect the results for this case.
2762 (selftest::test_data): New array.
2763 (selftest::test_metric_conditions): New function.
2764 (selftest::spellcheck_c_tests): Add a test of case-comparison.
2765 Call selftest::test_metric_conditions.
2766
2767 2016-06-14 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
2768
2769 * config/rs6000/rs6000-builtin.def (commentary): Typo.
2770 (BU_P9_MISC_1): Likewise.
2771 (BU_P9_64BIT_MISC_0): Likewise.
2772 (BU_P9_MISC_0): Likewise.
2773
2774 2016-06-14 David Malcolm <dmalcolm@redhat.com>
2775
2776 * gcc-rich-location.c
2777 (gcc_rich_location::add_fixit_misspelled_id): New method.
2778 * gcc-rich-location.h
2779 (gcc_rich_location::add_fixit_misspelled_id): Add decl.
2780
2781 2016-06-14 Andreas Tobler <andreast@gcc.gnu.org>
2782
2783 * config/arm/freebsd.h: Only enable unaligned access for armv6 on
2784 FreeBSD 11 and above.
2785
2786 2016-06-14 Uros Bizjak <ubizjak@gmail.com>
2787
2788 * config/i386/i386.md (signbittf2): Emit sse_movmskps for TARGET_SSE.
2789
2790 2016-06-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2791
2792 * expmed.h: Close parenthesis in "at your option" in copyright
2793 boilerplate.
2794 * lower-subreg.h: Likewise.
2795
2796 2016-06-14 Richard Biener <rguenther@suse.de>
2797
2798 PR middle-end/71526
2799 * genmatch.c (expr::gen_transform): Use in_type for comparisons
2800 if available.
2801
2802 2015-06-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2803
2804 * config/aarch64/aarch64.c (aarch64_mask_and_shift_for_ubfiz_p):
2805 New function.
2806 (aarch64_rtx_costs): Use it. Rewrite CONST_INT_P (op1) case to handle
2807 mask+shift version.
2808 * config/aarch64/aarch64-protos.h (aarch64_mask_and_shift_for_ubfiz_p):
2809 New prototype.
2810 * config/aarch64/aarch64.md (*andim_ashift<mode>_bfiz): Replace
2811 matching condition with aarch64_mask_and_shift_for_ubfiz_p.
2812
2813 2016-06-14 Richard Biener <rguenther@suse.de>
2814
2815 PR tree-optimization/71522
2816 * tree-ssa.c (non_rewritable_lvalue_p): Do not rewrite non-float
2817 copying into float copying.
2818
2819 2016-06-14 Jakub Jelinek <jakub@redhat.com>
2820
2821 PR tree-optimization/71520
2822 * tree-ssa-tail-merge.c (find_duplicate): Handle labels.
2823 (replace_block_by): Move user labels from bb1 to bb2.
2824
2825 2016-06-14 Richard Biener <rguenther@suse.de>
2826
2827 PR middle-end/71310
2828 PR bootstrap/71510
2829 * expr.h (get_bit_range): Declare.
2830 * expr.c (get_bit_range): Export.
2831 * fold-const.c (optimize_bit_field_compare): Use get_bit_range and
2832 word_mode again to constrain the bitfield access.
2833
2834 2016-06-14 Richard Biener <rguenther@suse.de>
2835
2836 PR tree-optimization/71521
2837 * tree-vrp.c (extract_range_from_binary_expr_1): Guard
2838 division int_const_binop against zero divisor.
2839
2840 2016-06-13 Uros Bizjak <ubizjak@gmail.com>
2841
2842 * config/i386/i386.md (signbittf2): New expander.
2843 * config/i386/sse.md (ptesttf2): New insn pattern.
2844
2845 2016-06-13 David Malcolm <dmalcolm@redhat.com>
2846
2847 PR bootstrap/71481
2848 * input.c (selftest::test_reading_source_line): Avoid reading from
2849 __FILE__ by creating a tempfile with known content and reading
2850 from that instead.
2851
2852 2016-06-13 David Malcolm <dmalcolm@redhat.com>
2853
2854 * pretty-print.c (assert_pp_format_colored): Skip the test if
2855 GCC_COLORS is set.
2856 (test_pp_format): Remove comment about GCC_COLORS.
2857
2858 2016-06-13 David Malcolm <dmalcolm@redhat.com>
2859
2860 * input.c (test_reading_source_line): Use SELFTEST_LOCATION.
2861 * pretty-print.c (assert_pp_format_va): Add location param and use
2862 it with ASSERT_STREQ_AT.
2863 (assert_pp_format): Add location param and pass it to
2864 assert_pp_format_va.
2865 (assert_pp_format_colored): Likewise.
2866 (ASSERT_PP_FORMAT_1): New.
2867 (ASSERT_PP_FORMAT_2): New.
2868 (ASSERT_PP_FORMAT_3): New.
2869 (test_pp_format): Provide SELFTEST_LOCATION throughout, either
2870 explicitly, or implicitly via the above macros.
2871 * selftest.c (selftest::pass): Use a selftest::location rather
2872 than file and line.
2873 (selftest::fail): Likewise. Print the function name.
2874 (selftest::fail_formatted): Likewise.
2875 (selftest::assert_streq): Use a selftest::location rather than
2876 file and line.
2877 * selftest.h (selftest::location): New struct.
2878 (SELFTEST_LOCATION): New macro.
2879 (selftest::pass): Accept a const location & rather than file
2880 and line.
2881 (selftest::fail): Likewise.
2882 (selftest::fail_formatted): Likewise.
2883 (selftest::assert_streq): Likewise.
2884 (ASSERT_TRUE): Update for above changes, using SELFTEST_LOCATION.
2885 (ASSERT_FALSE): Likewise.
2886 (ASSERT_EQ): Likewise.
2887 (ASSERT_NE): Likewise.
2888 (ASSERT_STREQ): Likewise.
2889 (ASSERT_PRED1): Likewise.
2890 (ASSERT_STREQ_AT): New macro.
2891
2892 2016-06-13 David Malcolm <dmalcolm@redhat.com>
2893
2894 * selftest.c (selftest::fail_formatted): New function.
2895 (selftest::assert_streq): New function.
2896 * selftest.h (selftests::fail_formatted): New decl.
2897 (selftest::assert_streq): New decl.
2898 (ASSERT_STREQ): Reimplement in terms of selftest::assert_streq.
2899
2900 2016-06-13 Jeff Law <law@redhat.com>
2901
2902 PR tree-optimization/71403
2903 * tree-ssa-threadbackward.c
2904 (convert_and_register_jump_thread_path): No longer accept reference
2905 to path. Do not pop items off the path anymore.
2906 (fsm_find_control_statement_thread_paths): Do not allow threading
2907 to a deeper loop nest. Pop the last item off the path here rather
2908 than in convert_and_register_jump_thread_path.
2909
2910 2016-06-13 Evandro Menezes <e.menezes@samsung.com>
2911 Wilco Dijkstra <Wilco.Dijkstra@arm.com>
2912
2913 [AArch64] Emit division using the Newton series
2914
2915 * config/aarch64/aarch64-protos.h
2916 (cpu_approx_modes): Add new member "division".
2917 (aarch64_emit_approx_div): Declare new function.
2918 * config/aarch64/aarch64.c
2919 (generic_approx_modes): New member "division".
2920 (exynosm1_approx_modes): Likewise.
2921 (xgene1_approx_modes): Likewise.
2922 (aarch64_emit_approx_div): Define new function.
2923 * config/aarch64/aarch64.md ("div<mode>3"): New expansion.
2924 * config/aarch64/aarch64-simd.md ("div<mode>3"): Likewise.
2925 * config/aarch64/aarch64.opt (-mlow-precision-div): Add new option.
2926 * doc/invoke.texi (-mlow-precision-div): Describe new option.
2927
2928 2016-06-13 Evandro Menezes <e.menezes@samsung.com>
2929 Wilco Dijkstra <wilco.dijkstra@arm.com>
2930
2931 [AArch64] Emit square root using the Newton series
2932
2933 * config/aarch64/aarch64-protos.h
2934 (aarch64_emit_approx_rsqrt): Replace with new function
2935 "aarch64_emit_approx_sqrt".
2936 (cpu_approx_modes): New member "sqrt".
2937 * config/aarch64/aarch64.c
2938 (generic_approx_modes): New member "sqrt".
2939 (exynosm1_approx_modes): Likewise.
2940 (xgene1_approx_modes): Likewise.
2941 (aarch64_emit_approx_rsqrt): Replace with new function
2942 "aarch64_emit_approx_sqrt".
2943 (aarch64_override_options_after_change_1): Handle new option.
2944 * config/aarch64/aarch64-simd.md
2945 (rsqrt<mode>2): Use new function instead.
2946 (sqrt<mode>2): New expansion and insn definitions.
2947 * config/aarch64/aarch64.md: Likewise.
2948 * config/aarch64/aarch64.opt
2949 (mlow-precision-sqrt): Add new option description.
2950 * doc/invoke.texi (mlow-precision-sqrt): Likewise.
2951
2952 2016-06-13 Evandro Menezes <e.menezes@samsung.com>
2953
2954 [AArch64] Add more choices for the reciprocal square root approximation
2955
2956 Allow a target to prefer such operation depending on the operation mode.
2957
2958 * config/aarch64/aarch64-protos.h
2959 (AARCH64_APPROX_MODE): New macro.
2960 (AARCH64_APPROX_{NONE,ALL}): Likewise.
2961 (cpu_approx_modes): New structure.
2962 (tune_params): New member "approx_modes".
2963 * config/aarch64/aarch64-tuning-flags.def
2964 (AARCH64_EXTRA_TUNE_APPROX_RSQRT): Remove macro.
2965 * config/aarch64/aarch64.c
2966 (generic_approx_modes): New core "cpu_approx_modes" structure.
2967 (exynosm1_approx_modes): Likewise.
2968 (xgene1_approx_modes): Likewise.
2969 (generic_tunings): New member "approx_modes".
2970 (cortexa35_tunings): Likewise.
2971 (cortexa53_tunings): Likewise.
2972 (cortexa57_tunings): Likewise.
2973 (cortexa72_tunings): Likewise.
2974 (exynosm1_tunings): Likewise.
2975 (thunderx_tunings): Likewise.
2976 (xgene1_tunings): Likewise.
2977 (use_rsqrt_p): New argument for the mode and use new member from
2978 "tune_params".
2979 (aarch64_builtin_reciprocal): Devise mode from builtin.
2980 (aarch64_optab_supported_p): New argument for the mode.
2981 * doc/invoke.texi (-mlow-precision-recip-sqrt): Reword description.
2982
2983 2016-06-13 Kelvin Nilsen <kelvin@gcc.gnu.org>
2984
2985 * config/rs6000/rs6000.h (RS6000_BTM_COMMON): Add the
2986 RS6000_BTM_MODULO flag into the set of flags that are considered
2987 to be part of the common configuration.
2988
2989 2016-06-13 Kelvin Nilsen <kelvin@gcc.gnu.org>
2990
2991 * config/rs6000/altivec.h (vec_absd): New macro for vector absolute
2992 difference unsigned.
2993 (vec_absdb): New macro for vector absolute difference unsigned
2994 byte.
2995 (vec_absdh): New macro for vector absolute difference unsigned
2996 half-word.
2997 (vec_absdw): New macro for vector absolute difference unsigned word.
2998 * config/rs6000/altivec.md (UNSPEC_VADU): New value.
2999 (vadu<mode>3): New insn.
3000 (*p9_vadu<mode>3): New insn.
3001 * config/rs6000/rs6000-builtin.def (vadub): New built-in
3002 definition.
3003 (vaduh): New built-in definition.
3004 (vaduw): New built-in definition.
3005 (vadu): New overloaded built-in definition.
3006 (vadub): New overloaded built-in definition.
3007 (vaduh): New overloaded built-in definition.
3008 (vaduw): New overloaded built-in definition.
3009 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
3010 overloaded vector absolute difference unsigned functions.
3011 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
3012 the ISA 3.0 vector absolute difference unsigned built-in functions.
3013
3014 2016-06-13 Eric Botcazou <ebotcazou@adacore.com>
3015
3016 * tree-ssa-sccvn.c (vn_reference_lookup_3): Use a uniform test and
3017 update shared_lookup_references only once after changing operands.
3018
3019 2016-06-13 Thomas Schwinge <thomas@codesourcery.com>
3020
3021 PR middle-end/71373
3022 * tree-nested.c (convert_nonlocal_omp_clauses)
3023 (convert_local_omp_clauses): Document missing OMP_CLAUSE_*.
3024
3025 * tree-cfg.c (edge_to_cases_cleanup): Fix CASE_CHAIN typo.
3026 * tree.def (CASE_LABEL_EXPR): Likewise.
3027
3028 2016-06-13 Bernd Edlinger <bernd.edlinger@hotmail.de>
3029
3030 PR bootstrap/71481
3031 * input.c (test_builtins): Fix an assertion.
3032
3033 2016-06-13 Uros Bizjak <ubizjak@gmail.com>
3034
3035 * config/i386/i386.md (paritydi2): Use ix86_expand_setcc.
3036 (paritysi2): Ditto.
3037 (isinfxf2): Ditto.
3038 (isinf<mode>2): Ditto.
3039
3040 2016-06-13 Uros Bizjak <ubizjak@gmail.com>
3041
3042 * ggc-tests.c (test_finalization): Only test need_finalization_p
3043 for GCC_VERSION >= 4003.
3044
3045 2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3046
3047 * config/s390/vecintrin.h: Fix file description in comment.
3048
3049 2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3050
3051 * config/s390/s390-builtin-types.def: Change builtin type naming
3052 scheme to match builtin-types.def.
3053
3054 2016-06-13 Marc Glisse <marc.glisse@inria.fr>
3055
3056 * fold-const.c (optimize_minmax_comparison): Remove.
3057 (fold_comparison): Remove call to the above.
3058 * match.pd (MIN (X, Y) == X, MIN (X, 5) == 0, MIN (X, C1) < C2):
3059 New transformations.
3060
3061 2016-06-13 Alan Hayward <alan.hayward@arm.com>
3062
3063 PR tree-optimization/71416
3064 * tree-vect-loop.c (vectorizable_live_operation): Let worklist have
3065 multiple entries
3066
3067 2016-06-13 Martin Liska <mliska@suse.cz>
3068
3069 * predict.c (enum predictor_reason): Prefix enum with REASON_.
3070 (combine_predictions_for_insn): Likewise.
3071 (prune_predictions_for_bb): Likewise.
3072 (combine_predictions_for_bb): Likewise.
3073
3074 2016-06-13 Richard Biener <rguenther@suse.de>
3075
3076 PR tree-optimization/71505
3077 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Make
3078 assert match comment.
3079
3080 2016-06-13 Marek Polacek <polacek@redhat.com>
3081
3082 PR middle-end/71476
3083 * gimplify.c (maybe_warn_switch_unreachable): Factored out of
3084 gimplify_switch_expr.
3085 (warn_switch_unreachable_r): New function.
3086
3087 2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3088
3089 PR target/71379
3090 * config/s390/s390.c (s390_expand_builtin): Increase MAX_ARGS by
3091 one.
3092
3093 2016-06-13 Richard Biener <rguenther@suse.de>
3094
3095 PR middle-end/64516
3096 * fold-const.c (fold_unary_loc): Preserve alignment when
3097 folding a VIEW_CONVERT_EXPR into a MEM_REF.
3098
3099 2016-06-13 Martin Liska <mliska@suse.cz>
3100
3101 PR sanitizer/71458
3102 * toplev.c (process_options): Do not enable -fcheck-pointer-bounds
3103 w/ -fsanitize=bounds.
3104
3105 2016-06-12 Uros Bizjak <ubizjak@gmail.com>
3106
3107 * config/i386/i386.c (ix86_init_builtins): Calculate
3108 FLOAT128_FTYPE_CONST_STRING function type only once.
3109 * doc/extend.texi (x86 Built-in Functions): Update text, __float128
3110 built-in functions are available for x86-32 and x86-64 targets.
3111
3112 2016-06-12 Uros Bizjak <ubizjak@gmail.com>
3113
3114 PR target/71241
3115 * config/i386/i386.i386-builtin-types.def (CONST_STRING):
3116 New primitive type.
3117 (FLOAT128_FTYPE_CONST_STRING): New function type.
3118 * config/i386/i386.c (enum ix86_builtins) [IX86_BUILTIN_NANQ]: New.
3119 [IX86_BUILTIN_NANSQ]: Ditto.
3120 (ix86_fold_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
3121 (ix86_init_builtin_types): Declare const_string_type_node.
3122 (ix86_init_builtins): Add __builtin_nanq and __builtin_nansq
3123 builtin functions.
3124 (ix86_expand_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
3125 * doc/extend.texi (x86 Built-in Functions): Document
3126 __builtin_nanq and __builtin_nansq.
3127
3128 2016-06-11 Jiong Wang <jiong.wang@arm.com>
3129
3130 PR target/71061
3131 * config/arm/arm-protos.h (arm_attr_length_pop_multi): New declaration.
3132 * config/arm/arm.c (arm_attr_length_pop_multi): New function to return
3133 length for pop patterns.
3134 (arm_attr_length_push_multi): Update comments.
3135 * config/arm/arm.md (*load_multiple_with_writeback): Set "length"
3136 attribute.
3137 (*pop_multiple_with_writeback_and_return): Likewise.
3138 (*pop_multiple_with_return): Likewise.
3139
3140 2016-06-11 Segher Boessenkool <segher@kernel.crashing.org>
3141
3142 PR middle-end/71310
3143 * fold-const.c (optimize_bit_field_compare): Don't try to use
3144 word_mode unconditionally for reading the bit field, look at
3145 DECL_BIT_FIELD_REPRESENTATIVE instead.
3146
3147 2016-06-11 Kugan Vivekanandarajah <kuganv@linaro.org>
3148
3149 PR middle-end/71478
3150 * tree-ssa-reassoc.c (reassociate_bb): Remove (-1) from ops list for
3151 vector integer type.
3152
3153 2016-06-10 Jakub Jelinek <jakub@redhat.com>
3154
3155 PR middle-end/71494
3156 * tree-nested.c (convert_nonlocal_reference_stmt): For GIMPLE_GOTO
3157 without LABEL_DECL, set *handled_ops_p to false instead of true.
3158
3159 2016-06-10 Martin Sebor <msebor@redhat.com>
3160
3161 PR c/71392
3162 * builtin-attrs.def (ATTR_NOTHROW_NONNULL_LEAF_LIST): New macro.
3163 (ATTR_NOTHROW_NONNULL_TYPEGENERIC_LEAF): Same.
3164 * builtins.def (BUILT_IN_SADD_OVERFLOW, BUILT_IN_SADDL_OVERFLOW): Use
3165 them.
3166 (BUILT_IN_SADDLL_OVERFLOW, BUILT_IN_SSUB_OVERFLOW): Same.
3167 (BUILT_IN_SSUBL_OVERFLOW, BUILT_IN_SSUBLL_OVERFLOW): Same.
3168 (BUILT_IN_SMUL_OVERFLOW, BUILT_IN_SMULL_OVERFLOW): Same.
3169 (BUILT_IN_SMULLL_OVERFLOW, BUILT_IN_UADD_OVERFLOW): Same.
3170 (BUILT_IN_UADDL_OVERFLOW, BUILT_IN_UADDLL_OVERFLOW): Same.
3171 (BUILT_IN_USUB_OVERFLOW, BUILT_IN_USUBL_OVERFLOW): Same.
3172 (BUILT_IN_USUBLL_OVERFLOW, BUILT_IN_UMUL_OVERFLOW): Same.
3173 (BUILT_IN_UMULL_OVERFLOW, BUILT_IN_UMULLL_OVERFLOW): Same.
3174
3175 2016-06-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
3176
3177 * config/arm/arm.h (pool_vector_label,
3178 return_used_this_function): Remove.
3179
3180 2016-06-10 Jeff Law <law@redhat.com>
3181
3182 PR tree-optimization/71335
3183 * tree-ssa-threadbackward.c (profitable_jump_thread_path): Filter out
3184 zero length paths here.
3185 (convert_and_register_jump_thread_path): Remove hacks related to
3186 duplicated blocks in the jump thread path.
3187 (fsm_find_control_statement_thread_paths): Avoid putting the same
3188 block on the thread path twice, but ensure the thread path is
3189 unchanged from the caller's point of view.
3190
3191 2016-06-10 Jan Hubicka <hubicka@ucw.cz>
3192
3193 * predict.c (predict_loops): Remove PRED_LOOP_BRANCH.
3194 * predict.def (PRED_LOOP_BRANCH): Remove.
3195
3196 2016-06-10 David Malcolm <dmalcolm@redhat.com>
3197
3198 * Makefile.in (OBJS): Add ggc-tests.o.
3199 (GTFILES): Add ggc-tests.c.
3200 * ggc-tests.c: New file.
3201 * selftest-run-tests.c (selftest::run_tests): Call
3202 selftest::ggc_tests_c_tests.
3203 * selftest.h (selftest::ggc_tests_c_tests): New prototype.
3204
3205 2016-06-10 Alexander Monakov <amonakov@ispras.ru>
3206
3207 * match.pd (-1 / B < A): Use :c to avoid pattern duplication.
3208
3209 2016-06-10 Maxim Ostapenko <m.ostapenko@samsung.com>
3210
3211 PR sanitizer/71480
3212 * varasm.c (place_block_symbol): Adjust alignment for asan protected
3213 STRING_CSTs even if TREE_CONSTANT_POOL_ADDRESS_P.
3214
3215 2016-06-10 Jan Hubicka <hubicka@ucw.cz>
3216
3217 * profile.c: Include cfgloop.h.
3218 (branch_prob): Compute estimated number of iterations.
3219 * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Do not
3220 recompute estimate number of iterations from profile.
3221
3222 2016-06-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
3223
3224 PR inline-asm/68843
3225 * reg-stack.c (check_asm_stack_operands): Explicit input arguments
3226 must be grouped on top of stack. Don't force early clobber
3227 on ordinary reg outputs.
3228
3229 2016-06-10 Richard Biener <rguenther@suse.de>
3230
3231 * targhooks.c (default_builtin_vectorization_cost): Adjust
3232 vec_construct cost.
3233
3234 2016-06-10 Richard Biener <rguenther@suse.de>
3235
3236 * gimple-fold.c (gimple_fold_builtin_memory_op): Make sure
3237 to fold the RHS to a constant if possible.
3238
3239 2016-06-10 Thomas Schwinge <thomas@codesourcery.com>
3240
3241 PR middle-end/71373
3242 * tree-nested.c (convert_nonlocal_omp_clauses)
3243 (convert_local_omp_clauses): Handle OMP_CLAUSE_ASYNC,
3244 OMP_CLAUSE_WAIT, OMP_CLAUSE_INDEPENDENT, OMP_CLAUSE_AUTO,
3245 OMP_CLAUSE__CACHE_, OMP_CLAUSE_TILE.
3246
3247 * gimplify.c (gimplify_adjust_omp_clauses): Discard
3248 OMP_CLAUSE_TILE.
3249 * omp-low.c (scan_sharing_clauses): Don't expect OMP_CLAUSE_TILE.
3250
3251 * omp-low.c (scan_sharing_clauses): Don't expect
3252 OMP_CLAUSE__CACHE_.
3253
3254 2016-06-10 Alan Hayward <alan.hayward@arm.com>
3255
3256 PR tree-optimization/71407
3257 PR tree-optimization/71416
3258 * tree-vect-loop.c (vectorizable_live_operation): Use vectype for
3259 BIT_FIELD_REF type.
3260
3261 2016-06-10 Richard Biener <rguenther@suse.de>
3262
3263 PR middle-end/71477
3264 * cfgloop.c (alloc_loop): Initialize nb_iterations_likely_upper_bound.
3265
3266 2016-06-09 Eric Botcazou <ebotcazou@adacore.com>
3267
3268 * df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.
3269
3270 2016-06-09 Vladimir Makarov <vmakarov@redhat.com>
3271 Jiong Wang <jiong.wang@arm.com>
3272
3273 PR rtl-optimization/70751
3274 * lra-constraints.c (process_alt_operands): Recognize Non-pseudo
3275 spilled into memory.
3276
3277 2016-06-09 Jonathan Yong <10walls@gmail.com>
3278
3279 Revert:
3280 2015-09-21 Jonathan Yong <10walls@gmail.com>
3281
3282 * config/i386/cygwin.h (STARTFILE_SPEC): Explicitly search
3283 sysroot/usr/lib/32api for additional win32 libraries,
3284 fixes failing Cygwin bootstrapping.
3285
3286 2016-06-09 Marcin Baczyński <marbacz@gmail.com>
3287
3288 * diagnostic.h (diagnostic_line_cutoff, diagnostic_flush_buffer):
3289 Delete.
3290
3291 2016-06-09 David Malcolm <dmalcolm@redhat.com>
3292
3293 PR bootstrap/71471
3294 * pretty-print.c (pp_indent): Specify that %p is printed in a
3295 host-dependent manner.
3296 (test_pp_format): Remove the test for %p.
3297
3298 2016-06-09 Maciej W. Rozycki <macro@imgtec.com>
3299
3300 * config/mips/mips.c (mips_output_jump): Fix formatting.
3301
3302 2016-06-09 Richard Biener <rguenther@suse.de>
3303
3304 PR tree-optimization/71462
3305 * tree-ssa-loop-manip.c (find_uses_to_rename): Guard against
3306 removed blocks.
3307
3308 2016-06-09 Martin Liska <mliska@suse.cz>
3309
3310 * predict.c (dump_prediction): Add new argument.
3311 (enum predictor_reason): New enum.
3312 (struct predictor_hash): New struct.
3313 (predictor_hash::hash): New function.
3314 (predictor_hash::equal): Likewise.
3315 (not_removed_prediction_p): New function.
3316 (prune_predictions_for_bb): Likewise.
3317 (combine_predictions_for_bb): Prune predictions.
3318
3319 2016-06-09 Martin Liska <mliska@suse.cz>
3320
3321 * predict.c (filter_predictions): New function.
3322 (remove_predictions_associated_with_edge): Use the filter
3323 function.
3324 (equal_edge_p): New function.
3325
3326 2016-06-09 Stefan Bruens <stefan.bruens@rwth-aachen.de>
3327
3328 * doc/invoke.texi (ARM Options): Use lexicographical ordering.
3329 Correct usage of @samp vs @option, add @samp where appropriate.
3330 Add -march={armv6k,armv6z,arm6zk}, remove -march=ep9312.
3331 Add armv6s-m and document it, as it is no official ARM name.
3332
3333 2016-06-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3334
3335 * ifcvt.c (struct noce_if_info): Add transform_name field.
3336 (noce_try_move): Set if_info->transform_name to the function name.
3337 (noce_try_ifelse_collapse): Likewise.
3338 (noce_try_store_flag): Likewise.
3339 (noce_try_inverse_constants): Likewise.
3340 (noce_try_store_flag_constants): Likewise.
3341 (noce_try_addcc): Likewise.
3342 (noce_try_store_flag_mask): Likewise.
3343 (noce_try_cmove): Likewise.
3344 (noce_try_cmove_arith): Likewise.
3345 (noce_try_minmax): Likewise.
3346 (noce_try_abs): Likewise.
3347 (noce_try_sign_mask): Likewise.
3348 (noce_try_bitop): Likewise.
3349 (noce_convert_multiple_sets): Likewise.
3350 (noce_process_if_block): Print if_info->transform_name to
3351 dump_file if transformation succeeded.
3352
3353 2016-06-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3354
3355 * config/arm/cortex-a57.md (cortex_a57_alu):
3356 Handle csel type.
3357
3358 2016-06-08 Martin Sebor <msebor@redhat.com>
3359 Jakub Jelinek <jakub@redhat.com>
3360
3361 PR c++/70507
3362 PR c/68120
3363 * builtins.def (BUILT_IN_ADD_OVERFLOW_P, BUILT_IN_SUB_OVERFLOW_P,
3364 BUILT_IN_MUL_OVERFLOW_P): New builtins.
3365 * builtins.c: Include gimple-fold.h.
3366 (fold_builtin_arith_overflow): Handle
3367 BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
3368 (fold_builtin_3): Likewise.
3369 * doc/extend.texi (Integer Overflow Builtins): Document
3370 __builtin_{add,sub,mul}_overflow_p.
3371
3372 2016-06-08 Jose E. Marchesi <jose.marchesi@oracle.com>
3373
3374 * config/sparc/driver-sparc.c (cpu_names): Fix the entry for the
3375 SPARC-M7 and add an entry for SPARC-S7 cpus (Sonoma).
3376
3377 2016-06-08 Alan Lawrence <alan.lawrence@arm.com>
3378
3379 * config/aarch64/aarch64.c (aarch64_function_arg_alignment):
3380 Rewrite, looking one level down for records and arrays.
3381
3382 2016-06-08 David Malcolm <dmalcolm@redhat.com>
3383
3384 * pretty-print.c: Include "selftest.h".
3385 (pp_format): Fix comment.
3386 (identifier_to_locale): Likewise.
3387 (selftest::test_basic_printing): New function.
3388 (selftest::assert_pp_format): New function.
3389 (selftest::test_pp_format): New function.
3390 (selftest::pretty_print_c_tests): New function.
3391 * selftest-run-tests.c (selftest::run_tests): Call
3392 selftest::pretty_print_c_tests.
3393 * selftest.h (pretty_print_c_tests): New declaration.
3394
3395 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
3396
3397 * invoke.texi (max-loop-headers-insns): Document.
3398 * params.def (PARAM_MAX_LOOP_HEADER_INSNS): New.
3399 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Update comment.
3400 (ch_base::copy_headers): Use PARAM_MAX_LOOP_HEADER_INSNS.
3401
3402 2016-06-08 Richard Biener <rguenther@suse.de>
3403
3404 * tree-vect-stmts.c (vectorizable_load): Remove restrictions
3405 on strided SLP loads and fall back to scalar loads in case
3406 we can't chunk them.
3407
3408 2016-06-08 Richard Biener <rguenther@suse.de>
3409
3410 PR tree-optimization/71452
3411 * tree-ssa.c (non_rewritable_lvalue_p): Make sure that the
3412 type used for the SSA rewrite has enough precision to cover
3413 the dynamic type of the location.
3414
3415 2016-06-08 Jakub Jelinek <jakub@redhat.com>
3416 Richard Biener <rguenther@suse.de>
3417
3418 PR c++/71448
3419 * fold-const.c (fold_comparison): Handle CONSTANT_CLASS_P (base0)
3420 the same as DECL_P (base0) for indirect_base0. Use equality_code
3421 in one further place.
3422
3423 2016-06-08 Richard Sandiford <richard.sandiford@arm.com>
3424
3425 * expmed.c (store_bit_field_1): Do not restrict a multiword op0
3426 to one word if the field is known to overlap other words.
3427 (extract_bit_field_1): Likewise.
3428 (store_split_bit_field): Remove compensating code.
3429 (extract_split_bit_field): Likewise.
3430
3431 2016-06-08 Bernd Schmidt <bschmidt@redhat.com>
3432
3433 PR debug/71432
3434 PR ada/71413
3435 * tree-ssa-strlen.c (handle_builtin_memcmp): Ignore debug insns.
3436
3437 2016-06-08 Jiong Wang <jiong.wang@arm.com>
3438
3439 * config/aarch64/aarch64-builtins.def (faddp): New builtins for modes in
3440 VDQF.
3441 * config/aarch64/aarch64-simd.md (aarch64_faddp<mode>): New.
3442 (arch64_addpv4sf): Delete.
3443 (reduc_plus_scal_v4sf): Use "gen_aarch64_faddpv4sf" instead of
3444 "gen_aarch64_addpv4sf".
3445 * config/aarch64/arm_neon.h (vpadd_f32): Remove inline assembly. Use
3446 builtin.
3447 (vpadds_f32): Likewise.
3448 (vpaddq_f32): Likewise.
3449 (vpaddq_f64): Likewise.
3450
3451 2016-06-08 Jiong Wang <jiong.wang@arm.com>
3452
3453 * config/aarch64/aarch64-builtins.def (fabd): New builtins for modes
3454 VALLF.
3455 * config/aarch64/aarch64-simd.md (fabd<mode>_3): Extend modes from VDQF
3456 to VALLF. Rename to "fabd<mode>3".
3457 "*fabd_scalar<mode>3): Delete.
3458 * config/aarch64/arm_neon.h (vabds_f32): Remove inline assembly.
3459 Use builtin.
3460 (vabdd_f64): Likewise.
3461 (vabd_f32): Likewise.
3462 (vabd_f64): Likewise.
3463 (vabdq_f32): Likewise.
3464 (vabdq_f64): Likewise.
3465
3466 2016-06-08 Jiong Wang <jiong.wang@arm.com>
3467
3468 * config/aarch64/aarch64-builtins.def (rsqrts): New builtins for modes
3469 VALLF.
3470 * config/aarch64/aarch64-simd.md (aarch64_rsqrts_<mode>3): Rename to
3471 "aarch64_rsqrts<mode>".
3472 * config/aarch64/aarch64.c (get_rsqrts_type): Update gen* name.
3473 * config/aarch64/arm_neon.h (vrsqrtss_f32): Remove inline assembly. Use
3474 builtin.
3475 (vrsqrtsd_f64): Likewise.
3476 (vrsqrts_f32): Likewise.
3477 (vrsqrts_f64): Likewise.
3478 (vrsqrtsq_f32): Likewise.
3479 (vrsqrtsq_f64): Likewise.
3480
3481 2016-06-08 Jiong Wang <jiong.wang@arm.com>
3482
3483 * config/aarch64/aarch64-builtins.def (rsqrte): New builtins for modes
3484 VALLF.
3485 * config/aarch64/aarch64-simd.md (aarch64_rsqrte_<mode>2): Rename to
3486 "aarch64_rsqrte<mode>".
3487 * config/aarch64/aarch64.c (get_rsqrte_type): Update gen* name.
3488 * config/aarch64/arm_neon.h (vrsqrts_f32): Remove inline assembly. Use
3489 builtin.
3490 (vrsqrted_f64): Likewise.
3491 (vrsqrte_f32): Likewise.
3492 (vrsqrte_f64): Likewise.
3493 (vrsqrteq_f32): Likewise.
3494 (vrsqrteq_f64): Likewise.
3495
3496 2016-06-08 Jiong Wang <jiong.wang@arm.com>
3497
3498 * config/aarch64/aarch64-builtins.def (scvtf): Register vector modes.
3499 (ucvtf): Likewise.
3500 (fcvtzs): Likewise.
3501 (fcvtzu): Likewise.
3502 * config/aarch64/aarch64-simd.md
3503 (<FCVT_F2FIXED:fcvt_fixed_insn><VDQF:mode>3): New.
3504 (<FCVT_FIXED2F:fcvt_fixed_insn><VDQ_SDI:mode>3): Likewise.
3505 * config/aarch64/arm_neon.h (vcvt_n_f32_s32): Remove inline assembly.
3506 Use builtin.
3507 (vcvt_n_f32_u32): Likewise.
3508 (vcvt_n_s32_f32): Likewise.
3509 (vcvt_n_u32_f32): Likewise.
3510 (vcvtq_n_f32_s32): Likewise.
3511 (vcvtq_n_f32_u32): Likewise.
3512 (vcvtq_n_f64_s64): Likewise.
3513 (vcvtq_n_f64_u64): Likewise.
3514 (vcvtq_n_s32_f32): Likewise.
3515 (vcvtq_n_s64_f64): Likewise.
3516 (vcvtq_n_u32_f32): Likewise.
3517 (vcvtq_n_u64_f64): Likewise.
3518 * config/aarch64/iterators.md (VDQ_SDI): New mode iterator.
3519 (VSDQ_SDI): Likewise.
3520 (fcvt_target): Support V4DI, V4SI and V2SI.
3521 (FCVT_TARGET): Likewise.
3522
3523 2016-06-08 Jiong Wang <jiong.wang@arm.com>
3524
3525 * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New
3526 (TYPES_BINOP_SUS): Likewise.
3527 (aarch64_simd_builtin_data): Update include file name.
3528 (aarch64_builtins): Likewise.
3529 * config/aarch64/aarch64-simd-builtins.def (scvtf): New entries
3530 for conversion between scalar float-point and fixed-point.
3531 (ucvtf): Likewise.
3532 (fcvtzs): Likewise.
3533 (fcvtzu): Likewise.
3534 * config/aarch64/aarch64.md
3535 (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3: New
3536 pattern for conversion between scalar float to fixed-pointer.
3537 (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>: Likewise.
3538 (UNSPEC_FCVTZS): New UNSPEC enumeration.
3539 (UNSPEC_FCVTZU): Likewise.
3540 (UNSPEC_SCVTF): Likewise.
3541 (UNSPEC_UCVTF): Likewise.
3542 * config/aarch64/arm_neon.h (vcvtd_n_f64_s64): Remove inline assembly.
3543 Use builtin.
3544 (vcvtd_n_f64_u64): Likewise.
3545 (vcvtd_n_s64_f64): Likewise.
3546 (vcvtd_n_u64_f64): Likewise.
3547 (vcvtd_n_f32_s32): Likewise.
3548 (vcvts_n_f32_u32): Likewise.
3549 (vcvtd_n_s32_f32): Likewise.
3550 (vcvts_n_u32_f32): Likewise.
3551 * config/aarch64/iterators.md (fcvt_target): Support integer to float
3552 mapping.
3553 (FCVT_TARGET): Likewise.
3554 (FCVT_FIXED2F): New iterator.
3555 (FCVT_F2FIXED): Likewise.
3556 (fcvt_fixed_insn): New define_int_attr.
3557
3558 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
3559
3560 * predict.c (pass_strip_predict_hints::execute): Cleanup CFG if
3561 some statements was removed.
3562
3563 2016-06-08 Alan Hayward <alan.hayward@arm.com>
3564
3565 * tree-vect-data-refs.c (vect_analyze_data_refs): Remove debug newline.
3566 * tree-vect-loop-manip.c (slpeel_make_loop_iterate_ntimes): likewise.
3567 (vect_can_advance_ivs_p): likewise.
3568 (vect_update_ivs_after_vectorizer): likewise.
3569 * tree-vect-loop.c (vect_determine_vectorization_factor): likewise.
3570 (vect_analyze_scalar_cycles_1): likewise.
3571 (vect_analyze_loop_operations): likewise.
3572 (report_vect_op): likewise.
3573 (vect_is_slp_reduction): likewise.
3574 (vect_is_simple_reduction): likewise.
3575 (get_initial_def_for_induction): likewise.
3576 (vect_transform_loop): likewise.
3577 * tree-vect-patterns.c (vect_recog_dot_prod_pattern): likewise.
3578 (vect_recog_sad_pattern): likewise.
3579 (vect_recog_widen_sum_pattern): likewise.
3580 (vect_recog_widening_pattern): likewise.
3581 (vect_recog_divmod_pattern): likewise.
3582 * tree-vect-slp.c (vect-build-slp_tree_1): likewise.
3583 (vect_analyze_slp_instance): likewise.
3584 (vect_transform_slp_perm_load): likewise.
3585 (vect_schedule_slp_instance): likewise.
3586
3587 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
3588
3589 * predict.c (predict_iv_comparison): Mention that heuristics is broken.
3590 (return_prediction): PRED_CONST_RETURN predict return as not taken.
3591 * predict.def (PRED_CONTINUE): Change hitrate 50->67
3592 (PRED_LOOP_BRANCH): Document predictor as broken.
3593 (PRED_LOOP_EXIT): Change hitrate 91->92.
3594 (PRED_LOOP_EXTRA_EXIT): Change hitrate 91->83.
3595 (PRED_POINTER, PRED_TREE_POINTER): Change hitrate 85->70.
3596 (PRED_OPCODE_POSITIVE): Change hitrate 79->64.
3597 (PRED_OPCODE_NONEQUAL): Change hitrate 91->66.
3598 (PRED_TREE_OPCODE_POSITIVE): Change hitrate 73->64
3599 (PRED_TREE_OPCODE_NONEQUAL): Chnage hitrate 72->66
3600 (PRED_CALL): Chane hitrate 71->67.
3601 (PRED_TREE_EARLY_RETURN): Document issues, change hitrate 61->54.
3602 (PRED_GOTO): Document as unused right now.
3603 (PRED_CONST_RETURN): Change hitrate 67->69
3604 (PRED_NEGATIVE_RETURN): Change hitrate 96->98
3605 (PRED_NULL_RETURN): Change hitrate 91->90.
3606 (PRED_LOOP_IV_COMPARE_GUESS): Change hitrate to 98.
3607 (PRED_FORTRAN_FAIL_ALLOC): Change hitrate to 62; document issues.
3608 (PRED_FORTRAN_SIZE_ZERO): Change hitrate to 99.
3609
3610 2016-06-07 Bill Seurer <seurer@linux.vnet.ibm.com>
3611
3612 * config/rs6000/altivec.h: Add __builtin_vec_mul.
3613 * config/rs6000/rs6000-builtin.def (vec_mul): Change vec_mul to a
3614 special case Altivec builtin.
3615 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
3616 VSX_BUILTIN_VEC_MUL (replaced with special case code).
3617 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
3618 code for ALTIVEC_BUILTIN_VEC_MUL.
3619 * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
3620 for __builtin_vec_mul.
3621
3622 2016-06-07 Peter Bergner <bergner@vnet.ibm.com>
3623
3624 * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mhtm and
3625 -mno-htm.
3626
3627 2016-06-07 David Malcolm <dmalcolm@redhat.com>
3628
3629 * spellcheck.c (selftest::test_find_closest_string): New function.
3630 (spellcheck_c_tests): Call the above.
3631
3632 2016-06-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3633
3634 * simplify-rtx.c (simplify_cond_clz_ctz): Delete 'mode' local variable.
3635
3636 2016-06-07 Jakub Jelinek <jakub@redhat.com>
3637
3638 * config/i386/sse.md (avx_vec_concat<mode>): Add v=v,vm and
3639 Yv=Yv,C alternatives.
3640
3641 2016-06-07 Richard Biener <rguenther@suse.de>
3642
3643 PR c/61564
3644 * common.opt (ffast-math): Make Optimization.
3645
3646 2016-06-07 Simon Dardis <simon.dardis@imgtec.com>
3647 Prachi Godbole <prachi.godbole@imgtec.com>
3648
3649 * config/mips/p5600.md (p5600_fpu_fadd): Remove checking for
3650 `fabs' and `fneg' type attributes.
3651 (p5600_fpu_fabs): Add `fmove' to the comment.
3652
3653 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
3654
3655 * gimple.c: Include builtins.h
3656 (gimple_inexpensive_call_p): New function.
3657 * gimple.h (gimple_inexpensive_call_p): Declare.
3658 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Use it.
3659 * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Likewise;
3660 fix formatting.
3661
3662 2016-06-07 Paolo Carlini <paolo.carlini@oracle.com>
3663
3664 * diagnostic.c (diagnostic_impl, diagnostic_n_impl): New.
3665 (inform, inform_at_rich_loc, inform_n, warning, warning_at,
3666 warning_at_rich_loc, warning_n, pedwarn, permerror,
3667 permerror_at_rich_loc, error, error_n, error_at, error_at_rich_loc,
3668 sorry, fatal_error, internal_error, internal_error_no_backtrace):
3669 Use the above.
3670
3671 2016-06-07 Richard Biener <rguenther@suse.de>
3672
3673 PR tree-optimization/71428
3674 * tree-ssa-math-opts.c (perform_symbolic_merge): Properly distinguish
3675 BIT_FIELD_REF op vs. load.
3676
3677 2016-06-07 Richard Biener <rguenther@suse.de>
3678
3679 PR middle-end/71423
3680 * match.pd ((X | ~Y) -> Y <= X): Properly invert the comparison
3681 for signed ops.
3682
3683 2016-06-06 John David Anglin <danglin@gcc.gnu.org>
3684
3685 * config/pa/pa.md (call): Generate indirect long calls to non-local
3686 functions on TARGET_64BIT.
3687 (call_value): Likewise.
3688
3689 2016-06-06 John David Anglin <danglin@gcc.gnu.org>
3690
3691 * config/pa/pa.md (call_val_reg_64bit): Remove "reg: DI " clobber from
3692 pattern and subsequent splitters.
3693 (call_val_reg_64bit_post_reload): Likewise.
3694
3695 2016-06-07 Kugan Vivekanandarajah <kuganv@linaro.org>
3696
3697 PR middle-end/71408
3698 * tree-ssa-reassoc.c (zero_one_operation): Fix NEGATE_EXPR operand for
3699 propagate_op_to_single_use.
3700
3701 2016-06-07 Kugan Vivekanandarajah <kuganv@linaro.org>
3702
3703 PR middle-end/71281
3704 * tree-ssa-reassoc.c (reassociate_bb): Set uid for negate stmt.
3705
3706 2016-06-07 Uros Bizjak <ubizjak@gmail.com>
3707
3708 * config/i386/i386.h (enum ix86_enitity): Add X86_DIRFLAG.
3709 (enum x86_dirflag_state): New enum.
3710 (NUM_MODES_FOR_MODE_SWITCHING): Add X86_DIRFLAG_ANY.
3711 (machine_function): Remove needs_cld.
3712 (ix86_current_function_needs_cld): Remove.
3713 * config/i386/i386.c (ix86_set_func_type): Set
3714 ix86_optimize_mode_switching[X86_DIRFLAG] to 1.
3715 (ix86_expand_prologue): Do not emit CLD here.
3716 (ix86_dirflag_mode_needed): New function.
3717 (ix86_dirflag_mode_entry): Ditto.
3718 (ix86_mode_needed): Handle X86_DIRFLAG entity.
3719 (ix86_mode_after): Ditto.
3720 (ix86_mode_entry): Ditto.
3721 (ix86_mode_exit): Ditto.
3722 (ix86_emit_mode_set): Ditto.
3723 * config/i386/i386.md (strmov_singleop): Set
3724 ix86_optimize_mode_switching[X86_DIRFLAG] to 1 for TARGET_CLD.
3725 Do not set ix86_current_function_needs_cld.
3726 (rep_mov): Ditto.
3727 (strset_singleop): Ditto.
3728 (rep_stos): Ditto.
3729 (cmpstrnqi_nz_1): Ditto.
3730 (cmpstrnqi_1): Ditto.
3731 (strlenqi_1): Ditto.
3732
3733 2016-06-06 Jakub Jelinek <jakub@redhat.com>
3734
3735 PR tree-optimization/71259
3736 * tree-vect-slp.c (vect_get_constant_vectors): For
3737 VECTOR_BOOLEAN_TYPE_P, return all ones constant instead of
3738 one for constant op, and use COND_EXPR for non-constant.
3739
3740 2016-06-06 David Malcolm <dmalcolm@redhat.com>
3741
3742 * Makefile.in (OBJS): Add function-tests.o,
3743 hash-map-tests.o, hash-set-tests.o, rtl-tests.o,
3744 selftest-run-tests.o.
3745 (OBJS-libcommon): Add selftest.o.
3746 (OBJS-libcommon-target): Add selftest.o.
3747 (all.internal): Add "selftest".
3748 (all.cross): Likewise.
3749 (selftest): New phony target.
3750 (s-selftest): New target.
3751 (selftest-gdb): New phony target.
3752 (COLLECT2_OBJS): Add selftest.o.
3753 * bitmap.c: Include "selftest.h".
3754 (selftest::test_gc_alloc): New function.
3755 (selftest::test_set_range): New function.
3756 (selftest::test_clear_bit_in_middle): New function.
3757 (selftest::test_copying): New function.
3758 (selftest::test_bitmap_single_bit_set_p): New function.
3759 (selftest::bitmap_c_tests): New function.
3760 * common.opt (fself-test): New.
3761 * diagnostic-show-locus.c: Include "selftest.h".
3762 (make_range): New function.
3763 (test_range_contains_point_for_single_point): New function.
3764 (test_range_contains_point_for_single_line): New function.
3765 (test_range_contains_point_for_multiple_lines): New function.
3766 (assert_eq): New function.
3767 (test_get_line_width_without_trailing_whitespace): New function.
3768 (selftest::diagnostic_show_locus_c_tests): New function.
3769 * et-forest.c: Include "selftest.h".
3770 (selftest::test_single_node): New function.
3771 (selftest::test_simple_tree): New function.
3772 (selftest::test_disconnected_nodes): New function.
3773 (selftest::et_forest_c_tests): New function.
3774 * fold-const.c: Include "selftest.h".
3775 (selftest::assert_binop_folds_to_const): New function.
3776 (selftest::assert_binop_folds_to_nonlvalue): New function.
3777 (selftest::test_arithmetic_folding): New function.
3778 (selftest::fold_const_c_tests): New function.
3779 * function-tests.c: New file.
3780 * gimple.c: Include "selftest.h".
3781 Include "gimple-pretty-print.h".
3782 (selftest::verify_gimple_pp): New function.
3783 (selftest::test_assign_single): New function.
3784 (selftest::test_assign_binop): New function.
3785 (selftest::test_nop_stmt): New function.
3786 (selftest::test_return_stmt): New function.
3787 (selftest::test_return_without_value): New function.
3788 (selftest::gimple_c_tests): New function.
3789 * hash-map-tests.c: New file.
3790 * hash-set-tests.c: New file.
3791 * input.c: Include "selftest.h".
3792 (selftest::assert_loceq): New function.
3793 (selftest::test_accessing_ordinary_linemaps): New function.
3794 (selftest::test_unknown_location): New function.
3795 (selftest::test_builtins): New function.
3796 (selftest::test_reading_source_line): New function.
3797 (selftest::input_c_tests): New function.
3798 * rtl-tests.c: New file.
3799 * selftest-run-tests.c: New file.
3800 * selftest.c: New file.
3801 * selftest.h: New file.
3802 * spellcheck.c: Include "selftest.h".
3803 (selftest::levenshtein_distance_unit_test_oneway): New function,
3804 adapted from testsuite/gcc.dg/plugin/levenshtein_plugin.c.
3805 (selftest::levenshtein_distance_unit_test): Likewise.
3806 (selftest::spellcheck_c_tests): Likewise.
3807 * toplev.c: Include selftest.h.
3808 (toplev::run_self_tests): New.
3809 (toplev::main): Handle -fself-test.
3810 * toplev.h (toplev::run_self_tests): New.
3811 * tree.c: Include "selftest.h".
3812 (selftest::test_integer_constants): New function.
3813 (selftest::test_identifiers): New function.
3814 (selftest::test_labels): New function.
3815 (selftest::tree_c_tests): New function.
3816 * tree-cfg.c: Include "selftest.h".
3817 (selftest::push_fndecl): New function.
3818 (selftest::test_linear_chain): New function.
3819 (selftest::test_diamond): New function.
3820 (selftest::test_fully_connected): New function.
3821 (selftest::tree_cfg_c_tests): New function.
3822 * vec.c: Include "selftest.h".
3823 (selftest::safe_push_range): New function.
3824 (selftest::test_quick_push): New function.
3825 (selftest::test_safe_push): New function.
3826 (selftest::test_truncate): New function.
3827 (selftest::test_safe_grow_cleared): New function.
3828 (selftest::test_pop): New function.
3829 (selftest::test_safe_insert): New function.
3830 (selftest::test_ordered_remove): New function.
3831 (selftest::test_unordered_remove): New function.
3832 (selftest::test_block_remove): New function.
3833 (selftest::reverse_cmp): New function.
3834 (selftest::test_qsort): New function.
3835 (selftest::vec_c_tests): New function.c.
3836 * wide-int.cc: Include selftest.h and wide-int-print.h.
3837 (selftest::from_int <wide_int>): New function.
3838 (selftest::from_int <offset_int>): New function.
3839 (selftest::from_int <widest_int>): New function.
3840 (selftest::assert_deceq): New function.
3841 (selftest::assert_hexeq): New function.
3842 (selftest::test_printing <VALUE_TYPE>): New function template.
3843 (selftest::test_ops <VALUE_TYPE>): New function template.
3844 (selftest::test_comparisons <VALUE_TYPE>): New function template.
3845 (selftest::run_all_wide_int_tests <VALUE_TYPE>): New function
3846 template.
3847 (selftest::wide_int_cc_tests): New function.
3848
3849 2016-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3850
3851 PR middle-end/37780
3852 * ifcvt.c (noce_try_ifelse_collapse): New function.
3853 Declare prototype.
3854 (noce_process_if_block): Call noce_try_ifelse_collapse.
3855 * simplify-rtx.c (simplify_cond_clz_ctz): New function.
3856 (simplify_ternary_operation): Use the above to simplify
3857 conditional CLZ/CTZ expressions.
3858
3859 2016-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3860
3861 PR middle-end/37780
3862 * config/aarch64/aarch64.md (ctz<mode>2): Convert to
3863 define_insn_and_split.
3864
3865 2016-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3866
3867 PR middle-end/37780
3868 * config/arm/arm.md (ctzsi2): Convert to define_insn_and_split.
3869
3870 2016-06-06 Bernd Edlinger <bernd.edlinger@hotmail.de>
3871
3872 PR c/24414
3873 * cfgexpand.c (expand_asm_loc): Remove handling for ADDR_EXPR.
3874 Implicitly clobber memory for basic asm with non-empty assembler
3875 string. Use targetm.md_asm_adjust also here.
3876 * compare-elim.c (arithmetic_flags_clobber_p): Use asm_noperands here.
3877 * final.c (final_scan_insn): Handle basic asm in PARALLEL block.
3878 * gimple.c (gimple_asm_clobbers_memory_p): Handle basic asm with
3879 non-empty assembler string.
3880 * ira.c (compute_regs_asm_clobbered): Use asm_noperands here.
3881 * recog.c (asm_noperands): Handle basic asm in PARALLEL block.
3882 (decode_asm_operands): Handle basic asm in PARALLEL block.
3883 (extract_insn): Handle basic asm in PARALLEL block.
3884 * doc/extend.texi: Mention new behavior of basic asm.
3885 * config/ia64/ia64 (rtx_needs_barrier): Handle ASM_INPUT here.
3886 * config/pa/pa.c (branch_to_delay_slot_p, branch_needs_nop_p,
3887 branch_needs_nop_p): Use asm_noperands.
3888
3889 2016-06-06 Jose E. Marchesi <jose.marchesi@oracle.com>
3890
3891 * config/sparc/sparc.md (cpu): Add niagara7 cpu type.
3892 Include the M7 SPARC DFA scheduler.
3893 New attribute v3pipe.
3894 Annotate insns with v3pipe where appropriate.
3895 Define cpu_feature vis4.
3896 Add lzd instruction type and set it on clzdi_sp64 and clzsi_sp64.
3897 Add (V8QI "8") to vbits.
3898 Add insns {add,sub}v8qi3
3899 Add insns ss{add,sub}v8qi3
3900 Add insns us{add,sub}{v8qi,v4hi}3
3901 Add insns {min,max}{v8qi,v4hi,v2si}3
3902 Add insns {minu,maxu}{v8qi,v4hi,v2si}3
3903 Add insns fpcmp{le,gt,ule,ug,ule,ugt}{8,16,32}_vis.
3904 * config/sparc/niagara4.md: Add a comment explaining the
3905 discrepancy between the documented latenty numbers and the
3906 implemented ones.
3907 * config/sparc/niagara7.md: New file.
3908 * configure.ac (HAVE_AS_SPARC5_VIS4): Define if the assembler
3909 supports SPARC5 and VIS 4.0 instructions.
3910 * configure: Regenerate.
3911 * config.in: Likewise.
3912 * config.gcc: niagara7 is a supported cpu in sparc*-*-* targets.
3913 * config/sparc/sol2.h (ASM_CPU32_DEFAUILT_SPEC): Set for
3914 TARGET_CPU_niagara7.
3915 (ASM_CPU64_DEFAULT_SPEC): Likewise.
3916 (CPP_CPU_SPEC): Handle niagara7.
3917 (ASM_CPU_SPEC): Likewise.
3918 * config/sparc/sparc-opts.h (processor_type): Add
3919 PROCESSOR_NIAGARA7.
3920 (mvis4): New option.
3921 * config/sparc/sparc.h (TARGET_CPU_niagara7): Define.
3922 (AS_NIAGARA7_FLAG): Define.
3923 (ASM_CPU64_DEFAULT_SPEC): Set for niagara7.
3924 (CPP_CPU64_DEFAULT_SPEC): Likewise.
3925 (CPP_CPU_SPEC): Handle niagara7.
3926 (ASM_CPU_SPEC): Likewise.
3927 * config/sparc/sparc.c (niagara7_costs): Define.
3928 (sparc_option_override): Handle niagara7 and adjust cache-related
3929 parameters with better values for niagara cpus. Also support VIS4.
3930 (sparc32_initialize_trampoline): Likewise.
3931 (sparc_use_sched_lookahead): Likewise.
3932 (sparc_issue_rate): Likewise.
3933 (sparc_register_move_cost): Likewise.
3934 (dump_target_flag_bits): Support VIS4.
3935 (sparc_vis_init_builtins): Likewise.
3936 (sparc_builtins): Likewise.
3937 * config/sparc/sparc-c.c (sparc_target_macros): Define __VIS__ for
3938 VIS4 4.0.
3939 * config/sparc/driver-sparc.c (cpu_names): Add SPARC-M7 and
3940 UltraSparc M7.
3941 * config/sparc/sparc.opt (sparc_processor_type): New value
3942 niagara7.
3943 * config/sparc/visintrin.h (__attribute__): Prototypes for the
3944 VIS4 builtins.
3945 * doc/invoke.texi (SPARC Options): Document -mcpu=niagara7 and
3946 -mvis4.
3947 * doc/extend.texi (SPARC VIS Built-in Functions): Document the
3948 VIS4 builtins.
3949
3950 2016-06-06 Jonathan Wakely <jwakely@redhat.com>
3951
3952 * doc/sourcebuild.texi (Directives): Remove extra closing braces.
3953
3954 2016-06-06 Richard Biener <rguenther@suse.de>
3955
3956 PR tree-optimization/71398
3957 * tree-ssa-loop-ivcanon.c (unloop_loops): First unloop, then
3958 remove edges.
3959
3960 2016-06-05 James Bowman <james.bowman@ftdichip.com>
3961
3962 * config/ft32/ft32.c (ft32_setup_incoming_varargs,
3963 ft32_expand_prolog, ft32_expand_epilogue):
3964 Handle pretend_args.
3965 * config/ft32/ft32.h: Remove OUTGOING_REG_PARM_STACK_SPACE.
3966 * config/ft32/ft32.md: Add pretend_returner.
3967
3968 2016-06-06 Uros Bizjak <ubizjak@gmail.com>
3969
3970 PR target/71389
3971 * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
3972 Copy op1 RTX to avoid invalid sharing.
3973 (ix86_expand_vector_move_misalign): Ditto.
3974
3975 2016-06-05 John David Anglin <danglin@gcc.gnu.org>
3976
3977 * expr.c (move_by_pieces_d::generate): Mark mode parameter with
3978 ATTRIBUTE_UNUSED.
3979
3980 2016-06-05 Jan Hubicka <hubicka@ucw.cz>
3981
3982 * predict.c (predicted_by_loop_heuristics_p): New function.
3983 (predict_iv_comparison): Use it.
3984 (predict_loops): Walk from innermost loops; do not predict edges
3985 leaving multiple loops multiple times; implement
3986 PRED_LOOP_ITERATIONS_MAX heuristics.
3987 * predict.def (PRED_LOOP_ITERATIONS_MAX): New predictor.
3988
3989 2016-06-05 Jan Hubicka <hubicka@ucw.cz>
3990
3991 * cfg.c (check_bb_profile): Do not report mismatched profiles when
3992 only edges out of BB are EH edges.
3993
3994 2016-06-04 Martin Sebor <msebor@redhat.com>
3995 Marcin Baczyński <marbacz@gmail.com>
3996
3997 PR c/48116
3998 * doc/invoke.texi (-Wreturn-type): Mention not warning on return with
3999 a void expression in a void function.
4000
4001 2016-06-03 Jan Hubicka <hubicka@ucw.cz>
4002
4003 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Do not check
4004 aux; dump reasons of decisions.
4005 (should_duplicate_loop_header_p): Likewise.
4006 (do_while_loop_p): Likewise.
4007 (ch_base::copy_headers): Dump asi num insns duplicated.
4008
4009 2016-06-04 Jakub Jelinek <jakub@redhat.com>
4010
4011 PR tree-optimization/71405
4012 * tree-ssa.c (execute_update_addresses_taken): For clobber with
4013 incompatible type, build a new clobber with the right type instead
4014 of building a VIEW_CONVERT_EXPR around it.
4015
4016 2016-06-04 Oleg Endo <olegendo@gcc.gnu.org>
4017
4018 PR tree-optimization/52171
4019 * config/sh/sh.c (sh_use_by_pieces_infrastructure_p): Use
4020 by_pieces_ninsns instead of move_by_pieces_ninsns.
4021
4022 2016-06-04 Oleg Endo <olegendo@gcc.gnu.org>
4023
4024 * config/sh/sh.c (sh_print_operand_address): Don't use hardcoded 'r0'
4025 for reg+reg addressing mode.
4026
4027 2016-06-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
4028
4029 * rs6000-c.c (c/c-tree.h): Add #include.
4030 (altivec_resolve_overloaded_builtin): Handle ARRAY_TYPE arguments
4031 in C++ when found in the base position of vec_ld or vec_st.
4032
4033 2016-06-03 Jan Hubicka <hubicka@ucw.cz>
4034
4035 * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Avoid
4036 use of profile unless profile status is PROFILE_READ.
4037 * profile.c (compute_branch_probabilities): Set profile status
4038 only after reporting predictor hitrates.
4039
4040 2016-06-03 Joseph Myers <joseph@codesourcery.com>
4041
4042 PR target/71276
4043 PR target/71277
4044 * common.opt (ffp-int-builtin-inexact): New option.
4045 * doc/invoke.texi (-fno-fp-int-builtin-inexact): Document.
4046 * doc/md.texi (floor@var{m}2, btrunc@var{m}2, round@var{m}2)
4047 (ceil@var{m}2): Document dependence on this option.
4048 * ipa-inline-transform.c (inline_call): Handle
4049 flag_fp_int_builtin_inexact.
4050 * ipa-inline.c (can_inline_edge_p): Likewise.
4051 * config/i386/i386.md (rintxf2): Do not test
4052 flag_unsafe_math_optimizations.
4053 (rint<mode>2_frndint): New define_insn.
4054 (rint<mode>2): Do not test flag_unsafe_math_optimizations for 387
4055 or !flag_trapping_math for SSE. Just use gen_rint<mode>2_frndint
4056 for 387 instead of extending and truncating.
4057 (frndintxf2_<rounding>): Test flag_fp_int_builtin_inexact ||
4058 !flag_trapping_math instead of flag_unsafe_math_optimizations.
4059 Change to frndint<mode>2_<rounding>.
4060 (frndintxf2_<rounding>_i387): Likewise. Change to
4061 frndint<mode>2_<rounding>_i387.
4062 (<rounding_insn>xf2): Likewise.
4063 (<rounding_insn><mode>2): Test flag_fp_int_builtin_inexact ||
4064 !flag_trapping_math instead of flag_unsafe_math_optimizations for
4065 x87. Test TARGET_ROUND || !flag_trapping_math ||
4066 flag_fp_int_builtin_inexact instead of !flag_trapping_math for
4067 SSE. Use ROUND_NO_EXC in constant operand of
4068 gen_sse4_1_round<mode>2. Just use gen_frndint<mode>2_<rounding>
4069 for 387 instead of extending and truncating.
4070
4071 2016-06-03 H.J. Lu <hongjiu.lu@intel.com>
4072 Julia Koval <julia.koval@intel.com>
4073
4074 PR target/66960
4075 PR target/67630
4076 PR target/67634
4077 PR target/67841
4078 PR target/68037
4079 PR target/68618
4080 PR target/68661
4081 PR target/69575
4082 PR target/69596
4083 PR target/69734
4084 * config/i386/i386-protos.h (ix86_epilogue_uses): New prototype.
4085 * config/i386/i386.c (ix86_conditional_register_usage): Preserve
4086 all registers, except for function return registers if there are
4087 no caller-saved registers.
4088 (ix86_set_func_type): New function.
4089 (ix86_set_current_function): Call ix86_set_func_type to set
4090 no_caller_saved_registers and func_type. Call reinit_regs if
4091 caller-saved registers are changed. Don't allow MPX, SSE, MMX
4092 nor x87 instructions in interrupt handler nor function with
4093 no_caller_saved_registers attribute.
4094 (ix86_function_ok_for_sibcall): Return false if there are no
4095 caller-saved registers.
4096 (type_natural_mode): Don't warn ABI change for MMX in interrupt
4097 handler.
4098 (ix86_function_arg_advance): Skip for callee in interrupt handler.
4099 (ix86_function_arg): Return special arguments in interrupt handler.
4100 (ix86_promote_function_mode): Promote pointer to word_mode only
4101 for normal functions.
4102 (ix86_can_use_return_insn_p): Don't use `ret' instruction in
4103 interrupt handler.
4104 (ix86_epilogue_uses): New function.
4105 (ix86_hard_regno_scratch_ok): Likewise.
4106 (ix86_save_reg): Preserve all registers in interrupt handler
4107 after reload. Preserve all registers, except for function return
4108 registers, if there are no caller-saved registers after reload.
4109 (find_drap_reg): Always use callee-saved register if there are
4110 no caller-saved registers.
4111 (ix86_minimum_incoming_stack_boundary): Return MIN_STACK_BOUNDARY
4112 for interrupt handler.
4113 (ix86_expand_prologue): Don't allow DRAP in interrupt handler.
4114 Emit cld instruction if stringops are used in interrupt handler
4115 or interrupt handler isn't a leaf function.
4116 (ix86_expand_epilogue): Generate interrupt return for interrupt
4117 handler and pop the 'ERROR_CODE' off the stack before interrupt
4118 return in exception handler.
4119 (ix86_expand_call): Disallow calling interrupt handler directly.
4120 If there are no caller-saved registers, mark all registers that
4121 are clobbered by the call which returns as clobbered.
4122 (ix86_handle_no_caller_saved_registers_attribute): New function.
4123 (ix86_handle_interrupt_attribute): Likewise.
4124 (ix86_attribute_table): Add interrupt and no_caller_saved_registers
4125 attributes.
4126 (TARGET_HARD_REGNO_SCRATCH_OK): Likewise.
4127 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use argument
4128 accumulation in interrupt function if stack may be realigned to
4129 avoid DRAP.
4130 (EPILOGUE_USES): New.
4131 (function_type): New enum.
4132 (machine_function): Add func_type and no_caller_saved_registers.
4133 * config/i386/i386.md (UNSPEC_INTERRUPT_RETURN): New.
4134 (interrupt_return): New pattern.
4135 * doc/extend.texi: Document x86 interrupt and
4136 no_caller_saved_registers attributes.
4137
4138 2016-06-03 Bernd Schmidt <bschmidt@redhat.com>
4139
4140 PR tree-optimization/52171
4141 * builtins.c (expand_cmpstrn_or_cmpmem): Delete, moved elsewhere.
4142 (expand_builtin_memcmp): New arg RESULT_EQ. All callers changed.
4143 Look for constant strings. Move some code to emit_block_cmp_hints
4144 and use it.
4145 * builtins.def (BUILT_IN_MEMCMP_EQ): New.
4146 * defaults.h (COMPARE_MAX_PIECES): New macro.
4147 * expr.c (move_by_pieces_d, store_by_pieces_d): Remove old structs.
4148 (move_by_pieces_1, store_by_pieces_1, store_by_pieces_2): Remvoe.
4149 (clear_by_pieces_1): Don't declare. Move definition before use.
4150 (can_do_by_pieces): New static function.
4151 (can_move_by_pieces): Use it. Return bool.
4152 (by_pieces_ninsns): Renamed from move_by_pieces_ninsns. New arg
4153 OP. All callers changed. Handle COMPARE_BY_PIECES.
4154 (class pieces_addr); New.
4155 (pieces_addr::pieces_addr, pieces_addr::decide_autoinc,
4156 pieces_addr::adjust, pieces_addr::increment_address,
4157 pieces_addr::maybe_predec, pieces_addr::maybe_postinc): New member
4158 functions for it.
4159 (class op_by_pieces_d): New.
4160 (op_by_pieces_d::op_by_pieces_d, op_by_pieces_d::run): New member
4161 functions for it.
4162 (class move_by_pieces_d, class compare_by_pieces_d,
4163 class store_by_pieces_d): New subclasses of op_by_pieces_d.
4164 (move_by_pieces_d::prepare_mode, move_by_pieces_d::generate,
4165 move_by_pieces_d::finish_endp, store_by_pieces_d::prepare_mode,
4166 store_by_pieces_d::generate, store_by_pieces_d::finish_endp,
4167 compare_by_pieces_d::generate, compare_by_pieces_d::prepare_mode,
4168 compare_by_pieces_d::finish_mode): New member functions.
4169 (compare_by_pieces, emit_block_cmp_via_cmpmem): New static
4170 functions.
4171 (expand_cmpstrn_or_cmpmem): Moved here from builtins.c.
4172 (emit_block_cmp_hints): New function.
4173 (move_by_pieces, store_by_pieces, clear_by_pieces): Rewrite to just
4174 use the newly defined classes.
4175 * expr.h (by_pieces_constfn): New typedef.
4176 (can_store_by_pieces, store_by_pieces): Use it in arg declarations.
4177 (emit_block_cmp_hints, expand_cmpstrn_or_cmpmem): Declare.
4178 (move_by_pieces_ninsns): Don't declare.
4179 (can_move_by_pieces): Change return value to bool.
4180 * target.def (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): Update docs.
4181 (compare_by_pieces_branch_ratio): New hook.
4182 * target.h (enum by_pieces_operation): Add COMPARE_BY_PIECES.
4183 (by_pieces_ninsns): Declare.
4184 * targethooks.c (default_use_by_pieces_infrastructure_p): Handle
4185 COMPARE_BY_PIECES.
4186 (default_compare_by_pieces_branch_ratio): New function.
4187 * targhooks.h (default_compare_by_pieces_branch_ratio): Declare.
4188 * doc/tm.texi.in (STORE_MAX_PIECES, COMPARE_MAX_PIECES): Document.
4189 * doc/tm.texi: Regenerate.
4190 * tree-ssa-strlen.c: Include "builtins.h".
4191 (handle_builtin_memcmp): New static function.
4192 (strlen_optimize_stmt): Call it for BUILT_IN_MEMCMP.
4193 * tree.c (build_common_builtin_nodes): Create __builtin_memcmp_eq.
4194
4195 2016-06-03 Alan Hayward <alan.hayward@arm.com>
4196
4197 * tree-vect-stmts.c (vect_stmt_relevant_p): Do not vectorize non live
4198 relevant stmts which are simple and invariant.
4199 * tree-vect-loop.c (vectorizable_live_operation): Check relevance
4200 instead of simple and invariant
4201
4202 2016-06-03 Alan Hayward <alan.hayward@arm.com>
4203
4204 * tree-vect-loop.c (vect_analyze_loop_operations): Allow live stmts.
4205 (vectorizable_reduction): Check for new relevant state.
4206 (vectorizable_live_operation): vectorize live stmts using
4207 BIT_FIELD_REF. Remove special case for gimple assigns stmts.
4208 * tree-vect-stmts.c (is_simple_and_all_uses_invariant): New function.
4209 (vect_stmt_relevant_p): Check for stmts which are only used live.
4210 (process_use): Use of a stmt does not inherit it's live value.
4211 (vect_mark_stmts_to_be_vectorized): Simplify relevance inheritance.
4212 (vect_analyze_stmt): Check for new relevant state.
4213 * tree-vectorizer.h (vect_relevant): New entry for a stmt which is used
4214 outside the loop, but not inside it.
4215
4216 2016-06-03 Alan Hayward <alan.hayward@arm.com>
4217
4218 * tree-vectorizer.h (vect_get_vec_def_for_operand_1): New.
4219 * tree-vect-stmts.c (vect_get_vec_def_for_operand_1): New.
4220 (vect_get_vec_def_for_operand): Split out code.
4221
4222 2016-06-03 Segher Boessenkool <segher@kernel.crashing.org>
4223
4224 * config/rs6000/rs6000.md (define_peepholes for two mfcr's): Delete.
4225
4226 2016-06-03 Alan Hayward <alan.hayward@arm.com>
4227
4228 * tree-vect-stmts.c (vectorizable_call) Remove GOMP_SIMD_LANE code.
4229
4230 2016-06-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4231
4232 * config/arm/thumb1.md (*thumb1_mulsi3): Fix typos in comment.
4233
4234 2016-06-03 Jakub Jelinek <jakub@redhat.com>
4235
4236 PR middle-end/71387
4237 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): If redirecting
4238 to noreturn e->callee->decl that has void return type and void
4239 arguments, adjust gimple_call_fntype and remove lhs even if it had
4240 previously addressable type.
4241
4242 2016-06-02 Jeff Law <law@redhat.com>
4243
4244 PR tree-optimization/71328
4245 * tree-ssa-threadupdate.c (duplicate_thread_path): Fix off-by-one
4246 error when checking for a jump back onto the copied path.
4247
4248 2016-06-02 David Malcolm <dmalcolm@redhat.com>
4249
4250 * config/microblaze/microblaze.c (get_branch_target): Add return
4251 NULL_RTX for the non-CALL_P case.
4252 (insert_wic_for_ilb_runout): Remove unused local "wic_addr1".
4253 (insert_wic): Remove unused local "j".
4254
4255 2016-06-02 Martin Liska <mliska@suse.cz>
4256
4257 * predict.def: Fix typo in PRED_FORTRAN_FAIL_IO display name.
4258
4259 2016-06-02 H.J. Lu <hongjiu.lu@intel.com>
4260 Julia Koval <julia.koval@intel.com>
4261
4262 * function.c (assign_parm_setup_stack): Force source into a
4263 register if needed.
4264 * target.def (function_incoming_arg): Update documentation to
4265 allow arbitrary address computation based on hard register.
4266 * doc/tm.texi: Regenerated.
4267
4268 2016-06-02 Martin Liska <mliska@suse.cz>
4269
4270 * predict.c (combine_predictions_for_bb): Fix first match in
4271 cases where a first predictor contains more than one occurence
4272 in list of predictors. Take the best value in such case.
4273
4274 2016-06-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4275
4276 PR rtl-optimization/71295
4277 * rtlanal.c (subreg_get_info): If taking a subreg at the requested
4278 offset would go over the size of the inner mode reject it.
4279
4280 2016-06-02 Jakub Jelinek <jakub@redhat.com>
4281
4282 * config/i386/sse.md (*vec_concatv4si): Use v=v,v instead of
4283 x=x,x and v=v,m instead of x=x,m.
4284
4285 * config/i386/sse.md (*vec_concatv2si_sse4_1): Add avx512dq v=Yv,rm
4286 alternative. Change x=x,x alternative to v=Yv,Yv and x=rm,C
4287 alternative to v=rm,C.
4288
4289 * config/i386/sse.md (*vec_concatv2di): Add x86_avx512dq v=Yv,rm
4290 alternative. Change x=xm,C alternative to v=vm,C, x=x,x alternative
4291 to v=Yv,Yv and x=x,m to v=v,m. Use maybe_evex prefix attribute
4292 instead of vex for the last two above mentioned alternatives.
4293
4294 2016-06-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4295
4296 PR target/70830
4297 * config/arm/arm.c (arm_output_multireg_pop): Guard "pop" on update.
4298
4299 2016-06-02 Segher Boessenkool <segher@kernel.crashing.org>
4300
4301 * config/rs6000/dfp.md (trunctddd2): Correct the "length" attribute.
4302
4303 2016-06-01 David Malcolm <dmalcolm@redhat.com>
4304
4305 * config/rl78/rl78.c (rl78_expand_prologue): Convert local
4306 from int to unsigned.
4307
4308 2016-05-31 Michael Meissner <meissner@linux.vnet.ibm.com>
4309
4310 * config/rs6000/vsx.md (vsx_splat_<mode>, V2DI/V2DF): Simplify
4311 alternatives, eliminating preferred register class. Add support
4312 for the MTVSRDD instruction in ISA 3.0.
4313 (vsx_splat_v4si_internal): Use splat_input_operand instead of
4314 reg_or_indexed_operand.
4315 (vsx_splat_v4sf_internal): Likewise.
4316
4317 2016-05-31 Michael Meissner <meissner@linux.vnet.ibm.com>
4318
4319 PR target/71186
4320 * config/rs6000/vsx.md (xxspltib_<mode>_nosplit): Add alternatives
4321 for loading up all 0's or all 1's.
4322
4323 2016-06-01 Thomas Preud'homme <thomas.preudhomme@arm.com>
4324
4325 * doc/sourcebuild.texi (arm_acq_rel): Document new effective target.
4326
4327 2016-06-01 Eduard Sanou <dhole@openmailbox.org>
4328
4329 * doc/cppenv.texi: Note that the `%s` in `date` is a non-standard
4330 extension.
4331 * gcc.c (driver_handle_option): Call set_source_date_epoch_envvar.
4332 * gcc.c (set_source_date_epoch_envvar): New function, sets
4333 the SOURCE_DATE_EPOCH environment variable to the current time.
4334
4335 2016-06-01 Eric Botcazou <ebotcazou@adacore.com>
4336
4337 * tree-vect-loop.c (vect_determine_vectorization_factor): Also compute
4338 the factor for live Phi nodes.
4339
4340 2016-06-01 Jan Hubicka <hubicka@ucw.cz>
4341
4342 * loop-dolop.c (doloop_optimize): Us likely max iteration bound.
4343 * tree-parloops.c (parallelize_loops): likewise.
4344 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop,
4345 tree_unswitch_outer_loop): likewise.
4346
4347 2016-06-01 Jakub Jelinek <jakub@redhat.com>
4348
4349 PR middle-end/71371
4350 * gimplify.c (gimplify_omp_for): Temporarily clear gimplify_omp_ctxp
4351 around creation of the temporary.
4352
4353 2016-06-01 Richard Biener <rguenther@suse.de>
4354
4355 PR tree-optimization/71366
4356 * tree-ssa-loop-ivcanon.c (edges_to_remove): New global.
4357 (unloop_loops): Move removing edges here ...
4358 (try_unroll_loop_completely): ... from here.
4359 (try_peel_loop): ... and here.
4360 (tree_unroll_loops_completely_1): Track parent loops via
4361 bitmap of header BBs.
4362 (tree_unroll_loops_completely): Adjust for that.
4363
4364 2016-06-01 Kelvin Nilsen <kelvin@gcc.gnu.org>
4365
4366 * config/rs6000/altivec.h (vec_slv): New macro.
4367 (vec_srv): New macro.
4368 * config/rs6000/altivec.md (UNSPEC_VSLV): New value.
4369 (UNSPEC_VSRV): New value.
4370 (vslv): New insn.
4371 (vsrv): New insn.
4372 * config/rs6000/rs6000-builtin.def (vslv): New builtin definition.
4373 (vsrv): New builtin definition.
4374 * config/rs6000/rs6000-c.c (P9V_BUILTIN_VSLV): Macro expansion to
4375 define argument types for new builtin.
4376 (P9V_BUILTIN_VSRV): Macro expansion to define argument types for
4377 new builtin.
4378 * doc/extend.texi: Document the new vec_vslv and vec_srv built-in
4379 functions.
4380
4381 2016-06-01 Uros Bizjak <ubizjak@gmail.com>
4382 Jocelyn Mayer <l_indien@magic.fr>
4383
4384 PR target/67310
4385 * config/i386/driver-i386.c (host_detect_local_cpu): Correctly
4386 detect processor family for signature_CENTAUR_ebx.
4387 <case PROCESSOR_I486>: Pass c3, winchip2 or winchip-c6 for
4388 signature_CENTAUR_ebx.
4389 <case PROCESSOR _PENTIUMPRO>: Pass c3-2 for signature_CENTAUR_ebx.
4390 <default>: Pass x86-64 for has_longmode.
4391
4392 2016-06-01 Nathan Sidwell <nathan@acm.org>
4393
4394 * config/nvptx/nvptx.c (nvptx_assemble_undefined_decl): Reject
4395 undefined weak.
4396
4397 2016-06-01 Richard Biener <rguenther@suse.de>
4398
4399 PR tree-optimization/71261
4400 * tree-vect-patterns.c (check_bool_pattern): Gather a hash-set
4401 of stmts successfully put in the bool pattern. Remove
4402 single-use restriction.
4403 (adjust_bool_pattern_cast): Add cast at the use site via the
4404 pattern def sequence.
4405 (adjust_bool_pattern): Remove recursion, maintain a hash-map
4406 of patterned defs. Use the pattern def seqence instead of
4407 multiple independent patterns.
4408 (sort_after_uid): New qsort compare function.
4409 (adjust_bool_stmts): New function to process stmts in the bool
4410 pattern in IL order.
4411 (vect_recog_bool_pattern): Adjust.
4412 * tree-if-conv.c (ifcvt_split_def_stmt): Remove.
4413 (ifcvt_walk_pattern_tree): Likewise.
4414 (stmt_is_root_of_bool_pattern): Likewise.
4415 (ifcvt_repair_bool_pattern): Likewise.
4416 (tree_if_conversion): Do not call ifcvt_repair_bool_pattern.
4417
4418 2016-06-01 Jan Hubicka <hubicka@ucw.cz>
4419
4420 * loop-unroll.c (decide_unroll_constant_iterations,
4421 decide_unroll_runtime_iterations, decide_unroll_stupid): Use
4422 likely upper bounds.
4423 * loop-iv.c (find_simple_exit): Dump likely upper bounds.
4424
4425 2016-06-01 Thomas Schwinge <thomas@codesourcery.com>
4426
4427 * tree-core.h (enum omp_clause_code): Remove
4428 OMP_CLAUSE_DEVICE_RESIDENT. Adjust all users.
4429
4430 2016-06-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4431
4432 * config/arm/sync.md (arm_store_exclusive<mode>):
4433 Use 'H' output modifier on operands[2] rather than creating a new
4434 entry in out-of-bounds memory of the operands array.
4435 (arm_store_release_exclusivedi): Likewise.
4436
4437 2016-06-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4438
4439 * config/arm/arm.c (arm_fusion_enabled_p): New function.
4440 * config/arm/arm-protos.h (arm_fusion_enabled_p): Declare prototype.
4441 * config/arm/crypto.md (crypto_<crypto_pattern>, CRYPTO_UNARY):
4442 Add "=w,0" alternative. Enable it when AES/AESMC fusion is enabled.
4443
4444 2016-06-01 Eric Botcazou <ebotcazou@adacore.com>
4445
4446 * tree-vect-loop.c (vect_determine_vectorization_factor): Also take
4447 into account live statements for mask producers.
4448
4449 2016-06-01 Richard Biener <rguenther@suse.de>
4450
4451 PR tree-optimization/71311
4452 * match.pd (@0 < @1 && @0 < @2 -> @0 < min(@1,@2)): Add :c and
4453 restrict to non-INTEGER_CST @0.
4454
4455 2016-06-01 Richard Biener <rguenther@suse.de>
4456
4457 * match.pd ((A & B) - (A & ~B) -> B - (A ^ B)): Add missing :c.
4458 (relational patterns): Use :c to avoid pattern duplications.
4459
4460 2016-06-01 Richard Biener <rguenther@suse.de>
4461
4462 * genmatch.c (comparison_code_p): New predicate.
4463 (swap_tree_comparison): New function.
4464 (commutate): Add for_vec parameter to append new for entries.
4465 Support commutating relational operators by swapping it alongside
4466 operands.
4467 (lower_commutative): Adjust.
4468 (dt_simplify::gen): Do not pass artificial operators to gen
4469 functions.
4470 (decision_tree::gen): Do not add artificial operators as parameters.
4471 (parser::parse_expr): Verify operator commutativity when :c is
4472 applied. Allow :C to override this.
4473 * match.pd: Adjust patterns to use :C instead of :c where required.
4474
4475 2016-06-01 Patrick Palka <ppalka@gcc.gnu.org>
4476
4477 PR tree-optimization/71077
4478 * tree-ssa-threadedge.c (simplify_control_stmt_condition_1): In
4479 the combining step, use boolean_false_node and boolean_true_node
4480 as the designated false/true return values.
4481
4482 2016-05-31 Jan Hubicka <hubicka@ucw.cz>
4483
4484 * predict.def (PRED_LOOP_EXTRA_EXIT): Define.
4485 * predict.c (predict_iv_comparison): Also check PRED_LOOP_EXTRA_EXIT.
4486 (predict_extra_loop_exits): Use PRED_LOOP_EXTRA_EXIT instead of
4487 PRED_LOOP_EXIT.
4488
4489 2016-05-31 Jan Hubicka <hubicka@ucw.cz>
4490
4491 * doc/invoke.texi (-frename-registers): Drop -fpeel-loops from list
4492 of flags impliying the register renaming.
4493 * toplev.c (process_options): Do not imply flag_rename_registers with
4494 loop peeling.
4495
4496 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
4497
4498 * config/sh/sh.h (ASM_OUTPUT_SYMBOL_REF): Remove macro and use the
4499 default implementation.
4500
4501 2016-05-31 Nathan Sidwell <nathan@acm.org>
4502
4503 * dwarf2out.c (cur_line_info_table): Add GTY marker.
4504
4505 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
4506
4507 * config/sh/constraints.md (b): Remove constraint.
4508 * config/sh/predicates.md (arith_reg_operand): Remove
4509 TARGET_REGISTER_P.
4510 * config/sh/sh-modes.def (PDI): Remove.
4511 * config/sh/sh.c (sh_target_reg_class,
4512 sh_optimize_target_register_callee_saved): Remove functions.
4513 (sh_option_override): Don't set MASK_SAVE_ALL_TARGET_REGS.
4514 (sh_expand_epilogue): Update comment.
4515 (sh_hard_regno_mode_ok, sh_register_move_cost, calc_live_regs,
4516 sh_secondary_reload): Remove TARGET_REGS related code.
4517 * config/sh/sh.h (FIRST_TARGET_REG, LAST_TARGET_REG,
4518 TARGET_REGISTER_P): Remove macros.
4519 (SH_DBX_REGISTER_NUMBER, REG_ALLOC_ORDER): Remove target regs.
4520 * config/sh/sh.md (PR_MEDIA_REG, T_MEDIA_REG, FR23_REG, TR0_REG,
4521 TR1_REG, TR2_REG): Remove constants.
4522 * config/sh/sh.opt (SAVE_ALL_TARGET_REGS): Remove.
4523
4524 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
4525
4526 * config/sh/sh.md (adddi3, subdi3, negdi2, abs<mode>2): Remove
4527 define_expand patterns.
4528 (adddi3_compact): Rename to adddi3.
4529 (subdi3_compact): Rename to subdi3.
4530 (*negdi2): Rename to negdi2.
4531 (*abs<mode>2): Rename to abs<mode>2.
4532
4533 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
4534
4535 * config/rx/rx.md (FETCHOP_NO_MINUS): New code iterator.
4536 (atomic_<fetchop_name>_fetchsi): Extract minus operator into ...
4537 (atomic_sub_fetchsi): ... this new pattern.
4538 (mvtc): Add CC_REG clobber.
4539
4540 2016-05-31 Marek Polacek <polacek@redhat.com>
4541
4542 * gimplify.c (gimplify_switch_expr): Also handle GIMPLE_TRY.
4543
4544 2016-05-31 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4545
4546 * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Use
4547 aarch64_fusion_enabled_p to check for fusion capabilities.
4548
4549 2016-05-31 Richard Biener <rguenther@suse.de>
4550
4551 PR tree-optimization/71352
4552 * tree-ssa-reassoc.c (zero_one_operation): Handle op equal to
4553 minus one and a negate.
4554
4555 2016-05-31 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4556
4557 * config/aarch64/aarch64.c (aarch64_simd_attr_length_move): Delete.
4558 * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_move):
4559 Delete prototype.
4560 * config/aarch64/iterators.md (insn_count): Add descriptive comment.
4561 * config/aarch64/aarch64-simd.md (*aarch64_mov<mode>, VSTRUCT modes):
4562 Remove use of aarch64_simd_attr_length_move, set length attribute
4563 directly.
4564 (*aarch64_be_movoi): Likewise.
4565 (*aarch64_be_movci): Likewise.
4566 (*aarch64_be_movxi): Likewise.
4567
4568 2016-05-31 Jan Hubicka <hubicka@ucw.cz>
4569
4570 * loop-init.c (gate): Do not enale RTL loop unroller with -fpeel-loops.
4571 It no longer does that.
4572 * toplev.c (process_options): Do not enable flag_web with -fpeel-loops.
4573
4574 2016-05-31 Wladimir J. van der Laan <laanwj@gmail.com>
4575
4576 * config/aarch64/arm_neon.h (vdupb_laneq_s8): Remove spurious
4577 attribute __unused__.
4578
4579 2016-05-31 Thomas Preud'homme <thomas.preudhomme@arm.com>
4580
4581 * config/arm/arm-protos.h (arm_arch_thumb1): Declare.
4582 * config/arm/arm.c (arm_arch_thumb1): Define.
4583 (arm_option_override): Initialize arm_arch_thumb1.
4584 * config/arm/arm.h (arm_arch_thumb1): Declare.
4585 (TARGET_ARM_ARCH_ISA_THUMB): Use arm_arch_thumb to determine if target
4586 support Thumb-1 ISA.
4587
4588 2016-05-31 Kirill Yukhin <kirill.yukhin@intel.com>
4589
4590 PR target/71346
4591 * config/i386/sse.md (define_insn_and_split "*vec_extractv4sf_0"): Use
4592 `Yv' for scalar operand.
4593
4594 2016-05-31 Tom de Vries <tom@codesourcery.com>
4595
4596 PR tree-optimization/69068
4597 * graphite-isl-ast-to-gimple.c (copy_bb_and_scalar_dependences): Handle
4598 phis with more than two args.
4599
4600 2016-05-30 Andreas Tobler <andreast@gcc.gnu.org>
4601
4602 * config.gcc: Move hard float support for arm*hf*-*-freebsd* into
4603 armv6*-*-freebsd* for FreeBSD 11. Eliminate the arm*hf*-*-freebsd*
4604 target.
4605
4606 2016-05-30 Jose E. Marchesi <jose.marchesi@oracle.com>
4607
4608 * config.gcc (sparc*-*-*): Support cpu_32, cpu_64, tune_32 and
4609 tune_64.
4610 * doc/install.texi (--with-cpu-32, --with-cpu-64): Document
4611 support on SPARC.
4612 * config/sparc/linux64.h (OPTION_DEFAULT_SPECS): Add entries for
4613 cpu_32, cpu_64, tune_32 and tune_64.
4614 * config/sparc/sol2.h (OPTION_DEFAULT_SPECS): Likewise.
4615
4616 2016-05-30 Uros Bizjak <ubizjak@gmail.com>
4617
4618 * config/i386/sync.md (mfence_nosse): Use "lock orl $0, -4(%esp)".
4619
4620 2016-05-30 Andi Kleen <ak@linux.intel.com>
4621
4622 * auto-profile.c (read_profile): Replace asserts with errors
4623 when file does not exist.
4624 * gcov-io.c (gcov_read_words): Dito.
4625
4626 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
4627
4628 * tree-cfg.c (print_loop): Print likely upper bounds.
4629
4630 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
4631
4632 * doc/invoke.texi (-fpeel-loops,-O3): Update documentation.
4633 * opts.c (default_options): Enable peel loops at -O3.
4634 * tree-ssa-loop-ivcanon.c (peeled_loops): New static var.
4635 (try_peel_loop): Do not re-peel already peeled loops;
4636 use likely upper bounds; fix profile updating.
4637 (pass_complete_unroll::execute): Initialize peeled_loops.
4638
4639 2016-05-30 Martin Liska <mliska@suse.cz>
4640
4641 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Scale
4642 computed costs by frequency of BB they belong to.
4643 (get_scaled_computation_cost_at): New function.
4644
4645 2016-05-30 Alexander Monakov <amonakov@ispras.ru>
4646 Marc Glisse <marc.glisse@inria.fr>
4647
4648 PR tree-optimization/71289
4649 * match.pd (-1 / B < A, A > -1 / B): New transformations.
4650
4651 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
4652
4653 * tree-vect-loop.c (vect_transform_loop): Update likely bounds.
4654
4655 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
4656
4657 * tree-ssa-loop-ivcanon.c (try_peel_loop): Correctly set wont_exit
4658 for peeled copies; avoid underflow when updating estimates; correctly
4659 scale loop profile.
4660
4661 2016-05-30 Kugan Vivekanandarajah <kuganv@linaro.org>
4662
4663 * tree-ssa-reassoc.ci (swap_ops_for_binary_stmt): Fix typo from commit
4664 r236875. Corrected oe3 to oe2 as obvious.
4665
4666 2016-05-30 Kugan Vivekanandarajah <kuganv@linaro.org>
4667
4668 PR middle-end/71269
4669 PR middle-end/71252
4670 * tree-ssa-reassoc.c (insert_stmt_before_use): Use find_insert_point so
4671 that inserted stmt will not dominate stmts that defines its operand.
4672 (rewrite_expr_tree): Add stmt_to_insert before adding the use stmt.
4673 (rewrite_expr_tree_parallel): Likewise.
4674
4675 2016-05-30 Kugan Vivekanandarajah <kuganv@linaro.org>
4676
4677 PR middle-end/71252
4678 * tree-ssa-reassoc.c (swap_ops_for_binary_stmt): Fix swap such that
4679 all fields including stmt_to_insert are swapped.
4680
4681 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
4682
4683 * predict.h (force_edge_cold): Declare.
4684 * predict.c (force_edge_cold): New function.
4685 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Fix profile
4686 updating.
4687 (canonicalize_loop_induction_variables): Fix formating.
4688
4689 2016-05-30 Eric Botcazou <ebotcazou@adacore.com>
4690
4691 * config/visium/visium.c (visium_split_double_add): Minor tweaks.
4692 (visium_expand_copysign): Use gen_int_mode directly.
4693 (visium_compute_frame_size): Minor tweaks.
4694
4695 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
4696
4697 * tree-vect-loop.c (vect_analyze_loop_2): Use
4698 likely_max_stmt_executions_int.
4699
4700 2016-05-30 Tom de Vries <tom@codesourcery.com>
4701
4702 PR tree-optimization/69067
4703 * graphite-isl-ast-to-gimple.c (get_def_bb_for_const): Remove assert.
4704
4705 2016-05-29 Uros Bizjak <ubizjak@gmail.com>
4706
4707 PR target/71245
4708 * config/i386/sync.md (define_peephole2 atomic_storedi_fpu):
4709 New peepholes to remove unneeded fild/fistp pairs.
4710 (define_peephole2 atomic_loaddi_fpu): Ditto.
4711
4712 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
4713
4714 * predict.c (maybe_hot_frequency_p): Avoid division.
4715
4716 2016-05-28 Gerald Pfeifer <gerald@pfeifer.com>
4717
4718 * doc/install.texi: Use https for shop.fsf.org.
4719
4720 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
4721
4722 * tree-ssa-loop-ivopts.c (estimated_stmt_executions_int): Use
4723 likely_max_stmt_executions_int.
4724
4725 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
4726
4727 * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Use
4728 likely_max_stmt_executions_int.
4729
4730 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
4731
4732 * profile.c (compute_branch_probabilities): Do not report hitrates
4733 here.
4734 (branch_prob): Report hitrates here.
4735 * predict.c (gimple_predict_edge): Do not assert profile status;
4736 fix formatting issues.
4737
4738 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
4739
4740 * predict.c (edge_predicted_by_p): New function.
4741 (predict_paths_for_bb): Do not put multiple predictions of the same type
4742 on one edge.
4743
4744 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
4745
4746 * tree-ssa-loop-niter.c (number_of_iterations_exit): Revert accidental
4747 commit.
4748
4749 2016-05-28 Alan Modra <amodra@gmail.com>
4750
4751 * dominance.c (verify_dominators): Don't segfault on NULL imm_bb.
4752
4753 2016-05-28 Alan Modra <amodra@gmail.com>
4754
4755 PR rtl-optimization/71275
4756 * ira.c (ira): Free dominance info.
4757
4758 2016-05-27 Gerald Pfeifer <gerald@pfeifer.com>
4759
4760 * doc/sourcebuild.texi: New address for upstream Go repository.
4761
4762 2016-05-27 Thomas Preud'homme <thomas.preudhomme@arm.com>
4763
4764 * config/arm/arm.h (TARGET_ARM_V6M): Remove.
4765 (TARGET_ARM_V7M): Likewise.
4766
4767 2016-05-26 Jeff Law <law@redhat.com>
4768
4769 * tree-ssa-threadedge.c: Remove include of tree-ssa-threadbackward.h.
4770 (thread_across_edge): Remove calls to find_jump_threads_backwards.
4771 * passes.def: Add jump threading passes before DOM/VRP.
4772 * tree-ssa-threadbackward.c (find_jump_threads_backwards): Change
4773 argument to a basic block from an edge. Remove tests which are
4774 handled elsewhere.
4775 (pass_data_thread_jumps, class pass_thread_jumps): New.
4776 (pass_thread_jumps::gate, pass_thread_jumps::execute): New.
4777 (make_pass_thread_jumps): Likewise.
4778 * tree-pass.h (make_pass_thread_jumps): Declare.
4779
4780 2016-05-27 Eric Botcazou <ebotcazou@adacore.com>
4781
4782 * config/visium/visium-protos.h (split_double_move): Rename into...
4783 (visium_split_double_move): ...this.
4784 (visium_split_double_add): Declare.
4785 * config/visium/visium.c (split_double_move): Rename into...
4786 (visium_split_double_move): ...this.
4787 (visium_split_double_add): New function.
4788 (visium_expand_copysign): Renumber operands for consistency.
4789 * config/visium/visium.md (DImode move splitter): Adjust to renaming.
4790 (DFmode move splitter): Likewise.
4791 (*addi3_insn): Split by means of visium_split_double_add.
4792 (*adddi3_insn_flags): Delete.
4793 (*plus_plus_sltu<subst_arith>): New insn.
4794 (*subdi3_insn): Split by means of visium_split_double_add.
4795 (subdi3_insn_flags): Delete.
4796 (*minus_minus_sltu<subst_arith>): New insn.
4797 (*negdi2_insn): Split by means of visium_split_double_add.
4798 (*negdi2_insn_flags): Delete.
4799
4800 2016-05-27 Ulrich Weigand <uweigand@de.ibm.com>
4801
4802 * configure.ac: Treat a --with-headers option without argument
4803 the same as the default (i.e. consult sys-include directory).
4804 * configure: Regenerate.
4805
4806 2016-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4807
4808 * config/aarch64/aarch64.c (aarch64_fusion_enabled_p): New function.
4809 * config/aarch64/aarch64-protos.h (aarch64_fusion_enabled_p): Declare
4810 prototype.
4811 * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aesmc_op>v16qi):
4812 Add "=w,0" alternative. Enable it when AES/AESMC fusion is enabled.
4813
4814 2016-05-27 Jiong Wang <jiong.wang@arm.com>
4815
4816 PR target/63596
4817 * config/aarch64/aarch64.c (aarch64_expand_builtin_va_start): Honor
4818 tree-stdarg analysis results.
4819 (aarch64_setup_incoming_varargs): Likewise.
4820
4821 2016-05-27 Jiong Wang <jiong.wang@arm.com>
4822
4823 * config/aarch64/aarch64.c (aarch64_build_builtin_va_list): Initialize
4824 va_list_gpr_counter_field and va_list_fpr_counter_field.
4825
4826 2016-05-27 Wilco Dijkstra <wdijkstr@arm.com>
4827
4828 PR67609
4829 * config/aarch64/aarch64.h (CANNOT_CHANGE_MODE_CLASS): Remove.
4830 * config/aarch64/aarch64.c
4831 (aarch64_cannot_change_mode_class): Remove function.
4832 * config/aarch64/aarch64-protos.h
4833 (aarch64_cannot_change_mode_class): Remove.
4834
4835 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
4836
4837 * cfgloop.c (record_niter_bound): Record likely upper bounds.
4838 (likely_max_stmt_executions_int, get_likely_max_loop_iterations,
4839 get_likely_max_loop_iterations_int): New.
4840 * cfgloop.h (struct loop): Add nb_iterations_likely_upper_bound,
4841 any_likely_upper_bound.
4842 (get_likely_max_loop_iterations_int, get_likely_max_loop_iterations):
4843 Declare.
4844 * cfgloopmanip.c (copy_loop_info): Copy likely upper bounds.
4845 * loop-unroll.c (unroll_loop_constant_iterations): Update likely
4846 upper bound.
4847 (unroll_loop_constant_iterations): Likewise.
4848 (unroll_loop_runtime_iterations): Likewise.
4849 * lto-streamer-in.c (input_cfg): Stream likely upper bounds.
4850 * lto-streamer-out.c (output_cfg): Likewise.
4851 * tree-ssa-loop-ivcanon.c (try_peel_loop): Update likely upper
4852 bounds.
4853 (canonicalize_loop_induction_variables): Dump likely upper bounds.
4854 * tree-ssa-loop-niter.c (record_estimate): Record likely upper bounds.
4855 (likely_max_loop_iterations): New.
4856 (likely_max_loop_iterations_int): New.
4857 (likely_max_stmt_executions): New.
4858 * tree-ssa-loop-niter.h (likely_max_loop_iterations,
4859 likely_max_loop_iterations_int, likely_max_stmt_executions_int,
4860 likely_max_stmt_executions): Declare.
4861
4862 2016-05-27 Marek Polacek <polacek@redhat.com>
4863
4864 PR middle-end/71308
4865 * gimple-fold.c (gimple_fold_call): Check that LHS is not null.
4866
4867 2016-05-27 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
4868
4869 * config/s390/s390.md (2x risbg splitters): Use
4870 reg_overlap_mentioned_p instead of rtx_equal_p.
4871
4872 2016-05-27 Dominik Vogt <vogt@linux.vnet.ibm.com>
4873
4874 * combine.c (make_compound_operation): Take known zero bits into
4875 account when checking for possible zero_extend.
4876
4877 2016-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4878
4879 * config/aarch64/aarch64.md (ashl<mode>3, SHORT modes):
4880 Use const_int_operand for operand 2 predicate. Simplify expand code
4881 as a result.
4882
4883 2016-05-27 Ilya Enkovich <ilya.enkovich@intel.com>
4884
4885 PR middle-end/71279
4886 * fold-const.c (fold_ternary_loc): Don't fold VEC_COND_EXPR
4887 into comparison.
4888
4889 2016-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4890
4891 * config/aarch64/aarch64-modes.def (CC_ZESWP, CC_SESWP): Delete.
4892 * config/aarch64/aarch64.c (aarch64_select_cc_mode): Remove condition
4893 that returns CC_SESWPmode and CC_ZESWPmode.
4894 (aarch64_get_condition_code_1): Remove handling of CC_SESWPmode
4895 and CC_SESWPmode.
4896 (aarch64_rtx_costs): Likewise.
4897
4898 2016-05-26 Michael Meissner <meissner@linux.vnet.ibm.com>
4899
4900 * config/rs6000/rs6000.c (rs6000_emit_p9_fp_minmax): New function
4901 for ISA 3.0 min/max support.
4902 (rs6000_emit_p9_fp_cmove): New function for ISA 3.0 floating point
4903 conditional move support.
4904 (rs6000_emit_cmove): Call rs6000_emit_p9_fp_minmax and
4905 rs6000_emit_p9_fp_cmove if the ISA 3.0 instructions are
4906 available.
4907 * config/rs6000/rs6000.md (SFDF2): New iterator to allow doing
4908 conditional moves where the comparison type is different from move
4909 type.
4910 (fp_minmax): New code iterator for smin/smax.
4911 (minmax): New code attributes for min/max.
4912 (SMINMAX): Likewise.
4913 (smax<mode>3): Combine min, max insns into one insn using the
4914 fp_minmax code iterator. Add support for ISA 3.0 min/max
4915 instructions that don't need -ffast-math.
4916 (s<minmax><mode>3): Likewise.
4917 (smax<mode>3_vsx): Likewise.
4918 (smin<mode>3): Likewise.
4919 (s<minmax><mode>3_vsx): Likewise.
4920 (smin<mode>3_vsx): Likewise.
4921 (pre-VSX min/max splitters): Likewise.
4922 (s<minmax><mode>3_fpr): Likewise.
4923 (movsfcc): Rewrite floating point conditional moves to combine
4924 SFmode/DFmode into a single insn.
4925 (mov<mode>cc): Likewise.
4926 (movdfcc): Likewise.
4927 (fselsfsf4): Combine FSEL cases into a single insn, using SFDF and
4928 SFDF2 iterators to handle all combinations.
4929 (fseldfsf4): Likewise.
4930 (fsel<SFDF:mode><SFDF2:mode>4): Likewise.
4931 (fseldfdf4): Likewise.
4932 (fselsfdf4): Likewise.
4933 (mov<SFDF:mode><SFDF2:mode>cc_p9): Add support for the ISA 3.0
4934 comparison instructions that set a 0/-1 mask, and use it for
4935 floating point conditional move via XXSEL.
4936 (fpmask<mode>): Likewise.
4937 (xxsel<mode>): Likewise.
4938 * config/rs6000/predicates.md (min_max_operator): Delete, no
4939 longer used.
4940 (fpmask_comparison_operaton): New insn for ISA 3.0 comparison
4941 instructions that generate a 0/-1 mask for use with XXSEL.
4942 * config/rs6000/rs6000.h (TARGET_MINMAX_SF): New helper macros to
4943 say whether floating point min/max is available, either through
4944 FSEL, ISA 2.06 min/max, and ISA 3.0 min/max instrucitons.
4945 (TARGET_MINMAX_DF): Likewise.
4946
4947 2016-05-27 Alan Modra <amodra@gmail.com>
4948
4949 PR rtl-optimization/71275
4950 * ira.c (ira): Call loop_optimizer_init to set up bb_loop_depth
4951 for update_equiv_regs and combine_and_move_insns.
4952
4953 2016-05-26 Uros Bizjak <ubizjak@gmail.com>
4954
4955 * config/i386/i386.md (*movqi_internal) <attr "isa">: Use
4956 if_then_else or cond RTXes to calculate attribute value.
4957 * config/i386/mmx.md (*vec_extractv2sf_1) <attr "prefix_rep">: Ditto.
4958 <attr "length_immediate>: Ditto.
4959 (*vec_extractv2sf_1) <attr "length_immediate">: Ditto.
4960 * config/i386/sse.md (sse_loadlps) <attr "length_immediate">: Ditto.
4961 (*vec_concatv2sf_sse4_1) <attr "isa">: Ditto.
4962 <attr "type">: Ditto.
4963 <attr "prefix_data16">: Ditto.
4964 <attr "prefix_extra">: Ditto.
4965 <attr "length_immediate">: Ditto.
4966 <attr "prefix">: Ditto.
4967 (vec_set<mode>_0) <attr "isa">: Ditto.
4968 <attr "prefix_extra">: Ditto.
4969 <attr "length_immediate">: Ditto.
4970 <attr "prefix">: Ditto.
4971 (*vec_interleave_highv2df) <attr "prefix_data16">: Ditto.
4972 (*vec_interleave_lowv2df) <attr "prefix_data16">: Ditto.
4973 (sse2_storelpd) <attr "prefix_data16">: Ditto.
4974 (sse2_loadhpd) <attr "prefix_data16">: Ditto.
4975 (sse2_loadlpd) <attr "prefix_data16">: Ditto.
4976 <attr "length_immediate">: Ditto.
4977 <attr "prefix">: Ditto.
4978 (sse2_movsd) <attr "length_immediate">: Ditto.
4979 <attr "prefix">: Ditto.
4980 (vec_concatv2df) <attr "isa">: Ditto.
4981 <attr "prefix">: Ditto.
4982 (*vec_extractv4si) <attr "prefix_extra">: Ditto.
4983 (*vec_extractv2di_1) <attr "isa">: Ditto.
4984 <attr "type">: Ditto.
4985 <attr "length_immediate">: Ditto.
4986 <attr "prefix_rex">: Ditto.
4987 <attr "prefix_extra">: Ditto.
4988 (*vec_concatv2si_sse4_1) <attr "type">: Ditto.
4989 <attr "prefix_extra">: Ditto.
4990 <attr "length_immediate">: Ditto.
4991 (vec_concatv2di) <attr "isa">: Ditto.
4992 <attr "prefix_extra">: Ditto.
4993 <attr "length_immediate">: Ditto.
4994 <attr "prefix">: Ditto.
4995
4996 2016-05-26 Martin Liska <mliska@suse.cz>
4997
4998 * tree-ssa-loop-ivopts.c (comp_cost::infinite_cost_p): New
4999 function.
5000 (operator+): Likewise.
5001 (operator-): Likewise.
5002 (comp_cost::operator+=): Likewise.
5003 (comp_cost::operator-=): Likewise.
5004 (comp_cost::operator/=): Likewise.
5005 (comp_cost::operator*=): Likewise.
5006 (operator<): Likewise.
5007 (operator==): Likewise.
5008 (operator<=): Likewise.
5009 (new_cost): Remove.
5010 (infinite_cost_p): Likewise.
5011 (add_costs): Likewise.
5012 (sub_costs): Likewise.
5013 (compare_costs): Likewise.
5014 (set_group_iv_cost): Use the newly introduced functions.
5015 (get_address_cost): Likewise.
5016 (get_shiftadd_cost): Likewise.
5017 (force_expr_to_var_cost): Likewise.
5018 (split_address_cost): Likewise.
5019 (ptr_difference_cost): Likewise.
5020 (difference_cost): Likewise.
5021 (get_computation_cost_at): Likewise.
5022 (determine_group_iv_cost_generic): Likewise.
5023 (determine_group_iv_cost_address): Likewise.
5024 (determine_group_iv_cost_cond): Likewise.
5025 (autoinc_possible_for_pair): Likewise.
5026 (determine_group_iv_costs): Likewise.
5027 (cheaper_cost_pair): Likewise.
5028 (iv_ca_recount_cost): Likewise.
5029 (iv_ca_set_no_cp): Likewise.
5030 (iv_ca_set_cp): Likewise.
5031 (iv_ca_cost): Likewise.
5032 (iv_ca_new): Likewise.
5033 (iv_ca_dump): Likewise.
5034 (iv_ca_narrow): Likewise.
5035 (iv_ca_prune): Likewise.
5036 (iv_ca_replace): Likewise.
5037 (try_add_cand_for): Likewise.
5038 (try_improve_iv_set): Likewise.
5039 (find_optimal_iv_set): Likewise.
5040
5041 2016-05-26 Richard Sandiford <richard.sandiford@arm.com>
5042
5043 * tree-ssa-loop-ivopts.c (loop_body_includes_call): Don't assume
5044 that internal functions will clobber all caller-saved registers.
5045
5046 2016-05-26 Wilco Dijkstra <wdijkstr@arm.com>
5047
5048 * config/aarch64/aarch64.c (aarch64_case_values_threshold):
5049 Return a better case_values_threshold when optimizing.
5050
5051 2016-05-26 Wilco Dijkstra <wdijkstr@arm.com>
5052
5053 * config/aarch64/aarch64-simd.md (aarch64_combinez):
5054 Add ? to integer variant.
5055 (aarch64_combinez_be): Likewise.
5056
5057 2016-05-26 Jakub Jelinek <jakub@redhat.com>
5058
5059 * config/i386/sse.md (*vcvtps2ph_store<mask_name>): Use v constraint
5060 instead of x constraint.
5061 (vcvtps2ph256<mask_name>): Likewise.
5062
5063 * config/i386/sse.md (*ssse3_palignr<mode>_perm): Add avx512bw
5064 alternative. Formatting fix.
5065
5066 * config/i386/sse.md
5067 (<mask_codefor>avx512vl_shuf_<shuffletype>32x4_1<mask_name>): Rename
5068 to ...
5069 (avx512vl_shuf_<shuffletype>32x4_1<mask_name>): ... this.
5070 (*avx_vperm_broadcast_v4sf): Use v constraint instead of x. Use
5071 maybe_evex prefix instead of vex.
5072 (*avx_vperm_broadcast_<mode>): Use v constraint instead of x. Handle
5073 EXT_REX_SSE_REG_P (op0) case in the splitter.
5074
5075 2016-05-25 Jeff Law <law@redhat.com>
5076
5077 PR tree-optimization/71272
5078 * tree-ssa-threadbackward.c (convert_and_register_jump_thread_path):
5079 Update comments. Add test for empty path.
5080
5081 2016-05-25 Bill Seurer <seurer@linux.vnet.ibm.com>
5082
5083 * config/rs6000/altivec.h (vec_cmpne): Add #define for vec_cmpne.
5084 * config/rs6000/rs6000-builtin.def (vec_cmpne): Add vec_cmpne as a
5085 special case builtin.
5086 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
5087 code for ALTIVEC_BUILTIN_VEC_CMPNE.
5088 * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
5089 for __builtin_vec_cmpne.
5090
5091 2016-05-25 Eric Botcazou <ebotcazou@adacore.com>
5092
5093 * tree-ssa-phiopt.c (factor_out_conditional_conversion): Remove
5094 redundant test and bail out if the type of the new operand is not
5095 a GIMPLE register type after stripping a VIEW_CONVERT_EXPR.
5096
5097 2016-05-25 Uros Bizjak <ubizjak@gmail.com>
5098
5099 * config/i386/i386.opt (ix86_target_flags_explicit): Remove.
5100 (x_ix86_target_flags_explicit): Remove.
5101 * config/i386/i386.c (ix86_function_specific_save): Do not copy
5102 x_ix86_target_flags_explicit.
5103 (ix86_function_specific_restore): Ditto.
5104
5105 2016-05-25 Uros Bizjak <ubizjak@gmail.com>
5106 H.J. Lu <hongjiu.lu@intel.com>
5107
5108 PR target/70738
5109 * common/config/i386/i386-common.c
5110 (OPTION_MASK_ISA_GENERAL_REGS_ONLY_UNSET): New.
5111 (ix86_handle_option) <case OPT_mgeneral_regs_only>: Disable
5112 MPX, MMX, SSE and x87 instructions for -mgeneral-regs-only.
5113 * config/i386/i386.opt (ix86_target_flags): Add new Variable.
5114 (-mgeneral-regs-only): Add new option.
5115 * config/i386/i386.c (ix86_option_override_internal): Don't enable
5116 x87 instructions if only general registers are allowed.
5117 (ix86_target_string): Add ix86_flags argument. Handle additional
5118 flags options through ix86_flags argument. Update all callers.
5119 * doc/invoke.texi (x86 Options): Document -mgeneral-regs-only.
5120
5121 2016-05-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5122
5123 PR rtl-optimization/66940
5124 * ifcvt.c (noce_get_alt_condition): Check that incrementing or
5125 decrementing desired_val will not overflow before performing these
5126 operations.
5127
5128 2016-05-25 Ilya Verbin <ilya.verbin@intel.com>
5129
5130 * config/i386/i386-builtin-types.def: Add V16SI_FTYPE_V16SF,
5131 V8DF_FTYPE_V8DF_ROUND, V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND.
5132 * config/i386/i386.c (enum ix86_builtins): Add
5133 IX86_BUILTIN_CVTPS2DQ512_MASK, IX86_BUILTIN_FLOORPS512,
5134 IX86_BUILTIN_FLOORPD512, IX86_BUILTIN_CEILPS512, IX86_BUILTIN_CEILPD512,
5135 IX86_BUILTIN_TRUNCPS512, IX86_BUILTIN_TRUNCPD512,
5136 IX86_BUILTIN_CVTPS2DQ512, IX86_BUILTIN_VEC_PACK_SFIX512,
5137 IX86_BUILTIN_FLOORPS_SFIX512, IX86_BUILTIN_CEILPS_SFIX512,
5138 IX86_BUILTIN_ROUNDPS_AZ_SFIX512.
5139 (builtin_description bdesc_args): Add __builtin_ia32_floorps512,
5140 __builtin_ia32_ceilps512, __builtin_ia32_truncps512,
5141 __builtin_ia32_floorpd512, __builtin_ia32_ceilpd512,
5142 __builtin_ia32_truncpd512, __builtin_ia32_cvtps2dq512,
5143 __builtin_ia32_vec_pack_sfix512, __builtin_ia32_roundps_az_sfix512,
5144 __builtin_ia32_floorps_sfix512, __builtin_ia32_ceilps_sfix512.
5145 Change IX86_BUILTIN_CVTPS2DQ512 to IX86_BUILTIN_CVTPS2DQ512_MASK for
5146 __builtin_ia32_cvtps2dq512_mask.
5147 (ix86_expand_args_builtin): Handle V8DF_FTYPE_V8DF_ROUND,
5148 V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF.
5149 (ix86_builtin_vectorized_function): Handle builtins mentioned above.
5150 * config/i386/sse.md
5151 (<mask_codefor>avx512f_fix_notruncv16sfv16si<mask_name><round_name>):
5152 Rename to ...
5153 (avx512f_fix_notruncv16sfv16si<mask_name><round_name>): ... this.
5154 (<mask_codefor>avx512f_cvtpd2dq512<mask_name><round_name>): Rename
5155 to ...
5156 (avx512f_cvtpd2dq512<mask_name><round_name>): ... this.
5157 (avx512f_vec_pack_sfix_v8df): New define_expand.
5158 (avx512f_roundpd512): Rename to ...
5159 (avx512f_round<castmode>512): ... this. Change iterator.
5160 (avx512f_roundps512_sfix): New define_expand.
5161 (round<mode>2_sfix): Change iterator.
5162
5163 2016-05-25 Nick Clifton <nickc@redhat.com>
5164
5165 * config/msp430/msp430.c (msp430_attr): Produce an error if a
5166 static interrupt handler is detected.
5167 * config/msp430/msp430.h (LIB_SPEC): Do not use msp430.ld as the
5168 default linker script.
5169 * config/msp430/msp430.md (movpsihi2_lo): New pattern for loading
5170 the low part of a symbolic pointer.
5171
5172 2016-05-25 Richard Biener <rguenther@suse.de>
5173
5174 PR tree-optimization/71261
5175 * tree-if-conv.c (ifcvt_split_def_stmt): Walk uses on the
5176 interesting stmt instead of immediate uses when looking
5177 for the use operand to replace.
5178
5179 2016-05-25 Martin Liska <mliska@suse.cz>
5180
5181 * ipa-inline.c (edge_badness): Use 'w/' instead of 'w'.
5182
5183 2016-05-25 Richard Biener <rguenther@suse.de>
5184
5185 PR tree-optimization/71264
5186 * tree-vect-stmts.c (vect_init_vector): Properly deal with
5187 vector type val.
5188
5189 2016-05-25 Martin Liska <mliska@suse.cz>
5190
5191 PR tree-optimization/71239
5192 * tree.c (array_at_struct_end_p): Do not call operand_equal_p
5193 if DECL_SIZE is NULL.
5194
5195 2016-05-25 Richard Biener <rguenther@suse.de>
5196
5197 * timevar.def (TV_TREE_LOOP_IFCVT): Add.
5198 * tree-if-conv.c (pass_data_if_conversion): Use it.
5199
5200 2016-05-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
5201
5202 * cgraph.c (cgraph_node::get_availability): Fix typo in comment.
5203 * symtab.c (symtab_node::binds_to_current_def_p): Likewise.
5204 * varpool.c (varpool_node::get_availability): Likewise.
5205
5206 2016-05-24 Michael Meissner <meissner@linux.vnet.ibm.com>
5207
5208 * config/rs6000/altivec.md (VNEG iterator): New iterator for
5209 VNEGW/VNEGD instructions.
5210 (p9_neg<mode>2): New insns for ISA 3.0 VNEGW/VNEGD.
5211 (neg<mode>2): Add expander for V2DImode added in ISA 2.07, and
5212 support for ISA 3.0 VNEGW/VNEGD instructions.
5213
5214 2016-05-24 Cesar Philippidis <cesar@codesourcery.com>
5215
5216 * gimplify.c (omp_notice_variable): Use zero-length arrays for data
5217 pointers inside OACC_DATA regions.
5218 (gimplify_scan_omp_clauses): Prune firstprivate clause associated
5219 with OACC_DATA, OACC_ENTER_DATA and OACC_EXIT data regions.
5220 (gimplify_adjust_omp_clauses): Fix typo in comment.
5221
5222 2016-05-24 Michael Meissner <meissner@linux.vnet.ibm.com>
5223
5224 * config/rs6000/altivec.md (VParity): New mode iterator for vector
5225 parity built-in functions.
5226 (p9v_ctz<mode>2): Add support for ISA 3.0 vector count trailing
5227 zeros.
5228 (p9v_parity<mode>2): Likewise.
5229 * config/rs6000/vector.md (VEC_IP): New mode iterator for vector
5230 parity.
5231 (ctz<mode>2): ISA 3.0 expander for vector count trailing zeros.
5232 (parity<mode>2): ISA 3.0 expander for vector parity.
5233 * config/rs6000/rs6000-builtin.def (BU_P9_MISC_1): New macros for
5234 power9 built-ins.
5235 (BU_P9_64BIT_MISC_0): Likewise.
5236 (BU_P9_MISC_0): Likewise.
5237 (BU_P9V_AV_1): Likewise.
5238 (BU_P9V_AV_2): Likewise.
5239 (BU_P9V_AV_3): Likewise.
5240 (BU_P9V_AV_P): Likewise.
5241 (BU_P9V_VSX_1): Likewise.
5242 (BU_P9V_OVERLOAD_1): Likewise.
5243 (BU_P9V_OVERLOAD_2): Likewise.
5244 (BU_P9V_OVERLOAD_3): Likewise.
5245 (VCTZB): Add vector count trailing zeros support.
5246 (VCTZH): Likewise.
5247 (VCTZW): Likewise.
5248 (VCTZD): Likewise.
5249 (VPRTYBD): Add vector parity support.
5250 (VPRTYBQ): Likewise.
5251 (VPRTYBW): Likewise.
5252 (VCTZ): Add overloaded vector count trailing zeros support.
5253 (VPRTYB): Add overloaded vector parity support.
5254 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
5255 overloaded vector count trailing zeros and parity instructions.
5256 * config/rs6000/rs6000.md (wd mode attribute): Add V1TI and TI for
5257 vector parity support.
5258 * config/rs6000/altivec.h (vec_vctz): Add ISA 3.0 vector count
5259 trailing zeros support.
5260 (vec_cntlz): Likewise.
5261 (vec_vctzb): Likewise.
5262 (vec_vctzd): Likewise.
5263 (vec_vctzh): Likewise.
5264 (vec_vctzw): Likewise.
5265 (vec_vprtyb): Add ISA 3.0 vector parity support.
5266 (vec_vprtybd): Likewise.
5267 (vec_vprtybw): Likewise.
5268 (vec_vprtybq): Likewise.
5269 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
5270 the ISA 3.0 vector count trailing zeros and vector parity built-in
5271 functions.
5272
5273 2016-05-24 Kugan Vivekanandarajah <kuganv@linaro.org>
5274
5275 * tree-ssa-reassoc.c (sort_by_operand_rank): Skip checking gimple_bb
5276 when there is stmt_to_insert.
5277
5278 2016-05-24 Martin Sebor <msebor@redhat.com>
5279
5280 PR c++/71147
5281 * tree.h (complete_or_array_type_p): New inline function.
5282
5283 2016-05-24 Jakub Jelinek <jakub@redhat.com>
5284
5285 * config/i386/i386.h (TARGET_AVOID_4BYTE_PREFIXES): Define.
5286 * config/i386/constraints.md (Yr): Test TARGET_AVOID_4BYTE_PREFIXES
5287 rather than X86_TUNE_AVOID_4BYTE_PREFIXES.
5288
5289 * config/i386/sse.md (<sse4_1>_round<ssemodesuffix><avxsizesuffix>):
5290 Limit 1st alternative to noavx isa, split 2nd alternative into one
5291 noavx and one avx alternative, use *x and Bm in the former and
5292 x and m in the latter.
5293
5294 * config/i386/sse.md (vec_set<mode>_0): Use sse4_noavx isa instead
5295 of sse4 for the first alternative, drop %v from the template
5296 and d operand modifier. Split second alternative into one sse4_noavx
5297 and one avx alternative, use *x instead of *v in the former and v
5298 instead of *v in the latter.
5299 (*sse4_1_extractps): Use noavx isa instead of * for the first
5300 alternative, drop %v from the template. Split second alternative into
5301 one noavx and one avx alternative, use *x instead of *v in the
5302 former and v instead of *v in the latter.
5303 (<vi8_sse4_1_avx2_avx512>_movntdqa): Guard the first 2 alternatives
5304 with noavx and the last one with avx.
5305 (sse4_1_phminposuw): Guard first alternative with noavx isa,
5306 split the second one into one noavx and one avx alternative,
5307 use *x and Bm in the former and x and m in the latter one.
5308 (<sse4_1>_ptest<mode>): Use noavx instead of * for the first two
5309 alternatives.
5310
5311 * config/i386/sse.md (sse4_1_<code>v8qiv8hi2<mask_name>): Limit
5312 first two alternatives to noavx, use *x instead of *v in the second
5313 one, add avx alternative without *.
5314 (sse4_1_<code>v4qiv4si2<mask_name>, sse4_1_<code>v4hiv4si2<mask_name>,
5315 sse4_1_<code>v2qiv2di2<mask_name>, sse4_1_<code>v2hiv2di2<mask_name>,
5316 sse4_1_<code>v2siv2di2<mask_name>): Likewise.
5317
5318 2016-05-24 Jeff Law <law@redhat.com>
5319
5320 * tree-ssa-threadbackwards.c (convert_and_register_jump_thread_path):
5321 New function, extracted from...
5322 (fsm_find_control_statement_thread_paths): Here. Use the new function.
5323 Allow simple copies and constant initializations in the SSA chain.
5324
5325 2016-05-24 Marek Polacek <polacek@redhat.com>
5326
5327 PR c/71249
5328 * gimplify.c (gimplify_switch_expr): Look into the innermost lexical
5329 scope.
5330
5331 2016-05-24 Jakub Jelinek <jakub@redhat.com>
5332
5333 PR c++/71257
5334 * tree-vect-stmts.c (vectorizable_simd_clone_call): Handle
5335 SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP like
5336 SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP. Add
5337 SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP and
5338 SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP cases explicitly.
5339
5340 2016-05-24 Richard Biener <rguenther@suse.de>
5341
5342 PR tree-optimization/71240
5343 * tree-ssa-math-opts.c (init_symbolic_number): Verify the source
5344 has integral type.
5345
5346 2016-05-24 Richard Biener <rguenther@suse.de>
5347
5348 PR tree-optimization/71230
5349 * tree-ssa-reassoc.c (zero_one_operation): Handle negate special ops.
5350
5351 2016-05-24 Richard Sandiford <richard.sandiford@arm.com>
5352
5353 * tree-vectorizer.h (vectorizable_comparison): Delete.
5354 * tree-vect-loop.c (vectorizable_reduction): Remove redundant
5355 PURE_SLP_STMT check.
5356 * tree-vect-stmts.c (vectorizable_call): Likewise.
5357 (vectorizable_simd_clone_call): Likewise.
5358 (vectorizable_conversion): Likewise.
5359 (vectorizable_assignment): Likewise.
5360 (vectorizable_shift): Likewise.
5361 (vectorizable_operation): Likewise.
5362 (vectorizable_load): Likewise.
5363 (vectorizable_condition): Likewise.
5364 (vectorizable_store): Likewise. Assert that we don't have
5365 hybrid SLP.
5366 (vectorizable_comparison): Make static. Remove redundant
5367 PURE_SLP_STMT check.
5368 (vect_transform_stmt): Assert that we always have an slp_node
5369 if PURE_SLP_STMT.
5370
5371 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5372
5373 * config/arm/neon.md (ashldi3_neon): Replace comparison of INTVAL of
5374 operands[2] against 1 with comparison against CONST1_RTX.
5375 (<shift>di3_neon): Likewise.
5376 * config/arm/predicates.md (const0_operand): Replace with comparison
5377 against CONST0_RTX.
5378
5379 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5380
5381 * config/arm/arm.md (ashldi3): Replace comparison of INTVAL of
5382 operands[2] against 1 with comparison against CONST1_RTX.
5383 (ashrdi3): Likewise.
5384 (lshrdi3): Likewise.
5385 (ashlsi3): Replace cast of INTVAL to unsigned HOST_WIDE_INT with
5386 UINTVAL.
5387 (ashrsi3): Likewise.
5388 (lshrsi3): Likewise.
5389 (rotrsi3): Likewise.
5390 (define_split above *compareqi_eq0): Likewise.
5391 (define_split above "prologue"): Likewise.
5392 * config/arm/arm.c (thumb1_size_rtx_costs): Likewise.
5393 * config/arm/predicates.md (shift_operator): Likewise.
5394 (shift_nomul_operator): Likewise.
5395 (sat_shift_operator): Likewise.
5396 (thumb1_cmp_operand): Likewise.
5397 (const_neon_scalar_shift_amount_operand): Replace manual range
5398 check with IN_RANGE.
5399 * config/arm/thumb1.md (define_peephole2 above *thumb_subdi3):
5400 Replace cast of INTVAL to unsigned HOST_WIDE_INT with UINTVAL.
5401
5402 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5403
5404 * config/arm/arm.md (andsi3): Replace cast of 1 to HOST_WIDE_INT
5405 with HOST_WIDE_INT_1.
5406 (insv): Likewise.
5407 * config/arm/arm.c (optimal_immediate_sequence): Replace cast of
5408 1 to unsigned HOST_WIDE_INT with HOST_WIDE_INT_1U.
5409 (arm_canonicalize_comparison): Likewise.
5410 (thumb1_rtx_costs): Replace cast of 1 to HOST_WIDE_INT with
5411 HOST_WIDE_INT_1.
5412 (thumb1_size_rtx_costs): Likewise.
5413 (vfp_const_double_index): Replace cast of 1 to unsigned
5414 HOST_WIDE_INT with HOST_WIDE_INT_1U.
5415 (get_jump_table_size): Replace cast of 1 to HOST_WIDE_INT with
5416 HOST_WIDE_INT_1.
5417 (arm_asan_shadow_offset): Replace cast of 1 to unsigned
5418 HOST_WIDE_INT with HOST_WIDE_INT_1U.
5419 * config/arm/neon.md (vec_set<mode>): Replace cast of 1 to
5420 HOST_WIDE_INT with HOST_WIDE_INT_1.
5421
5422 2016-05-24 Marek Polacek <polacek@redhat.com>
5423
5424 * tree-cfg.h (should_remove_lhs_p): New predicate.
5425 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Use it.
5426 * gimplify.c (gimplify_modify_expr): Likewise.
5427 * tree-cfg.c (verify_gimple_call): Likewise.
5428 * tree-cfgcleanup.c (fixup_noreturn_call): Likewise.
5429 * gimple-fold.c: Include "tree-cfg.h".
5430 (gimple_fold_call): Use should_remove_lhs_p.
5431
5432 2016-05-24 Richard Biener <rguenther@suse.de>
5433
5434 PR tree-optimization/71253
5435 * cfganal.h (control_dependences): Make robust against edge
5436 and BB removal.
5437 (control_dependences::control_dependences): Remove edge_list argument.
5438 (control_dependences::get_edge): Remove.
5439 (control_dependences::get_edge_src): Add.
5440 (control_dependences::get_edge_dest): Likewise.
5441 (control_dependences::m_el): Make a vector of edge src/dest index.
5442 * cfganal.c (control_dependences::find_control_dependence): Adjust.
5443 (control_dependences::control_dependences): Likewise.
5444 (control_dependences::~control_dependence): Likewise.
5445 (control_dependences::get_edge): Remove.
5446 (control_dependences::get_edge_src): Add.
5447 (control_dependences::get_edge_dest): Likewise.
5448 * tree-ssa-dce.c (mark_control_dependent_edges_necessary): Use
5449 get_edge_src.
5450 (perform_tree_ssa_dce): Adjust.
5451 * tree-loop-distribution.c (create_edge_for_control_dependence): Use
5452 get_edge_src.
5453 (pass_loop_distribution::execute): Adjust. Do loop destroying
5454 conditional on changed.
5455
5456 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5457
5458 PR target/69857
5459 * config/arm/arm.c (gen_operands_ldrd_strd): Remove bogus early
5460 return. Reindent transformation comment and mention the ARM state
5461 behavior.
5462
5463 2016-05-24 Kugan Vivekanandarajah <kuganv@linaro.org>
5464
5465 PR middle-end/71252
5466 * tree-ssa-reassoc.c (rewrite_expr_tree_parallel): Add stmt_to_insert
5467 after build_and_add_sum creates new use stmt.
5468
5469 2016-05-24 Richard Sandiford <richard.sandiford@arm.com>
5470
5471 * tree-vect-stmts.c (vectorizable_load): Reorder checks so that
5472 load_lanes/grouped_load classification comes first. Don't check
5473 whether the vectorization factor is a multiple of the group size
5474 for load_lanes.
5475
5476 2016-05-24 Richard Sandiford <richard.sandiford@arm.com>
5477
5478 * tree-vect-data-refs.c (vect_analyze_group_access_1): Set
5479 GROUP_GAP for single-element interleaving.
5480 * tree-vect-stmts.c (vectorizable_load): Remove force_peeling
5481 variable.
5482
5483 2016-05-24 Richard Biener <rguenther@suse.de>
5484
5485 PR middle-end/70434
5486 PR c/69504
5487 * tree-ssa.c (non_rewritable_mem_ref_base): Make sure to mark
5488 bases which are accessed with non-invariant indices.
5489 * gimple-fold.c (maybe_canonicalize_mem_ref_addr): Re-write
5490 constant index ARRAY_REFs of vectors into BIT_FIELD_REFs.
5491
5492 2016-05-24 Kugan Vivekanandarajah <kuganv@linaro.org>
5493
5494 PR middle-end/71170
5495 * tree-ssa-reassoc.c (struct operand_entry): Add field stmt_to_insert.
5496 (add_to_ops_vec): Add stmt_to_insert.
5497 (add_repeat_to_ops_vec): Init stmt_to_insert.
5498 (insert_stmt_before_use): New.
5499 (transform_add_to_multiply): Remove mult_stmt insertion and add it
5500 to ops vector.
5501 (get_ops): Init stmt_to_insert.
5502 (maybe_optimize_range_tests): Likewise.
5503 (rewrite_expr_tree): Insert stmt_to_insert before use stmt.
5504 (rewrite_expr_tree_parallel): Likewise.
5505 (reassociate_bb): Likewise.
5506
5507 2016-05-23 Michael Meissner <meissner@linux.vnet.ibm.com>
5508
5509 PR target/71201
5510 * config/rs6000/altivec.md (altivec_vperm_<mode>_internal): Drop
5511 ISA 3.0 xxperm fusion alternative.
5512 (altivec_vperm_v8hiv16qi): Likewise.
5513 (altivec_vperm_<mode>_uns_internal): Likewise.
5514 (vperm_v8hiv4si): Likewise.
5515 (vperm_v16qiv8hi): Likewise.
5516
5517 2016-05-23 Michael Meissner <meissner@linux.vnet.ibm.com>
5518 Kelvin Nilsen <kelvin@gcc.gnu.org>
5519
5520 * config/rs6000/rs6000.c (rs6000_expand_vector_set): Generate
5521 vpermr/xxpermr on ISA 3.0.
5522 (altivec_expand_vec_perm_le): Likewise.
5523 * config/rs6000/altivec.md (UNSPEC_VPERMR): New unspec.
5524 (altivec_vpermr_<mode>_internal): Add VPERMR/XXPERMR support for
5525 ISA 3.0.
5526
5527 2016-05-23 Uros Bizjak <ubizjak@gmail.com>
5528
5529 * config/i386/i386.h (IS_STACK_MODE): Enable for
5530 TARGET_MIX_SSE_I387. Rewrite using X87_FLOAT_MODE_P and
5531 SSE_FLOAT_MODE_P macros.
5532 * config/i386/i386.c (ix86_preferred_reload_class): Use
5533 IS_STACK_MODE, INTEGER_CLASS_P, FLOAT_CLASS_P and Q_CLASS_P macros.
5534 Cleanup regclass processing for CONST_DOUBLE_P.
5535 (ix86_preferred_output_reload_class): Use IS_STACK_MODE macro.
5536 (ix86_rtx_costs): Remove redundant TARGET_80387 check
5537 with IS_STACK_MODE macro.
5538 * config/i386/i386.md: Replace SSE_FLOAT_MODE_P (DFmode)
5539 with TARGET_SSE2.
5540 (*movdf_internal): Use IS_STACK_MODE macro.
5541 (*movsf_internal): Ditto.
5542
5543 2016-05-23 Marc Glisse <marc.glisse@inria.fr>
5544
5545 * match.pd (a * (1 << b), ~x & ~y, ~X ^ ~Y, (X ^ Y) ^ Y, ~ (-A),
5546 ~ (A - 1), ~(~X >> Y), ~(~X >>r Y)): Relax constraints.
5547
5548 2016-05-23 Jeff Law <law@redhat.com>
5549
5550 * tree-ssa-threadbackward.c (profitable_jump_thread_path): New function
5551 extracted from ...
5552 (fsm_find_control_statement_thread_paths): Call it.
5553
5554 2016-05-23 Martin Jambor <mjambor@suse.cz>
5555
5556 PR ipa/71234
5557 * ipa-cp.c (ipa_get_indirect_edge_target_1): Only check value of
5558 from_global_constant if t is not NULL.
5559
5560 2016-05-23 Marek Polacek <polacek@redhat.com>
5561
5562 PR c/49859
5563 * common.opt (Wswitch-unreachable): New option.
5564 * doc/invoke.texi: Document -Wswitch-unreachable.
5565 * gimplify.c (gimplify_switch_expr): Implement the -Wswitch-unreachable
5566 warning.
5567
5568 2016-05-23 Bin Cheng <bin.cheng@arm.com>
5569
5570 * tree-ssa-address.c (copy_ref_info): Check NULL TMR_STEP when
5571 TMR_INDEX is non-NULL.
5572
5573 2016-05-23 Richard Biener <rguenther@suse.de>
5574
5575 PR tree-optimization/71230
5576 * tree-ssa-reassoc.c (acceptable_pow_call): Move initial condition...
5577 (try_special_add_to_ops): ... here. Always test for single-use.
5578
5579 2016-05-23 Martin Jambor <mjambor@suse.cz>
5580
5581 * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Create an empty
5582 default block if a PHI node in the original one would be resized.
5583
5584 2016-05-23 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
5585
5586 PR tree-optimization/58135
5587 * tree-vect-slp.c: When group size is not multiple
5588 of vector size, allow splitting of store group at
5589 vector boundary.
5590
5591 2016-05-23 Christophe Lyon <christophe.lyon@linaro.org>
5592
5593 * config/arm/arm_neon.h (vtst_p16, vtstq_p16): New.
5594
5595 2016-05-22 Jakub Jelinek <jakub@redhat.com>
5596
5597 * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
5598 vec_set_hi_<mode><mask_name>): Add && <mask_avx512dq_condition>
5599 condition. For !TARGET_AVX512DQ, emit 32x4 instruction instead
5600 of 64x2.
5601
5602 * config/i386/sse.md (vec_set_lo_v16hi, vec_set_hi_v16hi,
5603 vec_set_lo_v32qi, vec_set_hi_v32qi): Add alternative with
5604 v constraint instead of x and vinserti32x4 insn.
5605
5606 * config/i386/sse.md (i128vldq): New mode iterator.
5607 (avx2_vbroadcasti128_<mode>, avx_vbroadcastf128_<mode>): Add
5608 avx512dq and avx512vl alternatives.
5609
5610 * config/i386/sse.md (avx2_vec_dupv4df): Use v instead of x
5611 constraint, use maybe_evex prefix instead of vex.
5612 (vec_dupv4sf): Use v constraint instead of x for output
5613 operand except for noavx alternative, use Yv constraint
5614 instead of x for input. Use maybe_evex prefix instead of vex.
5615 (*vec_dupv4si): Likewise.
5616 (*vec_dupv2di): Likewise.
5617
5618 2016-05-22 Kugan Vivekanandarajah <kuganv@linaro.org>
5619
5620 PR middle-end/40921
5621 * tree-ssa-reassoc.c (try_special_add_to_ops): New.
5622 (linearize_expr_tree): Call try_special_add_to_ops.
5623 (reassociate_bb): Convert MULT_EXPR by (-1) to NEGATE_EXPR.
5624
5625 2016-05-21 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
5626
5627 * config/avr/avr.c (avr_expand_prologue): Add INCOMING_FRAME_SP_OFFSET
5628 to computed stack_usage.
5629
5630 2016-05-21 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
5631
5632 PR target/71103
5633 * config/avr/avr.md (define_expand "mov<mode>"): If the source
5634 operand is subreg (symbol_ref) then move the symbol ref to register.
5635
5636 2016-05-21 Jan Hubicka <hubicka@ucw.cz>
5637
5638 * tree.c (array_at_struct_end_p): Look through MEM_REF.
5639
5640 2016-05-21 Kugan Vivekanandarajah <kuganv@linaro.org>
5641
5642 PR middle-end/71179
5643 * tree-ssa-reassoc.c (transform_add_to_multiply): Disallow float
5644 VECTOR type.
5645
5646 2016-05-20 Eric Botcazou <ebotcazou@adacore.com>
5647
5648 * tree-vrp.c (compare_values_warnv): Simplify handling of symbolic
5649 ranges by calling get_single_symbol and tidy up. Look more closely
5650 into NAME + CST1 vs CST2 comparisons if type overflow is undefined.
5651
5652 2016-05-20 Jeff Law <law@redhat.com>
5653
5654 * bitmap.c (bitmap_find_bit): Remove useless test.
5655
5656 2016-05-20 Segher Boessenkool <segher@kernel.crashing.org>
5657
5658 * function.c (thread_prologue_and_epilogue_insns): Commit the
5659 insertion of the epilogue.
5660
5661 2016-05-20 Martin Jambor <mjambor@suse.cz>
5662
5663 PR tree-optimization/70884
5664 * tree-sra.c (initialize_constant_pool_replacements): Do not check
5665 should_scalarize_away_bitmap and cannot_scalarize_away_bitmap bits.
5666 (sort_and_splice_var_accesses): Do not consider multiple scalar reads
5667 of constant pool data as a reason for scalarization.
5668
5669 2016-05-20 Eric Botcazou <ebotcazou@adacore.com>
5670
5671 * config/arm/arm.c (arm_expand_prologue): Set the stack usage to 0
5672 for naked functions.
5673 (thumb1_expand_prologue): Likewise.
5674
5675 2016-05-20 Nathan Sidwell <nathan@acm.org>
5676
5677 * config/nvptx/nptx.c (nvptx_option_override): Only set
5678 flag_toplevel_reorder, if not explicitly specified. Set
5679 flag_no_common, unless explicitly specified.
5680
5681 2016-05-20 David Malcolm <dmalcolm@redhat.com>
5682
5683 * calls.c (can_implement_as_sibling_call_p): Mark param
5684 reg_parm_stack_space with ATTRIBUTE_UNUSED.
5685
5686 2016-05-20 Uros Bizjak <ubizjak@gmail.com>
5687
5688 * config/i386/i386.c (ix86_rtx_costs) <case CONST_DOUBLE>:
5689 Use IS_STACK_MODE when calculating cost of standard 80387 constants.
5690 Fallthru to CONST_VECTOR case to calculate cost of standard SSE
5691 constants.
5692 <case CONST_WIDE_INT>: Calculate cost of (MEM (SYMBOL_REF)).
5693 (ix86_legitimate_constant_p): Use CASE_CONST_SCALAR_INT
5694 and CASE_CONST_ANY.
5695
5696 2016-05-20 Cesar Philippidis <cesar@codesourcery.com>
5697
5698 * config/nvptx/nvptx.md (sincossf3): New pattern.
5699
5700 2016-05-20 David Malcolm <dmalcolm@redhat.com>
5701
5702 * calls.c (maybe_complain_about_tail_call): New function.
5703 (initialize_argument_information): Call
5704 maybe_complain_about_tail_call when clearing *may_tailcall.
5705 (can_implement_as_sibling_call_p): Call
5706 maybe_complain_about_tail_call when returning false.
5707 (expand_call): Read CALL_EXPR_MUST_TAIL_CALL and, if set,
5708 ensure try_tail_call is set. Call maybe_complain_about_tail_call
5709 if tail-call optimization fails.
5710 * cfgexpand.c (expand_call_stmt): Initialize
5711 CALL_EXPR_MUST_TAIL_CALL from gimple_call_must_tail_p.
5712 * gimple-pretty-print.c (dump_gimple_call): Dump
5713 gimple_call_must_tail_p.
5714 * gimple.c (gimple_build_call_from_tree): Call
5715 gimple_call_set_must_tail with the value of
5716 CALL_EXPR_MUST_TAIL_CALL.
5717 * gimple.h (enum gf_mask): Add GF_CALL_MUST_TAIL_CALL.
5718 (gimple_call_set_must_tail): New function.
5719 (gimple_call_must_tail_p): New function.
5720 * print-tree.c (print_node): Update printing of TREE_STATIC
5721 to reflect its use for CALL_EXPR_MUST_TAIL_CALL.
5722 * tree-core.h (struct tree_base): Add MUST_TAIL_CALL to the
5723 trailing comment listing applicable flags.
5724 * tree.h (CALL_EXPR_MUST_TAIL_CALL): New macro.
5725
5726 2016-05-20 David Malcolm <dmalcolm@redhat.com>
5727
5728 * calls.c (expand_call): Move "Rest of purposes for tail call
5729 optimizations to fail" to...
5730 (can_implement_as_sibling_call_p): ...this new function, and
5731 split into multiple "if" statements.
5732
5733 2016-05-20 Jan Hubicka <hubicka@ucw.cz>
5734
5735 * cfgloop.h (expected_loop_iterations_unbounded,
5736 expected_loop_iterations): Unconstify.
5737 * cfgloopanal.c (expected_loop_iterations_unbounded): Sanity check the
5738 profile with known upper bound; return 3 when profile is absent.
5739 (expected_loop_iterations): Update.
5740
5741 2016-05-20 Jan Hubicka <hubicka@ucw.cz>
5742
5743 * loop-doloop.c (doloop_optimize): Use get_estimated_loop_iterations_int
5744 and get_max_loop_iterations_int.
5745
5746 2016-05-20 Jan Hubicka <hubicka@ucw.cz>
5747
5748 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can not produce
5749 realistic upper bounds here.
5750
5751 2016-05-20 Jakub Jelinek <jakub@redhat.com>
5752
5753 PR c++/71210
5754 * gimple-fold.c (gimple_fold_call): Do not remove lhs of noreturn
5755 calls if the LHS is variable length or has addressable type.
5756 If targets[0]->decl is a noreturn call with void return type and
5757 zero arguments, adjust fntype and remove lhs in that case.
5758
5759 2016-05-20 Marc Glisse <marc.glisse@inria.fr>
5760
5761 PR tree-optimization/71079
5762 PR tree-optimization/71206
5763 * match.pd ((X ^ Y) ^ (X ^ Z)): Convert the arguments.
5764
5765 2016-05-20 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
5766
5767 * tree-vectorizer.c (get_vec_alignment_for_decl): New static function.
5768 (get_vec_alignment_for_array_decl): Likewise.
5769 (get_vec_alignment_for_record_decl): Likewise.
5770 (increase_alignment::execute): Move code to find alignment to
5771 get_vec_alignment_for_array_decl and call get_vec_alignment_for_decl.
5772 (type_align_map): New hash_map.
5773
5774 2016-05-20 Richard Guenther <rguenther@suse.de>
5775
5776 PR tree-optimization/29756
5777 * tree.def (BIT_INSERT_EXPR): New tcc_expression tree code.
5778 * expr.c (expand_expr_real_2): Handle BIT_INSERT_EXPR.
5779 * fold-const.c (operand_equal_p): Likewise.
5780 (fold_ternary_loc): Add constant folding of BIT_INSERT_EXPR.
5781 * gimplify.c (gimplify_expr): Handle BIT_INSERT_EXPR.
5782 * tree-inline.c (estimate_operator_cost): Likewise.
5783 * tree-pretty-print.c (dump_generic_node): Likewise.
5784 * tree-ssa-operands.c (get_expr_operands): Likewise.
5785 * cfgexpand.c (expand_debug_expr): Likewise.
5786 * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
5787 * gimple.c (get_gimple_rhs_num_ops): Handle BIT_INSERT_EXPR.
5788 * tree-cfg.c (verify_gimple_assign_ternary): Verify BIT_INSERT_EXPR.
5789 * tree-ssa.c (non_rewritable_lvalue_p): We can rewrite
5790 vector inserts using BIT_FIELD_REF or MEM_REF on the lhs.
5791 (execute_update_addresses_taken): Do it.
5792
5793 2016-05-20 Richard Biener <rguenther@suse.de>
5794
5795 PR tree-optimization/71185
5796 * tree-ssa-loop-prefetch.c (gather_memory_references): Drop
5797 register operations.
5798
5799 2016-05-20 Richard Biener <rguenther@suse.de>
5800
5801 * tree-if-conv.c (add_bb_predicate_gimplified_stmts): Use
5802 gimple_seq_add_seq_without_update.
5803 (release_bb_predicate): Assert we have no operands to free.
5804 (if_convertible_loop_p_1): Calculate post dominators later.
5805 Do not free BB predicates here.
5806 (combine_blocks): Do not recompute BB predicates.
5807 (version_loop_for_if_conversion): Save BB predicates around
5808 loop versioning.
5809
5810 2016-05-19 Segher Boessenkool <segher@kernel.crashing.org>
5811
5812 * function.c (make_epilogue_seq): Remove epilogue_end parameter.
5813 (thread_prologue_and_epilogue_insns): Remove bb_flags. Restructure
5814 code. Ignore sibcalls on EDGE_IGNORE edges.
5815 * shrink-wrap.c (handle_simple_exit): New function. Set EDGE_IGNORE
5816 on edges for sibcalls that run without prologue. The rest of the
5817 function is combined from...
5818 (fix_fake_fallthrough_edge): ... this, and ...
5819 (try_shrink_wrapping): ... a part of this. Remove the bb_with
5820 function argument, make it a local variable.
5821
5822 2016-05-19 Sandra Loosemore <sandra@codesourcery.com>
5823
5824 * config/i386/cygming.h (DWARF2_UNWIND_INFO): Allow
5825 --disable-sjlj-exceptions for TARGET_BI_ARCH to select DWARF-2 EH
5826 for 32-bit mode and SEH for 64-bit.
5827 * config/i386/mingw32.h (SHARED_LIBGCC_UNDEFS_SPEC): Handle
5828 TARGET_64BIT_DEFAULT.
5829
5830 2016-05-19 Ryan Burn <contact@rnburn.com>
5831
5832 * Makefile.in (GTFILES): Add cilk.h and cilk-common.c.
5833 * gengtype.c (open_base_files): Add cilk.h to ifiles.
5834
5835 2016-05-19 Uros Bizjak <ubizjak@gmail.com>
5836
5837 * sched-deps.c (sched_analyze_2) <case TRAP_IF>: Also
5838 force pending loads from memory.
5839
5840 2016-05-19 Kelvin Nilsen <kelvin@gcc.gnu.org>
5841
5842 * config/rs6000/altivec.md (UNSPEC_DARN): New unspec constant.
5843 (UNSPEC_DARN_32): New unspec constant.
5844 (UNSPEC_DARN_RAW): New unspec constant.
5845 (darn_32): New instruction.
5846 (darn_raw): New instruction.
5847 (darn): New instruction.
5848 * config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_0): Add
5849 support and documentation for this macro.
5850 (BU_P9_MISC_1): New macro definition.
5851 (BU_P9_64BIT_MISC_0): New macro definition.
5852 (BU_P9_MISC_0): New macro definition.
5853 (darn_32): New builtin definition.
5854 (darn_raw): New builtin definition.
5855 (darn): New builtin definition.
5856 * config/rs6000/rs6000.c: Add #define RS6000_BUILTIN_0 and #undef
5857 RS6000_BUILTIN_0 directives to surround each occurrence of
5858 #include "rs6000-builtin.def".
5859 (rs6000_builtin_mask_calculate): Add in the RS6000_BTM_MODULO and
5860 RS6000_BTM_64BIT flags to the returned mask, depending on
5861 configuration.
5862 (def_builtin): Correct an error in the assignments made to the
5863 debugging variable attr_string.
5864 (rs6000_expand_builtin): Add support for no-operand built-in
5865 functions.
5866 (builtin_function_type): Remove fatal_error assertion that is no
5867 longer valid.
5868 (rs6000_common_init_builtins): Add support for no-operand built-in
5869 functions.
5870 * config/rs6000/rs6000.h (RS6000_BTM_MODULO): New macro
5871 definition.
5872 (RS6000_BTM_PURE): Enhance comment to clarify intent of this flag
5873 definition.
5874 (RS6000_BTM_64BIT): New macro definition.
5875 * doc/extend.texi: Document __builtin_darn (void),
5876 __builtin_darn_raw (void), and __builtin_darn_32 (void) built-in
5877 functions.
5878
5879 2016-05-19 Jan Hubicka <hubicka@ucw.cz>
5880
5881 * tree-vect-loop.c (vect_analyze_loop_2): Use also
5882 max_loop_iterations_int.
5883
5884 2016-05-19 Marek Polacek <polacek@redhat.com>
5885
5886 PR tree-optimization/71031
5887 * tree-vrp.c (extract_range_from_binary_expr_1): Turn assert into a
5888 condition and adjust the code a bit.
5889
5890 2016-05-19 Martin Liska <mliska@suse.cz>
5891
5892 * tree-vect-stmts.c (vectorizable_simd_clone_call): Utilize
5893 auto_vec instead of vec.
5894
5895 2016-05-19 Martin Liska <mliska@suse.cz>
5896
5897 * tree-parloops.c (oacc_entry_exit_ok): Release a vector.
5898
5899 2016-05-19 Martin Liska <mliska@suse.cz>
5900
5901 * tree-if-conv.c (ifcvt_repair_bool_pattern): Utilize auto_vecs.
5902
5903 2016-05-19 Martin Liska <mliska@suse.cz>
5904
5905 * ipa-pure-const.c (set_function_state): Remove an existing
5906 funct_state.
5907 (remove_node_data): Do not free it as it's released
5908 in set_function_state.
5909
5910 2016-05-19 Martin Liska <mliska@suse.cz>
5911
5912 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Release
5913 bitmap.
5914
5915 2016-05-19 Martin Liska <mliska@suse.cz>
5916
5917 * omp-simd-clone.c (simd_clone_adjust): Release vector.
5918
5919 2016-05-19 Martin Liska <mliska@suse.cz>
5920
5921 * tree-ssa-reassoc.c (eliminate_duplicate_pair): Truncate
5922 an auto_vec instead of re-creating it.
5923
5924 2016-05-19 Martin Liska <mliska@suse.cz>
5925
5926 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Use
5927 auto_vec instead of vec.
5928
5929 2016-05-19 Martin Liska <mliska@suse.cz>
5930
5931 * lto-section-in.c (lto_get_section_data): Call
5932 lto_check_version with additional argument.
5933 * lto-streamer.c (lto_check_version): Add new argument.
5934 * lto-streamer.h (lto_check_version): Likewise.
5935
5936 2016-05-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5937
5938 * config/arm/arm.c (arm_new_rtx_costs, SIGN_EXTEND case):
5939 Don't add cost of inner memory when handling sign-extended loads.
5940
5941 2016-05-19 Ilya Enkovich <ilya.enkovich@intel.com>
5942
5943 PR rtl-optimization/71148
5944 * cse.c (cse_main): Free dominance info.
5945 (rest_of_handle_cse): Don't free dominance info.
5946 (rest_of_handle_cse2): Likewise.
5947 (rest_of_handle_cse_after_global_opts): Likewise.
5948
5949 2016-05-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5950
5951 PR target/71056
5952 * config/arm/arm-builtins.c (arm_builtin_vectorized_function): Return
5953 NULL_TREE early if NEON is not available. Remove now redundant check
5954 in ARM_CHECK_BUILTIN_MODE.
5955
5956 2016-05-19 Maxim Ostapenko <m.ostapenko@samsung.com>
5957
5958 PR sanitizer/64354
5959 * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Add new
5960 builtin __SANITIZE_THREAD__ macros for fsanitize=thread switch.
5961 * doc/cpp.texi: Document new macros.
5962
5963 2016-05-19 Bin Cheng <bin.cheng@arm.com>
5964
5965 PR tree-optimization/69848
5966 * tree-vect-loop.c (vectorizable_reduction): Don't factor
5967 comparison expr out of VEC_COND_EXPR for COND_REDUCTION.
5968
5969 2016-05-19 Segher Boessenkool <segher@kernel.crashing.org>
5970
5971 * function.c (thread_prologue_and_epilogue_insn): Move the
5972 "goto epilogue_done" one block later.
5973
5974 2016-05-19 Richard Biener <rguenther@suse.de>
5975
5976 PR tree-optimization/70729
5977 * passes.def: Move LIM pass before PRE. Remove no longer
5978 required copyprop and move first DCE out of the loop pipeline.
5979
5980 2016-05-18 David Malcolm <dmalcolm@redhat.com>
5981
5982 PR driver/69265
5983 * Makefile.in (GCC_OBJS): Move spellcheck.o to...
5984 (OBJS-libcommon-target): ...here.
5985 * opts-common.c: Include spellcheck.h.
5986 (cmdline_handle_error): Build a vec of valid options and use it
5987 to suggest provide hints for misspelled arguments.
5988
5989 2016-05-18 Jakub Jelinek <jakub@redhat.com>
5990
5991 PR c++/71100
5992 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Don't drop
5993 lhs if it has TREE_ADDRESSABLE type.
5994
5995 2016-05-18 Uros Bizjak <ubizjak@gmail.com>
5996
5997 PR target/71145
5998 * config/alpha/alpha.md (trap): Add (use (reg:DI 29)).
5999 (*exception_receiver_1): Return "#" for TARGET_EXPLICIT_RELOCS.
6000
6001 2016-05-18 Martin Jambor <mjambor@suse.cz>
6002
6003 PR ipa/69708
6004 * ipa-cp.c (ipa_get_jf_pass_through_result): Allow non-ip constant
6005 input for NOP_EXPR pass-through functions.
6006 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Allow
6007 aggregate global constant VAR_DECLs in constant jump functions.
6008
6009 2016-05-18 Martin Jambor <mjambor@suse.cz>
6010
6011 PR ipa/69708
6012 * ipa-prop.c (parm_preserved_before_stmt_p): Return true for loads
6013 from TREE_READONLY parameters.
6014
6015 2016-05-18 Martin Jambor <mjambor@suse.cz>
6016
6017 PR ipa/69708
6018 * cgraph.h (cgraph_indirect_call_info): New field
6019 guaranteed_unmodified.
6020 * ipa-cp.c (ipa_get_indirect_edge_target_1): Also pass parameter value
6021 to ipa_find_agg_cst_for_param, check guaranteed_unmodified when
6022 appropriate.
6023 * ipa-inline-analysis.c (evaluate_conditions_for_known_args): Also
6024 pass the parameter value to ipa_find_agg_cst_for_param.
6025 * ipa-prop.c (ipa_load_from_parm_agg): New parameter
6026 guaranteed_unmodified, store AA results there instead of bailing out
6027 if present.
6028 (ipa_note_param_call): Also initialize guaranteed_unmodified flag.
6029 (ipa_analyze_indirect_call_uses): Also set guaranteed_unmodified flag.
6030 (find_constructor_constant_at_offset): New function.
6031 (ipa_find_agg_cst_from_init): Likewise.
6032 (ipa_find_agg_cst_for_param): Also seearch for aggregate values in
6033 static initializers of contants, report back through a new paameter
6034 from_global_constant if that was the case.
6035 (try_make_edge_direct_simple_call): Also pass parameter value to
6036 ipa_find_agg_cst_for_param, check guaranteed_unmodified when
6037 appropriate.
6038 (ipa_write_indirect_edge_info): Stream new flag guaranteed_unmodified.
6039 (ipa_read_indirect_edge_info): Likewise.
6040 * ipa-prop.h (ipa_find_agg_cst_for_param): Update declaration.
6041 (ipa_load_from_parm_agg): Likewise.
6042
6043 2016-05-18 Jiong Wang <jiong.wang@arm.com>
6044
6045 PR rtl-optimization/71150
6046 * lra-constraint (process_addr_reg): Guard "in_class_p" with REG_P
6047 check.
6048
6049 2016-05-18 Michael Meissner <meissner@linux.vnet.ibm.com>
6050
6051 PR target/70915
6052 * config/rs6000/constraints.md (wE constraint): New constraint
6053 for a vector constant that can be loaded with XXSPLTIB.
6054 (wM constraint): New constraint for a vector constant of a 1's.
6055 (wS constraint): New constraint for a vector constant that can be
6056 loaded with XXSPLTIB and a vector sign extend instruction.
6057 * config/rs6000/predicates.md (xxspltib_constant_split): New
6058 predicates for wE/wS constraints.
6059 (xxspltib_constant_nosplit): Likewise.
6060 (easy_vector_constant): Add support for constants that can be
6061 loaded via XXSPLTIB.
6062 (all_ones_constant): New predicate for vector constant with all
6063 1's set.
6064 (splat_input_operand): Add support for ISA 3.0 word splat operations.
6065 * config/rs6000/rs6000.c (xxspltib_constant_p): New function to
6066 return if a constant can be loaded with the ISA 3.0 XXSPLTIB
6067 instruction and possibly with a sign extension.
6068 (output_vec_const_move): Add support for XXSPLTIB. If we are
6069 loading up 0/-1 into Altivec registers, prefer using VSPLTISW
6070 instead of XXLXOR/XXLORC.
6071 (rs6000_expand_vector_init): Add support for ISA 3.0 word splat
6072 operations.
6073 (rs6000_legitimize_reload_address): Likewise.
6074 (rs6000_output_move_128bit): Use output_vec_const_move to emit
6075 constants.
6076 * config/rs6000/vsx.md (VSX_M): Add TImode (if -mvsx-timode) and
6077 combine VSX_M and VSX_M2 into one iterator.
6078 (VSX_M2): Likewise.
6079 (VSINT_84): New iterators for loading constants with XXSPLTIB.
6080 (VSINT_842): Likewise.
6081 (UNSPEC_VSX_SIGN_EXTEND): New UNSPEC.
6082 (xxspltib_v16qi): New insns to load up constants with the ISA 3.0
6083 XXSPLTIB instruction.
6084 (xxspltib_<mode>_nosplit): Likewise.
6085 (xxspltib_<mode>_split): New insn to load up constants with
6086 XXSPLTIB and a sign extend instruction.
6087 (vsx_mov<mode>): Replace single move that handled all vector types
6088 with separate 32-bit and 64-bit moves. Combine the movti_<bit>
6089 moves (when -mvsx-timode is in effect) into the main vector
6090 moves. Eliminate separate moves for <VSr> <VSa>, where the
6091 preferred register class (<VSr>) is listed first, and the
6092 secondary register class (<VSa>) is listed second with a '?' to
6093 discourage use. Prefer loading 0/-1 in any VSX register for ISA
6094 3.0, and Altivec registers for ISA 2.06/2.07 (PR target/70915) so
6095 that if the register was involved in a slow operation, the
6096 clear/set operation does not wait for the slow operation to
6097 finish. Adjust the length attributes for 32-bit mode. Use
6098 rs6000_output_move_128bit and drop the use of the string
6099 instructions for 32-bit movti when -mvsx-timode is in effect. Use
6100 spacing so that the alternatives and attributes don't generate
6101 long lines, and put things in columns, so that it is easier to
6102 match up the operands and attributes with the insn alternatives.
6103 (vsx_mov<mode>_64bit): Likewise.
6104 (vsx_mov<mode>_32bit): Likewise.
6105 (vsx_movti_64bit): Fold movti into normal vector moves.
6106 (vsx_movti_32bit): Likewise.
6107 (vsx_splat_<mode>, V4SI/V4SF modes): Add support for ISA 3.0 word
6108 splat instructions.
6109 (vsx_splat_v4si_internal): Likewise.
6110 (vsx_splat_v4sf_internal): Likewise.
6111 (vector fusion peepholes): Use VSX_M instead of VSX_M2.
6112 (vsx_sign_extend_qi_<mode>): New ISA 3.0 instructions to sign
6113 extend vector elements.
6114 (vsx_sign_extend_hi_<mode>): Likewise.
6115 (vsx_sign_extend_si_v2di): Likewise.
6116 * config/rs6000/rs6000-protos.h (xxspltib_constant_p): Add
6117 declaration.
6118 * doc/md.texi (PowerPC constraints): Document the wE, wM, and wS
6119 constraints. Add trailing period to wL documentation.
6120
6121 2016-05-18 Richard Sandiford <richard.sandiford@arm.com>
6122
6123 PR middle-end/71020
6124 * tree-dfa.h (replace_abnormal_ssa_names): Declare.
6125 * tree-dfa.c (replace_abnormal_ssa_names): New function.
6126 * tree-call-cdce.c: Include tree-dfa.h.
6127 (can_guard_call_p): New function, extracted from...
6128 (can_use_internal_fn): ...here.
6129 (shrink_wrap_one_built_in_call_with_conds): Remove failure path
6130 and return void.
6131 (shrink_wrap_one_built_in_call): Likewise.
6132 (use_internal_fn): Likewise.
6133 (shrink_wrap_conditional_dead_built_in_calls): Update accordingly
6134 and return void. Call replace_abnormal_ssa_names.
6135 (pass_call_cdce::execute): Check can_guard_call_p during the
6136 initial walk. Assume shrink_wrap_conditional_dead_built_in_calls
6137 will always change something.
6138
6139 2016-05-18 Martin Jambor <mjambor@suse.cz>
6140
6141 PR ipa/70646
6142 * ipa-prop.c (determine_locally_known_aggregate_parts): Bail out early
6143 if parameter PARAM_IPA_MAX_AGG_ITEMS is zero.
6144
6145 2016-05-18 Martin Jambor <mjambor@suse.cz>
6146
6147 PR ipa/70646
6148 * ipa-inline.h (condition): New field size.
6149 * ipa-inline-analysis.c (add_condition): New parameter SIZE, use it
6150 for comaprison and store it into the new condition.
6151 (evaluate_conditions_for_known_args): Use condition size to check
6152 access sizes for all but CHANGED conditions.
6153 (unmodified_parm_1): New parameter size_p, store access size into it.
6154 (unmodified_parm): Likewise.
6155 (unmodified_parm_or_parm_agg_item): Likewise.
6156 (eliminated_by_inlining_prob): Pass NULL to unmodified_parm as size_p.
6157 (set_cond_stmt_execution_predicate): Extract access sizes and store
6158 them to conditions.
6159 (set_switch_stmt_execution_predicate): Likewise.
6160 (will_be_nonconstant_expr_predicate): Likewise.
6161 (will_be_nonconstant_predicate): Likewise.
6162 (inline_read_section): Stream condition size.
6163 (inline_write_summary): Likewise.
6164
6165 2016-05-18 Richard Biener <rguenther@suse.de>
6166
6167 * tree-ssa-loop-im.c (determine_max_movement): Properly add
6168 condition cost to PHI cost instead of total_cost.
6169
6170 2016-05-18 Martin Liska <mliska@suse.cz>
6171
6172 PR fortran/70856
6173 * ipa-icf.c (sem_variable::merge): Set DECL_PT_UID for
6174 merged variables.
6175
6176 2016-05-18 Richard Biener <rguenther@suse.de>
6177
6178 * lto-streamer.h (LTO_major_version): Bump to 6.
6179
6180 2016-05-18 Segher Boessenkool <segher@kernel.crashing.org>
6181
6182 * function.c (make_split_prologue_seq, make_prologue_seq,
6183 make_epilogue_seq): New functions, factored out from...
6184 (thread_prologue_and_epilogue_insns): Here.
6185
6186 2016-05-18 Segher Boessenkool <segher@kernel.crashing.org>
6187
6188 * function.c (rest_of_handle_thread_prologue_and_epilogue): Call
6189 cleanup_cfg with CLEANUP_EXPENSIVE after shrink-wrapping instead
6190 of before. Add a comment.
6191
6192 2016-05-18 Bin Cheng <bin.cheng@arm.com>
6193
6194 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check invariant
6195 expression pointer, not pointer to the pointer.
6196
6197 2016-05-18 Jakub Jelinek <jakub@redhat.com>
6198
6199 * config/i386/sse.md (pbroadcast_evex_isa): New mode attr.
6200 (avx2_pbroadcast<mode>): Add another alternative with v instead
6201 of x constraints in it, using <pbroadcast_evex_isa> isa.
6202 (avx2_pbroadcast<mode>_1): Similarly, add two such alternatives.
6203
6204 * config/i386/sse.md (<ssse3_avx2>_palignr<mode>): Use
6205 constraint x instead of v in second alternative, add avx512bw
6206 alternative.
6207
6208 * config/i386/sse.md (<ssse3_avx2>_pshufb<mode>3<mask_name>): Use
6209 constraint x instead of v in second alternative, add avx512bw
6210 alternative.
6211
6212 * config/i386/sse.md (*<ssse3_avx2>_pmulhrsw<mode>3<mask_name>): Use
6213 constraint x instead of v in second alternative, add avx512bw
6214 alternative.
6215
6216 * config/i386/sse.md (avx2_pmaddubsw256, ssse3_pmaddubsw128): Add
6217 avx512bw alternative.
6218
6219 2016-05-18 Kirill Yukhin <kirill.yukhin@intel.com>
6220
6221 * config/i386/sse.md (define_insn "*andnot<mode>3"): Extend static
6222 array to 128 chars.
6223 (define_insn "*andnottf3"): Ditto.
6224 (define_insn "*<code><mode>3"/any_logic): Ditto.
6225 (define_insn "*<code>tf3"/any_logic): Ditto.
6226 (define_insn "sse2_storehpd"): Use Yv constraint for scalar
6227 operand to block AVX-512VL insn variant emit when it is not enabled.
6228
6229 2016-05-18 Kirill Yukhin <kirill.yukhin@intel.com>
6230
6231 * config/i386/sse.md (define_insn "*vec_concatv2sf_sse4_1"): Use 'Yv'
6232 constraint fot SF mode.
6233
6234 2016-05-18 Petr Murzin <petr.murzin@intel.com>
6235 Kirill Yukhin <kirill.yukhin@intel.com>
6236
6237 * config/i386/sse.md (define_insn "srcp14<mode>"): Use proper operand
6238 modifiers.
6239 (define_insn "rsqrt14<mode>"): Ditto.
6240 (define_insn "<mask_codefor>avx512dq_cvtps2qqv2di<mask_name>"): Ditto.
6241 (define_insn "<fixsuffix>fix_truncv2sfv2di2<mask_name>"): Ditto.
6242 (define_insn "avx512f_<code>v8div16qi2_mask_store"): Ditto.
6243 (define_insn "vec_set_hi_<mode><mask_name>"): Ditto.
6244 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>"):
6245 Ditto.
6246 (define_insn "*avx512f_gatherdi<mode>"): Ditto.
6247 (define_insn "*avx512f_scatterdi<mode>"): Ditto.
6248 * config/i386/i386.c (ix86_print_operand): Expand check for size
6249 override codes for Intel syntax.
6250
6251 2016-05-18 Richard Biener <rguenther@suse.de>
6252
6253 PR tree-optimization/71168
6254 * tree-loop-distribution.c (distribute_loop): Move *destroy_p
6255 initialization earlier.
6256
6257 2016-05-18 James Greenhalgh <james.greenhalgh@arm.com>
6258
6259 * config/aarch64/aarch64-simd.md
6260 (aarch64_reduc_plus_internal<mode>): Rename to...
6261 (reduc_plus_scal): ...This, and remove previous implementation.
6262
6263 2016-05-18 Richard Biener <rguenther@suse.de>
6264
6265 * passes.def: Put late dse and cd_dce in canonical order.
6266
6267 2016-05-17 Jan Hubicka <hubicka@ucw.cz>
6268
6269 * ipa-inline-transform.c (preserve_function_body_p): Look for
6270 first non-thunk clone.
6271 (save_function_body): Save into first non-thunk.
6272 * lto-cgraph.c (lto_output_edge): When streaming thunk do not look
6273 up call stmt id.
6274 (lto_output_node): Inline thunks don't need body in every
6275 partition.
6276 * lto-streamer-in.c: Do not fixup thunk clones.
6277 * cgraphclones.c (cgraph_node::create_edge_including_clone): Skip
6278 thunks.
6279 * tree-inline.c (copy_bb): Be prepared for target node to be new after
6280 folding suceeds.
6281
6282 2016-05-17 Kugan Vivekanandarajah <kuganv@linaro.org>
6283
6284 PR middle-end/63586
6285 * tree-ssa-reassoc.c (transform_add_to_multiply): New.
6286 (reassociate_bb): Call transform_add_to_multiply.
6287
6288 2016-05-17 Kugan Vivekanandarajah <kuganv@linaro.org>
6289
6290 * config/aarch64/aarch64.c (all_extensions): Removed unused
6291 static variable.
6292
6293 2016-05-17 Nathan Sidwell <nathan@acm.org>
6294
6295 * config/nvptx/nvptx.c (nvptx_function_arg_boundary): New.
6296 (TARGET_FUNCTION_ARG_BOUNDARY): Override.
6297
6298 2016-05-17 Mikhail Maltsev <maltsevm@gmail.com>
6299
6300 PR tree-optimization/54579
6301 PR middle-end/55299
6302 * match.pd (~(~X >> Y), ~(~X >>r Y), ~(~X <<r Y)): New patterns.
6303
6304 2016-05-17 Marek Polacek <polacek@redhat.com>
6305
6306 PR ipa/71146
6307 * tree-inline.c (expand_call_inline): Call
6308 maybe_remove_unused_call_args.
6309
6310 2016-05-17 Jim Wilson <jim.wilson@linaro.org>
6311
6312 * doc/cpp.texi (__GNUC__): Major version changes are no longer rare.
6313 * doc/invoke.texi (-mnan=2008): Change signalling to signaling.
6314 * doc/md.texi (fmin@var{m}3): Likewise.
6315
6316 2016-05-17 Marc Glisse <marc.glisse@inria.fr>
6317
6318 * match.pd (X & C): New transformation.
6319
6320 2016-05-17 Marc Glisse <marc.glisse@inria.fr>
6321
6322 * match.pd (~X & Y): New transformation.
6323
6324 2016-05-17 Marc Glisse <marc.glisse@inria.fr>
6325
6326 * tree-vrp.c (simplify_truth_ops_using_ranges): Set range
6327 information for new SSA_NAME.
6328 (simplify_conversion_using_ranges): Get range through get_range_info
6329 instead of get_value_range.
6330
6331 2016-05-17 Jiong Wang <jiong.wang@arm.com>
6332
6333 * config/aarch64/arm_neon.h (vmvn_s8): Reimplement using C operator.
6334 Remove inline assembly.
6335 (vmvn_s16): Likewise.
6336 (vmvn_s32): Likewise.
6337 (vmvn_u8): Likewise.
6338 (vmvn_u16): Likewise.
6339 (vmvn_u32): Likewise.
6340 (vmvnq_s8): Likewise.
6341 (vmvnq_s16): Likewise.
6342 (vmvnq_s32): Likewise.
6343 (vmvnq_u8): Likewise.
6344 (vmvnq_u16): Likewise.
6345 (vmvnq_u32): Likewise.
6346 (vmvn_p8): Likewise.
6347 (vmvnq_p16): Likewise.
6348
6349 2016-05-17 Jiong Wang <jiong.wang@arm.com>
6350
6351 * config/aarch64/aarch64-simd.md (vmul_n_f32): Remove inline assembly.
6352 Use builtin.
6353 (vmul_n_s16): Likewise.
6354 (vmul_n_s32): Likewise.
6355 (vmul_n_u16): Likewise.
6356 (vmul_n_u32): Likewise.
6357 (vmulq_n_f32): Likewise.
6358 (vmulq_n_f64): Likewise.
6359 (vmulq_n_s16): Likewise.
6360 (vmulq_n_s32): Likewise.
6361 (vmulq_n_u16): Likewise.
6362 (vmulq_n_u32): Likewise.
6363
6364 2016-05-17 Jiong Wang <jiong.wang@arm.com>
6365
6366 * config/aarch64/aarch64-simd.md (*aarch64_mul3_elt_to_128df): Extend
6367 to all supported modes. Rename to "*aarch64_mul3_elt_from_dup".
6368
6369 2016-05-17 Jiong Wang <jiong.wang@arm.com>
6370
6371 * config/aarch64/aarch64-simd.md (*aarch64_fma4_elt_to_128df): Rename
6372 to *aarch64_fma4_elt_from_dup<mode>.
6373 (*aarch64_fnma4_elt_to_128df): Rename to
6374 *aarch64_fnma4_elt_from_dup<mode>.
6375 * config/aarch64/arm_neon.h (vfma_n_f64): New.
6376 (vfms_n_f32): Likewise.
6377 (vfms_n_f64): Likewise.
6378 (vfmsq_n_f32): Likewise.
6379 (vfmsq_n_f64): Likewise.
6380
6381 2016-05-17 Gerald Pfeifer <gerald@pfeifer.com>
6382
6383 * wide-int.h: Change fixed_wide_int_storage from class to struct.
6384
6385 2016-05-17 Richard Biener <rguenther@suse.de>
6386
6387 PR tree-optimization/71132
6388 * tree-loop-distribution.c (create_rdg_cd_edges): Pass in loop.
6389 Only add control dependences for blocks in the loop.
6390 (build_rdg): Adjust.
6391 (generate_code_for_partition): Return whether loop should
6392 be destroyed and delay that.
6393 (distribute_loop): Likewise.
6394 (pass_loop_distribution::execute): Record loops to be destroyed
6395 and perform delayed destroying of loops.
6396
6397 2016-05-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
6398
6399 PR target/70809
6400 * config/aarch64/aarch64-simd.md (aarch64_vmls<mode>): Delete.
6401
6402 2016-05-17 James Greenhalgh <james.greenhalgh@arm.com>
6403
6404 * config/aarch64/aarch64-elf.h (ASM_OUTPUT_DEF): Delete.
6405
6406 2016-05-17 Ilya Enkovich <ilya.enkovich@intel.com>
6407
6408 PR target/71114
6409 * config/i386/i386.c (dimode_scalar_chain::convert_op): Fix
6410 insertion point for instructions generated by validize_mem.
6411
6412 2016-05-17 James Greenhalgh <james.greenhalgh@arm.com>
6413
6414 * config/aarch64/aarch64.c (SHIFT_COUNT_TRUNCATED): Wrap definition
6415 in brackets.
6416
6417 2016-05-17 James Greenhalgh <james.greenhalgh@arm.com>
6418
6419 * config/aarch64/aarch64.c
6420 (aarch64_output_simd_mov_immediate): Make "buf_size" a variable
6421 rather than a macro.
6422
6423 2016-05-16 Wilco Dijkstra <wdijkstr@arm.com>
6424
6425 * doc/invoke.texi (AArch64 Options): Various updates.
6426
6427 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
6428
6429 * ipa-inline-analysis.c (compute_inline_parameters): Disable inlinig
6430 into instrumentation thunks.
6431 * cif-code.def (CIF_CHKP): New.
6432
6433 2016-05-16 Uros Bizjak <ubizjak@gmail.com>
6434
6435 * config/i386/xopintrin.h: Correct "unsinged" typo in the comments.
6436
6437 2016-05-16 Martin Jambor <mjambor@suse.cz>
6438
6439 * hsa-gen.c (fillup_for_decl): Increase alignment to natural one.
6440 (get_symbol_for_decl): Sorry if a global symbol in under-aligned.
6441
6442 2016-05-16 Marek Polacek <polacek@redhat.com>
6443
6444 * gimple.c (maybe_remove_unused_call_args): Fix typos in the
6445 commentary.
6446
6447 2016-05-16 Martin Jambor <mjambor@suse.cz>
6448
6449 PR hsa/70857
6450 * omp-low.c (grid_expand_target_grid_body): Copy RESULT_DECL of
6451 the outlined kernel function.
6452
6453 2016-05-16 Robert Suchanek <robert.suchanek@imgtec.com>
6454
6455 * config/mips/mips.h (ISA_HAS_LSA): Enable for -mmsa.
6456 (ISA_HAS_DLSA): Ditto.
6457
6458 2016-05-16 Matthew Fortune <matthew.fortune@imgtec.com>
6459
6460 * config/mips/m5100.md (m51_int_load): Update the latency to 2.
6461
6462 2016-05-16 Nathan Sidwell <nathan@acm.org>
6463
6464 * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): Revert.
6465 (nvptx_name_replacement): Restore. Add comment.
6466 (write_fn_proto, write_fn_proto_from_insn,
6467 nvptx_output_call_insn): Restore
6468 (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Delete.
6469
6470 2016-05-16 Wilco Dijkstra <wdijkstr@arm.com>
6471
6472 * config/aarch64/aarch64.md
6473 (add<mode>3_compareC_cconly_imm): Remove use of %w.
6474 (add<mode>3_compareC_imm): Likewise.
6475 (<optab>si3_uxtw): Split into register and immediate variants.
6476 (andsi3_compare0_uxtw): Likewise.
6477 (and<mode>3_compare0): Likewise.
6478 (and<mode>3nr_compare0): Likewise.
6479 (stack_protect_test_<mode>): Don't use %x for memory operands.
6480
6481 2016-05-16 Matthew Fortune <matthew.fortune@imgtec.com>
6482
6483 * config/mips/mips-cpus.def (p5600): Add multi-line brackets.
6484
6485 2016-05-16 Wilco Dijkstra <wdijkstr@arm.com>
6486
6487 * config/aarch64/aarch64.md (aarch64_ashl_sisd_or_int_<mode>3):
6488 Split integer shifts into shift_reg and bfm.
6489 (aarch64_lshr_sisd_or_int_<mode>3): Likewise.
6490 (aarch64_ashr_sisd_or_int_<mode>3): Likewise.
6491 (ror<mode>3_insn): Likewise.
6492 (<optab>si3_insn_uxtw): Likewise.
6493 (<optab><mode>3_insn): Change to rotate_imm.
6494 (extr<mode>5_insn_alt): Likewise.
6495 (extrsi5_insn_uxtw): Likewise.
6496 (extrsi5_insn_uxtw_alt): Likewise.
6497
6498 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
6499
6500 * doc/tm.texi: Regenerate.
6501 * doc/tm.texi.in (TARGET_INVALID_PARAMETER_TYPE): Remove.
6502 (TARGET_INVALID_RETURN_TYPE): Remove.
6503 * system.h: Poison TARGET_INVALID_PARAMETER_TYPE and
6504 TARGET_INVALID_RETURN_TYPE.
6505 * target.def (invalid_parameter_type): Remove.
6506 (invalid_return_type): Remove.
6507
6508 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
6509
6510 * ipa-inline-analysis.c (compute_inline_parameters): Be more reailistic
6511 on estimating thunk bodies; do not set inline_failed to CIF_THUNK for
6512 calls from thunk.
6513 * ipa-inline-transform.c (inline_call): When inlining into thunk produce
6514 gimple body.
6515 (preserve_function_body_p): No need to preserve function body
6516 * cif-codes.def (CIF_THUNK): Remove.
6517 * cgraphclones.c (duplicate_thunk_for_node): Thunks calls are inlinable.
6518
6519 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
6520
6521 * tree-inline.c (expand_call_inline): recurse after inlining thunk.
6522
6523 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
6524
6525 * tree.c (free_lang_data_in_decl): Also set target/optimization flags
6526 for thunks.
6527
6528 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
6529
6530 * ipa-inline.c (report_inline_failed_reason): Look into thunks, too
6531 (inline_small_functions): Do not look for function symbol when
6532 resetting caches.
6533
6534 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
6535
6536 * lto-cgraph.c (compute_ltrans_boundary, output_symtab): Fix handling
6537 of inline thunks
6538
6539 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
6540 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
6541 Jiong Wang <jiong.wang@arm.com>
6542
6543 * config/arm/arm-c.c (arm_cpu_builtins): Use def_or_undef_macro
6544 for __ARM_FP16_FORMAT_IEEE and __ARM_FP16_FORMAT_ALTERNATIVE.
6545 Define __ARM_FP16_ARGS when appropriate.
6546 * config/arm/arm.c (arm_invalid_parameter_type): Remove
6547 declaration.
6548 (arm_invalid_return_type): Likewise.
6549 (TARGET_INVALID_PARAMETER_TYPE): Remove.
6550 (TARGET_INVALID_RETURN_TYPE): Remove.
6551 (aapcs_vfp_sub_candidate): Allow HFmode.
6552 (aapcs_vfp_allocate): Add comment. Support HFmode.
6553 (aapcs_vfp_allocate_return_reg): Likewise.
6554 (struct aapcs_cp_arg_layout): Slightly reword comments for
6555 is_return_candidate and allocate_return_reg.
6556 (output_mov_vfp): Update assert.
6557 (arm_hard_regno_mode_ok): Remove comment, update HF-mode
6558 condition.
6559 (arm_invalid_parameter_type): Remove.
6560 (amr_invalid_return_type): Remove.
6561 * config/arm/arm.h (TARGET_NEON_FP16): Fix definition.
6562 * config/arm/arm.md (*arm32_movhf): Disable for TARGET_VFP.
6563 * config/arm/vfp.md (*movhf_vfp): Enable for TARGET_VFP.
6564
6565 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
6566
6567 * config/aarch64/aarch64.h (LEGITIMIZE_RELOAD_ADDRESS): Remove.
6568 * config/aarch64/arch64-protos.h
6569 (aarch64_legitimize_reload_address): Remove.
6570 * config/aarch64/aarch64.c (aarch64_legitimize_reload_address):
6571 Remove.
6572
6573 2016-05-16 Eric Botcazou <ebotcazou@adacore.com>
6574
6575 * configure.ac: Add ACX_NONCANONICAL_HOST.
6576 * configure: Regenerate.
6577 * Makefile.in: Set host_noncanonical.
6578
6579 2016-05-14 Uros Bizjak <ubizjak@gmail.com>
6580
6581 PR target/71097
6582 * config/i386/i386.md (*movtf_internal): Before register allocation,
6583 do not allow FP constants for CM_MEDIUM memory model, allow only
6584 standard FP constants for CM_LARGE and CM_LARGE_PIC models.
6585 (*movxf_internal): Ditto.
6586 (*movdf_internal): Ditto.
6587 (*movsf_internal): Ditto.
6588
6589 2016-05-13 Segher Boessenkool <segher@kernel.crashing.org>
6590
6591 PR rtl-optimization/67483
6592 * combine.c (make_compound_operation): Don't call extract_left_shift
6593 with negative shift amounts.
6594
6595 2016-05-13 Jakub Jelinek <jakub@redhat.com>
6596
6597 PR bootstrap/71071
6598 * fold-const.c (fold_checksum_tree): Allow modification
6599 of TYPE_ALIAS_SET during folding.
6600
6601 * config/i386/i386.c (ix86_compute_frame_layout, ix86_expand_prologue,
6602 ix86_expand_split_stack_prologue): Use HOST_WIDE_INT_C macro.
6603 (ix86_split_to_parts): Likewise. Fix up formatting.
6604
6605 2016-05-13 H.J. Lu <hongjiu.lu@intel.com>
6606
6607 * tree-ssa-loop-ivopts.c (create_new_ivs): Cast to
6608 unsigned HOST_WIDE_INT with HOST_WIDE_INT_PRINT_UNSIGNED in
6609 printf format.
6610
6611 2016-05-13 Nathan Sidwell <nathan@acm.org>
6612
6613 * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): New.
6614 (nvptx_name_replacement): Delete.
6615 (write_fn_proto, write_fn_proto_from_insn,
6616 nvptx_output_call_insn): Remove nvptx_name_replacement call.
6617 (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Override.
6618 * langhooks.c (add_builtin_funcction_common): Call
6619 targetm.mangle_decl_assembler_name.
6620
6621 * config/nvptx/nvptx.c (write_fn_proto): Handle
6622 BUILT_IN_ATOMIC_COMPARE_EXCHANGE_n oddity.
6623
6624 2016-05-13 Martin Liska <mliska@suse.cz>
6625
6626 * tree-ssa-loop-ivopts.c (create_new_ivs): Use HOST_WIDE_INT_PRINT_DEC
6627 and PRIu64 in printf format.
6628
6629 2016-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
6630
6631 * tree-ssa-loop-ivanon.c (try_unroll_loop_completely): Typo fix in
6632 comment.
6633
6634 2016-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
6635
6636 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
6637 Change --param max-completely-peeled-times to
6638 --param max-completely-peel-times in dump file printing.
6639
6640 2016-05-13 Richard Biener <rguenther@suse.de>
6641
6642 PR tree-optimization/42587
6643 * tree-ssa-math-opts.c (perform_symbolic_merge): Handle BIT_FIELD_REF.
6644 (find_bswap_or_nop_1): Likewise.
6645 (bswap_replace): Likewise.
6646
6647 2016-05-13 Martin Liska <mliska@suse.cz>
6648
6649 * tree-vect-patterns.c (vect_recog_mask_conversion_pattern):
6650 Initialize a variable with default value.
6651
6652 2016-05-13 Martin Liska <mliska@suse.cz>
6653
6654 * doc/invoke.texi: Enhance explanation of error recovery
6655 of sanitizers.
6656
6657 2016-05-13 Martin Liska <mliska@suse.cz>
6658
6659 * tree-ssa-loop-ivopts.c (avg_loop_niter): Fix coding style.
6660 (struct cost_pair): Change inv_expr_id (int) to inv_expr
6661 (iv_inv_expr_ent *).
6662 (struct iv_inv_expr_ent): Comment struct fields.
6663 (sort_iv_inv_expr_ent): New function.
6664 (struct ivopts_data): Rename inv_expr_id to max_inv_expr_id.
6665 (struct iv_ca): Replace used_inv_expr and num_used_inv_expr with
6666 a hash_map between iv_inv_expr_ent and number of usages.
6667 (niter_for_exit): Fix coding style.
6668 (tree_ssa_iv_optimize_init): Use renamed variable.
6669 (determine_base_object): Fix coding style.
6670 (alloc_iv): Likewise.
6671 (find_interesting_uses_outside): Likewise.
6672 (add_candidate_1): Likewise.
6673 (add_standard_iv_candidates): Likewise.
6674 (set_group_iv_cost): Replace inv_expr_id with inv_expr.
6675 (prepare_decl_rtl): Fix coding style.
6676 (get_address_cost): Likewise.
6677 (get_shiftadd_cost): Likewise.
6678 (force_expr_to_var_cost): Likewise.
6679 (compare_aff_trees): Likewise.
6680 (get_expr_id): Restructure the function.
6681 (get_loop_invariant_expr_id): Renamed to
6682 get_loop_invariant_expr.
6683 (get_computation_cost_at): Replace usage of inv_expr_id with
6684 inv_expr.
6685 (get_computation_cost): Likewise.
6686 (determine_group_iv_cost_generic): Likewise.
6687 (determine_group_iv_cost_address): Likewise.
6688 (iv_period): Fix coding style.
6689 (iv_elimination_compare_lt): Likewise.
6690 (may_eliminate_iv): Likewise.
6691 (determine_group_iv_cost_cond): Replace usage of inv_expr_id with
6692 inv_expr.
6693 (determine_group_iv_costs): Dump invariant expressions.
6694 (iv_ca_recount_cost): Use the newly added hash_map.
6695 (iv_ca_set_remove_invariants): Fix coding style.
6696 (iv_ca_set_add_invariants): Fix coding style.
6697 (iv_ca_set_no_cp): Utilize the newly added hash_map for used
6698 invariants.
6699 (iv_ca_set_cp): Likewise.
6700 (iv_ca_new): Initialize the newly added hash_map and remove
6701 initialization of fields.
6702 (iv_ca_free): Delete the hash_map.
6703 (iv_ca_dump): Dump invariant expressions.
6704 (iv_ca_extend): Fix coding style.
6705 (try_add_cand_for): Likewise.
6706 (create_new_ivs): Dump information about # of avg iterations and
6707 # of used invariant expressions.
6708 (rewrite_use_compare): Fix coding style.
6709 (free_loop_data): Set default value for max_inv_expr_id.
6710
6711 2016-05-13 Ilya Enkovich <ilya.enkovich@intel.com>
6712
6713 * cse.c (rest_of_handle_cse): Use cleanup_cfg
6714 returned value cse_cfg_altered computation.
6715 (rest_of_handle_cse2): Likewise.
6716 (rest_of_handle_cse_after_global_opts): Likewise.
6717
6718 2016-05-13 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
6719
6720 PR target/53440
6721 * config/arm/arm.c (arm32_output_mi_thunk): New.
6722 (arm_output_mi_thunk): Rename to arm_thumb1_mi_thunk. Rework
6723 to split Thumb1 vs TARGET_32BIT functionality.
6724 (arm_thumb1_mi_thunk): New.
6725
6726 2016-05-13 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
6727
6728 * config/aarch64/aarch64.c (TARGET_OMIT_STRUCT_RETURN_REG): Set
6729 to true.
6730
6731 2016-05-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
6732
6733 PR target/71080
6734 * config/i386/i386.c (ix86_in_large_data_p): Guard against NULL exp.
6735
6736 2016-05-13 Eric Botcazou <ebotcazou@adacore.com>
6737
6738 * builtins.c (expand_builtin_memcmp): Do not emit the call here.
6739 (expand_builtin_trap): Emit a regular call.
6740 (set_builtin_user_assembler_name): Remove obsolete cases.
6741 * dse.c (scan_insn): Adjust.
6742 * except.c: Include calls.h.
6743 (sjlj_emit_function_enter): If DONT_USE_BUILTIN_SETJMP is defined,
6744 emit a regular call to setjmp.
6745 * expr.c (emit_block_move_hints): Call emit_block_copy_via_libcall.
6746 (block_move_libcall_safe_for_call_parm): Use memcpy builtin.
6747 (emit_block_move_via_libcall): Delete.
6748 (block_move_fn): Delete.
6749 (init_block_move_fn): Likewise.
6750 (emit_block_move_libcall_fn): Likewise.
6751 (emit_block_op_via_libcall): New function.
6752 (set_storage_via_libcall): Tidy up and use memset builtin.
6753 (block_clear_fn): Delete.
6754 (init_block_clear_fn): Likewise.
6755 (clear_storage_libcall_fn): Likewise.
6756 (expand_assignment): Call emit_block_move_via_libcall.
6757 Do not include gt-expr.h.
6758 * expr.h (emit_block_op_via_libcall): Declare.
6759 (emit_block_copy_via_libcall): New inline function.
6760 (emit_block_move_via_libcall): Likewise.
6761 (emit_block_comp_via_libcall): Likewise.
6762 (block_clear_fn): Delete.
6763 (init_block_move_fn): Likewise.
6764 (init_block_clear_fn): Likewise.
6765 (emit_block_move_via_libcall): Likewise.
6766 (set_storage_via_libcall): Add default parameter value.
6767 * libfuncs.h (enum libfunc_index): Remove obsolete values.
6768 (abort_libfunc): Delete.
6769 (memcpy_libfunc): Likewise.
6770 (memmove_libfunc): Likewise.
6771 (memcmp_libfunc): Likewise.
6772 (memset_libfunc): Likewise.
6773 (setbits_libfunc): Likewise.
6774 (setjmp_libfunc): Likewise.
6775 (longjmp_libfunc): Likewise.
6776 (profile_function_entry_libfunc): Likewise.
6777 (profile_function_exit_libfunc): Likewise.
6778 (gcov_flush_libfunc): Likewise.
6779 * optabs-libfuncs.c (build_libfunc_function): Set DECL_ARTIFICIAL
6780 and DECL_VISIBILITY on the declaration.
6781 (init_optabs): Do not initialize obsolete libfuncs.
6782 * optabs.c (prepare_cmp_insn): Call emit_block_comp_via_libcall.
6783 * tree-core.h (ECF_RET1): Define.
6784 (ECF_TM_PURE): Adjust.
6785 (ECF_TM_BUILTIN): Likewise.
6786 * tree.c (set_call_expr_flags): Deal with ECF_RET1.
6787 (build_common_builtin_nodes): Initialize abort builtin.
6788 Add ECF_RET1 on memcpy, memmove and memset builtins.
6789 Pass final flags for alloca and alloca_with_align builtins.
6790 * config/alpha/alpha.c (alpha_init_libfuncs): Do not initialize
6791 obsolete builtins.
6792 * config/ia64/ia64.c (ia64_vms_init_libfuncs): Likewise.
6793 * config/i386/i386.c (ix86_expand_set_or_movmem): Adjust call to
6794 set_storage_via_libcall and call emit_block_copy_via_libcall.
6795
6796 2016-05-12 Uros Bizjak <ubizjak@gmail.com>
6797
6798 * config/i386/i386.md (*call_got_x32): Change operand 0 to
6799 DImode before it is passed to ix86_output_call_operand.
6800 (*call_value_got_x32): Ditto for operand 1.
6801
6802 2016-05-12 Jiong Wang <jiong.wang@arm.com>
6803
6804 PR rtl-optimization/70904
6805 * lra-constraint.c (process_addr_reg): Relax the restriction on subreg
6806 reload for wide mode.
6807
6808 2016-05-12 Marek Polacek <polacek@redhat.com>
6809
6810 PR c/70756
6811 * langhooks-def.h (lhd_incomplete_type_error): Adjust declaration.
6812 * langhooks.c (lhd_incomplete_type_error): Add location parameter.
6813 * langhooks.h (incomplete_type_error): Likewise.
6814 * tree.c (size_in_bytes_loc): Renamed from size_in_bytes. Add location
6815 parameter, pass it down to incomplete_type_error.
6816 * tree.h (size_in_bytes): New inline overload.
6817 (size_in_bytes_loc): Renamed from size_in_bytes.
6818
6819 2016-05-12 Richard Biener <rguenther@suse.de>
6820
6821 PR tree-optimization/71059
6822 * tree-ssa-pre.c (phi_translate_1): Fully fold translated
6823 nary before looking up or entering the expression into the VN
6824 hashes.
6825 * tree-ssa-sccvn.c (vn_nary_build_or_lookup): Fix comment typo.
6826 Make sure to re-use NARYs without result as inserted by
6827 phi-translation.
6828
6829 2016-05-12 Richard Biener <rguenther@suse.de>
6830
6831 PR tree-optimization/71062
6832 * tree-ssa-alias.h (struct pt_solution): Add vars_contains_restrict
6833 field.
6834 * tree-ssa-structalias.c (set_uids_in_ptset): Set
6835 vars_contains_restrict if the var is a restrict tag.
6836 * tree-ssa-alias.c (ptrs_compare_unequal): If vars_contains_restrict
6837 do not disambiguate pointers against it.
6838 (dump_points_to_solution): Re-structure and adjust for new
6839 vars_contains_restrict flag.
6840 * gimple-pretty-print.c (pp_points_to_solution): Likewise.
6841
6842 2016-05-12 Martin Liska <mliska@suse.cz>
6843
6844 * doc/invoke.texi: Explain connection between
6845 -fsanitize-recover=address and ASAN_OPTIONS="halt_on_error=1".
6846
6847 2016-05-12 Ilya Enkovich <ilya.enkovich@intel.com>
6848
6849 PR tree-optimization/71006
6850 * tree-vect-loop.c (vect_determine_vectorization_factor): Don't
6851 consider COND_EXPR as a mask producer.
6852
6853 2016-05-12 Marek Polacek <polacek@redhat.com>
6854
6855 PR driver/71063
6856 * opts.c (common_handle_option): Detect missing argument for --help^.
6857
6858 2016-05-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
6859
6860 PR target/70830
6861 * config/arm/arm.c (arm_output_multireg_pop): Avoid POP instruction
6862 when popping the PC and within an interrupt handler routine.
6863 Add missing tab to output of "ldmfd".
6864 (output_return_instruction): Output LDMFD with SP update rather
6865 than POP when returning from interrupt handler.
6866
6867 2016-05-12 Jakub Jelinek <jakub@redhat.com>
6868
6869 * config/i386/i386.md (isa): Add x64_avx512dq, enable if
6870 TARGET_64BIT && TARGET_AVX512DQ.
6871 * config/i386/sse.md (*vec_extract<mode>): Add avx512bw alternatives.
6872 (*vec_extract<PEXTR_MODE12:mode>_zext): Add avx512bw alternative.
6873 (*vec_extract<ssevecmodelower>_0, *vec_extractv4si_0_zext,
6874 *vec_extractv2di_0_sse): Use v constraint instead of x constraint.
6875 (*vec_extractv4si): Add avx512dq and avx512bw alternatives.
6876 (*vec_extractv4si_zext): Add avx512dq alternative.
6877 (*vec_extractv2di_1): Add x64_avx512dq and avx512bw alternatives,
6878 use v instead of x constraint in other alternatives where possible.
6879
6880 * config/i386/sse.md (sse2_loadld): Use v instead of x
6881 constraint in alternatives 0,1,4.
6882
6883 * config/i386/sse.md (pinsr_evex_isa): New mode attr.
6884 (<sse2p4_1>_pinsr<ssemodesuffix>): Add 2 alternatives with
6885 v constraints instead of x and <pinsr_evex_isa> isa attribute.
6886
6887 PR target/71019
6888 * config/i386/sse.md (<sse2_avx2>_packssdw<mask_name>,
6889 <sse4_1_avx2>_packusdw<mask_name>): Make sure EVEX encoded insn
6890 is not emitted unless TARGET_AVX512BW.
6891 (<sse2_avx2>_packuswb<mask_name>, <sse2_avx2>_packsswb<mask_name>):
6892 Likewise. For TARGET_AVX512BW, use "=v" constraint instead of "=x"
6893 for the result operand.
6894
6895 * config/i386/sse.md (*vec_setv4sf_sse4_1, sse4_1_insertps): Use v
6896 constraint instead of x in avx alternatives. Use maybe_evex instead
6897 of vex prefix.
6898
6899 * config/i386/constraints.md (Yv): New constraint.
6900 * config/i386/i386.h (VALID_AVX512VL_128_REG_MODE): Allow
6901 TFmode and V1TImode in xmm16+ registers for TARGET_AVX512VL.
6902 * config/i386/i386.md (avx512fvecmode): New mode attr.
6903 (*pushtf): Use v constraint instead of x.
6904 (*movtf_internal): Likewise. For TARGET_AVX512VL and
6905 xmm16+ registers, use vmovdqu64 or vmovdqa64 instructions.
6906 (*absneg<mode>2): Use Yv constraint instead of x constraint.
6907 (*absnegtf2_sse): Likewise.
6908 (copysign<mode>3_const, copysign<mode>3_var): Likewise.
6909 * config/i386/sse.md (*andnot<mode>3): Add avx512vl and
6910 avx512f alternatives.
6911 (*andnottf3, *<code><mode>3, *<code>tf3): Likewise.
6912
6913 2016-05-12 Richard Biener <rguenther@suse.de>
6914
6915 PR tree-optimization/71060
6916 * tree-data-ref.c (initialize_data_dependence_relation): Do not
6917 require exact match of DR_BASE_OBJECT but only matching address and
6918 type.
6919
6920 2016-05-12 Richard Biener <rguenther@suse.de>
6921
6922 PR tree-optimization/70986
6923 * cfganal.c: Include cfgloop.h.
6924 (dfs_find_deadend): Prefer to take edges exiting loops.
6925
6926 2016-05-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
6927
6928 * gcc.target/powerpc/pr70963.c: Require at least power8 at both
6929 compile and run time.
6930
6931 2016-05-11 Mikhail Maltsev <maltsevm@gmail.com>
6932
6933 PR c/43651
6934 * doc/invoke.texi (Wduplicate-decl-specifier): Document new option.
6935
6936 2016-05-11 Uros Bizjak <ubizjak@gmail.com>
6937
6938 * config/i386/i386.c (legitimize_pic_address): Use
6939 copy_to_suggested_reg instead of gen_movsi.
6940
6941 2016-05-11 Michael Meissner <meissner@linux.vnet.ibm.com>
6942
6943 * config/rs6000/predicates.md (quad_memory_operand): Move most of
6944 the code into quad_address_p and call it to share code with
6945 vsx_quad_dform_memory_operand.
6946 (vsx_quad_dform_memory_operand): New predicate for ISA 3.0 vector
6947 d-form support.
6948 * config/rs6000/rs6000.opt (-mlra): Switch to being an option mask
6949 bit instead of being a separate word. Split -mpower9-dform into
6950 two switches, -mpower9-dform-scalar and -mpower9-dform-vector.
6951 * config/rs6000/rs6000.c (RELOAD_REG_QUAD_OFFSET): New addr_mask
6952 for the register class supporting 128-bit quad word memory offsets.
6953 (mode_supports_vsx_dform_quad): Helper function to return if the
6954 register class uses quad word memory offsets.
6955 (rs6000_debug_addr_mask): Add support for quad word memory offsets.
6956 (rs6000_debug_reg_global): Always print if we are using LRA or not.
6957 (rs6000_setup_reg_addr_masks): If ISA 3.0 vector d-form
6958 instructions are enabled, set up the appropriate addr_masks for
6959 128-bit types.
6960 (rs6000_init_hard_regno_mode_ok): wb constraint is now based on
6961 -mpower9-dform-scalar, instead of -mpower9-dform.
6962 (rs6000_option_override_internal): Split -mpower9-dform into two
6963 switches, -mpower9-dform-scalar and -mpower9-dform-vector. The
6964 -mpower9-dform switch sets or clears both. If we are not using
6965 the LRA register allocator, do not enable -mpower9-dform-vector by
6966 default. If we are using LRA, enable -mpower9-dform-vector and
6967 -mvsx-timode if it is appropriate. Issue a warning if either
6968 -mpower9-dform-vector or -mvsx-timode are explicitly used without
6969 enabling LRA.
6970 (quad_address_offset_p): New helper function to return if the
6971 offset is legal for quad word memory instructions.
6972 (quad_address_p): New function to determin if GPR or vector
6973 register quad word memory addresses are legal.
6974 (mem_operand_gpr): Validate quad word address offsets.
6975 (reg_offset_addressing_ok_p): Add support for ISA 3.0 vector
6976 d-form (register + offset) instructions.
6977 (offsettable_ok_by_alignment): Likewise.
6978 (rs6000_legitimate_offset_address_p): Likewise.
6979 (legitimate_lo_sum_address_p): Likewise.
6980 (rs6000_legitimize_address): Likewise.
6981 (rs6000_legitimize_reload_address): Add more debug statements for
6982 -mdebug=addr.
6983 (rs6000_legitimate_address_p): Add support for ISA 3.0 vector
6984 d-form instructions.
6985 (rs6000_secondary_reload_memory): Add support for ISA 3.0 vector
6986 d-form instructions. Distinguish different cases in debug
6987 output. (rs6000_secondary_reload_inner): Add support for ISA 3.0 vector
6988 d-form instructions.
6989 (rs6000_preferred_reload_class): Likewise.
6990 (rs6000_output_move_128bit): Add support for ISA 3.0 d-form
6991 instructions. If ISA 3.0 is available, generate lxvx/stxvx instead
6992 of the ISA 2.06 indexed memory instructions.
6993 (rs6000_emit_prologue): If we have ISA 3.0 d-form instructions,
6994 use them to save/restore the saved vector registers instead of
6995 using Altivec instructions.
6996 (rs6000_emit_epilogue): Likewise.
6997 (rs6000_lra_p): Use TARGET_LRA instead of the old option word.
6998 (rs6000_opt_masks): Split -mpower9-dform into
6999 -mpower9-dform-scalar and -mpower9-dform-vector.
7000 (rs6000_print_options_internal): Print -mno-<switch> if <switch>
7001 was not selected.
7002 * config/rs6000/vsx.md (p9_vecload_<mode>): Delete hack to emit
7003 ISA 3.0 vector indexed memory instructions, and fold the code into
7004 the normal mov<mode> patterns.
7005 (p9_vecstore_<mode>): Likewise.
7006 (vsx_mov<mode>): Add support for ISA 3.0 vector d-form
7007 instructions.
7008 (vsx_movti_64bit): Likewise.
7009 (vsx_movti_32bit): Likewise.
7010 * config/rs6000/constraints.md (wO constraint): New constraint for
7011 ISA 3.0 vector d-form support.
7012 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Use
7013 -mpower9-dform-scalar instead of -mpower9-dform. Add note not to
7014 include -mpower9-dform-vector until we switch over to LRA.
7015 (POWERPC_MASKS): Add -mlra. Split -mpower9-dform into two.
7016 switches, -mpower9-dform-scalar and -mpower9-dform-vector.
7017 * config/rs6000/rs6000-protos.h (quad_address_p): Add declaration.
7018 * doc/invoke.texi (RS/6000 and PowerPC Options): Add documentation
7019 for -mpower9-dform and -mlra.
7020 * doc/md.texi (wO constraint): Document wO constraint.
7021
7022 2016-05-11 Alexander Monakov <amonakov@ispras.ru>
7023
7024 * genattr.c (main): Change 'rtx' to 'rtx_insn *' in prototypes of
7025 'insn_latency', 'maximal_insn_latency', 'min_insn_conflict_delay'.
7026 * genautomata.c (output_internal_insn_code_evaluation): Simplify.
7027 Move handling of non-insn arguments inline into the sole user:
7028 (output_trans_func): ...here.
7029 (output_min_insn_conflict_delay_func): Change 'rtx' to 'rtx_insn *'
7030 in emitted function prototype.
7031 (output_internal_insn_latency_func): Ditto. Simplify.
7032 (output_internal_maximal_insn_latency_func): Ditto. Delete
7033 always-unused argument.
7034 (output_insn_latency_func): Ditto.
7035 (output_maximal_insn_latency_func): Ditto.
7036
7037 2016-05-11 Richard Biener <rguenther@suse.de>
7038
7039 PR tree-optimization/71055
7040 * tree-ssa-sccvn.c (vn_reference_lookup_3): When native-interpreting
7041 sth with precision not equal to access size verify we don't chop
7042 off bits.
7043
7044 2016-05-11 Richard Biener <rguenther@suse.de>
7045
7046 PR debug/71057
7047 * dwarf2out.c (retry_incomplete_types): Set early_dwarf.
7048 (dwarf2out_finish): Move retry_incomplete_types call ...
7049 (dwarf2out_early_finish): ... here.
7050
7051 2016-05-11 Richard Biener <rguenther@suse.de>
7052
7053 PR middle-end/71002
7054 * alias.c (reference_alias_ptr_type): Preserve alias-set zero
7055 if the langhook insists on it.
7056 * fold-const.c (make_bit_field_ref): Add arg for the original
7057 reference and preserve its alias-set.
7058 (decode_field_reference): Take exp by reference and adjust it
7059 to the original memory reference.
7060 (optimize_bit_field_compare): Adjust callers.
7061 (fold_truth_andor_1): Likewise.
7062 * gimplify.c (gimplify_expr): Adjust in-SSA form test.
7063
7064 2016-05-11 Ilya Enkovich <ilya.enkovich@intel.com>
7065
7066 PR middle-end/70807
7067 * cfgrtl.h (delete_insn_and_edges): Now return bool.
7068 * cfgrtl.c (delete_insn_and_edges): Likewise.
7069 * config/i386/i386.c (convert_scalars_to_vector): Remove
7070 redundant code.
7071 * cse.c (cse_insn): Compute cse_cfg_altered.
7072 (delete_trivially_dead_insns): Likewise.
7073 (cse_cc_succs): Likewise.
7074 (rest_of_handle_cse): Free dominance info if required.
7075 (rest_of_handle_cse2): Likewise.
7076 (rest_of_handle_cse_after_global_opts): Likewise.
7077
7078 2016-05-11 Alan Modra <amodra@gmail.com>
7079
7080 * config/rs6000/rs6000.c (is_complex_IBM_long_double,
7081 abi_v4_pass_in_fpr): New functions.
7082 (rs6000_function_arg_boundary): Exclude complex IBM long double
7083 from 64-bit alignment when ABI_V4.
7084 (rs6000_function_arg, rs6000_function_arg_advance_1,
7085 rs6000_gimplify_va_arg): Use abi_v4_pass_in_fpr.
7086
7087 2016-05-10 Segher Boessenkool <segher@kernel.crashing.org>
7088
7089 PR rtl-optimization/71028
7090 * cfgcleanup.c (try_optimize_cfg): Do not flip a conditional
7091 jump with just a return in the fallthrough block if the branch
7092 block contains just a return as well.
7093
7094 2016-05-10 Marc Glisse <marc.glisse@inria.fr>
7095
7096 * fold-const.c (fold_binary_loc) [(X ^ Y) & Y]: Remove and merge with...
7097 * match.pd ((X & Y) ^ Y): ... this.
7098 ((X & Y) & Y, (X | Y) | Y, (X ^ Y) ^ Y, (X & Y) & (X & Z), (X | Y)
7099 | (X | Z), (X ^ Y) ^ (X ^ Z)): New transformations.
7100
7101 2016-05-10 David Malcolm <dmalcolm@redhat.com>
7102
7103 * read-md.c (require_char_ws): New function.
7104 (read_string): Simplify using require_char_ws.
7105 (handle_constants): Likewise.
7106 (handle_enum): Likewise.
7107 (handle_file): Likewise.
7108 * read-md.h (require_char_ws): New declaration.
7109 * read-rtl.c (read_conditions): Simplify using require_char_ws.
7110 (read_mapping): Likewise.
7111 (read_rtx_code): Likewise.
7112 (read_nested_rtx): Likewise.
7113
7114 2016-05-10 James Norris <jnorris@codesourcery.com>
7115
7116 * config/rs6000/sysv4.h (CRTOFFLOADBEGIN): Define. Add crtoffloadbegin.o
7117 if offloading is enabled and -fopenacc or -fopenmp is specified.
7118 (CRTOFFLOADEND): Likewise.
7119 (STARTFILE_LINUX_SPEC): Add CRTOFFLOADBEGIN.
7120 (ENDFILE_LINUX_SPEC): Add CRTOFFLOADEND.
7121
7122 2016-05-10 Uros Bizjak <ubizjak@gmail.com>
7123
7124 * config/i386/i386.c (legitimize_pic_address): Merge 64-bit and 32-bit
7125 gotoff_operand code paths. Use copy_to_suggested_regs and
7126 expand_simple_binop where appropriate. Cleanup.
7127
7128 2016-05-10 Ilya Enkovich <ilya.enkovich@intel.com>
7129
7130 PR target/70799
7131 * config/i386/i386.c (dimode_scalar_to_vector_candidate_p): Allow
7132 integer constants.
7133 (dimode_scalar_chain::vector_const_cost): New.
7134 (dimode_scalar_chain::compute_convert_gain): Handle constants.
7135 (dimode_scalar_chain::convert_op): Likewise.
7136 (dimode_scalar_chain::convert_insn): Likewise.
7137
7138 2016-05-10 Pierre-Marie de Rodat <derodat@adacore.com>
7139
7140 * dwarf2out.c (resolve_args_picking_1): Consider DW_OP_neg as an
7141 unary operation, not a binary one.
7142
7143 2016-05-10 Ilya Enkovich <ilya.enkovich@intel.com>
7144
7145 PR middle-end/70877
7146 * tree-chkp.c (chkp_add_bounds_to_call_stmt): Handle
7147 calls with type casted fndecl.
7148
7149 2016-05-10 Ilya Enkovich <ilya.enkovich@intel.com>
7150
7151 PR tree-optimization/70786
7152 * tree-chkp.c (chkp_find_bounds_1): Support WITH_SIZE_EXPR.
7153 * calls.c (initialize_argument_information): Bind bounds
7154 with corresponding args passed by reference.
7155
7156 2016-05-10 Jakub Jelinek <jakub@redhat.com>
7157
7158 PR target/70927
7159 * config/i386/sse.md (<sse>_andnot<mode>3<mask_name>),
7160 *<code><mode>3<mask_name>): For !TARGET_AVX512DQ and EVEX encoding,
7161 use vp*[dq] instead of v*p[sd] instructions and adjust mode attribute
7162 accordingly.
7163
7164 2016-05-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
7165
7166 PR target/70963
7167 * config/rs6000/vsx.md (vsx_xvcvdpsxds_scale): Generate correct
7168 code for a zero scale factor.
7169 (vsx_xvcvdpuxds_scale): Likewise.
7170
7171 2016-05-10 David Malcolm <dmalcolm@redhat.com>
7172
7173 * diagnostic-show-locus.c (layout::layout): Call show_ruler
7174 if show_ruler_p was set on the context.
7175 (layout::show_ruler): New method.
7176 * diagnostic.h (struct diagnostic_context): Add field
7177 "show_ruler_p".
7178
7179 2016-05-10 Richard Biener <rguenther@suse.de>
7180
7181 PR tree-optimization/71039
7182 * tree-ssa-phiprop.c: Include tree-ssa-loop.h.
7183 (chk_uses): New function.
7184 (propagate_with_phi): Verify we can safely replicate the lhs of an
7185 aggregate assignment on all incoming edges.
7186
7187 2016-05-10 Oleg Endo <olegendo@gcc.gnu.org>
7188
7189 * config/rx/rx-protos.h (is_interrupt_func, is_fast_interrupt_func):
7190 Forward declare.
7191 (rx_atomic_sequence): New class.
7192 * config/rx/rx.c (rx_print_operand): Use symbolic names for PSW bits.
7193 (is_interrupt_func, is_fast_interrupt_func): Make non-static and
7194 non-inline.
7195 (rx_atomic_sequence::rx_atomic_sequence,
7196 rx_atomic_sequence::~rx_atomic_sequence): New functions.
7197 * config/rx/rx.md (CTRLREG_PSW, CTRLREG_USP, CTRLREG_FPSW, CTRLREG_CPEN,
7198 CTRLREG_BPSW, CTRLREG_BPC, CTRLREG_ISP, CTRLREG_FINTV,
7199 CTRLREG_INTB): New constants.
7200 (FETCHOP): New code iterator.
7201 (fethcop_name, fetchop_name2): New iterator code attributes.
7202 (QIHI): New mode iterator.
7203 (atomic_exchange<mode>, atomic_exchangesi, xchg_mem<mode>,
7204 atomic_fetch_<fetchop_name>si, atomic_fetch_nandsi,
7205 atomic_<fetchop_name>_fetchsi, atomic_nand_fetchsi): New patterns.
7206
7207 2016-05-10 Martin Liska <mliska@suse.cz>
7208
7209 * tree-inline.c (remap_dependence_clique): Do not remap
7210 debugging statements.
7211
7212 2016-05-10 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
7213
7214 * config/s390/s390.md ("*vec_cmp<insn_cmp>df_cconly")
7215 ("*fixuns_truncdfdi2_z13")
7216 ("*fixuns_trunc<FP:mode><GPR:mode>2_z196")
7217 ("*fix_truncdfdi2_bfp_z13", "*floatunsdidf2_z13")
7218 ("*extendsfdf2_z13"): Replace TARGET_Z13 with TARGET_VX.
7219
7220 2016-05-10 Richard Biener <rguenther@suse.de>
7221
7222 PR tree-optimization/70497
7223 PR tree-optimization/28367
7224 * tree-ssa-sccvn.c (vn_nary_build_or_lookup): New function
7225 split out from ...
7226 (visit_reference_op_load): ... here.
7227 (vn_reference_lookup_3): Use it to handle subreg-like accesses
7228 with simplified BIT_FIELD_REFs.
7229 * tree-ssa-pre.c (eliminate_insert): Handle inserting BIT_FIELD_REFs.
7230 * tree-complex.c (extract_component): Handle BIT_FIELD_REFs
7231 correctly.
7232
7233 2016-05-10 Pierre-Marie de Rodat <derodat@adacore.com>
7234
7235 * dwarf2out.c (add_abstract_origin_attribute): Adjust
7236 documentation comment. For BLOCK nodes, add a
7237 DW_AT_abstract_origin attribute that points to the DIE generated
7238 for the origin BLOCK.
7239 (gen_lexical_block_die): Call add_abstract_origin_attribute for
7240 blocks from inlined functions.
7241
7242 2016-05-10 Alan Modra <amodra@gmail.com>
7243
7244 PR target/70947
7245 * config/rs6000/rs6000.c (rs6000_expand_split_stack_prologue): Stop
7246 regrename modifying insns saving lr before __morestack call.
7247 * config/rs6000/rs6000.md (split_stack_return): Similarly for
7248 insns restoring lr after __morestack call.
7249
7250 2016-05-09 Jakub Jelinek <jakub@redhat.com>
7251
7252 * config/i386/i386.md (set_got, set_got_labelled, lwp_llwpcb,
7253 lwp_lwpval<mode>3, lwp_lwpins<mode>3): Remove constraints from
7254 expanders.
7255 * config/i386/sse.md (vec_interleave_high<mode>,
7256 vec_interleave_low<mode>, <avx512>_vpermi2var<mode>3_maskz,
7257 <avx512>_vpermt2var<mode>3_maskz): Likewise.
7258
7259 2016-05-04 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
7260
7261 * config/rs6000/rs6000.c (rs6000_reassociation_width): Add
7262 function for TARGET_SCHED_REASSOCIATION_WIDTH to enable
7263 parallel reassociation for power8 and forward.
7264
7265 2016-05-09 Uros Bizjak <ubizjak@gmail.com>
7266
7267 * config/i386/i386.md (absneg splitters with general regs): Use
7268 general_reg_operand predicate.
7269 (btsq peephole2): Use x86_64_immediate_operand to check if new
7270 value is suitable for immediate operand. Generate emitted insn
7271 using RTL expressions.
7272 (btcq peephole2): Ditto.
7273 (btrq peephole2): Ditto. Generate correct immediate operand
7274 for AND masking.
7275
7276 2016-05-09 Richard Sandiford <richard.sandiford@arm.com>
7277
7278 * cfgexpand.c (expand_debug_expr): Fix address offset for negative
7279 bitpos.
7280
7281 2016-05-09 Richard Sandiford <richard.sandiford@arm.com>
7282
7283 * tree-affine.c (wide_int_constant_multiple_p): Add missing
7284 pointer dereference.
7285
7286 2016-05-09 Richard Biener <rguenther@suse.de>
7287
7288 PR tree-optimization/70985
7289 * match.pd (BIT_FIELD_REF -> (type)): Disable on GIMPLE when
7290 op0 isn't a gimple register.
7291
7292 2016-05-09 Prachi Godbole <prachi.godbole@imgtec.com>
7293
7294 * config/mips/i6400.md (i6400_fpu_intadd, i6400_fpu_logic)
7295 (i6400_fpu_div, i6400_fpu_cmp, i6400_fpu_float, i6400_fpu_store)
7296 (i6400_fpu_long_pipe, i6400_fpu_logic_l, i6400_fpu_float_l)
7297 (i6400_fpu_mult): New cpu units.
7298 (i6400_msa_add_d, i6400_msa_int_add, i6400_msa_short_logic3)
7299 (i6400_msa_short_logic2, i6400_msa_short_logic, i6400_msa_move)
7300 (i6400_msa_cmp, i6400_msa_short_float2, i6400_msa_div_d)
7301 (i6400_msa_div_w, i6400_msa_div_h, i6400_msa_div_b)
7302 (i6400_msa_copy, i6400_msa_branch, i6400_fpu_msa_store)
7303 (i6400_fpu_msa_load, i6400_fpu_msa_move, i6400_msa_long_logic1)
7304 (i6400_msa_long_logic2, i6400_msa_mult, i6400_msa_long_float2)
7305 (i6400_msa_long_float4, i6400_msa_long_float5)
7306 (i6400_msa_long_float8, i6400_msa_fdiv_df)
7307 (i6400_msa_fdiv_sf): New reservations.
7308 * config/mips/p5600.md (p5600_fpu_intadd, p5600_fpu_cmp)
7309 (p5600_fpu_float, p5600_fpu_logic_a, p5600_fpu_logic_b)
7310 (p5600_fpu_div, p5600_fpu_logic, p5600_fpu_float_a)
7311 (p5600_fpu_float_b, p5600_fpu_float_c, p5600_fpu_float_d)
7312 (p5600_fpu_mult, p5600_fpu_fdiv, p5600_fpu_load): New cpu units.
7313 (msa_short_int_add, msa_short_logic, msa_short_logic_move_v)
7314 (msa_short_cmp, msa_short_float2, msa_short_logic3)
7315 (msa_short_store4, msa_long_load, msa_short_store)
7316 (msa_long_logic, msa_long_float2, msa_long_float4)
7317 (msa_long_float5, msa_long_float8, msa_long_mult)
7318 (msa_long_fdiv, msa_long_div): New reservations.
7319
7320 2016-05-09 Robert Suchanek <robert.suchanek@imgtec.com>
7321 Sameera Deshpande <sameera.deshpande@imgtec.com>
7322 Matthew Fortune <matthew.fortune@imgtec.com>
7323 Graham Stott <graham.stott@imgtec.com>
7324 Chao-ying Fu <chao-ying.fu@imgtec.com>
7325
7326 * config.gcc: Add MSA header file for mips*-*-* target.
7327 * config/mips/constraints.md (YI, YC, YZ, Unv5, Uuv5, Usv5, Uuv6)
7328 (Ubv8i, Urv8): New constraints.
7329 * config/mips/mips-ftypes.def: Add function types for MSA
7330 builtins.
7331 * config/mips/mips-modes.def (V16QI, V8HI, V4SI, V2DI, V4SF)
7332 (V2DF, V32QI, V16HI, V8SI, V4DI, V8SF, V4DF): New modes.
7333 * config/mips/mips-msa.md: New file.
7334 * config/mips/mips-protos.h
7335 (mips_split_128bit_const_insns): New prototype.
7336 (mips_msa_idiv_insns): Likewise.
7337 (mips_split_128bit_move): Likewise.
7338 (mips_split_128bit_move_p): Likewise.
7339 (mips_split_msa_copy_d): Likewise.
7340 (mips_split_msa_insert_d): Likewise.
7341 (mips_split_msa_fill_d): Likewise.
7342 (mips_expand_msa_branch): Likewise.
7343 (mips_const_vector_same_val_p): Likewise.
7344 (mips_const_vector_same_bytes_p): Likewise.
7345 (mips_const_vector_same_int_p): Likewise.
7346 (mips_const_vector_shuffle_set_p): Likewise.
7347 (mips_const_vector_bitimm_set_p): Likewise.
7348 (mips_const_vector_bitimm_clr_p): Likewise.
7349 (mips_msa_vec_parallel_const_half): Likewise.
7350 (mips_msa_output_division): Likewise.
7351 (mips_ldst_scaled_shift): Likewise.
7352 (mips_expand_vec_cond_expr): Likewise.
7353 * config/mips/mips.c (enum mips_builtin_type): Add
7354 MIPS_BUILTIN_MSA_TEST_BRANCH.
7355 (mips_gen_const_int_vector_shuffle): New prototype.
7356 (mips_const_vector_bitimm_set_p): New function.
7357 (mips_const_vector_bitimm_clr_p): Likewise.
7358 (mips_const_vector_same_val_p): Likewise.
7359 (mips_const_vector_same_bytes_p): Likewise.
7360 (mips_const_vector_same_int_p): Likewise.
7361 (mips_const_vector_shuffle_set_p): Likewise.
7362 (mips_symbol_insns): Forbid loading symbols via immediate for
7363 MSA.
7364 (mips_valid_offset_p): Limit offset to 10-bit for MSA loads and
7365 stores.
7366 (mips_valid_lo_sum_p): Forbid loadings symbols via %lo(base) for
7367 MSA.
7368 (mips_lx_address_p): Add support load indexed address for MSA.
7369 (mips_address_insns): Add calculation of instructions needed for
7370 stores and loads for MSA.
7371 (mips_const_insns): Move CONST_DOUBLE below CONST_VECTOR. Handle
7372 CONST_VECTOR for MSA and let it fall through.
7373 (mips_ldst_scaled_shift): New function.
7374 (mips_subword_at_byte): Likewise.
7375 (mips_msa_idiv_insns): Likewise.
7376 (mips_legitimize_move): Validate MSA moves.
7377 (mips_rtx_costs): Add UNGE, UNGT, UNLE, UNLT cases. Add
7378 calculation of costs for MSA division.
7379 (mips_split_move_p): Check if MSA moves need splitting.
7380 (mips_split_move): Split MSA moves if necessary.
7381 (mips_split_128bit_move_p): New function.
7382 (mips_split_128bit_move): Likewise.
7383 (mips_split_msa_copy_d): Likewise.
7384 (mips_split_msa_insert_d): Likewise.
7385 (mips_split_msa_fill_d): Likewise.
7386 (mips_output_move): Handle MSA moves.
7387 (mips_expand_msa_branch): New function.
7388 (mips_print_operand): Add 'E', 'B', 'w', 'v' and 'V' modifiers.
7389 Reinstate 'y' modifier.
7390 (mips_file_start): Add MSA .gnu_attribute.
7391 (mips_hard_regno_mode_ok_p): Allow TImode and 128-bit vectors in
7392 FPRs.
7393 (mips_hard_regno_nregs): Always return 1 for MSA supported mode.
7394 (mips_class_max_nregs): Add register size for MSA supported mode.
7395 (mips_cannot_change_mode_class): Allow conversion between MSA
7396 vector modes and TImode.
7397 (mips_mode_ok_for_mov_fmt_p): Allow MSA to use move.v
7398 instruction.
7399 (mips_secondary_reload_class): Force MSA loads/stores via memory.
7400 (mips_preferred_simd_mode): Add preffered modes for MSA.
7401 (mips_vector_mode_supported_p): Add MSA supported modes.
7402 (mips_autovectorize_vector_sizes): New function.
7403 (mips_msa_output_division): Likewise.
7404 (MSA_BUILTIN, MIPS_BUILTIN_DIRECT_NO_TARGET)
7405 (MSA_NO_TARGET_BUILTIN, MSA_BUILTIN_TEST_BRANCH): New macros.
7406 (CODE_FOR_msa_adds_s_b, CODE_FOR_msa_adds_s_h)
7407 (CODE_FOR_msa_adds_s_w, CODE_FOR_msa_adds_s_d)
7408 (CODE_FOR_msa_adds_u_b, CODE_FOR_msa_adds_u_h)
7409 (CODE_FOR_msa_adds_u_w, CODE_FOR_msa_adds_u_du
7410 (CODE_FOR_msa_addv_b, CODE_FOR_msa_addv_h, CODE_FOR_msa_addv_w)
7411 (CODE_FOR_msa_addv_d, CODE_FOR_msa_and_v, CODE_FOR_msa_bmnz_v)
7412 (CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bmz_v, CODE_FOR_msa_bmzi_b)
7413 (CODE_FOR_msa_bnz_v, CODE_FOR_msa_bz_v, CODE_FOR_msa_bsel_v)
7414 (CODE_FOR_msa_bseli_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w)
7415 (CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b)
7416 (CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w)
7417 (CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clti_u_b)
7418 (CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w)
7419 (CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_s_b)
7420 (CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w)
7421 (CODE_FOR_msa_clei_s_d, CODE_FOR_msa_clei_u_b)
7422 (CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w)
7423 (CODE_FOR_msa_clei_u_d, CODE_FOR_msa_div_s_b)
7424 (CODE_FOR_msa_div_s_h, CODE_FOR_msa_div_s_w)
7425 (CODE_FOR_msa_div_s_d, CODE_FOR_msa_div_u_b)
7426 (CODE_FOR_msa_div_u_h, CODE_FOR_msa_div_u_w)
7427 (CODE_FOR_msa_div_u_d, CODE_FOR_msa_fadd_w, CODE_FOR_msa_fadd_d)
7428 (CODE_FOR_msa_fexdo_w, CODE_FOR_msa_ftrunc_s_w)
7429 (CODE_FOR_msa_ftrunc_s_d, CODE_FOR_msa_ftrunc_u_w)
7430 (CODE_FOR_msa_ftrunc_u_d, CODE_FOR_msa_ffint_s_w)
7431 (CODE_FOR_msa_ffint_s_d, CODE_FOR_msa_ffint_u_w)
7432 (CODE_FOR_msa_ffint_u_d, CODE_FOR_msa_fsub_w)
7433 (CODE_FOR_msa_fsub_d, CODE_FOR_msa_fmsub_d, CODE_FOR_msa_fmadd_w)
7434 (CODE_FOR_msa_fmadd_d, CODE_FOR_msa_fmsub_w, CODE_FOR_msa_fmul_w)
7435 (CODE_FOR_msa_fmul_d, CODE_FOR_msa_fdiv_w, CODE_FOR_msa_fdiv_d)
7436 (CODE_FOR_msa_fmax_w, CODE_FOR_msa_fmax_d, CODE_FOR_msa_fmax_a_w)
7437 (CODE_FOR_msa_fmax_a_d, CODE_FOR_msa_fmin_w, CODE_FOR_msa_fmin_d)
7438 (CODE_FOR_msa_fmin_a_w, CODE_FOR_msa_fmin_a_d)
7439 (CODE_FOR_msa_fsqrt_w, CODE_FOR_msa_fsqrt_d)
7440 (CODE_FOR_msa_max_s_b, CODE_FOR_msa_max_s_h)
7441 (CODE_FOR_msa_max_s_w, CODE_FOR_msa_max_s_d)
7442 (CODE_FOR_msa_max_u_b, CODE_FOR_msa_max_u_h)
7443 (CODE_FOR_msa_max_u_w, CODE_FOR_msa_max_u_d)
7444 (CODE_FOR_msa_min_s_b, CODE_FOR_msa_min_s_h)
7445 (CODE_FOR_msa_min_s_w, CODE_FOR_msa_min_s_d)
7446 (CODE_FOR_msa_min_u_b, CODE_FOR_msa_min_u_h)
7447 (CODE_FOR_msa_min_u_w, CODE_FOR_msa_min_u_d)
7448 (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
7449 (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
7450 (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
7451 (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
7452 (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
7453 (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
7454 (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
7455 (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
7456 (CODE_FOR_msa_mulv_b, CODE_FOR_msa_mulv_h, CODE_FOR_msa_mulv_w)
7457 (CODE_FOR_msa_mulv_d, CODE_FOR_msa_nlzc_b, CODE_FOR_msa_nlzc_h)
7458 (CODE_FOR_msa_nlzc_w, CODE_FOR_msa_nlzc_d, CODE_FOR_msa_nor_v)
7459 (CODE_FOR_msa_or_v, CODE_FOR_msa_ori_b, CODE_FOR_msa_nori_b)
7460 (CODE_FOR_msa_pcnt_b, CODE_FOR_msa_pcnt_h, CODE_FOR_msa_pcnt_w)
7461 (CODE_FOR_msa_pcnt_d, CODE_FOR_msa_xor_v, CODE_FOR_msa_xori_b)
7462 (CODE_FOR_msa_sll_b, CODE_FOR_msa_sll_h, CODE_FOR_msa_sll_w)
7463 (CODE_FOR_msa_sll_d, CODE_FOR_msa_slli_b, CODE_FOR_msa_slli_h)
7464 (CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d, CODE_FOR_msa_sra_b)
7465 (CODE_FOR_msa_sra_h, CODE_FOR_msa_sra_w, CODE_FOR_msa_sra_d)
7466 (CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w)
7467 (CODE_FOR_msa_srai_d, CODE_FOR_msa_srl_b, CODE_FOR_msa_srl_h)
7468 (CODE_FOR_msa_srl_w, CODE_FOR_msa_srl_d, CODE_FOR_msa_srli_b)
7469 (CODE_FOR_msa_srli_h, CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d)
7470 (CODE_FOR_msa_subv_b, CODE_FOR_msa_subv_h, CODE_FOR_msa_subv_w)
7471 (CODE_FOR_msa_subv_d, CODE_FOR_msa_subvi_b, CODE_FOR_msa_subvi_h)
7472 (CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d, CODE_FOR_msa_move_v)
7473 (CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h, CODE_FOR_msa_vshf_w)
7474 (CODE_FOR_msa_vshf_d, CODE_FOR_msa_ilvod_d, CODE_FOR_msa_ilvev_d)
7475 (CODE_FOR_msa_pckod_d, CODE_FOR_msa_pckdev_d, CODE_FOR_msa_ldi_b)
7476 (CODE_FOR_msa_ldi_hi, CODE_FOR_msa_ldi_w)
7477 (CODE_FOR_msa_ldi_d): New code_aliasing macros.
7478 (mips_builtins): Add MSA sll_b, sll_h, sll_w, sll_d, slli_b,
7479 slli_h, slli_w, slli_d, sra_b, sra_h, sra_w, sra_d, srai_b,
7480 srai_h, srai_w, srai_d, srar_b, srar_h, srar_w, srar_d, srari_b,
7481 srari_h, srari_w, srari_d, srl_b, srl_h, srl_w, srl_d, srli_b,
7482 srli_h, srli_w, srli_d, srlr_b, srlr_h, srlr_w, srlr_d, srlri_b,
7483 srlri_h, srlri_w, srlri_d, bclr_b, bclr_h, bclr_w, bclr_d,
7484 bclri_b, bclri_h, bclri_w, bclri_d, bset_b, bset_h, bset_w,
7485 bset_d, bseti_b, bseti_h, bseti_w, bseti_d, bneg_b, bneg_h,
7486 bneg_w, bneg_d, bnegi_b, bnegi_h, bnegi_w, bnegi_d, binsl_b,
7487 binsl_h, binsl_w, binsl_d, binsli_b, binsli_h, binsli_w,
7488 binsli_d, binsr_b, binsr_h, binsr_w, binsr_d, binsri_b, binsri_h,
7489 binsri_w, binsri_d, addv_b, addv_h, addv_w, addv_d, addvi_b,
7490 addvi_h, addvi_w, addvi_d, subv_b, subv_h, subv_w, subv_d,
7491 subvi_b, subvi_h, subvi_w, subvi_d, max_s_b, max_s_h, max_s_w,
7492 max_s_d, maxi_s_b, maxi_s_h, maxi_s_w, maxi_s_d, max_u_b,
7493 max_u_h, max_u_w, max_u_d, maxi_u_b, maxi_u_h, maxi_u_w,
7494 maxi_u_d, min_s_b, min_s_h, min_s_w, min_s_d, mini_s_b, mini_s_h,
7495 mini_s_w, mini_s_d, min_u_b, min_u_h, min_u_w, min_u_d, mini_u_b,
7496 mini_u_h, mini_u_w, mini_u_d, max_a_b, max_a_h, max_a_w, max_a_d,
7497 min_a_b, min_a_h, min_a_w, min_a_d, ceq_b, ceq_h, ceq_w, ceq_d,
7498 ceqi_b, ceqi_h, ceqi_w, ceqi_d, clt_s_b, clt_s_h, clt_s_w,
7499 clt_s_d, clti_s_b, clti_s_h, clti_s_w, clti_s_d, clt_u_b,
7500 clt_u_h, clt_u_w, clt_u_d, clti_u_b, clti_u_h, clti_u_w,
7501 clti_u_d, cle_s_b, cle_s_h, cle_s_w, cle_s_d, clei_s_b, clei_s_h,
7502 clei_s_w, clei_s_d, cle_u_b, cle_u_h, cle_u_w, cle_u_d, clei_u_b,
7503 clei_u_h, clei_u_w, clei_u_d, ld_b, ld_h, ld_w, ld_d, st_b, st_h,
7504 st_w, st_d, sat_s_b, sat_s_h, sat_s_w, sat_s_d, sat_u_b, sat_u_h,
7505 sat_u_w, sat_u_d, add_a_b, add_a_h, add_a_w, add_a_d, adds_a_b,
7506 adds_a_h, adds_a_w, adds_a_d, adds_s_b, adds_s_h, adds_s_w,
7507 adds_s_d, adds_u_b, adds_u_h, adds_u_w, adds_u_d, ave_s_b,
7508 ave_s_h, ave_s_w, ave_s_d, ave_u_b, ave_u_h, ave_u_w, ave_u_d,
7509 aver_s_b, aver_s_h, aver_s_w, aver_s_d, aver_u_b, aver_u_h,
7510 aver_u_w, aver_u_d, subs_s_b, subs_s_h, subs_s_w, subs_s_d,
7511 subs_u_b, subs_u_h, subs_u_w, subs_u_d, subsuu_s_b, subsuu_s_h,
7512 subsuu_s_w, subsuu_s_d, subsus_u_b, subsus_u_h, subsus_u_w,
7513 subsus_u_d, asub_s_b, asub_s_h, asub_s_w, asub_s_d, asub_u_b,
7514 asub_u_h, asub_u_w, asub_u_d, mulv_b, mulv_h, mulv_w, mulv_d,
7515 maddv_b, maddv_h, maddv_w, maddv_d, msubv_b, msubv_h, msubv_w,
7516 msubv_d, div_s_b, div_s_h, div_s_w, div_s_d, div_u_b, div_u_h,
7517 div_u_w, div_u_d, hadd_s_h, hadd_s_w, hadd_s_d, hadd_u_h,
7518 hadd_u_w, hadd_u_d, hsub_s_h, hsub_s_w, hsub_s_d, hsub_u_h,
7519 hsub_u_w, hsub_u_d, mod_s_b, mod_s_h, mod_s_w, mod_s_d, mod_u_b,
7520 mod_u_h, mod_u_w, mod_u_d, dotp_s_h, dotp_s_w, dotp_s_d,
7521 dotp_u_h, dotp_u_w, dotp_u_d, dpadd_s_h, dpadd_s_w, dpadd_s_d,
7522 dpadd_u_h, dpadd_u_w, dpadd_u_d, dpsub_s_h, dpsub_s_w, dpsub_s_d,
7523 dpsub_u_h, dpsub_u_w, dpsub_u_d, sld_b, sld_h, sld_w, sld_d,
7524 sldi_b, sldi_h, sldi_w, sldi_d, splat_b, splat_h, splat_w,
7525 splat_d, splati_b, splati_h, splati_w, splati_d, pckev_b,
7526 pckev_h, pckev_w, pckev_d, pckod_b, pckod_h, pckod_w, pckod_d,
7527 ilvl_b, ilvl_h, ilvl_w, ilvl_d, ilvr_b, ilvr_h, ilvr_w, ilvr_d,
7528 ilvev_b, ilvev_h, ilvev_w, ilvev_d, ilvod_b, ilvod_h, ilvod_w,
7529 ilvod_d, vshf_b, vshf_h, vshf_w, vshf_d, and_v, andi_b, or_v,
7530 ori_b, nor_v, nori_b, xor_v, xori_b, bmnz_v, bmnzi_b, bmz_v,
7531 bmzi_b, bsel_v, bseli_b, shf_b, shf_h, shf_w, bnz_v, bz_v,
7532 fill_b, fill_h, fill_w, fill_d, pcnt_b, pcnt_h, pcnt_w,
7533 pcnt_d, nloc_b, nloc_h, nloc_w, nloc_d, nlzc_b, nlzc_h, nlzc_w,
7534 nlzc_d, copy_s_b, copy_s_h, copy_s_w, copy_s_d, copy_u_b,
7535 copy_u_h, copy_u_w, copy_u_d, insert_b, insert_h, insert_w,
7536 insert_d, insve_b, insve_h, insve_w, insve_d, bnz_b, bnz_h,
7537 bnz_w, bnz_d, bz_b, bz_h, bz_w, bz_d, ldi_b, ldi_h, ldi_w, ldi_d,
7538 fcaf_w, fcaf_d, fcor_w, fcor_d, fcun_w, fcun_d, fcune_w, fcune_d,
7539 fcueq_w, fcueq_d, fceq_w, fceq_d, fcne_w, fcne_d, fclt_w, fclt_d,
7540 fcult_w, fcult_d, fcle_w, fcle_d, fcule_w, fcule_d, fsaf_w,
7541 fsaf_d, fsor_w, fsor_d, fsun_w, fsun_d, fsune_w, fsune_d,
7542 fsueq_w, fsueq_d, fseq_w, fseq_d, fsne_w, fsne_d, fslt_w,
7543 fslt_d, fsult_w, fsult_d, fsle_w, fsle_d, fsule_w, fsule_d,
7544 fadd_w, fadd_d, fsub_w, fsub_d, fmul_w, fmul_d, fdiv_w, fdiv_d,
7545 fmadd_w, fmadd_d, fmsub_w, fmsub_d, fexp2_w, fexp2_d, fexdo_h,
7546 fexdo_w, ftq_h, ftq_w, fmin_w, fmin_d, fmin_a_w, fmin_a_d,
7547 fmax_w, fmax_d, fmax_a_w, fmax_a_d, mul_q_h, mul_q_w, mulr_q_h,
7548 mulr_q_w, madd_q_h, madd_q_w, maddr_q_h, maddr_q_w, msub_q_h,
7549 msub_q_w, msubr_q_h, msubr_q_w, fclass_w, fclass_d, fsqrt_w,
7550 fsqrt_d, frcp_w, frcp_d, frint_w, frint_d, frsqrt_w, frsqrt_d,
7551 flog2_w, flog2_d, fexupl_w, fexupl_d, fexupr_w, fexupr_d, ffql_w,
7552 ffql_d, ffqr_w, ffqr_d, ftint_s_w, ftint_s_d, ftint_u_w,
7553 ftint_u_d, ftrunc_s_w, ftrunc_s_d, ftrunc_u_w, ftrunc_u_d,
7554 ffint_s_w, ffint_s_d, ffint_u_w, ffint_u_d, ctcmsa, cfcmsa,
7555 move_v builtins.
7556 (mips_get_builtin_decl_index): New array.
7557 (MIPS_ATYPE_QI, MIPS_ATYPE_HI, MIPS_ATYPE_V2DI, MIPS_ATYPE_V4SI)
7558 (MIPS_ATYPE_V8HI, MIPS_ATYPE_V16QI, MIPS_ATYPE_V2DF)
7559 (MIPS_ATYPE_V4SF, MIPS_ATYPE_UV2DI, MIPS_ATYPE_UV4SI)
7560 (MIPS_ATYPE_UV8HI, MIPS_ATYPE_UV16QI): New.
7561 (mips_init_builtins): Initialize mips_get_builtin_decl_index
7562 array.
7563 (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION): Define target
7564 hook.
7565 (mips_expand_builtin_insn): Prepare operands for
7566 CODE_FOR_msa_addvi_b, CODE_FOR_msa_addvi_h, CODE_FOR_msa_addvi_w,
7567 CODE_FOR_msa_addvi_d, CODE_FOR_msa_clti_u_b,
7568 CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w,
7569 CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_u_b,
7570 CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w,
7571 CODE_FOR_msa_clei_u_d, CODE_FOR_msa_maxi_u_b,
7572 CODE_FOR_msa_maxi_u_h, CODE_FOR_msa_maxi_u_w,
7573 CODE_FOR_msa_maxi_u_d, CODE_FOR_msa_mini_u_b,
7574 CODE_FOR_msa_mini_u_h, CODE_FOR_msa_mini_u_w,
7575 CODE_FOR_msa_mini_u_d, CODE_FOR_msa_subvi_b,
7576 CODE_FOR_msa_subvi_h, CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d,
7577 CODE_FOR_msa_ceqi_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w,
7578 CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b,
7579 CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w,
7580 CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clei_s_b,
7581 CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w,
7582 CODE_FOR_msa_clei_s_d, CODE_FOR_msa_maxi_s_b,
7583 CODE_FOR_msa_maxi_s_h, CODE_FOR_msa_maxi_s_w,
7584 CODE_FOR_msa_maxi_s_d, CODE_FOR_msa_mini_s_b,
7585 CODE_FOR_msa_mini_s_h, CODE_FOR_msa_mini_s_w,
7586 CODE_FOR_msa_mini_s_d, CODE_FOR_msa_andi_b, CODE_FOR_msa_ori_b,
7587 CODE_FOR_msa_nori_b, CODE_FOR_msa_xori_b, CODE_FOR_msa_bmzi_b,
7588 CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bseli_b, CODE_FOR_msa_fill_b,
7589 CODE_FOR_msa_fill_h, CODE_FOR_msa_fill_w, CODE_FOR_msa_fill_d,
7590 CODE_FOR_msa_ilvl_b, CODE_FOR_msa_ilvl_h, CODE_FOR_msa_ilvl_w,
7591 CODE_FOR_msa_ilvl_d, CODE_FOR_msa_ilvr_b, CODE_FOR_msa_ilvr_h,
7592 CODE_FOR_msa_ilvr_w, CODE_FOR_msa_ilvr_d, CODE_FOR_msa_ilvev_b,
7593 CODE_FOR_msa_ilvev_h, CODE_FOR_msa_ilvev_w, CODE_FOR_msa_ilvod_b,
7594 CODE_FOR_msa_ilvod_h, CODE_FOR_msa_ilvod_w, CODE_FOR_msa_pckev_b,
7595 CODE_FOR_msa_pckev_h, CODE_FOR_msa_pckev_w, CODE_FOR_msa_pckod_b,
7596 CODE_FOR_msa_pckod_h, CODE_FOR_msa_pckod_w, CODE_FOR_msa_slli_b,
7597 CODE_FOR_msa_slli_h, CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d,
7598 CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w,
7599 CODE_FOR_msa_srai_d, CODE_FOR_msa_srli_b, CODE_FOR_msa_srli_h,
7600 CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d, CODE_FOR_msa_insert_b,
7601 CODE_FOR_msa_insert_h, CODE_FOR_msa_insert_w,
7602 CODE_FOR_msa_insert_d, CODE_FOR_msa_insve_b,
7603 CODE_FOR_msa_insve_h, CODE_FOR_msa_insve_w, CODE_FOR_msa_insve_d,
7604 CODE_FOR_msa_shf_b, CODE_FOR_msa_shf_h, CODE_FOR_msa_shf_w,
7605 CODE_FOR_msa_shf_w_f, CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h,
7606 CODE_FOR_msa_vshf_w, CODE_FOR_msa_vshf_d.
7607 (mips_expand_builtin): Add case for MIPS_BULTIN_MSA_TEST_BRANCH.
7608 (mips_set_compression_mode): Disallow MSA with MIPS16 code.
7609 (mips_option_override): -mmsa requires -mfp64 and -mhard-float.
7610 These are set implicitly and an error is reported if overridden.
7611 (mips_expand_builtin_msa_test_branch): New function.
7612 (mips_expand_msa_shuffle): Likewise.
7613 (MAX_VECT_LEN): Increase maximum length of a vector to 16 bytes.
7614 (TARGET_SCHED_REASSOCIATION_WIDTH): Define target hook.
7615 (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Likewise.
7616 (mips_expand_vec_unpack): Add support for MSA.
7617 (mips_expand_vector_init): Likewise.
7618 (mips_expand_vi_constant): Use CONST0_RTX (element_mode)
7619 instead of const0_rtx.
7620 (mips_msa_vec_parallel_const_half): New function.
7621 (mips_gen_const_int_vector): Likewise.
7622 (mips_gen_const_int_vector_shuffle): Likewise.
7623 (mips_expand_msa_cmp): Likewise.
7624 (mips_expand_vec_cond_expr): Likewise.
7625 * config/mips/mips.h
7626 (TARGET_CPU_CPP_BUILTINS): Add __mips_msa and __mips_msa_width.
7627 (OPTION_DEFAULT_SPECS): Ignore --with-fp-32 if -mmsa is
7628 specified.
7629 (ASM_SPEC): Pass mmsa and mno-msa to the assembler.
7630 (ISA_HAS_MSA): New macro.
7631 (UNITS_PER_MSA_REG): Likewise.
7632 (BITS_PER_MSA_REG): Likewise.
7633 (BIGGEST_ALIGNMENT): Redefine using ISA_HAS_MSA.
7634 (MSA_REG_FIRST): New macro.
7635 (MSA_REG_LAST): Likewise.
7636 (MSA_REG_NUM): Likewise.
7637 (MSA_REG_P): Likewise.
7638 (MSA_REG_RTX_P): Likewise.
7639 (MSA_SUPPORTED_MODE_P): Likewise.
7640 (HARD_REGNO_CALL_PART_CLOBBERED): Redefine using TARGET_MSA.
7641 (ADDITIONAL_REGISTER_NAMES): Add named registers $w0-$w31.
7642 * config/mips/mips.md: Include mips-msa.md.
7643 (alu_type): Add simd_add.
7644 (mode): Add V2DI, V4SI, V8HI, V16QI, V2DF, V4SF.
7645 (type): Add simd_div, simd_fclass, simd_flog2, simd_fadd,
7646 simd_fcvt, simd_fmul, simd_fmadd, simd_fdiv, simd_bitins,
7647 simd_bitmov, simd_insert, simd_sld, simd_mul, simd_fcmp,
7648 simd_fexp2, simd_int_arith, simd_bit, simd_shift, simd_splat,
7649 simd_fill, simd_permute, simd_shf, simd_sat, simd_pcnt,
7650 simd_copy, simd_branch, simd_cmsa, simd_fminmax, simd_logic,
7651 simd_move, simd_load, simd_store. Choose "multi" for moves
7652 for "qword_mode".
7653 (qword_mode): New attribute.
7654 (insn_count): Add instruction count for quad moves.
7655 Increase the count for MIPS SIMD division.
7656 (UNITMODE): Add UNITMODEs for vector types.
7657 (addsub): New code iterator.
7658 * config/mips/mips.opt (mmsa): New option.
7659 * config/mips/msa.h: New file.
7660 * config/mips/mti-elf.h: Don't infer -mfpxx if -mmsa is
7661 specified.
7662 * config/mips/mti-linux.h: Likewise.
7663 * config/mips/predicates.md
7664 (const_msa_branch_operand): New constraint.
7665 (const_uimm3_operand): Likewise.
7666 (const_uimm4_operand): Likewise.
7667 (const_uimm5_operand): Likewise.
7668 (const_uimm8_operand): Likewise.
7669 (const_imm5_operand): Likewise.
7670 (aq10b_operand): Likewise.
7671 (aq10h_operand): Likewise.
7672 (aq10w_operand): Likewise.
7673 (aq10d_operand): Likewise.
7674 (const_m1_operand): Likewise.
7675 (reg_or_m1_operand): Likewise.
7676 (const_exp_2_operand): Likewise.
7677 (const_exp_4_operand): Likewise.
7678 (const_exp_8_operand): Likewise.
7679 (const_exp_16_operand): Likewise.
7680 (const_vector_same_val_operand): Likewise.
7681 (const_vector_same_simm5_operand): Likewise.
7682 (const_vector_same_uimm5_operand): Likewise.
7683 (const_vector_same_uimm6_operand): Likewise.
7684 (const_vector_same_uimm8_operand): Likewise.
7685 (par_const_vector_shf_set_operand): Likewise.
7686 (reg_or_vector_same_val_operand): Likewise.
7687 (reg_or_vector_same_simm5_operand): Likewise.
7688 (reg_or_vector_same_uimm6_operand): Likewise.
7689 * doc/extend.texi (MIPS SIMD Architecture Functions): New
7690 section.
7691 * doc/invoke.texi (-mmsa): Document new option.
7692
7693 2016-05-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
7694
7695 * configure.ac (enable_vtable_verify): Handle --enable-vtable-verify.
7696 * configure: Regenerate.
7697 * config.in: Regenerate.
7698 * gcc.c (VTABLE_VERIFICATION_SPEC) [!ENABLE_VTABLE_VERIFY]: Error
7699 on -fvtable-verify.
7700 * config/sol2.h [!ENABLE_VTABLE_VERIFY] (STARTFILE_VTV_SPEC): Define.
7701 (ENDFILE_VTV_SPEC): Define.
7702
7703 2016-05-09 Kaushik Phatak <kaushik.phatak@kpit.com>
7704
7705 * config/rl78/rl78.c (rl78_expand_prologue): Save the MDUC related
7706 registers in all interrupt handlers if necessary.
7707 (rl78_option_override): Add warning.
7708 (MUST_SAVE_MDUC_REGISTERS): New macro.
7709 (rl78_expand_epilogue): Restore the MDUC registers if necessary.
7710 * config/rl78/rl78.c (check_mduc_usage): New function.
7711 (mduc_regs): New structure to hold MDUC register data.
7712 * config/rl78/rl78.md (is_g13_muldiv_insn): New attribute.
7713 (mulsi3_g13): Add is_g13_muldiv_insn attribute.
7714 (udivmodsi4_g13): Add is_g13_muldiv_insn attribute.
7715 (mulhi3_g13): Add is_g13_muldiv_insn attribute.
7716 * config/rl78/rl78.opt (msave-mduc-in-interrupts): New option.
7717 * doc/invoke.texi (RL78 Options): Add -msave-mduc-in-interrupts.
7718
7719 2016-05-09 Bin Cheng <bin.cheng@arm.com>
7720
7721 * tree-if-conv.c (tree-ssa-loop.h): Include header file.
7722 (tree-ssa-loop-niter.h): Ditto.
7723 (idx_within_array_bound, ref_within_array_bound): New functions.
7724 (ifcvt_memrefs_wont_trap): Check if array ref is within bound.
7725 Factor out check on writable base object to ...
7726 (base_object_writable): ... here.
7727
7728 2016-05-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
7729
7730 * config/arm/arm.md (probe_stack): Add modes to set source
7731 and destination.
7732
7733 2016-05-09 Bernd Schmidt <bschmidt@redhat.com>
7734
7735 * regrename.c (base_reg_class_for_rename): New static function.
7736 (scan_rtx_address, scan_rtx): Use it instead of base_reg_class.
7737
7738 2016-05-08 Jan Hubicka <hubicka@ucw.cz>
7739
7740 * cgraph.c (thunk_adjust): Export.
7741 * cgraphclones.c (cgraph_node::create_clone): Clone thunk info.
7742 * cgraphunit.c (thunk_adjust): Export.
7743 (cgraph_node::assemble_thunks_and_aliases): Do not assemble inlined
7744 thunks.
7745 * ipa-inline-analyssi.c (compute_inline_parameters): Thunks are
7746 inlinable.
7747 * tree-inline.c (expand_call_inline): Expand thunks inline.
7748
7749 2016-05-08 Uros Bizjak <ubizjak@gmail.com>
7750
7751 PR target/70998
7752 * config/i386/sse.md (*sse2_vd_cvtsd2ss): New insn pattern.
7753 (*sse2_vd_cvtss2sd): Ditto.
7754 * config/i386/i386.md
7755 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf splitter):
7756 Generate *sse2_vd_cvtsd2ss pattern.
7757 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df splitter):
7758 Generate *sse2_vd_cvtss2sd pattern.
7759
7760 2016-05-08 Oleg Endo <olegendo@gcc.gnu.org>
7761
7762 * config/sh/sh.h (GET_SH_ARG_CLASS): Convert macro into ...
7763 * config/sh/sh.c (get_sh_arg_class): ... this new function. Update its
7764 users.
7765
7766 2016-05-08 Oleg Endo <olegendo@gcc.gnu.org>
7767
7768 * config/sh/sh-protos.h (sh_media_register_for_return): Remove.
7769 * config/sh/sh.c: Define and declare variables on first use throughout
7770 the file.
7771 (current_function_interrupt): Change to bool type.
7772 (frame_insn): Rename to emit_frame_insn and update users.
7773 (push_regs): Use bool for 'interrupt_handler' argument.
7774 (save_schedule_s): Remove.
7775 (TARGET_ASM_UNALIGNED_DI_OP, TARGET_ASM_ALIGNED_DI_OP): Remove.
7776 (sh_option_override): Don't nullify targetm.asm_out.aligned_op.di and
7777 targetm.asm_out.unaligned_op.di.
7778 (gen_far_branch): Remove redundant forward declaration.
7779 (sh_media_register_for_return, MAX_SAVED_REGS, save_entry_s, save_entry,
7780 MAX_TEMPS, save_schedule_ssave_schedule): Remove.
7781 (sh_set_return_address, sh_function_ok_for_sibcall,
7782 scavenge_reg): Update comments.
7783 (sh_builtin_saveregs): Use TRAGET_FPU_ANY condition.
7784 (sh2a_get_function_vector_number, sh2a_function_vector_p): Use for loop.
7785 (sh_attr_renesas_p): Remove unnecessary parentheses.
7786 (branch_dest): Simplify.
7787 * config/sh/sh.h (sh_args): Remove byref, byref_regs, stack_regs fields.
7788 Change force_mem, prototype_p, outgoing, renesas_abi fields to bool.
7789 (CUMULATIVE_ARGS): Change macro to typedef.
7790 (current_function_interrupt): Change to bool type.
7791 (sh_arg_class, sh_args, CUMULATIVE_ARGS, current_function_interrupt):
7792 Surround with __cplusplus ifdef.
7793 (sh_compare_op0, sh_compare_op1): Remove.
7794 (EPILOGUE_USES): Use TARGET_FPU_ANY condition.
7795
7796 2016-05-07 Jim Wilson <jim.wilson@linaro.org>
7797
7798 * config/arm/arm.md: (arch): Add neon.
7799 (arch_enabled): Return yes for arch neon when TARGET_NEON.
7800 * config/arm/vfp.md (movdf_vfp): Add w/G as alternative 3. Add
7801 neon_move as type for alt 3. Add arch attr enabling alt 3 for neon.
7802 Emit vmov.i64 for alt 3. Renumber alternatives 3 to 8. Adjust
7803 attributes for alt renumbering. Mark alt 3 as non-predicable.
7804 (thumb2_movdf_vfp): Likewise.
7805
7806 2016-05-07 Uros Bizjak <ubizjak@gmail.com>
7807
7808 * config/i386/i386.md (*addqi_1): Add preferred_for_speed attribute
7809 to disparage alternatives 3 and 4 for TARGET_PARTIAL_REG_STALL targets.
7810 (*andqi_1): Add preferred_for_speed attribute to disparage
7811 alternative 2 for TARGET_PARTIAL_REG_STALL targets.
7812 (*<code>qi_1): Ditto.
7813 (*one_cmplqi2_1): Add preferred_for_speed attribute to disparage
7814 alternative 1 for TARGET_PARTIAL_REG_STALL targets.
7815 (*ashlqi3_1): Ditto.
7816 (*swap<mode>): Merge from *swap<mode>_1 and *swap<mode>_2 patterns.
7817 Add preferred_for_size attribute to disparage alternative 0 and
7818 preferred_for_speed attribute to disparage alternative 1 for
7819 TARGET_PARTIAL_REG_STALL targets.
7820
7821 2016-05-07 Tom de Vries <tom@codesourcery.com>
7822
7823 PR tree-optimization/70956
7824 * graphite-scop-detection.c (build_cross_bb_scalars_def): Handle NULL
7825 def.
7826
7827 2016-05-07 Oleg Endo <olegendo@gcc.gnu.org>
7828
7829 * config/sh/sh-protos.h (sh_cbranch_distance): Declare new function.
7830 * config/sh/sh.c (sh_cbranch_distance): Implement it.
7831 * config/sh/sh.md (branch_zero): Remove define_attr.
7832 (define_delay): Disable delay slot if branch distance is one insn.
7833
7834 2016-05-06 Uros Bizjak <ubizjak@gmail.com>
7835
7836 * config/i386/i386.md (LEAMODE): New mode attribute.
7837 (plus to LEA splitter): Rewrite splitter using LEAMODE mode attribute.
7838 (ashift to LEA splitter): Rewrte splitter using SWI mode iterator
7839 and LEAMODE mode attribute. Use VOIDmode const_0_to_3_operand as
7840 operand 2 predicate.
7841 (*lea<mode>_general_2): Use VOIDmode for const248_operand.
7842 (*lea<mode>_general_3): Ditto.
7843 (*lea<mode>_general_4): Use VOIDmode for const_0_to_3_operand.
7844
7845 2016-05-06 Jakub Jelinek <jakub@redhat.com>
7846
7847 * genmddump.c (main): Convert argv from char ** to const char **.
7848
7849 2016-05-06 David Malcolm <dmalcolm@redhat.com>
7850
7851 * coretypes.h (OVERRIDE): New macro.
7852 (FINAL): New macro.
7853
7854 2016-05-06 Eric Botcazou <ebotcazou@adacore.com>
7855
7856 * tree-ssa-coalesce.c (gimple_can_coalesce_p): In the optimized case,
7857 allow coalescing if the types are compatible.
7858
7859 2016-05-06 David Malcolm <dmalcolm@redhat.com>
7860
7861 * pass_manager.h (pass_manager::register_pass_name): New method.
7862 (pass_manager::get_pass_by_name): New method.
7863 (pass_manager::create_pass_tab): New method.
7864 (pass_manager::m_name_to_pass_map): New field.
7865 * passes.c (name_to_pass_map): Delete global in favor of field
7866 "m_name_to_pass_map" of pass_manager.
7867 (register_pass_name): Rename from a function to...
7868 (pass_manager::register_pass_name): ...this method, updating
7869 for renaming of global "name_to_pass_map" to field
7870 "m_name_to_pass_map".
7871 (create_pass_tab): Rename from a function to...
7872 (pass_manager::create_pass_tab): ...this method, updating
7873 for renaming of global "name_to_pass_map" to field.
7874 (get_pass_by_name): Rename from a function to...
7875 (pass_manager::get_pass_by_name): ...this method.
7876 (enable_disable_pass): Convert use of get_pass_by_name to
7877 a method call, locating the pass_manager singleton.
7878
7879 2016-05-06 David Malcolm <dmalcolm@redhat.com>
7880
7881 * genattr-common.c (main): Convert argv from char ** to const char **.
7882 * genattr.c (main): Likewise.
7883 * genattrtab.c (main): Likewise.
7884 * genautomata.c (initiate_automaton_gen): Likewise.
7885 (main): Likewise.
7886 * gencodes.c (main): Likewise.
7887 * genconditions.c (main): Likewise.
7888 * genconfig.c (main): Likewise.
7889 * genconstants.c (main): Likewise.
7890 * genemit.c (main): Likewise.
7891 * genenums.c (main): Likewise.
7892 * genextract.c (main): Likewise.
7893 * genflags.c (main): Likewise.
7894 * genmddeps.c (main): Likewise.
7895 * genopinit.c (main): Likewise.
7896 * genoutput.c (main): Likewise.
7897 * genpeep.c (main): Likewise.
7898 * genpreds.c (main): Likewise.
7899 * genrecog.c (main): Likewise.
7900 * gensupport.c (init_rtx_reader_args_cb): Likewise.
7901 (init_rtx_reader_args): Likewise.
7902 * gensupport.h (init_rtx_reader_args_cb): Likewise.
7903 (init_rtx_reader_args): Likewise.
7904 * gentarget-def.c (main): Likewise.
7905 * read-md.c (read_md_files): Likewise.
7906 * read-md.h (read_md_files): Likewise.
7907
7908 2016-05-06 Uros Bizjak <ubizjak@gmail.com>
7909
7910 * config/i386/i386.md (int cmove peephole2s): Use general_reg_operand
7911 instead of register_and_not_any_fp_reg_operand as operand 0 predicate.
7912 * config/i386/predicates.md (register_and_not_any_fp_reg_operand):
7913 Remove unused predicate.
7914 (register_and_not_fp_reg_operand): Ditto.
7915
7916 2016-05-06 Martin Liska <mliska@suse.cz>
7917
7918 * tree-if-conv.c (ifcvt_split_critical_edges): Use auto_vec
7919 instead of vec as the vector is local to the function.
7920
7921 2016-05-06 Jakub Jelinek <jakub@redhat.com>
7922
7923 * config/i386/sse.md (*<code>v8hi3, *<code>v16qi3): Add
7924 avx512bw alternative.
7925
7926 * config/i386/sse.md (<mask_codefor>ashr<mode>3<mask_name>): Move
7927 before the ashr<mode>3 pattern.
7928
7929 * config/i386/sse.md (*avx2_pmaddwd, *sse2_pmaddwd): Use
7930 v instead of x in vex or maybe_vex alternatives, use
7931 maybe_evex instead of vex in prefix.
7932
7933 * config/i386/sse.md (*vec_extractv4sf_0, *sse4_1_extractps,
7934 *vec_extractv4sf_mem, vec_extract_lo_v16hi, vec_extract_hi_v16hi,
7935 vec_extract_lo_v32qi, vec_extract_hi_v32qi): Use v instead of x
7936 in vex or maybe_vex alternatives, use maybe_evex instead of vex
7937 in prefix.
7938
7939 * config/i386/sse.md (*vec_concatv2sf_sse4_1, *vec_concatv4sf): Use
7940 v instead of x in vex or maybe_vex alternatives, use
7941 maybe_evex instead of vex in prefix.
7942
7943 * config/i386/sse.md (sse_shufps_<mode>, sse_storehps, sse_loadhps,
7944 sse_storelps, sse_movss, avx2_vec_dup<mode>, avx2_vec_dupv8sf_1,
7945 sse2_shufpd_<mode>, sse2_storehpd, sse2_storelpd, sse2_loadhpd,
7946 sse2_loadlpd, sse2_movsd): Use v instead of x in vex or maybe_vex
7947 alternatives, use maybe_evex instead of vex in prefix.
7948
7949 * config/i386/sse.md (vec_interleave_lowv4sf,
7950 *vec_interleave_highv2df, *vec_interleave_lowv2df): Use
7951 v instead of x in vex or maybe_vex alternatives, use
7952 maybe_evex instead of vex in prefix.
7953
7954 * config/i386/sse.md (sse_movhlps, sse_movlhps): Use
7955 v instead of x in vex or maybe_vex alternatives, use
7956 maybe_evex instead of vex in prefix.
7957
7958 * config/i386/sse.md (*avx_cvtpd2dq256_2, *avx_cvtps2pd256_2): Use
7959 v constraint instead of x.
7960
7961 2016-05-06 Nathan Sidwell <nathan@codesourcery.com>
7962
7963 * gimple.c (gimple_call_same_target_p): Unique functions are eq.
7964 * tree-ssa-tail-merge.c (same_succ::equal): Check pointer eq
7965 equality first.
7966
7967 2016-05-06 Richard Biener <rguenther@suse.de>
7968
7969 PR tree-optimization/70948
7970 * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
7971 Properly clobber all fields of va_list for __builtin_va_start.
7972
7973 2016-05-06 Yuri Rumyantsev <ysrumyan@gmail.com>
7974
7975 PR debug/70935
7976 * tree-ssa-loop-unswitch.c (find_loop_guard): Reject guard edge with
7977 loop latch destination.
7978
7979 2016-05-06 Martin Liska <mliska@suse.cz>
7980
7981 * tree-ssa-uninit.c: Apply manual changes
7982 to the GNU coding style.
7983 (prune_uninit_phi_opnds): Rename from
7984 prune_uninit_phi_opnds_in_unrealizable_paths.
7985
7986 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
7987
7988 * config/sh/sh.opt (madjust-unroll, minvalid-symbols, msoft-atomic,
7989 mspace): Remove deprecated options.
7990 * doc/invoke.texi (SH options): Remove -mspace.
7991
7992 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
7993
7994 * config/sh/sh.md (ic_invalidate_line_sh4a): Fix insn length.
7995
7996 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
7997
7998 * config/sh/sh.md (*cmpeqsi_t): Remove combine insn pattern and similar
7999 corresponding combine split pattern.
8000
8001 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
8002
8003 PR target/58219
8004 * config/sh/predicates.md (long_displacement_mem_operand): New.
8005 * config/sh/sh.md (movsi_i): Allow for SH2A, disallow for any FPU.
8006 Add movi20, movi20s alternatives. Adjust length attribute for
8007 alternatives.
8008 (movsi_ie): Allow for any FPU. Adjust length attribute for
8009 alternatives.
8010 (movsi_i_lowpart): Add movi20, movi20s alternatives. Adjust length
8011 attribute for alternatives.
8012 (*mov<mode>): Use long_displacement_mem_operand for length attribute.
8013 (*movdi_i, movdf_k, movdf_i4, movsf_i, movsf_ie, movsf_ie_ra): Adjust
8014 length attribute for alternatives.
8015
8016 2016-05-06 Richard Biener <rguenther@suse.de>
8017
8018 PR tree-optimization/70960
8019 * tree-if-conv.c (ifcvt_walk_pattern_tree): Handle non-SSA ops.
8020
8021 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
8022
8023 PR target/52933
8024 * config/sh/sh.md (*cmp_div0s_7, *cmp_div0s_8): Add div0s variants.
8025 * config/sh/sh.c (sh_rtx_costs): Add another div0s case.
8026
8027 2016-05-06 Marek Polacek <polacek@redhat.com>
8028
8029 PR sanitizer/70875
8030 * ubsan.c (get_ubsan_type_info_for_type): Remove assert.
8031
8032 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
8033
8034 PR target/54089
8035 * config/sh/sh.md (*rotcr): Add another variant.
8036
8037 2016-05-06 Richard Biener <rguenther@suse.de>
8038
8039 PR middle-end/70931
8040 * dwarf2out.c (native_encode_initializer): Skip zero-sized fields.
8041
8042 2016-05-06 Richard Biener <rguenther@suse.de>
8043
8044 PR middle-end/70941
8045 * fold-const.c (split_tree): Always convert to the original type
8046 before negating.
8047
8048 2016-05-06 Richard Biener <rguenther@suse.de>
8049
8050 * fwprop.c (fwprop): Remove duplicate cleanup_cfg call.
8051 (fwprop_addr): Likewise.
8052
8053 2016-05-06 Uros Bizjak <ubizjak@gmail.com>
8054
8055 PR target/70873
8056 * config/i386/i386-protos.h (ix86_standard_x87sse_constant_load_p):
8057 New prototype.
8058 * config/i386/i386.c (ix86_standard_x87sse_constant_load_p): New.
8059 * config/i386/i386.md (push mem splitter): Use find_constant_src in
8060 the splitter condition.
8061 (FP load splitter): Use ix86_standard_x87sse_constant_load_p in
8062 the splitter condition.
8063 (FP float_extend load splitter): Ditto.
8064
8065 2016-05-05 Uros Bizjak <ubizjak@gmail.com>
8066
8067 * config/i386/i386.md (peehole2 patterns): Change true_regnum
8068 to REGNO in all peephole2 patterns.
8069 (post-reload splitters): Change true_regnum to REGNO in
8070 post-reload splitters.
8071 (zero_extend splitters): Use general_reg_operand and
8072 nonimmediate_gr_operand predicates.
8073
8074 2016-05-05 Jakub Jelinek <jakub@redhat.com>
8075
8076 * config/i386/sse.md (<avx512>_fmadd_<mode>_mask3<round_name>): Use
8077 v constraint instead of x.
8078
8079 2016-05-05 Alan Modra <amodra@gmail.com>
8080
8081 PR target/68662
8082 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Don't
8083 set OPTION_MASK_RELOCATABLE when flag_pic == 2. Set
8084 TARGET_NO_FP_IN_TOC for -mrelocatable.
8085 (MINIMAL_TOC_SECTION_ASM_OP): Remove redundant
8086 TARGET_RELOCATABLE test.
8087 (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
8088 (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
8089 * config/rs6000/linux64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
8090 (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
8091 (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
8092 * config/rs6000/freebsd64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
8093 (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
8094 (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
8095 * config/rs6000/predicates.md (easy_fp_constant): Likewise.
8096 * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
8097 Likewise.
8098 (rs6000_assemble_integer): Update TARGET_RELOCATABLE test.
8099 (rs6000_stack_info): Likewise.
8100 (rs6000_elf_asm_out_constructor): Likewise.
8101 (rs6000_elf_asm_out_destructor): Likewise.
8102 (rs6000_elf_declare_function_name): Likewise.
8103 * config/rs6000/rs6000.md (load_toc_aix_di): Likewise.
8104 * config/rs6000/rs6000.h (MASK_RELOCATABLE, MASK_MINIMAL_TOC):
8105 Don't define.
8106
8107 2016-05-05 Alan Modra <amodra@gmail.com>
8108
8109 * config/rs6000/rs6000.c (rs6000_frame_related): Rewrite.
8110
8111 2016-05-05 Alan Modra <amodra@gmail.com>
8112
8113 * config/rs6000/rs6000.c (rs6000_savres_strategy): Don't use
8114 out-of-line gpr restore for one or two regs if that would add
8115 a save of lr.
8116
8117 2016-05-04 Uros Bizjak <ubizjak@gmail.com>
8118
8119 PR target/70873
8120 * config/i386/i386.md
8121 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df peephole2):
8122 Change to post-epilogue_completed late splitter. Use sse_reg_operand
8123 as operand 0 predicate.
8124 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf peephole2):
8125 Ditto.
8126 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float {si,di}->{sf,df} peephole2):
8127 Ditto. Emit the pattern using RTX.
8128
8129 (TARGET_USE_VECTOR_FP_CONVERTS float_extend sf->df splitter):
8130 Use sse_reg_opreand as operand 0 predicate. Do not use true_regnum in
8131 the post-reload splitter. Use lowpart_subreg instead of gen_rtx_REG.
8132 (TARGET_USE_VECTOR_FP_CONVERTS float_truncate df->sf splitter):
8133 Ditto.
8134 (TARGET_USE_VECTOR_CONVERTS float si->{sf,df} splitter): Use
8135 sse_reg_operand as operand 0 predicate.
8136
8137 (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_extend sf->df peephole2):
8138 Use sse_reg_opreand as operand 0 predicate. Use lowpart_subreg
8139 instead of gen_rtx_REG.
8140 (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_truncate sf->df peephole2):
8141 Ditto.
8142
8143 2016-05-04 Segher Boessenkool <segher@kernel.crashing.org>
8144
8145 * function.c (emit_use_return_register_into_block): Delete.
8146 (gen_return_pattern): Delete.
8147 (emit_return_into_block): Delete.
8148 (active_insn_between): Delete.
8149 (convert_jumps_to_returns): Delete.
8150 (emit_return_for_exit): Delete.
8151 (thread_prologue_and_epilogue_insns): Delete all code dealing with
8152 simple_return for shrink-wrapped blocks.
8153 * shrink-wrap.c (try_shrink_wrapping): Insert simple_return at the
8154 end of blocks that need one.
8155 (get_unconverted_simple_return): Delete.
8156 (convert_to_simple_return): Delete.
8157 * shrink-wrap.c (get_unconverted_simple_return): Delete declaration.
8158 (convert_to_simple_return): Ditto.
8159
8160 2016-05-04 Segher Boessenkool <segher@kernel.crashing.org>
8161
8162 * cfgcleanup.c (bb_is_just_return): New function.
8163 (try_optimize_cfg): Simplify jumps to return, branches to return,
8164 and branches around return.
8165
8166 2016-05-04 Segher Boessenkool <segher@kernel.crashing.org>
8167
8168 * cfgcleanup.c (try_simplify_condjump): Don't try to simplify a
8169 branch to a return.
8170
8171 2016-05-04 Jakub Jelinek <jakub@redhat.com>
8172
8173 PR c++/70906
8174 PR c++/70933
8175 * tree-core.h (enum operand_equal_flag): Add OEP_HASH_CHECK.
8176 * tree.c (inchash::add_expr): If !IS_EXPR_CODE_CLASS (tclass),
8177 assert flags & OEP_HASH_CHECK, instead of asserting it
8178 never happens. Handle TARGET_EXPR.
8179 * fold-const.c (operand_equal_p): For hash verification,
8180 or in OEP_HASH_CHECK into flags.
8181
8182 2016-05-04 Eric Botcazou <ebotcazou@adacore.com>
8183
8184 * tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head
8185 comment.
8186 (compute_samebase_partition_bases): Fix typo.
8187
8188 2016-05-04 Jakub Jelinek <jakub@redhat.com>
8189
8190 * config/i386/sse.md (vec_interleave_highv8sf,
8191 vec_interleave_lowv8sf, vec_interleave_highv4df,
8192 vec_interleave_lowv4df): Remove constraints from expanders.
8193
8194 * config/i386/sse.md (sse2_movq128): Use v constraint instead of x.
8195
8196 2016-05-04 Jan Hubicka <hubicka@ucw.cz>
8197
8198 * tree-inline.c (expand_call_inline): Fix path dealing with
8199 making lhs of call statement undefined.
8200
8201 2016-05-04 Jan Hubicka <hubicka@ucw.cz>
8202
8203 * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases):
8204 Check availability on NODE, too.
8205 * cgraph.h (symtab_node::call_for_symbol_and_aliases): Likewise.
8206 (cgraph_node::call_for_symbol_and_aliases): Likewise.
8207 (varpool_node::call_for_symbol_and_aliase): Likewise.
8208 * ipa-pure-const.c (add_new_function): Analyze all bodies.
8209 (propagate_pure_const): Propagate across interposable functions, too.
8210 (skip_function_for_local_pure_const): Do not skip interposable bodies
8211 with aliases.
8212 (pass_local_pure_const::execute): Update.
8213
8214 2016-05-04 Marek Polacek <polacek@redhat.com>
8215
8216 * doc/invoke.texi: Document -Wdangling-else.
8217
8218 2016-05-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
8219
8220 * config.gcc: Error out when conflicting multilib is detected. Do not
8221 loop over multilibs since no combination is legal.
8222
8223 2016-05-04 Alan Modra <amodra@gmail.com>
8224
8225 * config/rs6000/rs6000.h (PIC_OFFSET_TABLE_REGNUM): Correct.
8226 * config/rs6000/sysv4.h (TARGET_TOC): Simplify.
8227 * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
8228 Align .toc.
8229
8230 2016-05-04 Matthew Fortune <matthew.fortune@imgtec.com>
8231
8232 * config/mips/mips-cpus.def (p5600): Avoid IMADD by default.
8233 Clean up p5600 comments.
8234
8235 2016-05-04 Richard Biener <rguenther@suse.de>
8236
8237 * match.pd: Add BIT_FIELD_REF canonicalizations and vector
8238 constructor simplifications.
8239 * fold-const.c (fold_ternary_loc): Remove duplicate functionality here.
8240
8241 2016-05-04 Oleg Endo <olegendo@gcc.gnu.org>
8242
8243 * config/sh/predicates (post_inc_mem, pre_dec_mem): New predicates.
8244 * config/sh/sh-protos.h (sh_find_set_of_reg): Return null result if
8245 result.set_rtx is null instead of aborting.
8246 * config/sh/sh.h (USE_LOAD_POST_INCREMENT, USE_STORE_PRE_DECREMENT):
8247 Always enable.
8248 (USE_LOAD_PRE_DECREMENT, USE_STORE_POST_INCREMENT): Enable for SH2A.
8249 * config/sh/sh.md (*extend<mode>si2_predec, *mov<mode>_load_predec,
8250 *mov<mode>_store_postinc): New patterns.
8251
8252 2016-05-04 Marc Glisse <marc.glisse@inria.fr>
8253
8254 * match.pd ((A | B) & (A | C)): Generalize to BIT_XOR_EXPR. Mark
8255 as commutative. Check both conversions are NOP.
8256 ((A & B) OP (C & B)): Remove.
8257
8258 2016-05-04 Alan Modra <amodra@gmail.com>
8259
8260 * combine.c (simplify_set): Correct WORD_REGISTER_OPERATIONS test.
8261
8262 2016-05-04 Alan Modra <amodra@gmail.com>
8263
8264 PR target/70866
8265 * config/rs6000/rs6000.c (rs6000_stack_info): Don't set cr_save_p
8266 when cr2,3,4 are all fixed regs.
8267
8268 2016-05-04 Bernd Schmidt <bschmidt@redhat.com>
8269
8270 PR rtl-optimization/57193
8271 * opts.c (default_options_table): Revert OPT_frename_registers change.
8272 * doc/invoke.texi (-frename-registers, -O2): Likewise.
8273
8274 2016-05-03 Martin Sebor <msebor@redhat.com>
8275
8276 PR c++/66561
8277 * builtins.c (fold_builtin_FILE): New function.
8278 (fold_builtin_FUNCTION, fold_builtin_LINE): New functions.
8279 (fold_builtin_0): Call them.
8280 * gimplify.c (gimplify_call_expr): Remove the handling of
8281 BUILT_IN_FILE, BUILT_IN_FUNCTION, and BUILT_IN_LINE.
8282
8283 PR c++/66561
8284 * doc/extend.texi (Other Builtins): Update __builtin_FILE,
8285 __builtin_FUNCTION, and __builtin_LINE to reflect they yield
8286 constants.
8287
8288 PR c++/66639
8289 * doc/extend.texi (Function Names as Strings): Update __func__,
8290 __FUNCTION__, __PRETTY_FUNCTION__ to reflect they evaluate to
8291 constants.
8292
8293 2016-05-03 Jakub Jelinek <jakub@redhat.com>
8294 Richard Biener <rguenther@suse.de>
8295
8296 PR tree-optimization/70916
8297 * tree-if-conv.c: Include cfganal.h.
8298 (pass_if_conversion::execute): Call connect_infinite_loops_to_exit
8299 and remove_fake_exit_edges around the optimization pass.
8300
8301 2016-05-03 Jan Hubicka <hubicka@ucw.cz>
8302
8303 * cgraph.c (symbol_table::create_edge): Set inline_failed.
8304 (cgraph_edge::make_direct): Likewise.
8305 (cgraph_edge::dump_edge_flags): Dump call_stmt_cannot_inline_p.
8306 * cgraphclones.c (duplicate_thunk_for_node): Set inline_failed.
8307 * cif-code.def (CIF_LTO_MISMATCHED_DECLARATIONS): New code
8308 (CIF_THUNK): New code.
8309 * ipa-inline-analysis.c (initialize_inline_failed): Preserve
8310 CIF_FINAL_ERROR codes; do not deal with call_stmt_cannot_inline_p.
8311 (compute_inline_parameters): Set inline_failed for thunks.
8312 (inline_analyze_function): Cleanup.
8313 * ipa-inline.c (can_inline_edge_p): Do not deal with
8314 call_stmt_cannot_inline_p.
8315 (can_early_inline_edge_p): Likewise.
8316 (early_inliner): Initialize inline_failed.
8317 * lto-cgraph.c (lto_output_edge): Sanity check inline_failed.
8318
8319 2016-05-03 Uros Bizjak <ubizjak@gmail.com>
8320
8321 * config/i386/predicates.md (x87nonimm_ssenomem_operand): Rename
8322 from nonimm_ssenomem_operand.
8323 (nonimm_ssenomem_operand): New predicate.
8324 * config/i386/i386.md (extendsfdf2): Use nonimm_ssenomem_operand
8325 as operand 0 predicate.
8326 (*extendsfdf2): Merge from *extendsfdf2_mixed and *extendsfdf2_i387.
8327 Disable unsupported alternatives using "enabled" attribute.
8328 Use register_ssemem_operand as operand 0 predicate.
8329 (*fop_<mode>_1): Use x87nonimm_ssenomem_operand as operand 1 predicate.
8330
8331 2016-05-03 Marek Polacek <polacek@redhat.com>
8332
8333 PR c/70859
8334 * input.c (expansion_point_location): New function.
8335 * input.h (expansion_point_location): Declare.
8336
8337 2016-05-03 Pierre-Marie de Rodat <derodat@adacore.com>
8338
8339 * dwarf2out.c (resolve_args_picking_1): Replace the frame_offset
8340 occurence with frame_offset_ ones.
8341
8342 2016-05-03 Alan Modra <amodra@gmail.com>
8343
8344 PR rtl-optimization/70890
8345 * ira.c (combine_and_move_insns): When moving def_insn, remove
8346 equivs on use_insn.
8347
8348 2016-05-03 Dominik Vogt <vogt@linux.vnet.ibm.com>
8349
8350 * config/s390/s390.md ("*r<noxa>sbg_<mode>_sll")
8351 ("*r<noxa>sbg_<mode>_srl"): New define_insns.
8352 ("*r<noxa>sbg_<mode>_srl_bitmask"): Rename by adding "_bitmask".
8353 ("*r<noxa>sbg_<mode>_sll_bitmask"): Likewise.
8354
8355 2016-05-03 Alan Modra <amodra@gmail.com>
8356
8357 * config/rs6000/rs6000.c (rs6000_savres_strategy): Correct condition
8358 for SAVE_MULTIPLE/STORE_MULTIPLE.
8359
8360 2016-05-03 Jakub Jelinek <jakub@redhat.com>
8361
8362 * config/i386/i386.md (*truncdfsf_mixed, *truncdfsf_i387,
8363 *truncxfsf2_mixed, *truncxfdf2_mixed): Use v constraint instead of x.
8364
8365 2016-05-03 Richard Biener <rguenther@suse.de>
8366
8367 * gimplify.h (get_initialized_tmp_var): Add allow_ssa parameter
8368 default true.
8369 (gimplify_arg): Likewise.
8370 * gimplify.c (gimplify_expr): Add overload with allow_ssa parameter,
8371 re-writing the result to a decl if required.
8372 (internal_get_tmp_var): Add allow_ssa parameter
8373 and override into_ssa with it.
8374 (get_formal_tmp_var): Adjust.
8375 (get_initialized_tmp_var): Add allow_ssa parameter.
8376 (gimplify_arg): Add allow_ssa parameter and avoid generating
8377 SSA names for the result false.
8378 (gimplify_call_expr): If the call may return twice do not
8379 gimplify parameters into SSA.
8380 (prepare_gimple_addressable): Do not allow an SSA name as temporary.
8381 (gimplify_modify_expr): Adjust assert. For noreturn calls
8382 with a SSA name LHS adjust its def.
8383 (gimplify_save_expr): Do not allow an SSA name as save-expr result.
8384 (gimplify_one_sizepos): Do not allow an SSA name as a sizepos.
8385 (gimplify_body): Init GIMPLE SSA data structures and gimplify into-SSA.
8386 (gimplify_scan_omp_clauses): Make sure OMP_CLAUSE_SIZE is not
8387 an SSA name. Likewise for OMP_CLAUSE_REDUCTION operands.
8388 (gimplify_omp_for): Likewise for OMP_CLAUSE_DECL. Likewise
8389 for OMP_FOR_COND, OMP_FOR_INCR and OMP_CLAUSE_LINEAR_STEP.
8390 (optimize_target_teams): Do not allow SSA names for clause operands.
8391 (gimplify_expr): Likewise for where we mark the result addressable.
8392 * passes.def (pass_init_datastructures): Remove.
8393 * tree-into-ssa.c (mark_def_sites): Ignore existing SSA names.
8394 (rewrite_stmt): Likewise.
8395 * tree-inline.c (initialize_cfun): Properly transfer SSA state.
8396 (replace_locals_op): Replace SSA names.
8397 (copy_gimple_seq_and_replace_locals): Init src_cfun.
8398 * gimple-low.c (lower_builtin_setjmp): Deal with SSA.
8399 * cgraph.c (release_function_body): Free CFG annotations only
8400 when we have a CFG. Simplify.
8401 * gimple-fold.c (gimplify_and_update_call_from_tree): Use
8402 force_gimple_operand instead of get_initialized_tmp_var.
8403 * tree-pass.h (make_pass_init_datastructures): Remove.
8404 * tree-ssa.c (execute_init_datastructures): Remove.
8405 (pass_data_init_datastructures): Likewise.
8406 (class pass_init_datastructures): Likewise.
8407 (make_pass_init_datastructures): Likewise.
8408 * omp-low.c (create_omp_child_function): Init SSA data structures.
8409 (grid_expand_target_grid_body): Likewise.
8410 * tree-cfg.c (move_block_to_fn): Double-check the DEF is an SSA
8411 name before adding it to names_to_release.
8412 (remove_bb): Always release SSA defs.
8413 * tree-ssa-ccp.c (get_default_value): Check SSA_NAME_VAR
8414 before dereferencing it.
8415 * cgraphunit.c (init_lowered_empty_function): Always
8416 int SSA data structures.
8417 * tree-ssanames.c (release_defs): Remove assert that we are in
8418 SSA form.
8419 * trans-mem.c (diagnose_tm_1): Handle SSA name function.
8420
8421 2016-05-03 Jakub Jelinek <jakub@redhat.com>
8422 Uros Bizjak <ubizjak@gmail.com>
8423
8424 PR rtl-optimization/70467
8425 * config/i386/predicates.md (x86_64_hilo_int_operand,
8426 x86_64_hilo_general_operand): New predicates.
8427 * config/i386/constraints.md (Wd): New constraint.
8428 * config/i386/i386.md (mode attr di): Use Wd instead of e.
8429 (general_hilo_operand): New mode attr.
8430 (add<mode>3, sub<mode>3): Use <general_hilo_operand>
8431 instead of <general_operand>.
8432 (*add<dwi>3_doubleword, *sub<dwi>3_doubleword): Use
8433 x86_64_hilo_general_operand instead of <general_operand>.
8434
8435 2016-05-03 Jakub Jelinek <jakub@redhat.com>
8436
8437 PR tree-optimization/70916
8438 * tree-if-conv.c (constant_or_ssa_name): Removed.
8439 (fold_build_cond_expr): Use is_gimple_val instead of
8440 constant_or_ssa_name.
8441
8442 PR tree-optimization/70916
8443 * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Give up
8444 if COND_EXPR rhs1 is neither SSA_NAME nor COMPARISON_CLASS_P.
8445
8446 PR target/49244
8447 * tree-ssa-ccp.c: Include stor-layout.h and optabs-query.h.
8448 (optimize_atomic_bit_test_and): New function.
8449 (pass_fold_builtins::execute): Use it.
8450 * optabs.def (atomic_bit_test_and_set_optab,
8451 atomic_bit_test_and_complement_optab,
8452 atomic_bit_test_and_reset_optab): New optabs.
8453 * internal-fn.def (ATOMIC_BIT_TEST_AND_SET,
8454 ATOMIC_BIT_TEST_AND_COMPLEMENT, ATOMIC_BIT_TEST_AND_RESET): New ifns.
8455 * builtins.h (expand_ifn_atomic_bit_test_and): New prototype.
8456 * builtins.c (expand_ifn_atomic_bit_test_and): New function.
8457 * internal-fn.c (expand_ATOMIC_BIT_TEST_AND_SET,
8458 expand_ATOMIC_BIT_TEST_AND_COMPLEMENT,
8459 expand_ATOMIC_BIT_TEST_AND_RESET): New functions.
8460 * doc/md.texi (atomic_bit_test_and_set@var{mode},
8461 atomic_bit_test_and_complement@var{mode},
8462 atomic_bit_test_and_reset@var{mode}): Document.
8463 * config/i386/sync.md (atomic_bit_test_and_set<mode>,
8464 atomic_bit_test_and_complement<mode>,
8465 atomic_bit_test_and_reset<mode>): New expanders.
8466 (atomic_bit_test_and_set<mode>_1,
8467 atomic_bit_test_and_complement<mode>_1,
8468 atomic_bit_test_and_reset<mode>_1): New insns.
8469
8470 2016-05-03 Richard Sandiford <richard.sandiford@arm.com>
8471
8472 PR rtl-optimization/70687
8473 * combine.c (change_zero_ext): Check for scalar modes. Use wide_int
8474 instead of unsigned HOST_WIDE_INT.
8475
8476 2016-05-03 Bernd Schmidt <bschmidt@redhat.com>
8477
8478 PR rtl-optimization/44281
8479 * hard-reg-set.h (struct target_hard_regs): New field
8480 x_fixed_nonglobal_reg_set.
8481 (fixed_nonglobal_reg_set): New macro.
8482 * reginfo.c (init_reg_sets_1): Initialize it.
8483 * ira.c (setup_alloc_regs): Use fixed_nonglobal_reg_set instead
8484 of fixed_reg_set.
8485 * df-scan.c (df_insn_refs_collect): Asms may reference global regs.
8486
8487 2016-05-03 Bin Cheng <bin.cheng@arm.com>
8488
8489 PR tree-optimization/56541
8490 * doc/invoke.texi (@item max-tree-if-conversion-phi-args): New item.
8491 * params.def (PARAM_MAX_TREE_IF_CONVERSION_PHI_ARGS): new param.
8492 * tree-if-conv.c (MAX_PHI_ARG_NUM): new macro.
8493 (any_complicated_phi): new static variable.
8494 (aggressive_if_conv): delete.
8495 (if_convertible_phi_p): support phis with more than two arguments.
8496 (if_convertible_bb_p): remvoe check on aggressive_if_conv and
8497 critical pred edges.
8498 (ifcvt_split_critical_edges): support phis with more than two
8499 arguments by checking new parameter. only split critical edges
8500 if needed.
8501 (tree_if_conversion): handle simd pragma marked loop using new
8502 local variable aggressive_if_conv. check any_complicated_phi.
8503
8504 2016-05-03 Bin Cheng <bin.cheng@arm.com>
8505
8506 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check depends_on
8507 before using it.
8508
8509 2016-05-03 Bin Cheng <bin.cheng@arm.com>
8510
8511 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Don't clobber
8512 cbase.
8513
8514 2016-05-03 Oleg Endo <olegendo@gcc.gnu.org>
8515
8516 * config/sh/sh.md (udivsi3, divsi3, mulsi3): Simplify.
8517 (mulhisi3, umulhisi3, (smulsi3_highpart, umulsi3_highpart): Convert to
8518 define_insn_and_split.
8519 (mulsi3_i): New define_insn_and_split.
8520 (mulsi3_call): Convert to define_insn.
8521 (mulsidi3, mulsidi3_compact, umulsidi3, umulsidi3_compact):
8522 Remove constraints.
8523
8524 2016-05-02 Michael Meissner <meissner@linux.vnet.ibm.com>
8525
8526 * machmode.h (mode_complex): Add support to give the complex mode
8527 for a given mode.
8528 (GET_MODE_COMPLEX_MODE): Likewise.
8529 * stor-layout.c (layout_type): For COMPLEX_TYPE, use the mode
8530 stored by build_complex_type and gfc_build_complex_type instead of
8531 trying to figure out the appropriate mode based on the size. Raise
8532 an assertion error, if the type was not set.
8533 * genmodes.c (struct mode_data): Add field for the complex type of
8534 the given type.
8535 (blank_mode): Likewise.
8536 (make_complex_modes): Remember the complex mode created in the
8537 base type.
8538 (emit_mode_complex): Write out the mode_complex array to map a
8539 type mode to the complex version.
8540 (emit_insn_modes_c): Likewise.
8541 * tree.c (build_complex_type): Set the complex type to use before
8542 calling layout_type.
8543 * config/rs6000/rs6000.c (rs6000_hard_regno_nregs_internal): Add
8544 support for __float128 complex datatypes.
8545 (rs6000_hard_regno_mode_ok): Likewise.
8546 (rs6000_setup_reg_addr_masks): Likewise.
8547 (rs6000_complex_function_value): Likewise.
8548 * config/rs6000/rs6000.h (FLOAT128_IEEE_P): Likewise.
8549 __float128 and __ibm128 complex.
8550 (FLOAT128_IBM_P): Likewise.
8551 (ALTIVEC_ARG_MAX_RETURN): Likewise.
8552 * doc/extend.texi (Additional Floating Types): Document that
8553 -mfloat128 must be used to enable __float128. Document complex
8554 __float128 and __ibm128 support.
8555
8556 2016-05-02 Jakub Jelinek <jakub@redhat.com>
8557
8558 PR target/49244
8559 * gimple.c (gimple_builtin_call_types_compatible_p): Allow
8560 char/short arguments promoted to int because of promote_prototypes.
8561
8562 2016-05-02 Uros Bizjak <ubizjak@gmail.com>
8563
8564 * config/i386/predicates.md (register_ssemem_operand): New predicate.
8565 * config/i386/i386.md (*cmpi<FPCMP:unord><MODEF:mode>): Merge from
8566 *cmpi<FPCMP:unord><MODEF:mode>_mixed and
8567 *cmpi<FPCMP:unord><X87MODEF:mode>_i387. Disable unsupported
8568 alternatives using "enabled" attribute. Use register_ssemem_operand
8569 as operand 1 predicate.
8570 (*cmpi<unord>xf_i387): Split XFmode pattern from
8571 *cmpi<FPCMP:unord><X87MODEF:mode>_i387.
8572 (*absneg<mode>2): Merge from *absneg<mode>2_mixed and
8573 *absneg<mode>2_i387. Disable unsupported alternatives using
8574 "enabled" attribute.
8575 (*absnegxf2_i387): Split XFmode pattern from *absneg<mode>2_i387.
8576
8577 2016-05-02 Nathan Sidwell <nathan@codesourcery.com>
8578
8579 * omp-low.c (lower_oacc_head_tail): Assert there is at least one
8580 marker.
8581 (oacc_loop_process): Check mask for loop termination.
8582
8583 2016-05-02 Jan Hubicka <hubicka@ucw.cz>
8584
8585 * cif-code.def (CIF_THUNK): Add.
8586 * ipa-inline-analsysis.c (evaluate_conditions_for_known_args): Revert
8587 accidental change.
8588
8589 2016-05-02 Jan Hubicka <hubicka@ucw.cz>
8590
8591 * ipa-inline-analysis.c (reset_inline_summary): Clear fp_expressions
8592 (dump_inline_summary): Dump it.
8593 (fp_expression_p): New predicate.
8594 (estimate_function_body_sizes): Use it.
8595 (inline_merge_summary): Merge fp_expressions.
8596 (inline_read_section): Read fp_expressions.
8597 (inline_write_summary): Write fp_expressions.
8598 * ipa-inline.c (can_inline_edge_p): Permit inlining across fp math
8599 codegen boundary if either caller or callee is !fp_expressions.
8600 * ipa-inline.h (inline_summary): Add fp_expressions.
8601 * ipa-inline-transform.c (inline_call): When inlining !fp_expressions
8602 to fp_expressions be sure the fp generation flags are updated.
8603
8604 2016-05-02 Jakub Jelinek <jakub@redhat.com>
8605
8606 PR rtl-optimization/70467
8607 * cse.c (cse_insn): Handle no-op MEM moves after folding.
8608
8609 PR rtl-optimization/70467
8610 * ipa-pure-const.c (check_call): Handle internal calls even in
8611 ipa mode like in local mode.
8612
8613 2016-05-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
8614
8615 * doc/install.texi: Document supported in-tree gmp/mpfr/mpc versions.
8616
8617 2016-05-02 Marc Glisse <marc.glisse@inria.fr>
8618
8619 * match.pd (X u< X, X u> X): New transformations.
8620
8621 2016-05-02 Marc Glisse <marc.glisse@inria.fr>
8622
8623 * flag-types.h (enum warn_strict_overflow_code): Move ...
8624 * coretypes.h: ... here.
8625 * fold-const.h (fold_overflow_warning): Declare.
8626 * fold-const.c (fold_overflow_warning): Make non-static.
8627 (fold_comparison): Move the transformation of X +- C1 CMP C2
8628 into X CMP C2 -+ C1 ...
8629 * match.pd: ... here.
8630 * gimple-fold.c (fold_stmt_1): Protect with
8631 fold_defer_overflow_warnings.
8632
8633 2016-05-02 Nathan Sidwell <nathan@codesourcery.com>
8634
8635 * omp-low.c (struct oacc_loop): Add 'inner' field.
8636 (new_oacc_loop_raw): Initialize it to zero.
8637 (oacc_loop_fixed_partitions): Initialize it.
8638 (oacc_loop_auto_partitions): Partition outermost loop to outermost
8639 available partitioning.
8640
8641 2016-05-02 Claudiu Zissulescu <claziss@synopsys.com>
8642
8643 * config/arc/arc.md (mulsidi3): Change operand 0 predicate to
8644 register_operand.
8645 (umulsidi3): Likewise.
8646 (indirect_jump): Fix jump instruction assembly patterns.
8647
8648 2016-05-02 Thomas Schwinge <thomas@codesourcery.com>
8649
8650 PR target/70860
8651 * config/nvptx/nvptx.c (nvptx_libcall_value): Handle NULL cfun.
8652 (nvptx_function_value): Assert non-NULL cfun.
8653
8654 2016-05-02 Eric Botcazou <ebotcazou@adacore.com>
8655
8656 PR rtl-optimization/70886
8657 * sched-deps.c (estimate_dep_weak): Canonicalize cselib values.
8658
8659 * cselib.h (rtx_equal_for_cselib_1): Declare.
8660 (rtx_equal_for_cselib_p: New inline function.
8661 * cselib.c (rtx_equal_for_cselib_p): Delete.
8662 (rtx_equal_for_cselib_1): Make public.
8663
8664 2016-05-02 Uros Bizjak <ubizjak@gmail.com>
8665
8666 * config/i386/predicates.md (nonimm_ssenomem_operand): New predicate.
8667 (register_mixssei387nonimm_operand): Remove predicate.
8668 * config/i386/i386.md (*fop_<mode>_comm): Merge from
8669 *fop_<mode>_comm_mixed and *fop_<mode>_comm_i387. Disable unsupported
8670 alternatives using "enabled" attribute. Also check X87_ENABLE_ARITH
8671 for TARGET_MIX_SSE_I387 alternatives.
8672 (*fop_<mode>_1): Merge from *fop_<mode>_1_mixed and *fop_<mode>_1_i387.
8673 Disable unsupported alternatives using "enabled" attribute. Use
8674 nonimm_ssenomem_operand as operand 1 predicate. Also check
8675 X87_ENABLE_ARITH for TARGET_MIX_SSE_I387 alternatives.
8676
8677 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
8678
8679 * tree.c (cst_and_fits_in_hwi): Simplify.
8680
8681 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
8682
8683 * tree.h (wi::to_wide): New function.
8684 * expr.c (expand_expr_real_1): Use wi::to_wide.
8685 * fold-const.c (int_const_binop_1): Likewise.
8686 (extract_muldiv_1): Likewise.
8687
8688 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
8689
8690 * wide-int.h: Update offset_int and widest_int documentation.
8691 (WI_SIGNED_SHIFT_RESULT): New macro.
8692 (wi::binary_shift): Define signed_shift_result_type for
8693 shifts on offset_int- and widest_int-like types.
8694 (generic_wide_int): Support <<= and >>= if << and >> are supported.
8695 * tree.h (int_bit_position): Use shift operators instead of wi::
8696 shifts.
8697 * alias.c (adjust_offset_for_component_ref): Likewise.
8698 * expr.c (get_inner_reference): Likewise.
8699 * fold-const.c (fold_comparison): Likewise.
8700 * gimple-fold.c (fold_nonarray_ctor_reference): Likewise.
8701 * gimple-ssa-strength-reduction.c (restructure_reference): Likewise.
8702 * tree-dfa.c (get_ref_base_and_extent): Likewise.
8703 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Likewise.
8704 (stmt_kills_ref_p): Likewise.
8705 * tree-ssa-ccp.c (bit_value_binop_1): Likewise.
8706 * tree-ssa-math-opts.c (find_bswap_or_nop_load): Likewise.
8707 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
8708 (ao_ref_init_from_vn_reference): Likewise.
8709
8710 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
8711
8712 * wide-int.h: Update offset_int and widest_int documentation.
8713 (WI_SIGNED_BINARY_PREDICATE_RESULT): New macro.
8714 (wi::binary_traits): Allow ordered comparisons between offset_int and
8715 offset_int, between widest_int and widest_int, and between either
8716 of these types and basic C types.
8717 (operator <, <=, >, >=): Define for the same combinations.
8718 * tree.h (tree_int_cst_lt): Use comparison operators instead
8719 of wi:: comparisons.
8720 (tree_int_cst_le): Likewise.
8721 * gimple-fold.c (fold_array_ctor_reference): Likewise.
8722 (fold_nonarray_ctor_reference): Likewise.
8723 * gimple-ssa-strength-reduction.c (record_increment): Likewise.
8724 * tree-affine.c (aff_comb_cannot_overlap_p): Likewise.
8725 * tree-parloops.c (try_transform_to_exit_first_loop_alt): Likewise.
8726 * tree-sra.c (completely_scalarize): Likewise.
8727 * tree-ssa-alias.c (stmt_kills_ref_p): Likewise.
8728 * tree-ssa-reassoc.c (extract_bit_test_mask): Likewise.
8729 * tree-vrp.c (extract_range_from_binary_expr_1): Likewise.
8730 (check_for_binary_op_overflow): Likewise.
8731 (search_for_addr_array): Likewise.
8732 * ubsan.c (ubsan_expand_objsize_ifn): Likewise.
8733
8734 2016-05-02 Claudiu Zissulescu <claziss@synopsys.com>
8735
8736 * config/arc/arc.c (arc_preferred_simd_mode): Remove enum keyword.
8737 (arc_save_restore): Likewise.
8738 (arc_dwarf_register_span): Likewise.
8739 (arc_output_pic_addr_const): Initialize suffix variable.
8740
8741 2016-05-02 Martin Liska <mliska@suse.cz>
8742
8743 * symbol-summary.h (function_summary::function_summary):
8744 Remove checking assert for all cgraph nodes.
8745 (function_summary::get): Check summary_uid.
8746 (symtab_insertion): Check summary_uid.
8747
8748 2016-05-02 Claudiu Zissulescu <claziss@synopsys.com>
8749
8750 * config/arc/arc-protos.h (compact_memory_operand_p): Declare.
8751 * config/arc/arc.c (arc_output_commutative_cond_exec): Consider
8752 bmaskn instruction.
8753 (arc_dwarf_register_span): Remove enum keyword.
8754 (compact_memory_operand_p): New function.
8755 * config/arc/arc.h (reg_class): Add code density register classes.
8756 (REG_CLASS_NAMES): Likewise.
8757 (REG_CLASS_CONTENTS): Likewise.
8758 * config/arc/arc.md (*movqi_insn): Add code density instructions.
8759 (*movhi_insn, *movsi_insn, *movsf_insn): Likewise.
8760 (*extendhisi2_i, andsi3_i, cmpsi_cc_insn_mixed): Likewise.
8761 (*cmpsi_cc_c_insn, *movsi_ne): Likewise.
8762 * config/arc/constraints.md (C2p, Uts, Cm1, Cm3, Ucd): New
8763 constraints.
8764 (h, Rcd, Rsd, Rzd): New register constraints.
8765 (T): Use compact_memory_operand_p function.
8766 * config/arc/predicates.md (compact_load_memory_operand): Remove.
8767
8768 2016-05-02 Oleg Endo <olegendo@gcc.gnu.org>
8769
8770 * config/sh/sh.md (*negnegt, *movtt): Remove.
8771
8772 2016-05-02 Marek Polacek <polacek@redhat.com>
8773 Tom de Vries <tom@codesourcery.com>
8774
8775 PR tree-optimization/70700
8776 * tree-ssa-structalias.c (dump_pred_graph): Fix getting varinfo for ids
8777 bigger than FIRST_REF_NODE.
8778
8779 2016-05-02 Oleg Endo <olegendo@gcc.gnu.org>
8780
8781 PR target/52898
8782 * config/sh/sh.c (sh_option_override): Remove TARGET_CBRANCHDI4,
8783 TARGET_CMPEQDI_T.
8784 (prepare_cbranch_operands): Don't use scratch register. Assume that
8785 function is used when pseudos can be created.
8786 (expand_cbranchdi4): Likewise. Remove unused TARGET_CMPEQDI_T paths.
8787 * config/sh/sh.md (cbranchsi4): Allow only when pseudos can be created.
8788 (cbranchdi4, cbranchdi4_i): Simplify to single cbranchdi4
8789 define_expand. Allow it only when pseudos can be created.
8790 * config/sh/sh.opt (mcbranchdi, mcmpeqdi): Delete.
8791
8792 2016-05-01 Uros Bizjak <ubizjak@gmail.com>
8793
8794 * config/i386/constraints.md (BC): Only allow -1 operands.
8795 * config/i386/sse.md (mov<mode>_internal): Add (v,C) alternative.
8796 Add "enabled" attribute. Update XI mode attribute calculation.
8797 * config/i386/i386.md (*movxi_internal_avx512f): Add (v,C) alternative.
8798 (*movoi_internal_avx): Update XI mode attribute calculation.
8799 (*movti_internal): Ditto.
8800
8801 2016-05-01 Oleg Endo <olegendo@gcc.gnu.org>
8802
8803 * config/sh/sh.md (push, pop, ic_invalidate_line, cstoresi4, cstoredi4,
8804 cstoresf4, cstoredf4, fix_truncsfsi2): Remove constraints.
8805
8806 2016-05-01 Eric Botcazou <ebotcazou@adacore.com>
8807
8808 * config/rs6000/rs6000.c (altivec_expand_lv_builtin): Do not use switch
8809 statement on instruction code. Remove trailing spaces.
8810 (altivec_expand_stv_builtin): Likewise.
8811
8812 2016-05-01 Oleg Endo <olegendo@gcc.gnu.org>
8813
8814 * config/sh/sh.h (TARGET_SH4): Remove and use default implementation.
8815 (TARGET_FPU_DOUBLE): Simplify.
8816 (BASE_ARG_REG, DOUBLE_TYPE_SIZE, OPTIMIZE_MODE_SWITCHING): Replace
8817 'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions with 'TARGET_FPU_DOUBLE'.
8818 * config/sh/sh.c: Replace 'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions
8819 with 'TARGET_FPU_DOUBLE'.
8820 * config/sh/sh.md: Likewise.
8821
8822 2016-05-01 Yoshinori Sato <ysato@users.sourceforge.jp>
8823
8824 * config/sh/linux.h (SH_DIV_STRATEGY_DEFAULT,
8825 SH_DIV_STR_FOR_SIZE): Remove.
8826 * config/sh/netbsd-elf.h (SH_DIV_STRATEGY_DEFAULT,
8827 SH_DIV_STR_FOR_SIZE): Remove.
8828
8829 2016-05-01 Oleg Endo <olegendo@gcc.gnu.org>
8830
8831 * config/sh/predicates.md (any_register_operand, zero_extend_operand,
8832 logical_reg_operand): Delete.
8833 (arith_operand, arith_reg_dest, arith_or_int_operand, cmpsi_operand,
8834 arith_reg_or_0_operand, arith_reg_or_0_or_1_operand, logical_operand,
8835 logical_and_operand, movsrc_no_disp_mem_operand): Rewrite using
8836 match_operand and match_test.
8837 (sh_const_vec, sh_1el_vec): Remove redundant checks. Declare local
8838 variables on their first use. Return bool values.
8839 * config/sh/sh.h (LOAD_EXTEND_OP): Update comment.
8840 * config/sh/sh.md (andsi3, iorsi3): Use arith_reg_dest for result and
8841 arith_reg_operand for input operand. Remove empty constraints.
8842 (xorsi3): Delete.
8843 (*xorsi3_compact): Rename to xorsi3.
8844 (zero_extend<mode>si2): Use arith_reg_operand for input operand.
8845 (*zero_extend<mode>si2_disp_mem): Update comment.
8846 (mov_nop): Delete.
8847
8848 2016-04-30 Oleg Endo <olegendo@gcc.gnu.org>
8849
8850 * config/sh/t-sh: Remove SH5 support.
8851 * config.gcc: Likewise.
8852 * configure: Likewise.
8853
8854 2016-04-30 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
8855
8856 * config/darwin.h (LINK_COMMAND_SPEC_A): Handle -fcilkplus.
8857
8858 2016-04-30 Oleg Endo <olegendo@gcc.gnu.org>
8859
8860 * config/sh/sh.c (register_sh_passes, sh_option_override,
8861 sh_print_operand, prepare_move_operands,
8862 sh_can_follow_jump): Remove TARGET_SH1 checks.
8863 * config/sh/sh.h (TARGET_VARARGS_PRETEND_ARGS, VALID_REGISTER_P,
8864 PROMOTE_MODE): Likewise.
8865 * config/sh/sh.md (adddi3, addsi3, subdi3, subsi3, andsi3,
8866 movdi): Likewise.
8867
8868 2016-04-30 Alan Modra <amodra@gmail.com>
8869
8870 * config/rs6000/rs6000.c (rs6000_savres_strategy): Force inline
8871 restoring when fixed_reg_p, but allow out-of-line or stmw save.
8872 Check for user regs later to avoid unnecessary looping over regs.
8873 Merge user reg check with non-saved reg check. Don't force
8874 inline VR restore when static chain used.
8875 (rs6000_frame_related): Omit eh_frame info for user regs when
8876 saving.
8877 (fixed_regs_p): Delete.
8878
8879 2016-04-30 Alan Modra <amodra@gmail.com>
8880
8881 * config/rs6000/rs6000.c (SAVRES_MULTIPLE): Replace with..
8882 (SAVE_STRATEGY, REST_STRATEGY): ..this. Renumber and sort enum.
8883 Update all uses.
8884
8885 2016-04-30 Alan Modra <amodra@gmail.com>
8886
8887 PR target/69645
8888 * config/rs6000/rs6000.c (fixed_reg_p): New function.
8889 (fixed_regs_p): Rename from global_regs_p. Call fixed_reg_p.
8890 Update all uses.
8891
8892 2016-04-30 Alan Modra <amodra@gmail.com>
8893
8894 * config/rs6000/rs6000.c (rs6000_conditional_register_usage):
8895 Remove redundant PIC_OFFSET_TABLE_REGNUM test. Replace with
8896 flag_pic test for Darwin.
8897
8898 2016-04-30 Alan Modra <amodra@gmail.com>
8899
8900 * regs.h (struct reg_info_t): Delete freq_calls_crossed and
8901 throw_calls_crossed.
8902 (REG_FREQ_CALLS_CROSSED): Delete.
8903 (REG_N_THROWING_CALLS_CROSSED): Delete.
8904 * regstat.c (regstat_bb_compute_ri): Don't calculate
8905 REG_FREQ_CALLS_CROSSED and REG_N_THROWING_CALLS_CROSSED.
8906 (dump_reg_info): Don't print call cross frequency.
8907 * ira.c (combine_and_move_insns): Don't set REG_FREQ_CALLS_CROSSED
8908 and REG_N_THROWING_CALLS_CROSSED.
8909
8910 2016-04-30 Alan Modra <amodra@gmail.com>
8911
8912 * regs.h (struct reg_info_t): Delete live_length.
8913 (REG_LIVE_LENGTH): Delete macro.
8914 * regstat.c (regstat_bb_compute_ri): Delete artificial_uses,
8915 local_live, local_processed and local_live_last_luid params.
8916 Replace bb_index param with bb. Don't set REG_LIVE_LENGTH.
8917 Formatting fixes.
8918 (regstat_compute_ri): Adjust for above. Don't set
8919 REG_LIVE_LENGTH.
8920 (dump_reg_info): Don't print live length.
8921 * ira.c (update_equiv_regs): Replace test of REG_LIVE_LENGTH
8922 with test of setjmp_crosses. Don't set REG_LIVE_LENGTH.
8923 Localize loop_depth var.
8924
8925 2016-04-30 Alan Modra <amodra@gmail.com>
8926
8927 * ira.c (enum valid_equiv): New.
8928 (validate_equiv_mem): Return enum.
8929 (update_equiv_mem): Create replacement in more cases.
8930 (add_store_equivs): Update validate_equiv_mem call.
8931
8932 2016-04-30 Alan Modra <amodra@gmail.com>
8933
8934 * ira.c (combine_and_move_insns): Rather than scanning insns,
8935 use DF infrastucture to find use and def insns.
8936
8937 2016-04-30 Alan Modra <amodra@gmail.com>
8938
8939 ira.c (combine_and_move_insns): Move invariant conditions..
8940 (ira.c): ..to here. Call combine_and_move_insns before
8941 add_store_equivs. Call grow_reg_equivs later. Allocate
8942 req_equiv later using max_reg_num() rather than global max_regno.
8943 (contains_replace_regs): Delete.
8944 (add_store_equivs): Remove contains_replace_regs test.
8945
8946 2016-04-30 Alan Modra <amodra@gmail.com>
8947
8948 * ira.c (struct equiv_mem_data): New.
8949 (equiv_mem, equiv_mem_modified): Delete static vars.
8950 (validate_equiv_mem_from_store): Use "data" param to communicate..
8951 (validate_equiv_mem): ..from here.
8952
8953 2016-04-30 Alan Modra <amodra@gmail.com>
8954
8955 * ira.c (add_store_equivs, combine_and_move_insns): New functions,
8956 split out from..
8957 (update_reg_equivs): ..here. Move allocation and freeing of
8958 reg_equiv, and calls to grow_reg_equivs, init_alias_analysis,
8959 end_alias_analysis to..
8960 (ira): ..here.
8961
8962 2016-04-30 Alan Modra <amodra@gmail.com>
8963
8964 * ira.c (pdx_subregs): Delete.
8965 (struct equivalence): Add pdx_subregs field.
8966 (set_paradoxical_subreg): Remove pdx_subregs param. Update
8967 pdx_subregs access.
8968 (update_equiv_regs): Don't create or free pdx_subregs. Update
8969 pdx_subregs access.
8970
8971 2016-04-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
8972
8973 * config/rs6000/altivec.h: Change definitions of vec_xl and
8974 vec_xst.
8975 * config/rs6000/rs6000-builtin.def (LD_ELEMREV_V2DF): New.
8976 (LD_ELEMREV_V2DI): New.
8977 (LD_ELEMREV_V4SF): New.
8978 (LD_ELEMREV_V4SI): New.
8979 (LD_ELEMREV_V8HI): New.
8980 (LD_ELEMREV_V16QI): New.
8981 (ST_ELEMREV_V2DF): New.
8982 (ST_ELEMREV_V2DI): New.
8983 (ST_ELEMREV_V4SF): New.
8984 (ST_ELEMREV_V4SI): New.
8985 (ST_ELEMREV_V8HI): New.
8986 (ST_ELEMREV_V16QI): New.
8987 (XL): New.
8988 (XST): New.
8989 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
8990 descriptions for VSX_BUILTIN_VEC_XL and VSX_BUILTIN_VEC_XST.
8991 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Map from
8992 TARGET_P9_VECTOR to RS6000_BTM_P9_VECTOR.
8993 (altivec_expand_builtin): Add handling for
8994 VSX_BUILTIN_ST_ELEMREV_<MODE> and VSX_BUILTIN_LD_ELEMREV_<MODE>.
8995 (rs6000_invalid_builtin): Add error-checking for
8996 RS6000_BTM_P9_VECTOR.
8997 (altivec_init_builtins): Define builtins used to implement vec_xl
8998 and vec_xst.
8999 (rs6000_builtin_mask_names): Define power9-vector.
9000 * config/rs6000/rs6000.h (MASK_P9_VECTOR): Define.
9001 (RS6000_BTM_P9_VECTOR): Define.
9002 (RS6000_BTM_COMMON): Include RS6000_BTM_P9_VECTOR.
9003 * config/rs6000/vsx.md (vsx_ld_elemrev_v2di): New define_insn.
9004 (vsx_ld_elemrev_v2df): Likewise.
9005 (vsx_ld_elemrev_v4sf): Likewise.
9006 (vsx_ld_elemrev_v4si): Likewise.
9007 (vsx_ld_elemrev_v8hi): Likewise.
9008 (vsx_ld_elemrev_v16qi): Likewise.
9009 (vsx_st_elemrev_v2df): Likewise.
9010 (vsx_st_elemrev_v2di): Likewise.
9011 (vsx_st_elemrev_v4sf): Likewise.
9012 (vsx_st_elemrev_v4si): Likewise.
9013 (vsx_st_elemrev_v8hi): Likewise.
9014 (vsx_st_elemrev_v16qi): Likewise.
9015 * doc/extend.texi: Add prototypes for vec_xl and vec_xst. Correct
9016 grammar.
9017
9018 2016-04-29 Patrick Palka <ppalka@gcc.gnu.org>
9019
9020 * tree-ssa-threadedge.c (simplify_control_stmt_condition): Split
9021 out into ...
9022 (simplify_control_stmt_condition_1): ... here. Recurse into
9023 BIT_AND_EXPRs and BIT_IOR_EXPRs.
9024
9025 2016-04-29 David Edelsohn <dje.gcc@gmail.com>
9026
9027 PR target/69810
9028 * config/rs6000/rs6000.md (EXTQI): Don't allow extension to HImode.
9029 (zero_extendqi<mode>2_dot): Revert earlier conversion from
9030 define_insn_and_split to define_insn.
9031 (zero_extendqi<mode>2_dot2): Same.
9032 (extendqi<mode>2_dot): Same.
9033 (extendqi<mode>2_dot2): Same.
9034
9035 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
9036
9037 * config/i386/i386.md (unspec): Add UNSPEC_PROBE_STACK.
9038 (probe_stack): New expander.
9039 (probe_stack_<mode>): New insn pattern.
9040
9041 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
9042
9043 * config/i386/i386.md
9044 (operations with memory inputs setting flags peephole2):
9045 Remove uneeded REG_P checks. Cleanup pattern generation.
9046
9047 2016-04-29 Ilya Enkovich <ilya.enkovich@intel.com>
9048
9049 * tree-vect-loop.c (vect_transform_loop): Fix
9050 nb_iterations_upper_bound computation for vectorized loop.
9051
9052 2016-04-29 Marek Polacek <polacek@redhat.com>
9053 Jakub Jelinek <jakub@redhat.com>
9054
9055 PR sanitizer/70342
9056 * fold-const.c (tree_single_nonzero_warnv_p): For TARGET_EXPR, use
9057 TARGET_EXPR_SLOT as a base.
9058
9059 2016-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
9060
9061 * config/arc/arc.md (*loadqi_update): Replace use of 'rI' constraint
9062 with 'rCm2' constraints to limit possible immediate size.
9063 (*load_zeroextendqisi_update): Likewise.
9064 (*load_signextendqisi_update): Likewise.
9065 (*loadhi_update): Likewise.
9066 (*load_zeroextendhisi_update): Likewise.
9067 (*load_signextendhisi_update): Likewise.
9068 (*loadsi_update): Likewise.
9069 (*loadsf_update): Likewise.
9070
9071 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
9072
9073 * config/i386/predicates.md (constm1_operand): Fix comparison.
9074
9075 2016-04-29 Claudiu Zissulescu <claziss@synopsys.com>
9076
9077 * testsuite/gcc.target/arc/ieee_eq.c: New test.
9078
9079 2016-04-29 Oleg Endo <olegendo@gcc.gnu.org>
9080
9081 * common/config/sh/sh-common.c (sh_option_optimization_table): Remove
9082 remaining SH5 related settings.
9083 * config/sh/sh-protos.h (shmedia_cleanup_truncate,
9084 shmedia_prepare_call_address): Delete.
9085 * config/sh/sh.c (sh_print_operand, output_stack_adjust,
9086 DWARF_CIE_DATA_ALIGNMENT, LOCAL_ALIGNMENT): Update comments.
9087 * config/sh/sh.h (SUBTARGET_ASM_RELAX_SPEC,
9088 UNSUPPORTED_SH2A): Remove m5 checks.
9089 (sh_divide_strategy_e): Remove SH5 division strategies.
9090 (TARGET_PTRMEMFUNC_VBIT_LOCATION): Remove and use default.
9091 * config/sh/sh.md (divsf3): Reinstate define_expand pattern.
9092
9093 2016-04-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
9094
9095 * config/s390/s390.c (s390_rtx_costs): Update documentation.
9096
9097 2016-04-29 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
9098
9099 * config/s390/2964.md ("z13_unit_fxu", "z13_0"): Remove lder.
9100 * config/s390/s390.md ("movsi_larl", "*movsi_esa", "mov<mode>"):
9101 Change lder to ldr.
9102 * config/s390/vector.md ("mov<mode>"): Likewise.
9103
9104 2016-04-29 Ulrich Weigand <uweigand@de.ibm.com>
9105
9106 * config/s390/constraints.md ("U", "W"): Invoke
9107 s390_mem_constraint with "ZR" and "ZT".
9108 * config/s390/s390.c (s390_check_qrst_address): Reject invalid
9109 addresses when using LRA. Accept also short displacements for S
9110 and T constraints. Do not check for long displacement target for
9111 S and T constraints.
9112 (s390_mem_constraint): Remove handling of U and W constraints.
9113 * config/s390/s390.md (various patterns): Remove the short
9114 displacement constraints (Q and R) if a long displacement
9115 constraint is present. Add longdisp as required CPU capability.
9116 * config/s390/vector.md: Likewise.
9117 * config/s390/vx-builtins.md: Likewise.
9118
9119 2016-04-29 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
9120
9121 PR target/60040
9122 * reload1.c (reload): Call finish_spills before
9123 restarting reload loop. Skip select_reload_regs
9124 if update_eliminables_and_spill returns true.
9125
9126 2016-04-29 Claudiu Zissulescu <claziss@synopsys.com>
9127
9128 * config/arc/arc.h (UNSIGNED_INT12, UNSIGNED_INT16): Define.
9129 * config/arc/arc.md (umulhisi3): Use arc_short_operand predicate.
9130 (umulhisi3_imm): Update predicates and constraint letters.
9131 (umulhisi3_reg): Declare instruction as commutative.
9132 * config/arc/constraints.md (J12, J16): New constraints.
9133 * config/arc/predicates.md (short_unsigned_const_operand): New
9134 predicate.
9135 (arc_short_operand): Likewise.
9136 * testsuite/gcc.target/arc/umulsihi3_z.c: New file.
9137
9138 2016-04-29 Richard Biener <rguenther@suse.de>
9139
9140 PR tree-optimization/13962
9141 PR tree-optimization/65686
9142 * tree-ssa-alias.h (ptrs_compare_unequal): Declare.
9143 * tree-ssa-alias.c (ptrs_compare_unequal): New function
9144 using PTA to compare pointers.
9145 * match.pd: Add pattern for pointer equality compare simplification
9146 using ptrs_compare_unequal.
9147
9148 2016-04-29 Richard Biener <rguenther@suse.de>
9149
9150 * stor-layout.c (layout_type): Do not build a pointer-to-element
9151 type for arrays.
9152
9153 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
9154
9155 * config/i386/i386.md (Load+RegOp to Mov+MemOp peephole2):
9156 Use SWI mode iterator. Use general_reg_operand predicate.
9157 (Load+RegOp to Mov+MemOp peephole2 with vector regs): Split
9158 peephole to MMX and SSE part. Use mmx_reg_operand and sse_reg_operand
9159 predicates.
9160
9161 2016-04-29 Jakub Jelinek <jakub@redhat.com>
9162
9163 PR middle-end/70843
9164 * fold-const.c (operand_equal_p): Don't verify hash value equality
9165 if arg0 == arg1.
9166 * tree.c (inchash::add_expr): Handle STATEMENT_LIST. Ignore BLOCK
9167 and OMP_CLAUSE.
9168
9169 2016-04-28 Jakub Jelinek <jakub@redhat.com>
9170
9171 PR target/70858
9172 * config/i386/i386.c (bdesc_special_args): Add | OPTION_MASK_ISA_64BIT
9173 to __builtin_ia32_lwpval64 and __builtin_ia32_lwpins64.
9174 (bdesc_args): Add | OPTION_MASK_ISA_64BIT to __builtin_ia32_bextr_u64,
9175 __builtin_ia32_bextri_u64, __builtin_ia32_bzhi_di,
9176 __builtin_ia32_pdep_di and __builtin_ia32_pext_di.
9177
9178 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
9179
9180 * config/rs6000/rs6000.c (compute_save_world_info): Rename info_ptr
9181 to info. Don't initialize separate fields to 0. Clean up
9182 formatting a bit.
9183
9184 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
9185
9186 * config/i386/i386.md (peephole2s for operations with memory inputs):
9187 Use SWI mode iterator.
9188 (peephole2s for operations with memory outputs): Ditto.
9189 Do not check for stack checking probe.
9190
9191 (probe_stack): Remove expander.
9192
9193 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
9194 Andrew Burgess <andrew.burgess@embecosm.com>
9195
9196 * config/arc/arc.c (arc_print_operand): Print integer 'H' / 'L'
9197 operands as 32-bits.
9198
9199 2016-04-28 Jason Merrill <jason@redhat.com>
9200
9201 * gdbinit.in: Skip line-map.h.
9202
9203 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
9204 Andrew Burgess <andrew.burgess@embecosm.com>
9205
9206 * config/arc/arc.c (arc_conditional_register_usage): Take
9207 TARGET_RRQ_CLASS into account.
9208 (arc_print_operand): Support printing 'p' and 's' operands.
9209 * config/arc/arc.h (TARGET_NPS_BITOPS_DEFAULT): Provide default
9210 as 0.
9211 (TARGET_RRQ_CLASS): Define.
9212 (IS_POWEROF2_OR_0_P): Define.
9213 * config/arc/arc.md (*movsi_insn): Add w/Clo, w/Chi, and w/Cbi
9214 alternatives.
9215 (*tst_movb): New define_insn.
9216 (*tst): Avoid recognition if it could prevent '*tst_movb'
9217 combination; replace c/CnL with c/Chs alternative.
9218 (*tst_bitfield_tst): New define_insn.
9219 (*tst_bitfield_asr): New define_insn.
9220 (*tst_bitfield): New define_insn.
9221 (andsi3_i): Add Rrq variant.
9222 (extzv): New define_expand.
9223 (insv): New define_expand.
9224 (*insv_i): New define_insn.
9225 (*movb): New define_insn.
9226 (*movb_signed): New define_insn.
9227 (*movb_high): New define_insn.
9228 (*movb_high_signed): New define_insn.
9229 (*movb_high_signed + 1): New define_split pattern.
9230 (*mrgb): New define_insn.
9231 (*mrgb + 1): New define_peephole2 pattern.
9232 (*mrgb + 2): New define_peephole2 pattern.
9233 * config/arc/arc.opt (mbitops): New option for nps400, uses
9234 TARGET_NPS_BITOPS_DEFAULT.
9235 * config/arc/constraints.md (q): Make register class conditional.
9236 (Rrq): New register constraint.
9237 (Chs): New constraint.
9238 (Clo): New constraint.
9239 (Chi): New constraint.
9240 (Cbf): New constraint.
9241 (Cbn): New constraint.
9242 (C18): New constraint.
9243 (Cbi): New constraint.
9244
9245 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
9246
9247 * cfganal.c (bitmap_intersection_of_succs): Delete assert checking
9248 dst->popcount.
9249 (bitmap_intersection_of_preds): Ditto.
9250 (bitmap_union_of_succs): Ditto.
9251 (bitmap_union_of_preds): Ditto.
9252 * sbitmap.c (do_popcount): Delete.
9253 (BITMAP_DEBUGGING): Delete.
9254 (sbitmap_verify_popcount): Delete.
9255 (sbitmap_alloc): Don't initialize the popcount field.
9256 (sbitmap_alloc_with_popcount): Delete.
9257 (sbitmap_resize): Don't resize the popcount array.
9258 (sbitmap_vector_alloc): Don't initialize the popcount field.
9259 (bitmap_copy): Don't copy the popcount array.
9260 (bitmap_clear): Don't clear the popcount array.
9261 (bitmap_clear): Delete the popcount array handling.
9262 (bitmap_ior_and_compl): Delete the popcount assert.
9263 (bitmap_not): Ditto.
9264 (bitmap_and_compl): Ditto.
9265 (bitmap_and): Delete the popcount array handling.
9266 (bitmap_xor): Ditto.
9267 (bitmap_ior): Ditto.
9268 (bitmap_or_and): Delete the popcount assert.
9269 (bitmap_and_or): Ditto.
9270 (popcount_table): Delete.
9271 (sbitmap_elt_popcount): Delete.
9272 * sbitmap.h (simple_bitmap_def): Delete the popcount field.
9273 (bitmap_set_bit): Delete the popcount assert.
9274 (bitmap_clear_bit): Ditto.
9275 (sbitmap_free): Don't free the popcount array.
9276 (sbitmap_alloc_with_popcount): Delete declaration.
9277 (sbitmap_popcount): Ditto.
9278
9279 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
9280 Andrew Burgess <andrew.burgess@embecosm.com>
9281
9282 * config/arc/arc.h (SYMBOL_FLAG_CMEM): Define.
9283 (TARGET_NPS_CMEM_DEFAULT): Provide default definition.
9284 * config/arc/arc.c (arc_address_cost): Return 0 for cmem_address.
9285 (arc_encode_section_info): Set SYMBOL_FLAG_CMEM where indicated.
9286 * config/arc/arc.opt (mcmem): New option.
9287 * config/arc/arc.md (*extendqihi2_i): Add r/Uex alternative,
9288 supply length for r/m alternative.
9289 (*extendqisi2_ac): Likewise.
9290 (*extendhisi2_i): Add r/Uex alternative, supply length for r/m and
9291 r/Uex alternative.
9292 (movqi_insn): Add r/Ucm and Ucm/?Rac alternatives.
9293 (movhi_insn): Likewise.
9294 (movsi_insn): Add r/Ucm,Ucm/w alternatives.
9295 (*zero_extendqihi2_i): Add r/Ucm alternative.
9296 (*zero_extendqisi2_ac): Likewise.
9297 (*zero_extendhisi2_i): Likewise.
9298 * config/arc/constraints.md (Uex): New memory constraint.
9299 (Ucm): New define_constraint.
9300 * config/arc/predicates.md (long_immediate_loadstore_operand):
9301 Return 0 for MEM with cmem_address address.
9302 (cmem_address_0): New predicates.
9303 (cmem_address_1): Likewise.
9304 (cmem_address_2): Likewise.
9305 (cmem_address): Likewise.
9306
9307 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
9308
9309 * config/rs6000/rs6000.c (machine_function): Rename
9310 insn_chain_scanned_p to spe_insn_chain_scanned_p.
9311 (rs6000_stack_info): Adjust.
9312
9313 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
9314 Andrew Burgess <andrew.burgess@embecosm.com>
9315
9316 * config/arc/constraints.md (Usd): Convert to define_constraint.
9317 (Us<): Likewise.
9318 (Us>): Likewise.
9319
9320 2016-04-28 Jakub Jelinek <jakub@redhat.com>
9321
9322 PR target/70821
9323 * config/i386/sync.md (define_peephole2 *atomic_fetch_add_cmp<mode>):
9324 Add new peephole2 where the first insn is *mov<mode>_or instead of
9325 *mov<mode>_internal.
9326
9327 2016-04-28 Segher Boesssenkool <segher@kernel.crashing.org>
9328
9329 * tracer.c (bb_seen): Make static.
9330
9331 2016-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
9332
9333 * common/config/arc/arc-common.c (arc_handle_option): Add NPS400
9334 support, setup defaults.
9335 * config/arc/arc-opts.h (enum processor_type): Add NPS400.
9336 * config/arc/arc.c (arc_init): Add NPS400 support.
9337 * config/arc/arc.h (CPP_SPEC): Add NPS400 defines.
9338 (TARGET_ARC700): NPS400 is also an ARC700.
9339 * config/arc/arc.opt: Add NPS400 options to -mcpu=.
9340
9341 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
9342
9343 PR target/70668
9344 * config/nds32/nds32.md (casesi): Don't access the operands array
9345 out of bounds.
9346
9347 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
9348
9349 * config/i386/i386.md (zeroing peephole2): Use general_reg_operand.
9350 (or $-1,reg peephole2): Ditto.
9351 (strict_low_part zeroing peephole2): Use SWI12 mode iterator.
9352
9353 2016-04-28 Markus Trippelsdorf <markus@trippelsdorf.de>
9354
9355 * doc/extend.texi (Common Function Attributes) [optimize]:
9356 Discourage use of the optimize attribute.
9357
9358 2016-04-28 Bill Seurer <seurer@linux.vnet.ibm.com>
9359
9360 * config/rs6000/rs6000-builtin.def (vec_adde): Change vec_adde to a
9361 special case builtin.
9362 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
9363 ALTIVEC_BUILTIN_VEC_ADDE.
9364 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
9365 support for ALTIVEC_BUILTIN_VEC_ADDE.
9366 * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
9367 for __builtin_vec_adde.
9368
9369 2016-04-28 Jakub Jelinek <jakub@redhat.com>
9370
9371 * config/i386/i386.md (sse4_1_round<mode>2): Add avx512f alternative.
9372 * config/i386/sse.md (sse4_1_round<ssescalarmodesuffix>): Likewise.
9373
9374 2016-04-28 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9375
9376 PR testsuite/70595
9377 * doc/sourcebuild.texi (Effective-Target Keywords, Other
9378 attributes): Document cilkplus_runtime.
9379
9380 2016-04-28 Martin Jambor <mjambor@suse.cz>
9381
9382 * tree-cfg.c (verify_expr): Verify that local declarations belong to
9383 this function. Call verify_expr on MEM_REFs and bases of other
9384 handled_components.
9385
9386 2016-04-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9387
9388 * internal-fn.c (expand_arith_overflow): Convert preprocessor check
9389 for WORD_REGISTER_OPERATIONS to runtime check.
9390
9391 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
9392
9393 * config/arc/arc.h (ASM_SPEC): Pass mfpuda to assembler.
9394
9395 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
9396
9397 * config/arc/arc.c (arc_process_double_reg_moves): Fix for
9398 big-endian compilation.
9399 * config/arc/arc.md (addf3): Likewise.
9400 (subdf3): Likewise.
9401 (muldf3): Likewise.
9402
9403 2016-04-28 Richard Biener <rguenther@suse.de>
9404
9405 PR tree-optimization/70840
9406 * match.pd: powi(-x, y) and powi(|x|,y) -> powi(x,y) if y is even;
9407 Fix pow(copysign(x, y), z) -> pow(x, z) and add powi variant;
9408 Mark x * pow(x,c) -> pow(x,c+1) commutative.
9409 Add powi(x,y) * powi(z,y) -> powi(x*z,y).
9410
9411 2015-04-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9412
9413 * config/aarch64/aarch64.h (WORD_REGISTER_OPERATIONS): Define to 0
9414 and explain why in a comment.
9415
9416 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
9417
9418 * config/arc/arc.md (cpu_facility): Add fpx variant.
9419 (subdf3): Prohibit use reverse sub when assist operations option
9420 is enabled.
9421 * config/arc/fpx.md (subdf3_insn, *dsubh_peep2_insn): Allow drsub
9422 instructions only when FPX is enabled.
9423 * testsuite/gcc.target/arc/trsub.c: New test.
9424
9425 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
9426
9427 * config/i386/i386.md (*fop_<mode>_1_mixed): Do not check for
9428 mult_operator when calculating "type" attribute.
9429 (*fop_<mode>_1_i387): Ditto.
9430 (*fop_xf_1_i387): Ditto.
9431 (x87 stack loads peephole2): Add "reg = op (mem, reg)" peephole2.
9432 Use std::swap to swap operands. Use RTL expressions to generate
9433 converted pattern.
9434
9435 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
9436 Joern Rennecke <joern.rennecke@embecosm.com>
9437
9438 * config/arc/arc-protos.h (arc_legitimize_pic_address): Remove
9439 declaration.
9440 (emit_pic_move): Remove.
9441 (arc_eh_uses, insn_is_tls_gd_dispatch): Declare.
9442 * config/arc/arc.c (emit_pic_move): Removed.
9443 (TARGET_HAVE_TLS): Define.
9444 (arc_conditional_register_usage): Test for arc_tp_regno.
9445 (arc_print_operand, arc_print_operand_address): Handle TLS
9446 unspecs.
9447 (arc_needs_pcl_p): New function.
9448 (arc_legitimate_pc_offset_p): Use arc_needs_pcl_p.
9449 (arc_legitimate_pic_addr_p): Handle TLS unspecs.
9450 (arc_raw_symbolic_reference_mentioned_p): Likewise.
9451 (arc_get_tp, arc_emit_call_tls_get_addr): New function.
9452 (arc_legitimize_tls_address): Likewise.
9453 (DTPOFF_ZERO_SYM): Define.
9454 (arc_legitimize_pic_address): Make it static, handle TLS cases.
9455 (arc_output_pic_addr_const): Print TLS unspecs.
9456 (prepare_pic_move): New function, replaces emit_pic_move.
9457 (arc_legitimate_constant_p): Handle TLS unspecs.
9458 (arc_legitimate_address_p): Likewise.
9459 (arc_rewrite_small_data_p): Use assert for TLS constants.
9460 (prepare_move_operands): Use prepare_pic_move.
9461 (arc_legitimize_address): Legitimize tls addresses.
9462 (arc_epilogue_uses): Check for arc_tp_regno.
9463 (arc_eh_uses, insn_is_tls_gd_dispatch): New function.
9464 * config/arc/arc.h [DEFAULT_LIBC != LIBC_UCLIBC] (EXTRA_SPECS):
9465 Define.
9466 [DEFAULT_LIBC != LIBC_UCLIBC] (ARC_TLS_EXTRA_START_SPEC):
9467 Likewise.
9468 [DEFAULT_LIBC != LIBC_UCLIBC] (STARTFILE_SPEC): Add
9469 %(arc_tls_extra_start_spec).
9470 (TARGET_CPU_CPP_BUILTINS): Define __ARC_TLS_REGNO__.
9471 (REGNO_OK_FOR_BASE_P): Check for arc_tp_regno.
9472 (EH_USES): Define.
9473 (INSN_REFERENCES_ARE_DELAYED): Use insn_is_tls_gd_dispatch.
9474 * config/arc/arc.md (UNSPEC_TLS_GD, UNSPEC_TLS_LD, UNSPEC_TLS_IE)
9475 (UNSPEC_TLS_OFF): Add.
9476 (R10_REG): Define.
9477 (tls_load_tp_soft, tls_gd_load, tls_gd_get_addr, tls_gd_dispatch)
9478 (get_thread_pointersi): New patterns.
9479 * config/arc/arc.opt (mtp-regno): New option.
9480 * config/arc/predicates.md (move_src_operand): Handle TLS symbols.
9481 (move_dest_operand): Likewise.
9482 * configure: Regenerate.
9483 * configure.ac: Add arc*-*-* case to test for tls.
9484 * doc/invoke.texi (ARC options): Document mtp-regno.
9485
9486 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
9487
9488 * config/arc/arc.c (arc_vector_mode_supported_p): Add support for
9489 the new ARC HS SIMD instructions.
9490 (arc_preferred_simd_mode): New function.
9491 (arc_autovectorize_vector_sizes): Likewise.
9492 (TARGET_VECTORIZE_PREFERRED_SIMD_MODE)
9493 (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Define.
9494 (arc_init_reg_tables): Accept new ARC HS SIMD modes.
9495 (arc_init_builtins): Add new SIMD builtin types.
9496 (arc_split_move): Handle 64 bit vector moves.
9497 * config/arc/arc.h (TARGET_PLUS_DMPY, TARGET_PLUS_MACD)
9498 (TARGET_PLUS_QMACW): Define.
9499 * config/arc/builtins.def (QMACH, QMACHU, QMPYH, QMPYHU, DMACH)
9500 (DMACHU, DMPYH, DMPYHU, DMACWH, DMACWHU, VMAC2H, VMAC2HU, VMPY2H)
9501 (VMPY2HU, VADDSUB2H, VSUBADD2H, VADDSUB, VSUBADD, VADDSUB4H)
9502 (VSUBADD4H): New builtins.
9503 * config/arc/simdext.md: Add new ARC HS SIMD instructions.
9504 * testsuite/gcc.target/arc/builtin_simdarc.c: New file.
9505
9506 2016-04-28 Eduard Sanou <dhole@openmailbox.org>
9507 Matthias Klose <doko@debian.org>
9508
9509 * doc/cppenv.texi: Document SOURCE_DATE_EPOCH environment variable.
9510
9511 2016-04-28 Richard Biener <rguenther@suse.de>
9512
9513 PR middle-end/70777
9514 * fold-const.c (fold_binary_loc): Remove x*x to pow(x,2.0)
9515 canonicalization.
9516
9517 2016-04-28 Oleg Endo <olegendo@gcc.gnu.org>
9518
9519 * common/config/sh/sh-common.c: Remove SH5 support.
9520 * config/sh/constraints.md: Likewise.
9521 * config/sh/config/sh/elf.h: Likewise.
9522 * config/sh/linux.h: Likewise.
9523 * config/sh/netbsd-elf.h: Likewise.
9524 * config/sh/predicates.md: Likewise.
9525 * config/sh/sh-c.c: Likewise.
9526 * config/sh/sh-protos.h: Likewise.
9527 * config/sh/sh.c: Likewise.
9528 * config/sh/sh.h: Likewise.
9529 * config/sh/sh.md: Likewise.
9530 * config/sh/sh.opt: Likewise.
9531 * config/sh/sync.md: Likewise.
9532 * config/sh/sh64.h: Delete.
9533 * config/sh/shmedia.h: Likewise.
9534 * config/sh/shmedia.md: Likewise.
9535 * config/sh/sshmedia.h: Likewise.
9536 * config/sh/t-netbsd-sh5-64: Likewise.
9537 * config/sh/t-sh64: Likewise.
9538 * config/sh/ushmedia.h: Likewise.
9539
9540 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
9541
9542 * config/i386/i386.md (sign_extend to memory peephole2s): Use
9543 general_reg_operand instead of register_operand predicate.
9544
9545 2016-04-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
9546
9547 * params.def (MIN_PARTITION_SIZE): Set default value to 10000.
9548
9549 2016-04-27 Marc Glisse <marc.glisse@inria.fr>
9550
9551 * match.pd (A - B > A, A + B < A): New transformations.
9552
9553 2016-04-27 Patrick Palka <ppalka@gcc.gnu.org>
9554
9555 * genattrtab.c (write_test_expr): New parameter EMIT_PARENS
9556 which defaults to true. Emit an outer pair of parentheses only if
9557 EMIT_PARENS. When continuing a chain of && or || (or & or |),
9558 don't emit parentheses for the right-hand operand.
9559
9560 2016-04-27 Jeff Law <law@redhat.com>
9561
9562 * tree-ssa-dom.c (record_temporary_equivalences): Fix typo in comment.
9563
9564 2016-04-27 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9565
9566 * config/rs6000/altivec.md (altivec_lvx_<mode>): Remove.
9567 (altivec_lvx_<mode>_internal): Document.
9568 (altivec_lvx_<mode>_2op): New define_insn.
9569 (altivec_lvx_<mode>_1op): Likewise.
9570 (altivec_lvx_<mode>_2op_si): Likewise.
9571 (altivec_lvx_<mode>_1op_si): Likewise.
9572 (altivec_stvx_<mode>): Remove.
9573 (altivec_stvx_<mode>_internal): Document.
9574 (altivec_stvx_<mode>_2op): New define_insn.
9575 (altivec_stvx_<mode>_1op): Likewise.
9576 (altivec_stvx_<mode>_2op_si): Likewise.
9577 (altivec_stvx_<mode>_1op_si): Likewise.
9578 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
9579 Expand vec_ld and vec_st during parsing.
9580 * config/rs6000/rs6000.c (altivec_expand_lvx_be): Commentary
9581 changes.
9582 (altivec_expand_stvx_be): Likewise.
9583 (altivec_expand_lv_builtin): Expand lvx built-ins to expose the
9584 address-masking behavior in RTL.
9585 (altivec_expand_stv_builtin): Expand stvx built-ins to expose the
9586 address-masking behavior in RTL.
9587 (altivec_expand_builtin): Change builtin code arguments for calls
9588 to altivec_expand_stv_builtin and altivec_expand_lv_builtin.
9589 (insn_is_swappable_p): Avoid incorrect swap optimization in the
9590 presence of lvx/stvx patterns.
9591 (alignment_with_canonical_addr): New function.
9592 (alignment_mask): Likewise.
9593 (find_alignment_op): Likewise.
9594 (recombine_lvx_pattern): Likewise.
9595 (recombine_stvx_pattern): Likewise.
9596 (recombine_lvx_stvx_patterns): Likewise.
9597 (rs6000_analyze_swaps): Perform a pre-pass to recognize lvx and
9598 stvx patterns from expand.
9599 * config/rs6000/vector.md (vector_altivec_load_<mode>): Use new
9600 expansions.
9601 (vector_altivec_store_<mode>): Likewise.
9602
9603 2016-04-26 Evandro Menezes <e.menezes@samsung.com>
9604
9605 * config/aarch64/aarch64.md
9606 (*movhf_aarch64): Add "movi %0, #0" to zero up register and
9607 remove the "fp" attributes.
9608 (*movsf_aarch64): Add "movi %0, #0" to zero up register and
9609 add the "simd" attributes.
9610 (*movdf_aarch64): Likewise.
9611 (*movtf_aarch64): Remove the "fp" attributes.
9612 * testsuite/gcc.target/aarch64/fmovf-zero-reg.c: Update accordingly.
9613 * testsuite/gcc.target/aarch64/fmovd-zero-reg.c: Likewise.
9614
9615 2016-04-27 David Malcolm <dmalcolm@redhat.com>
9616
9617 * emit-rtl.c (maybe_set_first_label_num): Strengthen param from
9618 rtx to rtx_code_label *.
9619 * rtl.h (maybe_set_first_label_num): Likewise.
9620
9621 2016-04-27 David Malcolm <dmalcolm@redhat.com>
9622
9623 * df-core.c (df_add_problem): Make the problem param be const.
9624 (df_remove_problem): Make local "problem" be const.
9625 * df-problems.c (problem_RD): Make const.
9626 (problem_LR): Likewise.
9627 (problem_LIVE): Likewise.
9628 (problem_MIR): Likewise.
9629 (problem_CHAIN): Likewise.
9630 (problem_WORD_LR): Likewise.
9631 (problem_NOTE): Likewise.
9632 (problem_MD): Likewise.
9633 * df-scan.c (problem_SCAN): Likewise.
9634 * df.h (struct df_problem): Make field "dependent_problem" be
9635 const.
9636 (struct dataflow): Likewise for field "problem".
9637 (df_add_problem): Make param const.
9638
9639 2016-04-27 Uros Bizjak <ubizjak@gmail.com>
9640
9641 * config/i386/i386.c (ix86_spill_class): Enable for TARGET_SSE2 when
9642 inter-unit moves to/from vector registers are enabled. Do not disable
9643 for TARGET_MMX.
9644
9645 2016-04-27 David Malcolm <dmalcolm@redhat.com>
9646
9647 * df.h (DF_SCAN, DF_LR, DF_LIVE, DF_RD, DF_CHAIN, DF_WORD_LR,
9648 DF_NOTE, DF_MD, DF_MIR, DF_LAST_PROBLEM_PLUS1): Convert from
9649 #define to...
9650 (enum df_problem_id): ...this new enum.
9651 (struct df_problem): Convert field "id" from "int" to
9652 enum df_problem_id.
9653
9654 2016-04-27 David Malcolm <dmalcolm@redhat.com>
9655
9656 * rtl.def: Update comment for "things in the instruction chain" to
9657 reflect the removal of the leading "i" field for INSN_UID in
9658 r210360. Fix bogus apostrophe.
9659
9660 2016-04-27 Uros Bizjak <ubizjak@gmail.com>
9661
9662 * config/i386/i386.md
9663 (lea arith with mem operand + setcc peephole2): Set operator mode.
9664
9665 2016-04-27 H.J. Lu <hongjiu.lu@intel.com>
9666
9667 PR target/70155
9668 * config/i386/i386.c (scalar_to_vector_candidate_p): Renamed to ...
9669 (dimode_scalar_to_vector_candidate_p): This.
9670 (timode_scalar_to_vector_candidate_p): New function.
9671 (scalar_to_vector_candidate_p): Likewise.
9672 (timode_check_non_convertible_regs): Likewise.
9673 (timode_remove_non_convertible_regs): Likewise.
9674 (remove_non_convertible_regs): Likewise.
9675 (remove_non_convertible_regs): Renamed to ...
9676 (dimode_remove_non_convertible_regs): This.
9677 (scalar_chain::~scalar_chain): Make it virtual.
9678 (scalar_chain::compute_convert_gain): Make it pure virtual.
9679 (scalar_chain::mark_dual_mode_def): Likewise.
9680 (scalar_chain::convert_insn): Likewise.
9681 (scalar_chain::convert_registers): Likewise.
9682 (scalar_chain::add_to_queue): Make it protected.
9683 (scalar_chain::emit_conversion_insns): Likewise.
9684 (scalar_chain::replace_with_subreg): Likewise.
9685 (scalar_chain::replace_with_subreg_in_insn): Likewise.
9686 (scalar_chain::convert_op): Likewise.
9687 (scalar_chain::convert_reg): Likewise.
9688 (scalar_chain::make_vector_copies): Likewise.
9689 (scalar_chain::convert_registers): New pure virtual function.
9690 (class dimode_scalar_chain): New class.
9691 (class timode_scalar_chain): Likewise.
9692 (scalar_chain::mark_dual_mode_def): Renamed to ...
9693 (dimode_scalar_chain::mark_dual_mode_def): This.
9694 (timode_scalar_chain::mark_dual_mode_def): New function.
9695 (timode_scalar_chain::convert_insn): Likewise.
9696 (dimode_scalar_chain::convert_registers): Likewise.
9697 (scalar_chain::compute_convert_gain): Renamed to ...
9698 (dimode_scalar_chain::compute_convert_gain): This.
9699 (scalar_chain::replace_with_subreg): Renamed to ...
9700 (dimode_scalar_chain::replace_with_subreg): This.
9701 (scalar_chain::replace_with_subreg_in_insn): Renamed to ...
9702 (dimode_scalar_chain::replace_with_subreg_in_insn): This.
9703 (scalar_chain::make_vector_copies): Renamed to ...
9704 (dimode_scalar_chain::make_vector_copies): This.
9705 (scalar_chain::convert_reg): Renamed to ...
9706 (dimode_scalar_chain::convert_reg ): This.
9707 (scalar_chain::convert_op): Renamed to ...
9708 (dimode_scalar_chain::convert_op): This.
9709 (scalar_chain::convert_insn): Renamed to ...
9710 (dimode_scalar_chain::convert_insn): This.
9711 (scalar_chain::convert): Call convert_registers.
9712 (convert_scalars_to_vector): Change to scalar_chain pointer to
9713 use timode_scalar_chain in 64-bit mode and dimode_scalar_chain
9714 in 32-bit mode. Delete scalar_chain pointer. Call
9715 free_dominance_info in 64-bit mode.
9716 (pass_stv::gate): Remove TARGET_64BIT check.
9717 (ix86_option_override): Put the 64-bit STV pass before the CSE
9718 pass.
9719
9720 2016-04-27 Pierre-Marie de Rodat <derodat@adacore.com>
9721
9722 * dwarf2out.h (struct dw_loc_descr_node): Remove the
9723 dw_loc_frame_offset field.
9724 * dwarf2out.c (new_loc_descr): Likewise.
9725 (resolve_args_picking_1): Turn the VISITED hash set into a
9726 FRAME_OFFSET hash map. Use it to associate a frame offset to
9727 visited nodes. Remove uses of the CHECKING_P macro.
9728 (resolve_args_picking): Update call to resolve_args_picking_1.
9729
9730 2016-04-27 Martin Liska <mliska@suse.cz>
9731
9732 * tree-ssa-loop-ivopts.c (iv_ca_dump): Fix level of indentation.
9733 (free_loop_data): Release vuses of groups.
9734
9735 2016-04-27 Bin Cheng <bin.cheng@arm.com>
9736
9737 * tree-ssa-loop-ivopts.c (struct iv): Use pointer to struct iv_use
9738 instead of redundant use_id and boolean have_use_for.
9739 (struct iv_use): Change sub_id into group_id. Remove field next.
9740 Move fields: related_cands, n_map_members, cost_map and selected
9741 to ...
9742 (struct iv_group): ... here. New structure.
9743 (struct iv_common_cand): Use structure declaration directly.
9744 (struct ivopts_data, iv_ca, iv_ca_delta): Rename fields.
9745 (MAX_CONSIDERED_USES): Rename macro to ...
9746 (MAX_CONSIDERED_GROUPS): ... here.
9747 (n_iv_uses, iv_use, n_iv_cands, iv_cand): Delete.
9748 (dump_iv, dump_use, dump_cand): Refactor format of dump information.
9749 (dump_uses): Rename to ...
9750 (dump_groups): ... here. Update all uses.
9751 (tree_ssa_iv_optimize_init, alloc_iv): Update all uses.
9752 (find_induction_variables): Refactor format of dump information.
9753 (record_sub_use): Delete.
9754 (record_use): Update all uses.
9755 (record_group): New function.
9756 (record_group_use, find_interesting_uses_op): Call above functions.
9757 Update all uses.
9758 (find_interesting_uses_cond): Ditto.
9759 (group_compare_offset): New function.
9760 (split_all_small_groups): Rename to ...
9761 (split_small_address_groups_p): ... here. Update all uses.
9762 (split_address_groups): Update all uses.
9763 (find_interesting_uses): Refactor format of dump information.
9764 (add_candidate_1): Update all uses. Remove redundant check on iv,
9765 base and step.
9766 (add_candidate, record_common_cand): Remove redundant assert.
9767 (add_iv_candidate_for_biv): Update use.
9768 (add_iv_candidate_derived_from_uses): Update all uses.
9769 (add_iv_candidate_for_groups, record_important_candidates): Ditto.
9770 (alloc_use_cost_map): Ditto.
9771 (set_use_iv_cost, get_use_iv_cost): Rename to ...
9772 (set_group_iv_cost, get_group_iv_cost): ... here. Update all uses.
9773 (determine_use_iv_cost_generic): Ditto.
9774 (determine_group_iv_cost_generic): Ditto.
9775 (determine_use_iv_cost_address): Ditto.
9776 (determine_group_iv_cost_address): Ditto.
9777 (determine_use_iv_cost_condition): Ditto.
9778 (determine_group_iv_cost_cond): Ditto.
9779 (determine_use_iv_cost): Ditto.
9780 (determine_group_iv_cost): Ditto.
9781 (set_autoinc_for_original_candidates): Update all uses.
9782 (find_iv_candidates): Update all uses. Refactor dump information.
9783 (determine_use_iv_costs): Ditto.
9784 (determine_iv_costs): Ditto.
9785 (iv_ca_cand_for_use): Rename to ...
9786 (iv_ca_cand_for_group): ... here. Update all uses.
9787 (iv_ca_add_use, iv_ca_add_group): Ditto.
9788 (iv_ca_set_cp, iv_ca_cost, iv_ca_delta_add): Update all uses.
9789 (iv_ca_delta_join, iv_ca_delta_reverse, iv_ca_delta_free): Ditto.
9790 (iv_ca_new, iv_ca_dump, iv_ca_extend, iv_ca_narrow): Ditto.
9791 (iv_ca_prune, cheaper_cost_with_cand, iv_ca_replace): Ditto.
9792 (try_add_cand_for, try_improve_iv_set, find_optimal_iv_set): Ditto.
9793 (create_new_iv, adjust_iv_update_pos): Ditto.
9794 (rewrite_use_address): Delete.
9795 (rewrite_use_address_1): Rename to ...
9796 (rewrite_use_address): ... here.
9797 (rewrite_use_compare): Update all uses.
9798 (rewrite_use): Delete.
9799 (rewrite_uses): Rename to ...
9800 (rewrite_groups): ... here. Update all uses.
9801 (remove_unused_ivs, free_loop_data): Update all uses.
9802 (tree_ssa_iv_optimize_finalize, tree_ssa_iv_optimize_loop): Ditto.
9803
9804 2016-04-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9805
9806 * rtlanal.c (nonzero_bits1): Convert preprocessor check
9807 for WORD_REGISTER_OPERATIONS to runtime check.
9808
9809 2016-04-27 Richard Biener <rguenther@suse.de>
9810
9811 PR ipa/70760
9812 * tree-ssa-structalias.c (find_func_aliases_for_call): Use
9813 aggregate_value_p to determine if a function result is
9814 returned by reference.
9815 (ipa_pta_execute): Functions having their address taken are
9816 not automatically nonlocal.
9817
9818 2016-04-27 Jakub Jelinek <jakub@redhat.com>
9819
9820 PR sanitizer/70683
9821 * tree-core.h (enum operand_equal_flag): Add OEP_NO_HASH_CHECK.
9822 * fold-const.c (operand_equal_p): If flag_checking and
9823 OEP_NO_HASH_CHECK is not set in flag, recurse with OEP_NO_HASH_CHECK
9824 and if it returns non-zero, assert iterative_hash_expr on both
9825 args is the same.
9826
9827 2016-04-27 Bernd Schmidt <bschmidt@redhat.com>
9828
9829 * doc/invoke.texi (-frename-registers): Also enabled at -Os.
9830
9831 2016-04-27 Nick Clifton <nickc@redhat.com>
9832
9833 PR middle-end/49889
9834 * varasm.c (merge_weak): Generate an error if an attempt is made
9835 to convert a non-weak static function into a weak, public function.
9836
9837 2016-04-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
9838
9839 * params.def (MAX_PARTITION_SIZE): New param.
9840 * doc/invoke.texi: Document lto-max-partition.
9841
9842 2016-04-27 Richard Biener <rguenther@suse.de>
9843
9844 PR ipa/70785
9845 * tree-ssa-structalias.c (refered_from_nonlocal_fn): New
9846 function cummulating used_from_other_partition, externally_visible
9847 and force_output from aliases.
9848 (refered_from_nonlocal_var): Likewise.
9849 (ipa_pta_execute): Use call_for_symbol_and_aliases to cummulate
9850 node flags properly.
9851
9852 2016-04-27 Bernd Schmidt <bschmidt@redhat.com>
9853
9854 * doc/invoke.texi (Warning Options): Add -Wmemset-elt-size.
9855 (-Wmemset-elt-size): New item.
9856
9857 2016-04-27 Eric Botcazou <ebotcazou@adacore.com>
9858
9859 PR ada/70759
9860 * stor-layout.h (internal_reference_types): Delete.
9861 * stor-layout.c (reference_types_internal): Likewise.
9862 (internal_reference_types): Likewise.
9863 (layout_type) <REFERENCE_TYPE>: Adjust.
9864
9865 2016-04-27 Jakub Jelinek <jakub@redhat.com>
9866
9867 PR sanitizer/70683
9868 * tree.h (inchash::add_expr): Add FLAGS argument.
9869 * tree.c (inchash::add_expr): Likewise. If not OEP_ADDRESS_OF,
9870 use STRIP_NOPS first. For INTEGER_CST assert not OEP_ADDRESS_OF.
9871 For REAL_CST and !HONOR_SIGNED_ZEROS (t) hash +/- 0 the same.
9872 Formatting fix. Adjust recursive calls. For tcc_comparison,
9873 if swap_tree_comparison (code) is smaller than code, hash that
9874 and arguments in the other order. Hash CONVERT_EXPR the same
9875 as NOP_EXPR. For OEP_ADDRESS_OF hash MEM_REF with 0 offset
9876 of ADDR_EXPR of decl as the decl itself. Add or remove
9877 OEP_ADDRESS_OF from recursive flags as needed. For
9878 FMA_EXPR, WIDEN_MULT_{PLUS,MINUS}_EXPR hash the first two
9879 operands commutatively and only the third one normally.
9880 For internal CALL_EXPR hash in CALL_EXPR_IFN.
9881
9882 2016-04-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
9883
9884 * config/rtems.h (LIB_SPEC): Add -latomic.
9885
9886 2016-04-27 Joel Sherrill <joel@rtems.org>
9887
9888 * config/microblaze/rtems.h: Redefine LINK_SPEC to avoid
9889 xilink.ld and flags not relevant to RTEMS.
9890
9891 2016-04-26 Zhouyi Zhou <yizhouzhou@ict.ac.cn>
9892
9893 * toplev.c (backend_init_target): Avoid calling init_reload when using
9894 LRA.
9895
9896 2016-04-26 Jakub Jelinek <jakub@redhat.com>
9897
9898 * reorg.c (try_merge_delay_insns): Declare i and j inside the
9899 for loops rather than one for the whole function.
9900
9901 2016-04-26 Marc Glisse <marc.glisse@inria.fr>
9902
9903 * match.pd (X + CST CMP X): New transformation.
9904
9905 2016-04-26 Marc Glisse <marc.glisse@inria.fr>
9906
9907 * genmatch.c (write_predicate): Add ATTRIBUTE_UNUSED.
9908 * fold-const.c (fold_binary_loc): Remove 2 transformations
9909 superseded by match.pd.
9910 * match.pd (x+x -> x*2): Generalize to integers.
9911
9912 2016-04-26 Bernd Schmidt <bschmidt@redhat.com>
9913
9914 * config/i386/i386.md (operation on memory peephole): Duplicate an
9915 existing peephole and adapt it to match lea rather than an operation
9916 that clobbers CC.
9917
9918 PR rtl-optimization/57193
9919 * opts.c (default_options_table): Add OPT_frename_registers at -O2
9920 and above.
9921 * doc/invoke.texi (-frename-registers, -O2): Update documentation.
9922
9923 2016-04-26 Bin Cheng <bin.cheng@arm.com>
9924
9925 * tree-if-conv.c (any_pred_load_store): New static variable.
9926 (if_convertible_gimple_assign_stmt_p): Remove parameter. Use
9927 any_pred_load_store instead of and_mask_load_store.
9928 (if_convertible_stmt_p, if_convertible_loop_p_1): Ditto.
9929 (if_convertible_loop_p, insert_gimplified_predicates): Ditto.
9930 (combine_blocks, tree_if_conversion): Ditto.
9931
9932 2016-04-26 Bin Cheng <bin.cheng@arm.com>
9933
9934 PR tree-optimization/70771
9935 PR tree-optimization/70775
9936 * tree-if-conv.c (if_convertible_phi_p): Remove check on special
9937 virtual PHI nodes. Delete parameter.
9938 (if_convertible_loop_p_1): Delete argument to above function.
9939 (predicate_all_scalar_phis): Delete code handling single-argument
9940 PHIs.
9941 (tree_if_conversion): Mark and update virtual SSA.
9942
9943 2016-04-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9944
9945 PR target/61821
9946 * config/i386/i386.c (LARGECOMM_SECTION_ASM_OP): Define default.
9947 (x86_elf_aligned_common): Rename to ...
9948 (x86_elf_aligned_decl_common): ... this.
9949 Add decl arg. Switch to .lbss for largecomm object. Use
9950 LARGECOMM_SECTION_ASM_OP.
9951 * config/i386/i386-protos.h (x86_elf_aligned_common): Reflect
9952 renaming.
9953 * config/i386/x86-64.h (ASM_OUTPUT_ALIGNED_COMMON): Rename to ...
9954 (ASM_OUTPUT_ALIGNED_DECL_COMMON): ... this.
9955 Pass new decl arg.
9956 * config/i386/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
9957 [!USE_GAS] (LARGECOMM_SECTION_ASM_OP): Define.
9958
9959 2016-04-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9960
9961 PR target/59407
9962 * config/i386/i386.c (SECTION_LARGE): Define.
9963 (x86_64_elf_select_section): Set it for large data/bss sections.
9964 Only clear SECTION_WRITE for .lrodata.
9965 (x86_64_elf_section_type_flags): Set SECTION_LARGE for large
9966 data/bss sections.
9967 * config/i386/sol2.h (MACH_DEP_SECTION_ASM_FLAG): Define.
9968 * varasm.c (default_elf_asm_named_section): Grow flagchars.
9969 [MACH_DEP_SECTION_ASM_FLAG] Emit MACH_DEP_SECTION_ASM_FLAG for
9970 SECTION_MACH_DEP.
9971 * doc/tm.texi.in (Sections, MACH_DEP_SECTION_ASM_FLAG): Describe.
9972 * doc/tm.texi: Regenerate.
9973
9974 2016-04-26 Jakub Jelinek <jakub@redhat.com>
9975
9976 PR bootstrap/70704
9977 * configure.ac (--enable-checking): Document extra flag, for
9978 non-release builds default to --enable-checking=yes,extra.
9979 If misc checking and extra checking, define CHECKING_P to 2 instead
9980 of 1.
9981 * common.opt (fchecking=): Add.
9982 * doc/invoke.texi (-fchecking=): Document.
9983 * doc/install.texi: Document --enable-checking changes.
9984 * configure: Regenerated.
9985 * config.in: Regenerated.
9986
9987 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
9988
9989 * config/i386/i386.md (*movxi_internal_avx512f): Use insn type
9990 attribute instead of which_alternative.
9991 * config/i386/sse.md (*mov<mode>_internal): Ditto.
9992 Use EXT_REX_SSE_REG_P where appropriate.
9993
9994 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
9995
9996 * config/i386/predicates.md (const0_operand): Do not match
9997 const_wide_int code.
9998 (const1_operand): Ditto.
9999
10000 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
10001
10002 * config/i386/i386.md (*movoi_internal_avx): Set mode attribute to XI
10003 for SSE constm1 operands and TARGET_AVX512VL.
10004 (*movti_internal): Ditto.
10005 (*mov<mode>_or): Use constm1_operand predicate.
10006 * config/i386/sse.md (*mov<mode>_internal): Set mode attribute to XI
10007 for SSE vector_all_ones operands and TARGET_AVX512VL.
10008 * config/i386/predicates.md (constm1_operand): New predicate.
10009 * config/i386/i386.c (standard_sse_constant_opcode): Simplify
10010 emission of constant -1 load.
10011
10012 2016-04-25 Jason Merrill <jason@redhat.com>
10013
10014 * gdbinit.in: Skip is-a.h.
10015
10016 * attribs.c (register_scoped_attributes): Fix logic.
10017 * attribs.h: Declare register_scoped_attributes.
10018
10019 2016-04-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
10020
10021 * config/rs6000/rs6000-builtin.def: Correct pasto error for
10022 stxvd2x and stxvw4x built-in functions.
10023
10024 2016-04-25 DJ Delorie <dj@redhat.com>
10025
10026 * config/msp430/msp430.md (ashlhi3): Optimize one bit shifts.
10027 (ashrhi3): Likewise.
10028 (lshrhi3): Likewise.
10029
10030 2016-04-25 Richard Biener <rguenther@suse.de>
10031
10032 PR tree-optimization/70780
10033 * tree-ssa-pre.c (compute_antic_aux): Also return true if the block
10034 wasn't visited yet.
10035 (compute_antic): Mark blocks with abnormal preds as visited as
10036 they have a final empty antic-in solution already.
10037
10038 2016-04-25 Michael Collison <michael.collison@linaro.org>
10039
10040 * ChangeLog(2016-04-25): Fix ChangeLog formatting.
10041
10042 2016-04-25 Michael Collison <michael.collison@linaro.org>
10043
10044 * config/arm/neon.md (widen_<us>sum<mode>): New patterns where
10045 mode is VQI to improve mixed mode vectorization.
10046 * config/arm/neon.md (vec_sel_widen_ssum_lo<VQI:mode><VW:mode>3): New
10047 define_insn to match low half of signed vaddw.
10048 * config/arm/neon.md (vec_sel_widen_ssum_hi<VQI:mode><VW:mode>3): New
10049 define_insn to match high half of signed vaddw.
10050 * config/arm/neon.md (vec_sel_widen_usum_lo<VQI:mode><VW:mode>3): New
10051 define_insn to match low half of unsigned vaddw.
10052 * config/arm/neon.md (vec_sel_widen_usum_hi<VQI:mode><VW:mode>3): New
10053 define_insn to match high half of unsigned vaddw.
10054 * config/arm/arm.c (arm_simd_vect_par_cnst_half): New function.
10055 (arm_simd_check_vect_par_cnst_half_p): Likewise.
10056 * config/arm/arm-protos.h (arm_simd_vect_par_cnst_half): Prototype
10057 for new function.
10058 (arm_simd_check_vect_par_cnst_half_p): Likewise.
10059 * config/arm/predicates.md (vect_par_constant_high): Support
10060 big endian and simplify by calling
10061 arm_simd_check_vect_par_cnst_half
10062 (vect_par_constant_low): Likewise.
10063
10064 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
10065
10066 * config/i386/i386.md (*lea<mode>_general_4): Use const_0_to_3_operand
10067 predicate for operand 2.
10068
10069 2016-04-24 Uros Bizjak <ubizjak@gmail.com>
10070 H.J. Lu <hongjiu.lu@intel.com>
10071
10072 * config/i386/i386-protos.h (standard_sse_constant_p): Add
10073 machine_mode argument.
10074 * config/i386/i386.c (standard_sse_constant_p): Return 2 for
10075 constm1_rtx operands. For VOIDmode constants, get mode from
10076 pred_mode. Check mode size if the mode is supported by ABI.
10077 (standard_sse_constant_opcode): Do not use standard_constant_p.
10078 Strictly check ABI support for all-ones operands.
10079 (ix86_legitimate_constant_p): Handle TImode, OImode and XImode
10080 immediates. Update calls to standard_sse_constant_p.
10081 (ix86_expand_vector_move): Update calls to standard_sse_constant_p.
10082 (ix86_rtx_costs): Ditto.
10083 * config/i386/i386.md (*movxi_internal_avx512f): Use
10084 nonimmediate_or_sse_const_operand instead of vector_move_operand.
10085 Use (v,BC) alternative instead of (v,C). Use register_operand
10086 checks instead of MEM_P.
10087 (*movoi_internal_avx): Use nonimmediate_or_sse_const_operand instead
10088 of vector_move_operand. Add (v,BC) alternative and corresponding avx2
10089 isa attribute. Use register_operand checks instead of MEM_P.
10090 (*movti_internal): Use nonimmediate_or_sse_const_operand for
10091 TARGET_SSE. Improve TARGET_SSE insn constraint. Add (v,BC)
10092 alternative and corresponding sse2 isa attribute.
10093 (*movtf_internal, *movdf_internal, *movsf_interal): Update calls
10094 to standard_sse_constant_p.
10095 (FP constant splitters): Ditto.
10096 * config/i386/constraints.md (BC): Do not use standard_sse_constant_p.
10097 (C): Ditto.
10098 * config/i386/predicates.md (constm1_operand): Remove.
10099 (nonimmediate_or_sse_const_operand): Rewrite using RTX.
10100 * config/i386/sse.md (*<avx512>_cvtmask2<ssemodesuffix><mode>): Use
10101 vector_all_ones_operand instead of constm1_operand.
10102
10103 2016-04-24 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
10104
10105 * print-rtl.c (print_rtx_insn_vec): New function.
10106 * print-rtl.h: New prototype.
10107 * store-motion.c (struct st_expr): Make avail_stores a vector.
10108 (st_expr_entry): Adjust.
10109 (free_st_expr_entry): Likewise.
10110 (print_store_motion_mems): Likewise.
10111 (find_moveable_store): Likewise.
10112 (compute_store_table): Likewise.
10113 (delete_store): Likewise.
10114 (build_store_vectors): Likewise.
10115
10116 2016-04-24 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
10117
10118 * reorg.c (try_merge_delay_insns): Make merged_insns a vector.
10119
10120 2016-04-24 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
10121
10122 * vec.h (vec_safe_contains): New function.
10123 (vec::contains): Likewise.
10124 (vec::begin): Likewise.
10125 (vec::end): Likewise.
10126
10127 2016-04-23 Jakub Jelinek <jakub@redhat.com>
10128
10129 PR sanitizer/70712
10130 * cfgexpand.c (expand_stack_vars): Fix typo.
10131
10132 2016-04-22 Szabolcs Nagy <szabolcs.nagy@arm.com>
10133
10134 * system.h (list, map, set, vector): Include conditionally.
10135 * auto-profile.c (INCLUDE_MAP, INCLUDE_SET): Define.
10136 * graphite-isl-ast-to-gimple.c (INCLUDE_MAP): Define.
10137 * ipa-icf.c (INCLUDE_LIST): Define.
10138 * config/aarch64/cortex-a57-fma-steering.c (INCLUDE_LIST): Define.
10139 * config/sh/sh.c (INCLUDE_VECTOR): Define.
10140 * config/sh/sh_treg_combine.cc (INCLUDE_ALGORITHM): Define.
10141 (INCLUDE_LIST, INCLUDE_VECTOR): Define.
10142 * cp/logic.cc (INCLUDE_LIST): Define.
10143 * fortran/trans-common.c (INCLUDE_MAP): Define.
10144
10145 2016-04-22 Szabolcs Nagy <szabolcs.nagy@arm.com>
10146
10147 * auto-profile.c: Remove <string.h> include.
10148 * ipa-icf-gimple.c: Remove <list> include.
10149 * diagnostic.c: Remove <new> include.
10150 * genmatch.c: Likewise.
10151 * pretty-print.c: Likewise.
10152 * toplev.c: Likewise
10153 * c/c-objc-common.c: Likewise.
10154 * cp/error.c: Likewise.
10155 * fortran/error.c: Likewise.
10156
10157 2016-04-22 Richard Biener <rguenther@suse.de>
10158
10159 * lto-streamer-in.c (input_ssa_names): Do not allocate
10160 GIMPLE_NOP for all SSA names.
10161 * lto-streamer-out.c (output_ssa_names): Do not output
10162 SSA names that should have been released.
10163
10164 2016-04-22 Richard Biener <rguenther@suse.de>
10165
10166 PR tree-optimization/70740
10167 * tree-ssa-phiprop.c (propagate_with_phi): Handle inserted
10168 VDEF.
10169
10170 2016-04-21 H.J. Lu <hongjiu.lu@intel.com>
10171
10172 PR target/70750
10173 * config/i386/predicates.md (call_insn_operand): Replace
10174 sibcall_memory_operand with memory_operand.
10175
10176 2016-04-21 Patrick Palka <ppalka@gcc.gnu.org>
10177
10178 * tree-vrp.c (register_edge_assert_for_2): Remove redundant
10179 has_single_use() tests.
10180 (register_edge_assert_for_1): Likewise.
10181 (find_assert_locations_1): Check the liveness bitmap instead of
10182 checking has_single_use().
10183
10184 2016-04-21 Kirill Yukhin <kirill.yukhin@intel.com>
10185
10186 PR target/70728
10187 * config/i386/sse.md (define_insn "<shift_insn><mode>3<mask_name>"):
10188 Extract AVX-512BW constraint from AVX.
10189
10190 2016-04-21 Richard Biener <rguenther@suse.de>
10191
10192 PR tree-optimization/70725
10193 * tree-if-conv.c (if_convertible_phi_p): Adjust guard
10194 for phi_convertible_by_degenerating_args.
10195 (predicate_all_scalar_phis): Handle single-argument PHIs.
10196
10197 2016-04-21 Richard Biener <rguenther@suse.de>
10198
10199 PR middle-end/70747
10200 * fold-const.c (fold_comparison): Return properly typed
10201 constant boolean.
10202
10203 2016-04-21 Bin Cheng <bin.cheng@arm.com>
10204
10205 PR tree-optimization/70715
10206 * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
10207 after expanding BASE using expand_simple_operations.
10208
10209 2016-04-21 Marc Glisse <marc.glisse@inria.fr>
10210
10211 * match.pd (min(-x, -y), max(-x, -y), min(~x, ~y), max(~x, ~y)):
10212 New transformations.
10213
10214 2016-04-21 Marc Glisse <marc.glisse@inria.fr>
10215
10216 * match.pd (min(int_max, x), max(int_min, x)): New transformations.
10217
10218 2016-04-20 Jan Hubicka <jh@suse.cz>
10219
10220 * ipa-inline.c (can_inline_edge_p): Pass caller info to
10221 ultiimate_alias_target.
10222 (update_callee_keys): Likewise.
10223 (lookup_recursive_calls): Likewise.
10224 (speculation_useful_p): Likewise.
10225
10226 2016-04-20 Jan Hubicka <jh@suse.cz>
10227
10228 PR ipa/70018
10229 * cgraph.c (cgraph_set_nothrow_flag_1): Rename to ...
10230 (set_nothrow_flag_1): ... this; handle interposition correctly;
10231 recurse on aliases and thunks.
10232 (cgraph_node::set_nothrow_flag): New.
10233 * ipa-pure-const.c (ignore_edge_for_nothrow): Ignore calls to
10234 functions compiled with non-call exceptions that binds to current
10235 def.
10236 (propagate_nothrow): Be safe WRT interposition.
10237 * cgraph.h (set_nothrow_flag): Update prototype.
10238
10239 2016-04-18 Jan Hubicka <jh@suse.cz>
10240
10241 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
10242 max_loop_iterations_int.
10243 (tree_unswitch_outer_loop): Likewise.
10244
10245 2016-04-20 Bin Cheng <bin.cheng@arm.com>
10246
10247 PR tree-optimization/69489
10248 * tree-if-conv.c (phi_convertible_by_degenerating_args): New.
10249 (if_convertible_phi_p): Call phi_convertible_by_degenerating_args.
10250 Revise dump message.
10251 (if_convertible_bb_p): Remove check on edge count of basic block's
10252 predecessors.
10253
10254 2016-04-20 Bin Cheng <bin.cheng@arm.com>
10255
10256 PR tree-optimization/56625
10257 PR tree-optimization/69489
10258 * tree-data-ref.h (DR_INNERMOST): New macro.
10259 * tree-if-conv.c (innermost_loop_behavior_hash): New class for
10260 hashing struct innermost_loop_behavior.
10261 (ref_DR_map): Remove.
10262 (innermost_DR_map): New map.
10263 (baseref_DR_map): Revise comment.
10264 (hash_memrefs_baserefs_and_store_DRs_read_written_info): Store DR
10265 to innermost_DR_map accroding to its innermost loop behavior.
10266 (ifcvt_memrefs_wont_trap): Get DR from innermost_DR_map according
10267 to its innermost loop behavior.
10268 (if_convertible_loop_p_1): Remove intialization for ref_DR_map.
10269 Add initialization for innermost_DR_map. Record memory reference
10270 in DR_BASE_ADDRESS if the reference is compound one or it doesn't
10271 have innermost loop behavior.
10272 (if_convertible_loop_p): Remove release for ref_DR_map. Release
10273 innermost_DR_map.
10274
10275 2016-04-20 Uros Bizjak <ubizjak@gmail.com>
10276
10277 * config/i386/i386.md (*lea<mode>_general_1): Rename from
10278 *lea_general_1. Use explicit SWI12 mode interator.
10279 (*lea<mode>_general_2): Rename from *lea_general_2.
10280 Use explicit SWI12 mode interator.
10281 (*lea<mode>_general_3): Rename from *lea_general_3.
10282 Use explicit SWI12 mode interator.
10283 (*lea<SWI12:mode>_general_4): Split from *lea_general_4.
10284 Use explicit SWI12 mode interator.
10285 (*lea<SWI48:mode>_general_4): Split from *lea_general_4.
10286 Use explicit SWI48 mode interator.
10287
10288 2016-04-20 H.J. Lu <hongjiu.lu@intel.com>
10289
10290 * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
10291 Short-cut unaligned load and store cases. Handle all integer
10292 vector modes.
10293 (ix86_expand_vector_move_misalign): Short-cut unaligned load
10294 and store cases. Call ix86_avx256_split_vector_move_misalign
10295 directly without checking mode class.
10296
10297 2016-04-20 Andrew Pinski <apinski@cavium.com>
10298 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
10299
10300 PR target/64971
10301 * config/aarch64/aarch64.md (sibcall): Force call
10302 address to be DImode for ILP32.
10303 (sibcall_value): Likewise.
10304
10305 2016-04-20 H.J. Lu <hongjiu.lu@intel.com>
10306
10307 * doc/invoke.texi: Replace -skip-rax-setup with -mskip-rax-setup.
10308
10309 2016-04-20 Richard Biener <rguenther@suse.de>
10310
10311 * gimple-match.h (maybe_build_generic_op): Adjust prototype.
10312 * gimple-match-head.c (maybe_build_generic_op): Pass all ops
10313 by reference, clear op1 and op2 when GENERICizing BIT_FIELD_REF.
10314 (maybe_push_res_to_seq): Adjust.
10315 * gimple-fold.c (maybe_build_generic_op): Likewise.
10316
10317 2016-04-20 Marek Polacek <polacek@redhat.com>
10318
10319 * tree-if-conv.c (is_false_predicate): For NULL_TREE return false
10320 rather than true.
10321
10322 2016-04-20 Ilya Enkovich <ilya.enkovich@intel.com>
10323
10324 * config/i386/sse.md (vec_unpacks_lo_hi): Always
10325 use kmovw to support AVX512F target.
10326
10327 2016-04-20 Bin Cheng <bin.cheng@arm.com>
10328
10329 * tree-scalar-evolution.c (interpret_rhs_expr): Handle BIT_AND_EXPR.
10330
10331 2016-04-20 Marek Polacek <polacek@redhat.com>
10332
10333 PR tree-optimization/70725
10334 * tree-if-conv.c (is_false_predicate): New function.
10335 (predicate_mem_writes): Use it.
10336
10337 2016-04-20 Richard Biener <rguenther@suse.de>
10338
10339 PR tree-optimization/70726
10340 * tree-vect-stmts.c (vectorizable_shift): Do not use scalar
10341 shift amounts from a pattern stmt operand.
10342
10343 2016-04-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
10344
10345 PR target/70674
10346 * config/s390/s390.c (s390_restore_gprs_from_fprs): Pick the new
10347 stack_restore_from_fpr pattern when restoring r15.
10348 (s390_optimize_prologue): Strip away the memory barrier in the
10349 parallel when trying to get rid of restore insns.
10350 * config/s390/s390.md ("stack_restore_from_fpr"): New insn
10351 definition for loading the stack pointer from an FPR. Compared to
10352 the normal move insn this pattern includes a full memory barrier.
10353
10354 2016-04-19 Jakub Jelinek <jakub@redhat.com>
10355
10356 PR middle-end/70680
10357 * gimplify.c (gimplify_omp_for): Call omp_notice_variable for
10358 implicitly linear or lastprivate iterator on the outer context.
10359
10360 2016-04-19 H.J. Lu <hongjiu.lu@intel.com>
10361
10362 * config/i386/i386.c (ix86_legitimate_combined_insn): Remove
10363 alignment check.
10364 * config/i386/i386.md (ssememalign): Removed.
10365 * config/i386/sse.md: Remove ssememalign attribute from patterns.
10366
10367 2016-04-19 H.J. Lu <hongjiu.lu@intel.com>
10368
10369 PR target/69201
10370 * config/i386/avx512bwintrin.h (_mm512_mask_loadu_epi16): Pass
10371 const short * to __builtin_ia32_loaddquhi512_mask.
10372 (_mm512_maskz_loadu_epi16): Likewise.
10373 (_mm512_mask_storeu_epi16): Pass short * to
10374 __builtin_ia32_storedquhi512_mask.
10375 (_mm512_mask_loadu_epi8): Pass const char * to
10376 __builtin_ia32_loaddquqi512_mask.
10377 (_mm512_maskz_loadu_epi8): Likewise.
10378 (_mm512_mask_storeu_epi8): Pass char * to
10379 __builtin_ia32_storedquqi512_mask.
10380 * config/i386/avx512fintrin.h (_mm512_loadu_pd): Pass
10381 const double * to __builtin_ia32_loadupd512_mask.
10382 (_mm512_mask_loadu_pd): Likewise.
10383 (_mm512_maskz_loadu_pd): Likewise.
10384 (_mm512_storeu_pd): Pass double * to
10385 __builtin_ia32_storeupd512_mask.
10386 (_mm512_mask_storeu_pd): Likewise.
10387 (_mm512_loadu_ps): Pass const float * to
10388 __builtin_ia32_loadups512_mask.
10389 (_mm512_mask_loadu_ps): Likewise.
10390 (_mm512_maskz_loadu_ps): Likewise.
10391 (_mm512_storeu_ps): Pass float * to
10392 __builtin_ia32_storeups512_mask.
10393 (_mm512_mask_storeu_ps): Likewise.
10394 (_mm512_mask_loadu_epi64): Pass const long long * to
10395 __builtin_ia32_loaddqudi512_mask.
10396 (_mm512_maskz_loadu_epi64): Likewise.
10397 (_mm512_mask_storeu_epi64): Pass long long *
10398 to __builtin_ia32_storedqudi512_mask.
10399 (_mm512_loadu_si512): Pass const int * to
10400 __builtin_ia32_loaddqusi512_mask.
10401 (_mm512_mask_loadu_epi32): Likewise.
10402 (_mm512_maskz_loadu_epi32): Likewise.
10403 (_mm512_storeu_si512): Pass int * to
10404 __builtin_ia32_storedqusi512_mask.
10405 (_mm512_mask_storeu_epi32): Likewise.
10406 * config/i386/avx512vlbwintrin.h (_mm256_mask_storeu_epi8): Pass
10407 char * to __builtin_ia32_storedquqi256_mask.
10408 (_mm_mask_storeu_epi8): Likewise.
10409 (_mm256_mask_loadu_epi16): Pass const short * to
10410 __builtin_ia32_loaddquhi256_mask.
10411 (_mm256_maskz_loadu_epi16): Likewise.
10412 (_mm_mask_loadu_epi16): Pass const short * to
10413 __builtin_ia32_loaddquhi128_mask.
10414 (_mm_maskz_loadu_epi16): Likewise.
10415 (_mm256_mask_loadu_epi8): Pass const char * to
10416 __builtin_ia32_loaddquqi256_mask.
10417 (_mm256_maskz_loadu_epi8): Likewise.
10418 (_mm_mask_loadu_epi8): Pass const char * to
10419 __builtin_ia32_loaddquqi128_mask.
10420 (_mm_maskz_loadu_epi8): Likewise.
10421 (_mm256_mask_storeu_epi16): Pass short * to.
10422 __builtin_ia32_storedquhi256_mask.
10423 (_mm_mask_storeu_epi16): Pass short * to.
10424 __builtin_ia32_storedquhi128_mask.
10425 * config/i386/avx512vlintrin.h (_mm256_mask_loadu_pd): Pass
10426 const double * to __builtin_ia32_loadupd256_mask.
10427 (_mm256_maskz_loadu_pd): Likewise.
10428 (_mm_mask_loadu_pd): Pass onst double * to
10429 __builtin_ia32_loadupd128_mask.
10430 (_mm_maskz_loadu_pd): Likewise.
10431 (_mm256_mask_storeu_pd): Pass double * to
10432 __builtin_ia32_storeupd256_mask.
10433 (_mm_mask_storeu_pd): Pass double * to
10434 __builtin_ia32_storeupd128_mask.
10435 (_mm256_mask_loadu_ps): Pass const float * to
10436 __builtin_ia32_loadups256_mask.
10437 (_mm256_maskz_loadu_ps): Likewise.
10438 (_mm_mask_loadu_ps): Pass const float * to
10439 __builtin_ia32_loadups128_mask.
10440 (_mm_maskz_loadu_ps): Likewise.
10441 (_mm256_mask_storeu_ps): Pass float * to
10442 __builtin_ia32_storeups256_mask.
10443 (_mm_mask_storeu_ps): ass float * to
10444 __builtin_ia32_storeups128_mask.
10445 (_mm256_mask_loadu_epi64): Pass const long long * to
10446 __builtin_ia32_loaddqudi256_mask.
10447 (_mm256_maskz_loadu_epi64): Likewise.
10448 (_mm_mask_loadu_epi64): Pass const long long * to
10449 __builtin_ia32_loaddqudi128_mask.
10450 (_mm_maskz_loadu_epi64): Likewise.
10451 (_mm256_mask_storeu_epi64): Pass long long * to
10452 __builtin_ia32_storedqudi256_mask.
10453 (_mm_mask_storeu_epi64): Pass long long * to
10454 __builtin_ia32_storedqudi128_mask.
10455 (_mm256_mask_loadu_epi32): Pass const int * to
10456 __builtin_ia32_loaddqusi256_mask.
10457 (_mm256_maskz_loadu_epi32): Likewise.
10458 (_mm_mask_loadu_epi32): Pass const int * to
10459 __builtin_ia32_loaddqusi128_mask.
10460 (_mm_maskz_loadu_epi32): Likewise.
10461 (_mm256_mask_storeu_epi32): Pass int * to
10462 __builtin_ia32_storedqusi256_mask.
10463 (_mm_mask_storeu_epi32): Pass int * to
10464 __builtin_ia32_storedqusi128_mask.
10465 * config/i386/i386-builtin-types.def (PCSHORT): New.
10466 (PINT64): Likewise.
10467 (V64QI_FTYPE_PCCHAR_V64QI_UDI): Likewise.
10468 (V32HI_FTYPE_PCSHORT_V32HI_USI): Likewise.
10469 (V32QI_FTYPE_PCCHAR_V32QI_USI): Likewise.
10470 (V16SF_FTYPE_PCFLOAT_V16SF_UHI): Likewise.
10471 (V8DF_FTYPE_PCDOUBLE_V8DF_UQI): Likewise.
10472 (V16SI_FTYPE_PCINT_V16SI_UHI): Likewise.
10473 (V16HI_FTYPE_PCSHORT_V16HI_UHI): Likewise.
10474 (V16QI_FTYPE_PCCHAR_V16QI_UHI): Likewise.
10475 (V8SF_FTYPE_PCFLOAT_V8SF_UQI): Likewise.
10476 (V8DI_FTYPE_PCINT64_V8DI_UQI): Likewise.
10477 (V8SI_FTYPE_PCINT_V8SI_UQI): Likewise.
10478 (V8HI_FTYPE_PCSHORT_V8HI_UQI): Likewise.
10479 (V4DF_FTYPE_PCDOUBLE_V4DF_UQI): Likewise.
10480 (V4SF_FTYPE_PCFLOAT_V4SF_UQI): Likewise.
10481 (V4DI_FTYPE_PCINT64_V4DI_UQI): Likewise.
10482 (V4SI_FTYPE_PCINT_V4SI_UQI): Likewise.
10483 (V2DF_FTYPE_PCDOUBLE_V2DF_UQI): Likewise.
10484 (V2DI_FTYPE_PCINT64_V2DI_UQI): Likewise.
10485 (VOID_FTYPE_PDOUBLE_V8DF_UQI): Likewise.
10486 (VOID_FTYPE_PDOUBLE_V4DF_UQI): Likewise.
10487 (VOID_FTYPE_PDOUBLE_V2DF_UQI): Likewise.
10488 (VOID_FTYPE_PFLOAT_V16SF_UHI): Likewise.
10489 (VOID_FTYPE_PFLOAT_V8SF_UQI): Likewise.
10490 (VOID_FTYPE_PFLOAT_V4SF_UQI): Likewise.
10491 (VOID_FTYPE_PINT64_V8DI_UQI): Likewise.
10492 (VOID_FTYPE_PINT64_V4DI_UQI): Likewise.
10493 (VOID_FTYPE_PINT64_V2DI_UQI): Likewise.
10494 (VOID_FTYPE_PINT_V16SI_UHI): Likewise.
10495 (VOID_FTYPE_PINT_V8SI_UHI): Likewise.
10496 (VOID_FTYPE_PINT_V4SI_UHI): Likewise.
10497 (VOID_FTYPE_PSHORT_V32HI_USI): Likewise.
10498 (VOID_FTYPE_PSHORT_V16HI_UHI): Likewise.
10499 (VOID_FTYPE_PSHORT_V8HI_UQI): Likewise.
10500 (VOID_FTYPE_PCHAR_V64QI_UDI): Likewise.
10501 (VOID_FTYPE_PCHAR_V32QI_USI): Likewise.
10502 (VOID_FTYPE_PCHAR_V16QI_UHI): Likewise.
10503 (V64QI_FTYPE_PCV64QI_V64QI_UDI): Removed.
10504 (V32HI_FTYPE_PCV32HI_V32HI_USI): Likewise.
10505 (V32QI_FTYPE_PCV32QI_V32QI_USI): Likewise.
10506 (V16HI_FTYPE_PCV16HI_V16HI_UHI): Likewise.
10507 (V16QI_FTYPE_PCV16QI_V16QI_UHI): Likewise.
10508 (V8HI_FTYPE_PCV8HI_V8HI_UQI): Likewise.
10509 (VOID_FTYPE_PV32HI_V32HI_USI): Likewise.
10510 (VOID_FTYPE_PV16HI_V16HI_UHI): Likewise.
10511 (VOID_FTYPE_PV8HI_V8HI_UQI): Likewise.
10512 (VOID_FTYPE_PV64QI_V64QI_UDI): Likewise.
10513 (VOID_FTYPE_PV32QI_V32QI_USI): Likewise.
10514 (VOID_FTYPE_PV16QI_V16QI_UHI): Likewise.
10515 * config/i386/i386.c (ix86_emit_save_reg_using_mov): Don't
10516 use UNSPEC_STOREU.
10517 (ix86_emit_restore_sse_regs_using_mov): Don't use UNSPEC_LOADU.
10518 (ix86_avx256_split_vector_move_misalign): Don't use unaligned
10519 load nor store.
10520 (ix86_expand_vector_move_misalign): Likewise.
10521 (bdesc_special_args): Use CODE_FOR_movvNXY_internal and pointer
10522 to scalar function prototype for unaligned load/store builtins.
10523 (ix86_expand_special_args_builtin): Updated.
10524 * config/i386/sse.md (UNSPEC_LOADU): Removed.
10525 (UNSPEC_STOREU): Likewise.
10526 (VI_ULOADSTORE_BW_AVX512VL): Likewise.
10527 (VI_ULOADSTORE_F_AVX512VL): Likewise.
10528 (ssescalarsize): Handle V4TI, V2TI and V1TI.
10529 (<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
10530 (*<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
10531 (<sse>_storeu<ssemodesuffix><avxsizesuffix>): Likewise.
10532 (<avx512>_storeu<ssemodesuffix><avxsizesuffix>_mask): Likewise.
10533 (<sse2_avx_avx512f>_loaddqu<mode><mask_name>): Likewise.
10534 (*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"): Likewise.
10535 (sse2_avx_avx512f>_storedqu<mode>): Likewise.
10536 (<avx512>_storedqu<mode>_mask): Likewise.
10537 (*sse4_2_pcmpestr_unaligned): Likewise.
10538 (*sse4_2_pcmpistr_unaligned): Likewise.
10539 (*mov<mode>_internal): Renamed to ...
10540 (mov<mode>_internal): This. Remove check of AVX and IAMCU on
10541 misaligned operand. Replace vmovdqu64 with vmovdqu<ssescalarsize>.
10542 (movsd/movhpd to movupd peephole): Don't use UNSPEC_LOADU.
10543 (movlpd/movhpd to movupd peephole): Don't use UNSPEC_STOREU.
10544
10545 2016-04-19 Richard Biener <rguenther@suse.de>
10546
10547 PR tree-optimization/70171
10548 * tree-ssa-phiprop.c: Include stor-layout.h.
10549 (phiprop_insert_phi): Handle the aggregate copy case.
10550 (propagate_with_phi): Likewise.
10551
10552 2016-04-19 Uros Bizjak <ubizjak@gmail.com>
10553
10554 * config/i386/i386.c (ix86_decompose_address): Use lowpart_subreg
10555 instead of simplify_gen_subreg (... , 0).
10556 (ix86_delegitimize_address): Ditto.
10557 (ix86_split_divmod): Ditto.
10558 (ix86_split_copysign_const): Ditto.
10559 (ix86_split_copysign_var): Ditto.
10560 (ix86_expand_args_builtin): Ditto.
10561 (ix86_expand_round_builtin): Ditto.
10562 (ix86_expand_special_args_builtin): Ditto.
10563 * config/i386/i386.md (TARGET_USE_VECTOR_FP_CONVERTS splitters): Ditto.
10564 (TARGET_SSE_PARTIAL_REG_DEPENDENCY splitters and peephole2s): Ditto.
10565 (udivmodqi4): Ditto.
10566 (absneg splitters): Ditto.
10567 (*jcc_bt<mode>_1): Ditto.
10568
10569 2016-04-19 Richard Biener <rguenther@suse.de>
10570
10571 PR tree-optimization/70724
10572 * tree-ssa-sccvn.c (scc_vn_restore_ssa_info): Split SSA info
10573 restoring out from ...
10574 (free_scc_vn): ... here.
10575 * tree-ssa-sccvn.h (scc_vn_restore_ssa_info): Declare.
10576 * tres-ssa-pre.c (pass_pre::execute): Restore SSA info before
10577 tail merging.
10578 (pass_fre::execute): Restore SSA info.
10579
10580 2016-04-19 Richard Biener <rguenther@suse.de>
10581
10582 * gimple-walk.h (struct walk_stmt_info): Add stmt member.
10583 * gimple-walk.c (walk_gimple_op): Initialize it.
10584 (walk_gimple_asm): Set wi->is_lhs before each callback invocation.
10585 * tree-inline.c (remap_gimple_op_r): Set SSA_NAME_DEF_STMT when
10586 remapping SSA names of defs.
10587 (copy_bb): Remove walk over all SSA defs and SSA_NAME_DEF_STMT
10588 adjustment.
10589
10590 2016-04-18 Vladimir Makarov <vmakarov@redhat.com>
10591
10592 PR middle-end/70689
10593 * lra-constraints.c (equiv_substition_p): New.
10594 (process_alt_operands): Use it.
10595 (swap_operands): Swap it.
10596 (curr_insn_transform): Update it.
10597
10598 2016-04-18 Michael Matz <matz@suse.de>
10599
10600 * tree.h (TYPE_ALIGN, DECL_ALIGN): Return shifted amount.
10601 (SET_TYPE_ALIGN, SET_DECL_ALIGN): New.
10602 * tree-core.h (tree_type_common.align): Use bit-field.
10603 (tree_type_common.spare): New.
10604 (tree_decl_common.off_align): Make smaller.
10605 (tree_decl_common.align): Use bit-field.
10606
10607 * expr.c (expand_expr_addr_expr_1): Use SET_TYPE_ALIGN.
10608 * omp-low.c (install_var_field): Use SET_DECL_ALIGN.
10609 (scan_sharing_clauses): Ditto.
10610 (finish_taskreg_scan): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
10611 (omp_finish_file): Ditto.
10612 * stor-layout.c (do_type_align): Use SET_DECL_ALIGN.
10613 (layout_decl): Ditto.
10614 (relayout_decl): Ditto.
10615 (finalize_record_size): Use SET_TYPE_ALIGN.
10616 (finalize_type_size): Ditto.
10617 (finish_builtin_struct): Ditto.
10618 (layout_type): Ditto.
10619 (initialize_sizetypes): Ditto.
10620 * targhooks.c (std_gimplify_va_arg_expr): Use SET_TYPE_ALIGN.
10621 * tree-nested.c (insert_field_into_struct): Use SET_TYPE_ALIGN.
10622 (lookup_field_for_decl): Use SET_DECL_ALIGN.
10623 (get_chain_field): Ditto.
10624 (get_trampoline_type): Ditto.
10625 (get_nl_goto_field): Ditto.
10626 * tree-streamer-in.c (unpack_ts_decl_common_value_fields): Use
10627 SET_DECL_ALIGN.
10628 (unpack_ts_type_common_value_fields): Use SET_TYPE_ALIGN.
10629 * gimple-expr.c (copy_var_decl): Use SET_DECL_ALIGN.
10630 * tree.c (make_node_stat): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
10631 (build_qualified_type): Use SET_TYPE_ALIGN.
10632 (build_aligned_type, build_range_type_1): Ditto.
10633 (build_atomic_base): Ditto.
10634 (build_common_tree_nodes): Ditto.
10635 * cfgexpand.c (align_local_variable): Use SET_DECL_ALIGN.
10636 (expand_one_stack_var_at): Ditto.
10637 * coverage.c (build_var): Use SET_DECL_ALIGN.
10638 * except.c (init_eh): Ditto.
10639 * function.c (assign_parm_setup_block): Ditto.
10640 * symtab.c (increase_alignment_1): Ditto.
10641 * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Ditto.
10642 * tree-vect-stmts.c (ensure_base_align): Ditto.
10643 * varasm.c (align_variable): Ditto.
10644 (assemble_variable): Ditto.
10645 (build_constant_desc): Ditto.
10646 (output_constant_def_contents): Ditto.
10647
10648 * config/arm/arm.c (arm_relayout_function): Use SET_DECL_ALIGN.
10649 * config/avr/avr.c (avr_adjust_type_node): Use SET_TYPE_ALIGN.
10650 * config/mips/mips.c (mips_std_gimplify_va_arg_expr): Ditto.
10651 * config/msp430/msp430.c (msp430_gimplify_va_arg_expr): Ditto.
10652 * config/spu/spu.c (spu_build_builtin_va_list): Use SET_DECL_ALIGN.
10653
10654 2016-04-18 H.J. Lu <hongjiu.lu@intel.com>
10655
10656 PR target/70708
10657 * config/i386/sse.md (sse2_loadlpd): Accept load from "xm" and
10658 replace %vmovsd with "%vmovq".
10659 (vec_concatv2df): Likewise.
10660
10661 2016-04-18 Uros Bizjak <ubizjak@gmail.com>
10662
10663 * config/i386/mmx.md (*vec_extractv2sf_0): Use gen_lowpart.
10664 (*vec_extractv2si_0): Ditto.
10665 * config/i386/sse.md (*vec_extractv4sf_0): Ditto.
10666 (zero_extended_scalar_load_operand splitters): Ditto.
10667 (vec_extract splitters): Ditto.
10668 (*vec_extractv4si_0_zext): Ditto.
10669 (avx_<castmode><avxsizesuffix>_<castmode>): Use gen_lowpart
10670 and lowpart_subreg.
10671 (avx512f_<castmode><avxsizesuffix>_<castmode>): Ditto.
10672 (avx512f_<castmode><avxsizesuffix>_256<castmode>): Ditto.
10673 (*sse4_1_extractps): Use lowpart_subreg.
10674 * config/i386/i386.md (x87 floatsplitter): Use gen_lowpart.
10675
10676 2016-04-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10677
10678 * doc/install.texi (Specific, i?86-*-solaris2.10): Update gas and
10679 gld requirements.
10680 (Specific, *-*-solaris2*): Update Solaris 11 bundled gcc versions.
10681 Mention Solaris 11 packaging changes.
10682 Update gas and gld requirements.
10683 Remove reference to pre-Solaris 10 bug.
10684 (Specific, sparc-sun-solaris2*): Remove reference to pre-Solaris 10
10685 systems and bugs.
10686 (Specific, sparc64-*-solaris2*): Remove reference to bootstrap
10687 with cc.
10688
10689 2016-04-17 Jan Hubicka <jh@suse.cz>
10690
10691 * tree-ssa-loop-ivopts.c (avg_loop_niter): Use also
10692 max_loop_iterations_int.
10693
10694 2016-04-18 Richard Biener <rguenther@suse.de>
10695
10696 PR tree-optimization/43434
10697 * tree-ssa-structalias.c (struct vls_data): New.
10698 (visit_loadstore): Handle all pointer-based accesses.
10699 (compute_dependence_clique): Compute a bitmap of restrict tags
10700 assigned bases and pass it to visit_loadstore.
10701
10702 2016-04-18 Matthew Wahab <matthew.wahab@arm.com>
10703
10704 PR target/70711
10705 * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for armv8+crc,
10706 armv8.1-a and armv8.1-a+crc.
10707
10708 2016-04-18 Richard Biener <rguenther@suse.de>
10709
10710 PR tree-optimization/70701
10711 * tree-ssa-sccvn.c (vn_reference_lookup_3): Resolve fully constant
10712 references after translating through a memcpy.
10713
10714 2016-04-18 Richard Biener <rguenther@suse.de>
10715
10716 * tree-ssa-pre.c (postorder, postorder_num): Make locals ...
10717 (compute_antic): ... here. For partial antic use regular
10718 postorder and scrap iteration.
10719 (compute_partial_antic_aux): Remove unused return value.
10720 (init_pre): Do not allocate postorder.
10721 (fini_pre): Do not free postorder.
10722
10723 2016-04-18 Richard Biener <rguenther@suse.de>
10724
10725 PR middle-end/37870
10726 * expmed.c (extract_bit_field_1): Remove broken case
10727 using a wider MODE_INT mode.
10728
10729 2016-04-18 Segher Boessenkool <segher@kernel.crashing.org>
10730
10731 * has-brig.c (lendian16): Don't try to use __builtin_bswap16
10732 unless compiling with at least GCC-4.8.
10733
10734 2016-04-17 Jan Hubicka <jh@suse.cz>
10735
10736 PR bootstrap/70706
10737 * graphite.c (graphite_finalize): Update call to
10738 tree_estimate_probability.
10739 * predict.h (tree_estimate_probability): Update prototype.
10740
10741 2016-04-17 Jan Hubicka <jh@suse.cz>
10742
10743 * predict.c (combine_predictions_for_bb): Add dry_run parmaeter.
10744 (tree_estimate_probability): Likewise.
10745 (pass_profile::execute): Update.
10746 (report_predictor_hitrates): New function.
10747 * profile.c (compute_branch_probabilities): Use it.
10748 * predict.h (report_predictor_hitrates): Declare.
10749
10750 2016-04-17 Jan Hubicka <jh@suse.cz>
10751
10752 PR ipa/70018
10753 * cgraph.h (cgraph_node::set_const_flag,
10754 cgraph_node::set_pure_flag): Update prototype to return bool;
10755 update comment.
10756 * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases): Thunks
10757 of interposable symbol are interposable, too.
10758 (cgraph_set_const_flag_1): Rename to ...
10759 (set_const_flag_1): ... this one; change to self recursive function
10760 instead of call_for_symbol_thunks_and_aliases. Handle correctly
10761 clearnig the flag in all variants and also virtual thunks of const
10762 functions are pure; track if any change was done.
10763 (cgraph_node::set_const_flag): Update.
10764 (struct set_pure_flag_info): New struct.
10765 (cgraph_set_pure_flag_1): Rename to ...
10766 (set_pure_flag_1): ... this one; take set_pure_flag_info parameter
10767 rather than pointer encoded flags; track if any changes was done;
10768 handle correctly clearning flag and setting flag of aliases already
10769 declared const.
10770 (cgraph_node::set_pure_flag): Update.
10771 (cgraph_node::set_nothrow_flag): Handle correctly clearning the flag.
10772
10773 2016-04-17 Tom de Vries <tom@codesourcery.com>
10774
10775 PR other/70433
10776 * pretty-print.c (pp_write_text_as_dot_label_to_stream): Escape
10777 backslash in label.
10778
10779 2016-04-17 Tom de Vries <tom@codesourcery.com>
10780
10781 * pretty-print.c (pp_write_text_as_dot_label_to_stream): Classify chars
10782 '{}<> ' as escape-for-record.
10783
10784 2016-04-17 Tom de Vries <tom@codesourcery.com>
10785
10786 * pretty-print.c (pp_write_text_as_dot_label_to_stream): Simplify loop
10787 structure.
10788
10789 2016-04-17 Tom de Vries <tom@codesourcery.com>
10790
10791 PR other/70185
10792 * tree-pass.h (class opt_pass): Remove graph_dump_initialized member.
10793 * dumpfile.h (struct dump_file_info): Add graph_dump_initialized field.
10794 * dumpfile.c (dump_files): Initialize graph_dump_initialized field.
10795 * passes.c (finish_optimization_passes): Only call
10796 finish_graph_dump_file if dfi->graph_dump_initialized.
10797 (execute_function_dump, pass_init_dump_file): Use
10798 dfi->graph_dump_initialized instead of pass->graph_dump_initialized.
10799
10800 2016-04-17 Tom de Vries <tom@codesourcery.com>
10801
10802 PR tree-optimization/70256
10803 * tree-ssa-structalias.c (dump_varinfo, debug_varinfo, dump_varmap)
10804 (debug_varmap): New function.
10805
10806 2016-04-17 Tom de Vries <tom@codesourcery.com>
10807
10808 PR other/70183
10809 * passes.c (pass_manager::register_pass): Propagate pflags.
10810
10811 2016-04-17 Tom de Vries <tom@codesourcery.com>
10812
10813 PR other/68875
10814 * pass_manager.h (TERMINATE_PASS_LIST): Add pass argument.
10815 * passes.c (pass_manager::pass_manager): Declare and init p_start in
10816 INSERT_PASSES_AFTER. Add pass parameter to TERMINATE_PASS_LIST, and
10817 check if it's equal to p_start.
10818 * passes.def: Add arguments to TERMINATE_PASS_LISTs.
10819
10820 2016-04-15 Jan Hubicka <jh@suse.cz>
10821
10822 PR ipa/70018
10823 * cgraph.c (cgraph_set_const_flag_1): Only set as pure if
10824 function does not bind to current def.
10825 * ipa-pure-const.c (worse_state): Add FROM and TO parameters;
10826 handle conservatively calls to functions that does not need to bind
10827 to current def.
10828 (check_call): Update call of worse_state.
10829 (ignore_edge_for_nothrow): Update.
10830 (ignore_edge_for_pure_const): Likewise.
10831 (propagate_pure_const): Update calls to worse_state.
10832 (skip_function_for_local_pure_const): Reformat comments.
10833
10834 2016-04-15 Jan Hubicka <jh@suse.cz>
10835
10836 PR ipa/70018
10837 * cgraph.c (cgraph_node::get_availability): Add REF parameter.
10838 (cgraph_node::function_symbol): Likewise.
10839 (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
10840 * cgraph.h (symtab_node::get_availabbility): Add REF parameter.
10841 (symtab_node::ultimate_alias_target): Add REF parameter.
10842 (symtab_node::binds_to_current_def_p): Declare.
10843 (symtab_node;:ultimate_alias_target_1): Add REF parameter.
10844 (cgraph_node::function_symbol): Likewise.
10845 (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
10846 (cgraph_node::get_availability): Likewise.
10847 (cgraph_edge::binds_to_current_def_p): New inline function.
10848 (varpool_node::get_availability): Add REF parameter.
10849 (varpool_node::ultimate_alias_target): Likewise.
10850 * symtab.c (symtab_node::ultimate_alias_target_1): Likewise.
10851 (symtab_node::binds_to_current_def_p): Likewise.
10852 * varpool.c (varpool_node::get_availability): Likewise.
10853
10854 2016-04-15 Kirill Yukhin <kirill.yukhin@intel.com>
10855
10856 PR target/70662
10857 * config/i386/sse.md(define_insn "<avx512>_vec_dup<mode><mask_name>"):
10858 Fix mode size check.
10859
10860 2016-04-15 Jakub Jelinek <jakub@redhat.com>
10861
10862 * BASE-VER: Set to 7.0.0.
10863
10864 2016-04-15 Alexander Monakov <amonakov@ispras.ru>
10865
10866 * config/nvptx/nvptx.opt (moptimize): Add a period at end of help text.
10867
10868 2016-04-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
10869
10870 * doc/invoke.texi (ARM Options): Add note on deprecation of pre-ARMv4T
10871 architecture revisions.
10872
10873 2016-04-15 Bernd Schmidt <bschmidt@redhat.com>
10874
10875 * config/i386/i386-protos.h (ix86_using_red_zone): Declare.
10876 * config/i386/i386.c (ix86_using_red_zone): No longer static.
10877 * config/i386/i386.md (stack decrement to push peepholes): Guard
10878 with !x86_using_red_zone ().
10879
10880 2016-04-15 Jakub Jelinek <jakub@redhat.com>
10881
10882 PR c++/70675
10883 * tree-pretty-print.c (do_niy): Add FLAGS argument, pass it down
10884 to dump_generic_node.
10885 (NIY): Pass also flags to do_niy.
10886
10887 2016-04-15 Thomas Schwinge <thomas@codesourcery.com>
10888
10889 * omp-low.c (simd_clone_struct_alloc, simd_clone_struct_copy)
10890 (simd_clone_vector_of_formal_parm_types)
10891 (simd_clone_clauses_extract, simd_clone_compute_base_data_type)
10892 (simd_clone_mangle, simd_clone_create)
10893 (simd_clone_adjust_return_type, create_tmp_simd_array)
10894 (simd_clone_adjust_argument_types, simd_clone_init_simd_arrays)
10895 (struct modify_stmt_info, ipa_simd_modify_stmt_ops)
10896 (ipa_simd_modify_function_body, simd_clone_linear_addend)
10897 (simd_clone_adjust, expand_simd_clones, ipa_omp_simd_clone)
10898 (pass_data_omp_simd_clone, class pass_omp_simd_clone)
10899 (pass_omp_simd_clone::gate, make_pass_omp_simd_clone): Move into...
10900 * omp-simd-clone.c: ... this new file.
10901 (simd_clone_vector_of_formal_parm_types): Make it static.
10902 * Makefile.in (OBJS): Add omp-simd-clone.o.
10903
10904 2016-04-15 Kirill Yukhin <kirill.yukhin@intel.com>
10905
10906 PR target/70662
10907 * config/i386/sse.md: Use proper memory operand modifiers.
10908
10909
10910 2016-04-15 Richard Biener <rguenther@suse.de>
10911 Alan Modra <amodra@gmail.com>
10912
10913 PR tree-optimization/70130
10914 * tree-vect-data-refs.c (vect_supportable_dr_alignment): Detect
10915 when alignment stays not the same and no not use the realign
10916 scheme then.
10917
10918 2016-04-14 Michael Meissner <meissner@linux.vnet.ibm.com>
10919
10920 PR target/70669
10921 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Add
10922 direct move handlers for KFmode. Change TFmode handlers test from
10923 FLOAT128_IEEE_P to FLOAT128_VECTOR_P.
10924
10925 2016-04-14 Jakub Jelinek <jakub@redhat.com>
10926
10927 PR c++/70594
10928 * ipa-utils.h (polymorphic_ctor_dtor_p): New prototype.
10929 * ipa-polymorphic-call.c (polymorphic_ctor_dtor_p): New function.
10930 (inlined_polymorphic_ctor_dtor_block_p): Use it.
10931 * tree-ssa-live.c (remove_unused_scope_block_p): When
10932 in_ctor_dtor_block, avoid discarding not just BLOCKs with
10933 BLOCK_ABSTRACT_ORIGIN being FUNCTION_DECL, but even when
10934 block_ultimate_origin is FUNCTION_DECL.
10935 (remove_unused_locals): If current_function_decl is
10936 polymorphic_ctor_dtor_p, pass initial true to
10937 remove_unused_scope_block_p' is_ctor_dtor_block.
10938
10939 2016-04-14 Martin Sebor <msebor@redhat.com>
10940
10941 PR c++/69517
10942 PR c++/70019
10943 PR c++/70588
10944 * doc/extend.texi (Variable Length): Revert.
10945
10946 2016-04-14 Marek Polacek <polacek@redhat.com>
10947 Jan Hubicka <hubicka@ucw.cz>
10948
10949 PR c++/70029
10950 * tree.c (verify_type): Disable the canonical type of main variant
10951 check.
10952
10953 2016-04-14 Jason Merrill <jason@redhat.com>
10954
10955 * cfgexpand.c, expr.c: Revert previous change.
10956
10957 2016-04-14 Cesar Philippidis <cesar@codesourcery.com>
10958
10959 PR middle-end/70643
10960 * omp-low.c (lower_oacc_reductions): Check for TREE_CONSTANT
10961 when building a mem ref for the incoming reduction variable.
10962
10963 2016-04-14 Richard Biener <rguenther@suse.de>
10964
10965 PR tree-optimization/70614
10966 * tree-scalar-evolution.c (analyze_evolution_in_loop): Terminate
10967 loop if the evolution dropped to chrec_dont_know.
10968 (interpret_condition_phi): Likewise.
10969
10970 2016-04-14 Richard Biener <rguenther@suse.de>
10971
10972 PR tree-optimization/70623
10973 * tree-ssa-pre.c (changed_blocks): Make global ...
10974 (compute_antic): ... local here. Move and fix worklist
10975 handling here. Do not clear EDGE_DFS_BACK or call mark_dfs_back_edges.
10976 (compute_antic_aux): Add dumping for MAX assumed succs. Remove
10977 worklist handling, dump when ANTIC_IN changed.
10978 (compute_partial_antic_aux): Remove worklist handling.
10979 (init_pre): Do not compute post dominators. Add a comment about
10980 the CFG order chosen.
10981 (fini_pre): Do not free post dominators.
10982
10983 2016-04-13 Martin Sebor <msebor@redhat.com>
10984
10985 PR c++/69517
10986 PR c++/70019
10987 PR c++/70588
10988 * doc/extend.texi (Variable Length): Document C++ specifics.
10989
10990 2016-04-13 Jakub Jelinek <jakub@redhat.com>
10991
10992 PR c++/70641
10993 * ipa-pure-const.c (pass_nothrow::execute): Call maybe_clean_eh_stmt
10994 on all recursive call stmts. Return TODO_cleanup_cfg if any dead
10995 eh edges have been purged.
10996
10997 PR c++/70594
10998 * tree-sra.c (create_access_replacement,
10999 get_replaced_param_substitute): Set DECL_NAMELESS on repl if it
11000 gets fancy name.
11001 * tree-pretty-print.c (dump_fancy_name): New function.
11002 (dump_decl_name, dump_generic_node): Use it.
11003
11004 2016-04-13 Jason Merrill <jason@redhat.com>
11005
11006 * cfgexpand.c (pass_expand::execute): Handle attribute "abi warning".
11007 * expr.c (expand_expr_real_1): Likewise.
11008
11009 2016-04-13 Ilya Enkovich <ilya.enkovich@intel.com>
11010
11011 * config/i386/i386.md (kunpckhi): Swap operands.
11012 (kunpcksi): Likewise.
11013 (kunpckdi): Likewise.
11014 * config/i386/sse.md (vec_pack_trunc_qi): Likewise.
11015 (vec_pack_trunc_<mode>): Likewise.
11016
11017 2016-04-13 Jakub Jelinek <jakub@redhat.com>
11018
11019 PR debug/70628
11020 * explow.c (convert_memory_address_addr_space_1): Formatting fix.
11021
11022 PR middle-end/70633
11023 * gimplify.c (gimplify_init_constructor): Clear TREE_STATIC if
11024 gimplification turns some element into non-constant.
11025
11026 PR debug/70628
11027 * rtl.h (convert_memory_address_addr_space_1): New prototype.
11028 * explow.c (convert_memory_address_addr_space_1): No longer static,
11029 add NO_EMIT argument and don't call convert_modes if true, pass
11030 it down recursively, remove break after return.
11031 (convert_memory_address_addr_space): Adjust caller.
11032 * simplify-rtx.c (simplify_unary_operation_1): Call
11033 convert_memory_address_addr_space_1 instead of convert_memory_address,
11034 if it returns NULL, don't simplify.
11035
11036 2016-04-12 Eric Botcazou <ebotcazou@adacore.com>
11037
11038 PR target/70630
11039 * config/sparc/sparc.c (sparc_compute_frame_size): Add parentheses.
11040
11041 2016-04-12 Jakub Jelinek <jakub@redhat.com>
11042
11043 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
11044 Bump the upper SIMDLEN limits, so that if the return type or
11045 characteristic type if the return type is void can be passed in
11046 all available SSE2/AVX/AVX2/AVX512-F registers, the SIMDLEN is
11047 allowed.
11048
11049 2016-04-12 Michael Meissner <meissner@linux.vnet.ibm.com>
11050
11051 PR target/70640
11052 * config/rs6000/rs6000.md (ieee_128bit_vsx_neg<mode>2_internal):
11053 Do not use "=" constraint on an input constraint.
11054 (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
11055 (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
11056 (ieee_128bit_vsx_nabs<mode>2): Correct splitter so that it
11057 generates (neg (abs ...)) instead of (abs ...).
11058
11059 2016-04-12 Jakub Jelinek <jakub@redhat.com>
11060
11061 PR rtl-optimization/70596
11062 * lra-spills.c (spill_pseudos): Don't delete debug insns, instead
11063 just invalidate LRA data and reset them. Adjust dump wording.
11064
11065 2016-04-12 Martin Liska <mliska@suse.cz>
11066
11067 Revert
11068 2016-03-30 Jan Hubicka <hubicka@ucw.cz>
11069
11070 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
11071 estimates here.
11072 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
11073 max_loop_iterations_int.
11074 (tree_unswitch_outer_loop): Likewise.
11075 * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
11076 * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
11077
11078 2016-04-12 Tom de Vries <tom@codesourcery.com>
11079
11080 PR tree-optimization/68756
11081 * graphite-isl-ast-to-gimple.c (copy_cond_phi_args): Use new_expr
11082 instead of new_name.
11083
11084 2016-04-12 Jakub Jelinek <jakub@redhat.com>
11085
11086 PR tree-optimization/70602
11087 * tree-sra.c (generate_subtree_copies): Don't write anything into
11088 constant pool decls.
11089
11090 * omp-low.c (lower_omp_target): Use GOMP_MAP_FIRSTPRIVATE_INT
11091 regardless whether there are depend clauses or not.
11092
11093 2016-04-11 Michael Meissner <meissner@linux.vnet.ibm.com>
11094
11095 PR target/70381
11096 * config/rs6000/rs6000.c (rs6000_opt_masks): Disable using the
11097 target attribute and pragma from changing the -mfloat128
11098 and -mfloat128-hardware options.
11099
11100 * doc/extend.texi (Additional Floating Types): Document PowerPC
11101 __float128 restrictions.
11102
11103 2016-04-11 James Greenhalgh <james.greenhalgh@arm.com>
11104
11105 PR target/70133
11106 * config/aarch64/driver-aarch64.c
11107 (aarch64_get_extension_string_for_isa_flags): New.
11108 (arch_extension): Rename to...
11109 (aarch64_arch_extension): ...This.
11110 (ext_to_feat_string): Rename to...
11111 (aarch64_extensions): ...This.
11112 (aarch64_core_data): Keep track of architecture extension flags.
11113 (cpu_data): Rename to...
11114 (aarch64_cpu_data): ...This.
11115 (aarch64_arch_driver_info): Keep track of architecture extension
11116 flags.
11117 (get_arch_name_from_id): Rename to...
11118 (get_arch_from_id): ...This, change return type.
11119 (host_detect_local_cpu): Update and reformat for renames, handle
11120 extensions through common infrastructure.
11121
11122 2016-04-11 James Greenhalgh <james.greenhalgh@arm.com>
11123
11124 PR target/70133
11125 * config/aarch64/aarch64-common.c (aarch64_option_extension): Keep
11126 track of a canonical flag name.
11127 (all_extensions): Likewise.
11128 (arch_to_arch_name): Also track extension flags enabled by the arch.
11129 (all_architectures): Likewise.
11130 (aarch64_parse_extension): Move to here.
11131 (aarch64_get_extension_string_for_isa_flags): Take a new argument,
11132 rework.
11133 (aarch64_rewrite_selected_cpu): Update for above change.
11134 * config/aarch64/aarch64-option-extensions.def: Rework the way flags
11135 are handled, such that the single explicit value enabled by an
11136 extension is kept seperate from the implicit values it also enables.
11137 * config/aarch64/aarch64-protos.h (aarch64_parse_opt_result): Move
11138 to here.
11139 (aarch64_parse_extension): New.
11140 * config/aarch64/aarch64.c (aarch64_parse_opt_result): Move from
11141 here to config/aarch64/aarch64-protos.h.
11142 (aarch64_parse_extension): Move from here to
11143 common/config/aarch64/aarch64-common.c.
11144 (aarch64_option_print): Update.
11145 (aarch64_declare_function_name): Likewise.
11146 (aarch64_start_file): Likewise.
11147 * config/aarch64/driver-aarch64.c (arch_extension): Keep track of
11148 the canonical flag for extensions.
11149 * config.gcc (aarch64*-*-*): Extend regex for capturing extension
11150 flags.
11151
11152 2016-04-11 James Greenhalgh <james.greenhalgh@arm.com>
11153
11154 * config/aarch64/aarch64.h (AARCH64_FL_FOR_ARCH8_1): Also add
11155 AARCH64_FL_CRC.
11156
11157 2016-04-09 Tom de Vries <tom@codesourcery.com>
11158
11159 PR tree-optimization/68953
11160 * graphite-sese-to-poly.c (pdr_add_memory_accesses): Order accesses from
11161 first to last subscript.
11162
11163 2016-04-09 Jakub Jelinek <jakub@redhat.com>
11164
11165 PR tree-optimization/70586
11166 * tree-ssa-ifcombine.c (bb_no_side_effects_p): Return false
11167 for any calls.
11168
11169 2016-04-08 Cesar Philippidis <cesar@codesourcery.com>
11170
11171 PR lto/70289
11172 PR ipa/70348
11173 PR tree-optimization/70373
11174 PR middle-end/70533
11175 PR middle-end/70534
11176 PR middle-end/70535
11177 * gimplify.c (gimplify_adjust_omp_clauses): Add or adjust data
11178 clauses for acc parallel reductions as necessary. Error on those
11179 that are private.
11180 * omp-low.c (scan_sharing_clauses): Don't install variables which
11181 are used in acc parallel reductions.
11182 (lower_rec_input_clauses): Remove dead code.
11183 (lower_oacc_reductions): Add support for reference reductions.
11184 (lower_reduction_clauses): Remove dead code.
11185 (lower_omp_target): Don't remap variables appearing in acc parallel
11186 reductions.
11187 * tree.h (OMP_CLAUSE_MAP_IN_REDUCTION): New macro.
11188
11189 2016-04-08 Jakub Jelinek <jakub@redhat.com>
11190
11191 PR middle-end/70593
11192 * tree-ssa-coalesce.c (build_ssa_conflict_graph): For stmt
11193 with multiple SSA_NAME defs, force the outputs other than first
11194 to be live before calling live_track_process_def on each output.
11195
11196 PR rtl-optimization/70574
11197 * fwprop.c (forward_propagate_and_simplify): Don't add
11198 REG_EQUAL note if DF_REF_REG (use) is a paradoxical subreg.
11199 (try_fwprop_subst): Don't add REG_EQUAL note if there are any
11200 paradoxical subregs within *loc.
11201
11202 2016-04-08 Thomas Schwinge <thomas@codesourcery.com>
11203
11204 * config/arc/arc.h (LINK_COMMAND_SPEC): Use gt to ignore
11205 -ftree-parallelize-loops={0,1}.
11206 * config/darwin.h (LINK_COMMAND_SPEC_A): Likewise.
11207 * config/i386/mingw32.h (GOMP_SELF_SPECS): Likewise.
11208 * config/ia64/hpux.h (LIB_SPEC): Likewise.
11209 * config/pa/pa-hpux11.h (LIB_SPEC): Likewise.
11210 * config/pa/pa64-hpux.h (LIB_SPEC): Likewise.
11211
11212 2016-04-08 Maxim Ostapenko <m.ostapenko@samsung.com>
11213
11214 PR sanitizer/70541
11215 * asan.c (instrument_derefs): If we get unknown location, extract it
11216 with EXPR_LOCATION.
11217 (maybe_instrument_call): Instrument gimple_call's arguments if needed.
11218
11219 2016-04-08 Tom de Vries <tom@codesourcery.com>
11220
11221 * omp-low.c (lower_omp_target): Set TREE_NO_WARNING for oacc
11222 implicit firstprivate clause.
11223
11224 2016-04-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11225
11226 PR target/70566
11227 * config/arm/thumb2.md (tst + branch-> lsls + branch
11228 peephole below *orsi_not_shiftsi_si): Require that condition
11229 register is dead after the peephole.
11230 (second peephole after the above): Likewise.
11231
11232 2016-04-08 Alan Modra <amodra@gmail.com>
11233
11234 PR target/70117
11235 * builtins.c (fold_builtin_classify): For IBM extended precision,
11236 look at just the high-order double to test for NaN.
11237 (fold_builtin_interclass_mathfn): Similarly for Inf. For isnormal
11238 test just the high double for Inf but both doubles for subnormal
11239 limit.
11240
11241 2016-04-07 Jakub Jelinek <jakub@redhat.com>
11242
11243 * cgraph.h (struct cgraph_simd_clone): Add mask_mode field.
11244 * omp-low.c (simd_clone_init_simd_arrays, simd_clone_adjust): Handle
11245 node->simdclone->mask_mode != VOIDmode masks.
11246 (simd_clone_adjust_argument_types): Likewise. Move sc var definition
11247 earlier, use it instead of node->simdclone.
11248 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
11249 Set clonei->mask_mode.
11250
11251 2016-04-06 Patrick Palka <ppalka@gcc.gnu.org>
11252
11253 PR c/70436
11254 * parser.c (cp_parser_iteration_statement): New parameter IF_P.
11255 Pass it through to cp_parser_already_scoped_statement.
11256 (cp_parser_already_scoped_statement): New parameter IF_P. Pass
11257 it through to cp_parser_statement.
11258 (cp_parser_statement): Pass IF_P through to
11259 cp_parser_iteration_statement.
11260 (cp_parser_pragma): Adjust call to
11261 cp_parser_iteration_statement.
11262
11263 2016-04-06 Patrick Palka <ppalka@gcc.gnu.org>
11264
11265 PR c/70436
11266 * gimplify.c (gimplify_omp_ordered): Add explicit braces to
11267 resolve a future -Wparentheses warning.
11268 * omp-low.c (scan_sharing_clauses): Likewise.
11269 * tree-parloops.c (eliminate_local_variables): Likewise.
11270
11271 2016-04-06 Vladimir Makarov <vmakarov@redhat.com>
11272
11273 PR rtl-optimization/70398
11274 * lra-constraints.c (process_address_1): Check zero scale and code
11275 for reloading with zero scale.
11276
11277 2016-04-06 Uros Bizjak <ubizjak@gmail.com>
11278
11279 * config/i386/sse.md (shuffletype): Add V32HI and V4TI modes.
11280 (ssescalarsize): Add V8SF, V4SF, V4DF and V2DF modes.
11281
11282 2016-04-06 Jakub Jelinek <jakub@redhat.com>
11283
11284 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
11285 Add support for AVX512F clones, include them by default for
11286 exported OpenMP declare simd functions. For AVX2 allow simdlen 32
11287 and use it if charasteric type is 8-bit, for AVX512F allow simdlen
11288 up to 128.
11289
11290 PR middle-end/70550
11291 * tree.h (OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT): Define.
11292 * gimplify.c (gimplify_adjust_omp_clauses_1): Set it for implicit
11293 firstprivate clauses.
11294 * omp-low.c (lower_send_clauses): Set TREE_NO_WARNING for
11295 OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT !by_ref vars in task contexts.
11296 (lower_omp_target): Set TREE_NO_WARNING for
11297 non-addressable possibly uninitialized vars which are copied into
11298 addressable temporaries or copied for GOMP_MAP_FIRSTPRIVATE_INT.
11299
11300 2016-04-05 John David Anglin <danglin@gcc.gnu.org>
11301
11302 * config/pa/predicates.md (integer_store_memory_operand): Accept
11303 REG+D operands with a large offset when reload_in_progress is true.
11304 (floating_point_store_memory_operand): Likewise.
11305
11306 2016-04-05 Jakub Jelinek <jakub@redhat.com>
11307
11308 PR c++/70336
11309 * match.pd (nested int casts): Limit to GIMPLE.
11310
11311 2016-04-05 Jan Hubicka <hubicka@ucw.cz>
11312
11313 PR ipa/66223
11314 * ipa-devirt.c (maybe_record_node): Fix comment; use
11315 SANITIZE_UNREACHABLE instead of SANITIZE_UNDEFINED.
11316
11317 2016-04-05 Jakub Jelinek <jakub@redhat.com>
11318
11319 PR rtl-optimization/70542
11320 * ree.c (add_removable_extension): For VECTOR_MODE_P punt
11321 if there are any uses other than insn or debug insns.
11322
11323 2016-04-05 Marc Glisse <marc.glisse@inria.fr>
11324 Jakub Jelinek <jakub@redhat.com>
11325
11326 PR tree-optimization/70509
11327 * simplify-rtx.c (simplify_binary_operation_1) <case VEC_SELECT>:
11328 Shift HOST_WIDE_INT_1U instead of 1.
11329
11330 2016-04-05 Zdenek Sojka <zsojka@seznam.cz>
11331
11332 PR tree-optimization/70509
11333 * tree-ssa-forwprop.c (simplify_bitfield_ref): Use bitsize_int instead
11334 of the vector base type for index.
11335
11336 2016-04-05 Uros Bizjak <ubizjak@gmail.com>
11337
11338 PR target/70510
11339 * config/i386/sse.md (iptr): Add V64QI, V32HI, V16SI and V8DI modes.
11340
11341 2016-04-05 Richard Biener <rguenther@suse.de>
11342
11343 PR tree-optimization/70526
11344 * tree-sra.c (build_ref_for_offset): Use prev_base to
11345 extract the alias pointer type.
11346
11347 2016-04-05 Richard Biener <rguenther@suse.de>
11348
11349 * dse.c (struct store_info): Remove alias_set member.
11350 (struct read_info_type): Likewise.
11351 (clear_alias_group, clear_alias_mode_table, clear_alias_mode_holder,
11352 spill_deleted, clear_alias_set_lookup): Remove.
11353 (get_group_info): Remove dead base == NULL_RTX case.
11354 (dse_step0): Remove initialization of removed variables.
11355 (delete_dead_store_insn): Reomve alias set dumping.
11356 (free_read_records): Remove alias_set handling.
11357 (canon_address): Remove alias_set_out parameter.
11358 (record_store): Remove spill_alias_set, it's always zero.
11359 (check_mem_read_rtx): Likewise.
11360 (dse_step2): Rename from ...
11361 (dse_step2_nospill): ... this. Adjust.
11362 (scan_stores): Rename from ...
11363 (scan_stores_nospill): ... this.
11364 (scan_reads): Rename from ...
11365 (scan_reads_nospill): ... this.
11366 (scan_stores_spill, scan_reads_spill): Remove.
11367 (dse_step3_scan): Remove for_spills argument which is always false.
11368 (dse_step3): Likewise.
11369 (dse_step5): Rename from ...
11370 (dse_step5_nospill): ... this. Remove alias_set handling.
11371 (rest_of_handle_dse): Adjust.
11372
11373 2016-04-05 Jakub Jelinek <jakub@redhat.com>
11374
11375 PR target/70525
11376 * config/i386/sse.md (*andnot<mode>3): Simplify assertions.
11377 Use vpandn<ssemodesuffix> for V16SI/V8DImode, vpandnq for
11378 V32HI/V64QImode, don't use <mask_operand3_1>, fix up formatting.
11379 (*andnot<mode>3_mask): Remove insn with VI12_AVX512VL iterator.
11380
11381 2016-04-05 Richard Biener <rguenther@suse.de>
11382
11383 PR middle-end/70499
11384 * gimplify-me.c (gimple_regimplify_operands): Do not rewrite
11385 non-register type temporaries into SSA.
11386
11387 2016-04-04 Jan Hubicka <hubicka@ucw.cz>
11388
11389 PR ipa/66223
11390 * ipa-devirt.c (maybe_record_node): Do not optimize cxa_pure_virtual
11391 calls when sanitizing.
11392 (possible_polymorphic_call_target_p): Fix formatting.
11393
11394 2016-04-04 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
11395 Jakub Jelinek <jakub@redhat.com>
11396
11397 PR middle-end/70457
11398 * tree-inline.c (estimate_num_insn): Use gimple_call_builtin_p
11399 to ensure a call statement is compatible with a built-in's
11400 prototype.
11401 * tree-ssa-math-opts.c (pass_optimize_windening_mul::execute):
11402 Likewise.
11403
11404 2016-04-04 Richard Biener <rguenther@suse.de>
11405
11406 PR rtl-optimization/70484
11407 * rtl.h (canon_output_dependence): Declare.
11408 * alias.c (canon_output_dependence): New function.
11409 * dse.c (record_store): Use canon_output_dependence rather
11410 than canon_true_dependence.
11411
11412 2016-03-30 Jan Hubicka <hubicka@ucw.cz>
11413
11414 PR ipa/68881
11415 * cgraph.h (symtab_node::copy_visibility_from): New function.
11416 * symtab.c (symtab_node::copy_visibility_from): New function.
11417 * ipa-visibility.c (optimize_weakref): New function.
11418 (function_and_variable_visibility): Use it.
11419
11420 2016-04-04 Martin Liska <mliska@suse.cz>
11421
11422 PR hsa/70402
11423 * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Guard index
11424 value that is really in range handled by SBR instruction.
11425 * hsa-brig.c (emit_switch_insn): Do not emit unconditional jump.
11426 * hsa-dump.c (dump_hsa_insn_1): Do not dump default BB.
11427 * hsa.h (hsa_insn_sbr::m_default_bb): Remove field.
11428
11429 2016-04-03 Oleg Endo <olegendo@gcc.gnu.org>
11430
11431 PR target/70416
11432 PR target/67391
11433 * config/sh/sh.md (*addsi3): Allow pattern when reload_in_progress is
11434 set, but not for SP_REG operands.
11435
11436 2016-04-02 Martin Sebor <msebor@redhat.com>
11437
11438 PR c++/67376
11439 * fold-const.c (maybe_nonzero_address): New function.
11440 (fold_comparison): Call it. Fold equality and relational
11441 expressions involving null pointers.
11442 (tree_single_nonzero_warnv_p): Call maybe_nonzero_address.
11443
11444 2016-03-31 Evandro Menezes <e.menezes@samsung.com>
11445
11446 Fix the predicate "aarch64_simd_reg_or_zero" to correctly validate
11447 the "Y" constraint (scalar FP 0.0 immediate).
11448
11449 * config/aarch64/predicates.md (aarch64_simd_reg_or_zero):
11450 Add the "const_double" to the list of operand constraints.
11451
11452 2016-04-01 Jakub Jelinek <jakub@redhat.com>
11453
11454 PR rtl-optimization/70467
11455 * config/i386/i386.md (*add<dwi>3_doubleword, *sub<dwi>3_doubleword):
11456 If low word of the last operand is 0, just emit addition/subtraction
11457 for the high word.
11458
11459 2016-04-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
11460
11461 PR target/70404
11462 * config/s390/s390.c (s390_expand_insv): Check for everything
11463 constant instead of just VOIDmode stuff.
11464
11465 2016-04-01 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
11466
11467 PR target/70496
11468 * config/arm/arm.h (ASM_APP_OFF): Handle TARGET_ARM and TARGET_THUMB.
11469
11470 2016-04-01 Nathan Sidwell <nathan@acm.org>
11471
11472 * tree.def (TRY_CATCH_EXPR): Correct documentation.
11473
11474 2016-03-31 Vladimir Makarov <vmakarov@redhat.com>
11475
11476 PR rtl-optimization/70461
11477 * ira-color.c (allocno_copy_cost_saving): Use allocno class if it
11478 is necessary.
11479
11480 2016-03-31 Martin Liska <mliska@suse.cz>
11481
11482 PR hsa/70399
11483 * hsa-brig.c (hsa_op_immed::emit_to_buffer): Emit either
11484 a tree value or an immediate integer value to a buffer
11485 that is eventually copied to a BRIG section.
11486 (emit_immediate_operand): Call the function here.
11487 * hsa-dump.c (dump_hsa_immed): Remove checking assert.
11488 * hsa-gen.c (hsa_op_immed::hsa_op_immed): Remove initialization
11489 of class' fields that are removed.
11490 (hsa_op_immed::~hsa_op_immed): Remove deinitialization.
11491 * hsa.h (class hsa_op_immed): Remove m_brig_repr and
11492 m_brig_repr_size fields.
11493
11494 2016-03-31 Martin Liska <mliska@suse.cz>
11495
11496 PR hsa/70391
11497 * hsa-gen.c (hsa_function_representation::update_dominance): New
11498 function.
11499 (convert_addr_to_flat_segment): Likewise.
11500 (gen_hsa_memory_set): New alignment argument.
11501 (gen_hsa_ctor_assignment): Likewise.
11502 (gen_hsa_insns_for_single_assignment): Provide alignment
11503 to gen_hsa_ctor_assignment.
11504 (gen_hsa_insns_for_direct_call): Add new argument.
11505 (expand_lhs_of_string_op): New function.
11506 (expand_string_operation_builtin): Likewise.
11507 (expand_memory_copy): New function.
11508 (expand_memory_set): New function.
11509 (gen_hsa_insns_for_call): Use HOST_WIDE_INT.
11510 (convert_switch_statements): Change signature.
11511 (generate_hsa): Use a return value of the function.
11512 (pass_gen_hsail::execute): Do not call
11513 convert_switch_statements here.
11514 * hsa-regalloc.c (hsa_regalloc): Call update_dominance.
11515 * hsa.h (hsa_function_representation::m_modified_cfg): New flag.
11516 (hsa_function_representation::update_dominance): New function.
11517
11518 2016-03-31 Martin Liska <mliska@suse.cz>
11519
11520 PR hsa/70391
11521 * hsa-brig.c (emit_directive_variable): Emit alignment
11522 according to hsa_symbol::m_align.
11523 * hsa-dump.c (hsa_byte_alignment): Move the function to another file.
11524 (dump_hsa_symbol): Dump alignment of HSA symbols.
11525 * hsa-gen.c (get_symbol_for_decl): Set-up alignment of a symbol.
11526 (gen_hsa_addr_with_align): New function.
11527 (hsa_bitmemref_alignment): Use newly added function.
11528 (gen_hsa_insns_for_load): Likewise.
11529 (gen_hsa_insns_for_store): Likewise.
11530 (gen_hsa_memory_copy): New argument added.
11531 (gen_hsa_insns_for_single_assignment): Respect
11532 alignment for assignments processed via gen_hsa_memory_copy.
11533 (gen_hsa_insns_for_direct_call): Likewise.
11534 (gen_hsa_insns_for_return): Likewise.
11535 (gen_function_def_parameters): Set default alignment.
11536 * hsa.c (hsa_object_alignment): New function.
11537 (hsa_byte_alignment): Pasted function.
11538 * hsa.h (hsa_symbol::m_align): New field.
11539
11540 2016-03-31 Bin Cheng <bin.cheng@arm.com>
11541
11542 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Initialize
11543 scratch field for goto case.
11544
11545 2016-03-31 James Greenhalgh <james.greenhalgh@arm.com>
11546
11547 * config/arm/linux-elf.h (ASM_OUTPUT_DEF): Delete.
11548
11549 2016-03-31 Ilya Enkovich <enkovich.gnu@gmail.com>
11550
11551 PR target/70442
11552 * config/i386/i386.c (scalar_chain::convert_op): Fix description.
11553 (scalar_chain::convert_insn): Call convert_op for reg
11554 moves to handle undefined registers.
11555
11556 2016-03-31 Nathan Sidwell <nathan@acm.org>
11557
11558 PR c++/70393
11559 * varasm.c (output_constructor_regular_field): Flush bitfield earlier.
11560 Assert we don't want to move backwards.
11561
11562 2016-03-31 Kirill Yukhin <kirill.yukhin@intel.com>
11563
11564 PR target/70453
11565 * config/i386/sse.md (define_mode_attr shuffletype): Fix typo.
11566
11567 2016-03-31 Jakub Jelinek <jakub@redhat.com>
11568
11569 PR rtl-optimization/70460
11570 * ira.c (indirect_jump_optimize): Don't substitute LABEL_REF
11571 with operand from REG_LABEL_OPERAND, instead substitute
11572 SET_SRC or REG_EQUAL note content if it is a LABEL_REF.
11573 Don't do anything for REG_NON_LOCAL_GOTO jumps.
11574
11575 2016-03-31 Martin Liska <mliska@suse.cz>
11576
11577 * passes.c (execute_one_pass): Do not call
11578 todo_after for a discarded function.
11579
11580 2016-03-31 Bin Cheng <bin.cheng@arm.com>
11581
11582 * tree-ssa-loop-ivopts.c (struct comp_cost): New scrach field.
11583 (no_cost, infinite_cost): Initialize the new field.
11584 (get_computation_cost_at): Record setup cost.
11585 (determine_use_iv_cost_address): Skip cost computation for sub
11586 uses if we can estimate it without losing accuracy.
11587
11588 2016-03-30 Jan Hubicka <hubicka@ucw.cz>
11589
11590 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
11591 estimates here.
11592 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
11593 max_loop_iterations_int.
11594 (tree_unswitch_outer_loop): Likewise.
11595 * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
11596 * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
11597
11598 2016-03-30 Richard Biener <rguenther@suse.de>
11599
11600 PR middle-end/70450
11601 * fold-const.c (extract_muldiv_1): Fix thinko in wide_int::from usage.
11602
11603 2016-03-30 Jakub Jelinek <jakub@redhat.com>
11604
11605 PR target/70421
11606 * config/i386/i386.c (ix86_expand_vector_set): Fix up argument order
11607 in gen_blendm expander.
11608
11609 2016-03-30 Nick Clifton <nickc@redhat.com>
11610
11611 PR target/62254
11612 * config/arm/arm.c (arm_reload_out_hi): Add code to handle the
11613 case where we are already provided with an SImode SUBREG.
11614
11615 2016-03-30 H.J. Lu <hongjiu.lu@intel.com>
11616
11617 PR target/70439
11618 * config/i386/i386.c (ix86_expand_epilogue): Properly check
11619 conflict between DRAP register and __builtin_eh_return.
11620
11621 2016-03-30 Michael Matz <matz@suse.de>
11622 Richard Biener <rguenther@suse.de>
11623
11624 PR ipa/12392
11625 * ipa-polymorphic-call.c (struct type_change_info): Change
11626 speculative to an unsigned allowing to limit the work we do.
11627 (csftc_abort_walking_p): New inline function..
11628 (check_stmt_for_type_change): Limit the number of may-defs
11629 skipped for speculative devirtualization to
11630 max-speculative-devirt-maydefs.
11631 * params.def (max-speculative-devirt-maydefs): New param.
11632 * doc/invoke.texi (--param max-speculative-devirt-maydefs): Document.
11633
11634 2016-03-30 Mike Stump <mrs@gcc.gnu.org>
11635
11636 PR target/63890
11637 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use when profiling
11638 and TARGET_MACHO.
11639
11640 2016-03-30 Patrick Palka <ppalka@gcc.gnu.org>
11641
11642 PR tree-optimization/59124
11643 * tree-vrp.c (register_edge_assert_for_2): For NAME != CST1
11644 where NAME = A +- CST2 add the assertion A != (CST1 -+ CST2).
11645
11646 2016-03-29 Jeff Law <law@redhat.com>
11647
11648 * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in comment.
11649
11650 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
11651
11652 * tree-ssa-loop-ivcanon.c (try_peel_loop): Change type of peel
11653 to HOST_WIDE_INT.
11654
11655 2016-03-29 Thomas Schwinge <thomas@codesourcery.com>
11656
11657 * config/gnu.h (CPP_SPEC, LIB_SPEC): Don't override.
11658 * config/i386/gnu.h (STARTFILE_SPEC): Use gcrt1.o instead of
11659 gcrt0.o if linking dynamically.
11660
11661 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
11662
11663 PR ipa/70283
11664 * ipa-devirt.c (methods_equal_p): New function.
11665 (compare_virtual_tables): Use it.
11666 * cgraph.h (symbol_table::symbol_suffix_separator): Declare.
11667 * cgraphclones.c (clone_function_name_1): Use
11668 symbol_table::symbol_suffix_separator.
11669 * coverage.c (build_var): Likewise.
11670 * symtab.c (symbol_table::symbol_suffix_separator): New.
11671
11672 2016-03-29 Jakub Jelinek <jakub@redhat.com>
11673
11674 PR rtl-optimization/70429
11675 * combine.c (simplify_shift_const_1): For ASHIFTRT don't optimize
11676 (cst1 >> count) >> cst2 into (cst1 >> cst2) >> count if
11677 mode != result_mode.
11678
11679 PR c++/70353
11680 * tree-inline.c (remap_decls): Don't add_local_decl if cfun is null.
11681
11682 PR tree-optimization/70405
11683 * ssa-iterators.h (num_imm_uses): Add missing braces.
11684
11685 2016-03-29 Vladimir Makarov <vmakarov@redhat.com>
11686
11687 PR rtl-optimization/68695
11688 * ira-color.c (allocno_copy_cost_saving): New.
11689 (improve_allocation): Use it.
11690
11691 2016-03-29 Richard Henderson <rth@redhat.com>
11692
11693 PR middle-end/70355
11694 * lower-subreg.c (simplify_subreg_concatn): Reject paradoxical subregs.
11695
11696 2016-03-29 Richard Biener <rguenther@suse.de>
11697
11698 PR middle-end/70424
11699 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Always
11700 use alignment returned by get_pointer_alignment_1 if it is
11701 bigger than BITS_PER_UNIT.
11702 * builtins.c (get_pointer_alignment_1): Do not return true
11703 for alignment extracted from SSA info.
11704
11705 2016-03-28 James Bowman <james.bowman@ftdichip.com>
11706
11707 * config/ft32/ft32.opt (mnodiv): New.
11708 * config/ft32/ft32.md (*divsi3, *modsi3): Qualify with TARGET_NODIV.
11709 * doc/invoke.texi (FT32 Options -mnodiv): New.
11710
11711 2016-03-28 Kirill Yukhin <kirill.yukhin@intel.com>
11712
11713 PR target/70406
11714 * config/i386/i386.md (define_split, andn): Fix modes.
11715
11716 2016-03-26 Richard Biener <rguenther@suse.de>
11717 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
11718
11719 PR ipa/70366
11720 * ipa-inline-transform.c (inline_call): Pass opts_for_fn (to->decl)
11721 instead of
11722 TREE_OPTIMIZATION (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (to->decl))
11723 as 2nd argument to cl_optimization_restore().
11724
11725 2016-03-25 Richard Henderson <rth@redhat.com>
11726
11727 PR target/70120
11728 * config/aarch64/aarch64.c (aarch64_asm_output_pool_epilogue): New.
11729 * config/aarch64/aarch64-protos.h: Declare it.
11730 * config/aarch64/aarch64.h (ASM_OUTPUT_POOL_EPILOGUE): New.
11731
11732 2016-03-25 Alan Modra <amodra@gmail.com>
11733
11734 PR target/70052
11735 * config/rs6000/constraints.md (j): Simplify.
11736 * config/rs6000/predicates.md (easy_fp_constant): Exclude
11737 decimal float 0.D.
11738 * config/rs6000/rs6000.md (zero_fp): New mode_attr.
11739 (mov<mode>_hardfloat, mov<mode>_hardfloat32, mov<mode>_hardfloat64,
11740 mov<mode>_64bit_dm, mov<mode>_32bit): Use zero_fp in place of j
11741 in all constraint alternatives.
11742 (movtd_64bit_nodm): Delete "j" constraint alternative.
11743
11744 2016-03-24 Aldy Hernandez <aldyh@redhat.com>
11745
11746 * tree-ssa-propagate.c: Enhance docs for
11747 SSA_PROP_NOT_INTERESTING.
11748
11749 2016-03-24 Aldy Hernandez <aldyh@redhat.com>
11750
11751 * doc/extend.texi: Fix typo in documentation to pure attribute.
11752
11753 2016-03-24 John David Anglin <danglin@gcc.gnu.org>
11754
11755 PR target/70319
11756 * config/pa/pa.md (bswapdi2): Use a scratch register.
11757
11758 2016-03-24 Richard Henderson <rth@redhat.com>
11759
11760 PR middle-end/69845
11761 * fold-const.c (extract_muldiv_1): Correct test for multiplication
11762 overflow.
11763
11764 2016-03-24 Uros Bizjak <ubizjak@gmail.com>
11765
11766 * config/i386/i386.md (*anddi3_doubleword): Generate AND insn
11767 using ix86_expand_binary_operator instead of gen_andsi3.
11768
11769 2016-03-24 Richard Biener <rguenther@suse.de>
11770
11771 PR tree-optimization/70396
11772 * tree-vect-stmts.c (vectorizable_comparison): Use
11773 get_vectype_for_scalar_type.
11774
11775 2016-03-24 Richard Biener <rguenther@suse.de>
11776
11777 PR middle-end/70370
11778 * gimplify.c (gimplify_asm_expr): Handle !allows_mem outputs
11779 with register bases.
11780
11781 2016-03-24 Richard Biener <rguenther@suse.de>
11782
11783 PR tree-optimization/70372
11784 * tree-ssa-reassoc.c (eliminate_plus_minus_pair): Use
11785 build_all_ones_cst to also handle vector types correctly.
11786
11787 2016-03-23 Michael Meissner <meissner@linux.vnet.ibm.com>
11788
11789 PR target/70381
11790 * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Do not set
11791 -mfloat128 here.
11792
11793 2016-03-23 Marek Polacek <polacek@redhat.com>
11794
11795 PR c++/69884
11796 * doc/invoke.texi: Document -Wignored-attributes.
11797
11798 2016-03-23 Bin Cheng <bin.cheng@arm.com>
11799
11800 PR tree-optimization/69042
11801 * params.def (PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND): Increase the
11802 parameter from 30 to 40.
11803
11804 2016-03-23 Bin Cheng <bin.cheng@arm.com>
11805
11806 PR tree-optimization/69042
11807 * tree-ssa-loop-ivopts.c (add_iv_candidate_for_use): Add IV cand
11808 for use with constant offset stripped in base.
11809
11810 2016-03-23 Richard Biener <rguenther@suse.de>
11811
11812 PR middle-end/70251
11813 * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Adjust
11814 mode compatibility check.
11815 (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
11816
11817 2016-03-23 Jeff Law <law@redhat.com>
11818
11819 PR tree-optimization/64058
11820 * tree-ssa-coalesce.c (struct coalesce_pair): Add new field
11821 CONFLICT_COUNT.
11822 (struct ssa_conflicts): Move up earlier in the file.
11823 (conflicts_, var_map_): New static variables.
11824 (initialize_conflict_count): New function to initialize the
11825 CONFLICT_COUNT field for each conflict pair.
11826 (compare_pairs): Lazily initialize the conflict count and use it
11827 as the first tie-breaker.
11828 (sort_coalesce_list): Add new arguments conflicts, map. Initialize
11829 and wipe conflicts_ and map_ around the call to qsort. Remove
11830 special case for 2 coalesce pairs.
11831 * bitmap.c (bitmap_count_unique_bits): New function.
11832 (bitmap_count_bits_in_word): New function, extracted from
11833 bitmap_count_bits.
11834 (bitmap_count_bits): Use bitmap_count_bits_in_word.
11835 * bitmap.h (bitmap_count_unique_bits): Declare it.
11836
11837 2016-03-23 Ilya Enkovich <enkovich.gnu@gmail.com>
11838
11839 PR target/69917
11840 * config/i386/sol2.h (ASM_OUTPUT_DEF_FROM_DECLS): Follow
11841 transparent alias chain for decl assembler name.
11842 * config/sol2.c (solaris_assemble_visibility): Likewise.
11843
11844 2016-03-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11845
11846 * config/arm/arm1020e.md (1020call_op): Reduce reservation
11847 duration.
11848 (v10_fdivs): Likewise.
11849 (v10_fdivd): Likewise.
11850
11851 2016-03-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11852
11853 PR driver/70132
11854 * config/arm/driver-arm.c (host_detect_local_cpu): Reorder exit logic
11855 to not call fclose twice on file.
11856
11857 2016-03-23 Jakub Jelinek <jakub@redhat.com>
11858
11859 PR tree-optimization/70354
11860 * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
11861 oprnd0 is wider than oprnd1 and there is a cast from the wider
11862 type to oprnd1, mask it with the mask of the narrower type.
11863
11864 PR target/70321
11865 * config/i386/i386.md (*anddi3_doubleword, *<code>di3_doubleword):
11866 Optimize TARGET_STV splitters, if high or low word of last argument
11867 is 0 or -1.
11868
11869 2016-03-22 Jeff Law <law@redhat.com>
11870
11871 PR target/70232
11872 tree-ssa-threadbackward.c
11873 (fsm_find_control_statement_thread_paths): Correctly distinguish
11874 between old style jump threads vs FSM jump threads.
11875
11876 2016-03-22 Ilya Enkovich <enkovich.gnu@gmail.com>
11877
11878 PR target/70302
11879 * config/i386/i386.c (scalar_chain::convert_op): Support
11880 uninitialized register usage case.
11881
11882 2016-03-22 Richard Biener <rguenther@suse.de>
11883
11884 PR middle-end/70251
11885 * genmatch.c (gen_transform): Adjust last parameter to a three-state
11886 int...
11887 (capture::gen_transform): ... to change behavior when substituting
11888 a condition into cond or not-cond expr context.
11889 (dt_simplify::gen_1): Adjust.
11890 * gimple-match-head.c: Include gimplify.h for unshare_expr.
11891 * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Revert
11892 last change and instead change to
11893 A + (B vcmp C ? 1 : 0) -> A - (B vcmp C ? -1 : 0).
11894 (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
11895
11896 2016-03-22 Anthony Green <green@moxielogic.com>
11897
11898 * config/moxie/moxiebox.h (CC1_SPEC): Define. Fix endianness
11899 issue for moxiebox targets.
11900 (CC1PLUS_SPEC): Ditto.
11901
11902 2016-03-22 Richard Biener <rguenther@suse.de>
11903
11904 PR middle-end/70333
11905 * fold-const.c (extract_muldiv_1): Properly perform multiplication
11906 in the wide type.
11907
11908 2016-03-22 Kirill Yukhin <kirill.yukhin@intel.com>
11909
11910 * config/i386/i386.c (def_builtin): Remove duplicated functionality.
11911
11912 2016-03-22 Kirill Yukhin <kirill.yukhin@intel.com>
11913
11914 PR target/70325
11915 * config/i386/i386.c (def_builtin): Handle
11916 OPTION_MASK_ISA_AVX512VL to be and-ed with other
11917 bits.
11918 (const struct builtin_description bdesc_special_args[]):
11919 Remove duplicate ISA bits.
11920
11921 2016-03-22 Jakub Jelinek <jakub@redhat.com>
11922
11923 PR target/70329
11924 * config/i386/i386.c (ix86_expand_vecop_qihi): Don't bother computing
11925 d.perm[i] for i >= d.nelt. If not full_interleave, compute d.perm[i]
11926 in a way that works also for AVX512BW.
11927
11928 PR target/70300
11929 * config/i386/i386.md (cvtsd2ss splitter): Unpack in destination
11930 instead of source if operands[1] is xmm16 and above and
11931 !TARGET_AVX512VL. Use avx512f_vec_dupv16sf_1 instead of
11932 vec_interleave_lowv4sf if we need to unpack xmm16 and above.
11933
11934 PR c++/70295
11935 * gimplify.c (gimplify_modify_expr): Call gimple_set_no_warning
11936 on assign if (*from_p) is a comparison, set it to
11937 TREE_NO_WARNING (*from_p).
11938
11939 2016-03-21 Jakub Jelinek <jakub@redhat.com>
11940
11941 PR middle-end/70326
11942 * lra.c (restore_scratches): Ignore deleted insns.
11943
11944 2016-03-21 Marc Glisse <marc.glisse@inria.fr>
11945 Jakub Jelinek <jakub@redhat.com>
11946
11947 PR tree-optimization/70317
11948 * match.pd (cmp @0 @0): Pass @0 instead of TYPE_MODE (TREE_TYPE (@0))
11949 to HONOR_NANS.
11950
11951 2016-03-21 Uros Bizjak <ubizjak@gmail.com>
11952
11953 PR target/70327
11954 * config/i386/i386.md (movxi): Use ix86_expand_vector_move instead
11955 of ix86_expand_move.
11956 (movoi): Ditto.
11957 (movti): Use general_operand for operand 1 predicate.
11958
11959 2016-03-21 Martin Liska <mliska@suse.cz>
11960
11961 * hsa-dump.c (dump_hsa_insn_1): dump default branch of SBR
11962 insns.
11963 (dump_hsa_symbol): Dump BRIG offset of hsa_symbols.
11964
11965 2016-03-21 Martin Liska <mliska@suse.cz>
11966
11967 PR ipa/70306
11968 * ipa-icf.c (sem_function::parse): Skip static
11969 constructors and destructors.
11970
11971 2016-03-21 Jakub Jelinek <jakub@redhat.com>
11972
11973 PR target/70296
11974 * config/rs6000/rs6000-c.c (rs6000_macro_to_expand): If IDENT is
11975 function-like macro, peek following token(s) if it is followed
11976 by CPP_OPEN_PAREN token with optional padding in between, and
11977 if not, don't treat it like a macro.
11978
11979 2016-03-21 Thomas Schwinge <thomas@codesourcery.com>
11980 Alexander Monakov <amonakov@ispras.ru>
11981
11982 * config/nvptx/nvptx.c (nvptx_option_override): Don't emit sorry
11983 for the stabs debug format.
11984
11985 2016-03-21 Richard Biener <rguenther@suse.de>
11986
11987 PR tree-optimization/70310
11988 * tree-vect-generic.c (expand_vector_condition): Fold the built
11989 condition.
11990
11991 2016-03-21 Kirill Yukhin <kirill.yukhin@intel.com>
11992
11993 PR target/70293
11994 * config/i386/sse.md: (define_insn "*vec_dup<mode>"/AVX2):
11995 Block third alternative for AVX-512VL target,
11996
11997 2016-03-21 Martin Liska <mliska@suse.cz>
11998
11999 PR hsa/70234
12000 * hsa-brig.c (emit_function_directives): Mark unemitted
12001 global variables for emission.
12002 * hsa-gen.c (hsa_symbol::hsa_symbol): Initialize a new flag.
12003 (get_symbol_for_decl): Likewise.
12004 * hsa.h (struct hsa_symbol): New flag.
12005
12006 2016-03-21 Richard Biener <rguenther@suse.de>
12007
12008 PR tree-optimization/70288
12009 * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Make sure
12010 we do not estimate unsimplified all-constant conditionals or
12011 switches as optimized away.
12012
12013 2016-03-21 Andrey Belevantsev <abel@ispras.ru>
12014
12015 PR rtl-optimization/69102
12016 * sched-deps.c (sched_analyze_insn): Do not set last_args_size field
12017 when we have a readonly dependency context.
12018
12019 2016-03-18 Jeff Law <law@redhat.com>
12020
12021 PR rtl-optimization/70263
12022 * ira.c (memref_used_between_p): Assert we found END in the insn chain.
12023 (update_equiv_regs): When trying to move a store to after the insn
12024 that sets the source of the store, make sure the store occurs after
12025 the insn that sets the source of the store. When successful note
12026 the REG_EQUIV note created in the dump file.
12027
12028 2016-03-16 David Wohlferd <dw@LimeGreenSocks.com>
12029 Bernd Schmidt <bschmidt@redhat.com>
12030
12031 * doc/extend.texi: Document more potential problems with basic asms.
12032
12033 2016-03-18 Bernd Schmidt <bschmidt@redhat.com>
12034
12035 PR rtl-optimization/70278
12036 * lra-constraints.c (split_reg): Handle the case where biggest_mode is
12037 VOIDmode.
12038
12039 2016-03-18 Jason Merrill <jason@redhat.com>
12040
12041 * calls.c (load_register_parameters): Fix zero size sibcall logic.
12042
12043 2016-03-18 Kirill Yukhin <kirill.yukhin@intel.com>
12044
12045 * config/i386/sse.md: Use vpbroadcastq for broadcasting DF
12046 values to 128b regs.
12047
12048 2016-03-18 Ilya Enkovich <enkovich.gnu@gmail.com>
12049
12050 PR tree-optimization/70252
12051 * tree-vect-stmts.c (supportable_widening_operation): Check resulting
12052 boolean vector has a proper number of elements.
12053 (supportable_narrowing_operation): Likewise.
12054
12055 2016-03-18 Tom de Vries <tom@codesourcery.com>
12056
12057 PR ipa/70269
12058 * cgraph.c (cgraph_node::get_body): Set dump_file to NULL after save.
12059
12060 2016-03-18 Jakub Jelinek <jakub@redhat.com>
12061
12062 * reload1.c (emit_input_reload_insns): Use simplify_replace_rtx
12063 instead of replace_rtx for DEBUG_INSNs.
12064
12065 2016-03-18 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
12066
12067 * config/i386/znver1.md : Fix latencies of FP/SSE/AVX
12068 load type reservations.
12069
12070 2016-03-17 John David Anglin <danglin@gcc.gnu.org>
12071
12072 PR target/70188
12073 * config/pa/constraints.md: Revert 2015-02-13 change. Use
12074 define_constraint for "Q" and "T" constraints.
12075
12076 2016-03-17 Evandro Menezes <e.menezes@samsung.com>
12077
12078 Tweak the pipeline model for Exynos M1
12079
12080 * config/aarch64/aarch64.c (exynosm1_tunings): Enable weak prefetching
12081 model.
12082
12083 2016-03-17 David Malcolm <dmalcolm@redhat.com>
12084
12085 PR c/70264
12086 * diagnostic-show-locus.c (compatible_locations_p): Handle the case
12087 where one or both locations aren't within a line_map.
12088
12089 2016-03-17 H.J. Lu <hongjiu.lu@intel.com>
12090
12091 PR driver/70192
12092 * opts.c (finish_options): Don't set flag_pie to the default if
12093 -fpic, -fPIC, -fno-pic or -fno-PIC is used. Set flag_pic to 0
12094 if it is -1.
12095
12096 2016-03-17 Joern Rennecke <joern.rennecke@embecosm.com>
12097
12098 * config/i386/i386.md (*movv4qicc_insn+1..36): Pass
12099 true as ALL_REGS argument to replace_rtx.
12100
12101 2016-03-17 Richard Biener <rguenther@suse.de>
12102
12103 PR debug/70271
12104 * dwarf2out.c (dwarf2out_early_finish): Process deferred_asm_name
12105 last.
12106
12107 2016-03-17 Jakub Jelinek <jakub@redhat.com>
12108
12109 PR target/70245
12110 * rtl.h (replace_rtx): Add ALL_REGS argument.
12111 * rtlanal.c (replace_rtx): Likewise. If true, use REGNO
12112 equality and assert mode is the same, instead of just rtx pointer
12113 equality.
12114 * config/i386/i386.md (mov + arithmetics with load peephole): Pass
12115 true as ALL_REGS argument to replace_rtx.
12116
12117 2016-03-17 Ilya Enkovich <enkovich.gnu@gmail.com>
12118
12119 * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Apply
12120 for boolean vector with vector mode only.
12121 (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
12122
12123 2016-03-17 Nick Clifton <nickc@redhat.com>
12124
12125 PR target/70162
12126 * config/rx/rx.c (rx_print_integer): Print negative constants in
12127 decimal.
12128
12129 2016-03-17 Jakub Jelinek <jakub@redhat.com>
12130
12131 PR target/70261
12132 * rtlanal.c (replace_rtx): Revert 2016-03-16 change.
12133
12134 2016-03-16 Richard Henderson <rth@redhat.com>
12135 Richard Biener <rguenth@suse.de>
12136
12137 PR middle-end/70240
12138 PR middle-end/68215
12139 PR tree-opt/68714
12140 * gimplify.c (gimplify_expr) [VEC_COND_EXPR]: Gimplify the
12141 first operand as is_gimple_condexpr.
12142
12143 PR middle-end/70240
12144 PR middle-end/68215
12145 Revert r231575
12146 2015-12-11 Eric Botcazou <ebotcazou@adacore.com>
12147 * tree-vect-generic.c (tree_vec_extract): Remove GSI parameter.
12148 Do not gimplify the result.
12149 (do_unop): Adjust call to tree_vec_extract.
12150 (do_binop): Likewise.
12151 (do_compare): Likewise.
12152 (do_plus_minus): Likewise.
12153 (do_negate): Likewise.
12154 (expand_vector_condition): Likewise.
12155 (do_cond): Likewise.
12156
12157 2016-03-16 Richard Henderson <rth@redhat.com>
12158
12159 PR target/70048
12160 * config/aarch64/aarch64.c (virt_or_elim_regno_p): New.
12161 (aarch64_classify_address): Use it.
12162 (aarch64_legitimize_address): Force all subexpressions of PLUS
12163 into registers. Simplify as (sfp+const)+reg or (reg+reg)+const.
12164
12165 2016-03-16 Jakub Jelinek <jakub@redhat.com>
12166 Richard Biener <rguenth@suse.de>
12167
12168 PR target/70245
12169 * rtlanal.c (replace_rtx): For REG, if from is a REG,
12170 return to even if only REGNO is equal, and assert
12171 mode is the same.
12172
12173 2016-03-11 Jeff Law <law@redhat.com>
12174
12175 PR rtl-optimization/70224
12176 * reorg.c (relax_delay_slots): Pass right argument to CROSSING_JUMP_P.
12177
12178 2016-03-16 Richard Henderson <rth@redhat.com>
12179
12180 PR middle-end/70199
12181 * function.h (struct function): Add has_forced_label_in_static.
12182 * gimplify.c (force_labels_r): Set it.
12183 * lto-streamer-in.c (input_struct_function_base): Read it.
12184 * lto-streamer-out.c (output_struct_function_base): Write it.
12185 * tree-inline.c (has_label_address_in_static_1): Remove.
12186 (copy_forbidden): Remove fndecl parameter; test
12187 has_forced_label_in_static.
12188 (inline_forbidden_p): Update call to copy_forbidden.
12189 (tree_versionable_function_p): Likewise.
12190 * ipa-chkp.c (chkp_instrumentable_p): Likewise.
12191 (chkp_versioning): Likewise.
12192 * tree-inline.h (copy_forbidden): Update decl.
12193
12194 2016-03-16 Marek Polacek <polacek@redhat.com>
12195
12196 PR c/70093
12197 * cgraphunit.c (cgraph_node::expand_thunk): Also build call to the
12198 function being thunked if the result type doesn't have fixed size.
12199 * gimplify.c (gimplify_modify_expr): Also set LHS if the result type
12200 doesn't have fixed size.
12201
12202 2016-03-16 Bin Cheng <bin.cheng@arm.com>
12203
12204 * tree-vect-loop.c (vect_analyze_loop_2): Fix wrong dump info by
12205 reporting malformed loop nest.
12206
12207 2016-03-16 Tom de Vries <tom@codesourcery.com>
12208
12209 PR lto/70187
12210 * ipa-devirt.c (possible_polymorphic_call_targets): Move
12211 nodes.length () == 1 test to before first nodes[0] access.
12212
12213 2016-03-16 Tom de Vries <tom@codesourcery.com>
12214
12215 PR tree-optimization/68715
12216 * graphite-scop-detection.c (scop_detection::merge_sese): Add missing
12217 single_pred_p test.
12218
12219 2016-03-16 Tom de Vries <tom@codesourcery.com>
12220
12221 PR tree-optimization/68809
12222 * graphite-scop-detection.c (same_close_phi_node): Test if result types
12223 are the same.
12224
12225 2016-03-16 Carlos O'Donell <carlos@redhat.com>
12226 Sandra Loosemore <sandra@codesourcery.com>
12227
12228 * doc/extend.texi (Common Function Attributes): Describe ifunc impact
12229 on leaf attribute. Mention ELF interposition problems.
12230
12231 2016-03-16 Alan Modra <amodra@gmail.com>
12232
12233 PR rtl-optimization/69195
12234 PR rtl-optimization/47992
12235 * ira.c (indirect_jump_optimize): Ignore artificial defs.
12236 Add comments.
12237
12238 2016-03-15 Eric Botcazou <ebotcazou@adacore.com>
12239
12240 PR bootstrap/69513
12241 * dwarf2out.c (flush_limbo_die_list): Really flush the limbo list.
12242
12243 2016-03-15 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
12244
12245 * config/avr/avr.md (rotl<mode>3): Set mode for operand 2.
12246
12247 2016-03-15 Jakub Jelinek <jakub@redhat.com>
12248
12249 PR rtl-optimization/70222
12250 * combine.c (simplify_shift_const_1): For A >> B >> C LSHIFTRT
12251 optimization if mode is different from result_mode, queue up masking
12252 of the result in outer_op. Formatting fix.
12253
12254 PR middle-end/70239
12255 * tree-ssa-sccvn.c (VN_INFO_GET): Use safe_grow_cleared instead
12256 of safe_grow.
12257
12258 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
12259
12260 PR rtl-optimization/69032
12261 * sel-sched-ir.c (get_seqno_by_preds): Include both insn and head when
12262 looping backwards over basic block insns.
12263
12264 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
12265
12266 PR target/66660
12267 * sel-sched-ir.c (merge_expr): Avoid changing the speculative pattern
12268 to non-speculative when propagating trap bits.
12269
12270 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
12271
12272 PR rtl-optimization/63384
12273 * sel-sched.c (invoke_aftermath_hooks): Do not decrease issue_more on
12274 DEBUG_INSN_P insns.
12275
12276 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
12277
12278 PR target/64411
12279 * sched-deps.c (get_implicit_reg_pending_clobbers): New function,
12280 factored out from ...
12281 (sched_analyze_insn): ... here.
12282 * sched-int.h (get_implicit_reg_pending_clobbers): Declare it.
12283 * sel-sched-ir.c (setup_id_implicit_regs): New function, use
12284 get_implicit_reg_pending_clobbers in it.
12285 (setup_id_reg_sets): Use setup_id_implicit_regs.
12286 (deps_init_id): Ditto.
12287
12288 2016-03-15 Tom de Vries <tom@codesourcery.com>
12289
12290 PR ipa/70161
12291 * cgraph.c (cgraph_node::get_body): Save, reset and restore
12292 dump_file_name.
12293 * passes.c (execute_one_ipa_transform_pass): Add missing argument to
12294 execute_function_dump.
12295 (execute_one_pass): Don't dump function if it will be dumped after ipa
12296 transform.
12297
12298 2016-03-15 Segher Boessenkool <segher@kernel.crashing.org>
12299
12300 * genrecog.c (match_pattern_2): If pred is NULL don't call
12301 safe_predicate_mode on it.
12302
12303 2016-03-14 Jakub Jelinek <jakub@redhat.com>
12304
12305 PR middle-end/70219
12306 * lra-constraints.c (delete_move_and_clobber): Change assertion
12307 to also allow dregno == 0.
12308
12309 2016-03-14 Richard Henderson <rth@redhat.com>
12310
12311 PR tree-opt/68714
12312 * tree-ssa-reassoc.c (ovce_extract_ops, optimize_vec_cond_expr): New.
12313 (can_reassociate_p): Allow ANY_INTEGRAL_TYPE_P.
12314 (reassociate_bb): Use optimize_vec_cond_expr; avoid
12315 optimize_range_tests, attempt_builtin_copysign and attempt_builtin_powi
12316 on vectors.
12317
12318 2016-03-14 Bernd Schmidt <bschmidt@redhat.com>
12319
12320 PR target/70083
12321 * lra-lives.c (process_bb_lives): Also update biggest mode for hard
12322 regs.
12323 (lra_create_live_ranges_1): initialize hard register biggest_mode to
12324 VOIDmode.
12325 * lra-constraints.c (split_reg): For hard regs, try to find the
12326 biggest single-register mode used in the function.
12327
12328 2016-03-14 Richard Biener <rguenther@suse.de>
12329
12330 PR tree-optimization/56365
12331 * tree-ssa-phiopt.c (minmax_replacement): Handle alternate
12332 constants to compare against.
12333
12334 2016-03-14 Segher Boessenkool <segher@kernel.crashing.org>
12335
12336 PR target/70098
12337 * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
12338 *ctr<mode>_internal5, *ctr<mode>_internal6): Also allow "d" as output.
12339 (define_split for the GPR case): Use int_reg_operand instead of
12340 gpc_reg_operand for the output.
12341
12342 2016-03-14 Tom de Vries <tom@codesourcery.com>
12343
12344 PR tree-optimization/70045
12345 * graphite-isl-ast-to-gimple.c (graphite_create_new_loop_guard): Unshare
12346 create_empty_if_region_on_edge argument.
12347
12348 2016-03-13 Eric Botcazou <ebotcazou@adacore.com>
12349
12350 * config/arm/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Define.
12351 (STACK_CHECK_PROTECT): Likewise.
12352 * config/i386/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
12353 (STACK_CHECK_PROTECT): Likewise.
12354 * config/rs6000/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
12355 (STACK_CHECK_PROTECT): Likewise.
12356 * config/rs6000/vxworksae.h (STACK_CHECK_PROTECT): Likewise.
12357 * config/sparc/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
12358 (STACK_CHECK_PROTECT): Likewise.
12359
12360 2016-03-12 Andrey Belevantsev <abel@ispras.ru>
12361
12362 PR rtl-optimization/69307
12363 * sel-sched.c (choose_best_pseudo_reg): Properly check for hard
12364 registers in modes that span more than one register.
12365
12366 2016-03-12 Vladimir Makarov <vmakarov@redhat.com>
12367
12368 PR target/69614
12369 * lra-constraints.c (delete_move_and_clobber): New.
12370 (remove_inheritance_pseudos): Use it.
12371
12372 2016-03-12 Eric Botcazou <ebotcazou@adacore.com>
12373
12374 PR ada/70017
12375 * calls.c (emit_library_call_value_1): Clear the ECF_NOTHROW flag if
12376 the libcall is LCT_THROW.
12377 * explow.c (probe_stack_range): Pass LCT_THROW to emit_library_call
12378 for the checking routine.
12379
12380 2016-03-11 Michael Meissner <meissner@linux.vnet.ibm.com>
12381
12382 PR target/70131
12383 * config/rs6000/rs6000.md (round32<mode>2_fprs): Do not do the
12384 optimization if we have direct move.
12385 (roundu32<mode>2_fprs): Likewise.
12386
12387 2016-03-11 Bernd Schmidt <bschmidt@redhat.com>
12388
12389 PR target/70123
12390 * lra-remat.c (operand_to_remat): Disallow hard regs in the value t
12391 be rematerialized.
12392 (reg_overlap_for_remat_p): Renamed from input_regno_present_p.
12393 Arguments swapped. All callers changed. Take reg_renumber into
12394 account, and Calculate and compare register ranges for hard regs.
12395
12396 2016-03-11 Jeff Law <law@redhat.com>
12397
12398 PR tree-optimization/70190
12399 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
12400 Handle cases where we can not extract the taken edge, even though we
12401 found a constant value.
12402
12403 PR tree-optimization/64058
12404 * tree-ssa-coalesce.c (struct coalesce_pair): Add new field INDEX.
12405 (num_coalesce_pairs): Move up earlier in file.
12406 (find_coalesce_pair): Initialize the INDEX field for each pair
12407 discovered.
12408 (compare_pairs): No longer sort on the elements in each pair.
12409 Instead break ties with the index of the coalesce pair.
12410
12411 2016-03-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12412
12413 PR target/70002
12414 * config/aarch64/aarch64-protos.h
12415 (aarch64_save_restore_target_globals): New prototype.
12416 * config/aarch64/aarch64-c.c (aarch64_pragma_target_parse):
12417 Call the above when popping pragma.
12418 * config/aarch64/aarch64.c (aarch64_save_restore_target_globals):
12419 New function.
12420 (aarch64_set_current_function): Rewrite using the above.
12421
12422 2016-03-11 Jakub Jelinek <jakub@redhat.com>
12423
12424 PR tree-optimization/70177
12425 * gimple-expr.h (extract_ops_from_tree_1): Renamed to ...
12426 (extract_ops_from_tree): ... this. In the 2 argument
12427 overload remove _1 suffix.
12428 * gimple-expr.c (extract_ops_from_tree_1): Renamed to ...
12429 (extract_ops_from_tree): ... this.
12430 * gimple.c (gimple_build_assign, gimple_assign_set_rhs_from_tree):
12431 Adjust callers.
12432 * tree-ssa-loop-niter.c (derive_constant_upper_bound): Likewise.
12433 * tree-ssa-forwprop.c (defcodefor_name): Call 3 operand
12434 extract_ops_from_tree instead of 2 operand one.
12435
12436 2016-03-11 Alan Lawrence <alan.lawrence@arm.com>
12437
12438 PR tree-optimization/70013
12439 * tree-sra.c (analyze_access_subtree): Also set grp_unscalarized_data
12440 for constant-pool entries.
12441
12442 2016-03-11 Jakub Jelinek <jakub@redhat.com>
12443
12444 PR rtl-optimization/70174
12445 * expmed.c (store_bit_field_using_insv): Use gen_lowpart_if_possible
12446 followed by gen_lowpart on force_reg instead of just gen_lowpart.
12447
12448 PR tree-optimization/70169
12449 * tree-ssa-loop.c (gen_lsm_tmp_name): Handle FUNCTION_DECL and
12450 LABEL_DECL like VAR_DECL. Emit nothing instead of gcc_unreachable
12451 for unknown codes.
12452
12453 2016-03-11 Ilya Enkovich <enkovich.gnu@gmail.com>
12454 Jakub Jelinek <jakub@redhat.com>
12455
12456 PR target/70160
12457 * config/i386/i386.c (scalar_chain::convert_reg): Skip uses
12458 of uninitialized values.
12459
12460 2016-03-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
12461
12462 * config/s390/s390.md ("trunctddd2"): Turn former define_insn into
12463 define_expand.
12464 ("*trunctddd2"): New pattern definition.
12465 ("trunctdsd2"): Set prep_for_short_prec rounding mode for the
12466 TD->DD truncation.
12467
12468 2016-03-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
12469
12470 * config/s390/s390.md (BFP_RND_*, DFP_RND_*): Add new constant
12471 definitions for BFP and DFP rounding modes.
12472 ("fixuns_truncdddi2", "fixuns_trunctddi2")
12473 ("fixuns_trunc<BFP:mode><GPR:mode>2", "fixuns_trunc<mode>si2")
12474 ("fix_trunc<DSF:mode><GPR:mode>2", "fix_trunc<mode>di2")
12475 ("fix_trunctf<mode>2"): Use the new constants instead of magic
12476 numbers.
12477
12478 2016-03-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
12479
12480 * config/s390/constraints.md: Adjust comment.
12481 ("Y"): Adjust comment. Rename s390_decompose_shift_count to
12482 s390_decompose_addrstyle_without_index.
12483 * config/s390/predicates.md (shift_count_or_setmem_operand):
12484 Rename to setmem_operand.
12485 * config/s390/s390-protos.h
12486 (s390_decompose_shift_count): Rename to
12487 s390_decompose_addrstyle_without_index.
12488 * config/s390/s390.c (s390_decompose_shift_count)
12489 (s390_mem_constraint, print_shift_count_operand)
12490 (print_operand_address, print_operand): Rename
12491 s390_decompose_shift_count to
12492 s390_decompose_addrstyle_without_index and rename
12493 print_shift_count_operand to print_addrstyle_operand troughout the
12494 file.
12495 * config/s390/s390.md ("setmem_long_<P:mode>", "*setmem_long")
12496 ("*setmem_long_and", "*setmem_long_31z", "*setmem_long_and_31z"):
12497 Rename shift_count_or_setmem_operand to setmem_operand.
12498 * config/s390/vx-builtins.md ("vec_insert<mode>")
12499 ("vec_promote<mode>"): Replace shift_count_or_setmem_operand with
12500 nonmemory_operand.
12501
12502 2016-03-10 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
12503
12504 PR target/70168
12505 * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
12506 Handle overlapping retval and newval.
12507
12508 2016-03-10 Nick Clifton <nickc@redhat.com>
12509
12510 PR target/7044
12511 * config/aarch64/aarch64.c
12512 (aarch64_override_options_after_change_1): When forcing
12513 flag_omit_frame_pointer to be true, use a special value that can
12514 be detected if this function is called again, thus preventing
12515 flag_omit_leaf_frame_pointer from being forced to be false.
12516
12517 2016-03-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12518
12519 * common/config/aarch64/aarch64-common.c (aarch64_handle_option):
12520 Set x_flag_omit_leaf_frame_pointer when handling
12521 -momit-leaf-frame-pointer.
12522
12523 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
12524
12525 PR lto/69589
12526 * cgraph.c (cgraph_node::dump): Dump split_part and
12527 indirect_call_target.
12528 * cgraph.h (cgraph_node): Add indirect_call_target flag.
12529 * ipa.c (has_addr_references_p): Cleanup.
12530 (is_indirect_call_target_p): New.
12531 (walk_polymorphic_call_targets): Do not mark virtuals that may be
12532 called indirectly as local.
12533 (symbol_table::remove_unreachable_nodes): Compute indirect_call_target.
12534
12535 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
12536
12537 PR ipa/69630
12538 * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
12539 on cxa_pure_virtual.
12540
12541 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
12542
12543 PR lto/69589
12544 * tree.c (free_lang_data_in_decl): Clear visibility of TYPE_DECL.
12545
12546 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
12547
12548 PR lto/69589
12549 * tree.c (need_assembler_name_p): Only record main variant type names.
12550
12551 2016-03-10 Christophe Lyon <christophe.lyon@linaro.org>
12552
12553 PR target/70113.
12554 * config/aarch64/aarch64.h (TARGET_FIX_ERR_A53_843419_DEFAULT):
12555 Always define to 0 or 1.
12556 (TARGET_FIX_ERR_A53_843419): New macro.
12557 * config/aarch64/aarch64-elf-raw.h
12558 (TARGET_FIX_ERR_A53_843419_DEFAULT): Update for above changes.
12559 * config/aarch64/aarch64-linux.h: Likewise.
12560 * config/aarch64/aarch64.c
12561 (aarch64_override_options_after_change_1): Do not default
12562 aarch64_nopcrelative_literal_loads to true if Cortex-A53 erratum
12563 843419 is on.
12564 (aarch64_attributes): Handle fix-cortex-a53-843419.
12565 (aarch64_can_inline_p): Likewise.
12566 * config/aarch64/aarch64.opt (aarch64_fix_a53_err843419): Save.
12567
12568 2016-03-10 Alan Lawrence <alan.lawrence@arm.com>
12569 Jakub Jelinek <jakub@redhat.com>
12570
12571 * common.opt (funconstrained-commons, flag_unconstrained_commons): New.
12572 * tree.c (array_at_struct_end_p): Do not limit to size of decl for
12573 DECL_COMMONS if flag_unconstrained_commons is set.
12574 * tree-dfa.c (get_ref_base_and_extent): Likewise.
12575 * doc/invoke.texi (Optimize Options): Add -funconstrained-commons.
12576 (funconstrained-commons): Document.
12577
12578 2016-03-10 Christophe Lyon <christophe.lyon@linaro.org>
12579
12580 * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add
12581 aarch64-fusion-pairs.def and aarch64-tuning-flags.def
12582
12583 2016-03-10 Ilya Enkovich <enkovich.gnu@gmail.com>
12584
12585 * tree-vect-stmts.c (vectorizable_mask_load_store): Check mask
12586 has a proper number of elements.
12587
12588 2016-03-10 Alan Modra <amodra@gmail.com>
12589
12590 PR rtl-optimization/69195
12591 PR rtl-optimization/47992
12592 * ira.c (recorded_label_ref): Delete.
12593 (update_equiv_regs): Return void.
12594 (indirect_jump_optimize): New function.
12595 (ira): Call indirect_jump_optimize and delete_trivially_dead_insns
12596 before regstat_compute_ri. Don't rebuild_jump_labels here.
12597 Delete update_regstat.
12598
12599 2016-03-10 Richard Biener <rguenther@suse.de>
12600
12601 PR tree-optimization/70128
12602 * tree-ssa-structalias.c (set_uids_in_ptset): Set
12603 vars_contains_nonlocal for any FUNCTION_DECL or LABEL_DECL.
12604
12605 2016-03-09 Jakub Jelinek <jakub@redhat.com>
12606
12607 PR tree-optimization/70152
12608 * tree-sra.c (replace_removed_params_ssa_names): Copy over
12609 SSA_NAME_OCCURS_IN_ABNORMAL_PHI from old_name to new_name.
12610
12611 PR target/70086
12612 * config/i386/i386.md (truncdfsf2 splitter): Use gen_vec_concatv2df
12613 instead of gen_sse2_loadlpd.
12614 * config/i386/sse.md (*vec_concatv2df): Rename to...
12615 (vec_concatv2df): ... this.
12616
12617 PR tree-optimization/70127
12618 * fold-const.c (operand_equal_p): Revert the 2015-10-28 change.
12619
12620 2016-03-09 David Malcolm <dmalcolm@redhat.com>
12621
12622 PR c/68473
12623 PR c++/70105
12624 * diagnostic-show-locus.c (compatible_locations_p): New function.
12625 (layout::layout): Sanitize ranges using compatible_locations_p.
12626
12627 2016-03-09 David Malcolm <dmalcolm@redhat.com>
12628
12629 PR c/68473
12630 PR c++/70105
12631 * diagnostic-show-locus.c (layout_range::layout_range): Replace
12632 location_range param with three const expanded_locations * and a
12633 bool.
12634 (layout::layout): Replace call to
12635 rich_location::lazily_expand_location with get_expanded_location.
12636 Extract the range and perform location expansion here, passing
12637 the results to the layout_range ctor.
12638 * diagnostic.c (source_range::debug): Delete.
12639 * diagnostic.h (diagnostic_expand_location): Reimplement in terms
12640 of rich_location::get_expanded_location.
12641 * gcc-rich-location.c (get_range_for_expr): Delete.
12642 (gcc_rich_location::add_expr): Reimplement to avoid the
12643 rich_location::add_range overload that took a location_range,
12644 passing a location_t instead.
12645
12646 2016-03-09 Richard Biener <rguenther@suse.de>
12647 Jakub Jelinek <jakub@redhat.com>
12648
12649 PR tree-optimization/70138
12650 * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer):
12651 Also skip vect_double_reduction_def.
12652
12653 2016-03-09 Jakub Jelinek <jakub@redhat.com>
12654
12655 PR target/70049
12656 * config/i386/sse.md (*vec_extract<mode>): Use %0 instead of %k0
12657 if the operand is "m".
12658
12659 2016-03-09 Nathan Sidwell <nathan@acm.org>
12660
12661 * config/nvptx/nvptx.c (nvptx_option_override): Don't kill debug level.
12662
12663 2016-03-09 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
12664
12665 * config/i386/i386.c (processor_target_table): Fix cost table
12666 intialization order for znver1.
12667
12668 2016-03-08 Jakub Jelinek <jakub@redhat.com>
12669
12670 * ipa-polymorphic-call.c (walk_ssa_copies): Fix spelling
12671 - becuase -> because.
12672 * ipa-reference.c (ignore_module_statics): Likewise.
12673 * cgraph.c (cgraph_node::get_body): Likewise.
12674 * ipa-inline.c (early_inliner): Likewise.
12675 * ipa-devirt.c (types_same_for_odr): Likewise.
12676 * tree-streamer-out.c (pack_ts_type_common_value_fields): Likewise.
12677 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Likewise.
12678
12679 2016-03-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12680
12681 * tree-ssa-math-opts.c: Fix typo in comment.
12682
12683 2016-03-08 Jakub Jelinek <jakub@redhat.com>
12684
12685 PR target/70110
12686 * config/i386/i386.c (scalar_chain::make_vector_copies,
12687 scalar_chain::convert_reg): Call end_sequence in between
12688 get_insns and emit_conversion_insns rather than after both
12689 calls.
12690
12691 2016-03-07 Uros Bizjak <ubizjak@gmail.com>
12692
12693 PR target/70064
12694 * config/i386/i386.h (machine_function): Add
12695 pc_thunk_call_expanded flag.
12696 (ix86_pc_thunk_call_expanded): New define.
12697 * config/i386/i386.md (set_got, set_got_labelled): New expanders.
12698 (*set_got): Rename insn pattern from set_got.
12699 (*set_got_labelled): Rename inst pattern from set_got_labelled.
12700 * config/i386/i386.c (ix86_compute_frame_layout): Use
12701 ix86_pc_thunk_call_expanded to prevent red-zone.
12702
12703 2016-03-07 Martin Jambor <mjambor@suse.cz>
12704
12705 * hsa.h (hsa_get_ctor_statements): Declare.
12706 (hsa_get_dtor_statements): Likewise.
12707 (hsa_get_kernel_dispatch_type): Likewise.
12708 * hsa.c (hsa_get_ctor_statements): New function.
12709 (hsa_get_dtor_statements): Likewise.
12710 (hsa_get_kernel_dispatch_type): Likewise.
12711 * hsa-brig.c (hsa_cdtor_statements): Removed.
12712 (hsa_output_libgomp_mapping): Use hsa_get_ctor_statements and
12713 hsa_get_dtor_statements.
12714 * hsa-gen.c (hsa_kernel_dispatch_type): Removed.
12715 (get_hsa_kernel_dispatch_offset): Use hsa_get_kernel_dispatch_type.
12716
12717 2016-03-07 Andre Vieira <andre.simoesdiasvieira@arm.com>
12718
12719 * config/arm/arm-cores.def (cortex-r8): New.
12720 * config/arm/arm-tables.opt (cortex-r8): Regenerate.
12721 * config/arm/arm-tune.md: Likewise.
12722 * doc/invoke.texi: Add cortex-r8 to list of cpu values.
12723
12724 2016-03-07 Martin Sebor <msebor@redhat.com>
12725
12726 PR rtl-optimization/19705
12727 * doc/invoke.texi (Options That Control Optimization): Clarify
12728 -fno-branch-count-reg.
12729
12730 2016-02-26 Richard Biener <rguenther@suse.de>
12731 Jeff Law <law@redhat.com>
12732
12733 PR tree-optimization/69740
12734 * cfghooks.c (remove_edge): Request loop fixups if we delete
12735 an edge that might turn an irreducible loop into a natural
12736 loop.
12737 * cfgloop.h (check_verify_loop_structure): Clear LOOPS_NEED_FIXUP.
12738 Move after definition of loops_state_clear.
12739
12740 2016-03-07 Bin Cheng <bin.cheng@arm.com>
12741
12742 PR rtl-optimization/69052
12743 * rtlanal.c (commutative_operand_precedence): Set higher precedence
12744 to CONST_WIDE_INT.
12745
12746 2016-03-07 Tom de Vries <tom@codesourcery.com>
12747
12748 PR tree-optimization/70116
12749 * tree-ssa-tail-merge.c (merge_stmts_p): New function, handling
12750 is_tm_ending stmts and ubsan/asan internal functions.
12751 (find_duplicate): Use it. Don't test is_tm_ending here.
12752
12753 2016-03-07 Richard Biener <rguenther@suse.de>
12754
12755 PR tree-optimization/70115
12756 * tree-ssa-loop-ivcanon.c (propagate_into_all_uses): Remove.
12757 (propagate_constants_for_unrolling): Use replace_uses_by.
12758
12759 2016-03-07 Nathan Sidwell <nathan@codesourcery.com>
12760
12761 PR middle-end/69916
12762 * omp-low.c (struct oacc_loop): Add ifns.
12763 (new_oacc_loop_raw): Initialize it.
12764 (finish_oacc_loop): Clear mask & flags if no ifns.
12765 (oacc_loop_discover_walk): Count IFN_GOACC_LOOP calls.
12766 (oacc_loop_xform_loop): Add ifns arg & adjust.
12767 (oacc_loop_process): Adjust oacc_loop_xform_loop call.
12768
12769 2016-03-07 Richard Henderson <rth@redhat.com>
12770
12771 PR rtl-opt/70061
12772 * tree-outofssa.c (emit_partition_copy): Flush pending stack adjust.
12773 (insert_value_copy_on_edge): Likewise.
12774
12775 2016-03-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12776
12777 * config/arm/arm_neon.h: Show error if using with soft-float ABI.
12778
12779 2016-03-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
12780
12781 PR target/62281
12782 * config/i386/sol2.h (STACK_REALIGN_DEFAULT): Define.
12783
12784 2016-03-05 Venkataramanan Kumar <Venkataramanan.kumar@amd.com>
12785
12786 * config/i386/i386.c (znver1_cost): Fix Multiply cost.
12787
12788 2016-03-05 Venkataramanan Kumar <Venkataramanan.kumar@amd.com>
12789
12790 Fix sseimul type attribute.
12791 * config/i386/znver1.md
12792 (znver1_sseimul, znver1_sseimul_avx256, znver1_sseimul_load,
12793 znver1_sseimul_avx256_load) : Fix the type attribute.
12794 (znver1_sseimul_di, znver1_sseimul_load_di): Fix type attribute,
12795 pipe usage and latency.
12796
12797 2016-03-05 Jakub Jelinek <jakub@redhat.com>
12798
12799 PR c++/70084
12800 * tree-inline.c (copy_tree_body_r): When cancelling ADDR_EXPR
12801 of INDIRECT_REF and ADDR_EXPR changed type, fold_convert it
12802 to the right type.
12803
12804 2016-03-04 Bernd Schmidt <bschmidt@redhat.com>
12805
12806 PR c/69973
12807 * targhooks.c (default_vector_alignment): Limit to MAX_OFILE_ALIGNMENT.
12808
12809 PR rtl-optimization/69941
12810 * postreload.c (reload_combine_recognize_pattern): Ensure all uses of
12811 the reg share its mode.
12812
12813 2016-03-04 Jeff Law <law@redhat.com>
12814
12815 PR tree-optimization/69196
12816 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
12817 If the both SSA_NAMEs are anonymous, then consider them unassociated
12818 and include the PHI in the statement count.
12819
12820 2016-03-05 Tom de Vries <tom@codesourcery.com>
12821
12822 * omp-low.c (check_omp_nesting_restrictions): Check for non-oacc
12823 construct in oacc routine. Check for oacc region in oacc routine.
12824
12825 2016-03-04 Jakub Jelinek <jakub@redhat.com>
12826
12827 PR target/70062
12828 * config/i386/i386.c (decide_alg): Add RECUR argument. Revert
12829 2016-02-22 changes, instead don't recurse if RECUR is already true.
12830 Don't change *dynamic_check if RECUR. Adjust recursive caller
12831 to pass true to the new argument.
12832 (ix86_expand_set_or_movmem): Adjust decide_alg caller.
12833
12834 PR target/70059
12835 * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
12836 <extract_type_2>_vinsert<shuffletype><extract_suf_2>_mask): Formatting
12837 fixes.
12838 (vec_set_hi_<mode><mask_name>): Likewise. Swap VEC_CONCAT operands.
12839
12840 2016-03-04 Bernd Schmidt <bschmidt@redhat.com>
12841
12842 PR rtl-optimization/57676
12843 * lra-assigns.c (lra_assign): Guard test for maximum iterations
12844 with flag_checking.
12845
12846 2016-03-04 Ilya Enkovich <enkovich.gnu@gmail.com>
12847
12848 * tree-vect-patterns.c (search_type_for_mask): Handle
12849 comparison of booleans.
12850
12851 2016-03-04 Jakub Jelinek <jakub@redhat.com>
12852
12853 * doc/extend.texi (__builtin_alloca, __builtin_alloca_with_align):
12854 Fix @xref usage.
12855
12856 PR debug/69947
12857 * dwarf2out.c (prune_unused_types_walk_loc_descr): Handle
12858 all other ops that have dw_val_class_die_ref operands,
12859 and DW_OP_GNU_entry_value.
12860
12861 2016-03-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12862
12863 PR rtl-optimization/69904
12864 * config/arm/arm.c (arm_cannot_copy_insn_p):
12865 Return true for load-exclusive instructions.
12866
12867 2016-03-03 Jakub Jelinek <jakub@redhat.com>
12868
12869 PR target/70021
12870 * tree-vect-stmts.c (vect_mark_relevant): Remove USED_IN_PATTERN
12871 argument, if STMT_VINFO_IN_PATTERN_P (stmt_info), always mark
12872 the pattern no matter if it is used just by non-pattern, pattern
12873 or mix thereof.
12874 (process_use, vect_mark_stmts_to_be_vectorized): Adjust callers.
12875 * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
12876 oprnd1 def_stmt is in pattern, don't look through it.
12877
12878 2016-03-03 Marek Polacek <polacek@redhat.com>
12879
12880 PR middle-end/70050
12881 * match.pd (X % -Y): Add INTEGRAL_TYPE_P check.
12882
12883 2016-03-03 Martin Liska <mliska@suse.cz>
12884
12885 PR tree-optimization/70043
12886 * tree-vect-loop.c (optimize_mask_stores): Move iterator to
12887 previous statement if we see a debug statement.
12888
12889 2016-03-03 Richard Biener <rguenther@suse.de>
12890
12891 PR tree-optimization/55936
12892 * tree-vrp.c (compare_name_with_value): Add use_equiv_p
12893 parameter and guard unsafe equivalence use.
12894 (vrp_evaluate_conditional_warnv_with_ops): Always use
12895 safe equivalences but not via the quadratic compare_names
12896 helper.
12897
12898 2016-03-03 Michael Collison <michael.collison@linaro.org>
12899
12900 PR target/70014
12901 * config/arm/arm.md (*subsi3_carryin_const): Change predicate
12902 for operand 1 to s_register_operand. Change predicate for operand
12903 2 to arm_not_immediate_operand.
12904
12905 2016-03-02 H.J. Lu <hongjiu.lu@intel.com>
12906
12907 * doc/tm.texi: Regenerated.
12908
12909 2016-03-02 Richard Henderson <rth@redhat.com>
12910
12911 PR rtl-opt/67145
12912 * simplify-rtx.c (simplify_plus_minus): Allow reassoc without
12913 simplification when all args are positive non-fixed registers.
12914
12915 2016-03-02 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
12916
12917 * target.def (lra_p): Specify that new ports should use LRA.
12918
12919 2016-03-02 Jakub Jelinek <jakub@redhat.com>
12920
12921 PR libgomp/69555
12922 * gimplify.c (gimplify_decl_expr): For decls with REFERENCE_TYPE, also
12923 gimplify_type_sizes the type they refer to.
12924 (omp_notice_variable): Handle reference vars to VLAs.
12925 * omp-low.c (lower_omp_target): Emit setup of OMP_CLAUSE_PRIVATE
12926 reference to VLA decls in the second pass instead of first pass.
12927
12928 2016-03-02 Tom de Vries <tom@codesourcery.com>
12929
12930 PR tree-optimization/68659
12931 * graphite-isl-ast-to-gimple.c (collect_all_ssa_names): Handle
12932 new_expr == NULL_TREE.
12933 (get_new_name): Handle ADDR_EXPR.
12934
12935 2016-03-02 Bin Cheng <bin.cheng@arm.com>
12936
12937 PR rtl-optimization/69052
12938 * loop-invariant.c (canonicalize_address): New function.
12939 (inv_can_prop_to_addr_use): Check validity of address expression
12940 which is canonicalized by above function.
12941
12942 2016-03-02 Alan Modra <amodra@gmail.com>
12943
12944 PR ipa/69990
12945 * ipa-icf.c (sem_variable::merge): Do not merge an alias with
12946 larger alignment.
12947
12948 2016-03-02 Jakub Jelinek <jakub@redhat.com>
12949
12950 PR target/70028
12951 * config/i386/i386.md (kmovw): Move m constraint to 2nd alternative.
12952 (*movhi_internal): Put mask moves from and to memory separately
12953 from moves from/to GPRs.
12954
12955 2016-03-02 Richard Biener <rguenther@suse.de>
12956
12957 * genmatch.c (dt_node::gen_kids): Fix match code-gen for embedded
12958 GENERIC expressions in GIMPLE.
12959
12960 2016-03-02 Richard Biener <rguenther@suse.de>
12961
12962 * config/i386/i386.c (type_natural_mode): Fix typo.
12963
12964 2016-03-02 Nick Clifton <nickc@redhat.com>
12965
12966 * config.gcc (mep-*-elf): Add newlib-stdint.h to tm_file.
12967
12968 2016-03-02 Richard Biener <rguenther@suse.de>
12969 Uros Bizjak <ubizjak@gmail.com>
12970
12971 PR target/67278
12972 * config/i386/i386.c (type_natural_mode): Handle XFmode vectors.
12973
12974 2016-03-02 Richard Biener <rguenther@suse.de>
12975
12976 PR middle-end/67278
12977 * tree-cfg.c (verify_expr): Adjust BIT_FIELD_REF case.
12978
12979 2016-03-02 Marek Polacek <polacek@redhat.com>
12980
12981 PR c/67854
12982 * gimplify.c (gimplify_va_arg_expr): Use expanded location for the
12983 "is promoted to" warning.
12984
12985 2016-03-01 DJ Delorie <dj@redhat.com>
12986
12987 * config.gcc: Deprecate mep-*.
12988
12989 2016-03-01 Vladimir Makarov <vmakarov@redhat.com>
12990
12991 PR middle-end/70025
12992 * lra-constraints.c (regno_val_use_in): New.
12993 (match_reload): Use it instead of regno_use_in.
12994
12995 2016-03-01 Eric Botcazou <ebotcazou@adacore.com>
12996
12997 PR rtl-optimization/70007
12998 * gcse.c (compute_ld_motion_mems): Tidy up and also invalidate memory
12999 references present in REG_EQUAL notes attached to non-SET patterns.
13000
13001 2016-03-01 Jeff Law <law@redhat.com>
13002
13003 PR tree-optimization/69196
13004 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
13005 Appropriately clamp the number of statements to copy when the
13006 thread path does not traverse a loop backedge.
13007
13008 PR tree-optimization/69196
13009 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
13010 Do count some PHIs in the thread path against the insn count. Decrease
13011 final statement count by one as the control statement in the last
13012 block will get removed. Remove special cased code for handling PHIs
13013 in the last block.
13014
13015 2016-03-01 Uros Bizjak <ubizjak@gmail.com>
13016
13017 PR target/70027
13018 * config/i386/i386.c (ix86_output_call_insn): Add -masm=intel
13019 asm dialect alternatives to explicit GOTPCREL calls.
13020
13021 2016-03-01 Eric Botcazou <ebotcazou@adacore.com>
13022
13023 PR ada/70017
13024 * ira.c (do_reload): Issue warning for generic stack checking here...
13025 * reload1.c (reload): ...instead of here and streamline it.
13026
13027 2016-03-01 Nick Clifton <nickc@redhat.com>
13028
13029 * config.gcc (cr16-*-elf): Add newlib-stdint.h to tm_file.
13030
13031 2016-03-01 Richard Biener <rguenther@suse.de>
13032
13033 PR tree-optimization/69983
13034 * tree-chrec.c (eq_evolutions_p): Handle conversions, compare
13035 types and fall back to operand_equal_p.
13036
13037 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13038
13039 Revert
13040 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13041
13042 * config/s390/constraints.md ("jm8"): New constraint.
13043 * config/s390/predicates.md ("const_int_8bitset_operand"): New
13044 predicate.
13045 * config/s390/s390.md ("*setmem_long", "*setmem_long_and"): Merge
13046 into ...
13047 ("*setmem_long<setmem_and>"): New pattern.
13048 ("*setmem_long_31z", "*setmem_long_and_31z"): Merge
13049 into ...
13050 ("*setmem_long_31z<setmem_and>"): New pattern.
13051 * config/s390/subst.md ("setmem_31z_subst", "setmem_and_subst"):
13052 New substitution rules with the required attributes.
13053
13054
13055 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13056
13057 Revert
13058 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13059
13060 * gensupport.c (process_substs_on_one_elem): Split loop to
13061 complete mark_operands_used_in_match_dup on all expressions in the
13062 vector first.
13063 (adjust_operands_numbers): Inline into process_substs_on_one_elem
13064 and remove function.
13065
13066 2016-03-01 Richard Biener <rguenther@suse.de>
13067
13068 PR middle-end/70022
13069 * fold-const.c (fold_indirect_ref_1): Fix range checking for
13070 vector BIT_FIELD_REF extract.
13071
13072 2016-03-01 Richard Biener <rguenther@suse.de>
13073
13074 PR tree-optimization/69994
13075 * tree-ssa-reassoc.c (ops_equal_values_p): Handle missing case.
13076
13077 2016-03-01 Ilya Enkovich <enkovich.gnu@gmail.com>
13078
13079 PR tree-optimization/69956
13080 * tree-vect-stmts.c (supportable_widening_operation): Support
13081 multi-step conversion of boolean vectors.
13082 (supportable_narrowing_operation): Likewise.
13083
13084 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13085
13086 * config/s390/s390.c (s390_decompose_address): Don't accept SImode
13087 anymore.
13088
13089 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13090
13091 * config/s390/subst.md (DSI_VI): New mode iterator.
13092 ("addr_style_op_subst"): Use DSI_VI instead of DSI.
13093 * config/s390/vector.md ("vec_set<mode>"): Move expander before
13094 the insn definition.
13095 ("*vec_set<mode>"): Change predicate and add alternative to
13096 support only either register or const_int operands as element
13097 selector.
13098 ("*vec_set<mode>_plus"): New pattern to support reg + const_int
13099 operands.
13100 ("vec_extract<mode>"): New expander.
13101 ("*vec_extract<mode>"): New insn definition supporting reg and
13102 const_int element selectors.
13103 ("*vec_extract<mode>_plus"): New insn definition supporting
13104 reg+const_int element selectors.
13105 ("rotl<mode>3", "ashl<mode>3", "ashr<mode>3"): Merge into the
13106 following expander+insn definition.
13107 ("<vec_shifts_name><mode>3"): New expander.
13108 ("*<vec_shifts_name><mode>3<addr_style_op>"): New insn definition.
13109
13110 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13111
13112 * config/s390/s390.md ("*tabort_1"): Change predicate to
13113 nonmemory_operand. Add a second alternative to cover
13114 register as well as const int operands.
13115 ("*tabort_1_plus"): New pattern definition.
13116
13117 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13118
13119 * config/s390/s390.md ("*ashrdi3_cc_31")
13120 ("*ashrdi3_cconly_31""*ashrdi3_cc_31_and")
13121 ("*ashrdi3_cconly_31_and", "*ashrdi3_31_and", "*ashrdi3_31"):
13122 Merge insn definitions into ...
13123 ("*ashrdi3_31<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
13124 New pattern definition.
13125 ("*ashr<mode>3_cc", "*ashr<mode>3_cconly", "ashr<mode>3", )
13126 ("*ashr<mode>3_cc_and", "*ashr<mode>3_cconly_and")
13127 ("*ashr<mode>3_and"): Merge insn definitions into ...
13128 ("*ashr<mode>3<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
13129 New pattern definition.
13130 * config/s390/subst.md ("addr_style_op_cc_subst")
13131 ("masked_op_cc_subst", "setcc_subst", "cconly_subst"): New
13132 substitutions patterns plus attributes.
13133 Add ashiftrt to SUBST iterator.
13134
13135 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13136
13137 * config/s390/s390.md ("<shift><mode>3"): Change predicate of
13138 op2 to nonmemory_operand.
13139 ("*<shift>di3_31", "*<shift>di3_31_and"):
13140 Merge into single pattern definition ...
13141 ("*<shift>di3_31<addr_style_op><masked_op>"): New pattern.
13142 ("*<shift><mode>3", "*<shift><mode>3_and"): Merge into single
13143 pattern definition ...
13144 ("*<shift><mode>3<addr_style_op><masked_op>"): New pattern.
13145 * config/s390/subst.md: Add ashift and lshiftrt to SUBST
13146 iterator.
13147
13148 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13149
13150 * config/s390/predicates.md (const_int_6bitset_operand): New
13151 predicate.
13152 * config/s390/s390.md: Include subst.md.
13153 ("rotl<mode>3"): New expander.
13154 ("rotl<mode>3", "*rotl<mode>3_and"): Merge insn definitions into
13155 ...
13156 ("*rotl<mode>3<addr_style_op><masked_op>"): New insn definition.
13157 * config/s390/subst.md: New file.
13158
13159 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13160
13161 * config/s390/s390.md ("op_type", "atype", "length" attributes):
13162 Remove RRR type. It doesn't really exist.
13163 ("RRer", "f0", "v0", "vf", "vd", "op1", "Rf"): Remove mode
13164 attributes.
13165 ("BFP", "DFP", "nDSF", "nDFDI"): Add mode attributes.
13166 ("*cmp<mode>_ccs", "floatdi<mode>2", "add<mode>3")
13167 ("*add<mode>3_cc", "*add<mode>3_cconly", "sub<mode>3")
13168 ("*sub<mode>3_cc", "*sub<mode>3_cconly", "mul<mode>3")
13169 ("fma<mode>4", "fms<mode>4", "div<mode>3", "*neg<mode>2")
13170 ("*abs<mode>2", "*negabs<mode>2", "sqrt<mode>2"): Override
13171 `enabled' attribute.
13172
13173 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13174
13175 * gensupport.c (process_substs_on_one_elem): Split loop to
13176 complete mark_operands_used_in_match_dup on all expressions in the
13177 vector first.
13178 (adjust_operands_numbers): Inline into process_substs_on_one_elem
13179 and remove function.
13180
13181 2016-02-29 Eric Botcazou <ebotcazou@adacore.com>
13182
13183 PR target/69706
13184 * config/sparc/sparc.c (NWORDS_UP): Rename to...
13185 (CEIL_NWORDS): ...this. Use CEIL macro.
13186 (compute_fp_layout): Adjust to above renaming.
13187 (function_arg_union_value): Likewise.
13188 (sparc_arg_partial_bytes): Likewise.
13189 (sparc_function_arg_advance): Likewise.
13190
13191 2016-02-29 Jeff Law <law@redhat.com>
13192
13193 PR tree-optimization/70005
13194 * tree-ssa-uncprop.c (associate_equivalences_with_edges): Handle case
13195 where an object with a boolean range is compared against a value
13196 outside [0..1].
13197
13198 PR tree-optimization/69999
13199 * gimple-ssa-split-paths.c (split_paths): When duplicating a block
13200 with an outgoing edge marked with EDGE_IRREDUCIBLE_LOOP, schedule
13201 loop cleanups.
13202
13203 2016-02-29 Richard Biener <rguenther@suse.de>
13204
13205 PR tree-optimization/69994
13206 * tree-ssa-reassoc.c (gimple_nop_conversion_p): New function.
13207 (get_unary_op): Look through nop conversions.
13208 (ops_equal_values_p): New function, look for equality diregarding
13209 nop conversions.
13210 (eliminate_plus_minus_pair): Use ops_equal_values_p
13211 (repropagate_negates): Do not use get_unary_op here.
13212
13213 2016-02-29 Martin Liska <mliska@suse.cz>
13214
13215 * system.h: Poison ENABLE_CHECKING macro.
13216
13217 2016-02-29 Martin Liska <mliska@suse.cz>
13218
13219 * hsa-gen.c (gen_body_from_gimple): Dump only if TDF_DETAILS
13220 is presented in dump flags.
13221 * hsa-regalloc.c (linear_scan_regalloc): Likewise.
13222 (hsa_regalloc): Likewise.
13223
13224 2016-02-19 Richard Biener <rguenther@suse.de>
13225
13226 PR tree-optimization/69980
13227 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Update
13228 permutation of those we need to keep.
13229
13230 2016-02-29 Eric Botcazou <ebotcazou@adacore.com>
13231
13232 PR target/69706
13233 * config/sparc/sparc.c (ROUND_ADVANCE): Rename to...
13234 (NWORDS_UP): ...this
13235 (init_cumulative_args): Minor tweaks.
13236 (sparc_promote_function_mode): Likewise.
13237 (scan_record_type): Delete.
13238 (traverse_record_type): New function template.
13239 (classify_data_t): New structure type.
13240 (classify_registers): New inline function.
13241 (function_arg_slotno): In 64-bit mode, bail out early if FP slots are
13242 exhausted. Instantiate traverse_record_type on classify_registers and
13243 deal with the case of a structure passed in slot #15 with no FP field
13244 in the first word.
13245 (assign_data_t): New structure type.
13246 (compute_int_layout): New static function.
13247 (compute_fp_layout): Likewise.
13248 (count_registers): New inline function.
13249 (assign_int_registers): New static function.
13250 (assign_fp_registers): Likewise.
13251 (assign_registers): New inline function.
13252 (function_arg_record_value_1): Delete.
13253 (function_arg_record_value_2): Likewise.
13254 (function_arg_record_value_3): Likewise.
13255 (function_arg_record_value): Adjust to above changes. Instantiate
13256 traverse_record_type on count_registers to first count the number of
13257 registers to be used and then on assign_registers to assign them.
13258 (function_arg_union_value): Adjust to above renaming.
13259 (sparc_function_arg_1); Minor tweaks. Remove commented out code.
13260 (sparc_arg_partial_bytes): Adjust to above renaming. Deal with the
13261 case of a structure passed in slot #15
13262 (sparc_function_arg_advance): Likewise.
13263 (function_arg_padding): Minor tweak.
13264
13265 2016-02-29 Richard Biener <rguenther@suse.de>
13266
13267 PR tree-optimization/69720
13268 * tree-vect-loop.c (get_initial_def_for_reduction): Avoid
13269 the adjustment_def path for possibly vectorized defs.
13270 (vect_create_epilog_for_reduction): Handle vectorized initial
13271 defs properly.
13272
13273 2016-02-28 Eric Botcazou <ebotcazou@adacore.com>
13274
13275 * config/i386/cygming.h (STACK_REALIGN_DEFAULT): Define.
13276
13277 2016-02-27 Jeff Law <law@redhat.com>
13278
13279 Revert
13280 2016-02-26 Richard Biener <rguenther@suse.de>
13281 Jeff Law <law@redhat.com>
13282
13283 PR tree-optimization/69740
13284 * cfghooks.c (remove_edge): Request loop fixups if we delete
13285 an edge that might turn an irreducible loop into a natural
13286 loop.
13287
13288 2016-02-27 Jakub Jelinek <jakub@redhat.com>
13289
13290 PR rtl-optimization/69896
13291 * tree-vect-generic.c (get_compute_type): Avoid single element
13292 vector types.
13293
13294 2016-02-26 Evandro Menezes <e.menezes@samsung.com>
13295
13296 Rename the AArch64 tuning option and related functions to enable the
13297 Newton series for the reciprocal square root to reflect its
13298 approximative characteristic.
13299
13300 * config/aarch64/aarch64-protos.h (aarch64_emit_swrsqrt): Rename
13301 function to "aarch64_emit_approx_rsqrt".
13302 * config/aarch64/aarch64-tuning-flags.def: Rename tuning flag to
13303 AARCH64_EXTRA_TUNE_APPROX_RSQRT.
13304 * config/aarch64/aarch64.c (exynosm1_tunigs): Use new flag name.
13305 (xgene1_tunings): Likewise.
13306 (use_rsqrt_p): Likewise.
13307 (aarch64_emit_swrsqrt): Use new function name.
13308 * config/aarch64/aarch64-simd.md (aarch64_rsqrts_*): Likewise.
13309 * config/aarch64/aarch64.opt (mlow-precision-recip-sqrt): Reword the
13310 text explaining this option.
13311 * doc/invoke.texi (-mlow-precision-recip-sqrt): Likewise.
13312
13313 2016-02-26 Jakub Jelinek <jakub@redhat.com>
13314
13315 PR target/69969
13316 * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
13317 complain about -mallow-movmisalign without -mvsx if
13318 TARGET_ALLOW_MOVMISALIGN was not set explicitly.
13319
13320 2016-02-26 Joel Sherrill <joel@rtems.org>
13321
13322 * config.gcc: Add x86_64-*-rtems*.
13323 * config/i386/rtems-64.h: New file.
13324
13325 2016-02-26 Joel Sherrill <joel@rtems.org>
13326
13327 * config.gcc: Add aarch64-*-rtems*.
13328 * config/aarch64/rtems.h: New file.
13329
13330 2016-02-26 Segher Boessenkool <segher@kernel.crashing.org>
13331
13332 PR target/69946
13333 * config/rs6000/rs6000.c (rs6000_insn_for_shift_mask): Print rlwinm
13334 shift amount using %h. Add comment.
13335
13336 2016-02-26 Richard Biener <rguenther@suse.de>
13337 Jeff Law <law@redhat.com>
13338
13339 PR tree-optimization/69740
13340 * cfghooks.c (remove_edge): Request loop fixups if we delete
13341 an edge that might turn an irreducible loop into a natural
13342 loop.
13343
13344 2016-02-26 Martin Jambor <mjambor@suse.cz>
13345
13346 PR middle-end/69920
13347 * tree-sra.c (sra_modify_assign): Do not remove loads of
13348 uninitialized aggregates to SSA_NAMEs.
13349
13350 2016-02-26 Richard Henderson <rth@redhat.com>
13351
13352 PR target/69709
13353 * config/s390/s390.md (risbg and risbgn splitters): Allocate new
13354 pseudo in case the target rtx matches the source of the left
13355 shift.
13356
13357 2016-02-26 Martin Jambor <mjambor@suse.cz>
13358
13359 PR hsa/69568
13360 * hsa.h (hsa_type_packed_p): Declare.
13361 * hsa.c (hsa_type_packed_p): New function.
13362 * hsa-gen.c (mem_type_for_type): Use unsigned type for packed
13363 loads.
13364 (gen_hsa_insns_for_store): Use hsa_type_packed_p.
13365 * hsa-brig.c (emit_basic_insn): Likewise.
13366
13367 2016-02-26 Martin Jambor <mjambor@suse.cz>
13368
13369 pr hsa/69674
13370 * hsa-gen.c (gen_hsa_phi_from_gimple_phi): Use proper hsa type for
13371 pointers.
13372 (gen_hsa_addr): Allow integer constants in TMR_INDEX2.
13373
13374 2016-02-26 Martin Jambor <mjambor@suse.cz>
13375
13376 * hsa.h (is_a_helper): New overload for hsa_op_immed for
13377 hsa_op_with_type operands.
13378 (hsa_unsigned_type_for_type): Declare.
13379 * hsa.c (hsa_unsigned_type_for_type): New function.
13380 * hsa-gen.c (gen_hsa_binary_operation): Use hsa_unsigned_type_for_type.
13381 (gen_hsa_insns_for_operation_assignment): Satisfy constrains of
13382 the finalizer. Do not emit extra move.
13383
13384 2016-02-26 Martin Jambor <mjambor@suse.cz>
13385
13386 * hsa-gen.c (gen_hsa_ternary_atomic_for_builtin): Fail in presence of
13387 atomic operations in private segment.
13388
13389 2016-02-26 Martin Jambor <mjambor@suse.cz>
13390
13391 * omp-low.c (grid_find_ungridifiable_statement): Store problematic
13392 statements to wi->info. Also disallow omp simd constructs.
13393 (grid_target_follows_gridifiable_pattern): Use wi.info to dump reason
13394 for not gridifying. Dump special string for omp_for.
13395
13396 2016-02-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13397
13398 PR target/69245
13399 * config/aarch64/aarch64.c (aarch64_set_current_function):
13400 Save/restore target globals when switching to
13401 target_option_default_node.
13402
13403 2016-02-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13404
13405 PR target/69613
13406 * config/aarch64/aarch64.c (aarch64_shift_truncation_mask):
13407 Return 0 if !SHIFT_COUNT_TRUNCATED.
13408
13409 2016-02-26 Jakub Jelinek <jakub@redhat.com>
13410 Eric Botcazou <ebotcazou@adacore.com>
13411
13412 PR rtl-optimization/69891
13413 * dse.c (scan_insn): If we can't figure out memset arguments
13414 or they are non-constant, call clear_rhs_from_active_local_stores.
13415
13416 2016-02-26 Martin Liska <mliska@suse.cz>
13417
13418 * doc/extend.texi: Mention clog10, clog10f an clog10l
13419 in Builtins section.
13420
13421 2016-02-26 Martin Liska <mliska@suse.cz>
13422
13423 * dwarf2out.c (new_loc_descr): Replace ENABLE_CHECKING with
13424 CHECKING_P.
13425 (resolve_args_picking_1): Likewise.
13426 * dwarf2out.h (struct GTY): Likewise.
13427
13428 2016-02-26 Martin Liska <mliska@suse.cz>
13429
13430 * hsa-gen.c (generate_hsa): Replace ENABLE_CHECKING macro
13431 with flag_checking.
13432 * hsa-regalloc.c (linear_scan_regalloc): Likewise.
13433
13434 2016-02-26 Markus Trippelsdorf <markus@trippelsdorf.de>
13435 Martin Liska <mliska@suse.cz>
13436
13437 * doc/install.texi: Mention --enable-valgrind-annotations.
13438
13439 2016-02-26 Richard Biener <rguenther@suse.de>
13440
13441 PR tree-optimization/69551
13442 * tree-ssa-structalias.c (get_constraint_for_ssa_var): When
13443 looking through aliases adjust DECL_PT_UID to refer to the
13444 ultimate alias target.
13445
13446 2016-02-25 Martin Liska <mliska@suse.cz>
13447
13448 PR middle-end/69919
13449 * alloc-pool.c (after_memory_report): New variable.
13450 * alloc-pool.h (base_pool_allocator ::release): Do not use
13451 the infrastructure if after_memory_report.
13452 * toplev.c (toplev::main): Mark after memory report.
13453
13454 2016-02-25 Richard Biener <rguenther@suse.de>
13455
13456 PR tree-optimization/48795
13457 * tree-vrp.c (check_array_ref): Use array_at_struct_end_p.
13458
13459 2016-02-25 Ilya Verbin <ilya.verbin@intel.com>
13460
13461 PR driver/68463
13462 * config/gnu-user.h (CRTOFFLOADBEGIN): Define. Add crtoffloadbegin.o if
13463 offloading is enabled and -fopenacc or -fopenmp is specified.
13464 (CRTOFFLOADEND): Likewise.
13465 (GNU_USER_TARGET_STARTFILE_SPEC): Add CRTOFFLOADBEGIN.
13466 (GNU_USER_TARGET_ENDFILE_SPEC): Add CRTOFFLOADEND.
13467 * lto-wrapper.c (offloadbegin, offloadend): Remove static vars.
13468 (offload_objects_file_name): New static var.
13469 (tool_cleanup): Remove offload_objects_file_name file.
13470 (find_offloadbeginend): Replace with ...
13471 (find_crtoffloadtable): ... this.
13472 (run_gcc): Remove offload_argc and offload_argv.
13473 Get offload_objects_file_name from -foffload-objects=... option.
13474 Read names of object files with offload from this file, pass them to
13475 compile_images_for_offload_targets. Don't call find_offloadbeginend and
13476 don't pass offloadbegin and offloadend to the linker. Don't pass
13477 offload non-LTO files to the linker, because now they're not claimed.
13478
13479 2016-02-25 Jan Hubicka <hubicka@ucw.cz>
13480
13481 PR ipa/69630
13482 * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
13483 on builtin_unreachable.
13484
13485 2016-02-25 Jakub Jelinek <jakub@redhat.com>
13486
13487 PR rtl-optimization/69896
13488 * regcprop.c: Include cfgrtl.h.
13489 (copyprop_hardreg_forward_1): If noop_p insn uses narrower
13490 than remembered mode, either delete it (if noop_move_p), or
13491 treat like copy_p but not noop_p instruction.
13492
13493 2016-02-24 Jakub Jelinek <jakub@redhat.com>
13494
13495 PR debug/69705
13496 * dwarf2out.c (gen_variable_die): Work around buggy LTO
13497 - allow NULL decl for Fortran DW_TAG_common_block variables.
13498
13499 2016-02-24 Jason Merrill <jason@redhat.com>
13500
13501 * common.opt (flifetime-dse): Add -flifetime-dse=1.
13502
13503 2016-02-24 Richard Biener <rguenther@suse.de>
13504 Jakub Jelinek <jakub@redhat.com>
13505
13506 PR middle-end/69760
13507 * tree-scalar-evolution.c (interpret_rhs_expr): Re-write
13508 conditionally executed ops to well-defined overflow behavior.
13509
13510 2016-02-24 Jakub Jelinek <jakub@redhat.com>
13511
13512 PR middle-end/69915
13513 * tree.c (build_vector_from_ctor): Fix handling of VECTOR_CST
13514 elements.
13515
13516 2016-02-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13517
13518 PR rtl-optimization/69886
13519 * gcse.c (can_assign_to_reg_without_clobbers_p): Accept mode
13520 argument. Use it when checking validity of set instructions.
13521 (want_to_gcse_p): Pass mode to can_assign_to_reg_without_clobbers_p.
13522 (compute_ld_motion_mems): Update can_assign_to_reg_without_clobbers_p
13523 callsite.
13524 * rtl.h (can_assign_to_reg_without_clobbers_p): Update prototype.
13525 * store-motion.c (find_moveable_store): Update
13526 can_assign_to_reg_without_clobbers_p callsite.
13527
13528 2016-02-24 Richard Biener <rguenther@suse.de>
13529
13530 PR middle-end/68963
13531 * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Fix
13532 bogus check.
13533 (record_nonwrapping_iv): Do not fall back to the low/high bound
13534 for non-constant IV bases if the stmt is not always executed.
13535
13536 2016-02-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13537
13538 * config/arm/arm-cores.def (cortex-a32): New entry.
13539 * config/arm/arm-tables.opt: Regenerate.
13540 * config/arm/arm-tune.md: Regenerate.
13541 * config/arm/bpabi.h (BE8_LINK_SPEC): Add mcpu=cortex-a32.
13542 * config/arm/t-aprofile: Handle mcpu=cortex-a32.
13543 * doc/invoke.texi (ARM Options): Document cortex-a32 as value
13544 for -mcpu and -mtune.
13545
13546 2016-02-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13547
13548 PR target/69875
13549 * config/arm/arm.h (TARGET_HAVE_LPAE): Define.
13550 * config/arm/unspecs.md (VUNSPEC_LDRD_ATOMIC): New value.
13551 * config/arm/sync.md (arm_atomic_loaddi2_ldrd): New pattern.
13552 (atomic_loaddi_1): Delete.
13553 (atomic_loaddi): Rewrite expander using the above changes.
13554
13555 2016-02-24 Jakub Jelinek <jakub@redhat.com>
13556
13557 PR c/69918
13558 * params.def (PARAM_MAX_SSA_NAME_QUERY_DEPTH): Bump default from
13559 2 to 3.
13560
13561 2016-02-24 Jakub Jelinek <jakub@redhat.com>
13562 Richard Biener <rguenth@suse.de>
13563
13564 PR middle-end/69909
13565 * expr.c (expand_expr_real_1) <normal_inner_ref>: Avoid
13566 set_mem_attributes if tem is SSA_NAME which got expanded
13567 as a MEM.
13568
13569 2016-02-24 Richard Biener <rguenther@suse.de>
13570
13571 PR tree-optimization/69907
13572 * tree-vect-stmts.c (vectorizable_load): Check for gaps at the
13573 end of permutations for BB vectorization.
13574
13575 2016-02-24 Christian Bruel <christian.bruel@st.com>
13576
13577 * config/arm/arm-c.c (arm_option_override): Initialize
13578 target_option_current_node.
13579 * config/arm/arm.c (arm_pragma_target_parse): Replace
13580 build_target_option_node call by target_option_current_node.
13581 Set target_option_current_node.
13582 Fix comments.
13583
13584 2016-02-23 David Edelsohn <dje.gcc@gmail.com>
13585
13586 PR target/69810
13587 * config/rs6000/rs6000.md (zero_extendqi<mode>2_dot): Convert from
13588 define_insn_and_split to define_insn.
13589 (zero_extendqi<mode>2_dot2): Same.
13590 (extendqi<mode>2_dot): Same.
13591 (extendqi<mode>2_dot2): Same.
13592
13593 2016-02-23 Evandro Menezes <e.menezes@samsung.com>
13594
13595 * config/arm/exynos-m1.md: Change cost of STP, fix bypass for stores
13596 and add bypass for AES{D,E} and AESMC pairs.
13597 * config/aarch64/aarch64.c (exynosm1_tunings): Enable fusion of AES{D,E}
13598 and AESMC pairs.
13599
13600 2016-02-23 Evandro Menezes <e.menezes@samsung.com>
13601
13602 * config/aarch64/aarch64.c (exynosm1_tunings): Enable the Newton
13603 series for reciprocal square root in Exynos M1.
13604
13605 2016-02-23 Martin Sebor <msebor@redhat.com>
13606
13607 PR c/69759
13608 * doc/extend.texi (Other Builtins): Document __builtin_alloca and
13609 __builtin_alloca_with_align.
13610
13611 2016-02-23 Richard Henderson <rth@redhat.com>
13612
13613 * config/i386/i386-c.c (ix86_target_macros): Remove __SEG_TLS.
13614 (ix86_register_pragmas): Remove __seg_tls.
13615 * config/i386/i386-protos.h (ADDR_SPACE_SEG_TLS): Remove.
13616 * config/i386/i386.c (ix86_print_operand_address_as): Don't handle it.
13617 (ix86_addr_space_subset_p, TARGET_ADDR_SPACE_SUBSET_P): Remove.
13618 (ix86_addr_space_convert, TARGET_ADDR_SPACE_CONVERT): Remove.
13619 (ix86_addr_space_debug, TARGET_ADDR_SPACE_DEBUG): Remove.
13620 * doc/extend.texi (__seg_tls): Remove item.
13621
13622 2016-02-23 Richard Biener <rguenther@suse.de>
13623
13624 * alloc-pool.h (struct allocation_object): Make id member
13625 conditional on CHECKING_P again.
13626 (get_instance): Adjust.
13627 (base_pool_allocator): Likewise.
13628
13629 2016-02-23 Thomas Schwinge <thomas@codesourcery.com>
13630
13631 * tree-parloops.c (create_parallel_loop, gen_parallel_loop)
13632 (parallelize_loops): In OpenACC kernels mode, set n_threads to
13633 zero.
13634 (pass_parallelize_loops::gate): In OpenACC kernels mode, gate on
13635 flag_openacc.
13636 * tree-ssa-loop.c (gate_oacc_kernels): Likewise.
13637
13638 2016-02-23 Richard Biener <rguenther@suse.de>
13639
13640 * mem-stats.h (struct mem_usage): Use PRIu64 for printing size_t.
13641 * bitmap.h (struct bitmap_usage): Likewise.
13642 (bitmap_move): Declare.
13643 * bitmap.c (register_overhead): Take size_t argument.
13644 (bitmap_move): New function.
13645 * df-problems.c (df_rd_transfer_function): Use bitmap_move
13646 to properly account overhead.
13647 * tree.c (free_node): Use tree_size.
13648
13649 2016-02-23 Jakub Jelinek <jakub@redhat.com>
13650
13651 PR c++/69902
13652 * fold-const.c (fold_truth_not_expr): Propagate TREE_NO_WARNING
13653 when inverting comparison.
13654
13655 PR c/69900
13656 * common.opt (Wunreachable-code): Add Warning flag.
13657
13658 2016-02-23 Mark Wielaard <mjw@redhat.com>
13659 Jakub Jelinek <jakub@redhat.com>
13660
13661 PR c/69911
13662 * cgraphunit.c (check_global_declaration): Check main_input_filename
13663 and DECL_SOURCE_FILE are not NULL.
13664
13665 2016-02-23 Martin Jambor <mjambor@suse.cz>
13666
13667 PR tree-optimization/69666
13668 * tree-sra.c (sra_modify_assign): Do not attempt to create
13669 default_def replacements for unscalarizable regions.
13670
13671 2016-02-20 Mark Wielaard <mjw@redhat.com>
13672
13673 PR c/28901
13674 * cgraphunit.c (check_global_declaration): Check level of
13675 warn_unused_const_variable and main_input_filename.
13676 * doc/invoke.texi (Warning Options): Add -Wunused-const-variable=.
13677 (-Wunused-variable): For C implies -Wunused-const-variable=1.
13678 (-Wunused-const-variable): Explain levels 1 and 2.
13679
13680 2016-02-22 Jakub Jelinek <jakub@redhat.com>
13681
13682 PR target/69888
13683 * config/i386/i386.c (decide_alg): Ensure we don't recurse with
13684 identical arguments. Formatting and spelling fixes.
13685
13686 PR target/69885
13687 * doc/md.texi (ashl@var{m}3): Document that mode of operand 2 must
13688 be specified.
13689
13690 PR target/69894
13691 PR target/69895
13692 * config/m68k/t-opts (OPTIONS_H_EXTRA): Add m68k-microarchs.def
13693 and m68k-devices.def.
13694 * config/c6x/t-c6x (OPTIONS_H_EXTRA): Add c6x-isas.def.
13695 * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add aarch64-arches.def.
13696
13697 2016-02-22 Cesar Philippidis <cesar@codesourcery.com>
13698
13699 * config/nvptx/nvptx.c (nvptx_gen_shuffle): Add support for QImode
13700 and HImode registers.
13701
13702 2016-02-22 Richard Biener <rguenther@suse.de>
13703
13704 PR tree-optimization/69882
13705 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Properly
13706 preserve permutations present because of gaps.
13707 (vect_supported_load_permutation_p): Always continue checking
13708 permutations after vect_attempt_slp_rearrange_stmts.
13709
13710 2016-02-22 Bin Cheng <bin.cheng@arm.com>
13711
13712 * tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump
13713 min_profitable_estimate, rather than min_profitable_iters.
13714
13715 2016-02-22 Jakub Jelinek <jakub@redhat.com>
13716
13717 PR target/69885
13718 * config/m68k/m68k.md (ashldi3, ashrdi3, lshrdi3): Use
13719 SImode for last match_operand.
13720
13721 2016-02-22 Martin Liska <mliska@suse.cz>
13722
13723 * hsa-gen.c (gen_hsa_clrsb): In case of zero value,
13724 return bitsize - 1 as the return value.
13725
13726 2016-02-22 Oleg Endo <olegendo@gcc.gnu.org>
13727
13728 PR target/69806
13729 PR target/54089
13730 * config/sh/sh.c (sh_lshrsi_clobbers_t_reg_p, sh_dynamicalize_shift_p):
13731 Handle negative shift counts.
13732 * config/sh/sh.md (ashlsi3, lshrsi3_n, lshrsi3_n_clobbers_t): Don't use
13733 force_reg on the shift constant.
13734 (lshrsi3): Likewise. Expand into lshrsi3_n* instead of lshrsi3_d.
13735 (lshrsi3_d): Handle negative shift counts.
13736
13737 2016-02-22 Richard Biener <rguenther@suse.de>
13738 Tom de Vries <tom@codesourcery.com>
13739
13740 * graph.c: Include dumpfile.h.
13741 (print_graph_cfg): Split into three overloads.
13742 * gdbhooks.py (class DotFn): Add and instantiate, adding command dot-fn.
13743
13744 2016-02-22 Tom de Vries <tom@codesourcery.com>
13745
13746 * gdbhooks.py (class DumpFn): Add and instantiate, adding command
13747 dump-fn.
13748
13749 2016-02-22 Richard Biener <rguenther@suse.de>
13750
13751 PR ipa/37448
13752 * ipa-inline-transform.c (inline_call): When not updating
13753 overall summaries adjust self size by the growth estimate.
13754 * ipa-inline.c (inline_to_all_callers_1): Add to the callers
13755 hash-set, do not update overall summaries here. Renamed from ...
13756 (inline_to_all_callers): ... this which is now wrapping the
13757 above and performing delayed overall summary update.
13758 (early_inline_small_functions): Delay updating of the overall
13759 summary.
13760
13761 2016-02-21 Markus Trippelsdorf <markus@trippelsdorf.de>
13762
13763 * tree-chkp.c (chkp_mark_invalid_bounds_walker): Initialize
13764 variable.
13765
13766 2016-02-19 Jakub Jelinek <jakub@redhat.com>
13767
13768 PR driver/69805
13769 * gcc.c (LINK_COMMAND_SPEC, GOMP_SELF_SPECS): Use
13770 :%* in %:gt() argument.
13771 (greater_than_spec_func): Adjust for expecting only numbers,
13772 if there are more than two numbers, compare the last two.
13773
13774 2016-02-19 Jonathan Wakely <jwakely@redhat.com>
13775
13776 * doc/invoke.texi (C++ Dialect Options): Clarify interaction of
13777 -Wnarrowing with -std.
13778
13779 2016-02-19 Jakub Jelinek <jakub@redhat.com>
13780
13781 PR c++/69851
13782 * expr.c (store_field): Don't use bit-field path if exp is
13783 COMPONENT_REF with TREE_ADDRESSABLE type, where TYPE_SIZE is
13784 different from bitsize, but DECL_SIZE of FIELD_DECL is bitsize
13785 and the assignment can be performed by bitwise copy. Formatting
13786 fix.
13787
13788 PR middle-end/69838
13789 * lra.c (lra_process_new_insns): If non-call exceptions are enabled,
13790 call copy_reg_eh_region_note_forward on before and/or after sequences
13791 and remove note from insn if it no longer can throw.
13792
13793 PR target/69820
13794 * config/i386/sse.md (VI_512): Only include V64QImode and V32HImode
13795 if TARGET_AVX512BW.
13796
13797 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13798
13799 * config/s390/vector.md: Add missing commutative operand markers
13800 to the patterns which qualify for one.
13801 * config/s390/vx-builtins.md: Likewise.
13802
13803 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13804
13805 * config/s390/vector.md (VI, VI_QHS): Add single element vector
13806 types to mode iterators.
13807 (vec_double): ... and mode attribute.
13808 * config/s390/vx-builtins.md (non_vec_int): Likewise.
13809
13810 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13811
13812 * config/s390/vector.md ("<ti*>add<mode>3", "<ti*>sub<mode>3"):
13813 Change the predicate of op2 from nonimmediate to general and let
13814 reload fix it if necessary.
13815
13816 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13817
13818 * config/s390/vecintrin.h (vec_sub_u128): Define missing macro.
13819
13820 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13821
13822 * config/s390/s390.c (s390_expand_vcond): Use the compare operand
13823 mode.
13824
13825 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13826
13827 * config/s390/s390-protos.h: Add s390_expand_vec_movstr prototype.
13828 * config/s390/s390.c (s390_expand_vec_movstr): New function.
13829 * config/s390/s390.md ("movstr<P:mode>"): Call
13830 s390_expand_vec_movstr.
13831
13832 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13833
13834 * config/s390/s390.md: Add missing output modifier for operand 1
13835 to print it as address properly.
13836
13837 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13838
13839 * config/s390/2827.md: Rename ooo_* insn attributes to zEC12_*.
13840 * config/s390/2964.md: New file.
13841 * config/s390/s390.c (s390_get_sched_attrmask): Use the right set
13842 of insn grouping attributes depending on the CPU level.
13843 (s390_get_unit_mask): New function.
13844 (s390_sched_score): Remove the OOO from the scheduling macros.
13845 Add loop to calculate a score for the instruction mix.
13846 (s390_sched_reorder): Likewise plus improve debug output.
13847 (s390_sched_variable_issue): Rename macros as above. Calculate
13848 the unit distances after actually scheduling an insn. Improve
13849 debug output.
13850 (s390_sched_init): Clear last_scheduled_unit_distance array.
13851 * config/s390/s390.md: Include 2964.md.
13852
13853 2016-02-18 Jakub Jelinek <jakub@redhat.com>
13854
13855 PR target/69671
13856 * config/i386/sse.md (*<floatsuffix>floatv2div2sf2_mask_1,
13857 *avx512vl_<code>v2div2qi2_mask_1, *avx512vl_<code><mode>v4qi2_mask_1,
13858 *avx512vl_<code><mode>v8qi2_mask_1, *avx512vl_<code><mode>v4hi2_mask_1,
13859 *avx512vl_<code>v2div2hi2_mask_1, *avx512vl_<code>v2div2si2_mask_1,
13860 *avx512f_<code>v8div16qi2_mask_1): New insns.
13861
13862 2016-02-18 Michael Meissner <meissner@linux.vnet.ibm.com>
13863
13864 PR target/68404
13865 * config/rs6000/predicates.md (fusion_gpr_addis): Revert
13866 2016-02-09 change.
13867
13868 * config/rs6000/rs6000.md (fusion_gpr_load_<mode>): Remove
13869 earlyclobber from target. Use wF constraint for fused memory
13870 address.
13871 (fusion_gpr_<P:mode>_<GPR_FUSION:mode>_load): Likewise.
13872
13873 2016-02-18 Jakub Jelinek <jakub@redhat.com>
13874 Martin Liska <mliska@suse.cz>
13875
13876 PR sanitizer/69863
13877 * cfgexpand.c (asan_sanitize_stack_p): New function.
13878 (partition_stack_vars): Use the function.
13879 (expand_stack_vars): Likewise.
13880 (defer_stack_allocation): Likewise.
13881 (expand_used_vars): Likewise.
13882
13883 2016-02-18 Richard Biener <rguenther@suse.de>
13884
13885 PR middle-end/69553
13886 * fold-const.c (operand_equal_p): Properly compare offsets for
13887 IMAGPART_EXPR and ARRAY_REF.
13888
13889 2016-02-18 Nick Clifton <nickc@redhat.com>
13890
13891 PR target/62254
13892 PR target/69610
13893 * config/arm/arm.c (arm_option_override_internal): Disable
13894 interworking if the target does not support thumb instructions.
13895 (arm_reload_in_hi): Handle the case where a register to register
13896 move needs reloading because there is no simple pattern to handle
13897 it.
13898 (arm_reload_out_hi): Likewise.
13899
13900 2016-02-18 Richard Biener <rguenther@suse.de>
13901
13902 PR middle-end/69854
13903 * match.pd: Don't use fold_binary or fold_unary for folding
13904 constants.
13905
13906 2016-02-17 Jakub Jelinek <jakub@redhat.com>
13907
13908 PR c++/69850
13909 * gimplify.c (gimplify_cond_expr): Call gimple_set_no_warning
13910 on the cond_stmt from TREE_NO_WARNING on COND_EXPR_COND.
13911 * gimple-ssa-nonnull-compare.c (do_warn_nonnull_compare): Don't
13912 warn on gimple_no_warning_p statements.
13913
13914 2016-02-17 Jonathan Wakely <jwakely@redhat.com>
13915
13916 * doc/extend.texi (C++ Attributes): Correct description of
13917 warn_unused type attribute.
13918
13919 2016-02-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13920
13921 * config/rs6000/altivec.md (*altivec_lvxl_<mode>_internal): Output
13922 correct instruction.
13923
13924 2016-02-17 Richard Biener <rguenther@suse.de>
13925
13926 PR rtl-optimization/69609
13927 * bb-reorder.c (struct bbro_basic_block_data): Add priority member.
13928 (find_traces_1_round): When ending a trace update cached priority
13929 of successors.
13930 (bb_to_key): Use cached priority when available.
13931 (copy_bb): Initialize cached priority.
13932 (reorder_basic_blocks_software_trace_cache): Likewise.
13933
13934 2016-02-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13935
13936 PR target/69161
13937 * config/aarch64/predicates.md (aarch64_comparison_operator_mode):
13938 New predicate.
13939 (aarch64_comparison_operator): Break overly long line into two.
13940 (aarch64_comparison_operation): Likewise.
13941 * config/aarch64/aarch64.md (cstorecc4): Use
13942 aarch64_comparison_operator_mode instead of
13943 aarch64_comparison_operator.
13944 (cstore<mode>4): Likewise.
13945 (aarch64_cstore<mode>): Likewise.
13946 (*cstoresi_insn_uxtw): Likewise.
13947 (cstore<mode>_neg): Likewise.
13948 (*cstoresi_neg_uxtw): Likewise.
13949
13950 2016-02-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13951
13952 PR target/69161
13953 * config/arm/predicates.md (arm_comparison_operator_mode):
13954 New predicate.
13955 * config/arm/arm.md (*mov_scc): Use arm_comparison_operator_mode
13956 instead of arm_comparison_operator.
13957 (*mov_negscc): Likewise.
13958 (*mov_notscc): Likewise.
13959 * config/arm/thumb2.md (*thumb2_mov_scc): Likewise.
13960 (*thumb2_mov_negscc): Likewise.
13961 (*thumb2_mov_negscc_strict_it): Likewise.
13962 (*thumb2_mov_notscc): Likewise.
13963 (*thumb2_mov_notscc_strict_it): Likewise.
13964
13965 2016-02-17 Wilco Dijkstra <wdijkstr@arm.com>
13966
13967 * config/aarch64/aarch64.c (aarch64_internal_mov_immediate):
13968 Add missing return.
13969
13970 2016-02-17 Eric Botcazou <ebotcazou@adacore.com>
13971
13972 * config/visium/visium.c (machine_libfunc_index): New enum.
13973 (machine_libfuncs): New structure.
13974 (visium_libfuncs): New static variable.
13975 (TARGET_INIT_LIBFUNCS): Define to...
13976 (visium_init_libfuncs): ...this. New function.
13977 (expand_block_move_4): Use the appropriate libfunc.
13978 (expand_block_move_2): Likewise.
13979 (expand_block_move_1): Likewise.
13980 (expand_block_set_4): Likewise.
13981 (expand_block_set_2): Likewise.
13982 (expand_block_set_1): Likewise.
13983 (visium_trampoline_init): Likewise.
13984
13985 2016-02-17 Nick Clifton <nickc@redhat.com>
13986
13987 * config/msp430/msp430.c (msp430_mcu_data): Sync with data from
13988 TI's devices.csv file as of March 2016.
13989
13990 2016-02-16 Kelvin Nilsen <kelvin@gcc.gnu.org>
13991
13992 PR Target/48344
13993 * opts-global.c (handle_common_deferred_options): Introduce and
13994 initialize two global variables to remember command-line options
13995 specifying a stack-limiting register.
13996 * opts.h: Add extern declarations of the two new global variables.
13997 * emit-rtl.c (init_emit_once): Initialize the stack_limit_rtx
13998 variable based on the values of the two new global variables.
13999
14000 2016-02-16 Jakub Jelinek <jakub@redhat.com>
14001
14002 PR c/69835
14003 * common.opt (Wnonnull-compare): New warning.
14004 * doc/invoke.texi (-Wnonnull): Remove text about comparison
14005 of arguments against NULL.
14006 (-Wnonnull-compare): Document.
14007 * Makefile.in (OBJS): Add gimple-ssa-nonnull-compare.o.
14008 * tree-pass.h (make_pass_warn_nonnull_compare): Declare.
14009 * passes.def (pass_warn_nonnull_compare): Add.
14010 * gimple-ssa-nonnull-compare.c: New file.
14011
14012 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
14013
14014 * config/aarch64/aarch64.c (cortexa57_tunings): Remove
14015 AARCH64_EXTRA_TUNE_RECIP_SQRT.
14016
14017 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
14018
14019 * config/aarch64/aarch64.c (use_rsqrt_p): Always use software
14020 reciprocal sqrt for -mlow-precision-recip-sqrt.
14021
14022 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
14023 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
14024
14025 * config/aarch64/aarch64.c (aarch64_expand_vector_init): Refactor,
14026 always use lane loads to construct non-constant vectors.
14027
14028 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
14029
14030 * config/aarch64/aarch64.md
14031 (arch64_sqrdml<SQRDMLH_AS:rdma_as>h_lane<mode>): Fix register
14032 constraints for operand 3.
14033 (aarch64_sqrdml<SQRDMLH_AS:rdma_as>h_laneq<mode>): Likewise.
14034
14035 2016-02-16 Jakub Jelinek <jakub@redhat.com>
14036 Richard Biener <rguenther@suse.de>
14037
14038 PR tree-optimization/69820
14039 * tree-vect-patterns.c (type_conversion_p): Return false if
14040 *orig_type is unsigned single precision or boolean.
14041 (vect_recog_dot_prod_pattern, vect_recog_widen_mult_pattern):
14042 Formatting fix.
14043
14044 2016-02-16 Jakub Jelinek <jakub@redhat.com>
14045
14046 PR rtl-optimization/69764
14047 PR rtl-optimization/69771
14048 * optabs.c (expand_binop): Ensure for shift optabs invalid CONST_INT
14049 op1 is valid for GET_MODE_INNER (mode) and force it into a reg.
14050
14051 2016-02-16 Richard Biener <rguenther@suse.de>
14052
14053 PR tree-optimization/69776
14054 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Get alias
14055 sets from caller.
14056 (indirect_refs_may_alias_p): Likewise.
14057 (refs_may_alias_p_1): Pass alias sets as from ao_ref.
14058 * tree-ssa-sccvn.c (vn_reference_lookup): Also adjust vr alias-set
14059 according to tbaa_p.
14060 * tree-ssa-dom.c (lookup_avail_expr): Add tbaa_p flag.
14061 (optimize_stmt): For redundant store discovery do not allow tbaa.
14062
14063 2016-02-16 Bernd Schmidt <bschmidt@redhat.com>
14064
14065 PR tree-optimization/69714
14066 * tree-ssa-math-opts.c (find_bswap_or_nop): Revert previous change.
14067 Return NULL if we have irrelevant high bytes on BIG_ENDIAN.
14068
14069 2016-02-16 Claudiu Zissulescu <claziss@synopsys.com>
14070
14071 * config/arc/arc-modes.def (CC_FPU, CC_FPU_UNEQ): New modes.
14072 * config/arc/arc-opts.h (FPU_SP, FPU_SF, FPU_SC, FPU_SD, FPU_DP)
14073 (FPU_DF, FPU_DC, FPU_DD, FXP_DP): Define.
14074 * config/arc/arc.c (arc_init): Check FPU options.
14075 (get_arc_condition_code): Handle new CC_FPU* modes.
14076 (arc_select_cc_mode): Likewise.
14077 (arc_conditional_register_usage): Allow 64 bit datum into even-odd
14078 register pair only. Allow access for ARCv2 accumulator.
14079 (gen_compare_reg): Whenever we have FPU support use FPU compare
14080 instructions.
14081 (arc_reorg): Don't generate brcc insns when FPU compare
14082 instructions are involved.
14083 * config/arc/arc.h (TARGET_DPFP): Add TARGET_FP_DPAX condition.
14084 (TARGET_OPTFPE): Add condition when ARC EM can use optimized
14085 floating point emulation.
14086 (ACC_REG_FIRST, ACC_REG_LAST, ACCL_REGNO, ACCH_REGNO): Define.
14087 (REVERSE_CONDITION): Add new CC_FPU* modes.
14088 (TARGET_FP_SP_BASE): Define.
14089 (TARGET_FP_DP_BASE): Likewise.
14090 (TARGET_FP_SP_FUSED): Likewise.
14091 (TARGET_FP_DP_FUSED): Likewise.
14092 (TARGET_FP_SP_CONV): Likewise.
14093 (TARGET_FP_DP_CONV): Likewise.
14094 (TARGET_FP_SP_SQRT): Likewise.
14095 (TARGET_FP_DP_SQRT): Likewise.
14096 (TARGET_FP_DP_AX): Likewise.
14097 * config/arc/arc.md (ARCV2_ACC): New constant.
14098 (type): New fpu type attribute.
14099 (SDF): Conditional iterator.
14100 (cstore<mode>, cbranch<mode>): Change expand condition.
14101 (addsf3, subsf3, mulsf3, adddf3, subdf3, muldf3): New expands,
14102 handles FPU/FPX cases as well.
14103 * config/arc/arc.opt (mfpu): New option.
14104 * config/arc/fpx.md (addsf3_fpx, subsf3_fpx, mulsf3_fpx):
14105 Renamed.
14106 (adddf3, muldf3, subdf3): Removed.
14107 * config/arc/predicates.md (proper_comparison_operator): Recognize
14108 CC_FPU* modes.
14109 * config/arc/fpu.md: New file.
14110 * doc/invoke.texi (ARC Options): Document mfpu option.
14111
14112 2016-02-16 Richard Biener <rguenther@suse.de>
14113
14114 PR rtl-optimization/69291
14115 * ifcvt.c (noce_try_store_flag_constants): Re-instantiate
14116 noce_operand_ok check.
14117
14118 2016-02-16 Tom de Vries <tom@codesourcery.com>
14119
14120 PR lto/67709
14121 * omp-low.c (simd_clone_create): Remove call to
14122 symtab->call_cgraph_insertion_hooks.
14123
14124 2016-02-16 Jakub Jelinek <jakub@redhat.com>
14125
14126 PR tree-optimization/69802
14127 * tree-ssa-reassoc.c (update_range_test): If op is
14128 SSA_NAME_IS_DEFAULT_DEF, give up unless tem is a positive
14129 op == 1 test of precision 1 integral op, otherwise handle
14130 that case as op itself. Fix up formatting.
14131 (optimize_range_tests_to_bit_test, optimize_range_tests): Fix
14132 up formatting.
14133
14134 2016-02-16 Richard Biener <rguenther@suse.de>
14135
14136 PR tree-optimization/69586
14137 * tree-vrp.c (register_edge_assert_for_2): Handle all integral
14138 types for conversion sources.
14139
14140 2016-02-16 Richard Biener <rguenther@suse.de>
14141
14142 PR middle-end/69801
14143 * fold-const.c (operand_equal_p): For COND_EXPR zero operand
14144 mask OEP_ADDRESS_OF.
14145
14146 2016-02-16 Alan Modra <amodra@gmail.com>
14147
14148 PR target/68973
14149 * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Rewrite splitter.
14150 (p8_mtvsrd_df, p8_mtvsrd_sf): New.
14151 (p8_mtvsrd_1, p8_mtvsrd_2): Delete.
14152 (p8_mtvsrwz): New.
14153 (p8_mtvsrwz_1, p8_mtvsrwz_2): Delete.
14154 (p8_xxpermdi_<mode>): Take two DF inputs rather than one TF.
14155 (p8_fmrgow_<mode>): Likewise.
14156 (reload_vsx_from_gpr<mode>): Make clobber IF. Adjust for above
14157 changes.
14158 (reload_fpr_from_gpr<mode>): Similarly. Use "d" for op0 constraint.
14159 (reload_vsx_from_gprsf): Use p8_mtvsrd_sf rather than attempting
14160 to use movdi_internal64. Remove op0_di.
14161 * config/rs6000/vsx.md (vsx_xscvspdpn_directmove): Make op1 SFmode.
14162
14163 2016-02-15 Evandro Menezes <e.menezes@samsung.com>
14164
14165 Add support for the FCCMP insn types
14166
14167 * config/aarch64/aarch64.md (fccmp): Change insn type.
14168 (fccmpe): Likewise.
14169 * config/aarch64/thunderx.md (thunderx_fcmp): Add "fccmp{s,d}" types.
14170 * config/arm/cortex-a53.md (cortex_a53_fpalu): Likewise.
14171 * config/arm/cortex-a57.md (cortex_a57_fp_cmp): Likewise.
14172 * config/arm/xgene1.md (xgene1_fcmp): Likewise.
14173 * config/arm/exynos-m1.md (exynos_m1_fp_ccmp): New insn reservation.
14174 * config/arm/types.md (fccmps): Add new insn type.
14175 (fccmpd): Likewise.
14176
14177 2016-02-15 Bernd Edlinger <bernd.edlinger@hotmail.de>
14178
14179 * alias.c (get_alias_set): Fix a typo in comment.
14180
14181 2016-02-15 Richard Biener <rguenther@suse.de>
14182
14183 PR tree-optimization/69595
14184 * match.pd: Complete range test simplification to true.
14185
14186 2016-02-15 Bernd Schmidt <bschmidt@redhat.com>
14187
14188 PR rtl-optimization/69648
14189 * lra-constraints.c (update_ebb_live_info): Don't remove sets of
14190 pic_offset_table_rtx.
14191
14192 PR rtl-optimization/69752
14193 * ira.c (update_equiv_regs): When looking for more than a single SET,
14194 also take other side effects into account.
14195
14196 2016-02-15 Marcin Kościelnicki <koriakin@0x04.net>
14197
14198 * config/s390/s390.c (s390_function_profiler): Add a new sequence
14199 for z900+ CPUs in 31-bit mode.
14200
14201 2016-02-15 Marcin Kościelnicki <koriakin@0x04.net>
14202
14203 * common/config/s390/s390-common.c (s390_supports_split_stack):
14204 New function.
14205 (TARGET_SUPPORTS_SPLIT_STACK): New macro.
14206 * config/s390/s390-protos.h: Add s390_expand_split_stack_prologue.
14207 * config/s390/s390.c (struct machine_function): New field
14208 split_stack_varargs_pointer.
14209 (s390_register_info): Mark r12 as clobbered if it'll be used as temp
14210 in s390_emit_prologue.
14211 (s390_emit_prologue): Use r12 as temp if r1 is taken by split-stack
14212 vararg pointer.
14213 (morestack_ref): New global.
14214 (SPLIT_STACK_AVAILABLE): New macro.
14215 (s390_expand_split_stack_prologue): New function.
14216 (s390_live_on_entry): New function.
14217 (s390_va_start): Use split-stack vararg pointer if appropriate.
14218 (s390_asm_file_end): Emit the split-stack note sections.
14219 (TARGET_EXTRA_LIVE_ON_ENTRY): New macro.
14220 * config/s390/s390.md (UNSPEC_STACK_CHECK): New unspec.
14221 (UNSPECV_SPLIT_STACK_CALL): New unspec.
14222 (UNSPECV_SPLIT_STACK_DATA): New unspec.
14223 (split_stack_prologue): New expand.
14224 (split_stack_space_check): New expand.
14225 (split_stack_data): New insn.
14226 (split_stack_call): New expand.
14227 (split_stack_call_*): New insn.
14228 (split_stack_cond_call): New expand.
14229 (split_stack_cond_call_*): New insn.
14230
14231 2016-02-15 Richard Biener <rguenther@suse.de>
14232
14233 PR tree-optimization/69783
14234 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
14235 Add trivially correct cases.
14236
14237 2016-02-15 Tom de Vries <tom@codesourcery.com>
14238
14239 PR lto/69655
14240 * lto-cgraph.c (input_offload_tables): Add and handle bool parameter
14241 do_force_output.
14242 * lto-streamer.h (input_offload_tables): Add and handle bool parameter.
14243
14244 2016-02-15 Richard Biener <rguenther@suse.de>
14245
14246 PR tree-optimization/69776
14247 * tree-ssa-sccvn.h (vn_reference_lookup): Adjust prototype.
14248 * tree-ssa-sccvn.c (vn_reference_lookup): Add parameter to
14249 indicate whether we can use TBAA to disambiguate against stores.
14250 Use alias-set zero if not.
14251 (visit_reference_op_store): Do not use TBAA when looking up
14252 redundant stores.
14253 * tree-ssa-pre.c (compute_avail): Use TBAA here.
14254 (eliminate_dom_walker::before_dom_children): But not when looking
14255 up redundant stores.
14256
14257 2016-02-14 John David Anglin <danglin@gcc.gnu.org>
14258
14259 * config/pa/pa.md (absqi2, absghi2, bswaphi2, bswapsi2, bswapdi2): New.
14260
14261 2016-02-14 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
14262
14263 * config/i386/znver1.md
14264 (znver1_pop, znver1_pop_mem,
14265 znver1_load_imov_double_store,
14266 znver1_load_imov_direct_store,
14267 znver1_load_imov_direct_load,
14268 znver1_load_imov_double_load): Add new.
14269 (znver1_insn, znver1_insn_load): Add icmov type.
14270 (znver1_sseavx_fma,
14271 znver1_sseavx_fma_load,
14272 znver1_avx256_fma,
14273 znver1_avx256_fma_load): Fix pipe usage.
14274
14275 2016-02-14 Alan Modra <amodra@gmail.com>
14276
14277 PR target/68973
14278 * reloads.c (find_reloads_address_1): For pre/post-inc/dec
14279 with an invalid hard reg, reload just the reg not the entire
14280 pre/post-inc/dec address expression.
14281
14282 2016-02-13 Oleg Endo <olegendo@gcc.gnu.org>
14283
14284 PR target/67260
14285 * config/sh/sh.md (sibcall_value_pcrel): Replace =&k scratch reg with
14286 fixed R1_REG scratch reg.
14287 (sibcall_value_pcrel_fdpic): Likewise.
14288
14289 2016-02-13 Oleg Endo <olegendo@gcc.gnu.org>
14290
14291 PR target/67636
14292 PR target/64345
14293 * config/sh/sh.md (*zero_extract_3): New insn_and_split pattern.
14294
14295 2016-02-12 Walter Lee <walt@tilera.com>
14296
14297 * config/tilepro/t-tilepro: Replace CC_FOR_BUILD with CXX_FOR_BUILD.
14298 * config/tilegx/t-tilegx: Likewise.
14299
14300 2016-02-12 David Malcolm <dmalcolm@redhat.com>
14301
14302 PR other/69554
14303 * diagnostic-show-locus.c (struct line_span): New struct.
14304 (layout::get_first_line): Delete.
14305 (layout::get_last_line): Delete.
14306 (layout::get_num_line_spans): New member function.
14307 (layout::get_line_span): Likewise.
14308 (layout::print_heading_for_line_span_index_p): Likewise.
14309 (layout::get_expanded_location): Likewise.
14310 (layout::calculate_line_spans): Likewise.
14311 (layout::m_first_line): Delete.
14312 (layout::m_last_line): Delete.
14313 (layout::m_line_spans): New field.
14314 (layout::layout): Update comment. Replace m_first_line and
14315 m_last_line with m_line_spans, replacing their initialization
14316 with a call to calculate_line_spans.
14317 (diagnostic_show_locus): When printing source lines and
14318 annotations, rather than looping over a single span
14319 of lines, instead loop over each line_span within
14320 the layout, with an inner loop over the lines within them.
14321 Call the context's start_span callback when changing line spans.
14322 * diagnostic.c (diagnostic_initialize): Initialize start_span.
14323 (diagnostic_build_prefix): Break out the building of the location
14324 part of the string into...
14325 (diagnostic_get_location_text): ...this new function, rewriting
14326 it from nested ternary expressions to a sequence of "if"
14327 statements.
14328 (default_diagnostic_start_span_fn): New function.
14329 * diagnostic.h (diagnostic_start_span_fn): New typedef.
14330 (diagnostic_context::start_span): New field.
14331 (default_diagnostic_start_span_fn): New prototype.
14332
14333 2016-02-12 David Malcolm <dmalcolm@redhat.com>
14334
14335 PR driver/69779
14336 * gcc.c (driver::finalize): Fix cleanup of "specs".
14337
14338 2016-02-12 David Malcolm <dmalcolm@redhat.com>
14339
14340 PR driver/69265
14341 PR driver/69453
14342 * gcc.c (driver::driver): Initialize m_option_suggestions.
14343 (driver::~driver): Clean up m_option_suggestions.
14344 (suggest_option): Convert to...
14345 (driver::suggest_option): ...this, and split out into
14346 driver::build_option_suggestions and find_closest_string.
14347 (driver::build_option_suggestions): New function, from
14348 first half of suggest_option. Special-case
14349 OPT_fsanitize_ and OPT_fsanitize_recover_, making use of
14350 the sanitizer_opts array. For options of enum types, add the
14351 various enum values to the candidate strings.
14352 (driver::handle_unrecognized_options): Remove "const".
14353 * gcc.h (driver::handle_unrecognized_options): Likewise.
14354 (driver::build_option_suggestions): New decl.
14355 (driver::suggest_option): New decl.
14356 (driver::m_option_suggestions): New field.
14357 * opts-common.c (add_misspelling_candidates): New function.
14358 * opts.c (sanitizer_opts): Remove decl of struct sanitizer_opts_s
14359 and make non-static.
14360 * opts.h (sanitizer_opts): New array decl.
14361 (add_misspelling_candidates): New function decl.
14362 * spellcheck.c (find_closest_string): New function.
14363 * spellcheck.h (find_closest_string): New function decl.
14364
14365 2016-02-12 Jakub Jelinek <jakub@redhat.com>
14366
14367 PR rtl-optimization/69764
14368 PR rtl-optimization/69771
14369 * optabs.c (expand_binop_directly): For shift_optab_p, force
14370 convert_modes with VOIDmode if xop1 has VOIDmode.
14371
14372 2016-02-12 Ilya Enkovich <enkovich.gnu@gmail.com>
14373
14374 PR target/69729
14375 * lto-streamer-out.c (lto_output): Use thunk.add_pointer_bounds_args
14376 to correctly determine instrumentation thunks.
14377
14378 2016-02-12 Jakub Jelinek <jakub@redhat.com>
14379
14380 PR ipa/69241
14381 * ipa-split.c (split_function): If split part returns TREE_ADDRESSABLE
14382 type by reference, force lhs on the call.
14383
14384 PR ipa/68672
14385 * ipa-split.c (split_function): Don't compute/use main_part_return_p.
14386 Compute retval and retbnd early in all cases if split_part_return_p
14387 and return_bb is not EXIT. Remove all clobber stmts and reset
14388 all debug stmts that refer to SSA_NAMEs defined in split part,
14389 except if it is retval, in that case replace the old retval with the
14390 lhs of the call to the split part.
14391
14392 2016-02-12 Kugan Vivekanandarajah <kuganv@linaro.org>
14393
14394 revert:
14395 2016-02-12 Kugan Vivekanandarajah <kuganv@linaro.org>
14396
14397 PR middle-end/66726
14398 * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
14399 whose result is used in PHI.
14400 (maybe_optimize_range_tests): Likewise.
14401 (final_range_test_p): Likweise.
14402
14403 2016-02-12 Kugan Vivekanandarajah <kuganv@linaro.org>
14404
14405 PR middle-end/66726
14406 * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
14407 whose result is used in PHI.
14408 (maybe_optimize_range_tests): Likewise.
14409 (final_range_test_p): Likweise.
14410
14411 2016-02-12 Jakub Jelinek <jakub@redhat.com>
14412
14413 * cgraph.c: Spelling fixes - behaviour -> behavior and
14414 neighbour -> neighbor.
14415 * target.def: Likewise.
14416 * sel-sched.c: Likewise.
14417 * config/mips/mips.c: Likewise.
14418 * config/arc/arc.md: Likewise.
14419 * config/arm/cortex-a57.md: Likewise.
14420 * config/arm/arm.c: Likewise.
14421 * config/arm/neon.md: Likewise.
14422 * config/arm/arm-c.c: Likewise.
14423 * config/vms/vms-c.c: Likewise.
14424 * config/s390/s390.c: Likewise.
14425 * config/i386/znver1.md: Likewise.
14426 * config/i386/i386.c: Likewise.
14427 * config/ia64/hpux-unix2003.h: Likewise.
14428 * config/msp430/msp430.md: Likewise.
14429 * config/rx/rx.c: Likewise.
14430 * config/rx/rx.md: Likewise.
14431 * config/aarch64/aarch64-simd.md: Likewise.
14432 * config/aarch64/aarch64.c: Likewise.
14433 * config/nvptx/nvptx.c: Likewise.
14434 * config/bfin/bfin.c: Likewise.
14435 * config/cris/cris.opt: Likewise.
14436 * config/rs6000/rs6000.c: Likewise.
14437 * target.h: Likewise.
14438 * spellcheck.c: Likewise.
14439 * ira-build.c: Likewise.
14440 * tree-inline.c: Likewise.
14441 * builtins.c: Likewise.
14442 * lra-constraints.c: Likewise.
14443 * explow.c: Likewise.
14444 * hwint.h: Likewise.
14445 * targhooks.c: Likewise.
14446 * tree-vect-data-refs.c: Likewise.
14447 * expr.c: Likewise.
14448 * doc/tm.texi: Likewise.
14449 * doc/extend.texi: Likewise.
14450 * doc/install.texi: Likewise.
14451 * doc/md.texi: Likewise.
14452 * tree-ssa-tail-merge.c: Likewise.
14453 * sched-int.h: Likewise.
14454 * match.pd: Likewise.
14455 * sched-ebb.c: Likewise.
14456 * target.def (omit_struct_return_reg): Likewise.
14457 * gimple-ssa-isolate-paths.c: Likewise.
14458 (find_implicit_erroneous_behaviour): Renamed to...
14459 (find_implicit_erroneous_behavior): ... this.
14460 (find_explicit_erroneous_behaviour): Renamed to...
14461 (find_explicit_erroneous_behavior): ... this.
14462 (gimple_ssa_isolate_erroneous_paths): Adjust caller.
14463
14464 2016-02-11 Segher Boessenkool <segher@kernel.crashing.org>
14465
14466 PR rtl-optimization/64682
14467 PR rtl-optimization/69567
14468 PR rtl-optimization/69737
14469 * combine.c (distribute_notes) <REG_DEAD>: If the register is set
14470 in I2 as well, just lose it.
14471
14472 2016-02-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14473
14474 * config/aarch64/aarch64.c (aarch64_last_printed_arch_string):
14475 New variable.
14476 (aarch64_last_printed_tune_string): Likewise.
14477 (aarch64_declare_function_name): Only output .arch assembler
14478 directive if it will be different from the previously output
14479 directive. Same for .tune comment but only if -dA is set.
14480 (aarch64_start_file): New function.
14481 (TARGET_ASM_FILE_START): Define.
14482
14483 2016-02-11 David Malcolm <dmalcolm@redhat.com>
14484
14485 PR plugins/69758
14486 * Makefile.in (PLUGIN_HEADERS): Add params.list.
14487
14488 2016-02-11 Jakub Jelinek <jakub@redhat.com>
14489
14490 PR target/65313
14491 * tree-vect-slp.c (vect_schedule_slp_instance): Avoid
14492 -Wmaybe-uninitialized warning.
14493
14494 2016-02-11 Oleg Endo <olegendo@gcc.gnu.org>
14495
14496 PR target/69713
14497 * config/sh/sh.md (casesi_worker_0): Add T_REG use.
14498
14499 2016-02-11 Richard Biener <rguenther@suse.de>
14500
14501 PR rtl-optimization/69291
14502 * ifcvt.c (noce_try_store_flag_constants): Do not allow
14503 subexpressions affected by changing the result.
14504
14505 2016-02-10 Vladimir Makarov <vmakarov@redhat.com>
14506
14507 PR target/69148
14508 * lra-constraints.c (curr_insn_transform): Find in/out operands
14509 for secondary memory moves. Update dups.
14510
14511 2016-02-10 Yuri Rumyantsev <ysrumyan@gmail.com>
14512
14513 PR tree-optimization/69652
14514 * tree-vect-loop.c (optimize_mask_stores): Move declaration of STMT1
14515 to nested loop, did source re-formatting, skip debug statements,
14516 add check on statement with volatile operand, remove dead scalar
14517 statements.
14518
14519 2016-02-10 Jakub Jelinek <jakub@redhat.com>
14520 Patrick Palka <ppalka@gcc.gnu.org>
14521
14522 PR ipa/69241
14523 PR c++/69649
14524 * gimplify.c (gimplify_modify_expr): Set lhs even for noreturn
14525 calls if the return type is TREE_ADDRESSABLE.
14526 * cgraphunit.c (cgraph_node::expand_thunk): Likewise.
14527 * ipa-split.c (split_function): Fix doubled "we" in comment.
14528 Use void return type for the split part even if
14529 !split_point->split_part_set_retval.
14530
14531 2016-02-10 Bin Cheng <bin.cheng@arm.com>
14532
14533 PR tree-optimization/68021
14534 * tree-ssa-loop-ivopts.c (get_computation_aff): Set ratio to 1 if
14535 when computing the value of biv cand by itself.
14536
14537 2016-02-10 Wilco Dijkstra <wdijkstr@arm.com>
14538
14539 * config/aarch64/aarch64.c (cortexa53_tunings): Enable AES fusion.
14540 (cortexa57_tunings): Likewise.
14541 (cortexa72_tunings): Likewise.
14542 (arch_macro_fusion_pair_p): Add support for AES fusion.
14543 * config/aarch64/aarch64-fusion-pairs.def: Add AES_AESMC entry.
14544 * config/arm/aarch-common.c (aarch_crypto_can_dual_issue):
14545 Allow virtual registers before reload so early scheduling works.
14546 * config/arm/cortex-a57.md (cortex_a57_crypto_simple): Use
14547 correct latency and pipeline.
14548 (cortex_a57_crypto_complex): Likewise.
14549 (cortex_a57_crypto_xor): Likewise.
14550 (define_bypass): Add AES bypass.
14551
14552 2016-02-10 Richard Biener <rguenther@suse.de>
14553
14554 PR tree-optimization/69726
14555 * passes.def: Add DCE pass before late uninit.
14556 * match.pd: Add A ? B : (!A ? C : X) -> A ? B : C patterns to
14557 really fixup if-conversions job.
14558
14559 2016-02-10 Wilco Dijkstra <wdijkstr@arm.com>
14560
14561 * config/arm/arm.c (arm_cortex_a53_tune): Enable AES fusion.
14562 (arm_cortex_a57_tune): Likewise.
14563 (aarch_macro_fusion_pair_p): Add support for AES fusion.
14564 * config/arm/arm-protos.h (fuse_ops): Add FUSE_AES_AESMC.
14565
14566 2016-02-10 Eric Botcazou <ebotcazou@adacore.com>
14567
14568 * timevar.def (TV_PHASE_DBGINFO): Delete.
14569 (TV_PHASE_CHECK_DBGINFO): Likewise.
14570 * varpool.c (varpool_node::assemble_decl): Do not change timevar.
14571
14572 2016-02-10 Richard Biener <rguenther@suse.de>
14573
14574 PR tree-optimization/69719
14575 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
14576 Adjust previous fix by ensuring that dr_a1 is left of dr_a2.
14577
14578 2016-02-09 Andrew Pinski <apinski@cavium.com>
14579
14580 PR tree-opt/69282
14581 * optabs-tree.c (expand_vec_cond_expr_p): Don't early return if
14582 get_vcond_mask_icode returns false.
14583
14584 2016-02-09 Michael Meissner <meissner@linux.vnet.ibm.com>
14585
14586 PR target/68404
14587 * config/rs6000/predicates.md (fusion_gpr_addis): Prevent fusing
14588 an ADDIS that adds a pointer to a large constant that sets the
14589 upper16 bits with a load operation.
14590
14591 2016-02-09 Charles Baylis <charles.baylis@linaro.org>
14592
14593 PR target/68532
14594 * config/arm/arm.c (arm_evpc_neon_vzip): Allow for big endian lane
14595 order.
14596 * config/arm/arm_neon.h (vzipq_s8): Adjust shuffle patterns for big
14597 endian.
14598 (vzipq_s16): Likewise.
14599 (vzipq_s32): Likewise.
14600 (vzipq_f32): Likewise.
14601 (vzipq_u8): Likewise.
14602 (vzipq_u16): Likewise.
14603 (vzipq_u32): Likewise.
14604 (vzipq_p8): Likewise.
14605 (vzipq_p16): Likewise.
14606
14607 2016-02-09 Charles Baylis <charles.baylis@linaro.org>
14608
14609 PR target/68532
14610 * config/arm/arm.c (neon_endian_lane_map): New function.
14611 (neon_vector_pair_endian_lane_map): New function.
14612 (arm_evpc_neon_vuzp): Allow for big endian lane order.
14613 * config/arm/arm_neon.h (vuzpq_s8): Adjust shuffle patterns for big
14614 endian.
14615 (vuzpq_s16): Likewise.
14616 (vuzpq_s32): Likewise.
14617 (vuzpq_f32): Likewise.
14618 (vuzpq_u8): Likewise.
14619 (vuzpq_u16): Likewise.
14620 (vuzpq_u32): Likewise.
14621 (vuzpq_p8): Likewise.
14622 (vuzpq_p16): Likewise.
14623
14624 2016-02-11 Alexandre Oliva <aoliva@redhat.com>
14625
14626 PR target/69634
14627 * regstat.c (regstat_bb_compute_calls_crossed): Disregard
14628 debug insns.
14629
14630 2016-02-09 Uros Bizjak <ubizjak@gmail.com>
14631
14632 * config/i386/i386.md (insv<mode>_1): Use gen_int_mode to
14633 truncate const_int operand 1 to QImode.
14634
14635 2016-02-09 Eric Botcazou <ebotcazou@adacore.com>
14636
14637 * gimple-ssa-backprop.c (optimize_phi): Do not replace an argument
14638 corresponding to an abnormal edge.
14639
14640 2016-02-09 Tom de Vries <tom@codesourcery.com>
14641
14642 PR tree-optimization/69599
14643 * tree-ssa-structalias.c (fndecl_maybe_in_other_partition): New
14644 function.
14645 (find_func_aliases_for_builtin_call, find_func_clobbers)
14646 (ipa_pta_execute): Handle case that foo and foo._0 are not in same lto
14647 partition.
14648
14649 2016-02-09 Richard Biener <rguenther@suse.de>
14650
14651 PR tree-optimization/69715
14652 * tree-ssa.c (execute_update_addresses_taken): Mark non-decl
14653 LHS on calls as non-rewritable.
14654
14655 2016-02-09 Tom de Vries <tom@codesourcery.com>
14656
14657 PR lto/69707
14658 * lto-wrapper.c (append_diag_options): New function.
14659 (compile_offload_image): Call append_diag_options.
14660
14661 2016-02-08 Sandra Loosemore <sandra@codesourcery.com>
14662
14663 PR other/69722
14664 * doc/extend.texi (Flag Output Operands): Correct sectioning.
14665 Minor copy-edit to fix verb tenses.
14666
14667 2016-02-08 Jakub Jelinek <jakub@redhat.com>
14668
14669 PR tree-optimization/69209
14670 * ipa-split.c (split_function): If split part is not
14671 returning retval, retval has gimple type but is not
14672 gimple value, force it into a SSA_NAME first.
14673
14674 2016-02-08 Nicklas Bo Jensen <nbjensen@gmail.com>
14675
14676 * doc/tree-ssa.texi (Preserving the virtual SSA form): Remove
14677 outdated section.
14678
14679 2016-02-08 Jason Merrill <jason@redhat.com>
14680
14681 PR c++/69631
14682 * convert.c (convert_to_integer_1): Check dofold on truncation
14683 distribution.
14684 (convert_to_pointer_maybe_fold, convert_to_real_maybe_fold)
14685 (convert_to_integer_maybe_fold, convert_to_complex_maybe_fold):
14686 Rename from *_nofold.
14687 * convert.h (convert_to_pointer_nofold, convert_to_integer_nofold)
14688 (convert_to_real_nofold, convert_to_complex_nofold): New inlines.
14689
14690 2016-02-08 Bernd Schmidt <bschmidt@redhat.com>
14691
14692 PR target/60410
14693 * tree.c (build_common_tree_nodes): Remove short_double argument.
14694 All callers changed.
14695 * tree.h (build_common_tree_nodes): Adjust declaration.
14696 * doc/invoke.texi (-fshort-double): Remove documentation.
14697 * config/mips/t-img-elf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
14698 MULTILIB_EXCEPTIONS): Remove -fshort-double variant.
14699 * lto-wrapper.c (merge_and_complain, append_compiler_options)
14700 (append_linker_options): Don't handle OPT_fshort_double.
14701
14702 PR rtl-optimization/68730
14703 * lra-remat.c (insn_to_cand_activation): New static variable.
14704 (lra_remat): Allocate and free it.
14705 (create_cand): New arg activation. Initialize a field in
14706 insn_to_cand_activation if it is nonnull.
14707 (create_cands): Pass the activation insn to create_cand when making
14708 a candidate involving an output reload. Reorganize code a little.
14709 (do_remat): Keep track of active status of candidates in a separate
14710 bitmap.
14711
14712 2016-02-08 Richard Biener <rguenther@suse.de>
14713
14714 PR tree-optimization/69719
14715 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
14716 Properly use absolute of the difference of the two offsets to
14717 compare or adjust the segment length.
14718
14719 2016-02-08 Richard Biener <rguenther@suse.de>
14720 Jeff Law <law@redhat.com>
14721
14722 PR target/68273
14723 * tree-ssanames.c (make_ssa_name_fn): Always use unqualified
14724 types for anonymous SSA names.
14725
14726 2016-02-08 Richard Biener <rguenther@suse.de>
14727
14728 PR rtl-optimization/69274
14729 * ira.c (ira_setup_alts): Do not change recog_data.operand order.
14730
14731 2016-02-08 Jeff Law <law@redhat.com>
14732
14733 PR tree-optimization/65917
14734 * tree-ssa-dom.c (record_temporary_equivalences): Record both
14735 equivalences from if (x == y) style conditionals.
14736 (loop_depth_of_name): Remove.
14737 (record_equality): Remove loop depth check.
14738 * tree-ssa-scopedtables.h (const_and_copies): Refine comments.
14739 (const_and_copies::record_const_or_copy_raw): New member function.
14740 * tree-ssa-scopedtables.c
14741 (const_and_copies::record_const_or_copy_raw): New, factored out of
14742 (const_and_copies::record_const_or_copy): Call new member function.
14743
14744 2016-02-05 Jeff Law <law@redhat.com>
14745
14746 PR tree-optimization/68541
14747 * gimple-ssa-split-paths.c: Include tree-cfg.h and params.h.
14748 (count_stmts_in_block): New function.
14749 (poor_ifcvt_candidate_code): Likewise.
14750 (is_feasible_trace): Add some heuristics to determine when path
14751 splitting is profitable.
14752 (find_block_to_duplicate_for_splitting_paths): Make sure the graph
14753 is a diamond with a single exit.
14754
14755 2016-02-05 Martin Sebor <msebor@redhat.com>
14756
14757 PR c++/69662
14758 * doc/invoke.texi: Update -Wplacement-new to take an optional
14759 argument.
14760
14761 2016-02-06 Richard Henderson <rth@redhat.com>
14762
14763 PR c/69643
14764 * tree.c (tree_nop_conversion_p): Do not strip casts into or
14765 out of non-standard address spaces.
14766
14767 2016-02-05 Jakub Jelinek <jakub@redhat.com>
14768
14769 PR rtl-optimization/69691
14770 * lra-eliminations.c (move_plus_up): Don't add the addend twice.
14771
14772 2016-02-05 Pat Haugen <pthaugen@us.ibm.com>
14773
14774 * config/rs6000/crypto.md (crypto_vpermxor_<mode>): Correct insn type.
14775 * config/rs6000/rs6000.md (mov<mode>_hardfloat): Likewise.
14776 (*ieee128_mfvsrd_64bit): Likewise.
14777 (*ieee128_mfvsrd_32bit): Likewise.
14778
14779 2016-02-05 Ilya Enkovich <enkovich.gnu@gmail.com>
14780
14781 PR target/69369
14782 Revert r232560:
14783 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
14784
14785 * cgraphunit.c (cgraph_node::reset): Clear thunk info and
14786 instrumented_version.
14787
14788 2016-01-05 Jeremy Bennett <jeremy.bennett@embecosm.com>
14789
14790 * doc/invoke.texi (Optimize Options): In table of --param options
14791 rename second occurrence of tracer-min-branch-ratio to
14792 tracer-min-branch-probability, rename
14793 tracer-min-branch-ratio-feedback to
14794 tracer-min-branch-probability-feedback and clarify description,
14795 rename sched-spec-state-edge-prob-cutoff to
14796 sched-state-edge-prob-cutoff, rename selsched-max-insns-to-rename
14797 to selsched-insns-to-rename, rename lto-minpartition to
14798 lto-min-partition, delete reorder-blocks-duplicate and
14799 reorder-blocks-duplicate-feedback.
14800
14801 2016-02-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
14802
14803 * config/s390/s390.c (s390_register_info_set_ranges): Remove
14804 superfluous loops.
14805
14806 2016-02-05 Dominik Vogt <vogt@linux.vnet.ibm.com>
14807
14808 * doc/extend.texi: S/390: Correct some typos.
14809
14810 2016-02-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
14811
14812 * config/s390/s390.c (s390_emit_call): Add missing 64 bit check.
14813
14814 2016-02-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
14815
14816 PR target/69625
14817 * config/s390/s390.c (SAVE_SLOT_NONE, SAVE_SLOT_STACK): New defines.
14818 (s390_register_info_gprtofpr): Use new macros above.
14819 (s390_register_info_stdarg_fpr): Adjust max_fpr to better match
14820 its name.
14821 (s390_register_info_stdarg_gpr): Adjust max_gpr to better match
14822 its name. Adjust restore and save gpr ranges.
14823 (s390_register_info_set_ranges): New function.
14824 (s390_register_info): Use new macros above. Call
14825 s390_register_info_set_ranges.
14826 (s390_optimize_register_info): Likewise.
14827 (s390_hard_regno_rename_ok): Use new macros.
14828 (s390_hard_regno_scratch_ok): Likewise.
14829 (s390_emit_epilogue): Likewise.
14830 (s390_can_use_return_insn): Likewise.
14831 (s390_optimize_prologue): Likewise.
14832 * config/s390/s390.md (GPR2_REGNUM, GPR6_REGNUM): New constants.
14833
14834 2016-02-05 Jakub Jelinek <jakub@redhat.com>
14835
14836 PR bootstrap/69677
14837 * config/i386/i386.c (convert_scalars_to_vector): Readd stack
14838 alignment fixes.
14839 (ix86_option_override_internal): Disable TARGET_STV even for
14840 -m{incoming,preferred}-stack-boundary=3.
14841
14842 2016-02-03 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
14843
14844 * config.gcc: Mark deprecated rtems targets as obsolete.
14845
14846 2016-02-04 Segher Boessenkool <segher@kernel.crashing.org>
14847
14848 PR rtl-optimization/64682
14849 PR rtl-optimization/69567
14850 * combine.c (distribute_notes) <REG_DEAD>: Place the death note
14851 before I2 only if the register is both used and set in I2.
14852
14853 2016-02-04 DJ Delorie <dj@redhat.com>
14854
14855 * config/msp430/msp430.c (msp430_start_function): Add function type.
14856
14857 2016-02-04 Jakub Jelinek <jakub@redhat.com>
14858
14859 PR fortran/69368
14860 * tree-dfa.c (get_ref_base_and_extent): Remove unreachable code.
14861
14862 2016-02-04 Uros Bizjak <ubizjak@gmail.com>
14863
14864 PR rtl-optimization/69577
14865 Revert:
14866 2015-10-29 Richard Henderson <rth@redhat.com>
14867
14868 PR target/68124
14869 PR rtl-opt/67609
14870 * config/i386/i386.c (ix86_cannot_change_mode_class): Tighten
14871 sse check to the exact conditions of PR 67609.
14872
14873 2016-02-04 Michael Meissner <meissner@linux.vnet.ibm.com>
14874
14875 PR target/69667
14876 * config/rs6000/rs6000.md (mov<mode>_64bit_dm): Use 'd' constraint
14877 instead of 'ws', and 'wh' instead of 'wm' since TFmode/IFmode are
14878 not allowed into the traditional Altivec registers.
14879 (movtd_64bit_nodm): Likewise.
14880 (mov<mode>_32bit, FMOVE128_FPR iterator): Likewise.
14881
14882 2016-02-04 David Malcolm <dmalcolm@redhat.com>
14883
14884 * config/aarch64/cortex-a57-fma-steering.c
14885 (aarch64_register_fma_steering): Remove "static" from arguments
14886 to register_pass.
14887
14888 2016-02-04 Wilco Dijkstra <wdijkstr@arm.com>
14889
14890 PR target/69619
14891 * ccmp.c (expand_ccmp_expr_1): Avoid evaluating gs0/gs1
14892 twice when complex.
14893
14894 2016-02-04 Mike Frysinger <vapier@gentoo.org>
14895
14896 * doc/invoke.texi: Delete -mno-fma4.
14897
14898 2016-02-04 Richard Sandiford <richard.sandiford@arm.com>
14899
14900 PR rtl-optimization/69577
14901 * reginfo.c (record_subregs_of_mode): Add a partial_def parameter.
14902 (find_subregs_of_mode): Update accordingly. Iterate over partial
14903 definitions.
14904
14905 2016-02-04 Alan Lawrence <alan.lawrence@arm.com>
14906
14907 * config/arm/arm-protos.h (neon_reinterpret): Remove.
14908 * config/arm/arm.c (neon_reinterpret): Remove.
14909 * config/arm/arm_neon_builtins.def (vreinterpretv8qi, vreinterpretv4hi,
14910 vreinterpretv2si, vreinterpretv2sf, vreinterpretdi, vreinterpretv16qi,
14911 vreinterpretv8hi, vreinterpretv4si, vreinterpretv4sf, vreinterpretv2di,
14912 vreinterpretti): Remove.
14913 * config/arm/neon.md (neon_vreinterpretv8qi<mode>,
14914 neon_vreinterpretv4hi<mode>, neon_vreinterpretv2si<mode>,
14915 neon_vreinterpretv2sf<mode>, neon_vreinterpretdi<mode>,
14916 neon_vreinterpretti<mode>, neon_vreinterpretv16qi<mode>,
14917 neon_vreinterpretv8hi<mode>, neon_vreinterpretv4si<mode>,
14918 neon_vreinterpretv4sf<mode>, neon_vreinterpretv2di<mode>): Remove.
14919 * config/arm/arm_neon.h (vreinterpret_p8_p16, vreinterpret_p8_f32,
14920 vreinterpret_p8_p64, vreinterpret_p8_s64, vreinterpret_p8_u64,
14921 vreinterpret_p8_s8, vreinterpret_p8_s16, vreinterpret_p8_s32,
14922 vreinterpret_p8_u8, vreinterpret_p8_u16, vreinterpret_p8_u32,
14923 vreinterpret_p16_p8, vreinterpret_p16_f32, vreinterpret_p16_p64,
14924 vreinterpret_p16_s64, vreinterpret_p16_u64, vreinterpret_p16_s8,
14925 vreinterpret_p16_s16, vreinterpret_p16_s32, vreinterpret_p16_u8,
14926 vreinterpret_p16_u16, vreinterpret_p16_u32, vreinterpret_f32_p8,
14927 vreinterpret_f32_p16, vreinterpret_f32_p64, vreinterpret_f32_s64,
14928 vreinterpret_f32_u64, vreinterpret_f32_s8, vreinterpret_f32_s16,
14929 vreinterpret_f32_s32, vreinterpret_f32_u8, vreinterpret_f32_u16,
14930 vreinterpret_f32_u32, vreinterpret_p64_p8, vreinterpret_p64_p16,
14931 vreinterpret_p64_f32, vreinterpret_p64_s64, vreinterpret_p64_u64,
14932 vreinterpret_p64_s8, vreinterpret_p64_s16, vreinterpret_p64_s32,
14933 vreinterpret_p64_u8, vreinterpret_p64_u16, vreinterpret_p64_u32,
14934 vreinterpret_s64_p8, vreinterpret_s64_p16, vreinterpret_s64_f32,
14935 vreinterpret_s64_p64, vreinterpret_s64_u64, vreinterpret_s64_s8,
14936 vreinterpret_s64_s16, vreinterpret_s64_s32, vreinterpret_s64_u8,
14937 vreinterpret_s64_u16, vreinterpret_s64_u32, vreinterpret_u64_p8,
14938 vreinterpret_u64_p16, vreinterpret_u64_f32, vreinterpret_u64_p64,
14939 vreinterpret_u64_s64, vreinterpret_u64_s8, vreinterpret_u64_s16,
14940 vreinterpret_u64_s32, vreinterpret_u64_u8, vreinterpret_u64_u16,
14941 vreinterpret_u64_u32, vreinterpret_s8_p8, vreinterpret_s8_p16,
14942 vreinterpret_s8_f32, vreinterpret_s8_p64, vreinterpret_s8_s64,
14943 vreinterpret_s8_u64, vreinterpret_s8_s16, vreinterpret_s8_s32,
14944 vreinterpret_s8_u8, vreinterpret_s8_u16, vreinterpret_s8_u32,
14945 vreinterpret_s16_p8, vreinterpret_s16_p16, vreinterpret_s16_f32,
14946 vreinterpret_s16_p64, vreinterpret_s16_s64, vreinterpret_s16_u64,
14947 vreinterpret_s16_s8, vreinterpret_s16_s32, vreinterpret_s16_u8,
14948 vreinterpret_s16_u16, vreinterpret_s16_u32, vreinterpret_s32_p8,
14949 vreinterpret_s32_p16, vreinterpret_s32_f32, vreinterpret_s32_p64,
14950 vreinterpret_s32_s64, vreinterpret_s32_u64, vreinterpret_s32_s8,
14951 vreinterpret_s32_s16, vreinterpret_s32_u8, vreinterpret_s32_u16,
14952 vreinterpret_s32_u32, vreinterpret_u8_p8, vreinterpret_u8_p16,
14953 vreinterpret_u8_f32, vreinterpret_u8_p64, vreinterpret_u8_s64,
14954 vreinterpret_u8_u64, vreinterpret_u8_s8, vreinterpret_u8_s16,
14955 vreinterpret_u8_s32, vreinterpret_u8_u16, vreinterpret_u8_u32,
14956 vreinterpret_u16_p8, vreinterpret_u16_p16, vreinterpret_u16_f32,
14957 vreinterpret_u16_p64, vreinterpret_u16_s64, vreinterpret_u16_u64,
14958 vreinterpret_u16_s8, vreinterpret_u16_s16, vreinterpret_u16_s32,
14959 vreinterpret_u16_u8, vreinterpret_u16_u32, vreinterpret_u32_p8,
14960 vreinterpret_u32_p16, vreinterpret_u32_f32, vreinterpret_u32_p64,
14961 vreinterpret_u32_s64, vreinterpret_u32_u64, vreinterpret_u32_s8,
14962 vreinterpret_u32_s16, vreinterpret_u32_s32, vreinterpret_u32_u8,
14963 vreinterpret_u32_u16, vreinterpretq_p8_p16, vreinterpretq_p8_f32,
14964 vreinterpretq_p8_p64, vreinterpretq_p8_p128, vreinterpretq_p8_s64,
14965 vreinterpretq_p8_u64, vreinterpretq_p8_s8, vreinterpretq_p8_s16,
14966 vreinterpretq_p8_s32, vreinterpretq_p8_u8, vreinterpretq_p8_u16,
14967 vreinterpretq_p8_u32, vreinterpretq_p16_p8, vreinterpretq_p16_f32,
14968 vreinterpretq_p16_p64, vreinterpretq_p16_p128, vreinterpretq_p16_s64,
14969 vreinterpretq_p16_u64, vreinterpretq_p16_s8, vreinterpretq_p16_s16,
14970 vreinterpretq_p16_s32, vreinterpretq_p16_u8, vreinterpretq_p16_u16,
14971 vreinterpretq_p16_u32, vreinterpretq_f32_p8, vreinterpretq_f32_p16,
14972 vreinterpretq_f32_p64, vreinterpretq_f32_p128, vreinterpretq_f32_s64,
14973 vreinterpretq_f32_u64, vreinterpretq_f32_s8, vreinterpretq_f32_s16,
14974 vreinterpretq_f32_s32, vreinterpretq_f32_u8, vreinterpretq_f32_u16,
14975 vreinterpretq_f32_u32, vreinterpretq_p64_p8, vreinterpretq_p64_p16,
14976 vreinterpretq_p64_f32, vreinterpretq_p64_p128, vreinterpretq_p64_s64,
14977 vreinterpretq_p64_u64, vreinterpretq_p64_s8, vreinterpretq_p64_s16,
14978 vreinterpretq_p64_s32, vreinterpretq_p64_u8, vreinterpretq_p64_u16,
14979 vreinterpretq_p64_u32, vreinterpretq_p128_p8, vreinterpretq_p128_p16,
14980 vreinterpretq_p128_f32, vreinterpretq_p128_p64, vreinterpretq_p128_s64,
14981 vreinterpretq_p128_u64, vreinterpretq_p128_s8, vreinterpretq_p128_s16,
14982 vreinterpretq_p128_s32, vreinterpretq_p128_u8, vreinterpretq_p128_u16,
14983 vreinterpretq_p128_u32, vreinterpretq_s64_p8, vreinterpretq_s64_p16,
14984 vreinterpretq_s64_f32, vreinterpretq_s64_p64, vreinterpretq_s64_p128,
14985 vreinterpretq_s64_u64, vreinterpretq_s64_s8, vreinterpretq_s64_s16,
14986 vreinterpretq_s64_s32, vreinterpretq_s64_u8, vreinterpretq_s64_u16,
14987 vreinterpretq_s64_u32, vreinterpretq_u64_p8, vreinterpretq_u64_p16,
14988 vreinterpretq_u64_f32, vreinterpretq_u64_p64, vreinterpretq_u64_p128,
14989 vreinterpretq_u64_s64, vreinterpretq_u64_s8, vreinterpretq_u64_s16,
14990 vreinterpretq_u64_s32, vreinterpretq_u64_u8, vreinterpretq_u64_u16,
14991 vreinterpretq_u64_u32, vreinterpretq_s8_p8, vreinterpretq_s8_p16,
14992 vreinterpretq_s8_f32, vreinterpretq_s8_p64, vreinterpretq_s8_p128,
14993 vreinterpretq_s8_s64, vreinterpretq_s8_u64, vreinterpretq_s8_s16,
14994 vreinterpretq_s8_s32, vreinterpretq_s8_u8, vreinterpretq_s8_u16,
14995 vreinterpretq_s8_u32, vreinterpretq_s16_p8, vreinterpretq_s16_p16,
14996 vreinterpretq_s16_f32, vreinterpretq_s16_p64, vreinterpretq_s16_p128,
14997 vreinterpretq_s16_s64, vreinterpretq_s16_u64, vreinterpretq_s16_s8,
14998 vreinterpretq_s16_s32, vreinterpretq_s16_u8, vreinterpretq_s16_u16,
14999 vreinterpretq_s16_u32, vreinterpretq_s32_p8, vreinterpretq_s32_p16,
15000 vreinterpretq_s32_f16, vreinterpretq_s32_f32, vreinterpretq_s32_p64,
15001 vreinterpretq_s32_p128, vreinterpretq_s32_s64, vreinterpretq_s32_u64,
15002 vreinterpretq_s32_s8, vreinterpretq_s32_s16, vreinterpretq_s32_u8,
15003 vreinterpretq_s32_u16, vreinterpretq_s32_u32, vreinterpretq_u8_p8,
15004 vreinterpretq_u8_p16, vreinterpretq_u8_f32, vreinterpretq_u8_p64,
15005 vreinterpretq_u8_p128, vreinterpretq_u8_s64, vreinterpretq_u8_u64,
15006 vreinterpretq_u8_s8, vreinterpretq_u8_s16, vreinterpretq_u8_s32,
15007 vreinterpretq_u8_u16, vreinterpretq_u8_u32, vreinterpretq_u16_p8,
15008 vreinterpretq_u16_p16, vreinterpretq_u16_f32, vreinterpretq_u16_p64,
15009 vreinterpretq_u16_p128, vreinterpretq_u16_s64, vreinterpretq_u16_u64,
15010 vreinterpretq_u16_s8, vreinterpretq_u16_s16, vreinterpretq_u16_s32,
15011 vreinterpretq_u16_u8, vreinterpretq_u16_u32, vreinterpretq_u32_p8,
15012 vreinterpretq_u32_p16, vreinterpretq_u32_f32, vreinterpretq_u32_p64,
15013 vreinterpretq_u32_p128, vreinterpretq_u32_s64, vreinterpretq_u32_u64,
15014 vreinterpretq_u32_s8, vreinterpretq_u32_s16, vreinterpretq_u32_s32,
15015 vreinterpretq_u32_u8, vreinterpretq_u32_u16): Rewrite using casts.
15016
15017 2016-02-04 Martin Liska <mliska@suse.cz>
15018
15019 PR sanitizer/69276
15020 * asan.c (has_stmt_been_instrumented_p): Instrument gimple calls
15021 that are gimple_store_p.
15022 (maybe_instrument_call): Likewise.
15023
15024 2016-02-04 Bin Cheng <bin.cheng@arm.com>
15025
15026 * config/aarch64/aarch64.c (aarch64_legitimize_address): Force
15027 register scaling out of memory reference and comment why.
15028
15029 2016-02-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15030
15031 PR target/65932
15032 PR target/67714
15033 * cse.c (cse_insn): Pass NULL to fold_rtx when initially
15034 folding the source of a SET.
15035
15036 2016-02-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15037
15038 PR target/65932
15039 PR target/67714
15040 * config/arm/arm.c (arm_new_rtx_costs, MULT case): Properly extract
15041 the operands of the SIGN_EXTENDs from a SMUL[TB][TB] rtx.
15042
15043 2016-02-04 Jim Wilson <jim.wilson@linaro.org>
15044
15045 PR target/65932
15046 PR target/67714
15047 * config/arm/arm.h (PROMOTE_MODE): Don't set UNSIGNEDP for QImode and
15048 HImode.
15049
15050 2016-02-04 Christian Bruel <christian.bruel@st.com>
15051
15052 * config/arm/arm-c.c (arm_reset_previous_fndecl): Style fix and typo.
15053 * config/arm/arm.c (arm_set_current_function): Likewise.
15054
15055 2016-02-04 Jakub Jelinek <jakub@redhat.com>
15056 Ilya Enkovich <enkovich.gnu@gmail.com>
15057 H.J. Lu <hongjiu.lu@intel.com>
15058
15059 PR target/69454
15060 * config/i386/i386.c (convert_scalars_to_vector): Remove
15061 stack alignment fixes.
15062 (ix86_option_override_internal): Disable TARGET_STV if stack
15063 might not be aligned enough.
15064 (ix86_minimum_alignment): Assert that TARGET_STV is false.
15065
15066 2016-02-04 Victoria Stepanyan <victoria.stepanyan@amd.com>
15067
15068 * config/i386/x86-tune.def: Disable default prefetching
15069 for -march=znver1.
15070
15071 2016-02-03 Michael Meissner <meissner@linux.vnet.ibm.com>
15072 Vladimir Makarov <vmakarov@redhat.com>
15073
15074 PR target/69461
15075 * config/rs6000/rs6000.c (rs6000_legitimate_address_p): Fix thinko
15076 in validating fused toc addresses.
15077
15078 2016-02-03 Jakub Jelinek <jakub@redhat.com>
15079
15080 PR c/69627
15081 * diagnostic-show-locus.c (layout::get_state_at_point): Don't read
15082 range->m_caret fields if range->m_show_caret_p is false.
15083
15084 PR target/69644
15085 * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
15086 Force oldval into register if it does not satisfy reg_or_short_operand
15087 predicate. Fix up formatting.
15088
15089 2016-02-03 Vladimir Makarov <vmakarov@redhat.com>
15090 Alexandre Oliva <aoliva@redhat.com>
15091
15092 PR target/69461
15093 * lra-constraints.c (simplify_operand_subreg): Check additionally
15094 address validity after potential reloading.
15095 (process_address_1): Check insns validity. In case of failure do
15096 nothing.
15097
15098 2016-02-03 Kirill Yukhin <kirill.yukhin@intel.com>
15099
15100 PR target/69118
15101 * config/i386/sse.md (define_insn "avx512f_maskcmp<mode>3"):
15102 Fix target.
15103
15104 2016-02-02 Jakub Jelinek <jakub@redhat.com>
15105
15106 * wide-int.cc (canonize_uhwi): New function.
15107 (wi::divmod_internal): Use it.
15108
15109 2016-02-02 James Norris <jnorris@codesourcery.com
15110
15111 * gimplify.c (omp_notice_variable): Add usage check.
15112
15113 2016-02-02 Alexander Monakov <amonakov@ispras.ru>
15114
15115 * config/nvptx/nvptx.c (nvptx_print_operand): Treat LEU, GEU, LTU, GTU
15116 like LE, GE, LT, GT when emitting relational operator.
15117
15118 2016-02-02 Wilco Dijkstra <wdijkstr@arm.com>
15119
15120 * ira-costs.c (find_costs_and_classes): Add extra argument.
15121 * target.def (ira_change_pseudo_allocno_class): Add parameter.
15122 * targhooks.h (ira_change_pseudo_allocno_class): Likewise.
15123 * targhooks.c (ira_change_pseudo_allocno_class): Likewise.
15124 * config/aarch64/aarch64.c (aarch64_ira_change_pseudo_allocno_class)
15125 Add best_class parameter, and return it if not ALL_REGS.
15126 * config/mips/mips.c (mips_ira_change_pseudo_allocno_class):
15127 Add parameter.
15128 * doc/tm.texi (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS):
15129 Update target hook.
15130
15131 2016-02-02 Wilco Dijkstra <wdijkstr@arm.com>
15132
15133 * config/aarch64/aarch64.c
15134 (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS): New define.
15135 (aarch64_ira_change_pseudo_allocno_class): New function.
15136
15137 2016-02-02 Uros Bizjak <ubizjak@gmail.com>
15138
15139 PR target/67032
15140 * config/i386/i386.c (geode_cost): Increase cost of MMX and SSE moves.
15141
15142 2016-02-02 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
15143
15144 * config/avr/avr.c (avr_option_override): Set
15145 PARAM_ALLOW_STORE_DATA_RACES to 1.
15146
15147 2016-02-02 Richard Biener <rguenther@suse.de>
15148
15149 PR tree-optimization/69595
15150 * match.pd: Add range test simplifications to true/false.
15151
15152 2016-02-02 Thomas Schwinge <thomas@codesourcery.com>
15153
15154 * omp-builtins.def (BUILT_IN_GOACC_HOST_DATA): Remove.
15155 * omp-low.c (expand_omp_target): Use BUILT_IN_GOACC_DATA_START
15156 instead.
15157
15158 2016-02-02 Richard Biener <rguenther@suse.de>
15159
15160 PR tree-optimization/69606
15161 * tree-ssa-math-opts.c (bswap_replace): Clear flow sensitive
15162 info on the result before moving a stmt.
15163
15164 2016-02-02 Yuri Rumyantsev <ysrumyan@gmail.com>
15165
15166 PR middle-end/68542
15167 * config/i386/i386.c (ix86_expand_branch): Add support for conditional
15168 branch with vector comparison.
15169 * config/i386/sse.md (VI48_AVX): New mode iterator.
15170 (define_expand "cbranch<mode>4): Add support for conditional branch
15171 with vector comparison.
15172 * tree-vect-loop.c (optimize_mask_stores): New function.
15173 * tree-vect-stmts.c (vectorizable_mask_load_store): Initialize
15174 has_mask_store field of vect_info.
15175 * tree-vectorizer.c (vectorize_loops): Invoke optimaze_mask_stores for
15176 vectorized loops having masked stores after vec_info destroy.
15177 * tree-vectorizer.h (loop_vec_info): Add new has_mask_store field and
15178 correspondent macros.
15179 (optimize_mask_stores): Add prototype.
15180
15181 2016-02-02 Alan Modra <amodra@gmail.com>
15182
15183 PR target/69548
15184 * config/rs6000/predicates.md (quad_int_reg_operand): Don't
15185 allow subregs.
15186
15187 2016-02-02 Alan Modra <amodra@gmail.com>
15188
15189 PR target/68662
15190 * config/rs6000/rs6000.c (need_toc_init): New var, set it
15191 whenever toc_label_name used.
15192 (rs6000_file_start): Don't set up toc section here,
15193 (rs6000_output_function_epilogue): do so here instead,
15194 (rs6000_xcoff_file_start): and here.
15195 * config/rs6000/rs6000.md (load_toc_aix_si): Set need_toc_init.
15196 (load_toc_aix_di): Likewise.
15197
15198 2016-02-01 Jakub Jelinek <jakub@redhat.com>
15199
15200 PR rtl-optimization/69592
15201 * rtlanal.c (nonzero_bits_binary_arith_p): New inline function.
15202 (cached_nonzero_bits): Use it instead of ARITHMETIC_P.
15203 (num_sign_bit_copies_binary_arith_p): New inline function.
15204 (cached_num_sign_bit_copies): Use it instead of ARITHMETIC_P.
15205
15206 2016-02-01 Jeff Law <law@redhat.com>
15207
15208 PR tree-optimization/69580
15209 * params.def (FSM_MAXIMUM_PHI_ARGUMENTS): New param.
15210 * tree-ssa-threadbackward.c
15211 (fsm_find_control_statement_thread_paths): Do not try to walk
15212 through large PHI nodes.
15213
15214 2016-02-01 Jakub Jelinek <jakub@redhat.com>
15215
15216 * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return false
15217 when count is incremented above limit, don't analyze further
15218 insns afterwards.
15219
15220 * omp-low.c (oacc_parse_default_dims): Avoid
15221 -Wsign-compare warning, make sure value fits into int
15222 rather than just unsigned int.
15223
15224 2016-02-01 Bin Cheng <bin.cheng@arm.com>
15225
15226 PR tree-optimization/67921
15227 * fold-const.c (split_tree): New parameters. Convert pointer
15228 type variable part to proper type before negating.
15229 (fold_binary_loc): Pass new arguments to split_tree.
15230
15231 2016-02-01 Nathan Sidwell <nathan@codesourcery.com>
15232
15233 * config/nvptx/nvptx.c (PTX_GANG_DEFAULT): New.
15234 (nvptx_goacc_validate_dims): Extend to handle global defaults.
15235 * target.def (OACC_VALIDATE_DIMS): Extend documentation.
15236 * doc/tm.texti: Rebuilt.
15237 * doc/invoke.texi (fopenacc-dim): Document.
15238 * lto-wrapper.c (merge_and_complain): Add OPT_fopenacc_dim_ case.
15239 (append_compiler_options): Likewise.
15240 * omp-low.c (oacc_default_dims, oacc_min_dims): New.
15241 (oacc_parse_default_dims): New.
15242 (oacc_validate_dims): Add USED arg. Select non-unity default when
15243 possible.
15244 (oacc_loop_fixed_partitions): Return mask of used partitions.
15245 (oacc_loop_auto_partitions): Emit dump info.
15246 (oacc_loop_partition): Return mask of used partitions.
15247 (execute_oacc_device_lower): Parse default dimension arg. Adjust
15248 loop partitioning and validation calls.
15249
15250 2016-02-01 Richard Biener <rguenther@suse.de>
15251
15252 PR middle-end/69556
15253 * match.pd: Guard (C1/X)*C2 -> (C1*C2)/X with single_use.
15254
15255 2016-02-01 Richard Biener <rguenther@suse.de>
15256
15257 PR tree-optimization/69574
15258 * tree-chrec.c (hide_evolution_in_other_loops_than_loop): Instead
15259 of asserting return chrec_dont_know.
15260
15261 2016-02-01 Martin Liska <mliska@suse.cz>
15262
15263 * mem-stats-traits.h: Add copyright header.
15264 * mem-stats.h: Likewise.
15265
15266 2016-02-01 Richard Biener <rguenther@suse.de>
15267
15268 PR tree-optimization/69579
15269 * tree-ssa-loop-ivcanon.c (propagate_constants_for_unrolling):
15270 Do not propagate through abnormal PHI results.
15271
15272 2016-02-01 Eric Botcazou <ebotcazou@adacore.com>
15273
15274 * postreload.c (reload_cse_simplify): Remove dead code.
15275
15276 2016-02-01 Jakub Jelinek <jakub@redhat.com>
15277
15278 PR rtl-optimization/69570
15279 * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return true only
15280 if there is more than one set, not if there is a single set.
15281
15282 2016-02-01 Richard Henderson <rth@redhat.com>
15283
15284 PR rtl-opt/69535
15285 * combine.c (make_compound_operation): When looking through a
15286 subreg, make sure to re-extend to the width of the outer mode.
15287
15288 2016-01-30 Jakub Jelinek <jakub@redhat.com>
15289
15290 PR tree-optimization/69546
15291 * wide-int.cc (wi::divmod_internal): For unsigned division
15292 where both operands fit into uhwi, if o1 is 1 and o0 has
15293 msb set, if divident_prec is larger than bits per hwi,
15294 clear another quotient word and return 2 instead of 1.
15295 Similarly for remainder with msb in HWI set, if dividend_prec
15296 is larger than bits per hwi.
15297
15298 2016-01-29 Martin Jambor <mjambor@suse.cz>
15299
15300 * hsa-gen.c (get_memory_order_name): Mask with MEMMODEL_BASE_MASK.
15301 Use short lowercase names.
15302 (get_memory_order): Mask with MEMMODEL_BASE_MASK. Support
15303 MEMMODEL_CONSUME with acquire semantics and MEMMODEL_SEQ_CST with
15304 acq_rel one. Protect warning agains segfaults if
15305 get_memory_order_name returns NULL.
15306 (gen_hsa_ternary_atomic_for_builtin): Support with MEMMODEL_SEQ_CST
15307 with release semantics. Do not warn if get_memory_order already did.
15308 (gen_hsa_insns_for_call): Support with MEMMODEL_SEQ_CST with acquire
15309 semantics. Fix check for relaxed or acquire semantics. Do not warn
15310 if get_memory_order already did.
15311
15312 2016-01-29 Sebastian Pop <s.pop@samsung.com>
15313
15314 * doc/install.texi: Document that isl-0.16 is supported.
15315
15316 2016-01-29 Vladimir Makarov <vmakarov@redhat.com>
15317
15318 PR target/69299
15319 * config/i386/constraints.md (Bm): Describe as special memory
15320 constraint.
15321 * doc/md.texi (DEFINE_SPECIAL_MEMORY_CONSTRAINT): Describe it.
15322 * genoutput.c (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
15323 * genpreds.c (struct constraint_data): Add is_special_memory.
15324 (have_special_memory_constraints, special_memory_start): New
15325 static vars.
15326 (special_memory_end): Ditto.
15327 (add_constraint): Add new arg is_special_memory. Add code to
15328 process its true value. Update have_special_memory_constraints.
15329 (process_define_constraint): Pass the new arg.
15330 (process_define_register_constraint): Ditto.
15331 (choose_enum_order): Process special memory.
15332 (write_tm_preds_h): Generate enum const CT_SPECIAL_MEMORY and
15333 function insn_extra_special_memory_constraint.
15334 (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
15335 * gensupport.c (process_rtx): Process
15336 DEFINE_SPECIAL_MEMORY_CONSTRAINT.
15337 * ira-costs.c (record_reg_classes): Process CT_SPECIAL_MEMORY.
15338 * ira-lives.c (single_reg_class): Use
15339 insn_extra_special_memory_constraint.
15340 * ira.c (ira_setup_alts): Process CT_SPECIAL_MEMORY.
15341 * lra-constraints.c (process_alt_operands): Ditto.
15342 (curr_insn_transform): Use insn_extra_special_memory_constraint.
15343 * recog.c (asm_operand_ok, preprocess_constraints): Process
15344 CT_SPECIAL_MEMORY.
15345 * reload.c (find_reloads): Ditto.
15346 * rtl.def (DEFINE_SPECIFAL_MEMORY_CONSTRAINT): New.
15347 * stmt.c (parse_input_constraint): Use
15348 insn_extra_special_memory_constraint.
15349
15350 2016-01-29 H.J. Lu <hongjiu.lu@intel.com>
15351
15352 PR target/69530
15353 * lra-splill.c (lra_final_code_change): Revert r229087 by
15354 removing all sub-registers.
15355
15356 2016-01-29 Steve Ellcey <sellcey@imgtec.com>
15357
15358 PR target/65604
15359 * config/mips/mips.c (mips_output_division): Check flag_delayed_branch.
15360
15361 2016-01-29 Jakub Jelinek <jakub@redhat.com>
15362
15363 PR target/69551
15364 * config/i386/i386.c (ix86_expand_vector_set) <case V4SImode>: For
15365 SSE1, copy target into the temporary reg first before recursing
15366 on it.
15367
15368 2016-01-29 H.J. Lu <hongjiu.lu@intel.com>
15369
15370 * config/i386/sse.md (sse2_cvtps2pd<mask_name>): Replace vBm
15371 with vm.
15372
15373 2016-01-29 Jonathan Wakely <jwakely@redhat.com>
15374
15375 * ginclude/stdarg.h: Test __cplusplus instead of
15376 __GXX_EXPERIMENTAL_CXX0X__.
15377
15378 2016-01-29 Richard Biener <rguenther@suse.de>
15379
15380 PR tree-optimization/69547
15381 * tree-ssa-dce.c (mark_aliased_reaching_defs_necessary_1):
15382 Do not mark clobbers necessary.
15383 (mark_all_reaching_defs_necessary_1): Likewise.
15384
15385 2016-01-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
15386
15387 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Format
15388 declaration name with %qs and print it in both error messages.
15389 Also fix indentation.
15390
15391 2016-01-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
15392
15393 PR other/69006
15394 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove
15395 trailing blank line from error message.
15396
15397 2016-01-29 Jonathan Wakely <jwakely@redhat.com>
15398
15399 PR c++/69462
15400 * ginclude/float.h: Also provide FLT_EVAL_METHOD and DECIMAL_DIG
15401 for C++-11.
15402
15403 2016-01-29 Richard Biener <rguenther@suse.de>
15404
15405 PR middle-end/69537
15406 * match.pd: Allow all integral types when simplifying a
15407 widening or sign-changing conversion.
15408
15409 2016-01-28 Sebastian Pop <s.pop@samsung.com>
15410
15411 * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Revert assert
15412 back to setting codegen_error to fail codegen.
15413
15414 2016-01-28 Uros Bizjak <ubizjak@gmail.com>
15415
15416 PR target/69459
15417 * config/i386/constraints.md (C): Only accept constant zero operand.
15418 (BC): New constraint.
15419 * config/i386/sse.md (*mov<mode>_internal): Use BC constraint
15420 instead of C constraint.
15421 * doc/md.texi (Machine Constraints): Update description
15422 of C constraint.
15423
15424 2016-01-28 Steve Ellcey <sellcey@imgtec.com>
15425
15426 PR target/68400
15427 * config/mips/mips.c (and_operands_ok): Add MIPS16 check.
15428
15429 2016-01-28 Jakub Jelinek <jakub@redhat.com>
15430
15431 PR middle-end/69542
15432 * lra-remat.c (calculate_local_reg_remat_bb_data): Only consider
15433 non-debug insns.
15434
15435 2016-01-28 Pat Haugen <pthaugen@us.ibm.com>
15436
15437 * config/rs6000/rs6000.c (output_cbranch): Don't statically predict
15438 branches if using guessed profile.
15439
15440 2016-01-28 H.J. Lu <hongjiu.lu@intel.com>
15441
15442 * graphite-optimize-isl.c (optimize_isl): Fix dump.
15443
15444 2016-01-28 Richard Henderson <rth@redhat.com>
15445
15446 PR target/69305
15447 * config/aarch64/aarch64-modes.def (CC_Cmode): New
15448 * config/aarch64/aarch64-protos.h: Update.
15449 * config/aarch64/aarch64.c (aarch64_zero_extend_const_eq): New.
15450 (aarch64_select_cc_mode): Add check for use of CC_Cmode.
15451 (aarch64_get_condition_code_1): Handle CC_Cmode.
15452 * config/aarch64/aarch64.md (addti3): Use adddi3_compareC.
15453 (*add<mode>3_compareC_cconly_imm): New.
15454 (*add<mode>3_compareC_cconly): New.
15455 (*add<mode>3_compareC_imm): New.
15456 (add<mode>3_compareC): New.
15457 (add<mode>3_carryin, *addsi3_carryin_uxtw): Sort compare operand
15458 to be first. Use aarch64_carry_operation.
15459 (*add<mode>3_carryin_alt1, *addsi3_carryin_alt1_uxtw): Remove.
15460 (*add<mode>3_carryin_alt2, *addsi3_carryin_alt2_uxtw): Remove.
15461 (*add<mode>3_carryin_alt3, *addsi3_carryin_alt3_uxtw): Remove.
15462 (subti3): Use subdi3_compare1.
15463 (*sub<mode>3_compare0): Rename from sub<mode>3_compare0.
15464 (sub<mode>3_compare1): New.
15465 (*sub<mode>3_carryin0, *subsi3_carryin_uxtw): New.
15466 (*sub<mode>3_carryin): Use aarch64_borrow_operation.
15467 (*subsi3_carryin_uxtw): Likewise.
15468 (*ngc<mode>, *ngcsi_uxtw): Likewise.
15469 (*sub<mode>3_carryin_alt, *subsi3_carryin_alt_uxtw): New.
15470 * config/aarch64/iterators.md (DWI): New.
15471 * config/aarch64/predicates.md (aarch64_carry_operation): New.
15472 (aarch64_borrow_operation): New.
15473
15474 2016-01-28 Abderrazek Zaafrani <a.zaafrani@samsung.com>
15475
15476 * graphite-optimize-isl.c (optimize_isl): Print a different debug
15477 message when isl does not return a valid schedule.
15478
15479 2016-01-28 Sebastian Pop <s.pop@samsung.com>
15480
15481 * graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple):
15482 Remove comments from class declarations: they are already in the code
15483 close by the defs.
15484
15485 2016-01-28 Sebastian Pop <s.pop@samsung.com>
15486
15487 * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Call
15488 codegen_error_p.
15489 (ternary_op_to_tree): Same.
15490 (unary_op_to_tree): Same.
15491 (nary_op_to_tree): Same.
15492 (gcc_expression_from_isl_expr_op): Same.
15493 (gcc_expression_from_isl_expression): Same.
15494 (graphite_create_new_loop): Same.
15495 (graphite_create_new_loop_guard): Same.
15496 (build_iv_mapping): Same.
15497 (graphite_create_new_guard): Same.
15498 (translate_isl_ast_to_gimple::copy_loop_phi_nodes): Same.
15499 (translate_isl_ast_to_gimple::translate_pending_phi_nodes): Same.
15500
15501 2016-01-28 Sebastian Pop <s.pop@samsung.com>
15502
15503 * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Assert
15504 instead of setting codegen_error to fail codegen.
15505
15506 2016-01-28 Jason Merrill <jason@redhat.com>
15507
15508 * tree.h (BINFO_FLAG_0): Rename from BINFO_MARKED.
15509
15510 2016-01-28 Wilco Dijkstra <wdijkstr@arm.com>
15511
15512 * config/aarch64/aarch64.c (aarch64_if_then_else_costs):
15513 Remove CONST_INT_P check in CCMP cost calculation.
15514
15515 2016-01-28 Wilco Dijkstra <wdijkstr@arm.com>
15516
15517 * config/aarch64/aarch64.c (generic_vector_cost):
15518 Set vec_permute_cost.
15519 (cortexa57_vector_cost): Likewise.
15520 (exynosm1_vector_cost): Likewise.
15521 (xgene1_vector_cost): Likewise.
15522 (aarch64_builtin_vectorization_cost): Use vec_permute_cost.
15523 * config/aarch64/aarch64-protos.h (cpu_vector_cost):
15524 Add vec_permute_cost entry.
15525
15526 2016-01-28 Wilco Dijkstra <wdijkstr@arm.com>
15527
15528 * config/aarch64/aarch64.md (ccmp<mode>): Disassemble
15529 immediate as %1.
15530 (add<mode>3_compare0): Likewise.
15531 (addsi3_compare0_uxtw): Likewise.
15532 (add<mode>3nr_compare0): Likewise.
15533 (compare_neg<mode>): Likewise.
15534 (<optab><mode>3): Likewise.
15535
15536 2016-01-28 Ilya Enkovich <enkovich.gnu@gmail.com>
15537
15538 * tree-vect-stmts.c (vectorizable_comparison): Add
15539 NULL check for vectype.
15540
15541 2016-01-28 Richard Biener <rguenther@suse.de>
15542
15543 PR tree-optimization/69466
15544 * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
15545 Account for PHIs we couldn't duplicate.
15546
15547 2016-01-28 Martin Liska <mliska@suse.cz>
15548
15549 PR pch/68758
15550 * ggc-common.c (gt_pch_save): Use ENABLE_VALGRIND_ANNOTATIONS macro
15551 instead of ENABLE_VALGRIND_CHECKING.
15552
15553 2016-01-27 Richard Henderson <rth@redhat.com>
15554
15555 PR rtl-opt/69447
15556 * lra-remat.c (subreg_regs): New.
15557 (dump_candidates_and_remat_bb_data): Dump it.
15558 (operand_to_remat): Reject if operand in subreg_regs.
15559 (set_bb_regs): Collect subreg_regs.
15560 (lra_remat): Init and free subreg_regs. Compute
15561 calculate_local_reg_remat_bb_data before create_cands.
15562
15563 2016-01-27 H.J. Lu <hongjiu.lu@intel.com>
15564
15565 PR target/68986
15566 * config/i386/i386.c (ix86_update_stack_boundary): Don't
15567 change stack_alignment_needed for __tls_get_addr call.
15568
15569 2016-01-27 Segher Boessenkool <segher@kernel.crashing.org>
15570
15571 * config/rs6000/rs6000.c (print_operand): Rollback 's' removal.
15572
15573 2016-01-27 Jeff Law <law@redhat.com>
15574
15575 PR tree-optimization/68398
15576 PR tree-optimization/69196
15577 * params.def (PARAM_FSM_SCALE_PATH_STMTS): New parameter.
15578 (PARAM_FSM_SCALE_PATH_BLOCKS): Likewise.
15579 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
15580 Only count PHIs in the last block in the path. The others will
15581 const/copy propagate away. Add heuristic to allow more irreducible
15582 subloops to be created when it is likely profitable to do so.
15583
15584 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
15585 Fix typo in comment. Use gsi_after_labels and remove the GIMPLE_LABEL
15586 check from within the loop. Use gsi_next_nondebug rather than gsi_next.
15587
15588 2016-01-27 Jakub Jelinek <jakub@redhat.com>
15589
15590 PR lto/69254
15591 * sanitizer.def: Add BEGIN_SANITIZER_BUILTINS and
15592 END_SANITIZER_BUILTINS markers using DEF_BUILTIN_STUB.
15593 * asan.c (DEF_BUILTIN_STUB): Temporarily define.
15594 * tree-streamer-in.c: Include asan.h.
15595 (streamer_get_builtin_tree): For builtins in sanitizer
15596 range call initialize_sanitizer_builtins and retry.
15597
15598 2016-01-27 Ian Lance Taylor <iant@google.com>
15599
15600 * common.opt (fkeep-gc-roots-live): New undocumented option.
15601 * tree-ssa-loop-ivopts.c (add_candidate_1): If
15602 -fkeep-gc-roots-live, skip pointers.
15603 (add_iv_candidate_for_biv): Handle add_candidate_1 returning
15604 NULL.
15605
15606 2016-01-27 Uros Bizjak <ubizjak@gmail.com>
15607
15608 PR target/69512
15609 * config/i386/i386.md (*zext<mode>_doubleword_and): New pattern.
15610 (*zext<mode>_doubleword): Disable for TARGET_ZERO_EXTEND_WITH_AND.
15611
15612 2016-01-27 Thomas Klausner <wiz@NetBSD.org>
15613
15614 PR target/68380
15615 * configure.ac: NetBSD provides SSP in its C library.
15616 * configure: Updated.
15617
15618 2016-01-27 Richard Biener <rguenther@suse.de>
15619
15620 PR tree-optimization/69166
15621 * tree-vect-loop.c (vect_is_simple_reduction): Always check
15622 reduction code for commutativity / associativity.
15623
15624 2016-01-27 Martin Jambor <mjambor@suse.cz>
15625
15626 PR tree-optimization/69355
15627 * tree-sra.c (analyze_access_subtree): Correct hole detection when
15628 total_scalarization fails.
15629
15630 2016-01-27 David Edelsohn <dje.gcc@gmail.com>
15631
15632 * config/rs6000/driver-rs6000.c (detect_processor_aix): Add
15633 power9.
15634
15635 2016-01-27 Christian Bruel <christian.bruel@st.com>
15636
15637 PR target/69245
15638 * config/arm/arm-c.c (arm_pragma_target_parse): Add comments.
15639 Move arm_reset_previous_fndecl and set_target_option_current_node in
15640 the conditional part. Call save_restore_target_globals.
15641 * config/arm/arm.c (arm_set_current_function):
15642 Refactor to better support #pragma target and attribute mix.
15643 Call save_restore_target_globals.
15644 * config/arm/arm-protos.h (save_restore_target_globals): New function.
15645
15646 2016-01-27 Martin Liska <mliska@suse.cz>
15647
15648 * hsa.c (hsa_summary_t::link_functions): Create IPA_REF_ADDR
15649 reference for an HSA kernel and its host function.
15650
15651 2016-01-27 Jakub Jelinek <jakub@redhat.com>
15652
15653 PR tree-optimization/69399
15654 * wide-int.h (wi::lrshift): For larger precisions, only
15655 use fast path if shift is known to be < HOST_BITS_PER_WIDE_INT.
15656
15657 2016-01-27 Claudiu Zissulescu <claziss@synopsys.com>
15658
15659 * config/arc/predicates.md (proper_comparison_operator): Reject
15660 constant-constant comparison.
15661
15662 2016-01-26 Tom de Vries <tom@codesourcery.com>
15663
15664 PR tree-optimization/69110
15665 * tree-data-ref.c (initialize_data_dependence_relation): Handle
15666 DR_NUM_DIMENSIONS == 0.
15667
15668 2016-01-26 Abderrazek Zaafrani <a.zaafrani@samsung.com>
15669 Sebastian Pop <s.pop@samsung.com>
15670
15671 * graphite-isl-ast-to-gimple.c (ternary_op_to_tree): Handle
15672 isl_ast_op_cond and isl_ast_op_select.
15673 (gcc_expression_from_isl_expr_op): Same.
15674
15675 2016-01-26 Jason Merrill <jason@redhat.com>
15676
15677 PR c++/68782
15678 * tree.c (recompute_constructor_flags): Split out from
15679 build_constructor.
15680 (verify_constructor_flags): New.
15681 * tree.h: Declare them.
15682
15683 2016-01-26 Iain Buclaw <ibuclaw@gdcproject.org>
15684
15685 PR rtl-optimization/69217
15686 * var-tracking.c (tracked_record_parameter_p): Don't segfault if there
15687 are no TYPE_FIELDS set for the record type.
15688
15689 2016-01-26 Jakub Jelinek <jakub@redhat.com>
15690
15691 PR target/68662
15692 * config/rs6000/rs6000.c (rs6000_option_override_internal): Initialize
15693 toc_label_name unconditionally.
15694 (rs6000_emit_load_toc_table): Call ggc_strdup on toc_label_name for
15695 SYMBOL_REF string. Use toc_label_name instead of constructing
15696 LCTOC1.
15697 (rs6000_elf_declare_function_name): Use toc_label_name instead of
15698 constructing LCTOC1.
15699
15700 2016-01-26 Martin Sebor <msebor@redhat.com>
15701
15702 PR other/69477
15703 * doc/extend.texi (Common Type Attributes): Move text that talks about
15704 attribute packed from attribute aligned to the section discussing
15705 the former attribute for clarity.
15706
15707 2016-01-26 Richard Henderson <rth@redhat.com>
15708
15709 PR middle-end/60908
15710 * trans-mem.c (tm_region_init): Mark entry block as visited.
15711
15712 2016-01-26 David Malcolm <dmalcolm@redhat.com>
15713
15714 PR other/69006
15715 * diagnostic-show-locus.c (layout::print_source_line): Replace
15716 call to pp_newline with call to layout::print_newline.
15717 (layout::print_annotation_line): Likewise.
15718 (layout::move_to_column): Likewise.
15719 (layout::print_any_fixits): After printing any fixits, print a
15720 trailing newline, if necessary.
15721 (layout::print_newline): New method, resetting any colorization
15722 before a newline.
15723 (diagnostic_show_locus): Move the pp_newline to before the
15724 early bailout. Remove dummy block enclosing the layout instance.
15725 * diagnostic.c (default_diagnostic_finalizer): Replace invocation
15726 of pp_newline_and_flush with pp_flush.
15727 (diagnostic_append_note): Delete use of pp_newline.
15728 (diagnostic_append_note_at_rich_loc): Delete.
15729 * diagnostic.h (diagnostic_append_note_at_rich_loc): Delete.
15730 * pretty-print.h (output_buffer_append_r): Reset buff->line_length
15731 when newline characters are added to the buffer.
15732
15733 2016-01-26 Michael Matz <matz@suse.de>
15734
15735 * configure.ac (ac_cv_std_swap_in_utility): New test.
15736 * system.h (<algorithm>): Check HAVE_SWAP_IN_UTILITY as well.
15737 * configure: Regenerate.
15738 * config.in: Regenerate.
15739
15740 2016-01-26 Claudiu Zissulescu <claziss@synopsys.com>
15741
15742 * config/arc/arc.md (cstoresi4): Force operand into register.
15743 (arcset<code>): Fix predicate.
15744 (arcsetltu): Likewise.
15745 (arcsetgeu): Likewise.
15746 (arcsethi): Likewise.
15747 (arcsetls): Likewise.
15748
15749 2016-01-26 Jakub Jelinek <jakub@redhat.com>
15750
15751 PR tree-optimization/69483
15752 * gimple-fold.c (canonicalize_constructor_val): Return NULL
15753 if base has error_mark_node type.
15754
15755 2016-01-26 Christophe Lyon <christophe.lyon@linaro.org>
15756
15757 PR target/68620
15758 * config/arm/arm.c (neon_valid_immediate): Handle FP16 vectors.
15759 * config/arm/arm_neon.h (__ARM_NUM_LANES, __arm_lane, arm_lanq):
15760 New helper macros.
15761 (vget_lane_f16): Handle big-endian.
15762 (vgetq_lane_f16): Likewise.
15763 (vset_lane_f16): Likewise.
15764 (vsetq_lane_f16): Likewise.
15765 * config/arm/iterators.md (VQXMOV): Add V8HF.
15766 (VDQ): Add V4HF and V8HF.
15767 (V_reg): Handle V4HF and V8HF.
15768 (Is_float_mode): Likewise.
15769 * config/arm/neon.md (movv4hf, movv8hf, neon_vdup_nv4hf,
15770 neon_vdup_nv8hf): New patterns.
15771 (vec_set<mode>_internal, vec_extract<mode>, neon_vld1_dup<mode>):
15772 Use VD_LANE iterator.
15773 (neon_vld1_dup<mode>): Use VQ2 iterator.
15774
15775 2016-01-26 Nathan Sidwell <nathan@acm.org>
15776
15777 * omp-low.h (oacc_fn_attrib_kernels_p): Declare.
15778 (set_oacc_fn_attrib): Add IS_KERNEL arg.
15779 * omp-low.c (set_oacc_fn_attrib): Add IS_KERNEL arg.
15780 (oacc_fn_attrib_kernels_p, oacc_fn_attrib_level): New.
15781 (expand_omp_target): Pass is_kernel to set_oacc_fn_attrib.
15782 (oacc_validate_dims): Add LEVEL arg, don't return level.
15783 (new_oacc_loop_routine): Use oacc_fn_attrib_level, not
15784 oacc_validate_dims.
15785 (execute_oacc_device_lower): Adjust, add more dump output.
15786 * tree-ssa-loop.c (gate_oacc_kernels): Use
15787 oacc_fn_attrib_kernels_p.
15788 * tree-parloops.c (create_parallel_loop): Adjust
15789 set_oacc_fn_attrib call.
15790
15791 2016-01-26 Jakub Jelinek <jakub@redhat.com>
15792
15793 PR lto/69254
15794 * lto-wrapper.c (merge_and_complain): Handle -fcilkplus.
15795 (append_compiler_options): Handle -fcilkplus.
15796 (append_linker_options): Ignore -fno-{openmp,openacc,cilkplus}.
15797
15798 2016-01-26 Nick Clifton <nickc@redhat.com>
15799
15800 PR target/66655
15801 * config/i386/winnt.c (i386_pe_binds_local_p): If a function has
15802 been marked as DECL_ONE_ONLY but we do not the means to make it
15803 so, then do not allow it to bind locally.
15804
15805 2016-01-26 Jakub Jelinek <jakub@redhat.com>
15806
15807 PR lto/69254
15808 * opts.h (parse_sanitizer_options): New prototype.
15809 * opts.c (sanitizer_opts): New array.
15810 (parse_sanitizer_options): New function.
15811 (common_handle_option): Use parse_sanitizer_options.
15812
15813 2016-01-26 H.J. Lu <hongjiu.lu@intel.com>
15814
15815 PR target/68986
15816 * config/i386/i386.c (ix86_compute_frame_layout): Move stack
15817 alignment adjustment to ...
15818 (ix86_update_stack_boundary): Here. Don't over-align stack for
15819 __tls_get_addr.
15820 (ix86_finalize_stack_realign_flags): Use stack_alignment_needed
15821 if __tls_get_addr is called.
15822
15823 2016-01-26 Christian Bruel <christian.bruel@st.com>
15824
15825 * doc/sourcebuild.texi (arm_crypto_pragma_ok): Remove.
15826
15827 2016-01-26 Eric Botcazou <ebotcazou@adacore.com>
15828
15829 * config/ia64/ia64.c (ia64_expand_vecint_compare): Use gen_int_mode.
15830
15831 2016-01-26 Richard Biener <rguenther@suse.de>
15832
15833 PR middle-end/69467
15834 * match.pd: Guard X * CST CMP 0 pattern with single_use.
15835
15836 2016-01-26 Richard Biener <rguenther@suse.de>
15837
15838 PR tree-optimization/69452
15839 * tree-ssa-loop-im.c (move_computations_dom_walker): Remove.
15840 (move_computations_dom_walker::before_dom_children): Rename
15841 to ...
15842 (move_computations_worker): This.
15843 (move_computations): Perform an RPO rather than a DOM walk.
15844
15845 2016-01-26 Jakub Jelinek <jakub@redhat.com>
15846
15847 PR target/69442
15848 * combine.c (combine_instructions): For REG_EQUAL note with
15849 SET_DEST being ZERO_EXTRACT, also temporarily set SET_DEST
15850 to the underlying register.
15851 * doc/rtl.texi (REG_EQUAL): Document the behavior of
15852 REG_EQUAL/REG_EQUIV notes if SET_DEST is ZERO_EXTRACT.
15853
15854 2016-01-26 Roger Ferrer Ibáñez <rofirrim@gmail.com>
15855
15856 PR target/67896
15857 * config/aarch64/aarch64-builtins.c
15858 (aarch64_init_simd_builtin_types): Do not set structural
15859 equality to __Poly{8,16,64,128}_t types.
15860
15861 2016-01-26 Richard Sandiford <richard.sandiford@arm.com>
15862
15863 PR tree-optimization/69400
15864 * wide-int.cc (wi_pack): Take the precision as argument and
15865 perform canonicalization here rather than in the callers.
15866 Use the main loop to handle all full-width HWIs. Add a
15867 zero HWI if in_len isn't a full result.
15868 (wi::divmod_internal): Update accordingly.
15869 (wi::mul_internal): Likewise. Simplify.
15870
15871 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
15872 Sebastian Pop <s.pop@samsung.com>
15873
15874 * graphite-poly.c (apply_poly_transforms): Simplify.
15875 (print_isl_set): Use more readable format: ISL_YAML_STYLE_BLOCK.
15876 (print_isl_map): Same.
15877 (print_isl_union_map): Same.
15878 (print_isl_schedule): New.
15879 (debug_isl_schedule): New.
15880 * graphite-dependences.c (scop_get_reads): Do not call
15881 isl_union_map_add_map that is undocumented isl functionality.
15882 (scop_get_must_writes): Same.
15883 (scop_get_may_writes): Same.
15884 (scop_get_original_schedule): Remove.
15885 (scop_get_dependences): Do not call isl_union_map_compute_flow that
15886 is deprecated in isl 0.15. Instead, use isl_union_access_* interface.
15887 (compute_deps): Remove.
15888 * graphite-isl-ast-to-gimple.c (print_schedule_ast): New.
15889 (debug_schedule_ast): New.
15890 (translate_isl_ast_to_gimple::scop_to_isl_ast): Call
15891 set_separate_option.
15892 (graphite_regenerate_ast_isl): Add dump.
15893 (translate_isl_ast_to_gimple::scop_to_isl_ast): Generate code
15894 from scop->transformed_schedule.
15895 (graphite_regenerate_ast_isl): Add more dump.
15896 * graphite-optimize-isl.c (optimize_isl): Set
15897 scop->transformed_schedule. Check whether schedules are equal.
15898 (apply_poly_transforms): Move here.
15899 * graphite-poly.c (apply_poly_transforms): ... from here.
15900 (free_poly_bb): Static.
15901 (free_scop): Static.
15902 (pbb_number_of_iterations_at_time): Remove.
15903 (print_isl_ast): New.
15904 (debug_isl_ast): New.
15905 (debug_scop_pbb): New.
15906 * graphite-scop-detection.c (print_edge): Move.
15907 (print_sese): Move.
15908 * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Remove.
15909 (build_scop_scattering): Remove.
15910 (create_pw_aff_from_tree): Assert instead of bailing out.
15911 (add_condition_to_pbb): Remove unused code, do not fail.
15912 (add_conditions_to_domain): Same.
15913 (add_conditions_to_constraints): Remove.
15914 (build_scop_context): New.
15915 (add_iter_domain_dimension): New.
15916 (build_iteration_domains): Initialize pbb->iterators.
15917 Call add_conditions_to_domain.
15918 (nested_in): New.
15919 (loop_at): New.
15920 (index_outermost_in_loop): New.
15921 (index_pbb_in_loop): New.
15922 (outermost_pbb_in): New.
15923 (add_in_sequence): New.
15924 (add_outer_projection): New.
15925 (outer_projection_mupa): New.
15926 (add_loop_schedule): New.
15927 (build_schedule_pbb): New.
15928 (build_schedule_loop): New.
15929 (embed_in_surrounding_loops): New.
15930 (build_schedule_loop_nest): New.
15931 (build_original_schedule): New.
15932 (build_poly_scop): Call build_original_schedule.
15933 * graphite.h: Declare print_isl_schedule and debug_isl_schedule.
15934 (free_poly_dr): Remove.
15935 (struct poly_bb): Add iterators. Remove schedule, transformed, saved.
15936 (free_poly_bb): Remove.
15937 (debug_loop_vec): Remove.
15938 (print_isl_ast): Declare.
15939 (debug_isl_ast): Declare.
15940 (scop_do_interchange): Remove.
15941 (scop_do_strip_mine): Remove.
15942 (scop_do_block): Remove.
15943 (flatten_all_loops): Remove.
15944 (optimize_isl): Remove.
15945 (pbb_number_of_iterations_at_time): Remove.
15946 (debug_scop_pbb): Declare.
15947 (print_schedule_ast): Declare.
15948 (debug_schedule_ast): Declare.
15949 (struct scop): Remove schedule. Add original_schedule,
15950 transformed_schedule.
15951 (free_gimple_poly_bb): Remove.
15952 (print_generated_program): Remove.
15953 (debug_generated_program): Remove.
15954 (unify_scattering_dimensions): Remove.
15955 * sese.c (print_edge): ... here.
15956 (print_sese): ... here.
15957 (debug_edge): ... here.
15958 (debug_sese): ... here.
15959 * sese.h (print_edge): Declare.
15960 (print_sese): Declare.
15961 (dump_edge): Declare.
15962 (dump_sese): Declare.
15963
15964 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
15965 Sebastian Pop <s.pop@samsung.com>
15966
15967 * Makefile.in: Set ISLVER in site.exp.
15968
15969 2016-01-25 Jakub Jelinek <jakub@redhat.com>
15970
15971 * omp-low.c (lower_omp_target) <case USE_DEVICE_PTR>: Set
15972 DECL_VALUE_EXPR of new_var even for the non-array case. Look
15973 through DECL_VALUE_EXPR for expansion.
15974
15975 2016-01-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
15976
15977 * config/mips/mips.c (mips_compute_frame_info): Skip re-computing
15978 the frame info after reload completed.
15979
15980 2016-01-25 Jeff Law <law@redhat.com>
15981
15982 PR tree-optimization/69196
15983 PR tree-optimization/68398
15984 * tree-ssa-threadupdate.h (enum bb_dom_status): Moved here from
15985 tree-ssa-threadupdate.c.
15986 (determine_bb_domination_status): Prototype
15987 * tree-ssa-threadupdate.c (enum bb_dom_status): Remove
15988 (determine_bb_domination_status): No longer static.
15989 (valid_jump_thread_path): Remove code to detect characteristics
15990 of the jump thread path not associated with correctness.
15991 * tree-ssa-threadbackward.c (fsm_find_control_statment_thread_paths):
15992 Correct test for thread path length. Count PHIs for real operands as
15993 statements that need to be copied. Do not count ASSERT_EXPRs.
15994 Look at all the blocks in the thread path. Compute and selectively
15995 filter thread paths based on threading through the latch, threading
15996 a multiway branch or crossing a multiway branch.
15997
15998 2016-01-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
15999
16000 * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): Add
16001 decl with __attribute__ ((unused)) annotation.
16002
16003 2016-01-25 Ilya Enkovich <enkovich.gnu@gmail.com>
16004
16005 PR target/69421
16006 * tree-vect-stmts.c (vectorizable_condition): Check vectype
16007 of operands is compatible with a statement vectype.
16008
16009 2016-01-25 Eric Botcazou <ebotcazou@adacore.com>
16010
16011 * doc/extend.texi (scalar_storage_order type attribute): Fix typo and
16012 improve wording for mixed storage order support.
16013
16014 2016-01-25 Bilyan Borisov <bilyan.borisov@arm.com>
16015
16016 * config/aarch64/arm_neon.h (vcvt_s64_f64): New intrinsic.
16017 (vcvt_u64_f64): Likewise.
16018 (vcvta_s64_f64): Likewise.
16019 (vcvta_u64_f64): Likewise.
16020 (vcvtm_s64_f64): Likewise.
16021 (vcvtm_u64_f64): Likewise.
16022 (vcvtn_s64_f64): Likewise.
16023 (vcvtn_u64_f64): Likewise.
16024 (vcvtp_s64_f64): Likewise.
16025 (vcvtp_u64_f64): Likewise.
16026
16027 2016-01-25 Claudiu Zissulescu <claziss@synopsys.com>
16028
16029 * config/arc/arc.c (TARGET_DWARF_REGISTER_SPAN): Define.
16030 (arc_init): Check validity mll64 option.
16031 (arc_save_restore): Use double load/store instruction.
16032 (arc_expand_movmem): Likewise.
16033 (arc_split_move): Don't split if we have double load/store
16034 instructions. Returns a boolean.
16035 (arc_process_double_reg_moves): Change function to return boolean
16036 instead of a sequence of instructions.
16037 (arc_dwarf_register_span): New function.
16038 * config/arc/arc-protos.h (arc_split_move): Change prototype.
16039 * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Define __ARC_LL64__.
16040 * config/arc/arc.md (*movdi_insn): Emit ldd/std instructions.
16041 (*movdf_insn): Likewise.
16042 * config/arc/arc.opt (mll64): New option.
16043 * config/arc/predicates.md (even_register_operand): New predicate.
16044 * doc/invoke.texi (ARC Options): Add mll64 documentation.
16045
16046 2016-01-25 Richard Biener <rguenther@suse.de>
16047
16048 PR lto/69393
16049 * dwarf2out.c (is_naming_typedef_decl): Not when DECL_NAMELESS.
16050 * tree-streamer-out.c (pack_ts_base_value_fields): Stream
16051 DECL_NAMELESS.
16052 * tree-streamer-in.c (unpack_ts_base_value_fields): Likewise.
16053
16054 2016-01-25 Richard Biener <rguenther@suse.de>
16055
16056 PR tree-optimization/69376
16057 * tree-ssa-sccvn.h (struct vn_ssa_aux): Add range_info_anti_range_p
16058 flag.
16059 (VN_INFO_ANTI_RANGE_P): New inline.
16060 (VN_INFO_RANGE_TYPE): Likewise.
16061 * tree-ssa-sccvn.c (set_ssa_val_to): Also record and copy
16062 SSA_NAME_ANTI_RANGE_P.
16063 (free_scc_vn): Restore SSA_NAME_ANTI_RANGE_P.
16064 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
16065 Properly query VN_INFO_RANGE_TYPE.
16066
16067 2016-01-25 Nick Clifton <nickc@redhat.com>
16068
16069 PR target/66655
16070 * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Remove definition.
16071
16072 2016-01-23 Tom de Vries <tom@codesourcery.com>
16073
16074 PR tree-optimization/69426
16075 * tree-parloops.c (eliminate_local_variables_stmt): Handle vdef of
16076 removed clobber.
16077
16078 2016-01-23 Jakub Jelinek <jakub@redhat.com>
16079
16080 * tree-ssanames.c (release_free_names_and_compact_live_names): Replace
16081 "the the" with "the" in the comments.
16082 * ipa-devirt.c (build_type_inheritance_graph,
16083 update_type_inheritance_graph): Likewise.
16084 * tree.c (build_function_type_list_1): Likewise.
16085 * cfgloopmanip.c (scale_loop_profile): Likewise.
16086 * tree-ssa-loop-ivopts.c (get_shiftadd_cost): Likewise.
16087 * gimple-ssa-split-paths.c
16088 (find_block_to_duplicate_for_splitting_paths): Likewise.
16089 * tree-sra.c (init_subtree_with_zero, clobber_subtree): Likewise.
16090 * expr.c (convert_move): Likewise.
16091 * var-tracking.c (vt_stack_adjustments): Likewise.
16092 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Likewise.
16093 * tree-vrp.c (test_for_singularity): Likewise.
16094
16095 * tree-vect-stmts.c (vectorizable_condition): Build a VEC_COND_EXPR
16096 directly instead of building a temporary tree.
16097
16098 PR bootstrap/69434
16099 * genrecog.c: Define INCLUDE_ALGORITHM before including system.h,
16100 remove <algorithm> include.
16101
16102 2016-01-22 Jakub Jelinek <jakub@redhat.com>
16103
16104 PR target/69432
16105 * config/i386/i386.c: Include dojump.h.
16106 (expand_small_movmem_or_setmem,
16107 expand_set_or_movmem_prologue_epilogue_by_misaligned_moves): Spelling
16108 fixes.
16109 (ix86_expand_set_or_movmem): Call do_pending_stack_adjust () early
16110 if dynamic_check != -1.
16111
16112 2016-01-21 Jeff Law <law@redhat.com>
16113
16114 PR middle-end/69347
16115 * tree-ssa-dom.c (back_propagate_equivalences): Factored out of
16116 record_temporary_equivalences. Rewritten to avoid unnecessary calls
16117 into dominated_by_p.
16118 (cprop_into_successor_phis): Avoid unnecessary tests.
16119
16120 2016-01-22 Richard Henderson <rth@redhat.com>
16121
16122 PR target/69416
16123 * config/aarch64/aarch64.md (UNSPEC_NZCV): New.
16124 (ccmp<mode>, fccmp<mode>, fccmpe<mode>): Use it.
16125
16126 2016-01-22 Michael Matz <matz@suse.de>
16127
16128 * system.h (string, algorithm): Include only conditionally.
16129 (new): Include always under C++.
16130 * bb-reorder.c (toplevel): Define INCLUDE_ALGORITHM.
16131 * final.c (toplevel): Ditto.
16132 * ipa-chkp.c (toplevel): Define INCLUDE_STRING.
16133 * genconditions.c (write_header): Make gencondmd.c define
16134 INCLUDE_STRING.
16135 * mem-stats.h (mem_usage::print_dash_line): Don't use std::string.
16136
16137 * config/aarch64/aarch64.c (toplevel): Define INCLUDE_STRING.
16138 * common/config/aarch64/aarch64-common.c (toplevel): Ditto.
16139
16140 2016-01-22 Christian Bruel <christian.bruel@st.com>
16141
16142 PR target/68674
16143 * expr.c (expand_expr_real_1): Reset DECL_MODE if VECTOR_TYPE_P changed.
16144
16145 2016-01-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16146
16147 PR target/69403
16148 * config/arm/thumb2.md (*thumb2_ior_scc_strict_it): Convert to
16149 define_insn_and_split. Ensure operands[1] and operands[0] do not
16150 get assigned the same register.
16151
16152 2016-01-22 Kugan Vivekanandarajah <kuganv@linaro.org>
16153
16154 * ipa-prop.c (ipa_set_jf_constant): Remove redundant unshare_expr.
16155
16156 2016-01-22 Christian Bruel <christian.bruel@st.com>
16157
16158 * config/arm/arm-c.c (arm_pragma_target_parse):
16159 Remove warn_builtin_macro_redefined overwrite.
16160
16161 2016-01-22 Eric Botcazou <ebotcazou@adacore.com>
16162
16163 * ipa-inline.c (can_inline_edge_p): Back out overzealous check on
16164 flag_non_call_exceptions compatibility.
16165
16166 2016-01-22 Jakub Jelinek <jakub@redhat.com>
16167
16168 PR debug/66668
16169 * dwarf2out.c (add_child_die_after): New function.
16170 (dwarf_qual_info_t): New type.
16171 (dwarf_qual_info): New variable.
16172 (qualified_die_p): New function.
16173 (modified_type_die): For -fdebug-types-section, ensure
16174 canonical order of qualifiers. Put qualified DIEs adjacent
16175 to the corresponding non-qualified type DIE and search there
16176 for existing qualified DIEs.
16177
16178 2016-01-22 Eric Botcazou <ebotcazou@adacore.com>
16179
16180 * doc/extend.texi (scalar_storage_order type attribute): Document
16181 restriction on type punning and aliasing, and remove future tense.
16182
16183 2016-01-21 Roman Zhuykov <zhroma@ispras.ru>
16184
16185 PR target/69252
16186 * modulo-sched.c (optimize_sc): Allow branch-scheduling to add a new
16187 first stage.
16188
16189 2016-01-21 Jeff Law <law@redhat.com>
16190
16191 PR middle-end/69347
16192 * tree-ssa-dom.c (dom_opt_dom_walker::thread_across_edge): Avoid
16193 useless call to record_temporary_equivalences.
16194 * tree-ssa-threadbackward.c (find_jump_threads_backwards): Just
16195 allocate 10 slots in the bb_path vector and let it grow as needed.
16196 (fsm_find_control_statement_thread_paths): Similarly for the next_path
16197 vector.
16198
16199 2016-01-21 David Edelsohn <dje.gcc@gmail.com>
16200
16201 * configure.ac (gcc_cv_as_powerpc_mfcrf, gcc_cv_as_machine_directive):
16202 Detangle.
16203 * configure: Regenerate.
16204
16205 2016-01-21 Pat Haugen <pthaugen@us.ibm.com>
16206
16207 * config/rs6000/aix71.h (ASM_CPU_SPEC): Add entry for Power9.
16208 * config/rs6000/driver-rs6000.c (struct asm_names): Likewise.
16209
16210 2016-01-21 Bernd Schmidt <bschmidt@redhat.com>
16211
16212 PR middle-end/66178
16213 * expr.c (expand_expr_real_2) [PLUS_EXPR, MINUS_EXPR]: Don't
16214 drop EXPAND_INITIALIZER.
16215 * rtl.h (contains_symbolic_reference_p): Declare.
16216 * rtlanal.c (contains_symbolic_reference_p): New function.
16217 * simplify-rtx.c (simplify_binary_operation_1): Don't turn
16218 a subtraction into a NOT if symbolic constants are involved.
16219
16220 2016-01-21 Anton Blanchard <anton@samba.org>
16221 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
16222
16223 PR target/63354
16224 * config/rs6000/linux64.h (TARGET_KEEP_LEAF_WHEN_PROFILED): New
16225 #define.
16226 * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): New
16227 function.
16228
16229 2016-01-21 Ajit Agarwal <ajitkum@xilinx.com>
16230
16231 * config/microblaze/microblaze.c
16232 (get_branch_target): New.
16233 (insert_wic_for_ilb_runout): New.
16234 (insert_wic): New.
16235 (microblaze_machine_dependent_reorg): New.
16236 (TARGET_MACHINE_DEPENDENT_REORG): Define macro.
16237 * config/microblaze/microblaze.md
16238 (UNSPEC_IPREFETCH): Define.
16239 (iprefetch): New pattern
16240 * config/microblaze/microblaze.opt
16241 (mxl-prefetch): New flag.
16242
16243 2016-01-21 Ajit Agarwal <ajitkum@xilinx.com>
16244
16245 * config/microblaze/microblaze.h
16246 (FIXED_REGISTERS): Update in macro.
16247 (CALL_USED_REGISTERS): Update in macro.
16248
16249 2016-01-21 Yuri Rumyantsev <ysrumyan@gmail.com>
16250
16251 PR rtl-optimization/68920
16252 * ifcvt.c (cond_move_process_if_block): Limit number of conditional
16253 moves.
16254
16255 2016-01-21 Vladimir Makarov <vmakarov@redhat.com>
16256
16257 PR rtl-optimization/68990
16258 * lra-coalesce.c (lra_coalesce): Invalidate value for the result
16259 pseudo instead of inheritance ones.
16260
16261 2016-01-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
16262 Nick Clifton <nickc@redhat.com>
16263
16264 PR target/69129
16265 PR target/69012
16266 * config/mips/mips.c (mips_compute_frame_info): Initialise
16267 args_size and hard_frame_pointer_offset fields of the frame
16268 structure before calling mips_global_pointer.
16269
16270 2016-01-21 David Edelsohn <dje.gcc@gmail.com>
16271
16272 * configure.ac (gcc_cv_as_dwloc): Test support for debug frame section
16273 label reference.
16274 * configure: Regenerate.
16275
16276 2016-01-21 Richard Biener <rguenther@suse.de>
16277
16278 * graphite-optimize-isl.c (get_schedule_map): Fix typo.
16279
16280 2016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
16281
16282 * config/s390/s390.c (s390_asm_declare_function_size): Add code
16283 to actually emit the .size directive.
16284
16285 2016-01-21 Stefan Sørensen <stefan.sorensen@spectralink.com>
16286 Jakub Jelinek <jakub@redhat.com>
16287
16288 PR target/69187
16289 PR target/65624
16290 * config/arm/arm-builtins.c (arm_expand_neon_builtin): Increase
16291 args array size by one to avoid buffer overflow.
16292
16293 2016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
16294
16295 * config/s390/s390.md (pool_section_start): Use switch_to_section
16296 to select proper read-only data section instead of hardcoding
16297 .rodata.
16298 (pool_section_end): Use switch_to_section to match the above.
16299
16300 2016-01-21 Richard Biener <rguenther@suse.de>
16301
16302 PR tree-optimization/69378
16303 * tree-ssa-sccvn.c (dominated_by_p_w_unex): New function.
16304 (set_ssa_val_to): Use it for dominance checks taking into
16305 account not executable edges.
16306
16307 2016-01-21 Jakub Jelinek <jakub@redhat.com>
16308
16309 PR c++/69355
16310 * tree-dfa.c (get_ref_base_and_extent): Use GET_MODE_BITSIZE (mode)
16311 for bitsize instead of GET_MODE_PRECISION (mode).
16312
16313 2016-01-20 Martin Sebor <msebor@redhat.com>
16314
16315 PR c/52291
16316 * extend.texi (__sync Builtins): Clarify the semantics of
16317 __sync_fetch_and_OP built-ins on pointers.
16318 (__atomic Builtins): Same.
16319
16320 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16321 Sebastian Pop <s.pop@samsung.com>
16322
16323 * graphite-isl-ast-to-gimple.c (enum phi_node_kind): New.
16324 (class translate_isl_ast_to_gimple): Use phi_node_kind instead of bool.
16325 (is_valid_rename): Same.
16326 (translate_isl_ast_to_gimple::get_rename): Same.
16327 (translate_isl_ast_to_gimple::rename_all_uses): Same.
16328 (translate_isl_ast_to_gimple::rename_uses): Same.
16329 (get_new_name): Check for close_phi nodes.
16330 (copy_loop_phi_args): Use phi_node_kind.
16331 (translate_isl_ast_to_gimple::copy_loop_close_phi_args): Same.
16332 (translate_isl_ast_to_gimple::copy_cond_phi_args): Same.
16333
16334 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16335 Sebastian Pop <s.pop@samsung.com>
16336
16337 Revert commit r229783.
16338 * graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id):
16339 Remove use of parameter_rename_map.
16340 (copy_def): Remove.
16341 (copy_internal_parameters): Remove.
16342 (graphite_regenerate_ast_isl): Remove call to copy_internal_parameters.
16343 * sese.c (new_sese_info): Do not initialize parameter_rename_map.
16344 (free_sese_info): Do not free parameter_rename_map.
16345 (set_rename): Do not use parameter_rename_map.
16346 (rename_uses): Update call to set_rename.
16347 (graphite_copy_stmts_from_block): Do not use parameter_rename_map.
16348 * sese.h (parameter_rename_map_t): Remove.
16349 (struct sese_info_t): Remove field parameter_rename_map.
16350
16351 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16352 Sebastian Pop <s.pop@samsung.com>
16353
16354 * graphite-isl-ast-to-gimple.c: Fix comment.
16355 * graphite-scop-detection.c (defined_in_loop_p): New.
16356 (canonicalize_loop_closed_ssa): Do not add close phi nodes for SSA
16357 names defined in loop.
16358
16359 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16360 Sebastian Pop <s.pop@samsung.com>
16361
16362 * graphite-scop-detection.c (scop_detection::harmful_loop_in_region):
16363 Discard unstructured if-then-else regions.
16364
16365 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16366 Sebastian Pop <s.pop@samsung.com>
16367
16368 * graphite-sese-to-poly.c (set_scop_parameter_dim): Remove.
16369 (cleanup_loop_iter_dom): Remove.
16370 (build_loop_iteration_domains): Remove.
16371 (build_scop_context): Remove.
16372 (build_scop_iteration_domain): Remove.
16373 (add_loop_constraints): New.
16374 (build_iteration_domains): New.
16375 (build_poly_scop): Call build_iteration_domains.
16376
16377 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16378 Sebastian Pop <s.pop@samsung.com>
16379
16380 * graphite-scop-detection.c
16381 (scop_detection::harmful_loop_in_region): Free dom and loops.
16382 (scop_detection::loop_body_is_valid_scop): Free bbs.
16383
16384 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16385 Sebastian Pop <s.pop@samsung.com>
16386
16387 * graphite-scop-detection.c (record_loop_in_sese): New.
16388 (gather_bbs::before_dom_children): Call record_loop_in_sese.
16389 (build_scops): Remove call to build_sese_loop_nests.
16390 * sese.c (sese_record_loop): Remove.
16391 (build_sese_loop_nests): Remove.
16392 (new_sese_info): Remove region->loops.
16393 (free_sese_info): Same.
16394 * sese.h (sese_contains_loop): Same.
16395 (build_sese_loop_nests): Remove.
16396 (sese_contains_loop): Remove.
16397
16398 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16399 Sebastian Pop <s.pop@samsung.com>
16400
16401 * graphite-scop-detection.c (loop_is_valid_scop): Renamed
16402 loop_is_valid_in_scop.
16403 (scop_detection::harmful_stmt_in_region): Renamed
16404 harmful_loop_in_region.
16405 Call loop_is_valid_in_scop.
16406
16407 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16408 Sebastian Pop <s.pop@samsung.com>
16409
16410 * graphite-isl-ast-to-gimple.c (translate_isl_ast): Also handle
16411 isl_ast_node_mark.
16412
16413 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16414 Sebastian Pop <s.pop@samsung.com>
16415
16416 * graphite-poly.c (new_poly_bb): Remove use of PBB_IS_REDUCTION.
16417 * graphite.h (struct poly_bb): Remove field is_reduction.
16418 (PBB_IS_REDUCTION): Remove.
16419
16420 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
16421 Sebastian Pop <s.pop@samsung.com>
16422
16423 * graphite-dependences.c (constrain_domain): Add call to isl_*_coalesce.
16424 (add_pdr_constraints): Same.
16425 (scop_get_reads): Same.
16426 (scop_get_must_writes): Same.
16427 (scop_get_may_writes): Same.
16428 (scop_get_original_schedule): Same.
16429 (extend_schedule): Same.
16430 (apply_schedule_on_deps): Same.
16431 (carries_deps): Same.
16432 (compute_deps): Same.
16433 (scop_get_dependences): Same.
16434 * graphite-isl-ast-to-gimple.c
16435 (translate_isl_ast_to_gimple::generate_isl_schedule): Same.
16436 * graphite-optimize-isl.c (get_schedule_for_band): Same.
16437 (get_schedule_for_band_list): Same.
16438 (get_schedule_map): Same.
16439 (apply_schedule_map_to_scop): Same.
16440 * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Same.
16441 (build_loop_iteration_domains): Same.
16442 (add_condition_to_pbb): Same.
16443 (add_param_constraints): Same.
16444 (pdr_add_memory_accesses): Same.
16445 (pdr_add_data_dimensions): Same.
16446
16447 2016-01-20 Sandra Loosemore <sandra@codesourcery.com>
16448
16449 * doc/invoke.texi (Instrumentation Options): Clarify -mmpx linking
16450 requirements.
16451
16452 2016-01-20 Sandra Loosemore <sandra@codesourcery.com>
16453
16454 * common.opt (feliminate-dwarf2-dups): Replace references to
16455 "DWARF 2" with just "DWARF".
16456 * config/ia64/ia64.opt (mdwarf2-asm): Likewise.
16457 * doc/extend.texi: Likewise.
16458 * doc/cpp.texi: Likewise.
16459 * doc/invoke.texi: Likewise.
16460 (Option Summary): Add -gdwarf to list of Debugging Options.
16461 (Debugging Options): Document -gdwarf.
16462 * doc/contrib.texi: Spell "DWARF" like that.
16463
16464 2016-01-21 Jakub Jelinek <jakub@redhat.com>
16465
16466 * omp-low.c (expand_omp_target): Avoid -Wmaybe-uninitialized
16467 warning. Fix up formatting.
16468
16469 PR middle-end/67653
16470 * gimplify.c (gimplify_asm_expr): Warn if it is too late to
16471 attempt to mark memory input operand addressable and
16472 call prepare_gimple_addressable in that case. Don't adjust
16473 input_location for diagnostics, use error_at instead.
16474
16475 2016-01-20 Peter Bergner <bergner@vnet.ibm.com>
16476
16477 * config/rs6000/ppc-auxv.h: New file.
16478 * config/rs6000/rs6000-builtin.def (cpu_init): Add new builtin.
16479 (cpu_is): Likewise.
16480 (cpu_supports): Likewise.
16481 * config/rs6000/rs6000.c: include "ppc-auxv.h".
16482 (cpu_is_info): New variable.
16483 (cpu_supports_info): Likewise.
16484 (tcb_verification_symbol): Likewise.
16485 (cpu_builtin_p): Likewise.
16486 (cpu_expand_builtin): New function.
16487 (rs6000_expand_ternop_builtin): Add support for CPU builtin functions.
16488 (rs6000_init_builtins): Likewise.
16489 (rs6000_elf_file_end): Emit HWCAP in TCB verification symbol.
16490 * config/rs6000/rs6000.h (TLS_REGNUM): New define.
16491 * configure.ac (gcc_cv_libc_provides_hwcap_in_tcb): New test.
16492 * configure: Regenerate.
16493 * config.in: Likewise.
16494 * doc/extend.texi (PowerPC Built-in Functions): Document
16495 __builtin_cpu_init, __builtin_cpu_is and __builtin_cpu_supports.
16496
16497 2016-01-20 David Edelsohn <dje.gcc@gmail.com>
16498
16499 PR target/68609
16500 * config/rs6000/rs6000.c (rs6000_emit_swsqrt): Add vector sqrt
16501 domain check.
16502 * config/rs6000/vector.md (sqrt<mode>2): Call rs6000_emit_swsqrt
16503 for V4SFmode.
16504
16505 2016-01-20 Richard Henderson <rth@redhat.com>
16506
16507 PR bootstrap/69343
16508 PR bootstrap/69339
16509 PR tree-opt/68964
16510 Revert:
16511 * tree.c (tm_define_builtin): New.
16512 (find_tm_vector_type): New.
16513 (build_tm_vector_builtins): New.
16514 (build_common_builtin_nodes): Call it.
16515
16516 2016-01-20 Christophe Lyon <christophe.lyon@linaro.org>
16517
16518 * doc/sourcebuild.texi (arm_crypto_pragma_ok): Document new entry.
16519 (arm_fp_ok): Likewise.
16520 (arm_fp): Likewise.
16521 (arm_crypto): Likewise.
16522
16523 2016-01-20 Ilya Enkovich <enkovich.gnu@gmail.com>
16524 Richard Biener <rguenther@suse.de>
16525
16526 PR tree-optimization/69328
16527 * tree-vect-stmts.c (vect_is_simple_cond): Check compared
16528 vectors have same number of elements.
16529 (vectorizable_condition): Fix masked version recognition.
16530
16531 2016-01-20 Richard Biener <rguenther@suse.de>
16532
16533 PR tree-optimization/69345
16534 * tree-ssa-sccvn.h (VN_INFO_RANGE_INFO): New inline function.
16535 (VN_INFO_PTR_INFO): Likewise.
16536 * tree-ssa-sccvn.c (set_ssa_val_to): Avoid clearing points-to
16537 info when it is equal between non-dominating SSA names.
16538 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
16539 Make sure to look at original SSA infos.
16540
16541 2016-01-20 Jeff Law <law@redhat.com>
16542
16543 PR target/25114
16544 * config/m68k/predicates.md (pow2_m1_operand): New predicate
16545 extracted from ...
16546 (reg_or_pow2_m1_operand): Call pow2_m1_operand.
16547 (pc_or_label_operand): New predicate.
16548 * config/m68k/m68k.md: Add new peephole2 patterns for GTU/LEU
16549 tests for small integers that are 2^n - 1.
16550
16551 2016-01-20 Jonathan Wakely <jwakely@redhat.com>
16552
16553 * doc/invoke.texi (Options Summary): Add '.' after @xref.
16554
16555 2016-01-19 Jeff Law <law@redhat.com>
16556
16557 PR middle-end/69347
16558 * tree-ssa-threadbackwards.c
16559 (fsm_find_control_statement_thread_paths): Do not try to lookup
16560 FSM paths for SSA_NAMEs appearing in abnormal PHIs.
16561
16562 2016-01-20 Kugan Vivekanandarajah <kuganv@linaro.org>
16563
16564 * doc/lto.texi: Remove text that says only Gold has linker plugin
16565 support.
16566
16567 2016-01-19 Eric Botcazou <ebotcazou@adacore.com>
16568
16569 * dwarf2out.c (need_endianity_attribute_p): New inline predicate.
16570 (base_type_die): Add REVERSE parameter and attach DW_AT_endianity to
16571 the DIE accordingly.
16572 (modified_type_die): Add REVERSE parameter and pass it recursively,
16573 as well as to base_type_die. Adjust presence check accordingly.
16574 (base_type_for_mode): Adjust call to modified_type_die.
16575 (add_type_attribute): Add REVERSE parameter and pass it to
16576 modified_type_die.
16577 (generic_parameter_die): Adjust call to add_type_attribute.
16578 (add_scalar_info): Likewise.
16579 (add_subscript_info): Likewise.
16580 (gen_array_type_die): Likewise.
16581 (gen_descr_array_type_die): Likewise.
16582 (gen_entry_point_die): Likewise.
16583 (gen_enumeration_type_die): Likewise.
16584 (gen_formal_parameter_die): Likewise.
16585 (gen_subprogram_die): Likewise.
16586 (gen_variable_die ): Likewise.
16587 (gen_const_die): Likewise.
16588 (gen_field_die): Likewise.
16589 (gen_pointer_type_die): Likewise.
16590 (gen_reference_type_die): Likewise.
16591 (gen_ptr_to_mbr_type_die): Likewise.
16592 (gen_inheritance_die): Likewise.
16593 (gen_subroutine_type_die): Likewise.
16594 (gen_typedef_die): Likewise.
16595 (force_type_die): Adjust call to modified_type_die.
16596
16597 2016-01-19 Sandra Loosemore <sandra@codesourcery.com>
16598
16599 * doc/standards.texi: Copy-editing for grammar, markup, and sentence
16600 flow throughout the file. Fix broken link to Objective-C 2.0
16601 documentation.
16602 * doc/invoke.texi: More copy-editing; fix numerous typos and spelling
16603 errors.
16604
16605 2016-01-19 Wilco Dijkstra <wdijkstr@arm.com>
16606
16607 * ccmp.c (expand_ccmp_expr_1): Avoid spurious unused warnings.
16608
16609 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
16610
16611 PR ipa/66223
16612 * ipa-devirt.c (is_cxa_pure_virtual_p): New function.
16613 (maybe_record_node): Record cxa_pure_virtual as the only possible
16614 target if there are not ohter candidates.
16615 (possible_polymorphic_call_target_p): Accept cxa_pure_virtual.
16616
16617 2016-01-19 Richard Biener <rguenther@suse.de>
16618
16619 * hsa-gen.c (get_memory_order_name): Use MEMMODEL_ constants.
16620 (get_memory_order): Likewise.
16621
16622 2016-01-19 Kirill Yukhin <kirill.yukhin@intel.com>
16623
16624 * tree-vect-stmts.c (vectorizable_store): Check
16625 rhs vectype.
16626
16627 2016-01-19 David Malcolm <dmalcolm@redhat.com>
16628
16629 PR jit/68446
16630 * gcc.c (driver::decode_argv): Add call to
16631 init_opts_obstack before init_options_struct.
16632 * opts.c (init_opts_obstack): Remove idempotency.
16633 (init_options_struct): Replace call to init_opts_obstack
16634 with a gcc_assert to verify that it has already been called.
16635 * toplev.c (toplev::main): Add call to init_opts_obstack before
16636 calls to init_options_struct.
16637 (toplev::finalize): Move cleanup of opts_obstack next to
16638 cleanup of save_decoded_options, clearing the latter, and
16639 save_decoded_options_count.
16640
16641 2016-01-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16642
16643 PR target/69135
16644 * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): Set "conds"
16645 attribute to unconditional. Remove %? from output template.
16646
16647 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
16648 Jiong Wang <jiong.wang@arm.com>
16649
16650 * ccmp.c (expand_ccmp_expr_1): Cost the instruction sequences
16651 generated from different expand order.
16652
16653 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
16654
16655 * /config/aarch64/aarch64.c (aarch64_if_then_else_costs):
16656 Add support for CCMP costing.
16657
16658 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
16659
16660 * ccmp.c (ccmp_candidate_p): Remove integer-only restriction.
16661 * config/aarch64/aarch64.md (fccmp<mode>): New pattern.
16662 (fccmpe<mode>): Likewise.
16663 (fcmp): Rename to fcmp and globalize pattern.
16664 (fcmpe): Likewise.
16665 * config/aarch64/aarch64.c (aarch64_gen_ccmp_first): Add FP support.
16666 (aarch64_gen_ccmp_next): Add FP support.
16667
16668 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
16669
16670 * target.def (gen_ccmp_first): Update documentation.
16671 (gen_ccmp_next): Likewise.
16672 * doc/tm.texi (gen_ccmp_first): Update documentation.
16673 (gen_ccmp_next): Likewise.
16674 * ccmp.c (expand_ccmp_expr): Extract cmp_code from return value of
16675 expand_ccmp_expr_1. Improve comments.
16676 * config/aarch64/aarch64.md (ccmp_and): Use if_then_else for ccmp.
16677 (ccmp_ior<mode>): Remove pattern.
16678 (cmp<mode>): Remove expand.
16679 (cmp): Globalize pattern.
16680 (cstorecc4): Use cc_register.
16681 (mov<mode>cc): Remove ccmp_cc_register check.
16682 * config/aarch64/aarch64.c (aarch64_get_condition_code_1):
16683 Simplify after removal of CC_DNE/* modes.
16684 (aarch64_ccmp_mode_to_code): Remove.
16685 (aarch64_print_operand): Remove 'K' case. Merge 'm' and 'M' cases.
16686 In 'k' case use integer as condition.
16687 (aarch64_nzcv_codes): Remove inverted cases.
16688 (aarch64_code_to_ccmode): Remove.
16689 (aarch64_gen_ccmp_first): Use cmp pattern directly. Return the correct
16690 comparison with CC register to be used in folowing CCMP/branch/CSEL.
16691 (aarch64_gen_ccmp_next): Use previous comparison and mode in CCMP
16692 pattern. Return the comparison with CC register. Invert conditions
16693 when bitcode is OR.
16694 * config/aarch64/aarch64-modes.def: Remove CC_DNE/* modes.
16695 * config/aarch64/predicates.md (ccmp_cc_register): Remove.
16696
16697 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
16698
16699 * cgraphunit.c (cgraph_node::reset): Clear thunk info and
16700 instrumented_version.
16701
16702 2016-01-19 Richard Biener <rguenther@suse.de>
16703
16704 PR tree-optimization/69336
16705 * tree-ssa-scopedtables.c (avail_expr_hash): Handle all
16706 handled components with get_ref_base_and_extent.
16707 (equal_mem_array_ref_p): Adjust.
16708
16709 2016-01-19 Jakub Jelinek <jakub@redhat.com>
16710
16711 PR debug/65779
16712 * shrink-wrap.c: Include valtrack.h.
16713 (move_insn_for_shrink_wrap): Add DEBUG argument. If
16714 MAY_HAVE_DEBUG_INSNS, call dead_debug_add on DEBUG_INSNs
16715 in between insn and where it will be moved to. Call
16716 dead_debug_insert_temp.
16717 (prepare_shrink_wrap): Adjust caller. Call dead_debug_local_init
16718 first and dead_debug_local_finish at the end.
16719 For uses and defs bitmap, handle all regs in between REGNO and
16720 END_REGNO, not just the first one.
16721
16722 2016-01-19 Richard Biener <rguenther@suse.de>
16723
16724 PR tree-optimization/69352
16725 * tree-ssa-scopedtables.c (avail_expr_hash): Check for size == -1.
16726 (equal_mem_array_ref_p): Constrain size and max size properly.
16727 Compare the reverse flag.
16728
16729 2016-01-19 Bernd Schmidt <bschmidt@redhat.com>
16730
16731 * ira.c (ira): Update regstat data if we deleted insns.
16732
16733 2016-01-19 Jakub Jelinek <jakub@redhat.com>
16734
16735 PR rtl-optimization/68955
16736 PR rtl-optimization/64557
16737 * dse.c (record_store, check_mem_read_rtx): Don't call get_addr
16738 here. Fix up formatting.
16739 * alias.c (get_addr): Handle VALUE +/- CONST_SCALAR_INT_P.
16740
16741 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
16742
16743 PR lto/69133
16744 * cgraphunit.c (cgraph_node::expand_thunk): When forcing gimple
16745 assume that the node has body.
16746 * cgraph.c (cgraph_node::get_untransformed_body): Use gimple_body_p
16747 check.
16748
16749 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
16750
16751 * lto-streamer-out.c (lto_output): Do not stream instrumentation
16752 thunks.
16753
16754 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
16755
16756 * symtab.c (symtab_node::asm_name): Do not call printable name directly.
16757 (symtab_node::name): Report name as unnamed if DECL_NAME is not set.
16758
16759 2016-01-19 Martin Jambor <mjambor@suse.cz>
16760 Martin Liska <mliska@suse.cz>
16761 Michael Matz <matz@suse.de>
16762
16763 * Makefile.in (OBJS): Add new source files.
16764 (GTFILES): Add hsa.c.
16765 * common.opt (disable_hsa): New variable.
16766 (-Whsa): New warning.
16767 * config.in (ENABLE_HSA): New.
16768 * configure.ac: Treat hsa differently from other accelerators.
16769 (OFFLOAD_TARGETS): Define ENABLE_OFFLOADING according to
16770 $enable_offloading.
16771 (ENABLE_HSA): Define ENABLE_HSA according to $enable_hsa.
16772 * doc/install.texi (Configuration): Document --with-hsa-runtime,
16773 --with-hsa-runtime-include, --with-hsa-runtime-lib and
16774 --with-hsa-kmt-lib.
16775 * doc/invoke.texi (-Whsa): Document.
16776 (hsa-gen-debug-stores): Likewise.
16777 * lto-wrapper.c (compile_images_for_offload_targets): Do not attempt
16778 to invoke offload compiler for hsa acclerator.
16779 * opts.c (common_handle_option): Determine whether HSA offloading
16780 should be performed.
16781 * params.def (PARAM_HSA_GEN_DEBUG_STORES): New parameter.
16782 * builtin-types.def (BT_FN_VOID_UINT_PTR_INT_PTR): New.
16783 (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_INT_INT): Removed.
16784 (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_PTR): New.
16785 * gimple-low.c (lower_stmt): Also handle GIMPLE_OMP_GRID_BODY.
16786 * gimple-pretty-print.c (dump_gimple_omp_for): Also handle
16787 GF_OMP_FOR_KIND_GRID_LOOP.
16788 (dump_gimple_omp_block): Also handle GIMPLE_OMP_GRID_BODY.
16789 (pp_gimple_stmt_1): Likewise.
16790 * gimple-walk.c (walk_gimple_stmt): Likewise.
16791 * gimple.c (gimple_build_omp_grid_body): New function.
16792 (gimple_copy): Also handle GIMPLE_OMP_GRID_BODY.
16793 * gimple.def (GIMPLE_OMP_GRID_BODY): New.
16794 * gimple.h (enum gf_mask): Added GF_OMP_PARALLEL_GRID_PHONY,
16795 GF_OMP_FOR_KIND_GRID_LOOP, GF_OMP_FOR_GRID_PHONY and
16796 GF_OMP_TEAMS_GRID_PHONY.
16797 (gimple_statement_omp_single_layout): Updated comments.
16798 (gimple_build_omp_grid_body): New function.
16799 (gimple_has_substatements): Also handle GIMPLE_OMP_GRID_BODY.
16800 (gimple_omp_for_grid_phony): New function.
16801 (gimple_omp_for_set_grid_phony): Likewise.
16802 (gimple_omp_parallel_grid_phony): Likewise.
16803 (gimple_omp_parallel_set_grid_phony): Likewise.
16804 (gimple_omp_teams_grid_phony): Likewise.
16805 (gimple_omp_teams_set_grid_phony): Likewise.
16806 (gimple_return_set_retbnd): Also handle GIMPLE_OMP_GRID_BODY.
16807 * omp-builtins.def (BUILT_IN_GOMP_OFFLOAD_REGISTER): New.
16808 (BUILT_IN_GOMP_OFFLOAD_UNREGISTER): Likewise.
16809 (BUILT_IN_GOMP_TARGET): Updated type.
16810 * omp-low.c: Include symbol-summary.h, hsa.h and params.h.
16811 (adjust_for_condition): New function.
16812 (get_omp_for_step_from_incr): Likewise.
16813 (extract_omp_for_data): Moved parts to adjust_for_condition and
16814 get_omp_for_step_from_incr.
16815 (build_outer_var_ref): Handle GIMPLE_OMP_GRID_BODY.
16816 (fixup_child_record_type): Bail out if receiver_decl is NULL.
16817 (scan_sharing_clauses): Handle OMP_CLAUSE__GRIDDIM_.
16818 (scan_omp_parallel): Do not create child functions for phony
16819 constructs.
16820 (check_omp_nesting_restrictions): Handle GIMPLE_OMP_GRID_BODY.
16821 (scan_omp_1_op): Checking assert we are not remapping to
16822 ERROR_MARK. Also also handle GIMPLE_OMP_GRID_BODY.
16823 (parallel_needs_hsa_kernel_p): New function.
16824 (expand_parallel_call): Register apprpriate parallel child
16825 functions as HSA kernels.
16826 (grid_launch_attributes_trees): New type.
16827 (grid_attr_trees): New variable.
16828 (grid_create_kernel_launch_attr_types): New function.
16829 (grid_insert_store_range_dim): Likewise.
16830 (grid_get_kernel_launch_attributes): Likewise.
16831 (get_target_argument_identifier_1): Likewise.
16832 (get_target_argument_identifier): Likewise.
16833 (get_target_argument_value): Likewise.
16834 (push_target_argument_according_to_value): Likewise.
16835 (get_target_arguments): Likewise.
16836 (expand_omp_target): Call get_target_arguments instead of looking
16837 up for teams and thread limit.
16838 (grid_expand_omp_for_loop): New function.
16839 (grid_arg_decl_map): New type.
16840 (grid_remap_kernel_arg_accesses): New function.
16841 (grid_expand_target_kernel_body): New function.
16842 (expand_omp): Call it.
16843 (lower_omp_for): Do not emit phony constructs.
16844 (lower_omp_taskreg): Do not emit phony constructs but create for them
16845 a temporary variable receiver_decl.
16846 (lower_omp_taskreg): Do not emit phony constructs.
16847 (lower_omp_teams): Likewise.
16848 (lower_omp_grid_body): New function.
16849 (lower_omp_1): Call it.
16850 (grid_reg_assignment_to_local_var_p): New function.
16851 (grid_seq_only_contains_local_assignments): Likewise.
16852 (grid_find_single_omp_among_assignments_1): Likewise.
16853 (grid_find_single_omp_among_assignments): Likewise.
16854 (grid_find_ungridifiable_statement): Likewise.
16855 (grid_target_follows_gridifiable_pattern): Likewise.
16856 (grid_remap_prebody_decls): Likewise.
16857 (grid_copy_leading_local_assignments): Likewise.
16858 (grid_process_kernel_body_copy): Likewise.
16859 (grid_attempt_target_gridification): Likewise.
16860 (grid_gridify_all_targets_stmt): Likewise.
16861 (grid_gridify_all_targets): Likewise.
16862 (execute_lower_omp): Call grid_gridify_all_targets.
16863 (make_gimple_omp_edges): Handle GIMPLE_OMP_GRID_BODY.
16864 * tree-core.h (omp_clause_code): Added OMP_CLAUSE__GRIDDIM_.
16865 (tree_omp_clause): Added union field dimension.
16866 * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE__GRIDDIM_.
16867 * tree.c (omp_clause_num_ops): Added number of arguments of
16868 OMP_CLAUSE__GRIDDIM_.
16869 (omp_clause_code_name): Added name of OMP_CLAUSE__GRIDDIM_.
16870 (walk_tree_1): Handle OMP_CLAUSE__GRIDDIM_.
16871 * tree.h (OMP_CLAUSE_GRIDDIM_DIMENSION): New.
16872 (OMP_CLAUSE_SET_GRIDDIM_DIMENSION): Likewise.
16873 (OMP_CLAUSE_GRIDDIM_SIZE): Likewise.
16874 (OMP_CLAUSE_GRIDDIM_GROUP): Likewise.
16875 * passes.def: Schedule pass_ipa_hsa and pass_gen_hsail.
16876 * tree-pass.h (make_pass_gen_hsail): Declare.
16877 (make_pass_ipa_hsa): Likewise.
16878 * ipa-hsa.c: New file.
16879 * lto-section-in.c (lto_section_name): Add hsa section name.
16880 * lto-streamer.h (lto_section_type): Add hsa section.
16881 * timevar.def (TV_IPA_HSA): New.
16882 * hsa-brig-format.h: New file.
16883 * hsa-brig.c: New file.
16884 * hsa-dump.c: Likewise.
16885 * hsa-gen.c: Likewise.
16886 * hsa.c: Likewise.
16887 * hsa.h: Likewise.
16888 * toplev.c (compile_file): Call hsa_output_brig.
16889 * hsa-regalloc.c: New file.
16890
16891 2016-01-18 Jeff Law <law@redhat.com>
16892
16893 PR tree-optimization/69320
16894 * tree-ssa-dom.c (record_edge_info): For comparisons against a boolean
16895 ranged object, do nothing if the RHS constant is not [0..1].
16896 (optimize_stmt): Comparing a boolean ranged object against a
16897 constant outside [0..1] results in a compile-time constant.
16898
16899 * tree-ssanames.c (ssa_name_has_boolean_range): Remove unnecessary
16900 test.
16901
16902 2016-01-18 Sandra Loosemore <sandra@codesourcery.com>
16903
16904 * doc/invoke.texi (Invoking GCC): Add new section to menu.
16905 (Option Summary): Update to reflect new section and moved options.
16906 (C++ Dialect Options): Move -fstats to new section.
16907 (Debugging Options): Move all dump, statistics, and other GCC
16908 developer options to new section. Rewrite section introduction
16909 and re-order remaining options to put the more basic ones first.
16910 (Optimization Options): Move -fira-verbose and -flto-report* to
16911 new section.
16912 (Developer Options): New section incorporating moved options.
16913 * doc/cppopts.texi (-dM): Update cross-reference.
16914
16915 2016-01-18 Richard Henderson <rth@redhat.com>
16916
16917 PR target/69176
16918 * config/aarch64/aarch64.md (add<GPI>3): Move long immediate
16919 operands to pseudo only if CSE is expected. Split long immediate
16920 operands only after reload, and for the stack pointer.
16921 (*add<GPI>3_pluslong): Remove.
16922 (*addsi3_aarch64, *adddi3_aarch64): Merge into...
16923 (*add<GPI>3_aarch64): ... here. Add r/rk/Upl alternative.
16924 (*addsi3_aarch64_uxtw): Add r/rk/Upl alternative.
16925 (*add<GPI>3 peepholes): New.
16926 (*add<GPI>3 splitters): New.
16927 * config/aarch64/constraints.md (Upl): New.
16928 * config/aarch64/predicates.md (aarch64_pluslong_strict_immedate): New.
16929
16930 2016-01-18 Richard Biener <rguenther@suse.de>
16931
16932 PR tree-optimization/69297
16933 * tree-vect-slp.c (vect_bb_slp_scalar_cost): Count each scalar
16934 stmt at most once.
16935 (vect_bb_vectorization_profitable_p): Clear visited flag again.
16936
16937 2016-01-18 Yuri Rumyantsev <ysrumyan@gmail.com>
16938
16939 PR middle-end/68542
16940 * fold-const.c (fold_binary_op_with_conditional_arg): Bail out for case
16941 of mixind vector and scalar types.
16942 (fold_relational_const): Add handling of vector
16943 comparison with boolean result.
16944 * tree-cfg.c (verify_gimple_comparison): Add argument CODE, allow
16945 comparison of vector operands with boolean result for EQ/NE only.
16946 (verify_gimple_assign_binary): Adjust call for verify_gimple_comparison.
16947 (verify_gimple_cond): Likewise.
16948 * tree-vrp.c (extract_code_and_val_from_cond_with_ops): Modify check on
16949 valid type of VAL.
16950
16951 2016-01-18 Joseph Myers <joseph@codesourcery.com>
16952
16953 * config/mips/mips.h (ISA_HAS_PAIRED_SINGLE): Require
16954 !TARGET_OCTEON.
16955
16956 2016-01-18 Richard Biener <rguenther@suse.de>
16957
16958 PR middle-end/69308
16959 * gimple.c (gimple_could_trap_p_1): Handle GIMPLE_COND.
16960
16961 2016-01-18 Tom de Vries <tom@codesourcery.com>
16962
16963 * passes.def: Add pass_parallelize_loops to pass_oacc_kernels.
16964
16965 2016-01-18 Tom de Vries <tom@codesourcery.com>
16966
16967 * omp-low.c (set_oacc_fn_attrib): Make extern.
16968 * omp-low.h (set_oacc_fn_attrib): Declare.
16969 * tree-parloops.c (struct reduction_info): Add reduc_addr field.
16970 (create_call_for_reduction_1): Handle case that reduc_addr is non-NULL.
16971 (create_parallel_loop, gen_parallel_loop, try_create_reduction_list):
16972 Add and handle function parameter oacc_kernels_p.
16973 (find_reduc_addr, get_omp_data_i_param): New function.
16974 (ref_conflicts_with_region, oacc_entry_exit_ok_1)
16975 (oacc_entry_exit_single_gang, oacc_entry_exit_ok): New function.
16976 (parallelize_loops): Add and handle function parameter oacc_kernels_p.
16977 Calculate dominance info. Skip loops that are not in a kernels region
16978 in oacc_kernels_p mode. Skip inner loops of parallelized loops.
16979 (pass_parallelize_loops::execute): Call parallelize_loops with
16980 oacc_kernels_p argument.
16981 (pass_parallelize_loops::clone, pass_parallelize_loops::set_pass_param):
16982 New member function.
16983 (pass_parallelize_loops::bool oacc_kernels_p): New member var.
16984 * passes.def: Add argument to pass_parallelize_loops instantation.
16985
16986 2016-01-18 Tom de Vries <tom@codesourcery.com>
16987
16988 * tree-parloops.c (pass_parallelize_loops::execute): Allow
16989 pass_parallelize_loops to be run outside the loop pipeline.
16990
16991 2016-01-18 Alan Lawrence <alan.lawrence@arm.com>
16992
16993 * tree-scalar-evolution.c (follow_copies_to_constant): New.
16994 (analyze_initial_condition, analyze_scalar_evolution_1): Call previous.
16995
16996 2016-01-18 Alan Lawrence <alan.lawrence@arm.com>
16997
16998 PR target/63679
16999 * tree-ssa-scopedtables.c (avail_expr_hash): Hash MEM_REF and ARRAY_REF
17000 using get_ref_base_and_extent.
17001 (equal_mem_array_ref_p): New.
17002 (hashable_expr_equal_p): Add call to previous.
17003
17004 2016-01-18 Alan Lawrence <alan.lawrence@arm.com>
17005
17006 PR target/63679
17007 * tree-sra.c (disqualified_constants, constant_decl_p): New.
17008 (sra_initialize): Allocate disqualified_constants.
17009 (sra_deinitialize): Free disqualified_constants.
17010 (disqualify_candidate): Update disqualified_constants when appropriate.
17011 (create_access): Scan for constant-pool entries as we go along.
17012 (scalarizable_type_p): Add check against type_contains_placeholder_p.
17013 (maybe_add_sra_candidate): Allow constant-pool entries.
17014 (load_assign_lhs_subreplacements): Bind debug for constant pool vars.
17015 (initialize_constant_pool_replacements): New.
17016 (sra_modify_assign): Avoid mangling assignments created by previous,
17017 and don't generate writes into constant pool.
17018 (sra_modify_function_body): Call initialize_constant_pool_replacements.
17019
17020 2016-01-18 Ilya Enkovich <enkovich.gnu@gmail.com>
17021
17022 * config/i386/i386.c (scalar_to_vector_candidate_p): Support
17023 andnot instruction.
17024 (scalar_chain::convert_op): Likewise.
17025 * config/i386/i386.md (*andndi3_doubleword): New.
17026
17027 2016-01-18 Richard Biener <rguenther@suse.de>
17028
17029 PR tree-optimization/69170
17030 * tree-vect-slp.c (vect_build_slp_tree): Verify we are not
17031 building a vector from scalar results of a pattern stmt.
17032
17033 2016-01-18 Jakub Jelinek <jakub@redhat.com>
17034
17035 * haifa-sched.c (autopref_multipass_init): Work around
17036 -Wmaybe-uninitialized warning.
17037
17038 2016-01-18 Thomas Preud'homme <thomas.preudhomme@arm.com>
17039
17040 * config/arm/arm.c (thumb1_reorg): Check that the comparison is
17041 against the constant 0.
17042
17043 2016-01-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
17044
17045 PR tree-optimization/68799
17046 * gimple-ssa-strength-reduction.c (create_phi_basis): Directly
17047 look up phi candidates in the statement-candidate map.
17048 (phi_add_costs): Likewise.
17049 (record_phi_increments): Likewise.
17050 (phi_incr_cost): Likewise.
17051 (ncd_with_phi): Likewise.
17052 (all_phi_incrs_profitable): Likewise.
17053
17054 2016-01-17 Jakub Jelinek <jakub@redhat.com>
17055
17056 * omp-low.c (mark_loops_in_oacc_kernels_region): Work around
17057 -Wmaybe-uninitialized warning.
17058
17059 2016-01-16 Sandra Loosemore <sandra@codesourcery.com>
17060
17061 * doc/invoke.texi (Invoking GCC): Add new section to menu.
17062 (Option Summary): Update to reflect new section and moved options.
17063 (C++ Dialect Options): Move -fvtable-verify and related options.
17064 (Debugging Options): Move Sanitizer, Pointer Bounds Checker,
17065 and profiling-related options.
17066 (Optimization Options): Move profile generation options and
17067 -fstack-protector and related options.
17068 (Instrumentation Options): New section incorporating moved options.
17069 (Code Generation Options): Move -finstrument-functions and
17070 related options, -fstack-check, -fstack-limit*, and -fbounds-check.
17071
17072 2016-01-16 Tom de Vries <tom@codesourcery.com>
17073
17074 * passes.def: Move pass_expand_omp_ssa out of pass_parallelize_loops.
17075
17076 2016-01-16 Tom de Vries <tom@codesourcery.com>
17077
17078 * omp-low.c (expand_omp_atomic_fetch_op): Release defs of update stmt.
17079
17080 2016-01-16 Richard Sandiford <richard.sandiford@arm.com>
17081
17082 * hash-table.h (hash_table::empty): Turn into an inline wrapper
17083 that checks whether the table is already empty. Rename the
17084 original implementation to...
17085 (hash_table::empty_slot): ...this new private function.
17086
17087 2016-01-15 David Malcolm <dmalcolm@redhat.com>
17088
17089 PR diagnostic/68899
17090 * diagnostic-show-locus.c (layout::print_source_line): Move x
17091 offset of line until after call to
17092 get_line_width_without_trailing_whitespace.
17093
17094 2016-01-15 Jeff Law <law@redhat.com>
17095
17096 PR tree-optimization/69270
17097 * tree-ssanames.c (ssa_name_has_boolean_range): Moved here from
17098 tree-ssa-dom.c. Improve test for [0..1] ranve from VRP.
17099 * tree-ssa-dom.c (ssa_name_has_boolean_range): Remove.
17100 * tree-ssanames.h (ssa_name_has_boolean_range): Prototype.
17101 * tree-ssa-uncprop.c (associate_equivalences_with_edges): Use
17102 ssa_name_has_boolean_range and constant_boolean_node.
17103
17104 2016-01-15 Vladimir Makarov <vmakarov@redhat.com>
17105
17106 PR rtl-optimization/69030
17107 * lra-spills.c (remove_pseudos): Check nrefs and make the function
17108 returning bool.
17109 (spill_pseudos): Delete debug insn for dead pseudo.
17110 (lra_spill): Initiate spill_hard_reg and slots memory separately.
17111
17112 2016-01-15 Jiong Wang <jiong.wang@arm.com>
17113
17114 * config/aarch64/aarch64-builtins.c (aarch64_types_unopus_qualifiers):
17115 New.
17116 (TYPES_UNOPUS): Likewise.
17117 * config/aarch64/aarch64-simd-builtins.def (lbtruncuv2sf): Correct
17118 builtin type, from UNOP to UNOPUS.
17119 (lbtruncuv4sf): Likewise.
17120 (lbtruncuv2df): Likewise.
17121 (lrounduv2sf): Likewise.
17122 (lrounduv4sf): Likewise.
17123 (lrounduv2df): Likewise.
17124 (lroundusf): Likewise.
17125 (lroundusf): Likewise.
17126 (lceiluv2sf): Likewise.
17127 (lceiluv4sf): Likewise.
17128 (lceiluv2df): Likewise.
17129 (lceilusf): Likewise.
17130 (lceiludf): Likewise.
17131 (lflooruv2sf): Likewise.
17132 (lflooruv4sf): Likewise.
17133 (lflooruv2df): Likewise.
17134 (lfloorusf): Likewise.
17135 (lfloorudf): Likewise.
17136 (lfrintnuv2sf): Likewise.
17137 (lfrintnuv4sf): Likewise.
17138 (lfrintnuv2df): Likewise.
17139 (lfrintnusf): Likewise.
17140 (lfrintnudf): Likewise.
17141 * config/aarch64/arm_neon.h (vcvt_u32_f32): Remove unncessary type
17142 conversion.
17143 (vcvtq_u32_f32): Likewise.
17144 (vcvtq_u64_f64): Likewise.
17145 (vcvta_u32_f32): Likewise.
17146 (vcvtaq_u32_f32): Likewise.
17147 (vcvtaq_u64_f64): Likewise.
17148 (vcvtm_u32_f32): Likewise.
17149 (vcvtmq_u32_f32): Likewise.
17150 (vcvtmq_u64_f64): Likewise.
17151 (vcvtn_u32_f32): Likwise.
17152 (vcvtnq_u32_f32): Likewise.
17153 (vcvtnq_u64_f64): Likewise.
17154 (vcvtp_u32_f32): Likewise.
17155 (vcvtpq_u32_f32): Likewise.
17156 (vcvtpq_u64_f64): Likewise.
17157 (vcvtmd_u64_f64): Likewise.
17158 (vcvtms_u32_f32): Likewise.
17159 (vcvtad_u64_f64): Likewise.
17160 (vcvtas_u32_f32): Likewise.
17161 (vcvtnd_u64_f64): Likewise.
17162 (vcvtns_u32_f32): Likewise.
17163 (vcvtpd_u64_f64): Likewise.
17164 (vcvtps_u32_f32): Likewise.
17165
17166 2016-01-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17167
17168 * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Handle
17169 CSEL of zero_extended registers.
17170
17171 2016-01-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17172
17173 * config/aarch64/aarch64.c (aarch64_rtx_costs, COMPARE case):
17174 Handle COMPARE of ZERO_EXTRACT against zero form of TST-immediate.
17175
17176 2016-01-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17177
17178 * config/aarch64/aarch64.c (aarch64_process_one_target_attr): Return
17179 false when argument string is not found in the attributes table
17180 at all.
17181
17182 2016-01-15 David Edelsohn <dje.gcc@gmail.com>
17183
17184 PR target/68609
17185 * config/rs6000/rs6000.c (rs6000_emit_msub): Delete.
17186 (rs6000_emit_swsqrt): Convert to Goldschmidt's Algorithm
17187 * config/rs6000/rs6000.md (sqrt<mode>2): Limit swsqrt to high
17188 precision estimate.
17189
17190 2016-01-15 Richard Biener <rguenther@suse.de>
17191
17192 PR tree-optimization/66856
17193 * tree-vect-loop.c (vect_transform_loop): Free SLP instances here.
17194 * tree-vect-slp.c (vect_free_slp_tree): Decrement stmt reference count.
17195 (vect_create_new_slp_node): Increment stmt reference count.
17196 (vect_get_and_check_slp_defs): Make sure stmts are nor already in
17197 an SLP tree before swapping operands.
17198 (vect_build_slp_tree): Likewise.
17199 (destroy_bb_vec_info): Free stmt info after SLP instances.
17200 * tree-vect-stmts.c (new_stmt_vec_info): Initialize reference count.
17201 * tree-vectorizer.h (struct _stmt_vec_info): Add num_slp_uses field.
17202 (STMT_VINFO_NUM_SLP_USES): New macro.
17203
17204 2016-01-15 Richard Biener <rguenther@suse.de>
17205
17206 PR debug/69137
17207 * dwarf2out.c (add_linkage_name_raw): New function split out from ...
17208 (add_linkage_name): ... here.
17209 (gen_typedef_die): Use add_linkage_name_raw instead of
17210 add_linkage_attr to delay DECL_ASSEMBLER_NAME computation
17211 if necessary.
17212
17213 2016-01-15 Cesar Philippidis <cesar@codesourcery.com>
17214
17215 * gimplify.c (oacc_default_clause): Decode reference and pointer
17216 types for both kernels and parallel regions.
17217
17218 2016-01-15 Richard Sandiford <richard.sandiford@arm.com>
17219
17220 PR middle-end/69246
17221 * calls.c (emit_call_1): Force n_popped to zero for sibcalls.
17222
17223 2016-01-15 Ilya Enkovich <enkovich.gnu@gmail.com>
17224
17225 * config/i386/i386.c (scalar_chain::compute_convert_gain): Fix typo.
17226 (convert_scalars_to_vector): Likewise.
17227
17228 2016-01-15 Jonathan Wakely <jwakely@redhat.com>
17229
17230 * doc/extend.texi (Type Traits): Fix grammar.
17231
17232 2016-01-15 Martin Jambor <mjambor@suse.cz>
17233
17234 * tree-inline.c (remap_decl): Use existing dclarations if
17235 remapping a type and prevent_decl_creation_for_types.
17236 (replace_locals_stmt): Do an initial remapping of non-VLA typed
17237 decls first. Do real remapping with
17238 prevent_decl_creation_for_types set.
17239 * tree-inline.h (copy_body_data): New field
17240 prevent_decl_creation_for_types, moved remap_var_for_cilk to avoid
17241 padding.
17242
17243 2016-01-15 Dominik Vogt <vogt@linux.vnet.ibm.com>
17244
17245 * config/s390/s390.opt (mmvcle): More verbose help text.
17246
17247 2016-01-15 Dominik Vogt <vogt@linux.vnet.ibm.com>
17248
17249 * config/s390/s390.opt: Add period to -mzvector option text.
17250
17251 2016-01-15 Richard Biener <rguenther@suse.de>
17252
17253 PR tree-optimization/68961
17254 * tree-vect-slp.c (vect_analyze_slp_cost_1): Consider cost
17255 of invariants in stores again.
17256
17257 2016-01-15 Sebastian Huber <sebastian.huber@embedded-brains.de>
17258
17259 * config/arm/t-rtems: Add cortex-m7/fpv5-d16 multilib.
17260
17261 2016-01-15 Ilya Enkovich <enkovich.gnu@gmail.com>
17262
17263 * config/i386/i386.c (ix86_expand_branch): Don't split
17264 DI mode xor instruction to SI mode.
17265
17266 2016-01-15 Jan Hubicka <hubicka@ucw.cz>
17267
17268 PR ipa/68148
17269 * ipa-icf.c (sem_function::merge): Virtual functions may become
17270 reachable even if they address is not taken and there are no
17271 idrect calls.
17272
17273 2016-01-15 Jan Hubicka <hubicka@ucw.cz>
17274
17275 * lto-streamer-out.c (subtract_estimated_size): New function.
17276 (get_symbol_initial_value): Use it.
17277
17278 2016-01-15 Christian Bruel <christian.bruel@st.com>
17279
17280 PR target/65837
17281 * config/arm/arm-builtins.c (ARM_BUILTIN_CRYPTO_BASE): New enum tag.
17282 (arm_init_neon_builtins_internal): Rename arm_init_neon_builtins,
17283 (arm_init_crypto_builtins_internal): Rename arm_init_crypto_builtins.
17284 use add_builtin_function_ext_scope instead of add_builtin_function.
17285 (neon_set_p, neon_crypto_set_p): Remove.
17286 (arm_init_builtins): Always call arm_init_neon_builtins and
17287 arm_init_crypto_builtins.
17288 (arm_expand_builtin): Check that builtins are allowed for the arch.
17289 * config/arm/arm-protos.h (arm_init_neon_builtins): Remove prototype.
17290 * config/arm/arm.c (arm_valid_target_attribute_tree): Remove
17291 arm_init_neon_builtins call.
17292
17293 2016-01-15 Richard Biener <rguenther@suse.de>
17294
17295 PR tree-optimization/69117
17296 * tree-ssa-sccvn.h (struct vn_ssa_aux): Add info member.
17297 * tree-ssa-sccvn.c (set_ssa_val_to): Save and adjust SSA name info
17298 of the leader conservatively.
17299 (free_scc_vn): Restore original SSA name infos.
17300
17301 2016-01-14 Jeff Law <law@redhat.com>
17302
17303 PR tree-optimization/69270
17304 * tree-ssa-dom.c (ssa_name_has_boolean_range): If the type has a
17305 single bit of precision, verify it's also unsigned.
17306 (record_edge_info): Use constant_boolean_node rather than fold_convert
17307 to convert boolean_true/boolean_false to the right type.
17308
17309 2016-01-14 Richard Henderson <rth@redhat.com>
17310
17311 PR rtl-opt/69014
17312 * loop-doloop.c (record_reg_sets): New.
17313 (doloop_optimize): Reject the transform if the sequence
17314 clobbers registers live at the end of the loop block.
17315 (doloop_optimize_loops): Enable df_live if needed.
17316
17317 2016-01-14 Michael Meissner <meissner@linux.vnet.ibm.com>
17318
17319 * config/rs6000/rs6000-builtin.def: Revert 2016-01-13 change.
17320 * config/rs6000/rs6000.c: Likewise.
17321 * config/rs6000/rs6000.h: Likewise.
17322 * config/rs6000/rs6000.md: Likewise.
17323 * doc/extend.texi: Likewsie.
17324
17325 2016-01-14 Jeff Law <law@redhat.com>
17326
17327 * tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment
17328 typo.
17329
17330 2016-01-14 Richard Henderson <rth@redhat.com>
17331
17332 PR c/69272
17333 PR tree-opt/68964
17334 * trans-mem.c (tm_log_emit_stmt): Fix unit size to bit size.
17335 * tree.c (build_tm_vector_builtins): Use builtin_decl_explicit_p
17336 instead of builtin_decl_declared_p to test for declaration.
17337
17338 2016-01-14 Nicklas Bo Jensen <nbjensen@gmail.com>
17339
17340 * doc/loop.texi (Loop Analysis and Representation): Document
17341 loop_depth function.
17342
17343 2016-01-14 Tom de Vries <tom@codesourcery.com>
17344
17345 PR tree-optimization/68773
17346 * omp-low.c (expand_omp_target): Don't set force_output.
17347 * varpool.c (varpool_node::get_create): Same.
17348 * lto-cgraph.c (input_offload_tables): Mark entries in offload_vars and
17349 offload_funcs with force_output.
17350
17351 2016-01-14 Jakub Jelinek <jakub@redhat.com>
17352
17353 PR debug/69244
17354 * lra-eliminations.c (move_plus_up): Don't change anything if either
17355 the outer or inner subreg mode is not MODE_INT.
17356 * dwarf2out.c (mem_loc_descriptor): For SUBREG, if outer mode is
17357 integral <= DWARF2_ADDR_SIZE, convert to untyped afterwards.
17358
17359 2016-01-14 Alan Lawrence <alan.lawrence@arm.com>
17360
17361 * doc/md.texi (reduc_smin_@var{m}, reduc_smax_@var{m},
17362 reduc_umin_@var{m}, reduc_umax_@var{m}, reduc_splus_@var{m},
17363 reduc_uplus_@var{m}): Remove.
17364 * expr.c (expand_expr_real_2): Remove expansion path for
17365 reduc_[us](min|max|plus) optabs.
17366 * optabs-tree.c (scalar_reduc_to_vector): Remove.
17367 * optabs-tree.h (scalar_reduc_to_vector): Remove.
17368 * optabs.def (reduc_smax_optab, reduc_smin_optab, reduc_splus_optab,
17369 reduc_umax_optab, reduc_umin_optab, reduc_uplus_optab): Remove.
17370 * tree-vect-loop.c (vectorizable_reduction): Remove test for
17371 reduc_[us](min|max|plus) optabs.
17372
17373 2016-01-14 Alan Lawrence <alan.lawrence@arm.com>
17374
17375 * config/mips/mips-ps-3d.md (reduc_splus_v2sf): Remove.
17376 (reduc_plus_scal_v2sf): New.
17377 (reduc_smax_v2sf): Rename to...
17378 (reduc_smax_scal_v2sf): ...here, make result SFmode, add vec_extract.
17379 (reduc_smin_v2sf): Rename to...
17380 (reduc_smin_scal_v2sf): ...here, make result SFmode, add vec_extract.
17381
17382 2016-01-14 Jan Hubicka <hubicka@ucw.cz>
17383
17384 * alias.c (compare_base_symbol_refs): New function.
17385 (rtx_equal_for_memref_p, base_alias_check, memrefs_conflict_p): Use
17386 it.
17387
17388 2016-01-14 Jakub Jelinek <jakub@redhat.com>
17389
17390 PR middle-end/68146
17391 PR tree-optimization/69155
17392 * tree-complex.c: Include cfganal.h.
17393 (phis_to_revisit): New variable.
17394 (extract_component): Add phiarg_p argument. Assert that returned
17395 SSA_NAME has non-NULL SSA_NAME_DEF_STMT unless phiarg_p is true.
17396 (update_phi_components): Partly rewrite to use loop over real/imag
17397 components instead of code duplication. If extract_component returns
17398 SSA_NAME with NULL SSA_NAME_DEF_STMT, store SSA_NAME_VAR or
17399 create_tmp_reg into the PHI node instead, and mention the phi triplet
17400 in phis_to_revisit.
17401 (tree_lower_complex): Walk bbs in rpo order. Adjust phis recorded
17402 in phis_to_revisit at the end.
17403
17404 2016-01-14 Richard Biener <rguenther@suse.de>
17405
17406 PR tree-optimization/68060
17407 * tree-vect-loop.c (vect_is_simple_reduction): Check the
17408 outer loop reduction is only used in the inner loop before
17409 detecting a double reduction.
17410
17411 2016-01-14 Jakub Jelinek <jakub@redhat.com>
17412
17413 PR target/68269
17414 * combine.c (expand_field_assignment): Punt if compute_mode is
17415 unsupported scalar mode.
17416
17417 2016-01-14 Richard Biener <rguenther@suse.de>
17418
17419 PR tree-optimization/66856
17420 * tree-vect-slp.c (vect_build_slp_tree): Refactor to build
17421 SLP node only if it built successfully.
17422 (vect_analyze_slp_instance): Adjust.
17423
17424 2016-01-14 Jeff Law <law@redhat.com>
17425
17426 PR tree-optimization/69270
17427 * tree-ssa-dom.c (ssa_name_has_boolean_range): New function.
17428 (record_edge_info): Use it. Convert boolean_{true,false}_node
17429 to the type of op0.
17430
17431 2016-01-13 Jan Hubicka <hubicka@ucw.cz>
17432
17433 PR ipa/66487
17434 * ipa-polymorphic-call.c (inlined_polymorphic_ctor_dtor_block_p):
17435 use block_ultimate_origin
17436 (noncall-stmt_may_be_vtbl_ptr_store): Likewise.
17437
17438 2016-01-13 Sandra Loosemore <sandra@codesourcery.com>
17439
17440 * doc/invoke.texi (Submodel Options): Rename section to
17441 "Machine-Dependent Options" to better reflect its content.
17442 Rewrite introductory text to remove archaic CPU names.
17443 Update references.
17444
17445 2016-01-13 Sandra Loosemore <sandra@codesourcery.com>
17446
17447 * doc/invoke.texi (Code Gen Options): Move section up in file,
17448 before target-specific options. Update menu and option summary
17449 to reflect the new section ordering.
17450
17451 2016-01-13 Jonathan Wakely <jwakely@redhat.com>
17452
17453 * doc/invoke.texi (C Dialect Options): Adjust -std default for C++.
17454 (C++ Dialect Options): Add cross-reference to -std option.
17455 * doc/standards.texi (C++ Language): Document C++14 support.
17456
17457 2016-01-13 Michael Meissner <meissner@linux.vnet.ibm.com>
17458
17459 * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): Add support
17460 for pack/unpack functions for __ibm128.
17461 (PACK_IF): Likewise.
17462 (UNPACK_IF): Likewise.
17463
17464 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
17465 support for __ibm128 pack/unpack functions.
17466 (rs6000_invalid_builtin): Likewise.
17467 (rs6000_init_builtins): Likewise.
17468 (rs6000_opt_masks): Likewise.
17469
17470 * config/rs6000/rs6000.h (MASK_FLOAT128): Add short name.
17471 (RS6000_BTM_FLOAT128): Add support for __ibm128 pack/unpack
17472 functions
17473 (RS6000_BTM_COMMON): Likewise.
17474
17475 * config/rs6000/rs6000.md (f128_vsx): New mode attribute.
17476 (unpack<mode>): Use FMOVE128_FPR iterator instead of FMOVE128, to
17477 disallow __builtin_{pack,unpack}_longdouble if long double is IEEE
17478 128-bit floating point. Add support for the double values to be
17479 in Altivec registers for TF/IF packing and unpacking, but restrict
17480 TD packing sub-fields to be FPR registers. Don't allow overlapped
17481 register support for packing. Allow pack inputs to be memory
17482 locations. Don't build generator functions for unpack<mode>_dm
17483 and unpack<mode>_nodm.
17484 (unpack<mode>_dm): Likewise.
17485 (unpack<mode>_nodm): Likewise.
17486 (pack<mode>): Likewise.
17487
17488 * config/rs6000/rs6000-builtin.def (__builtin_pack_ibm128): Add
17489 built-in functions to pack/unpack explicit __ibm128 values.
17490 (__builtin_unpack_ibm128): Likewise.
17491
17492 * doc/extend.texi (PowerPC Built-in Functions): Document
17493 __builtin_pack_ibm128 and __builtin_unpack_ibm128.
17494
17495 2016-01-13 Bernd Schmidt <bschmidt@redhat.com>
17496
17497 PR c/66208
17498 * c-common.c (check_function_nonnull): Remove unnecessary declaration.
17499 Add new arg loc and pass it down as context.
17500 (check_nonnull_arg): Don't mark ctx arg as unused. Use it as a pointer
17501 to the location to use for the warning.
17502 (check_function_arguments): New arg loc. All callers changed. Pass
17503 it to check_function_nonnull.
17504 * c-common.h (check_function_arguments): Adjust declaration.
17505
17506 2016-01-13 Jakub Jelinek <jakub@redhat.com>
17507
17508 PR tree-optimization/69156
17509 * gimple.c (validate_type): Removed.
17510 (gimple_builtin_call_types_compatible_p): Use
17511 useless_type_conversion_p instead of validate_type.
17512 * value-prof.c (gimple_stringop_fixed_value): Fold
17513 icall_size to correct type.
17514
17515 2016-01-13 Jonathan Wakely <jwakely@redhat.com>
17516
17517 * doc/extend.texi (__atomic Builtins): Clarify compare_exchange
17518 effects.
17519
17520 2016-01-13 Richard Henderson <rth@redhat.com>
17521
17522 PR tree-opt/68964
17523 * target.def (builtin_tm_load, builtin_tm_store): Remove.
17524 * config/i386/i386.c (ix86_builtin_tm_load): Remove.
17525 (ix86_builtin_tm_store): Remove.
17526 (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
17527 (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
17528 * doc/tm.texi.in (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
17529 (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
17530 * doc/tm.texi: Rebuild.
17531
17532 * gtm-builtins.def (BUILT_IN_TM_MEMCPY_RNWT): New.
17533 (BUILT_IN_TM_MEMCPY_RTWN): New.
17534 * trans-mem.c (tm_log_emit_stmt): Rearrange code for better
17535 fallback from vector to integer helpers.
17536 (build_tm_load): Handle vector types directly, instead of
17537 via target hook.
17538 (build_tm_store): Likewise.
17539 (expand_assign_tm): Prepare for register types not handled by
17540 the above. Copy them to memory and use memcpy.
17541 * tree.c (tm_define_builtin): New.
17542 (find_tm_vector_type): New.
17543 (build_tm_vector_builtins): New.
17544 (build_common_builtin_nodes): Call it.
17545
17546 2016-01-13 Uros Bizjak <ubizjak@gmail.com>
17547
17548 * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Return -1 for
17549 TARGET_SSE_MATH without TARGET_SSE2. Rewrite.
17550
17551 2016-01-13 Tom de Vries <tom@codesourcery.com>
17552
17553 PR tree-optimization/69169
17554 * tree-ssa-structalias.c (create_variable_info_for_1): Add and handle
17555 handled_struct_type param.
17556 (create_variable_info_for, intra_create_variable_infos): Call
17557 create_variable_info_for_1 with extra arg.
17558
17559 2016-01-13 Yvan Roux <yvan.roux@linaro.org>
17560
17561 * config/arm/arm-arches.def: Remove spurious whitespace in "armv8.1-a"
17562 and "armv8.1-a+crc" entries.
17563
17564 2016-01-13 Alexander Fomin <alexander.fomin@intel.com>
17565
17566 PR target/69228
17567 * config/i386/sse.md (define_expand "avx512pf_gatherpf<mode>sf"):
17568 Change first operand predicate from register_or_constm1_operand
17569 to register_operand.
17570 (define_expand "avx512pf_gatherpf<mode>df"): Likewise.
17571 (define_expand "avx512pf_scatterpf<mode>sf"): Likewise.
17572 (define_expand "avx512pf_scatterpf<mode>df"): Likewise.
17573 (define_insn "*avx512pf_gatherpf<mode>sf"): Remove.
17574 (define_insn "*avx512pf_gatherpf<mode>df"): Likewise.
17575 (define_insn "*avx512pf_scatterpf<mode>sf"): Likewise.
17576 (define_insn "*avx512pf_scatterpf<mode>df"): Likewise.
17577 * config/i386/i386.c (ix86_expand_builtin): Remove first operand
17578 comparison with constm1_rtx from vec_prefetch_gen part.
17579
17580 2016-01-13 Richard Biener <rguenther@suse.de>
17581
17582 PR tree-optimization/69013
17583 * tree-ssa-uninit.c (prune_uninit_phi_opnds_in_unrealizable_paths):
17584 Exchange assert for a test.
17585
17586 2016-01-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
17587
17588 PR target/69247
17589 * config/s390/s390.md (bswaphi splitter): Use simplify_gen_subreg.
17590
17591 2016-01-13 Richard Biener <rguenther@suse.de>
17592
17593 PR tree-optimization/69242
17594 * tree-ssa-sccvn.c (visit_reference_op_load): Replace bogus
17595 assert with a check.
17596
17597 2016-01-13 Richard Biener <rguenther@suse.de>
17598
17599 PR tree-optimization/69186
17600 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
17601 Properly guard vect_update_misalignment_for_peel call.
17602
17603 2016-01-12 Jeff Law <law@redhat.com>
17604
17605 PR tree-optimization/pr67755
17606 * tree-ssa-threadupdate.c (struct ssa_local_info_t): Add new field
17607 "need_profile_correction".
17608 (thread_block_1): Initialize new field to false by default. If we
17609 have multiple thread paths through a common joiner to different
17610 final targets, then set new field to true.
17611 (compute_path_counts): Only do count adjustment when it's really
17612 needed.
17613
17614 2016-01-12 Sandra Loosemore <sandra@codesourcery.com>
17615
17616 * doc/invoke.texi (Spec Files): Move section down in file, past
17617 all command-line option descriptions.
17618
17619 2016-01-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
17620
17621 PR middle-end/54809
17622 * doc/gty.texi: Remove documentation of mark_hook.
17623 * gengtype.c (struct write_types_data): Remove code to support
17624 mark_hook attribute.
17625 (walk_type): Likewise.
17626 (write_func_for_structure): Likewise.
17627
17628 2016-01-12 Sandra Loosemore <sandra@codesourcery.com>
17629
17630 * doc/invoke.texi (Option Summary) Move -no-canonical-prefixes to
17631 Directory Options, and -specs= to Overall Options.
17632 (Overall Options): Adjust similarly. Reorder to group related
17633 options together. Make -specs= cross-reference the spec file details.
17634 (Directory Options): Adjust similarly.
17635
17636 2016-01-12 Jeff Law <law@redhat.com>
17637
17638 * tree-ssa-threadupdate.c: Various whitespace and typo fixes.
17639
17640 2016-01-12 Olivier Hainque <hainque@adacore.com>
17641
17642 * gcc.c (spec_undefvar_allowed): New global.
17643 (process_command): Set to true when running for --version or --help,
17644 alone or together.
17645 (getenv_spec_function): When the variable is not defined, use the
17646 variable name as the variable value if we're allowed not to issue
17647 a fatal error.
17648
17649 2016-01-12 Bin Cheng <bin.cheng@arm.com>
17650
17651 PR tree-optimization/68911
17652 * tree-vrp.c (adjust_range_with_scev): Check overflow in range
17653 information computed for expression "init + nit * step".
17654
17655 2016-01-12 Sandra Loosemore <sandra@codesourcery.com>
17656
17657 * doc/invoke.texi (Invoking GCC): Copy-edit. Incorporate information
17658 about name of GCC executable. Remove deleted node from menu.
17659 (Directory Options) <-B>: Remove cross-reference to deleted node.
17660 (Target Options): Delete section.
17661
17662 2016-01-12 Christian Bruel <christian.bruel@st.com>
17663
17664 PR target/69180
17665 * config/arm/arm-c.c (arm_pragma_target_parse): Set NODE_CONDITIONAL
17666 for __ARM_NEON_FP, __ARM_FP, _ARM_FEATURE_LDREX.
17667
17668 2016-01-12 Jakub Jelinek <jakub@redhat.com>
17669
17670 PR target/69198
17671 * config/i386/i386.c (ix86_expand_special_args_builtin): Ensure
17672 aligned_mem is properly set for AVX512-VL floating point masked
17673 stores.
17674
17675 PR target/69175
17676 * ifcvt.c (cond_exec_process_if_block): When removing the last
17677 insn from then_bb, remove also any possible barriers that follow it.
17678
17679 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
17680
17681 PR target/68456
17682 PR target/69226
17683 * config/i386/iamcu.h (SIZE_TYPE): New macro.
17684 (PTRDIFF_TYPE): Likewise.
17685 (WCHAR_TYPE): Likewise.
17686 (WCHAR_TYPE_SIZE): Likewise.
17687 (STDINT_LONG32): Likewise.
17688
17689 2016-01-12 Richard Biener <rguenther@suse.de>
17690
17691 PR tree-optimization/69053
17692 * tree-vect-loop.c (get_initial_def_for_reduction): Properly
17693 convert initial value for cond reductions.
17694
17695 2016-01-12 Richard Biener <rguenther@suse.de>
17696
17697 PR tree-optimization/69007
17698 * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Move
17699 widen_sum after dot_prod and sad.
17700
17701 2016-01-12 Richard Biener <rguenther@suse.de>
17702
17703 PR tree-optimization/69168
17704 * tree-vect-loop.c (vect_analyze_loop_2): Reset both main and
17705 pattern stmt SLP type.
17706 * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Patterns may
17707 end up unused so cope with that case.
17708
17709 2016-01-12 Richard Biener <rguenther@suse.de>
17710
17711 PR tree-optimization/69157
17712 * tree-vect-stmts.c (vectorizable_mask_load_store): Check
17713 stmts def type only during analyze phase.
17714 (vectorizable_call): Likewise.
17715 (vectorizable_simd_clone_call): Likewise.
17716 (vectorizable_conversion): Likewise.
17717 (vectorizable_assignment): Likewise.
17718 (vectorizable_shift): Likewise.
17719 (vectorizable_operation): Likewise.
17720 (vectorizable_store): Likewise.
17721 (vectorizable_load): Likewise.
17722
17723 2016-01-12 Richard Biener <rguenther@suse.de>
17724
17725 PR tree-optimization/69174
17726 * tree-vect-stmts.c (vect_mark_relevant): Remove excessive vertical
17727 space.
17728 (vectorizable_load): Properly compute the number of loads needed
17729 for permuted strided SLP loads and do not spuriously assign
17730 to SLP_TREE_VEC_STMTS.
17731
17732 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
17733
17734 * config/i386/djgpp.h (PREFERRED_DEBUGGING_TYPE): Define to DWARF2
17735 (TARGET_ASM_OUTPUT_IDENT): Define to default_asm_output_ident_directive
17736 (MD_EXEC_PREFIX): Remove.
17737 (MD_STARTFILE_PREFIX) Removee.
17738 (FILE_NAME_ABSOLUTE_P): Remove.
17739 (CPP_SPEC): Do not read macros from sys/version.h.
17740 (LINK_COMMAND_SPEC): Remove.
17741 (LOCAL_INCLUDE_DIR): Remove.
17742 (TARGET_ASM_NAMED_SECTION): Define to i386_djgpp_asm_named_section
17743 (TARGET_OS_CPP_BUILTINS): Add DJGPP (non ISO only), __DJGPP, __DJGPP__, unix.
17744 (POST_LINK_SPEC): Define to invoke stubify after linker
17745 (LIBSTDCXX): Remove define
17746 (DBX_REGISTER_NUMBER): Define to svr4_dbx_register_map.
17747 (DEFAULT_PCC_STRUCT_RETURN): Define to 1.
17748 (SUBTARGET_OVERRIDE_OPTIONS): Remove warning about -mbnu2210.
17749 (SUBTARGET_OVERRIDE_OPTIONS): Ignore -fPIC and generate message.
17750 (SUBTARGET_OVERRIDE_OPTIONS): Default to DWARF2 debugging info.
17751 (IX86_MAYBE_NO_LIBGCC_TFMODE): Remove.
17752 (i386_djgpp_asm_named_section): Add propotype of new procedure
17753
17754 * config/i386/xm-djgpp.h (NATIVE_SYSTEM_HEADER_DIR): Define.
17755 (MD_EXEC_PREFIX): Define (moved from config/i386/djgpp.h).
17756 (STANDARD_STARTFILE_PREFIX_1): Define (moved from MD_STARTFILE_PREFIX
17757 in config/i386/djgpp.h).
17758 (STANDARD_STARTFILE_PREFIX_2): Define identical to
17759 STANDARD_STARTFILE_PREFIX_1.
17760 (LOCAL_INCLUDE_DIR): Define (moved from config/i386/djgpp.h).
17761 (GCC_DRIVER_HOST_INITIALIZATION): Fix reporting fatal
17762 installation errors.
17763 (MAX_OFILE_ALIGNMENT): Define to 128.
17764 (HAVE_FTW_H): Undefine as DJGPP do not have nftw, but have ftw.h.
17765
17766 * config/i386/djgpp.c: New file. Add implementation of
17767 i386_djgpp_asm_named_section.
17768
17769 * config/i386/djgpp.opt: Remove obsolete option -mbnu210.
17770
17771 * config/i386/t-djgpp: New file. Add djgpp.o to EXTRA_OBJS.
17772 Add rule for building djgpp.o.
17773
17774 2016-01-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
17775
17776 * config/rs6000/rs6000.c (v2df_reduction_p): New function.
17777 (rtx_is_swappable_p): Reductions are swappable.
17778 (insn_is_swappable_p): V2DF reductions are swappable.
17779
17780 2016-01-11 John David Anglin <danglin@gcc.gnu.org>
17781
17782 * config/pa/pa.c (pa_emit_move_sequence): Handle floating point
17783 reloads for other unsupported memory operands.
17784
17785 2016-01-12 Kugan Vivekanandarajah <kuganv@linaro.org>
17786 Jim Wilson <jim.wilson@linaro.org>
17787
17788 PR target/69194
17789 * config/arm/arm-builtins.c (arm_expand_neon_args): Call
17790 copy_to_mode_reg instead of force_reg.
17791
17792 2016-01-11 H.J. Lu <hongjiu.lu@intel.com>
17793
17794 PR target/69225
17795 * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Set to 2 only if
17796 TARGET_80387 is true.
17797
17798 2016-01-11 Jakub Jelinek <jakub@redhat.com>
17799
17800 PR target/69071
17801 * lra-eliminations.c (move_plus_up): Only move plus up
17802 if subreg of the constant can be simplified into constant
17803 and use the simplified subreg of the constant instead of
17804 the original constant.
17805
17806 * fold-const.c (fold_convertible_p): Don't return true
17807 for conversion of VECTOR_TYPE to same sized integral type.
17808 (fold_convert_loc): Fix up formatting. Fold conversion of
17809 VECTOR_TYPE to same sized integral type using VIEW_CONVERT_EXPR
17810 instead of NOP_EXPR.
17811
17812 PR tree-optimization/69214
17813 * tree-vrp.c (simplify_cond_using_ranges): Don't propagate
17814 innerop into a comparison if SSA_NAME_OCCURS_IN_ABNORMAL_PHI.
17815 Formatting fix.
17816
17817 PR tree-optimization/69207
17818 * tree-vect-slp.c (vect_get_constant_vectors): For
17819 VECTOR_BOOLEAN_TYPE_P, assert op has integral type instead of
17820 fold_convertible_p to vector_type's element type, and always
17821 use VCE for non-VECTOR_BOOLEAN_TYPE_P.
17822
17823 2016-01-11 Richard Biener <rguenther@suse.de>
17824
17825 PR tree-optimization/69173
17826 * tree-vect-loop.c (vect_fixup_scalar_cycles_with_patterns): Only
17827 fixup the cycle if all stmts are in a pattern.
17828
17829 2016-01-11 Uros Bizjak <ubizjak@gmail.com>
17830
17831 PR middle-end/68999
17832 * alias.c (base_alias_check): Move check for addresses with
17833 alignment ANDs before the call for compare_base_decls.
17834 (memrefs_conflict_p): Return -1 for different decls
17835 that went through alignment adjustments.
17836
17837 2016-01-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17838
17839 PR rtl-optimization/68796
17840 * config/aarch64/aarch64.md (*and<mode>_compare0): New pattern.
17841 * config/aarch64/aarch64.c (aarch64_select_cc_mode): Handle HImode
17842 and QImode comparisons against zero with CC_NZmode.
17843 * config/aarch64/iterators.md (short_mask): New mode_attr.
17844
17845 2016-01-11 H.J. Lu <hongjiu.lu@intel.com>
17846
17847 * config/i386/sse.md (<avx512>_load<mode>_mask): Remove snprintf.
17848 (<avx512>_store<mode>_mask): Likewise.
17849
17850 2016-01-11 Bernd Schmidt <bschmidt@redhat.com>
17851 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17852
17853 PR rtl-optimization/68841
17854 * ifcvt.c (struct noce_if_info): Add orig_x field.
17855 (bbs_ok_for_cmove_arith): Add to_rename parameter.
17856 Don't record conflicts on to_rename if it's present.
17857 Allow memory destinations in sets.
17858 (noce_try_cmove_arith): Call bbs_ok_for_cmove_arith even on simple
17859 blocks, passing orig_x to the checks.
17860 (noce_process_if_block): Set if_info->orig_x appropriately.
17861
17862 2016-01-11 Tom de Vries <tom@codesourcery.com>
17863
17864 PR tree-optimization/69069
17865 * tree-parloops.c (create_parallel_loop): Add missing phi args.
17866
17867 2016-01-11 Yuri Rumyantsev <ysrumyan@gmail.com>
17868
17869 PR rtl-optimization/68920
17870 * config/i386/i386.c (ix86_option_override_internal): Restrict number
17871 of conditional moves for RTL if-conversion to 1 for
17872 TARGET_ONE_IF_CONV_INSN.
17873 * config/i386/i386.h (TARGET_ONE_IF_CONV_INSN): New macros.
17874 * config/i386/x86-tune.def (X86_TUNE_ONE_IF_CONV_INSN): New macros.
17875 * params.def (PARAM_MAX_RTL_IF_CONVERSION_INSNS) : Introduce new
17876 parameter to restirct number of conditional moves for
17877 RTL if-conversion.
17878 * doc/invoke.texi (max-rtl-if-conversion-insns): Document it.
17879 * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Limit number of
17880 conditionl moves.
17881
17882 2016-01-11 Alexandre Oliva <aoliva@redhat.com>
17883
17884 PR bootstrap/69123
17885 * var-tracking.c (drop_overlapping_mem_locs): Operate on all
17886 onepart vars. Fix typo in comment. Fix reversed condition in
17887 unshare test.
17888 (dataflow_set_remove_mem_locs): Operate on all onepart vars.
17889
17890 PR bootstrap/69123
17891 * var-tracking.c (dump_onepart_variable_differences): New.
17892 (dataflow_set_different): If a detailed dump is requested,
17893 delay early returns and dump differences between onepart
17894 variables present before and after, and added variables.
17895
17896 2016-01-11 Ilya Enkovich <enkovich.gnu@gmail.com>
17897
17898 PR target/69010
17899 * expr.c (expand_expr_real_1): For boolean vector constants
17900 with a scalar mode use const_scalar_mask_from_tree.
17901 (const_scalar_mask_from_tree): New.
17902 * optabs.c (expand_vec_cond_mask_expr): Use mask mode
17903 assigned to a mask type to handle constants.
17904
17905 2016-01-11 Martin Jambor <mjambor@suse.cz>
17906
17907 PR ipa/69044
17908 * ipa-cp.c (estimate_local_effects): Do not clone for removal of
17909 useless parameters if we cannot change function signature.
17910
17911 2016-01-11 Martin Jambor <mjambor@suse.cz>
17912
17913 PR ipa/66616
17914 * cgraphclones.c (duplicate_thunk_for_node): Copy can_change_signature
17915 flag.
17916
17917 2016-01-11 Tom de Vries <tom@codesourcery.com>
17918
17919 PR tree-optimization/69109
17920 * tree-parloops.c (try_transform_to_exit_first_loop_alt): Don't allow
17921 latch with phi.
17922
17923 2016-01-11 Tom de Vries <tom@codesourcery.com>
17924
17925 PR tree-optimization/69108
17926 * tree-parloops.c (gather_scalar_reductions): Handle case that outer phi
17927 res is not used in a phi.
17928
17929 2016-01-11 Yury Gribov <y.gribov@samsung.com>
17930
17931 PR 67425
17932 * common.opt (frandom-seed): Fix parameter name.
17933 * doc/invoke.texi (frandom-seed): Ditto and describe parameter.
17934
17935 2016-01-11 Tom de Vries <tom@codesourcery.com>
17936
17937 PR tree-optimization/69058
17938 * tree-parloops.c (pass_parallelize_loops::execute): Return 0 if libgomp
17939 not supported.
17940
17941 2016-01-11 Andrew Burgess <andrew.burgess@embecosm.com>
17942
17943 * config/arc/arc.opt (mdiv-rem): Add period to the end.
17944 (mcode-density): Likewise.
17945
17946 2016-01-10 Tom de Vries <tom@codesourcery.com>
17947
17948 PR tree-optimization/69062
17949 * tree-parloops.c (loop_has_phi_with_address_arg): New function.
17950 (parallelize_loops): Don't paralelize loop that has phi with address
17951 arg.
17952
17953 2016-01-10 Tom de Vries <tom@codesourcery.com>
17954
17955 PR tree-optimization/69039
17956 * tree-parloops.c (try_create_reduction_list): Only allow single exit
17957 phi for reduction.
17958
17959 2016-01-09 John David Anglin <danglin@gcc.gnu.org>
17960
17961 PR middle-end/68743
17962 * match.pd: Require target has function_c99_misc before doing
17963 truncl(extend(x)) and trunc(extend(x)) -> extend(truncf(x)), etc.
17964
17965 2016-01-09 Gerald Pfeifer <gerald@pfeifer.com>
17966
17967 * configure.ac (isl_options_set_schedule_serialize_sccs): Also
17968 use GMPINC.
17969 * configure: Regenerate.
17970
17971 2016-01-09 Jakub Jelinek <jakub@redhat.com>
17972
17973 PR middle-end/50865
17974 PR tree-optimization/69097
17975 * fold-const.h (expr_not_equal_to): New prototype.
17976 * fold-const.c: Include stringpool.h and tree-ssanames.h.
17977 (expr_not_equal_to): New function.
17978 * match.pd (X % -Y is the same as X % Y): Don't optimize
17979 unless X is known not to be equal to minimum or Y is known
17980 not to be equal to -1.
17981 * tree-vrp.c (simplify_div_or_mod_using_ranges): Add GSI argument.
17982 fold TRUNC_MOD_EXPR if the second argument is not a power of two.
17983 (simplify_stmt_using_ranges): Adjust caller.
17984 (vrp_finalize): Call set_value_range on SSA_NAMEs before calling
17985 substitute_and_fold.
17986
17987 2016-01-09 Jan Hubicka <hubicka@ucw.cz>
17988
17989 * ipa-icf.c (sem_item_optimizer::merge_classes): Do not ICE on VAR_DECL
17990 w/o DECL_NAME.
17991
17992 2016-01-08 Jakub Jelinek <jakub@redhat.com>
17993
17994 PR tree-optimization/69167
17995 * gimple-fold.c (replace_stmt_with_simplification): Also punt if
17996 new SSA_NAME_OCCURS_IN_ABNORMAL_PHI SSA_NAMEs appear in operands of
17997 ops[0] comparison.
17998 * gimple-match-head.c (maybe_push_res_to_seq): Likewise.
17999
18000 2016-01-08 Alan Lawrence <alan.lawrence@arm.com>
18001 Richard Biener <rguenther@suse.de>
18002
18003 PR tree-optimization/68707
18004 * tree-vect-slp.c (vect_analyze_slp_instance): Cancel permuted SLP
18005 instances that can be handled via vect_load_lanes.
18006
18007 2016-01-08 Uros Bizjak <ubizjak@gmail.com>
18008
18009 * symtab.c (symtab_node::equal_address_to): Return -1 instead of 2
18010 if we can't determine address equivalence.
18011 * alias.c (compare_base_decl): Update for changed return value of
18012 symtab_node::equal_address_to.
18013
18014 2016-01-08 Jason Merrill <jason@redhat.com>
18015
18016 PR c++/68983
18017 PR c++/67557
18018 * function.c (assign_temp): Guard against TREE_ADDRESSABLE types here.
18019 * expr.c (store_field): Not here.
18020 * tree-cfgcleanup.c (fixup_noreturn_call): Don't clear LHS of a
18021 call with TREE_ADDRESSABLE type.
18022 * tree-cfg.c (verify_gimple_call): Adjust.
18023
18024 2016-01-08 Olivier Hainque <hainque@adacore.com>
18025
18026 * config/vxworks.h (VXWORKS_LIBGCC_SPEC): Don't link shared RTPs with
18027 libc_internal.
18028
18029 2016-01-08 Alan Lawrence <alan.lawrence@arm.com>
18030
18031 * gcc.target/rs6000/paired.md (reduc_smax_v2sf): Rename to...
18032 (reduc_smax_scal_v2sf): ...here, make result SFmode, extract element.
18033 (reduc_smin_v2sf): Rename to...
18034 (reduc_smin_scal_v2sf): ...here, make result SFmode, extract element.
18035 (reduc_splus_v2sf): Rename to...
18036 (reduc_plus_scal_v2sf): ...here, make result SFmode, extract element.
18037
18038 2016-01-08 Jakub Jelinek <jakub@redhat.com>
18039
18040 PR tree-optimization/69162
18041 * gimplify.c (gimplify_va_arg_expr): Encode original type of
18042 valist argument in another argument.
18043 (gimplify_modify_expr): Adjust for the above change. Cleanup.
18044 * tree-stdarg.c (expand_ifn_va_arg_1): Use new 3rd argument
18045 to determine the va_list type, build a MEM_REF instead of
18046 build_fold_indirect_ref.
18047
18048 PR tree-optimization/69172
18049 * gimple-fold.c (gimple_fold_builtin_memory_chk): Pass type to
18050 gimple_build.
18051
18052 2016-01-08 Thomas Preud'homme <thomas.preudhomme@arm.com>
18053
18054 PR tree-optimization/67781
18055 * tree-ssa-math-opts.c (find_bswap_or_nop): Zero out bytes in cmpxchg
18056 and cmpnop in two steps: first the ones not accessed in original
18057 gimple expression in a endian independent way and then the ones not
18058 accessed in the final result in an endian-specific way.
18059
18060 2016-01-08 Jakub Jelinek <jakub@redhat.com>
18061
18062 PR tree-optimization/69083
18063 * tree-vect-slp.c (vect_get_constant_vectors): For
18064 VECTOR_BOOLEAN_TYPE_P assert op is fold_convertible_p to vector_type's
18065 element type. If op is fold_convertible_p to vector_type's element
18066 type, use NOP_EXPR instead of VCE.
18067
18068 2016-01-08 Segher Boessenkool <segher@kernel.crashing.org>
18069
18070 PR rtl-optimization/67778
18071 PR rtl-optimization/68634
18072 PR rtl-optimization/68909
18073 * shrink-wrap.c (try_shrink_wrapping): Add comment. Don't pop
18074 block from the stack until done with it. Remove a superfluous
18075 bitmap set. Remove a superfluous bitmap test.
18076
18077 2016-01-07 Martin Sebor <msebor@redhat.com>
18078
18079 PR c/68966
18080 * doc/extend.texi (__atomic Builtins, __sync Builtins): Document
18081 constraint on the type of arguments.
18082
18083 2016-01-07 Andreas Tobler <andreast@gcc.gnu.org>
18084
18085 * config/arm/freebsd.h: Rename SUBTARGET_OVERRIDE_OPTIONS to
18086 SUBTARGET_OVERRIDE_INTERNAL_OPTIONS. Adjust to check
18087 unaligned_access on the gcc_options set.
18088 * config/arm/arm.c (arm_option_override_internal): Use
18089 SUBTARGET_OVERRIDE_INTERNAL_OPTIONS.
18090
18091 2016-01-07 Uros Bizjak <ubizjak@gmail.com>
18092
18093 PR target/69140
18094 * config/i386/i386.c (ix86_frame_pointer_required): Enable
18095 frame pointer for TARGET_64BIT_MS_ABI when stack is misaligned.
18096
18097 2016-01-07 Uros Bizjak <ubizjak@gmail.com>
18098
18099 Revert
18100 2016-01-06 Uros Bizjak <ubizjak@gmail.com>
18101
18102 PR target/69140
18103 * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
18104 depending on frame_pointer_needed before remaining integer and SSE
18105 registers are saved.
18106
18107 2016-01-07 Sandra Loosemore <sandra@codesourcery.com>
18108
18109 PR 1078
18110 * doc/extend.texi (Nvidia PDX Function Attributes): New section.
18111
18112 2016-01-07 H.J. Lu <hongjiu.lu@intel.com>
18113
18114 PR target/69171
18115 * config/i386/sse.md (<sse>_sqrt<mode>2<mask_name><round_name>):
18116 Use the "xBm" constraint.
18117 (float<sseintvecmodelower><mode>2<mask_name><round_name):
18118 Likewise.
18119 (sse_cvtsi2ss<round_name>): Use round_nimm_scalar_predicate.
18120 (sse_cvtsi2ssq<round_name>): Likewise.
18121 (sse_cvtss2si<round_name>): Likewise.
18122 (sse_cvtss2siq<round_name>): Likewise.
18123 (sse2_cvtsi2sdq<round_name>): Likewise.
18124 (sse2_cvtsd2si<round_name>): Likewise.
18125 (sse2_cvtsd2siq<round_name>): Likewise.
18126 * config/i386/subst.md (round_nimm_scalar_predicate): New
18127 predicate.
18128
18129 2015-12-15 Bernd Schmidt <bschmidt@redhat.com>
18130
18131 PR middle-end/67639
18132 * varasm.c (make_decl_rtl): Mark invalid register vars as
18133 DECL_EXTERNAL.
18134
18135 PR rtl-optimization/66206
18136 * bt-load.c (find_btr_use): Change first arg to be a pointer to an rtx.
18137 All callers changed.
18138
18139 2016-01-07 Jakub Jelinek <jakub@redhat.com>
18140
18141 PR tree-optimization/69141
18142 * tree-ssa-pre.c: Include langhooks.h.
18143 (eliminate_dom_walker::before_dom_children): Use
18144 lang_hooks.decl_printable_name instead of
18145 cgraph_node::get ()->name ().
18146
18147 PR middle-end/68960
18148 * gimple-expr.c (copy_var_decl): If var has DECL_USER_ALIGN set, copy
18149 it and DECL_ALIGN too.
18150
18151 2016-01-06 Robert Suchanek <robert.suchanek@imgtec.com>
18152
18153 * config/mips/mips-ftypes.def: Sort to lexicographical order.
18154
18155 2016-01-06 Uros Bizjak <ubizjak@gmail.com>
18156
18157 PR target/69140
18158 * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
18159 depending on frame_pointer_needed before remaining integer and SSE
18160 registers are saved.
18161
18162 2015-01-06 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
18163
18164 * config/rs6000/vsx.md (*p9_vecload_<mode>): Replace VSX_M
18165 mode iterator with VSX_M2.
18166 (*p9_vecstore_<mode>): Likewise.
18167 (*vsx_le_permute_<mode>): Restrict to !TARGET_P9_VECTOR.
18168 (*vsx_le_perm_load_<mode> for VSX_LE_128): Likewise.
18169 (*vsx_le_perm_store_<mode> for VSX_LE_128): Likewise.
18170 (define_split for VSX_LE128 stores): Likewise.
18171 (define_peephole2 for TImode LE swaps): Likewise.
18172 (define_split for VSX_LE128 post-reload stores): Likewise.
18173
18174 2016-01-06 Marek Polacek <polacek@redhat.com>
18175
18176 PR sanitizer/69099
18177 * convert.c (convert_to_integer_1): Adjust call to
18178 ubsan_instrument_float_cast. Use NULL_TREE instead of NULL.
18179 * ubsan.c (ubsan_instrument_float_cast): Drop the ARG parameter. Use
18180 EXPR instead of ARG.
18181 * ubsan.h (ubsan_instrument_float_cast): Adjust declaration.
18182
18183 2016-01-05 Sandra Loosemore <sandra@codesourcery.com>
18184
18185 PR 1078
18186 * doc/extend.texi (RL78 Variable Attributes): New section.
18187
18188 2016-01-05 Marek Polacek <polacek@redhat.com>
18189
18190 PR c/69104
18191 * builtins.c (get_memmodel): Use expansion point location rather than
18192 the input location. Call warning_at rather than warning.
18193 (expand_builtin_atomic_compare_exchange): Likewise.
18194 (expand_builtin_atomic_load): Likewise.
18195 (expand_builtin_atomic_store): Likewise.
18196 (expand_builtin_atomic_clear): Likewise.
18197
18198 2016-01-05 H.J. Lu <hongjiu.lu@intel.com>
18199
18200 PR target/68991
18201 * config/i386/i386.c (ix86_expand_vector_logical_operator):
18202 Replace nonimmediate_operand with vector_operand.
18203 * config/i386/predicates.md (vector_operand): New predicate.
18204 (general_vector_operand): Replace nonimmediate_operand with
18205 vector_operand.
18206 * config/i386/sse.md: Replace nonimmediate_operand with
18207 vector_operand and m constraint with Bm constraint on SSE
18208 patterns with 16-byte memory operand.
18209 * config/i386/subst.md (round_nimm_predicate): Replace
18210 nonimmediate_operand with vector_operand.
18211 (round_saeonly_nimm_predicate): Likewise.
18212 (round_saeonly_nimm_scalar_predicate): New.
18213
18214 2016-01-05 H.J. Lu <hongjiu.lu@intel.com>
18215
18216 PR target/68991
18217 * config/i386/constraints.md (Bm): New constraint.
18218 * config/i386/predicates.md (vector_memory_operand): New
18219 predicate.
18220 * config/i386/sse.md: Replace xm with xBm in plusminus and
18221 any_logic patterns.
18222
18223 2016-01-05 Sandra Loosemore <sandra@codesourcery.com>
18224
18225 PR 1078
18226 * doc/extend.texi (V850 Function Attributes): New section.
18227 (V850 Variable Attributes): New section.
18228
18229 2016-01-05 Sandra Loosemore <sandra@codesourcery.com>
18230
18231 PR 1078
18232 * doc/extend.texi (MicroBlaze Function Attributes): Document
18233 interrupt_handler and fast_interrupt attributes.
18234
18235 2016-01-05 Sergei Trofimovich <siarheit@google.com>
18236
18237 PR other/60465
18238 * config/ia64/ia64.c (ia64_expand_load_address): Use gprel64
18239 for local symbolic operands.
18240 * config/ia64/predicates.md (local_symbolic_operand64): New
18241 predicate.
18242
18243 2016-01-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18244
18245 PR rtl-optimization/68651
18246 * combine.c (combine_simplify_rtx): Canonicalize x + x into
18247 x << 1.
18248
18249 2016-01-05 Nathan Sidwell <nathan@acm.org>
18250
18251 * alias.c (compare_base_decls): Use symtab_node::get.
18252
18253 2016-01-05 Nick Clifton <nickc@redhat.com>
18254
18255 PR target/68770
18256 * ira-costs.c (copy_cost): Initialise the t_icode field of the
18257 secondary_reload_info structure.
18258
18259 PR target/66655
18260 * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Define to use weak
18261 decls if weak support is available.
18262
18263 2016-01-04 Martin Sebor <msebor@redhat.com>
18264
18265 * doc/invoke.texi (Warning Options): Document -Winvalid-memory-model.
18266
18267 2016-01-04 Michael Meissner <meissner@linux.vnet.ibm.com>
18268
18269 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
18270 OPTION_MASK_P9_DFORM.
18271
18272 * config/rs6000/constraints.md (wo constraint): New constraint for
18273 ISA 3.0 (power9).
18274
18275 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Add support
18276 for wo constraint.
18277 (rs6000_init_hard_regno_mode_ok): Likewise.
18278
18279 * config/rs6000/rs6000.h (r6000_reg_class_enum): Add support for
18280 wo constraint.
18281
18282 * config/rs6000/altivec.md (altivec_vperm_<mode>): Clean up vperm
18283 expanders not to have constraints. Add support for ISA 3.0 xxperm
18284 instruction. Add support for fusing xxlor with xxperm.
18285 (altivec_vperm_<mode>_internal): Likewise.
18286 (altivec_vperm_v8hiv16qi): Likewise.
18287 (altivec_vperm_<mode>v16q): Likewise.
18288 (altivec_vperm_<mode>_uns): Likewise.
18289 (vperm_v8hiv4si): Likewise.
18290 (vperm_v16qiv8hi): Likewise.
18291
18292 * doc/md.texi (RS/6000 constraints): Document wo constraint.
18293
18294 2016-01-04 Jakub Jelinek <jakub@redhat.com>
18295
18296 Update copyright years.
18297
18298 * gcc.c (process_command): Update copyright notice dates.
18299 * gcov-dump.c (print_version): Ditto.
18300 * gcov.c (print_version): Ditto.
18301 * gcov-tool.c (print_version): Ditto.
18302 * gengtype.c (create_file): Ditto.
18303 * doc/cpp.texi: Bump @copying's copyright year.
18304 * doc/cppinternals.texi: Ditto.
18305 * doc/gcc.texi: Ditto.
18306 * doc/gccint.texi: Ditto.
18307 * doc/gcov.texi: Ditto.
18308 * doc/install.texi: Ditto.
18309 * doc/invoke.texi: Ditto.
18310
18311 2016-01-04 Eric Botcazou <ebotcazou@adacore.com>
18312
18313 * config/arm/arm.c (aapcs_vfp_allocate_return_reg): Treat all integer
18314 modes larger than TImode as TImode if NEON is not enabled.
18315
18316 2016-01-04 Eric Botcazou <ebotcazou@adacore.com>
18317
18318 PR target/69100
18319 * config/sparc/sparc.h (FUNCTION_ARG_REGNO_P): Return true in 64-bit
18320 mode for %f0-%f31 only if TARGET_FPU.
18321
18322 2016-01-04 Eric Botcazou <ebotcazou@adacore.com>
18323
18324 PR target/69072
18325 * config/sparc/sparc.c (scan_record_type): Take into account subfields
18326 to compute the PACKED_P predicate.
18327 (function_arg_record_value): Minor tweaks.
18328
18329 2016-01-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
18330
18331 * doc/install.texi (--with-multilib-list): Describe the meaning of the
18332 option for arm*-*-* targets.
18333
18334 2016-01-03 Sandra Loosemore <sandra@codesourcery.com>
18335
18336 * doc/extend.texi (Common Function Attributes): Move docs for
18337 MSP430-specific attributes to....
18338 (MSP430 Function Attributes): ...here. Delete the redundant
18339 entries and copy-edit the remaining text.
18340 (MSP430 Variable Attributes): Use uniform format for index
18341 entries and add a cross-reference to the corresponding function
18342 attribute docs.
18343
18344 2016-01-03 Vladimír Čunát <vcunat@gmail.com>
18345
18346 * doc/invoke.texi (RS/6000 and PowerPC Options): Fix
18347 -finite-math typo.
18348 (x86 Options): Likewise.
18349
18350 2016-01-01 Sandra Loosemore <sandra@codesourcery.com>
18351
18352 PR 1078
18353
18354 * extend.texi (Common Function Attributes) <no_stack_limit>: New.
18355 * invoke.texi (Code Gen Options) <-fno-stack-limit>: Add pointer
18356 to corresponding attribute.
18357
18358 2016-01-01 Sandra Loosemore <sandra@codesourcery.com>
18359
18360 * doc/extend.texi (Common Function Attributes) <noplt>: Move
18361 to correct alphabetization of table. Copy-edit and correct
18362 markup.
18363 <stack_protect>: Likewise.
18364 <target_clones>: Likewise.
18365 <simd>: Likewise.
18366 * doc/invoke.texi (Optimize Options) <-fstack-protector-explicit>:
18367 Correct punctuation.
18368 (Code Gen Options) <-fno-plt>: Copy-edit.
18369
18370 2016-01-01 Bernd Edlinger <bernd.edlinger@hotmail.de>
18371
18372 PR target/68917
18373 * config/tilegx/tilegx.md (clzsi2): Don't create DI subregs of
18374 SI values. Explicitly convert SI to DI and vice-versa.
18375
18376 2016-01-01 Jakub Jelinek <jakub@redhat.com>
18377
18378 PR tree-optimization/69070
18379 * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Only test
18380 REAL_VALUE_ISSIGNALING_NAN on arg0 if arg0 is a REAL_CST.
18381
18382 PR sanitizer/69055
18383 * ubsan.c (ubsan_instrument_float_cast): Call
18384 initialize_sanitizer_builtins.
18385
18386 PR target/69015
18387 * ifcvt.c (find_cond_trap): Give up if returnjump_p (jump).
18388 \f
18389 Copyright (C) 2016 Free Software Foundation, Inc.
18390
18391 Copying and distribution of this file, with or without modification,
18392 are permitted in any medium without royalty provided the copyright
18393 notice and this notice are preserved.