1 2016-10-20 Martin Liska <mliska@suse.cz>
4 * lto-streamer-in.c (fixup_call_stmt_edges_1): Replace value
5 comparison with STMT_UID_NOT_IN_RANGE.
6 (fixup_call_stmt_edges): Do not fixup edges of a thunk in
9 2016-10-20 Eric Botcazou <ebotcazou@adacore.com>
11 * compare-elim.c (conforming_compare): Accept UNSPECs.
12 (find_comparison_dom_walker::before_dom_children): Deal with
13 instructions both using and killing the flags register.
14 (equivalent_reg_at_start): New function extracted from...
15 (try_eliminate_compare): ...here. Use it and add support for
16 registers and UNSPECs as second operand of the compare.
17 * config/visium/visium-modes.def (CCV): New.
18 * config/visium/predicates.md (visium_v_comparison_operator): New.
19 (visium_branch_operator): Deal with CCV mode.
20 * config/visium/visium.c (visium_select_cc_mode): Likewise.
21 (output_cbranch): Likewise.
22 * config/visium/visium.md (UNSPEC_{ADD,SUB,NEG}V): New constants.
23 (uaddv<mode>4): New expander.
24 (addv<mode>4): Likewise.
25 (add<mode>3_insn_set_carry): New instruction.
26 (add<mode>3_insn_set_overflow): Likewise.
27 (addsi3_insn_set_overflow): Likewise.
28 (usubv<mode>4): New expander.
29 (subv<mode>4): Likewise.
30 (sub<mode>3_insn_set_carry): New instruction.
31 (sub<mode>3_insn_set_overflow): Likewise.
32 (subsi3_insn_set_overflow): Likewise.
33 (unegv<mode>3): New expander.
34 (negv<mode>3): Likewise.
35 (neg<mode>2_insn_set_overflow): New instruction.
36 (addv_tst<mode>): Likewise.
37 (subv_tst<mode>): Likewise.
38 (negv_tst<mode>): Likewise.
39 (cbranch<mode>4_addv_insn): New splitter and instruction.
40 (cbranch<mode>4_subv_insn): Likewise.
41 (cbranch<mode>4_negv_insn): Likewise.
43 2016-10-20 Richard Biener <rguenther@suse.de>
45 * tree-ssa-alias.c (ptrs_compare_unequal): Remove code duplication.
46 Handle decls possibly not bound.
47 * tree-ssa-structalias.c (get_constraint_for_ssa_var): Add
48 nothing_id for decls that might not be bound if we are interested
50 (get_constraint_for_component_ref): Deal with that.
52 2016-10-20 Michael Matz <matz@suse.de>
55 * common.opt (-fsplit-loops): New flag.
56 * passes.def (pass_loop_split): Add.
57 * opts.c (default_options_table): Add OPT_fsplit_loops entry at -O3.
58 (enable_fdo_optimizations): Add loop splitting.
59 * timevar.def (TV_LOOP_SPLIT): Add.
60 * tree-pass.h (make_pass_loop_split): Declare.
61 * tree-ssa-loop-manip.h (rewrite_into_loop_closed_ssa_1): Declare.
62 * tree-ssa-loop-unswitch.c: Include tree-ssa-loop-manip.h,
63 * tree-ssa-loop-split.c: New file.
64 * Makefile.in (OBJS): Add tree-ssa-loop-split.o.
65 * doc/invoke.texi (fsplit-loops): Document.
66 * doc/passes.texi (Loop optimization): Add paragraph about loop
69 2016-10-20 Richard Biener <rguenther@suse.de>
71 * cgraphunit.c (analyze_functions): Set node->definition to
72 false to signal symbol removal to debug_hooks->late_global_decl.
73 * ipa.c (symbol_table::remove_unreachable_nodes): When not in
74 WPA signal symbol removal to the debuginfo machinery.
75 * dwarf2out.c (dwarf2out_late_global_decl): Instead of
76 using early_finised to guard the we're called for symbol
77 removal case look at the symtabs definition flag.
78 (gen_variable_die): Remove redundant check.
80 2016-10-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
82 * config/s390/s390.md ("prefetch"): Add fallthrough comment.
84 2016-10-20 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
86 PR tree-optimization/53979
87 * match.pd ((a ^ b) | a -> a | b): New pattern.
89 2016-10-19 John David Anglin <danglin@gcc.gnu.org>
91 * config/pa/pa64-hpux.h (PA_INIT_FRAME_DUMMY_ASM_OP): Move to
92 config/pa/pa64-hpux-lib.h.
93 (PA_CRTBEGIN_HACK): Likewise.
94 (DTOR_LIST_BEGIN): Likewise.
96 2016-10-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
98 * config/arm/arm.c (arm_emit_coreregs_64bit_shift): Clear the result
99 register only if "in" and "out" are different registers.
101 2016-10-19 Eric Botcazou <ebotcazou@adacore.com>
103 * omp-low.c (pass_oacc_device_lower::gate): New method.
104 (execute): Always call execute_oacc_device_lower.
106 2016-10-19 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
108 PR tree-optimization/77916
109 PR tree-optimization/77937
110 * gimple-ssa-strength-reduction.c (analyze_increments): Remove
112 (insert_initializers): Requirement of initializer for -1 should be
113 based on pointer-typedness of the candidate basis.
115 2016-10-19 Bin Cheng <bin.cheng@arm.com>
117 PR tree-optimization/78005
118 * tree-vect-loop-manip.c (vect_gen_prolog_loop_niters): Compute
119 upper (included) bound for niters of prolog loop.
120 (vect_gen_scalar_loop_niters): Change parameter VF to VFM1.
121 Compute niters of scalar loop above which vectorized loop is
122 preferred, as well as the upper (included) bound for the niters.
123 (vect_do_peeling): Record niter bound for loops accordingly.
125 2016-10-19 Thomas Schwinge <thomas@codesourcery.com>
128 * tree-core.h (enum tree_index): Put the complex types after their
130 * tree-streamer.c (verify_common_node_recorded): New function.
131 (preload_common_nodes) <TREE_CODE (node) == COMPLEX_TYPE>: Use it.
133 2016-10-19 Martin Liska <mliska@suse.cz>
135 * cgraph.h (cgraph_edge::binds_to_current_def_p):
136 Replace NULL with false as a return value.
138 2016-10-19 Thomas Schwinge <thomas@codesourcery.com>
140 PR tree-optimization/78024
141 * omp-low.c (oacc_loop_discovery): Call clear_bb_flags before, and
142 don't clear BB_VISITED after processing.
144 2016-10-19 Richard Biener <rguenther@suse.de>
146 * domwalk.c (dom_walker::walk): Use RPO order.
148 2016-10-19 Richard Biener <rguenther@suse.de>
150 * tree-vrp.c (evrp_dom_walker::evrp_dom_walker): Initialize
152 (evrp_dom_walker::~evrp_dom_walker): Free it.
153 (evrp_dom_walker::stmts_to_remove): Add.
154 (evrp_dom_walker::before_dom_children): Mark PHIs and stmts
155 whose output we fully propagate for removal. Propagate
156 into BB destination PHI arguments.
157 (execute_early_vrp): Remove queued stmts. Dump value ranges
160 2016-10-18 Aldy Hernandez <aldyh@redhat.com>
162 * Makefile.in (OBJS): Add gimple-ssa-warn-alloca.o.
163 * passes.def: Add two instances of pass_walloca.
164 * tree-pass.h (make_pass_walloca): New.
165 * gimple-ssa-warn-alloca.c: New file.
166 * doc/invoke.texi: Document -Walloca, -Walloca-larger-than=, and
167 -Wvla-larger-than= options.
169 2016-10-18 Thomas Schwinge <thomas@codesourcery.com>
171 * cfg.c (clear_bb_flags): Use FOR_ALL_BB_FN.
172 * config/nvptx/nvptx.c (nvptx_find_sese): Likewise.
174 2016-10-18 Kelvin Nilsen <kelvin@gcc.gnu.org>
176 * config/rs6000/altivec.h (vec_xl_len): New macro.
177 (vec_xst_len): New macro.
178 (vec_cmpnez): New macro.
179 (vec_cntlz_lsbb): New macro.
180 (vec_cnttz_lsbb): New macro.
181 (vec_xlx): New macro.
182 (vec_xrx): New macro.
183 (vec_all_nez): New C++ predicate template.
184 (vec_any_eqz): New C++ predicate template.
185 (vec_all_ne): Revised C++ predicate template under _ARCH_PWR9
186 conditional compilation.
187 (vec_any_eq): Revised C++ predicate template under _ARCH_PWR9
188 conditional compilation.
189 (vec_all_nez): New macro.
190 (vec_any_eqz): New macro.
191 (vec_all_ne): Revised macro under _ARCH_PWR9 conditional
193 (vec_any_eq): Revised macro under _ARCH_PWR9 conditional
195 * config/rs6000/vector.md (VI): Moved this mode iterator
196 definition from altivec.md to vector.md.
197 (UNSPEC_NEZ_P): New value.
198 (vector_ne_<mode>_p): New expansion for implementation of
199 vec_all_ne and vec_any_eq built-in functions.
200 (vector_nez_<mode>_p): New expansion for implementation of
201 vec_all_nez and vec_any_eqz built-in functions.
202 (vector_ne_v2di_p): New expansion for implementation of vec_all_ne
203 and vec_any_eq built-in function.
204 (cr6_test_for_zero): New commentary to explain this expansion.
205 (cr6_test_for_zero_reverse): New commentary to explain this expansion.
206 (cr6_test_for_lt): New commentary to explain this expansion.
207 (cr6_test_for_lt_reverse): New commentary to explain this
209 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
210 overloaded function prototypes for vec_all_ne, vec_all_nez,
211 vec_any_eq, vec_any_eqz, vec_cmpnez, vec_cntlz_lsbb,
212 vec_cnttz_lsbb, vec_xl_len, vec_xst_len, vec_xlx, and vec_xrx
214 (altivec_resolve_overloaded_builtin): Modify the handling of
215 ALTIVEC_BUILTIN_VEC_CMPNE to use the Power9 instructions when
216 the compiler is configured to support TARGET_P9_VECTOR.
217 * config/rs6000/rs6000-builtin.def (BU_ALTIVEC_P): Add commentary
218 to explain the special processing that is given to predicate
219 built-ins introduced using this macro.
220 (BU_ALTIVEC_OVERLOAD_P): Add commentary to alert maintainers to
221 the special processing given to predicate built-ins introduced
223 (BU_VSX_P): Likewise.
224 (BU_P8V_AV_P): Likewise.
225 (BU_P9V_AV_P): Likewise.
226 (BU_P9V_AV_X): New macro.
227 (BU_P9V_64BIT_AV_X): New macro.
228 (BU_P9V_VSX_3): New macro.
229 (BU_P9V_OVERLOAD_P): New macro.
230 (LXVL): New BU_P9V_64BIT_VSX_2.
231 (VEXTUBLX): New BU_P9V_AV_2.
232 (VEXTUBRX): Likewise.
233 (VEXTUHLX): Likewise.
234 (VEXTUHRX): Likewise.
235 (VEXTUWLX): Likewise.
236 (VEXTUWRX): Likewise.
237 (STXVL): New BU_P9V_64BIT_AV_X.
238 (VCLZLSBB): New BU_P9V_AV_1.
239 (VCTZLSBB): Likewise.
240 (CMPNEB): New BU_P9V_AV_2.
245 (VCMPNEB_P): New BU_P9V_AV_P.
246 (VCMPNEH_P): Likewise.
247 (VCMPNEW_P): Likewise.
248 (VCMPNED_P): Likewise.
249 (VCMPNEFP_P): Likewise.
250 (VCMPNEDP_P): Likewise.
251 (CMPNEZB): New BU_P9V_AV_2.
254 (VCMPNEZB_P): New BU_P9V_AV_P.
255 (VCMPNEZH_P): Likewise.
256 (VCMPNEZW_P): Likewise.
257 (LXVL): New BU_P9V_OVERLOAD_2.
258 (STXVL): New BU_P9V_OVERLOAD_3.
259 (VEXTULX): New BU_P9V_OVERLOAD_2.
262 (VCMPNEZ_P): New BU_P9V_OVERLOAD_P.
263 (VCMPNE_P): Likewise.
264 (VCLZLSBB): New BU_P9V_OVERLOAD_1.
265 (VCTZLSBB): Likewise.
266 * config/rs6000/rs6000.c (altivec_expand_predicate_builtin): Add
267 comment to explain mode used for scratch register.
268 (altivec_expand_stxvl_builtin): New function.
269 (altivec_expand_builtin): Add case for new constant P9V_BUILTIN_STXVL.
270 (altivec_init_builtins): Add initialized variable
271 void_ftype_v16qi_pvoid_long and use this type to define the
272 built-in function __builtin_altivec_stxvl.
273 * config/rs6000/vsx.md (UNSPEC_LXVL): New value.
274 (UNSPEC_STXVL): New value.
275 (UNSPEC_VCLZLSBB): New value.
276 (UNSPEC_VCTZLSBB): New value.
277 (UNSPEC_VEXTUBLX): New value.
278 (UNSPEC_VEXTUHLX): New value.
279 (UNSPEC_VEXTUWLX): New value.
280 (UNSPEC_VEXTUBRX): New value.
281 (UNSPEC_VEXTUHRX): New value.
282 (UNSPEC_VEXTUWRX): New value.
283 (UNSPEC_VCMPNEB): New value.
284 (UNSPEC_VCMPNEZB): New value.
285 (UNSPEC_VCMPNEH): New value.
286 (UNSPEC_VCMPNEZH): New value.
287 (UNSPEC_VCMPNEW): New value.
288 (UNSPEC_VCMPNEZW): New value.
289 (*vsx_ne_<mode>_p): New insn for vector test all not equal with
290 vector of integer modes.
291 (*vsx_ne_<mode>_p): New insn for vector test all not equal with
292 vector of float or double modes.
293 (*vector_nez_<mode>_p): New insn for vector test all not equal or
295 (lxvl): New expand for load VSX vector with length.
296 (*lxvl): New insn for load VSX vector with length.
297 (stxvl): New expand for store VSX vector with length.
298 (*stxvl): New insn for store VSX vector with length.
299 (vcmpneb): New insn for vector of byte compare not equal.
300 (vcmpnezb): New insn for vector of byte compare not equal or zero.
301 (vcmpneh): New insn for vector of half word compare not equal.
302 (vcmpnezh): New insn for vector of half word compare not equal or
304 (vcmpnew): New insn for vector of word compare not equal.
305 (vcmpne<VSs>): New insn for vector of float or double compare not
307 (vcmpnezw): New insn for vector of word compare not equal or zero.
308 (vclzlsbb): New insn for vector count leading zero
309 least-significant bits byte.
310 (vctzlsbb): New insn for vector count trailing zero least
311 signficant bits byte.
312 (vextublx): New insn for vector extract unsigned byte left
314 (vextubrx): New insn for vector extract unsigned byte right
316 (vextuhlx): New insn for vector extract unsigned half word left
318 (vextuhrx): New insn for vector extract unsigned half word right
320 (vextuwlx): New insn for vector extract unsigned word left
322 (vextuwrx): New insn for vector extract unsigned word right
324 * config/rs6000/rs6000.h (RS6000_BTC_CONST): Enhance comment to
325 clarify intent of this constant.
326 * config/rs6000/altivec.md (VI): Move this mode iterator to vsx.md.
327 * doc/extend.texi (PowerPC Altivec Built-in Functions): Add
328 documentation for vec_all_nez, vec_any_eqz, vec_cmpnez,
329 vec_cntlz_lsbb, vec_cnttz_lsbb, vec_xl_len, vec_xst_len, vec_xlx,
330 and vec_xrx functions.
332 2016-10-18 Andrew Pinski <apinski@cavium.com>
335 * predict.c (is_exit_with_zero_arg): New function.
336 (tree_bb_level_predictions): Don't consider paths leading to exit(0)
339 2016-10-18 Uros Bizjak <ubizjak@gmail.com>
342 * config/i386/i386.c (legitimize_tls_address)
343 <case TLS_MODEL_INITIAL_EXEC>: For TARGET_64BIT || TARGET_ANY_GNU_TLS
344 convert dest to Pmode if different than Pmode.
346 2016-10-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
348 PR tree-optimization/77916
349 * gimple-ssa-strength-reduction.c (analyze_increments): Reinstate
350 stopgap fix, as pointers with -1 increment are still broken.
352 2016-10-18 David Edelsohn <dje.gcc@gmail.com>
354 * config/rs6000/rs6000.c (rs6000_output_symbol_ref): Move storage
355 mapping class decoration from here...
356 (rs6000_xcoff_encode_section): ...to here.
358 (rs6000_savres_strategy) [AIX,ELFv2]: Inline FPR save and restore
359 if shrink-wrapping and optimizing for speed.
361 2016-10-18 Richard Biener <rguenther@suse.de>
363 * tree-vrp.c (evrp_dom_walker::before_dom_children): Handle
364 not visited but non-executable predecessors. Return taken edge.
365 Simplify conditions and refactor propagation vs. folding step.
367 2016-10-18 Segher Boessenkool <segher@kernel.crashing.org>
369 * config/rs6000/rs6000.c (rs6000_savres_strategy): Do not select
370 {SAVE,REST}_MULTIPLE if shrink-wrapping separate components.
371 (rs6000_get_separate_components): Assert we do not have those
374 2016-10-18 Richard Biener <rguenther@suse.de>
376 * tree-ssa-propagate.h (substitute_and_fold): Adjust prototype.
377 * tree-ssa-propagate.c (ssa_prop_fini): Remove final BB_VISITED
379 (substitute_and_fold_dom_walker): Adjust constructor.
380 (substitute_and_fold_dom_walker::before_dom_children): Remove
381 do_dce flag and handling (always true).
382 (substitute_and_fold): Likewise.
383 * tree-vrp.c (vrp_finalize): Adjust.
384 (execute_early_vrp): Remove final BB_VISITED clearing.
385 * tree-ssa-ccp.c (ccp_finalize): Adjust.
386 * tree-ssa-copy.c (fini_copy_prop): Likewise.
387 * ira.c (ira): Call clear_bb_flags.
389 2016-10-18 Richard Biener <rguenther@suse.de>
391 * genmatch.c (dt_operand::gen_gimple_expr): Use get_name to
392 get at the operand to look at with TREE_OPERAND for generic
395 2016-10-18 David Malcolm <dmalcolm@redhat.com>
397 * genattrtab.c (attr_string): Use rtx_reader_ptr for call to
399 (gen_attr): Use rtx_reader_ptr for lookup_enum_type call.
400 (write_test_expr): Use rtx_reader_ptr for calls to
402 (write_attr_value): Likewise.
403 * genconditions.c (write_one_condition): Use rtx_reader_ptr for
404 call to print_md_ptr_loc.
405 (write_one_condition): Likewise for calls to print_c_condition.
406 * genconstants.c: Include "statistics.h" and "vec.h".
407 (main): Update for conversion to member functions.
408 * genemit.c (emit_c_code): Use rtx_reader_ptr for
409 call to print_md_ptr_loc.
410 * genenums.c: Include "statistics.h" and "vec.h".
411 (main): Update for conversion of traverse_enum_types to a method.
412 * genmddeps.c: Include "statistics.h" and "vec.h".
413 * genoutput.c (process_template): Use rtx_reader_ptr for call to
415 * genpreds.c (write_predicate_subfunction): Likewise.
416 (write_predicate_expr): Likewise for calls to print_c_condition.
417 * genrecog.c (print_test): Likewise.
418 * gensupport.c (process_rtx): Likewise for calls to
419 copy_md_ptr_loc and join_c_conditions.
420 (alter_test_for_insn): Likewise for call to join_c_conditions.
421 (process_substs_on_one_elem): Likewise.
422 (gen_mnemonic_setattr): Update for move of string_obstack to a
424 (mnemonic_htab_callback): Likewise. Fix formatting.
425 (gen_mnemonic_attr): Likewise.
426 * gentarget-def.c (def_target_insn): Use rtx_reader_ptr for calls
427 to print_c_condition.
428 * read-md.c: Include "statistics.h" and "vec.h".
429 (string_obstack): Convert this global to field "m_string_obstack"
431 (ptr_locs): Likewise, as "m_ptr_locs".
432 (ptr_loc_obstack): Likewise, as "m_ptr_loc_obstack".
433 (joined_conditions): Likewise, as "m_joined_conditions".
434 (joined_conditions_obstack): Likewise, as "m_joined_conditions_obstack".
435 (md_constants): Likewise, as "m_md_constants".
436 (enum_types): Likewise, as "m_enum_types".
437 (set_md_ptr_loc): Convert to...
438 (rtx_reader::set_md_ptr_loc): ...member function.
439 (get_md_ptr_loc): Convert to...
440 (rtx_reader::get_md_ptr_loc): ...member function.
441 (copy_md_ptr_loc): Convert to...
442 (rtx_reader::copy_md_ptr_loc): ...member function.
443 (fprint_md_ptr_loc): Convert to...
444 (rtx_reader::fprint_md_ptr_loc): ...member function.
445 (print_md_ptr_loc): Convert to...
446 (rtx_reader::print_md_ptr_loc): ...member function.
447 (join_c_conditions): Convert to...
448 (rtx_reader::join_c_conditions): ...member function.
449 (fprint_c_condition): Convert to...
450 (rtx_reader::fprint_c_condition): ...member function.
451 (print_c_condition): Convert to...
452 (rtx_reader::print_c_condition): ...member function.
453 (read_name): Convert to...
454 (rtx_reader::read_name): ...member function.
455 (read_escape): Convert to...
456 (rtx_reader::read_escape): ...member function.
457 (read_quoted_string): Convert to...
458 (rtx_reader::read_quoted_string): ...member function.
459 (read_braced_string): Convert to...
460 (rtx_reader::read_braced_string): ...member function.
461 (read_string): Convert to...
462 (rtx_reader::read_string): ...member function.
463 (read_skip_construct): Convert to...
464 (rtx_reader::read_skip_construct): ...member function.
465 (handle_constants): Convert to...
466 (rtx_reader::handle_constants): ...member function.
467 (traverse_md_constants): Convert to...
468 (rtx_reader::traverse_md_constants): ...member function.
469 (handle_enum): Convert to...
470 (rtx_reader::handle_enum): ...member function.
471 (lookup_enum_type): Convert to...
472 (rtx_reader::lookup_enum_type): ...member function.
473 (traverse_enum_types): Convert to...
474 (rtx_reader::traverse_enum_types): ...member function.
475 (rtx_reader::rtx_reader): Move initializations
476 of various former global data from rtx_reader::read_md_files to
477 here, as fields, along with the call to unlock_std_streams.
478 (rtx_reader::~rtx_reader): Clean up m_base_dir, and clean up
480 (rtx_reader::read_md_files): Move initializations of various
481 global data from here to the ctor.
482 * read-md.h (read_name): Convert to...
483 (rtx_reader::read_name): ...member function.
484 (rtx_reader::read_escape): New method decl.
485 (read_quoted_string): Convert to...
486 (rtx_reader::read_quoted_string): ...member function.
487 (rtx_reader::read_braced_string): New method decl.
488 (read_string): Convert to...
489 (rtx_reader::read_string): ...member function.
490 (rtx_reader::read_skip_construct): New method decl.
491 (rtx_reader::set_md_ptr_loc): New method decl.
492 (rtx_reader::get_md_ptr_loc): New method decl.
493 (copy_md_ptr_loc): Convert to...
494 (rtx_reader::copy_md_ptr_loc): ...member function.
495 (fprint_md_ptr_loc): Convert to...
496 (rtx_reader::fprint_md_ptr_loc): ...member function.
497 (print_md_ptr_loc): Convert to...
498 (rtx_reader::print_md_ptr_loc): ...member function.
499 (rtx_reader::lookup_enum_type): New method decl.
500 (rtx_reader::traverse_enum_types): New method decl.
501 (rtx_reader::handle_constants): New method decl.
502 (traverse_md_constants): Convert to...
503 (rtx_reader::traverse_md_constants): ...member function.
504 (rtx_reader::handle_enum): New method decl.
505 (rtx_reader::join_c_conditions): New method decl.
506 (fprint_c_condition): Convert to...
507 (rtx_reader::fprint_c_condition): ...member function.
508 (print_c_condition): Convert to...
509 (rtx_reader::print_c_condition): ...member function.
510 (rtx_reader::apply_iterator_to_string): New method decl.
511 (rtx_reader::copy_rtx_for_iterators): New method decl.
512 (rtx_reader::read_conditions): New method decl.
513 (rtx_reader::record_potential_iterator_use): New method decl.
514 (rtx_reader::read_mapping): New method decl.
515 (rtx_reader::read_rtx): New method decl.
516 (rtx_reader::read_rtx_code): New method decl.
517 (rtx_reader::read_rtx_operand): New method decl.
518 (rtx_reader::read_nested_rtx): New method decl.
519 (rtx_reader::read_rtx_variadic): New method decl.
520 (rtx_reader::get_string_obstack): New method.
521 (rtx_reader::get_md_constants): New method.
522 (string_obstack): Convert global variable decl to...
523 (rtx_reader::m_string_obstack): ...this new field.
524 (rtx_reader::m_ptr_locs): New field.
525 (rtx_reader::m_ptr_loc_obstack): New field.
526 (rtx_reader::m_joined_conditions): New field.
527 (rtx_reader::m_joined_conditions_obstack): New field.
528 (rtx_reader::m_md_constants): New field.
529 (rtx_reader::m_enum_types): New field.
530 * read-rtl.c (apply_iterator_to_string): Convert to...
531 (rtx_reader::apply_iterator_to_string): ...member function.
532 (copy_rtx_for_iterators): Convert to...
533 (rtx_reader::copy_rtx_for_iterators): ...member function.
534 (add_condition_to_string): Use rtx_reader_ptr for
535 calls join_c_conditions.
536 (apply_iterators): Use rtx_reader_ptr for calls to
537 join_c_conditions and copy_rtx_for_iterators.
538 (read_conditions): Convert to...
539 (rtx_reader::read_conditions): ...member function.
540 (record_potential_iterator_use): Convert to...
541 (rtx_reader::record_potential_iterator_use): ...member function.
542 (read_mapping): Convert to...
543 (rtx_reader::read_mapping): ...member function.
544 (read_subst_mapping): Use rtx_reader_ptr for read_string call.
545 (read_rtx): Convert to...
546 (rtx_reader::read_rtx): ...member function.
547 (read_rtx_code): Convert to...
548 (rtx_reader::read_rtx_code): ...member function.
549 (read_rtx_operand): Convert to...
550 (rtx_reader::read_rtx_operand): ...member function. Update for move
551 of string_obstack to a field.
552 (read_nested_rtx): Convert to..
553 (rtx_reader::read_nested_rtx): ...member function.
554 (read_rtx_variadic): Convert to..
555 (rtx_reader::read_rtx_variadic): ...member function.
557 2016-10-18 Kugan Vivekanandarajah <kuganv@linaro.org>
559 * tree-vrp.c (get_value_range): Check get_ptr_nonnull.
561 2016-10-18 Kugan Vivekanandarajah <kuganv@linaro.org>
563 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Set value range
564 for pointer type too.
565 (ipcp_update_vr): set_ptr_nonnull for pointer.
567 2016-10-18 Kugan Vivekanandarajah <kuganv@linaro.org>
569 * tree-ssa-alias.h (pt_solution_singleton_or_null_p): Renamed from
570 pt_solution_singleton_p.
571 * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Use renamed
572 pt_solution_singleton_or_null_p from pt_solution_singleton_p.
573 * tree-ssa-structalias.c (find_what_p_points_to): Preserve
574 pointer nonnull computed by VRP.
575 Also Conservatively set pt.null to 1.
576 (pt_solution_reset): Conservatively set pt.null to 1.
577 (pt_solution_singleton_or_null_p): Renamed from
578 pt_solution_singleton_p.
579 * tree-ssanames.h (set_ptr_nonnull): Declare.
580 (get_ptr_nonnull): Likewise.
581 * tree-ssanames.c (set_ptr_nonnull): New.
582 (get_ptr_nonnull): Likewise.
583 * tree-vrp.c (vrp_finalize): Set ptr that are nonnull.
584 (evrp_dom_walker::before_dom_children): Likewise.
586 2016-10-17 Eric Botcazou <ebotcazou@adacore.com>
588 * config/i386/i386.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to...
589 * config/i386/i386.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ...here.
590 * config/ia64/ia64.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to...
591 * config/ia64/ia64.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ...here.
592 * config/rs6000/rs6000.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to.
593 * config/rs6000/rs6000.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ...here.
594 (rs6000_option_override_internal): Clear it if ABI_AIX.
595 * config/sparc/sparc.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Move to...
596 * config/sparc/sparc.c (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): ... here.
598 2016-10-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
600 * gimple-ssa-strength-reduction.c (record_increment): Remove
603 2016-10-17 Eric Botcazou <ebotcazou@adacore.com>
605 * expmed.c (expand_shift_1): Add MAY_FAIL parameter and do not assert
606 that the result is non-zero if it is true.
607 (maybe_expand_shift): New wrapper around expand_shift_1.
608 (emit_store_flag): Call maybe_expand_shift in lieu of expand_shift.
610 2016-10-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
612 PR tree-optimization/77916
613 * gimple-ssa-strength-reduction.c (create_add_on_incoming_edge):
614 Don't allow a MINUS_EXPR for pointer arithmetic for either known
616 (record_increment): Increments of -1 for unknown strides just use
617 a multiply initializer like other negative values.
618 (analyze_increments): Remove stopgap solution for -1 increment
619 applied to pointer arithmetic.
621 2016-10-17 Yuri Rumyantsev <ysrumyan@gmail.com>
623 * dominance.c (dom_info::dom_info): Add new constructor for region
624 which is vector of basic blocks.
625 (dom_init): New method to initialize members common for both
627 (dom_info::dom_info): Invoke dom_init for partial initialization.
628 (dom_info::get_idom): Add check to corner cases on basic blocks which
630 (dom_info::calc_dfs_tree): Check M_FAKE_EXIT_EDGE instead of M_REVERSE
631 to detect unreachable bbs.
632 (dom_info::calc_idoms): Likewise.
633 (compute_dom_fast_query_in_region): New function.
634 (calculate_dominance_info_for_region): Likewise.
635 (free_dominance_info_for_region): Likewise.
636 * dominance.h: Add prototypes for introduced region-based functions
637 tree-if-conv.c: (build_region): New function.
638 (if_convertible_loop_p_1): Invoke local version of post-dominators
639 calculation before basic block predication with subsequent freeing
641 (tree_if_conversion): Remove free of post-dominator info
642 (pass_if_conversion::execute): Delete detection of infinite loops
643 and fake edges to exit block since post-dominator calculation is
644 performed per if-converted loop only.
646 2016-10-17 Bernd Edlinger <bernd.edlinger@hotmail.de>
649 * config/arm/arm.c (arm_emit_coreregs_64bit_shift): Clear the result
651 * config/arm/arm.md (ashldi3, ashrdi3, lshrdi3): Don't FAIL if
654 2016-10-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
656 * config/aarch64/aarch64.c: Delete inclusion of
657 cortex-a57-fma-steering.h.
658 (aarch64_override_options): Delete call
659 to aarch64_register_fma_steering.
660 * config/aarch64/aarch64-protos.h (make_pass_fma_steering): Declare.
661 * config/aarch64/cortex-a57-fma-steering.h: Delete.
662 * config/aarch64/aarch64-passes.def: New file.
663 * config/aarch64/cortex-a57-fma-steering.c
664 (aarch64_register_fma_steering): Delete definition.
665 (make_pass_fma_steering): Remove static qualifier.
666 * config/aarch64/t-aarch64 (PASSES_EXTRA): New directive.
667 (cortex-a57-fma-steering.o): Remove dependency on
668 cortex-a57-fma-steering.h.
670 2016-10-17 Eric Botcazou <ebotcazou@adacore.com>
672 * explow.c (validize_mem): Do not modify the argument in-place.
674 2016-10-17 Thomas Schwinge <thomas@codesourcery.com>
676 * tree-streamer.c (record_common_node): Explicitly list expected
679 2016-10-17 Richard Biener <rguenther@suse.de>
681 PR tree-optimization/77988
682 * tree-vrp.c (remove_range_assertions): Use replace_uses_by.
684 2016-10-17 Marek Polacek <polacek@redhat.com>
686 * Makefile.in (C_COMMON_OBJS): Add c-family/c-attribs.o.
688 2016-10-17 Richard Biener <rguenther@suse.de>
690 * bb-reorder.c (reorder_basic_blocks_simple): Clear BB_VISITED
693 2016-10-17 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
695 PR tree-optimization/71636
696 * match.pd (x & ((1 << b) - 1) -> x & ~(~0 << b)): New pattern.
698 2016-10-17 Richard Biener <rguenther@suse.de>
700 * gimplify.c (gimplify_function_tree): Do not move the outer
703 2016-10-17 Jakub Jelinek <jakub@redhat.com>
705 * langhooks.h (struct lang_hooks_for_decls): Remove
706 function_decl_explicit_p, function_decl_deleted_p and
707 function_decl_defaulted hooks. Add decl_dwarf_attribute hook.
708 * langhooks-def.h (lhd_decl_dwarf_attribute): Declare.
709 (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P,
710 LANG_HOOKS_FUNCTION_DECL_DELETED_P,
711 LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Remove.
712 (LANG_HOOKS_DECL_DWARF_ATTRIBUTE): Define.
713 (LANG_HOOKS_DECLS): Remove LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P,
714 LANG_HOOKS_FUNCTION_DECL_DELETED_P and
715 LANG_HOOKS_FUNCTION_DECL_DEFAULTED. Add
716 LANG_HOOKS_DECL_DWARF_ATTRIBUTE.
717 * langhooks.c (lhd_decl_dwarf_attribute): New function.
718 * dwarf2out.c (gen_subprogram_die): Use
719 lang_hooks.decls.decl_dwarf_attribute instead of
720 lang_hooks.decls.function_decl_*.
722 2016-10-16 Eric Botcazou <ebotcazou@adacore.com>
726 * common.opt (-ftrampolines): New option.
727 * doc/invoke.texi (Code Gen Options): Document it.
728 * doc/tm.texi.in (Trampolines): Add TARGET_CUSTOM_FUNCTION_DESCRIPTORS.
729 * doc/tm.texi: Regenerate.
730 * builtins.def: Add init_descriptor and adjust_descriptor.
731 * builtins.c (expand_builtin_init_trampoline): Do not issue a warning
732 on platforms with descriptors.
733 (expand_builtin_init_descriptor): New function.
734 (expand_builtin_adjust_descriptor): Likewise.
735 (expand_builtin) <BUILT_IN_INIT_DESCRIPTOR>: New case.
736 <BUILT_IN_ADJUST_DESCRIPTOR>: Likewise.
737 * calls.c (prepare_call_address): Remove SIBCALLP parameter and add
738 FLAGS parameter. Deal with indirect calls by descriptor and adjust.
739 Set STATIC_CHAIN_REG_P on the static chain register, if any.
740 (call_expr_flags): Set ECF_BY_DESCRIPTOR for calls by descriptor.
741 (expand_call): Likewise. Move around call to prepare_call_address
742 and pass all flags to it.
743 * cfgexpand.c (expand_call_stmt): Reinstate CALL_EXPR_BY_DESCRIPTOR.
744 * gimple.h (enum gf_mask): New GF_CALL_BY_DESCRIPTOR value.
745 (gimple_call_set_by_descriptor): New setter.
746 (gimple_call_by_descriptor_p): New getter.
747 * gimple.c (gimple_build_call_from_tree): SetCALL_EXPR_BY_DESCRIPTOR.
748 (gimple_call_flags): Deal with GF_CALL_BY_DESCRIPTOR.
749 * langhooks.h (struct lang_hooks): Add custom_function_descriptors.
750 * langhooks-def.h (LANG_HOOKS_CUSTOM_FUNCTION_DESCRIPTORS): Define.
751 (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_CUSTOM_FUNCTION_DESCRIPTORS.
752 * rtl.h (STATIC_CHAIN_REG_P): New macro.
753 * rtlanal.c (find_first_parameter_load): Skip static chain registers.
754 * target.def (custom_function_descriptors): New POD hook.
755 * tree.h (FUNC_ADDR_BY_DESCRIPTOR): New flag on ADDR_EXPR.
756 (CALL_EXPR_BY_DESCRIPTOR): New flag on CALL_EXPR.
757 * tree-core.h (ECF_BY_DESCRIPTOR): New mask.
758 Document FUNC_ADDR_BY_DESCRIPTOR and CALL_EXPR_BY_DESCRIPTOR.
759 * tree.c (make_node_stat) <tcc_declaration>: Use FUNCTION_ALIGNMENT.
760 (build_common_builtin_nodes): Initialize init_descriptor and
762 * tree-nested.c: Include target.h.
763 (struct nesting_info): Add 'any_descr_created' field.
764 (get_descriptor_type): New function.
765 (lookup_element_for_decl): New function extracted from...
766 (create_field_for_decl): Likewise.
767 (lookup_tramp_for_decl): ...here. Adjust.
768 (lookup_descr_for_decl): New function.
769 (convert_tramp_reference_op): Deal with descriptors.
770 (build_init_call_stmt): New function extracted from...
771 (finalize_nesting_tree_1): ...here. Adjust and deal with descriptors.
772 * defaults.h (FUNCTION_ALIGNMENT): Define.
773 (TRAMPOLINE_ALIGNMENT): Set to above instead of FUNCTION_BOUNDARY.
774 * config/i386/i386.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Define.
775 * config/ia64/ia64.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Likewise.
776 * config/rs6000/rs6000.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS):Likewise.
777 * config/sparc/sparc.h (TARGET_CUSTOM_FUNCTION_DESCRIPTORS): Likewise.
779 2016-10-16 Eric Botcazou <ebotcazou@adacore.com>
781 * config/sparc/sparc.c (sparc_expand_vector_init): Only accept literal
782 constants in CONST_VECTORs.
784 2016-10-15 Eric Botcazou <ebotcazou@adacore.com>
786 * config/sparc/sparc.c (sparc_expand_vec_perm_bmask): Use a scratch
787 register as destination of bmask.
788 (vector_init_bshuffle): Likewise.
789 * config/sparc/sparc.md (vec_perm_constv8qi): Likewise.
790 (bmaskdi_vis): Enable only in 64-bit mode.
792 2016-10-15 Segher Boessenkool <segher@kernel.crashing.org>
794 * config/rs6000/rs6000.c (rs6000_get_separate_components): Do not
795 make LR a separately shrink-wrapped component unless savres_strategy
796 contains all of {SAVE,REST}_INLINE_{GPRS,FPRS,VRS}. Do not wrap
797 GPRs unless both {SAVE,REST}_INLINE_GPRS. Do not disallow all
798 wrapping when not both {SAVE,REST}_INLINE_GPRS.
800 2016-10-15 Eric Botcazou <ebotcazou@adacore.com>
802 * optabs.c (expand_parity): Fix mode mismatch, add final conversion
803 and keep looping on failure.
805 2016-10-14 David Malcolm <dmalcolm@redhat.com>
807 * print-rtl-function.c (print_edge): Omit "(flags)" when none are
809 (print_rtx_function): Update example in comment for...
810 * print-rtl.c (print_rtx_operand_code_r): In compact mode, print
811 non-virtual pseudos with a '%' sigil followed by the regno, offset
812 by (LAST_VIRTUAL_REGISTER + 1), so that the first non-virtual
813 pseudo is dumped as "%0".
815 2016-10-14 Jakub Jelinek <jakub@redhat.com>
818 * expr.c (expand_expr_real_1) <case CONST_DECL>: For EXPAND_WRITE
821 2016-10-14 Eric Botcazou <ebotcazou@adacore.com>
823 * config/sparc/sparc-passes.def: New file.
824 * config/sparc/t-sparc (PASSES_EXTRA): Add sparc-passes.def.
825 * config/sparc/sparc-protos.h (make_pass_work_around_errata): New.
826 * config/sparc/sparc.c (sparc_option_override): Don't register passes.
828 2016-10-14 Pat Haugen <pthaugen@us.ibm.com>
830 * loop-unroll.c (unroll_loop_runtime_iterations): Condition initial
831 loop peel to loops with exit test at the beginning.
833 2016-10-14 Pat Haugen <pthaugen@us.ibm.com>
835 PR rtl-optimization/68212
836 * cfgloopmanip.c (duplicate_loop_to_header_edge): Use preheader edge
837 frequency when computing scale factor for peeled copies.
838 * loop-unroll.c (unroll_loop_runtime_iterations): Fix freq/count
839 values for switch/peel blocks/edges.
841 2016-10-14 Pedro Alves <palves@redhat.com>
843 * coretypes.h (OVERRIDE, FINAL): Delete, moved to include/ansidecl.h.
845 2016-10-14 Catherine Moore <clm@codesourcery.com>
847 * gcc/config/mips/mips.c (mips_prepare_pch_save): Initialize
848 micromips_globals to zero.
850 2016-10-14 Richard Biener <rguenther@suse.de>
852 PR tree-optimization/77979
853 * tree-vrp.c (compare_name_with_value): Handle released SSA names
854 in the equivalency sets.
855 (compare_names): Likewise.
857 2016-10-14 Martin Liska <mliska@suse.cz>
859 * builtins.h(target_char_cst_p): Declare the function.
860 * builtins.c (fold_builtin_memchr): Remove.
861 (target_char_cst_p): Move the function from gimple-fold.c.
862 (fold_builtin_3): Do not call the function.
863 * gimple-fold.c (gimple_fold_builtin_memchr): New function.
864 (gimple_fold_builtin): Call the function.
865 * fold-const-call.c (fold_const_call_1): Handle CFN_BUILT_IN_MEMCHR.
867 2016-10-14 Martin Liska <mliska@suse.cz>
869 * builtins.c (fold_builtin_strcmp): Remove function.
870 (fold_builtin_strncmp): Likewise.
871 (fold_builtin_2): Remove call of the function.
872 (fold_builtin_3): Likewise.
873 * fold-const-call.c (fold_const_call): Add constant folding
874 for CFN_BUILT_IN_STRCASECMP and CFN_BUILT_IN_STRNCASECMP.
875 * fold-const-call.h (build_cmp_result): Declare the function.
876 * gimple-fold.c (gimple_load_first_char): New function.
877 (gimple_fold_builtin_string_compare): Likewise.
878 (gimple_fold_builtin): Call the function.
880 2016-10-14 Nathan Sidwell <nathan@acm.org>
882 * gcov-io.c (gcov_open): Deconstify 'mode'.
884 2016-10-14 Martin Liska <mliska@suse.cz>
886 * fold-const.c (c_getstr): Support of properly \0-terminated
887 string constants. New argument is added.
888 * fold-const.h: New argument is added.
890 2016-10-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
892 * config/aarch64/aarch64.c (aarch64_print_hint_for_core_or_arch):
894 (aarch64_print_hint_for_core): Likewise.
895 (aarch64_print_hint_for_arch): Likewise.
896 (aarch64_validate_march): Use it. Fix indentation in type signature.
897 (aarch64_validate_mcpu): Use aarch64_print_hint_for_core_or_arch.
898 (aarch64_validate_mtune): Likewise.
899 (aarch64_handle_attr_arch): Likewise.
900 (aarch64_handle_attr_cpu): Likewise.
901 (aarch64_handle_attr_tune): Likewise.
903 2016-10-14 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
905 * optabs.def: Remove optab function gen_int_libfunc for sdivmod_optab
908 2016-10-13 Andreas Schwab <schwab@linux-m68k.org>
910 * config/m68k/m68k.c (m68k_option_override): Check
911 opt_fstack_limit_symbol_arg and opt_fstack_limit_register_no
912 instead of stack_limit_rtx.
914 2016-10-13 Jakub Jelinek <jakub@redhat.com>
916 * dwarf2out.c (gen_member_die): Handle inline static data member
919 2016-10-13 Nathan Sidwell <nathan@acm.org>
921 * gcov-io.c (gcov_open): Fix documentation. Simplify setting
922 gcov_var.mode. Remove unnecessary fstat.
924 2016-10-13 Segher Boessenkool <segher@kernel.crashing.org>
927 * function.c (thread_prologue_and_epilogue_insns): Call all
928 make_*logue_seq in the same order as traditional. Call them
929 all a second time if shrink_wrapped_separate.
931 2016-10-13 Marek Polacek <polacek@redhat.com>
933 * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
934 insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Don't
937 2016-10-13 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
939 PR tree-optimization/77937
940 * gimple-ssa-strength-reduction.c (analyze_increments): Set cost
941 to infinite when we have a pointer with an increment of -1.
943 2016-10-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
945 * coretypes.h: Move MEMMODEL_* macros and enum memmodel definition
947 * memmodel.h: This file.
948 * alias.c, asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c,
949 caller-save.c, calls.c, ccmp.c, cfgbuild.c, cfgcleanup.c,
950 cfgexpand.c, cfgloopanal.c, cfgrtl.c, cilk-common.c, combine.c,
951 combine-stack-adj.c, common/config/aarch64/aarch64-common.c,
952 common/config/arm/arm-common.c, common/config/bfin/bfin-common.c,
953 common/config/c6x/c6x-common.c, common/config/i386/i386-common.c,
954 common/config/ia64/ia64-common.c, common/config/nvptx/nvptx-common.c,
955 compare-elim.c, config/aarch64/aarch64-builtins.c,
956 config/aarch64/aarch64-c.c, config/aarch64/cortex-a57-fma-steering.c,
957 config/arc/arc.c, config/arc/arc-c.c, config/arm/arm-builtins.c,
958 config/arm/arm-c.c, config/avr/avr.c, config/avr/avr-c.c,
959 config/avr/avr-log.c, config/bfin/bfin.c, config/c6x/c6x.c,
960 config/cr16/cr16.c, config/cris/cris.c, config/darwin-c.c,
961 config/darwin.c, config/epiphany/epiphany.c,
962 config/epiphany/mode-switch-use.c,
963 config/epiphany/resolve-sw-modes.c, config/fr30/fr30.c,
964 config/frv/frv.c, config/ft32/ft32.c, config/h8300/h8300.c,
965 config/i386/i386-c.c, config/i386/winnt.c, config/iq2000/iq2000.c,
966 config/lm32/lm32.c, config/m32c/m32c.c, config/m32r/m32r.c,
967 config/m68k/m68k.c, config/mcore/mcore.c,
968 config/microblaze/microblaze.c, config/mmix/mmix.c,
969 config/mn10300/mn10300.c, config/moxie/moxie.c,
970 config/msp430/msp430.c, config/nds32/nds32-cost.c,
971 config/nds32/nds32-intrinsic.c, config/nds32/nds32-md-auxiliary.c,
972 config/nds32/nds32-memory-manipulation.c,
973 config/nds32/nds32-predicates.c, config/nds32/nds32.c,
974 config/nios2/nios2.c, config/nvptx/nvptx.c, config/pa/pa.c,
975 config/pdp11/pdp11.c, config/rl78/rl78.c, config/rs6000/rs6000-c.c,
976 config/rx/rx.c, config/s390/s390-c.c, config/s390/s390.c,
977 config/sh/sh.c, config/sh/sh-c.c, config/sh/sh-mem.cc,
978 config/sh/sh_treg_combine.cc, config/sol2.c, config/spu/spu.c,
979 config/stormy16/stormy16.c, config/tilegx/tilegx.c,
980 config/tilepro/tilepro.c, config/v850/v850.c, config/vax/vax.c,
981 config/visium/visium.c, config/vms/vms-c.c, config/xtensa/xtensa.c,
982 coverage.c, cppbuiltin.c, cprop.c, cse.c, cselib.c, dbxout.c, dce.c,
983 df-core.c, df-problems.c, df-scan.c, dojump.c, dse.c, dwarf2asm.c,
984 dwarf2cfi.c, dwarf2out.c, emit-rtl.c, except.c, explow.c, expmed.c,
985 expr.c, final.c, fold-const.c, function.c, fwprop.c, gcse.c,
986 ggc-page.c, haifa-sched.c, hsa-brig.c, hsa-gen.c, hw-doloop.c,
987 ifcvt.c, init-regs.c, internal-fn.c, ira-build.c, ira-color.c,
988 ira-conflicts.c, ira-costs.c, ira-emit.c, ira-lives.c, ira.c, jump.c,
989 loop-doloop.c, loop-invariant.c, loop-iv.c, loop-unroll.c,
990 lower-subreg.c, lra.c, lra-assigns.c, lra-coalesce.c,
991 lra-constraints.c, lra-eliminations.c, lra-lives.c, lra-remat.c,
992 lra-spills.c, mode-switching.c, modulo-sched.c, omp-low.c, passes.c,
993 postreload-gcse.c, postreload.c, predict.c, print-rtl-function.c,
994 recog.c, ree.c, reg-stack.c, regcprop.c, reginfo.c, regrename.c,
995 reload.c, reload1.c, reorg.c, resource.c, rtl-chkp.c, rtl-tests.c,
996 rtlanal.c, rtlhooks.c, sched-deps.c, sched-rgn.c, sdbout.c,
997 sel-sched-ir.c, sel-sched.c, shrink-wrap.c, simplify-rtx.c,
998 stack-ptr-mod.c, stmt.c, stor-layout.c, target-globals.c,
999 targhooks.c, toplev.c, tree-nested.c, tree-outof-ssa.c,
1000 tree-profile.c, tree-ssa-coalesce.c, tree-ssa-ifcombine.c,
1001 tree-ssa-loop-ivopts.c, tree-ssa-loop.c, tree-ssa-reassoc.c,
1002 tree-ssa-sccvn.c, tree-vect-data-refs.c, ubsan.c, valtrack.c,
1003 var-tracking.c, varasm.c: Include memmodel.h.
1004 * genattrtab.c (write_header): Include memmodel.h in generated file.
1005 * genautomata.c (main): Likewise.
1006 * gengtype.c (open_base_files): Likewise.
1007 * genopinit.c (main): Likewise.
1008 * genconditions.c (write_header): Include memmodel.h earlier in
1010 * genemit.c (main): Likewise.
1011 * genoutput.c (output_prologue): Likewise.
1012 * genpeep.c (main): Likewise.
1013 * genpreds.c (write_insn_preds_c): Likewise.
1014 * genrecog.c (write_header): Likewise.
1015 * Makefile.in (PLUGIN_HEADERS): Include memmodel.h
1017 2016-10-13 David Malcolm <dmalcolm@redhat.com>
1019 * function-tests.c (selftest::test_expansion_to_rtl): Add "true"
1020 for new "compact" param of print_rtx_function. Check for "cinsn"
1022 * print-rtl-function.c (flag_compact): New decl.
1023 (print_rtx_function): Add param "compact" and use it to set
1024 flag_compact, adding a description of the effect to the leading
1025 comment, and updating the example output.
1026 * print-rtl.c (flag_compact): New variable.
1027 (print_rtx_operand_code_0): Omit the JUMP_LABEL reference in compact
1029 (print_rtx_operand_code_i): When printing source locations, wrap
1030 xloc.file in quotes. Don't print INSN_CODEs in compact mode.
1031 (print_rtx_operand_code_r): Don't print regnos for hard regs and
1032 virtuals in compact mode.
1033 (print_rtx_operand_code_u): Don't print insn UIDs in compact mode,
1034 apart from in LABEL_REFs.
1035 (print_rtx_operand): In case 'w', don't print in hex in compact mode.
1036 Don't print basic block ids in compact mode.
1037 (print_rtx): In compact mode, prefix the code of insns with "c",
1038 only print the INSN_UID of CODE_LABELs, and omit their LABEL_NUSES.
1039 * print-rtl.h (print_rtx_function): Add "compact" param.
1041 2016-10-13 Richard Earnshaw <rearnsha@arm.com>
1043 * arm.h (TARGET_VFP): Delete.
1044 (TARGET_VFPD32): Remove references to TARGET_VFP.
1045 (TARGET_VFP3, TARGET_VFP5): Likewise.
1046 (TARGET_VFP_SINGLE, TARGET_VFP_DOUBLE): Likewise.
1047 (TARGET_NEON_FP16): Likewise.
1048 (TARGET_FMA): Likewise.
1049 (TARGET_CRYPTO): Likewise.
1050 (TARGET_NEON): Likewise.
1051 (SECONDARY_OUTPUT_RELOAD_CLASS): Likewise.
1052 (FUNCTION_ARG_REGNO_P): Likewise.
1053 * arm.c (arm_option_check_internal): Likewise.
1054 (arm_option_override): Likewise.
1055 (use_return_insn): Likewise.
1056 (arm_function_value_regno_p): Likewise.
1057 (arm_apply_result_size): Likewise.
1058 (use_vfp_abi): Likewise.
1059 (arm_legitimate_address_outer_p): Likewise.
1060 (thumb2_legitimate_address_p): Likewise.
1061 (arm_legitimate_index_p): Likewise.
1062 (thumb2_legitimate_index_p): Likewise.
1063 (arm_legitimate_address): Likewise.
1064 (arm_get_vfp_saved_size): Likewise.
1065 (arm_emit_vfp_multi_reg_pop): Likewise.
1066 (arm_get_frame_offsets): Likewise.
1067 (arm_save_coproc_regs): Likewise.
1068 (arm_hard_regno_mode_ok): Likewise.
1069 (arm_expand_epilogue_apcs_frame): Likewise.
1070 (arm_expand_epilogue): Likewise.
1071 (arm_file_start): Likewise.
1072 (arm_conditional_register_usage): Likewise.
1073 (arm_validize_comparison): Use vfp_compare_operand directly.
1074 * arm-builtins.c (arm_init_builtins): Remove references to TARGET_VFP.
1075 (arm_expand_vfp_builtin): Use TARGET_HARD_FLOAT for detecting
1077 (arm_atomic_assign_expand_fenv): Likewise.
1078 * arm.md (divsf3): Likewise.
1079 (arm_negsi2): Likewise.
1081 (arm_movdi): Likewise.
1082 (arm_movt): Likewise.
1083 (cbranchsf4): Change predicate to vfp_compare_operand.
1084 (cbranchdf4): Change predicate to vfp_compare_operand.
1085 (cstorehf4): Change predicate to vfp_compare_operand.
1086 (cstoresf4): Change predicate to vfp_compare_operand.
1087 (cstoredf4): Change predicate to vfp_compare_operand.
1088 (vfp_pop_multiple_with_writeback): Remove references to TARGET_VFP.
1089 (movhi_insn_arch4, movhi_bytes): Likewise.
1090 * constraints.md (Dt): Likewise.
1092 * iterators.md (SDF): Likewise.
1093 * predicates.md (arm_float_compare_operand): Delete.
1094 (const_double_vcvt_power_of_two_reciprocal): Remove references to
1096 (const_double_vcvt_power_of_two): Likewise.
1097 * thumb2.md thumb2_movsi_insn): Likewise.
1098 * vfp.md (arm_movhi_vfp, thumb2_movhi_vfp): Likewise.
1099 (movhf_vfp): Likewise.
1100 (arm_movsi_vfp, thumb2_movsi_vfp): Likewise.
1101 (movdi_vfp, movdi_vfp_cortexa8): Likewise.
1102 (movsf_vfp, thumb2_movsf_vfp): Likewise.
1103 (movdf_vfp, thumb2_movdf_vfp): Likewise.
1104 (movsfcc_vfp, abssf2_vfp, negsf2_vfp, addsf3_vfp): Likewise.
1105 (subsf3_vfp, divsf3_vfp): Likewise.
1106 (mulsf3_vfp, mulsf3negsf_vfp, negmulsf3_vfp): Likewise.
1107 (mulsf3addsf_vfp, (mulsf3subsf_vfp, mulsf3negsfaddsf_vfp): Likewise.
1108 (mulsf3negsfsubsf_vfp): Likewise.
1109 (truncsisf2_vfp, fixuns_truncsfsi2, floatsisf2_vfp): Likewise.
1110 (floatunssisf2, sqrtsf2_vfp): Likewise.
1111 (movcc_vfp): Likewise.
1112 (cmpsf_split_vfp, cmpsf_trap_split_vfp): Likewise.
1113 (cmpsf_vfp, cmpsf_trap_vfp): Likewise.
1114 (push_multi_vfp): Likewise.
1115 (set_fpscr, get_fpscr): Likewise.
1116 * arm-c.c (arm_cpu_builtins): Unconditionally define __VFP_FP__.
1118 2016-10-13 Richard Earnshaw <rearnsha@arm.com>
1120 * arm.h (TARGET_VFP): Unconditionally define to 1.
1121 (arm_fpu_desc): Remove 'model' field.
1122 (TARGET_FPU_MODEL): Delete.
1123 * arm.c (all_fpus): Don't initialize the model field.
1124 (arm_can_inline_p): Don't check the FPU model.
1125 * arm-fpus.def: Remove redundant model field from all FPU
1128 2016-10-13 Richard Biener <rguenther@suse.de>
1131 * genmatch.c (struct capture): Add value_match member.
1132 (commutate): Preserve value_match.
1133 (lower_opt_convert): Likewise.
1134 (lower_cond): Likewise.
1135 (replace_id): Likewise.
1136 (struct dt_operand): Add value_match member.
1137 (decision_tree::cmp_node): Compare it.
1138 (decision_tree::insert_operand): Honor it when finding and
1139 when appending a DT_MATCH.
1140 (dt_operand::gen_match_op): Generate a type check after
1141 operand_equal_p if ! value_match for both GENERIC and GIMPLE.
1142 (parser::get_internal_capture_id): New helper.
1143 (parser::finish_match_operand): New function lowering @@<id>.
1144 (parser::parse_capture): Parse @@<id> as value-match.
1145 (parser::parse_expr): Use get_internal_capture_id.
1146 (parser::parse_simplify): Call finish_match_operand.
1147 (walk_captures): New helper.
1148 * match.pd (X - (X / Y) * Y -> X % Y): Use value-matching instead
1150 ((X /[ex] A) * A -> X): Likewise.
1151 ((X | Y) ^ X -> Y & ~ X): Handle constants properly by using
1152 convert[12] and value-matching.
1153 ((A | B) & (A | C) -> A | (B & C)): Likewise.
1154 ((X | Y) | Y -> X | Y): Likewise.
1155 ((X ^ Y) ^ Y -> X): Likewise.
1156 (A - (A & B) -> ~B & A): Likewise.
1157 ((T)(P + A) - (T)P -> (T) A): Likewise.
1158 ((T)P - (T)(P + A) -> -(T) A): Likewise.
1159 ((T)(P + A) - (T)(P + B) -> (T)A - (T)B): Likewise.
1160 * doc/match-and-simplify.texi: Amend capture section.
1162 2016-10-13 Claudiu Zissulescu <claziss@synopsys.com>
1164 * config/arc/arc.md (umul_600): Remove predicated variant.
1165 (umul64_600): Likewise.
1167 2016-10-13 Claudiu Zissulescu <claziss@synopsys.com>
1169 * config/arc/arc.h (INSN_LENGTH_ALIGNMENT): Change.
1171 2016-10-13 Bin Cheng <bin.cheng@arm.com>
1173 * tree-vect-loop.c (loop_niters_no_overflow): New func.
1174 (vect_transform_loop): Call loop_niters_no_overflow. Pass the
1175 no-overflow information to vect_do_peeling_for_loop_bound and
1176 vect_gen_vector_loop_niters.
1178 2016-10-13 Bin Cheng <bin.cheng@arm.com>
1180 * tree-predcom.c (tree_predictive_commoning_loop): Skip loop that only
1183 2016-10-13 Bin Cheng <bin.cheng@arm.com>
1185 * tree-vect-loop-manip.c (adjust_vec_debug_stmts): Don't release
1186 adjust_vec automatically.
1187 (slpeel_add_loop_guard): Remove param cond_expr_stmt_list. Rename
1188 param exit_bb to guard_to.
1189 (slpeel_checking_verify_cfg_after_peeling):
1190 (set_prologue_iterations):
1191 (create_lcssa_for_virtual_phi): New func which is factored out from
1192 slpeel_tree_peel_loop_to_edge.
1193 (slpeel_tree_peel_loop_to_edge):
1194 (iv_phi_p): New func.
1195 (vect_can_advance_ivs_p): Call iv_phi_p.
1196 (vect_update_ivs_after_vectorizer): Call iv_phi_p. Directly insert
1197 new gimple stmts in basic block.
1198 (vect_gen_niters_for_prolog_loop): Rename to...
1199 (vect_gen_prolog_loop_niters): ...Rename from. Change parameters and
1200 adjust implementation.
1201 (vect_update_inits_of_drs): Fix code style issue. Convert niters to
1202 sizetype if necessary.
1203 (vect_build_loop_niters): Move to here from tree-vect-loop.c. Change
1204 it to external function.
1205 (vect_gen_scalar_loop_niters, vect_gen_vector_loop_niters): New.
1206 (vect_gen_vector_loop_niters_mult_vf): New.
1207 (slpeel_update_phi_nodes_for_loops): New.
1208 (slpeel_update_phi_nodes_for_guard1): Reimplement.
1209 (find_guard_arg, slpeel_update_phi_nodes_for_guard2): Reimplement.
1210 (slpeel_update_phi_nodes_for_lcssa, vect_do_peeling): New.
1211 * tree-vect-loop.c (vect_build_loop_niters): Move to file
1212 tree-vect-loop-manip.c
1213 (vect_generate_tmps_on_preheader): Delete.
1214 (vect_transform_loop): Rename vectorization_factor to vf. Call
1215 vect_do_peeling instead of vect_do_peeling-* functions.
1216 * tree-vectorizer.h (vect_do_peeling): New decl.
1217 (vect_build_loop_niters, vect_gen_vector_loop_niters): New decls.
1218 (vect_do_peeling_for_loop_bound): Delete.
1219 (vect_do_peeling_for_alignment): Delete.
1221 2016-10-13 Bin Cheng <bin.cheng@arm.com>
1223 * tree-vect-loop-manip.c (slpeel_tree_duplicate_loop_to_edge_cfg): Put
1224 duplicated loop after its preheader and after the original loop.
1226 2016-10-13 Bin Cheng <bin.cheng@arm.com>
1228 * tree-vect-loop.c (vect_analyze_loop_2): Check and skip loop if it
1229 has no enough iterations for LOOP_VINFO_PEELING_FOR_GAPS.
1231 2016-10-13 Bin Cheng <bin.cheng@arm.com>
1233 * tree-vect-loop.c (vectorizable_live_operation): Support handling
1234 for live variable outside loop but not in lcssa form.
1236 2016-10-13 Bin Cheng <bin.cheng@arm.com>
1238 * cfg.c (reset_original_copy_tables): New func.
1239 * cfg.h (reset_original_copy_tables): New decl.
1241 2016-10-13 Jakub Jelinek <jakub@redhat.com>
1244 * tree.h (FALLTHROUGH_LABEL_P): Use private_flag instead of
1246 * varasm.c (default_binds_local_p_3): Formatting fix.
1248 2016-10-13 Bin Cheng <bin.cheng@arm.com>
1250 * tree-vect-loop-manip.c (slpeel_can_duplicate_loop_p): Fix code
1252 (vect_do_peeling_for_loop_bound, vect_do_peeling_for_alignment):
1253 Remove useless code.
1255 2016-10-13 Martin Liska <mliska@suse.cz>
1257 PR tree-optimization/77943
1258 * tree-ssa-tail-merge.c (merge_stmts_p): Do not merge BBs with
1259 a different EH landing pads.
1261 2016-10-13 Jakub Jelinek <jakub@redhat.com>
1264 * hooks.h (hook_tree_void_null): Declare.
1265 * hooks.c (hook_tree_void_null): New function.
1266 * langhooks.c (lhd_return_null_tree_v): Remove.
1267 * langhooks-def.h (lhd_return_null_tree_v): Remove.
1268 * cfgexpand.c (stack_protect_prologue): If guard_decl is NULL,
1269 set y to const0_rtx.
1270 * function.c (stack_protect_epilogue): Likewise.
1271 * config/tilepro/tilepro.c (TARGET_STACK_PROTECT_GUARD): Redefine
1272 if TARGET_THREAD_SSP_OFFSET is defined.
1273 * config/s390/s390.c (TARGET_STACK_PROTECT_GUARD): Likewise.
1274 * config/sparc/sparc.c (TARGET_STACK_PROTECT_GUARD): Likewise.
1275 * config/tilegx/tilegx.c (TARGET_STACK_PROTECT_GUARD): Likewise.
1276 * config/rs6000/rs6000.c (TARGET_STACK_PROTECT_GUARD): Likewise.
1277 * config/i386/i386.c (TARGET_STACK_PROTECT_GUARD): Likewise.
1278 (ix86_stack_protect_guard): New function.
1280 2016-10-13 Richard Biener <rguenther@suse.de>
1282 * dwarf2out.c (tree_add_const_value_attribute): Do not try
1283 rtl_for_decl_init during early phase.
1284 (gen_variable_die): Do not create locations during early phase.
1285 (gen_label_die): Likewise.
1286 (decls_for_scope): Do not waste time handling BLOCK_NONLOCALIZED_VARs
1289 2016-10-12 Richard Biener <rguenther@suse.de>
1291 * tree-vrp.c (evrp_dom_walker::try_find_new_range): Renamed from
1292 try_add_new_range and made to eturn new range.
1293 (evrp_dom_walker::before_dom_children): Push op1 value range before
1294 pushing op0 value range.
1296 2016-10-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
1298 PR tree-optimization/77937
1299 * gimple-ssa-strength-reduction.c (analyze_increments): Use
1300 POINTER_TYPE_P on the candidate type to determine whether
1301 candidates in this chain require pointer arithmetic.
1303 2016-10-12 Eric Botcazou <ebotcazou@adacore.com>
1305 * config/visium/visium.c (visium_gimplify_va_arg): Emit a big-endian
1306 correction if the type is smaller than a word.
1307 (visium_select_cc_mode): Add ... fall through ... comment.
1309 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
1311 * config/rs6000/rs6000.c (machine_function): Add new fields
1312 gpr_is_wrapped_separately and lr_is_wrapped_separately.
1313 (TARGET_SHRINK_WRAP_GET_SEPARATE_COMPONENTS,
1314 TARGET_SHRINK_WRAP_COMPONENTS_FOR_BB,
1315 TARGET_SHRINK_WRAP_DISQUALIFY_COMPONENTS,
1316 TARGET_SHRINK_WRAP_EMIT_PROLOGUE_COMPONENTS,
1317 TARGET_SHRINK_WRAP_EMIT_EPILOGUE_COMPONENTS,
1318 TARGET_SHRINK_WRAP_SET_HANDLED_COMPONENTS): Define.
1319 (rs6000_get_separate_components): New function.
1320 (rs6000_components_for_bb): New function.
1321 (rs6000_disqualify_components): New function.
1322 (rs6000_emit_prologue_components): New function.
1323 (rs6000_emit_epilogue_components): New function.
1324 (rs6000_set_handled_components): New function.
1325 (rs6000_emit_prologue): Don't emit LR save if lr_is_wrapped_separately.
1326 Don't emit GPR saves if gpr_is_wrapped_separately for that register.
1327 (restore_saved_lr): Don't restore LR if lr_is_wrapped_separately.
1328 (rs6000_emit_epilogue): Don't emit GPR restores if
1329 gpr_is_wrapped_separately for that register. Don't make a
1330 REG_CFA_RESTORE note for registers we did not restore, either.
1332 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
1334 * function.c (thread_prologue_and_epilogue_insns): Call
1335 try_shrink_wrapping_separate. Compute the prologue_seq afterwards,
1336 if it has possibly changed. Compute the split_prologue_seq and
1337 epilogue_seq later, too.
1338 * shrink-wrap.c: #include cfgbuild.h and insn-config.h.
1339 (dump_components): New function.
1340 (struct sw): New struct.
1342 (init_separate_shrink_wrap): New function.
1343 (fini_separate_shrink_wrap): New function.
1344 (place_prologue_for_one_component): New function.
1345 (spread_components): New function.
1346 (disqualify_problematic_components): New function.
1347 (emit_common_heads_for_components): New function.
1348 (emit_common_tails_for_components): New function.
1349 (insert_prologue_epilogue_for_components): New function.
1350 (try_shrink_wrapping_separate): New function.
1351 * shrink-wrap.h: Declare try_shrink_wrapping_separate.
1353 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
1355 * regrename.c (build_def_use): Invalidate chains that have a
1356 REG_CFA_RESTORE on some instruction.
1358 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
1360 * dce.c (delete_unmarked_insns): Don't delete instructions with
1361 a REG_CFA_RESTORE note.
1363 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
1365 * common.opt (-fshrink-wrap-separate): New flag.
1366 * doc/invoke.texi: Document it.
1367 * doc/tm.texi.in (Shrink-wrapping separate components): New subsection.
1368 * doc/tm.texi: Regenerate.
1369 * emit-rtl.h (struct rtl_data): New field shrink_wrapped_separate.
1370 * target.def (shrink_wrap): New hook vector.
1371 (get_separate_components, components_for_bb, disqualify_components,
1372 emit_prologue_components, emit_epilogue_components,
1373 set_handled_components): New hooks.
1375 2016-10-12 Segher Boessenkool <segher@kernel.crashing.org>
1377 * config/rs6000/rs6000.c (rs6000_return_in_memory): Warn for
1378 vector return by reference only if -Wpsabi.
1379 (rs6000_pass_by_reference): Similarly, for argument passing.
1381 2016-10-12 David Malcolm <dmalcolm@redhat.com>
1383 * function-tests.c: Include "print-rtl.h".
1384 (selftest::test_expansion_to_rtl): Call print_rtx_function on the
1385 function, and verify what is dumped.
1386 * print-rtl-function.c (print_edge): New function.
1387 (begin_any_block): New function.
1388 (end_any_block): New function.
1389 (can_have_basic_block_p): New function.
1390 (print_rtx_function): Track the basic blocks of insns in the
1391 chain, wrapping those that are within blocks within "(block)"
1392 directives. Remove the "(cfg)" directive.
1394 2016-10-12 David Malcolm <dmalcolm@redhat.com>
1396 * selftest.c (selftest::read_file): New function.
1397 (selftest::test_read_file): New function.
1398 (selftest::selftest_c_tests): Call test_read_file.
1399 * selftest.h (selftest::read_file): New decl.
1401 2016-10-12 Richard Biener <rguenther@suse.de>
1404 * cgraphunit.c (analyze_functions): Preserve cgraph nodes
1407 2016-10-12 Thomas Schwinge <thomas@codesourcery.com>
1409 * lto-streamer.c: Fix LTO_STREAMER_DEBUG build.
1411 * dwarf2out.c (dwarf2_lineno_debug_hooks): Use
1412 dwarf2out_assembly_start.
1414 * Makefile.in (SELFTEST_FLAGS): Add -nostdinc.
1416 * Makefile.in (SELFTEST_FLAGS): New variable.
1417 (s-selftest, selftest-gdb, selftest-valgrind): Use it.
1419 * vmsdbgout.c (vmsdbg_debug_hooks): Add filename parameter to
1422 2016-10-12 Georg-Johann Lay <avr@gjlay.de>
1424 * rtl.h (struct rtx_def): Comment how RTX_FLAGS will be
1425 dumped in RTL dumps.
1427 2016-10-12 Martin Liska <mliska@suse.cz>
1429 * gimple-fold.c (create_tmp_reg_or_ssa_name): New function.
1430 (gimple_fold_builtin_memory_op): Use the function.
1431 (gimple_fold_builtin_strchr): Likewise.
1432 (gimple_fold_builtin_strcat): Likewise.
1433 (gimple_build): Likewise.
1435 2016-10-12 Nathan Sidwell <nathan@acm.org>
1437 * diagnostic.c (diagnostc_report_diagnostic): Fix formatting.
1439 2016-10-12 Pierre-Marie de Rodat <derodat@adacore.com>
1441 * dwarf2out.c (int_loc_descriptor): Generate opcodes for another
1442 equivalent 32-bit constant (modulo 2**32) when that yields
1443 smaller instructions.
1444 (size_of_int_loc_descriptor): Update accordingly.
1446 2016-10-12 Pierre-Marie de Rodat <derodat@adacore.com>
1448 * dwarf2out.c (dwarf2out_early_global_decl): For nested
1449 functions, call dwarf2out_decl on the parent function first.
1451 2016-10-12 Richard Biener <rguenther@suse.de>
1453 * match.pd ((X /[ex] A) * A -> X): Remove unnecessary constraint
1456 2016-10-12 Richard Biener <rguenther@suse.de>
1458 * tree-ssa-propagate.c
1459 (substitute_and_fold_dom_walker::before_dom_children): Do not
1460 ignore ASSERT_EXPRs but only preserve them.
1461 * tree-vrp.c (remove_range_assertions): Deal with ASSERT_EXPRs
1462 that have been propagated into.
1463 (vrp_finalize): Enable DCE for substitute_and_fold.
1465 2016-10-12 Richard Biener <rguenther@suse.de>
1467 PR tree-optimization/77920
1468 * tree-vrp.c (simplify_div_or_mod_using_ranges): Simplify.
1469 (simplify_min_or_max_using_ranges): Pass in gsi and use it.
1470 (simplify_abs_using_ranges): Likewise.
1471 (simplify_conversion_using_ranges): Likewise.
1472 (simplify_stmt_using_ranges): Adjust.
1474 2016-10-12 Jakub Jelinek <jakub@redhat.com>
1476 PR tree-optimization/77929
1477 * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Handle
1478 (*ops)[ranges[i].idx]->op != ranges[i].exp case.
1480 2016-10-12 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
1483 * config/rs6000/vmx.md (vsx_concat_<mode>): The mtvsrdd instruction
1484 needs a base register for arg 1.
1486 2016-10-12 Jakub Jelinek <jakub@redhat.com>
1488 * common.opt (Wimplicit-fallthrough) Turn into alias to
1489 -Wimplicit-fallthrough=3. Remove EnabledBy.
1490 (Wimplicit-fallthrough=): New option.
1491 * gimplify.c (warn_implicit_fallthrough_r): Use
1492 OPT_Wimplicit_fallthrough_ instead of OPT_Wimplicit_fallthrough.
1493 * doc/invoke.texi (-Wimplicit-fallthrough): Document as alias
1494 to -Wimplicit-fallthrough=3.
1495 (-Wimplicit-fallthrough=): Document.
1497 2016-10-11 Eric Botcazou <ebotcazou@adacore.com>
1499 * config/sparc/sparc.c (emit_scc_insn): Remove direct support for EQ
1500 and GEU in DImode if TARGET_SUBXC.
1501 * config/sparc/sparc.md (seqdi<W:mode>_zero): Remove TARGET_SUBXC.
1502 (seqdi<W:mode>_zero_subxc): Delete.
1503 (neg_seqdi<W:mode>_zero): Remove TARGET_VIS3.
1504 (neg_seqdi<W:mode>_zero_vis3): Delete.
1505 (plus_seqdi<W:mode>_zero): Likewise.
1506 (minus_seqdi<W:mode>_zero): Likewise.
1507 (plus_plus_sltu<W:mode>): Accept only register.
1508 (addx<W:mode>): Likewise.
1509 (plus_sltu<W:mode>_vis3): Likewise.
1510 (plus_plus_sltu<W:mode>_vis3): Likewise.
1511 (neg_sgeu<W:mode>_vis3): Delete.
1512 (minus_sgeu<W:mode>_vis3): Likewise.
1513 (addxc<W:mode>): Accept only registers.
1514 (neg_sltu<W:mode>_subxc): Write %%g0 instead of 0.
1515 (minus_neg_sltu<W:mode>_subxc): Accept only register.
1516 (neg_plus_sltu<W:mode>_subxc): Likewise.
1517 (minus_sltu<W:mode>_subxc): Write %%g0 instead of 0.
1518 (minus_minus_sltu<W:mode>_subxc): Accept only register.
1519 (sgeu<W:mode>_insn_subxc): Delete.
1520 (plus_sgeu<W:mode>_subxc): Likewise.
1521 (subxc<W:mode>): Accept only register.
1522 (scc splitter): Split always GEU again.
1524 2016-10-11 Jeff Law <law@redhat.com>
1526 PR tree-optimization/77424
1527 * tree-ssa-threadupdate.c (thread_through_all_blocks): Remove
1528 dead conditionals. Assert that all e->aux fields are NULL.
1530 2016-10-11 David Malcolm <dmalcolm@redhat.com>
1532 * print-rtl.c (print_rtx): Rename "i" to "idx". Split out the
1533 operand-printing "switch" statement into...
1534 (print_rtx_operand_code_0): ...this new function, ...
1535 (print_rtx_operand_code_e): ...this new function, ...
1536 (print_rtx_operand_codes_E_and_V): ...this new function, ...
1537 (print_rtx_operand_code_i): ...this new function, ...
1538 (print_rtx_operand_code_r): ...this new function, ...
1539 (print_rtx_operand_code_u): ...this new function, ...
1540 (print_rtx_operand): ...and this new function.
1542 2016-10-11 Uros Bizjak <ubizjak@gmail.com>
1544 * config/alpha/alpha-passes.def: New file.
1545 * config/alpha/t-alpha: New file.
1546 * config/alpha/alpha-protos.h (gcc::context, rtl_opt_pass): Declare.
1547 (make_pass_handle_trap_shadows): New prototype.
1548 (make_pass_align_insns): Ditto.
1549 * config/alpha/alpha.c (alpha_option_override): Don't register
1551 * config.gcc (alpha*-*-*) Add alpha/t-alpha to tmake_file.
1553 2016-10-11 Michael Meissner <meissner@linux.vnet.ibm.com>
1556 * config/rs6000/rs6000.c (rs6000_init_builtins): Only create the
1557 distinct __ibm128 IBM extended double type if long doubles are
1558 128-bits and the default format for long double is IEEE 128-bit.
1560 2016-10-11 Richard Biener <rguenther@suse.de>
1562 * dwarf2out.c (DEBUG_STR_OFFSETS_SECTION): Remove conditional.
1563 (init_sections_and_labels): Use DEBUG_DWO_STR_OFFSETS_SECTION.
1564 (verify_die): New function.
1565 (dwarf2out_finish): Call it.
1566 (output_line_info): Handle case of -gsplit-dwarf without
1567 DWARF2_ASM_LINE_DEBUG_INFO.
1569 2016-10-11 Richard Biener <rguenther@suse.de>
1572 * gimple-low.c (lower_gimple_bind): Handle arbitrary common
1573 sub-chains of BLOCK_VARS and gimple_bind_vars.
1575 2016-10-11 Venkataramanan Kumar <Venkataramanan.kumar@amd.com>
1577 * config/i386/znver1.md : Fix imov/imovx load type reservations.
1579 2016-10-11 Eric Botcazou <ebotcazou@adacore.com>
1581 * config/sparc/sparc.opt (msubxc): New option.
1582 * doc/invoke.texi (SPARC options): Document it and tidy up.
1583 * doc/tm.texi.in (Condition Codes): Adjust SPARC example.
1584 * doc/tm.texi: Regenerate.
1585 * config/sparc/sparc-modes.def (CC_NOOV): Rename into...
1587 (CCX_NOOV): Rename into...
1591 * config/sparc/predicates.m (fcc_register_operand): Simplify.
1592 (fcc0_register_operand): Likewise.
1593 (icc_register_operand): New.
1594 (icc_or_fcc_register_operand): Simplify.
1595 (nz_comparison_operator): New.
1596 (c_comparison_operator): Likewise.
1597 (noov_compare_operator): Rename into...
1598 (icc_comparison_operator): ...this. Use above predicates.
1599 (noov_compare64_operator): Rename into...
1600 (v9_comparison_operator): ...this and tidy up.
1601 (fcc_comparison_operator): New.
1602 (icc_or_fcc_comparison_operator): Likewise.
1603 (v9_register_compare_operator): Rename info...
1604 (v9_register_comparison_operator): ...this.
1605 * config/sparc/sparc.c (TARGET_FIXED_CONDITION_CODE_REGS): Define.
1606 (sparc_option_override): Remove redundant VIS masks and add MASK_SUBXC
1608 (sparc_fixed_condition_code_regs): New function.
1609 (select_cc_mode): Remove ATTRIBUTE_UNUSED. Adjust for CCNZ/CCXNZ
1610 renaming and add support for CCC/CCXC.
1611 (output_cbranch): Likewise.
1612 (sparc_print_operand): Likewise.
1613 (gen_v9_scc): Remove obsolete assertion.
1614 (emit_scc_insn): Emit RTL directly for EQ and NE. Add direct support
1615 for EQ in DImode if TARGET_SUBXC. Remove test on TARGET_VIS3 for GEU.
1616 (output_cbcond): Remove bogus handling of CC modes.
1617 (sparc_register_move_cost): Return 100 for NO_REGS.
1618 * config/sparc/sparc.md (W): New mode iterator.
1619 (length): Adjust for noov_compare64_operator renaming.
1620 (cmpsi_sne): New instruction.
1621 (cmpdi_sne): Likewise.
1622 (seqdi_special): Delete.
1623 (seqdi_special): Likewise.
1624 (snesi<P:mode>_special): Likewise.
1625 (snedi_special): Likewise.
1626 (snedi_special_vis3): Likewise.
1627 (snesi patterns): Use W iterator.
1628 (snedi patterns): Likewise. Add TARGET_SUBXC patterns.
1629 (sltu patterns): Likewise.
1630 (sgeu patterns): Likewise.
1631 (scc splitter): Do not split GEU in DImode if TARGET_SUBXC.
1632 (normal_branch): Use icc_comparison_operator predicate.
1633 (inverted_branch): Likewise.
1634 (cbcond_sp32): Use comparison_operator predicate.
1635 (cbcond_sp64): Likewise.
1636 (normal_int_branch_sp64): Adjust for renaming
1637 (inverted_int_branch_sp64): Likewise.
1638 (mov<I:mode>_cc_reg_sp64): Likewise.
1639 (movsf_cc_reg_sp6): Likewise.
1640 (movdf_cc_reg_sp64): Likewise.
1641 (movtf_cc_reg_hq_sp64): Likewise.
1642 (movtf_cc_reg_sp64): Likewise.
1643 (mov<I:mode>_cc_v9): Use icc_or_fcc_comparison_operator predicate.
1644 (movsf_cc_v9): Likewise.
1645 (movdf_cc_v9): Likewise.
1646 (movtf_cc_hq_v9): Likewise.
1647 (movtf_cc_v9): Likewise.
1648 (adddi3): Call gen_adddi3_sp32.
1649 (adddi3_insn_sp32): Rename to...
1650 (adddi3_sp32): ...this. Accept only register_operand as operand #1
1651 and use CCCmode for the carry.
1652 (addx_extend_sp32): Use CCCmode for the carry.
1653 (addx_extend_sp64): Delete.
1654 (adddi3_extend_sp32): Use CCCmode for the carry.
1655 (cmp_plus patterns): Use CCNZ/CCXNZ mode and add C variants.
1656 (subdi3): Call gen_subdi3_sp32.
1657 (subdi3_insn_sp32): Rename to...
1658 (subdi3_sp32): ...this and use CCmode for the carry.
1659 (subx_extend_sp32): Use CCCmode for the carry.
1660 (subx_extend_sp64): Delete.
1661 (subdi3_extend_sp32): Use CCmode for the carry.
1662 (cmp_minus patterns): Use CCNZ/CCXNZ mode and add C variants.
1663 (negdi3): Call gen_negdi3_sp32.
1664 (negdi3_sp32): Use CCCmode for the carry.
1665 (cmp_neg patterns): Use CCNZ/CCXNZ mode and add C variants.
1666 (cmp_nz_ashift_1): Use CCNZ mode.
1667 (cmp_nz_set_ashift_1): Likewise.
1668 (ctrapsi4): Use comparison_operator predicate.
1669 (ctrapdi4): Likewise.
1670 (trapsi_insn): Use icc_comparison_operator predicate.
1671 (trapdi_insn): Likewise.
1672 (edge8 patterns): Use CCNZmode.
1673 (edge16 patterns): Likewise.
1674 (edge32 patterns): Likewise.
1676 2016-10-11 Eric Botcazou <ebotcazou@adacore.com>
1678 * config/visium/visium-modes.def (CC_NOOV): Rename into...
1680 (CC_BTST): Rename into...
1682 * config/visium/predicates.md (real_add_operand): New.
1683 (visium_btst_operator): Rename into...
1684 (visium_equality_comparison_operator): ...this.
1685 (visium_noov_operator): Rename into...
1686 (visium_nz_comparison_operator): ...this.
1687 (visium_c_comparison_operator): New.
1688 (visium_branch_operator): Adjust and deal with all CC modes.
1689 * config/visium/visium.c (visium_adjust_cost): Adjust.
1690 (visium_split_double_add): Use the *_set_carry patterns.
1691 (visium_select_cc_mode): Add support for CCC mode and adjust.
1692 (output_cbranch): Adjust and use the carry-based operators for
1693 floating-point comparisons.
1694 * config/visium/visium.md (flags_subst_arith): Adjust.
1695 (addsi3_insn_set_carry): New instruction.
1696 (subsi3_insn_set_carry): Likewise.
1697 (negsi2_insn_set_carry): Likewise.
1699 (cmp<mode>_sne): Likewise.
1700 (cbranch<mode>4): Use ordered_comparison_operator.
1701 (cbranch<mode>4_insn): Likewise.
1702 (cbranchsi4_btst_insn): Adjust.
1704 2016-10-11 Tom de Vries <tom@codesourcery.com>
1707 * builtins.c (std_canonical_va_list_type): Remove RECORD_TYPE
1710 2016-10-11 Eric Botcazou <ebotcazou@adacore.com>
1712 * tree.h (build_complex_type): Add second parameter with default.
1713 * tree.c (build_complex_type): Add NAMED second parameter and adjust
1714 recursive call. Create a TYPE_DECL only if NAMED is true.
1715 (build_common_tree_nodes): Pass true in calls to build_complex_type.
1717 2016-10-11 Georg-Johann Lay <avr@gjlay.de>
1719 New avr-passes.def to register AVR specific passes.
1721 * config/avr/avr-passes.def: New file.
1722 * config/avr/t-avr (PASSES_EXTRA): Add avr-passes.def.
1723 * config/avr/avr-protos.h (gcc::context, rtl_opt_pass): Declare.
1724 (make_avr_pass_recompute_note): New proto.
1725 * config/avr/avr.c (make_avr_pass_recompute_notes): New function.
1726 (avr_pass_recompute_notes): Use anonymous namespace.
1727 (avr_register_passes): Remove function...
1728 (avr_option_override): ...and its call.
1730 2016-10-11 Robert Suchanek <robert.suchanek@imgtec.com>
1732 * config/mips/mips-cpus.def: Replace PTF_AVOID_BRANCHLIKELY with
1733 PTF_AVOID_BRANCHLIKELY_ALWAYS for generic architecture and with
1734 PTF_AVOID_BRANCHLIKELY_SPEED for others.
1735 (mips2, mips3, mips4): Add PTF_AVOID_BRANCHLIKELY_SIZE to tune
1737 * config/mips/mips.c (mips_option_override): Enable the branch
1738 likely depending on the tune flags and optimization level.
1739 * config/mips/mips.h (PTF_AVOID_BRANCHLIKELY): Remove.
1740 (PTF_AVOID_BRANCHLIKELY_SPEED): Define.
1741 (PTF_AVOID_BRANCHLIKELY_SIZE): Likewise.
1742 (PTF_AVOID_BRANCHLIKELY_ALWAYS): Likewise.
1744 2016-10-11 Richard Biener <rguenther@suse.de>
1746 * lto-streamer-out.c (collect_block_tree_leafs): New helper.
1747 (output_function): Properly stream the whole block tree.
1748 * lto-streamer-in.c (input_function): Likewise.
1750 2016-10-11 Marek Polacek <polacek@redhat.com>
1752 * Makefile.in (C_COMMON_OBJS): Add c-family/c-warn.o.
1754 2016-10-11 Kugan Vivekanandarajah <kuganv@linaro.org>
1756 * tree-vrp.c (evrp_dom_walker::try_add_new_range): New.
1757 (evrp_dom_walker::before_dom_children): Infer and push new value
1758 ranges for x in y < x.
1760 2016-10-10 Joseph Myers <joseph@codesourcery.com>
1763 * config/ia64/ia64.c (ia64_libgcc_floating_mode_supported_p)
1764 (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
1765 * config/ia64/elf.h (IA64_NO_LIBGCC_TFMODE): Likewise.
1766 * config/ia64/freebsd.h (IA64_NO_LIBGCC_TFMODE): Likewise.
1767 * config/ia64/vms.h (IA64_NO_LIBGCC_XFMODE)
1768 (IA64_NO_LIBGCC_TFMODE): Likewise.
1770 2016-10-11 Kugan Vivekanandarajah <kuganv@linaro.org>
1772 * tree-vrp.c (vrp_intersect_ranges_1): Allocate bitmap before
1775 2016-10-10 Andreas Tobler <andreast@gcc.gnu.org>
1777 * config.gcc: Add aarch64-*-freebsd* support.
1778 * config.host: Likewise.
1779 * config/aarch64/aarch64-freebsd.h: New file.
1780 * config/aarch64/t-aarch64-freebsd: Ditto.
1782 2016-10-10 Jeff Law <law@redhat.com>
1784 PR tree-optimization/71947
1785 * tree-ssa-dom.c (cprop_into_stmt): Avoid replacing A with B, then
1786 B with A within a single statement.
1788 2016-10-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
1790 PR tree-optimization/77824
1791 * gimple-ssa-strength-reduction.c (stmt_cost): Explicitly return
1792 zero cost for copies.
1793 (find_candidates_dom_walker::before_dom_children): Replace
1794 MODIFY_EXPR with SSA_NAME.
1795 (replace_mult_candidate): Likewise.
1796 (replace_profitable_candidates): Likewise.
1798 2016-10-10 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
1800 * config/s390/s390.h: Wrap more macros args in brackets and fix
1802 2016-10-10 Georg-Johann Lay <avr@gjlay.de>
1804 * config/avr/gen-avr-mmcu-texi.c (string.h): Include.
1806 2016-10-10 Andreas Schwab <schwab@suse.de>
1809 * config/ia64/ia64.md ("doloop_end"): Reject if mode of loop
1810 pseudo is not DImode.
1812 2016-10-10 Claudiu Zissulescu <claziss@synopsys.com>
1814 * common/config/arc/arc-common.c (arc_option_optimization_table):
1815 Remove compact casesi option.
1816 * config/arc/arc.c (arc_override_options): Use compact casesi
1817 option only for pre-ARCv2 cores.
1818 * doc/invoke.texi (mcompact-casesi): Update text.
1820 2016-10-09 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
1822 * config/rs6000/rs6000.h (TARGET_EFFICIENT_OVERLAPPING_UNALIGNED):
1823 Add macro to say we can efficiently handle overlapping unaligned
1825 * config/rs6000/rs6000.c (expand_block_compare): Avoid generating
1826 poor code for processors older than p8.
1828 2016-10-09 Eric Botcazou <ebotcazou@adacore.com>
1830 * gen-pass-instances.awk: Remove GNUism.
1832 2016-10-09 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
1834 * ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to
1835 NULL of (*ipcp_transformations)][node->uid].
1837 2016-10-09 John David Anglin <danglin@gcc.gnu.org>
1839 * config/pa/pa.h (BIGGEST_ALIGNMENT): Adjust comment.
1840 (MALLOC_ABI_ALIGNMENT): Define.
1842 2016-10-09 Jakub Jelinek <jakub@redhat.com>
1844 * tree-ssa.c (target_for_debug_bind, verify_phi_args,
1845 ssa_undefined_value_p, maybe_optimize_var): Use VAR_P and/or
1846 VAR_OR_FUNCTION_DECL_P macros.
1847 * tree-chkp.c (chkp_register_var_initializer, chkp_make_static_bounds,
1848 chkp_get_bounds_for_decl_addr, chkp_parse_array_and_component_ref,
1849 chkp_find_bounds_1): Likewise.
1850 * ipa-polymorphic-call.c (decl_maybe_in_construction_p): Likewise.
1851 * hsa-gen.c (get_symbol_for_decl): Likewise.
1852 * cgraphunit.c (check_global_declaration, analyze_functions,
1853 handle_alias_pairs, thunk_adjust, cgraph_node::expand_thunk):
1855 * gimple-fold.c (can_refer_decl_in_current_unit_p,
1856 canonicalize_constructor_val, gimple_get_virt_method_for_vtable):
1858 * tree.c (set_decl_section_name, copy_node_stat,
1859 need_assembler_name_p, free_lang_data_in_decl, find_decls_types_r,
1860 merge_dllimport_decl_attributes, handle_dll_attribute,
1861 decl_init_priority_insert, auto_var_in_fn_p, array_at_struct_end_p,
1862 verify_type): Likewise.
1863 * gimple-ssa-isolate-paths.c (find_implicit_erroneous_behavior,
1864 find_explicit_erroneous_behavior): Likewise.
1865 * sdbout.c (sdbout_toplevel_data, sdbout_late_global_decl): Likewise.
1866 * ipa.c (process_references): Likewise.
1867 * tree-chkp-opt.c (chkp_get_check_result): Likewise.
1868 * varasm.c (get_block_for_decl, use_blocks_for_decl_p, make_decl_rtl,
1869 notice_global_symbol, assemble_variable, mark_decl_referenced,
1870 build_constant_desc, output_constant_def_contents, do_assemble_alias,
1871 make_decl_one_only, default_section_type_flags,
1872 categorize_decl_for_section, default_encode_section_info): Likewise.
1873 * trans-mem.c (requires_barrier): Likewise.
1874 * gimple-expr.c (mark_addressable): Likewise.
1875 * cfgexpand.c (add_scope_conflicts_1, expand_one_var,
1876 expand_used_vars_for_block, clear_tree_used, stack_protect_decl_p,
1877 expand_debug_expr): Likewise.
1878 * tree-dump.c (dequeue_and_dump): Likewise.
1879 * ubsan.c (instrument_bool_enum_load): Likewise.
1880 * tree-pretty-print.c (print_declaration): Likewise.
1881 * simplify-rtx.c (delegitimize_mem_from_attrs): Likewise.
1882 * tree-ssa-uninit.c (warn_uninitialized_vars): Likewise.
1883 * asan.c (asan_protect_global, instrument_derefs): Likewise.
1884 * tree-into-ssa.c (rewrite_stmt, maybe_register_def,
1885 pass_build_ssa::execute): Likewise.
1886 * var-tracking.c (var_debug_decl, track_expr_p): Likewise.
1887 * tree-ssa-loop-ivopts.c (force_expr_to_var_cost, split_address_cost):
1889 * ipa-split.c (test_nonssa_use, consider_split, mark_nonssa_use):
1891 * tree-inline.c (insert_debug_decl_map, remap_ssa_name,
1892 can_be_nonlocal, remap_decls, copy_debug_stmt,
1893 initialize_inlined_parameters, add_local_variables,
1894 reset_debug_binding, replace_locals_op): Likewise.
1895 * dse.c (can_escape): Likewise.
1896 * ipa-devirt.c (compare_virtual_tables, referenced_from_vtable_p):
1898 * tree-diagnostic.c (default_tree_printer): Likewise.
1899 * tree-streamer-in.c (unpack_ts_decl_common_value_fields,
1900 unpack_ts_decl_with_vis_value_fields,
1901 lto_input_ts_decl_common_tree_pointers): Likewise.
1902 * builtins.c (builtin_save_expr, fold_builtin_expect,
1903 readonly_data_expr): Likewise.
1904 * tree-ssa-structalias.c (new_var_info, get_constraint_for_ssa_var,
1905 create_variable_info_for, set_uids_in_ptset, visit_loadstore):
1907 * gimple-streamer-out.c (output_gimple_stmt): Likewise.
1908 * gimplify.c (force_constant_size, gimplify_bind_expr,
1909 gimplify_decl_expr, gimplify_var_or_parm_decl,
1910 gimplify_compound_lval, gimplify_init_constructor,
1911 gimplify_modify_expr, gimplify_asm_expr, gimplify_oacc_declare,
1912 gimplify_type_sizes): Likewise.
1913 * cgraphbuild.c (record_reference, record_type_list, mark_address,
1914 mark_load, mark_store, pass_build_cgraph_edges::execute): Likewise.
1915 * tree-ssa-live.c (mark_all_vars_used_1, remove_unused_scope_block_p,
1916 remove_unused_locals): Likewise.
1917 * tree-ssa-alias.c (ptr_deref_may_alias_decl_p, ptrs_compare_unequal,
1918 ref_maybe_used_by_call_p_1, call_may_clobber_ref_p_1): Likewise.
1919 * function.c (instantiate_expr, instantiate_decls_1,
1920 setjmp_vars_warning, add_local_decl): Likewise.
1921 * alias.c (ao_ref_from_mem, get_alias_set, compare_base_symbol_refs):
1923 * tree-stdarg.c (find_va_list_reference, va_list_counter_struct_op,
1924 va_list_ptr_read, va_list_ptr_write, check_all_va_list_escapes,
1925 optimize_va_list_gpr_fpr_size): Likewise.
1926 * tree-nrv.c (pass_nrv::execute): Likewise.
1927 * tsan.c (instrument_expr): Likewise.
1928 * tree-ssa-dce.c (remove_dead_stmt): Likewise.
1929 * vtable-verify.c (verify_bb_vtables): Likewise.
1930 * tree-dfa.c (ssa_default_def, set_ssa_default_def,
1931 get_ref_base_and_extent): Likewise.
1932 * toplev.c (wrapup_global_declaration_1, wrapup_global_declaration_2):
1934 * tree-sra.c (static bool constant_decl_p, find_var_candidates,
1935 analyze_all_variable_accesses): Likewise.
1936 * tree-nested.c (get_nonlocal_debug_decl,
1937 convert_nonlocal_omp_clauses, note_nonlocal_vla_type,
1938 note_nonlocal_block_vlas, convert_nonlocal_reference_stmt,
1939 get_local_debug_decl, convert_local_omp_clauses,
1940 convert_local_reference_stmt, nesting_copy_decl, remap_vla_decls):
1942 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Likewise.
1943 * stmt.c (decl_overlaps_hard_reg_set_p): Likewise.
1944 * dbxout.c (dbxout_late_global_decl, dbxout_type_fields,
1945 dbxout_symbol, dbxout_common_check): Likewise.
1946 * expr.c (expand_assignment, expand_expr_real_2, expand_expr_real_1,
1947 string_constant): Likewise.
1948 * hsa.c (hsa_get_declaration_name): Likewise.
1949 * passes.c (rest_of_decl_compilation): Likewise.
1950 * tree-ssanames.c (make_ssa_name_fn): Likewise.
1951 * tree-streamer-out.c (pack_ts_decl_common_value_fields,
1952 pack_ts_decl_with_vis_value_fields,
1953 write_ts_decl_common_tree_pointers): Likewise.
1954 * stor-layout.c (place_field): Likewise.
1955 * symtab.c (symtab_node::maybe_create_reference,
1956 symtab_node::verify_base, symtab_node::make_decl_local,
1957 symtab_node::copy_visibility_from,
1958 symtab_node::can_increase_alignment_p): Likewise.
1959 * dwarf2out.c (add_var_loc_to_decl, tls_mem_loc_descriptor,
1960 decl_by_reference_p, reference_to_unused, rtl_for_decl_location,
1961 fortran_common, add_location_or_const_value_attribute,
1962 add_scalar_info, add_linkage_name, set_block_abstract_flags,
1963 local_function_static, gen_variable_die, dwarf2out_late_global_decl,
1964 optimize_one_addr_into_implicit_ptr,
1965 optimize_location_into_implicit_ptr): Likewise.
1966 * gimple-low.c (record_vars_into): Likewise.
1967 * ipa-visibility.c (update_vtable_references): Likewise.
1968 * tree-ssa-address.c (fixed_address_object_p, copy_ref_info):
1970 * lto-streamer-out.c (tree_is_indexable, get_symbol_initial_value,
1971 DFS::DFS_write_tree_body, write_symbol): Likewise.
1972 * langhooks.c (lhd_warn_unused_global_decl,
1973 lhd_set_decl_assembler_name): Likewise.
1974 * attribs.c (decl_attributes): Likewise.
1975 * except.c (output_ttype): Likewise.
1976 * varpool.c (varpool_node::get_create, ctor_for_folding,
1977 varpool_node::assemble_decl, varpool_node::create_alias): Likewise.
1978 * fold-const.c (fold_unary_loc): Likewise.
1979 * ipa-prop.c (ipa_compute_jump_functions_for_edge,
1980 ipa_find_agg_cst_from_init): Likewise.
1981 * omp-low.c (expand_omp_regimplify_p, expand_omp_taskreg,
1982 expand_omp_target, lower_omp_regimplify_p,
1983 grid_reg_assignment_to_local_var_p, grid_remap_prebody_decls,
1984 find_link_var_op): Likewise.
1985 * tree-chrec.c (chrec_contains_symbols): Likewise.
1986 * tree-cfg.c (verify_address, verify_expr, verify_expr_location_1,
1987 gimple_duplicate_bb, move_stmt_op, replace_block_vars_by_duplicates,
1988 execute_fixup_cfg): Likewise.
1990 PR tree-optimization/77901
1991 * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Only optimize
1992 if ranges[i].exp is SSA_NAME when looking for >= and only when
1993 ranges[i].exp is NULL or SSA_NAME when looking for the other
1996 2016-10-09 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
1998 * ipa-cp.c (ipcp_alignment_lattice): Remove.
1999 (ipcp_param_lattices): Remove field alignment.
2000 (print_all_lattices): Remove call to ipcp_alignment_lattice::print.
2001 (set_all_contains_variable): Remove call to
2002 ipcp_alignment_lattice::set_to_bottom.
2003 (initialize_node_lattices): Likewise.
2004 (propagate_alignment_accross_jump_function): Remove.
2005 (propagate_constants_accross_call): Remove call to
2006 propagate_alignment_accross_jump_function.
2007 (ipcp_store_alignment_results): Remove.
2008 (ipcp_driver): Remove call to ipcp_store_alignment_results.
2009 (propagate_bits_accross_jump_function): Handle ancestor jump function.
2010 * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Remove
2011 pretty-printing of alignment jump function.
2012 (ipa_set_jf_unknown): Remove assignment to jfunc->alignment.known.
2013 (ipa_compute_jump_functions_for_edge): Adjust ipa_bits jump function for
2014 alignments and remove computing ipa_alignment jump function.
2015 (ipa_node_params_t::duplicate): Remove copying of src_trans->alignments.
2016 (ipa_write_jump_functions): Remove streaming for ipa_alignment.
2017 (ipa_read_jump_function): Remove reading of ipa_alignment.
2018 (write_ipcp_transformation_info): Remove streaming for alignment
2019 propagation summary.
2020 (read_ipcp_transformation_info): Remove reading of alignment
2021 propagation summary.
2022 (ipcp_update_alignments): Remove.
2023 (ipcp_update_bits): Adjust to set alignment for parameters of pointer
2025 (ipcp_transform_function): Remove call to ipcp_update_alignments()
2026 and remove assignment to (*ipcp_transformations)[node->uid].alignments.
2027 * ipa-prop.h (ipa_alignment): Remove.
2028 (ipa_jump_func): Remove field alignment.
2029 (ipcp_transformation_summary): Remove field alignments.
2030 * doc/invoke.texi: Mark fipa-cp-alignment as obsolete.
2031 * opts.c (default_options_table): Remove entry for fipa-cp-alignment.
2032 (enable_fdo_optimizations): Remove checking for fipa-cp-alignment.
2034 2016-10-08 Eric Botcazou <ebotcazou@adacore.com>
2036 * config/sparc/sparc.h (FIXED_REGISTERS): Add %icc.
2038 * config/visium/visium.c (visium_expand_int_cstore): Revert latest
2040 (visium_expand_fp_cstore): Likewise.
2042 2016-10-08 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
2044 * diagnostic-core.h (warning_at_rich_loc_n): Declare.
2045 * diagnostic.c (warning_at_rich_loc_n): New function.
2046 (diagnostic_n_impl_richloc): Likewise.
2047 (diagnostic_n_impl): Move most of the function to
2048 diagnostic_n_impl_richloc and call it.
2050 2016-10-08 Jakub Jelinek <jakub@redhat.com>
2052 * gen-pass-instances.awk: Rewritten.
2053 * Makefile.in (pass-instances.def): Depend on $(PASSES_EXTRA), pass
2054 $(PASSES_EXTRA) after passes.def to the script.
2055 * config/i386/t-i386 (PASSES_EXTRA): Add i386-passes.def.
2056 * config/i386/i386-passes.def: New file.
2057 * config/i386/i386-protos.h (make_pass_insert_vzeroupper,
2058 make_pass_stv): Declare.
2059 * config/i386/i386.c (pass_stv::pass_stv): Initialize timode_p to
2061 (pass_stv::gate): Depending on timode_p member require TARGET_64BIT
2063 (pass_stv::clone, pass_stv::set_pass_param): New methods.
2064 (pass_stv::timode_p): New non-static data member.
2065 (ix86_option_override): Don't register passes here.
2067 * doc/invoke.texi: Document accepting Else, fallthrough.
2069 * doc/invoke.texi (-Wimplicit-fallthrough): Document FALLTHRU comment
2072 * doc/invoke.texi (-Wimplicit-fallthrough): Document the accepted
2073 FALLTHRU comment styles.
2075 2016-10-07 Andrew Pinski <apinski@cavium.com>
2077 * config/aarch64/aarch64-arches.def (AARCH64_ARCH): #undef at the end.
2078 * config/aarch64/aarch64-cores.def (AARCH64_CORE): Likewise.
2079 * config/aarch64/aarch64-fusion-pairs.def (AARCH64_FUSION_PAIR):
2081 * config/aarch64/aarch64-option-extensions.def (AARCH64_OPT_EXTENSION):
2083 * config/aarch64/aarch64-tuning-flags.def (AARCH64_EXTRA_TUNING_OPTION):
2085 * config/aarch64/aarch64-opts.h (AARCH64_CORE): Don't #undef here.
2086 (AARCH64_ARCH): Likewise.
2087 * common/config/aarch64/aarch64-common.c (AARCH64_OPT_EXTENSION):
2089 (AARCH64_CORE): Likewise.
2090 (AARCH64_ARCH): Likewise.
2091 * config/aarch64/aarch64-protos.h (AARCH64_FUSION_PAIR): Likewise.
2092 (AARCH64_EXTRA_TUNING_OPTION): Likewise.
2093 * config/aarch64/aarch64.c (AARCH64_FUION_PAIR): Likewise.
2094 (AARCH64_EXTRA_TUNING_OPTION): Likewise.
2095 (AARCH64_ARCH): Likewise.
2096 (AARCH64_CORE): Likewise.
2097 * config/aarch64/aarch64.h (AARCH64_CORE): Likewise.
2098 * config/aarch64/driver-aarch64.c (AARCH64_OPT_EXTENSION): Likewise.
2099 (AARCH64_CORE): Likewise.
2100 (AARCH64_ARCH): Likewise.
2102 2016-10-06 Michael Meissner <meissner@linux.vnet.ibm.com>
2104 * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Split
2105 -mfloat128 into -mfloat128-type that enables the IEEE 128-bit
2106 floating point type infrastructre, and -mfloat128 that enables the
2107 keyword. Define __FLOAT128__ if -mfloat128, and __FLOAT128_TYPE__
2108 if -mfloat128-type. Define __ibm128 to be long double by default.
2109 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Print whether
2110 the IEEE 128-bit floating point type infrastructure should
2111 automatically be enabled.
2112 (rs6000_init_hard_regno_mode_ok): Switch to use -mfloat128-type
2113 instead of -mfloat128 to enable KFmode.
2114 (rs6000_option_override_internal): Split the option -mfloat128
2115 into -mfloat128-type and -mfloat128. On Linux PowerPC 64-bit
2116 systems, automatically set -mfloat128-type, but don't enable it on
2117 other operating systems. Move setting the long double size and
2118 IEEE quad support before the IEEE 128-bit floating point changes.
2119 (rs6000_init_builtins): Do not create a unique type for __ibm128
2120 if long double is IBM extended double, instead rely on __ibm128
2121 being defined as 'long double'. If -mfloat128-type and not
2122 -mfloat128, create the KFmode type with an undocumented __ieee128
2124 (rs6000_init_libfuncs): Use -mfloat128-type instead of
2125 -mfloat128 for tests about the types, but keep tests for
2126 -mfloat128 to enable the keyword support.
2127 (rs6000_complex_function_value): Likewise.
2128 (rs6000_scalar_mode_supported_p): Likewise.
2129 (rs6000_floatn_mode): Likewise.
2130 (rs6000_c_mode_for_suffix): Likewise.
2131 (rs6000_opt_masks): Add -mfloat128-type.
2132 * config/rs6000/rs6000-cpus.def (POWERPC_MASKS): Add support for
2133 -mfloat128-type being split from -mfloat128. Add
2134 -mfloat128-hardware, which was missing.
2135 * config/rs6000/rs6000.opt (-mfloat128): Split -mfloat128 into
2136 -mfloat128 and -mfloat128-type:
2137 (-mfloat128-type): Likewise.
2138 * config/rs6000/linux64.h (TARGET_FLOAT128_ENABLE_TYPE): Define so
2139 that 64-bit Linux systems with enable -mfloat128-type by default
2141 * config/rs6000/rs6000.h (TARGET_FLOAT128_ENABLE_TYPE): Likewise.
2142 (FLOAT128_VECTOR_P): Switch IEEE 128-bit floating points to use
2143 -mfloat128-type instead of -mfloat128.
2144 (FLOAT128_2REG_P): Likewise.
2145 (MASK_FLOAT128_TYPE): Likewise.
2146 (ALTIVEC_ARG_MAX_RETURN): Likewise.
2147 (RS6000_BTM_FLOAT128): Likewise.
2148 (TARGET_FLOAT128): Poison old identifiers.
2149 (OPTION_MASK_FLOAT128): Likewise.
2150 (MASK_FLOAT128): Likewise.
2151 * config/rs6000/rs6000.md (FP): Likewise.
2152 (FLOAT128): Likewise.
2153 (fix_trunc<mode>di2): Likewise.
2154 (fixuns_trunc<IEEE128:mode><SDI:mode>2): Likewise.
2155 (floatdi<mode>2): Likewise.
2156 (floatuns<SDI:mode><IEEE128:mode>2): Likewise.
2157 (neg<mode>2, FLOAT128 iterator): Likewise.
2158 (abs<mode>2, FLOAT128 iterator): Likewise.
2159 (ieee_128bit_negative_zero): Likewise.
2160 (ieee_128bit_vsx_neg<mode>2): Likewise.
2161 (ieee_128bit_vsx_neg<mode>2_internal): Likewise.
2162 (ieee_128bit_vsx_abs<mode>2): Likewise.
2163 (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
2164 (ieee_128bit_vsx_nabs<mode>2): Likewise.
2165 (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
2166 (extendiftf2): Likewise.
2167 (extendifkf2): Likewise.
2168 (extendtfkf2): Likewise.
2169 (trunciftf2): Likewise.
2170 (truncifkf2): Likewise.
2171 (trunckftf2): Likewise.
2172 (trunctfif2): Likewise.
2173 (extendkftf2): Likewise.
2174 (trunctfkf2): Likewise.
2176 2016-10-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2178 * simplify-rtx.c (simplify_immed_subreg): Zero-initialize tmp array
2179 before merging in bytes to pass down to real_from_target.
2181 2016-10-07 Richard Biener <rguenther@suse.de>
2183 * tree-ssa-propagate.c (replace_phi_args_in): Remove no longer
2185 (substitute_and_fold_dom_walker::before_dom_children):
2186 Substitute and fold before pass specific folding to avoid
2187 feeding that with SSA names that will be later released.
2188 * tree-ssa-ccp.c (get_value_for_expr): Guard for new SSA names
2189 introduced by folding and visited by evaluate_stmt called during
2191 (likely_value): Likewise.
2192 (evaluate_stmt): Likewise.
2193 * tree-vrp.c (simplify_truth_ops_using_ranges): Fold modified stmt.
2194 (simplify_div_or_mod_using_ranges): Likewise.
2195 (simplify_min_or_max_using_ranges): Likewise.
2196 (simplify_abs_using_ranges): Likewise.
2197 (simplify_conversion_using_ranges): Likewise.
2198 (simplify_float_conversion_using_ranges): Likewise.
2199 (simplify_stmt_using_ranges): Likewise.
2201 2016-10-07 Marek Polacek <polacek@redhat.com>
2203 * gimplify.c (should_warn_for_implicit_fallthrough): Check for
2204 FALLTHROUGH_LABEL_P here...
2205 (warn_implicit_fallthrough_r): ...not here.
2207 2016-10-07 Bernd Schmidt <bschmidt@redhat.com>
2209 PR tree-optimization/77880
2210 * expr.c (by_pieces_ninsns): Use unsigned HOST_WIDE_INT where
2213 2016-10-07 Marek Polacek <polacek@redhat.com>
2216 * gimplify.c (last_stmt_in_scope): Add check for FALLTHROUGH ().
2218 2016-10-07 Richard Biener <rguenther@suse.de>
2220 * bitmap.h: Document constraints on bitmap modification while
2223 2016-10-07 Richard Biener <rguenther@suse.de>
2225 * bitmap.c (bitmap_elem_to_freelist): Set indx to -1.
2226 * bitmap.h (bmp_iter_set): When advancing to the next element
2227 check that we didn't remove the current one.
2228 (bmp_iter_and): Likewise.
2229 (bmp_iter_and_compl): Likewise.
2230 * tree-ssa.c (release_defs_bitset): Do not remove worklist bit
2231 we currently iterate on but keep a one-level queue.
2232 * sched-deps.c (remove_from_deps): Do not clear current bit
2233 but keep a one-level queue.
2235 2016-10-07 Jakub Jelinek <jakub@redhat.com>
2237 PR tree-optimization/77664
2238 * tree-ssa-reassoc.c (update_range_test): Also clear low and high
2239 for the other ranges.
2240 (optimize_range_tests_diff): Fix up formatting.
2241 (optimize_range_tests_var_bound): New function.
2242 (optimize_range_tests): Use it.
2244 2016-10-07 Martin Liska <mliska@suse.cz>
2246 * coverage.c (build_gcov_exit_decl): Fix priority what
2247 should be really 99.
2249 2016-10-07 Richard Biener <rguenther@suse.de>
2251 * gimple-low.c (lower_gimple_bind): Clear DECL_CHAIN of
2252 vars in gimple_bind_vars but not in BLOCK_VARS.
2254 2016-10-07 Richard Biener <rguenther@suse.de>
2256 PR tree-optimization/77879
2257 * tree-ssa-structalias.c (handle_const_call): Properly handle
2259 (handle_pure_call): Likewise.
2261 2016-10-06 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
2263 * config/rs6000/rs6000.c (rs6000_elf_asm_out_constructor)
2264 (rs6000_elf_asm_out_destructor): increase size of buf to avoid
2267 2016-10-06 Andrew Pinski <apinski@cavium.com>
2269 * config/aarch64/aarch64-cores.def: Add a comment before each
2272 2016-10-06 Kugan Vivekanandarajah <kuganv@linaro.org>
2274 PR tree-optimization/77862
2275 * tree-vrp.c (add_equivalence): Use get_value_range so that
2276 num_vr_values is checked before accessing vr_values.
2278 2016-10-06 Kugan Vivekanandarajah <kuganv@linaro.org>
2280 * tree-vrp.c (evrp_dom_walker::before_dom_children): Handle
2283 2016-10-05 Jeff Law <law@redhat.com>
2285 PR tree-optimization/71661
2286 * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Handle case when
2287 removal of a forwarder exposes a new natural loop.
2289 2016-10-06 Uros Bizjak <ubizjak@gmail.com>
2291 * config/i386/sse.md (andnot<mode>3): Add FALLTHRU comments.
2292 Introduce ssesuffix variable.
2293 (<mask_codefor><code><mode>3<mask_name>): Ditto.
2294 (*<code><mode>3): Ditto.
2296 2016-10-06 Jan Hubicka <hubicka@ucw.cz>
2298 * postreload.c (reload_cse_simplify): Skip also USE when detecting
2301 2016-10-06 Richard Biener <rguenther@suse.de>
2303 PR tree-optimization/77855
2304 * tree-ssa-pre.c (prune_clobbered_mems): Queue exprs to remove
2305 instead of removing the current item while iterating over the set
2308 2016-10-06 James Clarke <jrtc27@jrtc27.com>
2309 Eric Botcazou <ebotcazou@adacore.com>
2312 * config/sparc/sparc.c (classify_data_t): Remove int_regs field.
2313 (classify_registers): Don't set it
2314 (function_arg_slotno): Don't initialize and test it. Tidy up.
2316 2016-10-06 Richard Biener <rguenther@suse.de>
2318 PR tree-optimization/77839
2319 * tree-ssa-sccvn.c (set_ssa_val_to): Forbid value -> constant value
2322 2016-10-06 Martin Liska <mliska@suse.cz>
2324 * gcc.c: Set -fprofile-update=atomic when profiling is
2325 enabled and -pthread is set. Warn when one combines
2326 -pthread and -fprofile-update=single for an app using
2329 2016-10-06 Martin Liska <mliska@suse.cz>
2332 * expmed.h (mul_highpart_cost_ptr): Add an gcc_assert.
2333 * gimple-ssa-strength-reduction.c (slsr_process_cast):
2334 Initialize a pointer to NULL.
2335 (slsr_process_copy): Likewise.
2336 * input.c (location_get_source_line): Likewise.
2337 * tree-ssa-ccp.c (optimize_atomic_bit_test_and): Likewise.
2339 2016-10-05 Andrew Senkevich <andrew.senkevich@intel.com>
2341 * common/config/i386/i386-common.c (OPTION_MASK_ISA_PCOMMIT_UNSET,
2342 OPTION_MASK_ISA_PCOMMIT_SET): Deleted definitions.
2343 (ix86_handle_option): Deleted handle of OPT_mpcommit.
2344 * config.gcc: Deleted pcommitintrin.h
2345 * config/i386/pcommitintrin.h: Deleted file.
2346 * config/i386/cpuid.h (bit_PCOMMIT): Deleted.
2347 * config/i386/driver-i386.c (host_detect_local_cpu): Deleted pcommit
2349 * config/i386/i386-c.c (ix86_target_macros_internal): Deleted define
2351 * config/i386/i386.c (ix86_target_string): Deleted -mpcommit.
2352 (PTA_PCOMMIT): Deleted define.
2353 (ix86_option_override_internal): Deleted handle of option.
2354 (ix86_valid_target_attribute_inner_p): Deleted pcommit.
2355 * config/i386/i386-builtin.def (IX86_BUILTIN_PCOMMIT,
2356 __builtin_ia32_pcommit): Deleted.
2357 * config/i386/i386.h (TARGET_PCOMMIT, TARGET_PCOMMIT_P): Deleted.
2358 * config/i386/i386.md (unspecv): Deleted UNSPECV_PCOMMIT.
2359 (pcommit): Deleted instruction.
2360 * config/i386/i386.opt: Mention -mpcommit deprecation.
2361 * config/i386/x86intrin.h: Deleted inclusion of pcommitintrin.h.
2363 2016-10-05 Uros Bizjak <ubizjak@gmail.com>
2366 * config/i386/sse.md (<mask_codefor><code><mode>3<mask_name>):
2367 Remove wrong assert.
2368 (<floatsuffix>float<sseintvecmodelower><mode>2<mask_name><round_name>:
2369 Use <round_constraint> as operand 1 constraint.
2371 2016-10-05 Jakub Jelinek <jakub@redhat.com>
2374 * ubsan.c (ubsan_create_data): Call initialize_sanitizer_builtins here.
2375 (ubsan_instrument_float_cast): And not here.
2378 * ubsan.c (ubsan_ids): New GTY(()) array.
2379 (ubsan_type_descriptor, ubsan_create_data): Use ubsan_ids
2380 instead of static local counters.
2382 2016-10-05 Martin Sebor <msebor@redhat.com>
2385 * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Define macro.
2386 * config/linux.c (gnu_libc_printf_pointer_format): Remove.
2387 * targhooks.c [DEFAULT_LIBC == LIBC_UCLIBC) && SINGLE_LIBC]
2388 (default_printf_pointer_format): Define function.
2389 * targhooks.c (linux_printf_pointer_format): Define new function.
2390 * targhooks.h (linux_printf_pointer_format): Declare.
2391 (gnu_libc_printf_pointer_format): Remove declaration.
2393 2016-10-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2395 * fold-const.c (native_encode_real): Fix logic for selecting offset
2396 to write to when BYTES_BIG_ENDIAN.
2398 2016-10-05 Wilco Dijkstra <wdijkstr@arm.com>
2400 * builtins.c (fold_builtin_strchr): Remove function.
2401 (fold_builtin_strrchr): Likewise.
2402 (fold_builtin2): Remove strchr, index, strrchr, rindex cases.
2403 * gimple-fold.c (target_char_cst_p): New function.
2404 (gimple_fold_builtin_strchr) Add more foldings.
2405 (gimple_fold_builtin): Add index, strrchr, rindex cases.
2407 2016-10-05 Richard Biener <rguenther@suse.de>
2410 * genmatch.c (capture_info::walk_c_expr): Diagnose unknown
2411 capture ids in c-exprs.
2413 2016-10-05 Richard Biener <rguenther@suse.de>
2416 * genmatch.c (dt_operand::gen_match_op): Amend operand_equal_p
2417 with types_match for GIMPLE code gen to handle type mismatched
2419 (dt_operand::gen): Adjust.
2420 * match.pd ((X /[ex] A) * A -> X): Properly handle converted
2423 2016-10-05 Richard Biener <rguenther@suse.de>
2425 * match.pd (copysign(x, CST) -> [-]abs (x)): New pattern.
2427 2016-10-05 Richard Biener <rguenther@suse.de>
2430 * genmatch.c (parser::parse_c_expr): Handle premature EOF.
2432 2016-10-05 Pierre-Marie de Rodat <derodat@adacore.com>
2434 * dwarf2out.c (dwarf2out_imported_module_or_decl): Move DWARF
2435 version check to protect only DW_TAG_imported_module generation.
2437 2016-10-05 Richard Biener <rguenther@suse.de>
2440 * match.pd (min(a,-a) -> -abs(a)): New pattern.
2442 2016-10-04 Ian Lance Taylor <iant@golang.org>
2444 * explow.c (allocate_dynamic_stack_space): Call
2445 do_pending_stack_adjust before handling flag_split_stack.
2447 2016-10-04 David Malcolm <dmalcolm@redhat.com>
2449 * genattrtab.c (make_internal_attr): Supply dummy column number to
2452 * genoutput.c (init_insn_for_nothing): Likewise.
2453 * gensupport.c (add_define_attr): Likewise.
2454 * read-md.c (message_at_1): Print column number.
2455 (fatal_with_file_and_line): Likewise.
2456 (rtx_reader::read_char): Track column numbers.
2457 (rtx_reader::unread_char): Likewise.
2458 (rtx_reader::rtx_reader): Initialize m_read_md_colno.
2459 (rtx_reader::handle_include): Stash and restore m_read_md_colno.
2460 (rtx_reader::handle_file): Initialize m_read_md_colno.
2461 (rtx_reader::get_current_location): Supply column number to
2463 * read-md.h (struct file_location): Add field "colno".
2464 (file_location::file_location): Likewise.
2465 (rtx_reader::get_colno): New accessor.
2466 (rtx_reader::m_read_md_colno): New field.
2467 (rtx_reader::m_last_line_colno): New field.
2469 2016-10-04 Jakub Jelinek <jakub@redhat.com>
2471 * doc/extend.texi (Java Exceptions): Remove.
2472 (java_interface): Remove.
2474 2016-10-04 Doug Gilmore <doug.gilmore@imgtec.com>
2476 PR tree-optimization/77808
2477 * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Check base_addr
2478 and addr are different before copying points-to information.
2480 2016-10-04 Uros Bizjak <ubizjak@gmail.com>
2482 * config/i386/x86-tune.def (X86_TUNE_VECTORIZE_DOUBLE): Remove.
2483 * config/i386/i386.h (TARGET_VECTORIZE_DOUBLE): Remove.
2484 * config/i386/i386.c (ix86_add_stmt_cost): Use TARGET_BONNEL instead
2485 of !TARGET_VECTORIZE_DOUBLE when penalizing DFmode vector ops.
2487 2016-10-04 Richard Biener <rguenther@suse.de>
2489 PR tree-optimization/77399
2490 * tree-ssa-forwprop.c (simplify_vector_constructor): Properly
2491 verify the target can convert.
2493 2016-10-04 Richard Biener <rguenther@suse.de>
2496 * explow.c (plus_constant): Verify the mode of the constant
2497 pool offset before calling plus_constant.
2499 2016-10-04 Richard Biener <rguenther@suse.de>
2502 * match.pd (X / abs (X) -> X < 0 ? -1 : 1): Drop vector
2503 type support, mark with :C.
2504 (X / -X -> -1): Mark with :C.
2506 2016-10-04 Jakub Jelinek <jakub@redhat.com>
2508 * defaults.h (JCR_SECTION_NAME, TARGET_USE_JCR_SECTION): Remove.
2509 * system.h (JCR_SECTION_NAME, TARGET_USE_JCR_SECTION): Poison.
2510 * doc/tm.texi.in (TARGET_USE_JCR_SECTION): Remove.
2511 * doc/tm.texi: Regenerated.
2512 * config/i386/mingw32.h (TARGET_USE_JCR_SECTION): Remove.
2513 * config/i386/cygming.h (TARGET_USE_JCR_SECTION): Remove.
2514 * config/darwin.h (JCR_SECTION_NAME): Remove.
2515 * config/pa/pa64-hpux.h (JCR_SECTION_NAME): Remove.
2516 * config/rs6000/aix71.h (TARGET_USE_JCR_SECTION): Remove.
2517 * config/rs6000/aix51.h (TARGET_USE_JCR_SECTION): Remove.
2518 * config/rs6000/aix52.h (TARGET_USE_JCR_SECTION): Remove.
2519 * config/rs6000/aix53.h (TARGET_USE_JCR_SECTION): Remove.
2520 * config/rs6000/aix61.h (TARGET_USE_JCR_SECTION): Remove.
2522 2016-10-03 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
2524 * ipa-cp.c (propagate_bits_accross_jump_function): Introduce space
2525 between "because" and "param" in dump message in call to fprintf.
2527 2016-10-03 Jeff Law <law@redhat.com>
2529 PR tree-optimization/71550
2530 PR tree-optimization/71403
2531 * tree-ssa-threadbackward.c: Include tree-vectorizer.h
2532 (profitable_jump_thread_path): Also return boolean indicating if
2533 the realized path will create an irreducible loop.
2534 Remove loop depth tests from 71403.
2535 (fsm_find_control_statement_thread_paths): Remove loop depth tests
2536 from 71403. If threading will create an irreducible loop, then
2537 throw away loop iteration and related information.
2539 2016-10-03 Uros Bizjak <ubizjak@gmail.com>
2541 * configure.ac (strict_warn): Merge -Wmissing-format-attribute and
2542 -Woverloaded-virtual checks for warning options.
2543 * configure: Regenerate.
2545 2016-10-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
2547 PR preprocessor/77699
2548 * input.c (maybe_grow): Don't allocate one byte extra headroom.
2549 (get_next_line): Return false on error.
2550 (read_next_line): Removed, use get_next_line instead.
2551 (read_line_num): Don't copy the line.
2552 (location_get_source_line): Don't use static data.
2553 (selftest::test_reading_source_line): Add more test cases.
2555 2016-10-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2558 2016-09-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2560 * ifcvt.c (noce_try_avoid_const_materialization): New function.
2561 (noce_process_if_block): Use it.
2563 2016-10-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
2565 * doc/invoke.texi: Update -Wint-in-bool-context.
2567 2016-10-02 Jakub Jelinek <jakub@redhat.com>
2569 * dwarf2out.c (output_fde, output_call_frame_info,
2570 dwarf2out_do_cfi_startproc, set_indirect_string,
2571 gen_internal_sym, output_die, output_line_info): Use
2572 MAX_ARTIFICIAL_LABEL_BYTES as char array sizes for
2573 ASM_GENERATE_INTERNAL_LABEL output.
2575 2016-10-01 Richard Biener <rguenther@suse.de>
2578 * genmatch.c (get_operand_type): Add operand position arg
2579 and handle COND_EXPR comparison operand with fixed boolean_type_node.
2580 (expr::gen_transform): Adjust.
2581 (dt_simplify::gen_1): Likewise.
2583 2016-10-01 Jakub Jelinek <jakub@redhat.com>
2585 * config/i386/sse.md (<mask_codefor><code><mode>): Add FALLTHRU
2586 comments. Simplify asserts, remove unnecessary conditions.
2588 (*<code><mode>3): Likewise.
2590 2016-09-30 Jakub Jelinek <jakub@redhat.com>
2592 * doc/invoke.texi (-Wregister): Document.
2594 2016-09-30 Bernd Edlinger <bernd.edlinger@hotmail.de>
2596 * configure.ac: Split CHECKING_P into CHECKING_P and
2597 ENABLE_EXTRA_CHECKING.
2598 * configure: Regenerated.
2599 * config.in: Adjust commment of CHECKING_P. Add ENABLE_EXTRA_CHECKING.
2600 * common.opt (flag_checking): Use CHECKING_P and ENABLE_EXTRA_CHECKING.
2602 2016-09-30 Prasad Ghangal <prasad.ghangal@gmail.com>
2605 * gcc.c (process_command): For @filename handling, output
2606 the correct name if the file does not exist.
2608 2016-09-30 Marek Polacek <polacek@redhat.com>
2610 * config/aarch64/aarch64-simd.md: Adjust fall through comments.
2611 * config/alpha/predicates.md: Likewise.
2613 2016-09-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2615 * ifcvt.c (noce_try_avoid_const_materialization): New function.
2616 (noce_process_if_block): Use it.
2618 2016-09-30 Martin Liska <mliska@suse.cz>
2620 * doc/invoke.texi: Document asan-use-after-return that
2621 it's disabled by default in runtime.
2623 2016-09-30 Richard Biener <rguenther@suse.de>
2625 * tree-vrp.c (intersect_ranges): If we failed to handle
2626 the intersection choose a constant singleton range if available.
2628 2016-09-30 Richard Biener <rguenther@suse.de>
2630 PR tree-optimization/77399
2631 * tree-ssa-forwprop.c (simplify_vector_constructor): Handle
2632 float <-> int conversions.
2634 2016-09-30 Alan Modra <amodra@gmail.com>
2636 * config/rs6000/rs6000.c (rs6000_opt_vars): Revert last change.
2638 2016-09-29 Uros Bizjak <ubizjak@gmail.com>
2640 * config/i386/driver-i386.c (host_detect_local_cpu): Check maximum
2641 ext_level before calling CPUID with 0x80000008.
2642 Simplify xgetbv checks.
2644 2016-09-29 David Malcolm <dmalcolm@redhat.com>
2646 * Makefile.in (OBJS): Add print-rtl-function.o.
2647 * print-rtl-function.c: New file.
2648 * print-rtl.h (print_rtx_function): New decl.
2650 2016-09-29 Uros Bizjak <ubizjak@gmail.com>
2653 * config/i386/cpuid.h (__get_cpuid_count): New.
2654 (__get_cpuid): Rename __level to __leaf.
2656 2016-09-29 Marek Polacek <polacek@redhat.com>
2658 * genattrtab.c (write_attr_case): Also emit FALLTHRU marker.
2660 2016-09-29 Bernd Schmidt <bschmidt@redhat.com>
2662 * builtins.c (expand_builtin_memcmp): don't swap args unless
2663 result is only being compared with zero.
2665 2016-09-29 Marek Polacek <polacek@redhat.com>
2667 * dwarf2out.c (loc_descriptor): Add fall through comment.
2668 (add_const_value_attribute): Likewise.
2670 2016-09-29 Matthew Wahab <matthew.wahab@arm.com>
2672 * config/arm/arm.md (*arm_movsi_insn): Replace "t2" arch attribute
2673 with "v6t2". Move "arch" attribute above "pool_range".
2674 * config/arm/vfp.md (*arm_movhi_vfp): Replace "t2" arch attribute
2676 (*thumb2_movhi_vfp): Likewise.
2677 (*arm_movhi_fp16): Likewise.
2678 (*thumb2_movhi_fp16): Likewise.
2679 (*arm_movsi_vfp): Remove "arch" attribute.
2680 (*thumb2_movsi_vfp): Likewise.
2682 2016-09-29 Martin Liska <mliska@suse.cz>
2684 * doc/extend.texi: Remove limitation of Objective C for
2685 __attribute__((constructor)) and __attribute__((destructor)).
2687 2016-09-29 Richard Biener <rguenther@suse.de>
2689 PR tree-optimization/77768
2690 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
2691 Handle stores to readonly memory when removing redundant stores.
2693 2016-09-29 Richard Biener <rguenther@suse.de>
2696 * match.pd: Add X / abs (X) -> X < 0 ? -1 : 1 and
2697 X / -X -> -1 simplifications.
2699 2016-09-29 Richard Biener <rguenther@suse.de>
2702 * match.pd: Add max(a,-a) -> abs(a) pattern.
2703 * tree-ssa-phiopt.c (minmax_replacement): Disable for
2704 HONOR_SIGNED_ZEROS types.
2706 2016-09-29 James Greenhalgh <james.greenhalgh@arm.com>
2708 * defaults.h (TARGET_FLT_EVAL_METHOD_NON_DEFAULT): Remove.
2709 * system.h (TARGET_FLT_EVAL_METHOD_NON_DEFAULT): Poison.
2711 2016-09-29 Richard Biener <rguenther@suse.de>
2713 * tree-vrp.c (set_defs_to_varying): New helper avoiding
2714 writing to vr_const_varying.
2715 (vrp_initialize): Call it.
2716 (vrp_visit_stmt): Likewise.
2717 (evrp_dom_walker::before_dom_children): Likewise.
2719 2016-09-29 Richard Biener <rguenther@suse.de>
2721 * tree-vect-stmts.c (vectorizable_load): Avoid emitting vector
2722 constructors with vector elements.
2724 2016-09-29 Richard Biener <rguenther@suse.de>
2726 PR tree-optimization/77768
2727 * tree-ssa-sccvn.c (visit_reference_op_store): Properly deal
2728 with stores to a place we know has a constant value.
2730 2016-09-29 Alan Modra <amodra@gmail.com>
2732 * config/rs6000/sysv4.opt (mgnu-attribute): New option.
2733 * doc/invoke.texi: Document it.
2734 * config/rs6000/rs6000.c (HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE): Define.
2735 (rs6000_passes_float): Comment.
2736 (rs6000_passes_long_double): New static var.
2737 (call_ABI_of_interest): Return false unless rs6000_gnu_attr is set.
2738 (init_cumulative_args): Set up to emit fp .gnu_attribute for
2739 ELF 64-bit ABIs as well as 32-bit ELF. Correct rs6000_passes_float
2740 to include fp values returned in vectors.
2741 Set rs6000_passes_long_double.
2742 (rs6000_function_arg_advance_1): Likewise for function args.
2743 (rs6000_elf_file_end): Emit fp .gnu_attribute for ELF 64-bit ABIs,
2744 and SPE. Emit long double tag value too.
2745 (rs6000_opt_vars): Add gnu-attr.
2746 * configure.ac (HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE): New ppc32 test.
2747 * configure: Regenerate.
2748 * config.in: Regenerate.
2750 2016-09-28 Jakub Jelinek <jakub@redhat.com>
2752 * gimple-ssa-sprintf.c (pass_sprintf_length::gate): Use x > 0 instead
2754 (format_floating, format_string, format_directive,
2755 get_destination_size, pass_sprintf_length::handle_gimple_call):
2758 2016-09-28 Jakub Jelinek <jakub@redhat.com>
2760 * gimple-ssa-sprintf.c: Fix comment formatting.
2761 (format_integer): Use is_gimple_assign.
2762 (pass_sprintf_length::handle_gimple_call): Use gimple_call_builtin_p
2763 and gimple_call_fndecl. Reorder case BUILT_IN_SPRINTF_CHK. Fix up
2764 BUILT_IN_SNPRINTF_CHK comment. Replace "to to" with "to" in comment.
2765 (pass_sprintf_length::execute): Use is_gimple_call.
2767 2016-09-28 Wilco Dijkstra <wdijkstr@arm.com>
2769 * gimple-fold.c (gimple_fold_builtin): After failing to fold
2770 strchr, also try the generic folding.
2772 2016-09-28 Martin Sebor <msebor@redhat.com>
2775 * gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call):
2778 2016-09-28 Martin Sebor <msebor@redhat.com>
2781 * gimple-ssa-sprintf.c (format_integer): Fail gracefully when
2782 length modifier is not expected.
2783 (format_floating): Ignore l length modifier and fail gracefuly
2784 when it isn't one of the other expected ones.
2786 2016-09-28 Martin Sebor <msebor@redhat.com>
2789 * varasm.c (assemble_addr_to_section): Increase local buffer size.
2791 2016-09-27 Richard Biener <rguenther@suse.de>
2793 * dwarf2out.c (cu_die_list): New global.
2794 (dwarf2out_finish): Walk cu_die_list instead of limbo DIEs. Add
2795 main_comp_unit_die to cu_die_list if we created it.
2796 Move break_out_includes ...
2797 (dwarf2out_early_finish): ... here. Push created CU DIEs onto
2800 2016-09-28 Richard Biener <rguenther@suse.de>
2802 * dwarf2out.c (struct die_struct): Add removed flag.
2803 (lookup_type_die): If the DIE is marked as removed, clear
2804 TYPE_SYMTAB_DIE and return NULL.
2805 (lookup_decl_die): If the DIE is marked as removed, remove it
2806 from the hash and return NULL.
2807 (mark_removed): New helper.
2808 (prune_unused_types_prune): Call it for removed DIEs.
2809 (gen_subprogram_die): Move the premark_used_types call to after
2810 DIEs for the functions scopes are generated.
2811 (process_scope_var): Do not re-create pruned types or type decls.
2812 Make sure to also re-parent type decls.
2813 (dwarf2out_finish): Move unused type pruning and debug_types
2815 (dwarf2out_early_finish): ... here.
2817 2016-09-29 Claudiu Zissulescu <claziss@synopsys.com>
2819 * config/arc/arc-c.c: New file.
2820 * config/arc/arc-c.def: Likewise.
2821 * config/arc/t-arc: Likewise.
2822 * config.gcc: Include arc-c.o as c and cpp object.
2823 * config/arc/arc-protos.h (arc_cpu_cpp_builtins): Add prototype.
2824 * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Use
2825 arc_cpu_cpp_builtins.
2827 2016-09-29 Claudiu Zissulescu <claziss@synopsys.com>
2829 * config/arc/arc.md (*rotrsi3_cnt1): New pattern.
2830 (*ashlsi2_cnt1, *lshrsi3_cnt1, *ashrsi3_cnt1): Likewise.
2832 2016-09-28 Nathan Sidwell <nathan@acm.org>
2834 * gimple-pretty-print.c (dump_gimple_call_args): Simplify "' "
2837 2016-09-28 Wilco Dijkstra <wdijkstr@arm.com>
2839 PR tree-optimization/61056
2840 * gimple-fold.c (gimple_fold_builtin_strchr):
2841 New function to optimize strchr (s, 0) to strlen.
2842 (gimple_fold_builtin): Add BUILT_IN_STRCHR case.
2844 2016-09-27 Robin Dapp <rdapp@linux.vnet.ibm.com>
2846 PR tree-optimization/77724
2847 * tree-vect-loop-manip.c (create_intersect_range_checks_index):
2848 Add tree_fits_shwi_p check.
2850 2016-09-27 Jakub Jelinek <jakub@redhat.com>
2852 * auto-inc-dec.c (try_merge): Remove break after return.
2853 * cselib.c (autoinc_split): Likewise.
2854 * explow.c (promote_mode): Likewise.
2855 * fixed-value.c (fixed_arithmetic): Likewise.
2856 * hsa.c (hsa_internal_fn::get_arity): Likewise.
2857 * rtlanal.c (modified_between_p, modified_in_p): Likewise.
2858 * trans-mem.c (get_attrs_for): Likewise.
2859 * tree-if-conv.c (if_convertible_stmt_p): Likewise.
2860 * tree-vrp.c (simplify_stmt_using_ranges): Likewise.
2861 * config/aarch64/aarch64-builtins.c (aarch64_fold_builtin): Likewise.
2862 * config/aarch64/aarch64.c (aarch64_get_condition_code_1): Likewise.
2863 * config/c6x/c6x.c (c6x_get_unit_specifier): Likewise.
2864 * config/cr16/cr16.c (legitimate_pic_operand_p): Likewise.
2865 * config/cris/cris.c (cris_op_str): Likewise.
2866 * config/mn10300/mn10300.c (cc_flags_for_code): Likewise.
2867 * config/tilepro/tilepro.c (tilepro_emit_setcc_internal_di): Likewise.
2869 2016-09-27 Nathan Sidwell <nathan@codesourcery.com>
2871 * internal-fn.h (IFN_UNIQUE_CODES, IFN_GOACC_LOOP_CODES,
2872 IFN_GOACC_REDUCTION_CODES): New.
2873 (enum ifn_unique_kind, enum ifn_goacc_loop_kind, enum
2874 ifn_goacc_reduction_kind): Use them.
2875 * gimple-pretty-print.c (dump_gimple_call_args): Decode first arg
2876 of internal functions, when applicable.
2878 2016-09-27 Maciej W. Rozycki <macro@imgtec.com>
2880 * config/mips/constraints.md (d): Fix documentation.
2881 * doc/md.texi (Machine Constraints): Update accordingly.
2883 2016-09-27 Richard Biener <rguenther@suse.de>
2885 * dwarf2out.c (dwarf2out_init): Move text_section_line_info,
2886 cur_line_info_table initialization ...
2887 (dwarf2out_assembly_start): ... here.
2889 2016-09-27 Matthew Wahab <matthew.wahab@arm.com>
2891 * config/arm/arm.md (*arm_movsi_insn): Add "arch" attribute.
2892 * config/arm/vfp.md (*arm_movhi_vfp): Likewise.
2893 (*thumb2_movhi_vfp): Likewise.
2894 (*arm_movhi_fp16): Remove predication operand from VMOV.F16
2895 template. Expand predicable attribute to mark VMOV.F16 as not
2896 predicable. Add "arch" attribute.
2897 (*thumb2_movhi_fp16): Likewise.
2898 (*arm_movsi_vfp): Break a long line. Add "arch" attribute.
2899 (*thumb2_movsi_vfp): Add "arch" attribute.
2901 2016-09-27 David Edelsohn <dje.gcc@gmail.com>
2903 * config/rs6000/rs6000.c (rs6000_output_symbol): Don't modify
2906 2016-09-27 Marek Polacek <polacek@redhat.com>
2908 * config/ia64/ia64.c (ia64_print_operand): Adjust fall through
2911 * config/c6x/c6x.h: Adjust fall through comment.
2912 * config/sh/sh.c (final_prescan_insn): Likewise.
2913 * config/visium/visium.c (visium_expand_int_cstore): Likewise.
2914 (visium_expand_fp_cstore): Likewise.
2916 2016-09-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2918 * config/arm/arm.c (const_ok_for_op): Use "Fall through" comment form
2919 expected by -Wimplicit-fallthrough.
2920 (thumb1_size_rtx_costs): Likewise.
2921 (thumb2_reorg): Likewise.
2922 (tls_mentioned_p): Add "Fall through" comment.
2923 (thumb2_reorg): Likewise.
2924 * config/arm/arm-builtins.c (arm_expand_neon_args): Use "Fall through"
2925 comment form expected by -Wimplicit-fallthrough.
2927 2016-09-27 Martin Liska <mliska@suse.cz>
2929 PR gcov-profile/46266
2930 * input.h (RESERVED_LOCATION_P): New macro.
2931 * profile.c (branch_prob): Use RESERVED_LOCATION_P and
2932 instread of comparison with UNKNOWN_LOCATION.
2934 2016-09-27 Richard Biener <rguenther@suse.de>
2936 PR tree-optimization/77745
2937 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
2938 When removing redundant stores make sure to check compatibility
2939 of the TBAA state for downstream accesses.
2940 * tree-ssa-sccvn.c (visit_reference_op_store): Likewise for when
2941 value-numbering virtual operands for store matches.
2943 2016-09-27 Oleg Endo <olegendo@gcc.gnu.org>
2946 * config/sh/sh.c (sh_rtx_costs): Fix return value of SET of movt and
2947 movrt patterns. Match them before anything else in the SET case.
2949 2016-09-27 Martin Liska <mliska@suse.cz>
2951 PR gcov-profile/7970
2952 PR gcov-profile/16855
2953 PR gcov-profile/44779
2954 * coverage.c (build_gcov_exit_decl): New function.
2955 (coverage_obj_init): Call the function and generate __gcov_exit
2957 * doc/gcov.texi: Document when __gcov_exit function is called.
2959 2016-09-27 Marek Polacek <polacek@redhat.com>
2962 * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
2963 insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Use
2964 -Wno-error instead of -Wno-implicit-fallthrough.
2966 2016-09-27 Martin Liska <mliska@suse.cz>
2969 * gcov-counter.def: Remove GCOV_COUNTER_V_DELTA.
2971 2016-09-27 Jakub Jelinek <jakub@redhat.com>
2973 * combine.c (simplify_comparison): Add canonical FALLTHROUGH comments.
2974 * config/i386/i386.c (ix86_dep_by_shift_count_body): Add FALLTHROUGH
2975 comments. Remove break after return.
2976 (ix86_fp_compare_code_to_integer, has_dispatch,
2977 ix86_simd_clone_usable): Remove break after return.
2979 2016-09-27 Bernd Edlinger <bernd.edlinger@hotmail.de>
2981 PR rlt-optimization/77714
2982 * lra-eliminations.c (eliminate_regs_in_insn): Avoid alias on
2985 2016-09-27 Kugan Vivekanandarajah <kuganv@linaro.org>
2988 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Use
2989 extract_range_from_unary_expr to convert value_range.
2990 * tree-vrp.c (extract_range_from_unary_expr_1): Rename to.
2991 (extract_range_from_unary_expr): This.
2992 * tree-vrp.h (extract_range_from_unary_expr): Declare.
2994 2016-09-27 Segher Boessenkool <segher@kernel.crashing.org>
2996 * config/rs6000/rs6000.md (movcc_internal1): Disparage using CTR or LR.
2998 2016-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3000 * config/i386/i386.c (ix86_print_operand)
3001 [HAVE_AS_IX86_CMOV_SUN_SYNTAX]: Add gcc_fallthrough.
3002 * config/sparc/sparc.c (check_pic): Add fallthrough comment.
3003 (epilogue_renumber): Likewise.
3005 2016-09-26 Kugan Vivekanandarajah <kuganv@linaro.org>
3008 * tree-ssa-reassoc.c (make_new_ssa_for_def): Use gimple_get_lhs
3009 to get lhs instead of gimple_assign_lhs as stmt can be builtins too.
3011 2016-09-26 Thomas Preud'homme <thomas.preudhomme@arm.com>
3013 * tree.h (memmodel_from_int, memmodel_base, is_mm_relaxed,
3014 is_mm_consume, is_mm_acquire, is_mm_release, is_mm_acq_rel,
3015 is_mm_seq_cst, is_mm_sync): Move to ...
3016 * memmodel.h: This. New file.
3017 * builtins.c: Include memmodel.h.
3018 * optabs.c: Likewise.
3020 * config/aarch64/aarch64.c: Likewise.
3021 * config/alpha/alpha.c: Likewise.
3022 * config/arm/arm.c: Likewise.
3023 * config/i386/i386.c: Likewise.
3024 * config/ia64/ia64.c: Likewise.
3025 * config/mips/mips.c: Likewise.
3026 * config/rs6000/rs6000.c: Likewise.
3027 * config/sparc/sparc.c: Likewise.
3028 * genconditions.c: Include memmodel.h in generated file.
3029 * genemit.c: Likewise.
3030 * genoutput.c: Likewise.
3031 * genpeep.c: Likewise.
3032 * genpreds.c: Likewise.
3033 * genrecog.c: Likewise.
3035 2016-09-26 David Malcolm <dmalcolm@redhat.com>
3037 * read-rtl.c (read_rtx_code): Rename local "i" to "idx", and use
3038 "c" instead when parsing characters. Move operand parsing into...
3039 (read_rtx_operand): ...this new function, renaming "i" to "idx",
3040 and tightening the scope of various locals.
3042 2016-09-26 Liu Hao <lh_mouse@126.com>
3044 * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Fix typo.
3046 2016-09-26 Marek Polacek <polacek@redhat.com>
3048 * system.h: Use __has_attribute to check whether the fallthrough
3049 attribute is supported.
3051 2016-09-26 Marek Polacek <polacek@redhat.com>
3053 * ipa-inline-analysis.c (find_foldable_builtin_expect): Use
3054 gimple_call_internal_p.
3055 * ipa-split.c (find_return_bb): Likewise.
3056 (execute_split_functions): Likewise.
3057 * omp-low.c (dump_oacc_loop_part): Likewise.
3058 (oacc_loop_xform_head_tail): Likewise.
3059 * predict.c (predict_loops): Likewise.
3060 * sanopt.c (pass_sanopt::execute): Likewise.
3061 * tree-cfg.c (get_abnormal_succ_dispatcher): Likewise.
3062 * tree-parloops.c (oacc_entry_exit_ok_1): Likewise.
3063 * tree-stdarg.c (gimple_call_ifn_va_arg_p): Remove function.
3064 (expand_ifn_va_arg_1): Use gimple_call_internal_p.
3065 (expand_ifn_va_arg): Likewise.
3066 * tree-vect-loop.c (vect_determine_vectorization_factor): Likewise.
3067 (optimize_mask_stores): Likewise.
3068 * tree-vect-stmts.c (vect_simd_lane_linear): Likewise.
3069 (vect_transform_stmt): Likewise.
3070 * tree-vectorizer.c (vect_loop_vectorized_call): Likewise.
3071 * tsan.c (instrument_memory_accesses): Likewise.
3073 2016-09-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3074 Alexander Monakov <amonakov@ispras.ru>
3076 * regrename.c (rename_chains): Check
3077 HARD_FRAME_POINTER_IS_FRAME_POINTER rather than
3078 HARD_FRAME_POINTER_REGNUM when picking unavailable registers.
3079 * sel-sched.c (mark_unavailable_hard_regs): Likewise.
3081 2016-09-26 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
3083 * config/s390/s390.c (s390_rtx_costs): Add /* fallthrough */.
3084 (s390_sched_score): Likewise.
3086 2016-09-26 Martin Liska <mliska@suse.cz>
3088 * doc/gcov.texi: Update program output of gcov tool.
3090 2016-09-26 Martin Liska <mliska@suse.cz>
3092 PR gcov-profile/23332
3093 * profile.c (instrument_values): Do not handle HIST_TYPE_CONST_DELTA.
3094 * tree-profile.c (gimple_gen_const_delta_profiler): Remove.
3095 * value-prof.c (dump_histogram_value): Do not handle
3096 HIST_TYPE_CONST_DELTA.
3097 (stream_in_histogram_value): Likewise.
3098 (gimple_find_values_to_profile): Likewise.
3099 * value-prof.h (enum hist_type): Likewise.
3101 2016-09-26 Martin Liska <mliska@suse.cz>
3103 * common.opt: Exclude SANITIZE_UNREACHABLE and SANITIZE_RETURN
3104 from default sanitize recover values.
3105 * doc/invoke.texi: Fix documentation related to -fsanitize=leak,
3106 -fsanitize=address, -fsanitize=thread and -fsanitize-recover.
3107 * flag-types.h: Replace couple of 1 << x to 1UL << x, make it
3109 * opts.c (finish_options): Do a generic loop over options
3110 that can be recovered.
3111 (parse_sanitizer_options): Exclude SANITIZE_UNREACHABLE and
3113 (common_handle_option): Likewise.
3114 * opts.h: Declare can_recover to sanitizer_opts_s.
3116 2016-09-26 Andre Vieira <andre.simoesdiasvieira@arm.com>
3118 * target.def(elf_flags_numeric): Change documentation to present tense.
3119 * doc/tm.texi: Regenerate.
3121 2016-09-26 Marek Polacek <polacek@redhat.com>
3124 * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
3125 insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Add
3126 -Wno-switch-fallthrough.
3127 * builtins.c (expand_builtin_int_roundingfn_2): Add gcc_fallthrough.
3128 (expand_builtin): Likewise.
3129 * config/rs6000/rs6000.c (rs6000_builtin_vectorized_libmass): Likewise.
3130 * convert.c (convert_to_real_1): Likewise.
3131 (convert_to_integer_1): Likewise.
3132 * final.c (output_alternate_entry_point): Likewise.
3133 * genattrtab.c (make_canonical): Likewise.
3134 (write_test_expr): Likewise.
3135 * genpreds.c (validate_exp): Likewise.
3136 * gimple-ssa-strength-reduction.c
3137 (find_candidates_dom_walker::before_dom_children): Likewise.
3138 * godump.c (go_format_type): Likewise.
3139 * reload1.c (elimination_effects): Likewise.
3140 * resource.c (mark_referenced_resources): Likewise.
3141 (mark_set_resources): Likewise.
3142 * tree-ssa-loop-ivopts.c (find_deriving_biv_for_expr): Likewise.
3143 * varasm.c (output_addressed_constants): Likewise.
3145 2016-09-26 Marek Polacek <polacek@redhat.com>
3148 * common.opt (Wimplicit-fallthrough): New option.
3149 * doc/extend.texi: Document statement attributes and the fallthrough
3151 * doc/invoke.texi: Document -Wimplicit-fallthrough.
3152 * gimple.h (gimple_call_internal_p): New function.
3153 * gimplify.c (struct gimplify_ctx): Add in_switch_expr.
3154 (struct label_entry): New struct.
3155 (find_label_entry): New function.
3156 (case_label_p): New function.
3157 (collect_fallthrough_labels): New function.
3158 (last_stmt_in_scope): New function.
3159 (should_warn_for_implicit_fallthrough): New function.
3160 (warn_implicit_fallthrough_r): New function.
3161 (maybe_warn_implicit_fallthrough): New function.
3162 (expand_FALLTHROUGH_r): New function.
3163 (expand_FALLTHROUGH): New function.
3164 (gimplify_switch_expr): Call maybe_warn_implicit_fallthrough and
3165 expand_FALLTHROUGH for the innermost GIMPLE_SWITCH.
3166 (gimplify_label_expr): New function.
3167 (gimplify_case_label_expr): Set location.
3168 (gimplify_expr): Call gimplify_label_expr.
3169 * internal-fn.c (expand_FALLTHROUGH): New function.
3170 * internal-fn.def (FALLTHROUGH): New internal function.
3171 * langhooks.c (lang_GNU_OBJC): New function.
3172 * langhooks.h (lang_GNU_OBJC): Declare.
3173 * system.h (gcc_fallthrough): Define.
3174 * tree-core.h: Add FALLTHROUGH_LABEL_P comment.
3175 * tree.h (FALLTHROUGH_LABEL_P): Define.
3177 2016-09-26 Richard Biener <rguenther@suse.de>
3179 * dwarf2out.c (stripattributes): Remove unused function.
3180 (DEBUG_NORM_MACINFO_SECTION): Rename to DEBUG_MACINFO_SECTION.
3181 Push dwarf_split_debug_info handling into init_sections_and_labels.
3182 (DEBUG_NORM_MACRO_SECTION): Likewise to DEBUG_MACRO_SECTION.
3183 (DEBUG_MACRO_SECTION_FLAGS): Remove.
3184 (debug_macinfo_section_name): New global.
3185 (output_macinfo): Use debug_macinfo_section_name.
3186 (init_sections_and_labels): Split out section and label generation
3187 from dwarf2out_init. Set debug_macinfo_section_name.
3188 (dwarf2out_init): Move text section label generation and emission
3190 (dwarf2out_assembly_start): ... here.
3191 (dwarf2out_finish): Call init_sections_and_labels before DWARF
3194 2016-09-26 Richard Biener <rguenther@suse.de>
3197 * cgraphunit.c (analyze_functions): Before early removing
3198 global vars calls the late_global_decl debug handler mark
3199 the variable as readonly.
3201 2016-09-25 Oleg Endo <olegendo@gcc.gnu.org>
3204 * config/sh/sh.c (sh_movt_set_dest, sh_movrt_set_dest): Add overloads.
3205 (sh_rtx_costs): Handle SET of movt and movrt patterns.
3206 * cnofig/sh/sh-protos.h (sh_movt_set_dest, sh_movrt_set_dest): Forward
3207 declare new overloads.
3208 * config/sh/sh.md (*cset_zero): Add variant that takes a treg_set_expr
3211 2016-09-24 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
3213 * config/rs6000/rs6000.c (expand_block_compare, do_load_for_compare):
3214 Change TARGET_LITTLE_ENDIAN to !BYTES_BIG_ENDIAN.
3216 2016-09-24 David Edelsohn <dje.gcc@gmail.com>
3218 * configure.ac (gcc_cv_as_aix_dwloc): Fix typo in assembly fragment.
3219 * configure: Regenerate.
3221 2016-09-24 Marek Polacek <polacek@redhat.com>
3224 * doc/invoke.texi: Document -Wbool-operation.
3226 2016-09-23 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
3228 * config/rs6000/rs6000.md (cmpmemsi): New define_expand.
3229 * config/rs6000/rs6000.c (expand_block_compare): New function used by
3230 cmpmemsi pattern to do builtin expansion of memcmp ().
3231 (compute_current_alignment): Add helper function for
3232 expand_block_compare used to compute alignment as the compare proceeds.
3233 (select_block_compare_mode): Used by expand_block_compare to select
3234 the mode used for reading the next chunk of bytes in the compare.
3235 (do_load_for_compare): Used by expand_block_compare to emit the load
3236 insns for the compare.
3237 (rs6000_emit_dot_insn): Moved this function to avoid a forward
3238 reference from expand_block_compare ().
3239 * config/rs6000/rs6000-protos.h (expand_block_compare): Add a
3240 prototype for this function.
3241 * config/rs6000/rs6000.opt (mblock-compare-inline-limit): Add a new
3242 target option for controlling how much code inline expansion of
3243 memcmp() will be allowed to generate.
3245 2016-09-23 Jakub Jelinek <jakub@redhat.com>
3247 * hooks.c (hook_bool_bool_false, hook_bool_bool_gcc_optionsp_false,
3248 hook_bool_mode_false, hook_bool_mode_true,
3249 hook_bool_mode_const_rtx_false, hook_bool_mode_const_rtx_true,
3250 hook_bool_mode_rtx_false, hook_bool_mode_rtx_true,
3251 hook_bool_const_rtx_insn_const_rtx_insn_true,
3252 hook_bool_mode_uhwi_false, hook_void_FILEptr_constcharptr,
3253 hook_bool_FILEptr_rtx_false, hook_bool_gsiptr_false,
3254 hook_bool_const_tree_hwi_hwi_const_tree_false,
3255 hook_bool_const_tree_hwi_hwi_const_tree_true,
3256 default_can_output_mi_thunk_no_vcall, hook_int_uint_mode_1,
3257 hook_int_const_tree_0, hook_int_const_tree_const_tree_1,
3258 hook_int_rtx_0, hook_int_rtx_bool_0, hook_void_tree,
3259 hook_void_constcharptr, hook_void_tree_treeptr, hook_void_int_int,
3260 hook_bool_tree_false, hook_bool_const_tree_false, hook_bool_tree_true,
3261 hook_bool_const_tree_true, hook_bool_tree_tree_false,
3262 hook_bool_tree_tree_true, hook_bool_tree_bool_false,
3263 hook_bool_rtx_insn_true, hook_bool_rtx_false,
3264 hook_bool_uintp_uintp_false,
3265 hook_bool_rtx_mode_int_int_intp_bool_false, hook_rtx_rtx_null,
3266 hook_rtx_tree_int_null, hook_uint_mode_0,
3267 hook_constcharptr_const_tree_null, hook_tree_tree_int_treep_bool_null,
3268 hook_tree_tree_tree_null, hook_tree_tree_tree_tree_null,
3269 hook_constcharptr_const_rtx_insn_null,
3270 hook_constcharptr_const_tree_const_tree_null,
3271 hook_constcharptr_int_const_tree_null,
3272 hook_constcharptr_int_const_tree_const_tree_null,
3273 hook_tree_const_tree_null, hook_bool_rtx_insn_int_false,
3274 hook_void_rtx_insn_int, hook_void_gcc_optionsp): For arguments with
3275 ATTRIBUTE_UNUSED, remove parameter name as well as ATTRIBUTE_UNUSED.
3277 * vec.h (vNULL): Extend comment to say = vNULL initialization
3278 isn't needed for static vars.
3280 * sel-sched-ir.c (sel_global_bb_info, sel_region_bb_info,
3281 loop_nests, s_i_d, last_added_blocks): Remove unnecessary
3282 = vNULL initialization of file scope vec.
3283 * passes.c (pass_tab, enabled_pass_uid_range_tab,
3284 disabled_pass_uid_range_tab): Likewise.
3285 * haifa-sched.c (sched_luids, h_i_d): Likewise.
3286 * tree-chkp-opt.c (check_infos): Likewise.
3287 * sel-sched.c (vec_av_set, vec_temp_moveop_nops): Likewise.
3289 * vec.h (vnull::operator vec): Add constexpr keyword for
3292 2016-09-23 Doug Gilmore <doug.gilmore@imgtec.com>
3294 PR tree-optimization/77654
3295 * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Add call
3296 to duplicate_ssa_name_ptr_info.
3298 2016-09-23 David Malcolm <dmalcolm@redhat.com>
3300 PR preprocessor/77672
3301 * input.c (selftest::test_lexer_string_locations_simple): Update
3302 test to expect location information of the terminator character
3303 at the location of the final closing quote.
3304 (selftest::test_lexer_string_locations_hex): Likewise.
3305 (selftest::test_lexer_string_locations_oct): Likewise.
3306 (selftest::test_lexer_string_locations_letter_escape_1): Likewise.
3307 (selftest::test_lexer_string_locations_letter_escape_2): Likewise.
3308 (selftest::test_lexer_string_locations_ucn4): Likewise.
3309 (selftest::test_lexer_string_locations_ucn8): Likewise.
3310 (selftest::test_lexer_string_locations_u8): Likewise.
3311 (selftest::test_lexer_string_locations_utf8_source): Likewise.
3312 (selftest::test_lexer_string_locations_concatenation_1): Likewise.
3313 (selftest::test_lexer_string_locations_concatenation_2): Likewise.
3314 (selftest::test_lexer_string_locations_concatenation_3): Likewise.
3315 (selftest::test_lexer_string_locations_macro): Likewise.
3316 (selftest::test_lexer_string_locations_long_line): Likewise.
3318 2016-09-23 Richard Biener <rguenther@suse.de>
3320 * tree-ssa-sccvn.c (visit_reference_op_call): Value number
3321 virtual definition to virtual use if the call devirtualizes
3322 to a const or pure function.
3323 (visit_use): Also visit calls we can devirtualize to a
3324 const or pure function.
3326 2016-09-23 Richard Biener <rguenther@suse.de>
3328 PR tree-optimization/77697
3329 * tree-ssa-forwprop.c (defcodefor_name): Remove bogus code,
3330 signal error if we have sth ternary or unhandled.
3332 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3334 * config/arm/arm_neon.h (vabd_f16): New.
3368 (vcvt_f16_s16): New.
3369 (vcvt_f16_u16): New.
3370 (vcvt_s16_f16): New.
3371 (vcvt_u16_f16): New.
3372 (vcvtq_f16_s16): New.
3373 (vcvtq_f16_u16): New.
3374 (vcvtq_s16_f16): New.
3375 (vcvtq_u16_f16): New.
3376 (vcvta_s16_f16): New.
3377 (vcvta_u16_f16): New.
3378 (vcvtaq_s16_f16): New.
3379 (vcvtaq_u16_f16): New.
3380 (vcvtm_s16_f16): New.
3381 (vcvtm_u16_f16): New.
3382 (vcvtmq_s16_f16): New.
3383 (vcvtmq_u16_f16): New.
3384 (vcvtn_s16_f16): New.
3385 (vcvtn_u16_f16): New.
3386 (vcvtnq_s16_f16): New.
3387 (vcvtnq_u16_f16): New.
3388 (vcvtp_s16_f16): New.
3389 (vcvtp_u16_f16): New.
3390 (vcvtpq_s16_f16): New.
3391 (vcvtpq_u16_f16): New.
3392 (vcvt_n_f16_s16): New.
3393 (vcvt_n_f16_u16): New.
3394 (vcvtq_n_f16_s16): New.
3395 (vcvtq_n_f16_u16): New.
3396 (vcvt_n_s16_f16): New.
3397 (vcvt_n_u16_f16): New.
3398 (vcvtq_n_s16_f16): New.
3399 (vcvtq_n_u16_f16): New.
3413 (vmul_lane_f16): New.
3416 (vmulq_lane_f16): New.
3438 (vrsqrteq_f16): New.
3442 (vrsqrtsq_f16): New.
3446 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3448 * config.gcc (extra_headers): Add arm_fp16.h
3449 * config/arm/arm_fp16.h: New.
3450 * config/arm/arm_neon.h: Include "arm_fp16.h".
3452 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3454 * config/arm/arm_neon_builtins.def (vadd): New (v8hf, v4hf
3456 (vmulf): New (v8hf, v4hf variants).
3457 (vfma): New (v8hf, v4hf variants).
3458 (vfms): New (v8hf, v4hf variants).
3459 (vsub): New (v8hf, v4hf variants).
3460 (vcage): New (v8hf, v4hf variants).
3461 (vcagt): New (v8hf, v4hf variants).
3462 (vcale): New (v8hf, v4hf variants).
3463 (vcalt): New (v8hf, v4hf variants).
3464 (vceq): New (v8hf, v4hf variants).
3465 (vcgt): New (v8hf, v4hf variants).
3466 (vcge): New (v8hf, v4hf variants).
3467 (vcle): New (v8hf, v4hf variants).
3468 (vclt): New (v8hf, v4hf variants).
3469 (vceqz): New (v8hf, v4hf variants).
3470 (vcgez): New (v8hf, v4hf variants).
3471 (vcgtz): New (v8hf, v4hf variants).
3472 (vcltz): New (v8hf, v4hf variants).
3473 (vclez): New (v8hf, v4hf variants).
3474 (vabd): New (v8hf, v4hf variants).
3475 (vmaxf): New (v8hf, v4hf variants).
3476 (vmaxnm): New (v8hf, v4hf variants).
3477 (vminf): New (v8hf, v4hf variants).
3478 (vminnm): New (v8hf, v4hf variants).
3479 (vpmaxf): New (v4hf variant).
3480 (vpminf): New (v4hf variant).
3481 (vpadd): New (v4hf variant).
3482 (vrecps): New (v8hf, v4hf variants).
3483 (vrsqrts): New (v8hf, v4hf variants).
3484 (vabs): New (v8hf, v4hf variants).
3485 (vneg): New (v8hf, v4hf variants).
3486 (vrecpe): New (v8hf, v4hf variants).
3487 (vrnd): New (v8hf, v4hf variants).
3488 (vrnda): New (v8hf, v4hf variants).
3489 (vrndm): New (v8hf, v4hf variants).
3490 (vrndn): New (v8hf, v4hf variants).
3491 (vrndp): New (v8hf, v4hf variants).
3492 (vrndx): New (v8hf, v4hf variants).
3493 (vrsqrte): New (v8hf, v4hf variants).
3494 (vmul_lane): Add v4hf and v8hf variants.
3495 (vmul_n): Add v4hf and v8hf variants.
3496 (vext): New (v8hf, v4hf variants).
3497 (vcvts): New (v8hi, v4hi variants).
3498 (vcvts): New (v8hf, v4hf variants).
3499 (vcvtu): New (v8hi, v4hi variants).
3500 (vcvtu): New (v8hf, v4hf variants).
3501 (vcvts_n): New (v8hf, v4hf variants).
3502 (vcvtu_n): New (v8hi, v4hi variants).
3503 (vcvts_n): New (v8hi, v4hi variants).
3504 (vcvtu_n): New (v8hf, v4hf variants).
3505 (vbsl): New (v8hf, v4hf variants).
3506 (vcvtas): New (v8hf, v4hf variants).
3507 (vcvtau): New (v8hf, v4hf variants).
3508 (vcvtms): New (v8hf, v4hf variants).
3509 (vcvtmu): New (v8hf, v4hf variants).
3510 (vcvtns): New (v8hf, v4hf variants).
3511 (vcvtnu): New (v8hf, v4hf variants).
3512 (vcvtps): New (v8hf, v4hf variants).
3513 (vcvtpu): New (v8hf, v4hf variants).
3515 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3517 * config/arm/arm-builtins.c (hf_UP): New.
3519 (vfp_builtin_data): New. Update comment.
3520 (enum arm_builtins): Include "arm_vfp_builtins.def".
3521 (ARM_BUILTIN_VFP_PATTERN_START): New.
3522 (arm_init_vfp_builtins): New.
3523 (arm_init_builtins): Add arm_init_vfp_builtins.
3524 (arm_expand_vfp_builtin): New.
3525 (arm_expand_builtins): Update for arm_expand_vfp_builtin. Fix
3527 * config/arm/arm_vfp_builtins.def: New file.
3528 * config/arm/t-arm (arm.o): Add arm_vfp_builtins.def.
3529 (arm-builtins.o): Likewise.
3531 2016-09-23 Kugan Vivekanandarajah <kuganv@linaro.org>
3534 * ipa-cp.c (propagate_vr_accross_jump_function): Drop TREE_OVERFLOW
3535 from constant while creating value range.
3537 2016-09-23 Renlin Li <renlin.li@arm.com>
3539 * ira.c (ira): Move ira_use_lra_p initialization code to ...
3540 (ira_init_once): Here.
3542 2016-09-23 Uros Bizjak <ubizjak@gmail.com>
3543 Jakub Jelinek <jakub@redhat.com>
3545 * hooks.h (hook_uint_uintp_false): Rename to...
3546 (hook_bool_uint_uintp_false): ... this.
3547 * hooks.c (hook_uint_uintp_false): Rename to...
3548 (hook_bool_uint_uintp_false): ... this.
3549 * target.def (elf_flags_numeric): Use hook_bool_uint_uintp_false
3550 instead of hook_uint_uintp_false.
3552 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3554 * config/arm/arm-builtins.c (arm_init_neon_builtin): New.
3555 (arm_init_builtins): Move body of a loop to the standalone
3556 function arm_init_neon_builtin.
3557 (arm_expand_neon_builtin_1): New. Update comment. Function body
3558 moved from arm_neon_builtin with some white-space fixes.
3559 (arm_expand_neon_builtin): Move code into the standalone function
3560 arm_expand_neon_builtin_1.
3562 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3564 * config/arm/iterators.md (VCVTHI): New.
3565 (NEON_VCMP): Add UNSPEC_VCLT and UNSPEC_VCLE. Fix a long line.
3569 (V_reg): Add HF, V4HF and V8HF. Fix white-space.
3570 (V_HALF): Add V4HF. Fix white-space.
3571 (V_if_elem): Add HF, V4HF and V8HF. Fix white-space.
3572 (V_s_elem): Likewise.
3573 (V_sz_elem): Fix white-space.
3574 (V_elem_ch): Likewise.
3576 (scalar_mul_constraint): Add V8HF and V4HF.
3577 (Is_float_mode): Fix white-space.
3578 (Is_d_reg): Add V4HF and V8HF. Fix white-space.
3579 (q): Add HF. Fix white-space.
3582 (cmp_op_unsp): Add UNSPEC_VCALE and UNSPEC_VCALT.
3583 (neon_vfm_lane_as): New.
3584 * config/arm/neon.md (add<mode>3_fp16): New.
3585 (sub<mode>3_fp16): New.
3586 (mul<mode>3add<mode>_neon): New.
3587 (fma<VH:mode>4_intrinsic): New.
3588 (fmsub<VCVTF:mode>4_intrinsic): Fix white-space.
3589 (fmsub<VH:mode>4_intrinsic): New.
3590 (<absneg_str><mode>2): New.
3591 (neon_v<absneg_str><mode>): New.
3592 (neon_v<fp16_rnd_str><mode>): New.
3593 (neon_vrsqrte<mode>): New.
3594 (neon_vpaddv4hf): New.
3595 (neon_vadd<mode>): New.
3596 (neon_vsub<mode>): New.
3597 (neon_vmulf<mode>): New.
3598 (neon_vfma<VH:mode>): New.
3599 (neon_vfms<VH:mode>): New.
3600 (neon_vc<cmp_op><mode>): New.
3601 (neon_vc<cmp_op><mode>_fp16insn): New
3602 (neon_vc<cmp_op_unsp><mode>_fp16insn_unspec): New.
3603 (neon_vca<cmp_op><mode>): New.
3604 (neon_vca<cmp_op><mode>_fp16insn): New.
3605 (neon_vca<cmp_op_unsp><mode>_fp16insn_unspec): New.
3606 (neon_vc<cmp_op>z<mode>): New.
3607 (neon_vabd<mode>): New.
3608 (neon_v<maxmin>f<mode>): New.
3609 (neon_vp<maxmin>fv4hf: New.
3610 (neon_<fmaxmin_op><mode>): New.
3611 (neon_vrecps<mode>): New.
3612 (neon_vrsqrts<mode>): New.
3613 (neon_vrecpe<mode>): New (VH variant).
3614 (neon_vdup_lane<mode>_internal): New.
3615 (neon_vdup_lane<mode>): New.
3616 (neon_vcvt<sup><mode>): New (VCVTHI variant).
3617 (neon_vcvt<sup><mode>): New (VH variant).
3618 (neon_vcvt<sup>_n<mode>): New (VH variant).
3619 (neon_vcvt<sup>_n<mode>): New (VCVTHI variant).
3620 (neon_vcvt<vcvth_op><sup><mode>): New.
3621 (neon_vmul_lane<mode>): New.
3622 (neon_vmul_n<mode>): New.
3623 * config/arm/unspecs.md (UNSPEC_VCALE): New
3624 (UNSPEC_VCALT): New.
3625 (UNSPEC_VFMA_LANE): New.
3626 (UNSPECS_VFMS_LANE): New.
3628 2016-09-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
3630 * config/s390/s390.md ("*extzv<mode>_zEC12", "*extzv<mode>_z10")
3631 ("*extzv<mode><clobbercc_or_nocc>"):
3632 Correct a typo in a comment.
3634 ("*insv<mode>_zEC12", "*insv<mode>_z10")
3635 ("*insv<mode><clobbercc_or_nocc>"): Ditto.
3636 ("*insv<mode>_zEC12_appendbitsleft")
3637 ("*insv<mode><clobbercc_or_nocc>_appendbitsleft")
3638 ("*insv<mode>_z10_appendbitsleft"): Ditto.
3639 ("*insv<mode>_zEC12_noshift", "*insv<mode>_z10_noshift")
3640 ("*insv<mode><clobbercc_or_nocc>_noshift"): Ditto.
3641 Provide pattern with operands switched.
3642 ("*pre_z10_extv<mode>"):
3643 Use new subst patterns.
3644 ("*extzvdi<clobbercc_or_nocc>_lshiftrt", "*<risbg_n>_ior_and_sr_ze")
3645 ("*extvsidi<clobbercc_or_nocc>", "*<risbg_n>_and_subregdi_rotr")
3646 ("*<risbg_n>_and_subregdi_rotl", "*<risbg_n>_di_and_rot")
3647 ("*insv_z10_noshift_cc", "*insv_z10_noshift_cconly")
3648 ("*<risbg_n>_<mode>_ior_and_lshiftrt")
3649 ("*<risbg_n>_sidi_ior_and_lshiftrt")
3650 ("*trunc_sidi_and_subreg_lshrt<clobbercc_or_nocc>"):
3652 ("*extzv_<mode>_sll", "*extzv_<mode>_srl")
3653 ("*extzv_<mode>_srl<clobbercc_or_nocc>")
3654 ("*extzv_<mode>_sll<clobbercc_or_nocc>"): Renamed patterns, use risbgn
3656 ("SINT"): New mode_iterator with SI, HI, QI.
3657 * config/s390/subst.md ("clobbercc_or_nocc_subst", "z10_or_zEC12_cond")
3658 ("clobbercc_or_nocc", "risbg_n"): New constructs for risbg pattern
3661 2016-09-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
3663 * config/s390/predicates.md ("contiguous_bitmask_operand"): Adapt to
3664 new interface of s390_contiguous_bitmask_p.
3665 ("contiguous_bitmask_nowrap_operand"): New predicate.
3666 ("*anddi3_cc", "*anddi3_cconly", "*anddi3"): Replace NxxDq with NxxDw.
3667 * config/s390/constraints.md ("NxxDw", "NxxSq"): Adapt to new interface
3668 of s390_contiguous_bitmask_p.
3669 ("NxxDw"): Rename NxxDq constraint to NxxDw.
3670 ("NxxSw"): New constraint.
3671 * config/s390/s390.md ("*andsi3_zarch"): Enable bitmask wraparound.
3672 * config/s390/s390-protos.h (s390_contiguous_bitmask_p): Updated
3674 (s390_contiguous_bitmask_nowrap_p): Export.
3675 * config/s390/s390.c (s390_contiguous_bitmask_nowrap_p): New name of
3676 former s390_contiguous_bitmask_p.
3677 (s390_contiguous_bitmask_p): Use s390_contiguous_bitmask_nowrap_p to
3678 detect contiguous bit ranges with wraparound. Change signature to
3679 return START and END position instead of POS and LENGTH.
3680 (s390_contiguous_bitmask_vector_p): Remove extra code for continous bit
3681 ranges with wraparound.
3682 (s390_extzv_shift_ok): Use s390_contiguous_bitmask_nowrap_p.
3683 (s390_contiguous_bitmask_vector_p,s390_extzv_shift_ok,print_operand):
3684 Adapt to new signature of s390_contiguous_bitmask_p.
3686 2016-09-23 Bin Cheng <bin.cheng@arm.com>
3688 * tree-vect-loop-manip.c (create_intersect_range_checks_index): New.
3689 (create_intersect_range_checks): New.
3690 (vect_create_cond_for_alias_checks): Call above function.
3692 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3694 * config/arm/iterators.md (Code iterators): Fix some white-space
3698 (FCVT): Moved from vfp.md.
3699 (VCVT_HF_US_N): New.
3700 (VCVT_SI_US_N): New.
3705 (FCVTI32typename): Moved from vfp.md.
3706 (sup): Add UNSPEC_VCVTA_S, UNSPEC_VCVTA_U, UNSPEC_VCVTM_S,
3707 UNSPEC_VCVTM_U, UNSPEC_VCVTN_S, UNSPEC_VCVTN_U, UNSPEC_VCVTP_S,
3708 UNSPEC_VCVTP_U, UNSPEC_VCVT_HF_S_N, UNSPEC_VCVT_HF_U_N,
3709 UNSPEC_VCVT_SI_S_N, UNSPEC_VCVT_SI_U_N, UNSPEC_VCVTH_S_N,
3710 UNSPEC_VCVTH_U_N, UNSPEC_VCVTH_S and UNSPEC_VCVTH_U.
3712 (fp16_rnd_str): New.
3713 (fp16_rnd_insn): New.
3714 * config/arm/unspecs.md (UNSPEC_VCVT_HF_S_N): New.
3715 (UNSPEC_VCVT_HF_U_N): New.
3716 (UNSPEC_VCVT_SI_S_N): New.
3717 (UNSPEC_VCVT_SI_U_N): New.
3718 (UNSPEC_VCVTH_S): New.
3719 (UNSPEC_VCVTH_U): New.
3720 (UNSPEC_VCVTA_S): New.
3721 (UNSPEC_VCVTA_U): New.
3722 (UNSPEC_VCVTM_S): New.
3723 (UNSPEC_VCVTM_U): New.
3724 (UNSPEC_VCVTN_S): New.
3725 (UNSPEC_VCVTN_U): New.
3726 (UNSPEC_VCVTP_S): New.
3727 (UNSPEC_VCVTP_U): New.
3728 (UNSPEC_VCVTP_S): New.
3729 (UNSPEC_VCVTP_U): New.
3731 (UNSPEC_VRNDA): New.
3732 (UNSPEC_VRNDI): New.
3733 (UNSPEC_VRNDM): New.
3734 (UNSPEC_VRNDN): New.
3735 (UNSPEC_VRNDP): New.
3736 (UNSPEC_VRNDX): New.
3737 * config/arm/vfp.md (<absneg_str>hf2): New.
3739 (neon_v<fp16_rnd_str>hf): New.
3740 (neon_vrndihf): New.
3745 (*mulsf3neghf_vfp): New.
3746 (*negmulhf3_vfp): New.
3747 (*mulsf3addhf_vfp): New.
3748 (*mulhf3subhf_vfp): New.
3749 (*mulhf3neghfaddhf_vfp): New.
3750 (*mulhf3neghfsubhf_vfp): New.
3753 (fmsubhf4_fp16): New.
3757 (neon_vsqrthf): New.
3758 (neon_vrsqrtshf): New.
3759 (FCVT): Move to iterators.md.
3760 (FCVTI32typename): Likewise.
3761 (neon_vcvth<sup>hf): New.
3762 (neon_vcvth<sup>si): New.
3763 (neon_vcvth<sup>_nhf_unspec): New.
3764 (neon_vcvth<sup>_nhf): New.
3765 (neon_vcvth<sup>_nsi_unspec): New.
3766 (neon_vcvth<sup>_nsi): New.
3767 (neon_vcvt<vcvth_op>h<sup>si): New.
3768 (neon_<fmaxmin_op>hf): New.
3770 2016-09-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
3772 * config/s390/s390.md (bitoff, bitoff_plus): Neq mode attributes.
3773 ("*extzv<mode>_zEC12", "*insv<mode>_zEC12", "*insv<mode>_z10")
3774 ("*insv<mode>_zEC12_appendbitsleft")
3775 ("*insv<mode>_z10_appendbitsleft", "*r<noxa>sbg_<mode>_sll")
3776 ("*r<noxa>sbg_<mode>_srl"): Use new attributes.
3778 2016-09-23 Jakub Jelinek <jakub@redhat.com>
3780 * ipa-cp.c (ipcp_store_vr_results): Avoid static local var zero.
3781 * sreal.h (sreal::min, sreal::max): Avoid static local vars,
3782 construct values without normalization.
3783 * tree-ssa-sccvn.c (vn_reference_lookup_3): Don't initialize
3784 static local lhs_ops to vNULL.
3786 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3787 Jiong Wang <jiong.wang@arm.com>
3789 * config/arm/arm.c (coproc_secondary_reload_class): Make HFmode
3790 available when FP16 instructions are available.
3791 (output_move_vfp): Add support for 16-bit data moves.
3792 (arm_validize_comparison): Fix some white-space. Support HFmode
3793 by conversion to SFmode.
3794 * config/arm/arm.md (truncdfhf2): Fix a comment.
3795 (extendhfdf2): Likewise.
3797 (movsicc): Fix some white-space.
3799 (movsfcc): Fix some white-space.
3801 * config/arm/vfp.md (*arm_movhi_vfp): Disable when VFP FP16
3802 instructions are available.
3803 (*thumb2_movhi_vfp): Likewise.
3804 (*arm_movhi_fp16): New.
3805 (*thumb2_movhi_fp16): New.
3806 (*movhf_vfp_fp16): New.
3807 (*movhf_vfp_neon): Disable when VFP FP16 instructions are available.
3808 (*movhf_vfp): Likewise.
3809 (extendhfsf2): Enable when VFP FP16 instructions are available.
3810 (truncsfhf2): Enable when VFP FP16 instructions are available.
3812 2016-09-23 Martin Liska <mliska@suse.cz>
3814 * config/s390/vx-builtins.md: Replace 'adress' with 'address'.
3816 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3818 * config/arm/arm.c (arm_evpc_neon_vuzp): Add support for V8HF and
3820 (arm_evpc_neon_vtrn): Likewise.
3821 (arm_evpc_neon_vrev): Likewise.
3822 (arm_evpc_neon_vext): Likewise.
3823 * config/arm/arm_neon.h (vbsl_f16): New.
3827 (vdup_lane_f16): New.
3828 (vdupq_lane_f16): New.
3841 * config/arm/arm_neon_buillins.def (vdup_n): New (v8hf, v4hf variants).
3842 (vdup_lane): New (v8hf, v4hf variants).
3843 (vext): New (v8hf, v4hf variants).
3844 (vbsl): New (v8hf, v4hf variants).
3845 * config/arm/iterators.md (VDQWH): New.
3847 (V_double_vector_mode): Add V8HF and V4HF. Fix white-space.
3848 (Scalar_mul_8_16): Fix white-space.
3849 (Is_d_reg): Add V4HF and V8HF.
3850 * config/arm/neon.md (neon_vdup_lane<mode>_internal): New.
3851 (neon_vdup_lane<mode>): New.
3852 (neon_vtrn<mode>_internal): Replace VDQW with VDQWH.
3853 (*neon_vtrn<mode>_insn): Likewise.
3854 (neon_vzip<mode>_internal): Likewise. Also fix white-space.
3855 (*neon_vzip<mode>_insn): Likewise
3856 (neon_vuzp<mode>_internal): Likewise.
3857 (*neon_vuzp<mode>_insn): Likewise
3858 * config/arm/vec-common.md (vec_perm_const<mode>): New.
3860 2016-09-23 Jiong Wang <jiong.wang@arm.com>
3861 Matthew Wahab <matthew.wahab@arm.com>
3863 * config/arm/arm.c (output_move_vfp): Weaken assert to allow HImode.
3864 (arm_hard_regno_mode_ok): Allow HImode values in VFP registers.
3865 * config/arm/arm.md (*movhi_bytes): Disable when VFP registers are
3866 available. Also fix some white-space.
3867 * config/arm/vfp.md (*arm_movhi_vfp): New.
3868 (*thumb2_movhi_vfp): New.
3870 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3872 * config/arm/arm-c.c (arm_cpu_builtins): Define
3873 "__ARM_FEATURE_FP16_SCALAR_ARITHMETIC" and
3874 "__ARM_FEATURE_FP16_VECTOR_ARITHMETIC".
3876 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3878 * doc/sourcebuild.texi (ARM-specific attributes): Add anchor for
3879 arm_v8_1a_neon_ok. Add entries for arm_v8_2a_fp16_scalar_ok,
3880 arm_v8_2a_fp16_scalar_hw, arm_v8_2a_fp16_neon_ok and
3881 arm_v8_2a_fp16_neon_hw.
3882 (Add options): Add entries for arm_v8_1a_neon, arm_v8_2a_scalar,
3885 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3887 * doc/sourcebuild.texi (ARM-specific attributes): Add entries for
3888 arm_fp16_alternative_ok and arm_fp16_none_ok.
3890 2016-09-23 Martin Liska <mliska@suse.cz>
3892 * ipa-icf.c (sem_variable::merge): Replace adress with address.
3894 2016-09-23 Matthew Wahab <matthew.wahab@arm.com>
3896 * config/arm/arm-arches.def ("armv8.1-a"): Add FL_CRC32.
3898 ("armv8.2-a+fp16"): New.
3899 * config/arm/arm-protos.h (FL2_ARCH8_2): New.
3900 (FL2_FP16INST): New.
3901 (FL2_FOR_ARCH8_2A): New.
3902 * config/arm/arm-tables.opt: Regenerate.
3903 * config/arm/arm.c (arm_arch8_2): New.
3904 (arm_fp16_inst): New.
3905 (arm_option_override): Set arm_arch8_2 and arm_fp16_inst. Check
3906 for incompatible fp16-format settings.
3907 * config/arm/arm.h (TARGET_VFP_FP16INST): New.
3908 (TARGET_NEON_FP16INST): New.
3909 (arm_arch8_2): Declare.
3910 (arm_fp16_inst): Declare.
3911 * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for
3912 march=armv8.2-a and march=armv8.2-a+fp16.
3913 * config/arm/t-aprofile (Arch Matches): Add entries for armv8.2-a
3915 * doc/invoke.texi (ARM Options): Add "-march=armv8.1-a",
3916 "-march=armv8.2-a" and "-march=armv8.2-a+fp16".
3918 2016-09-23 Martin Liska <mliska@suse.cz>
3920 * doc/extend.texi: Remove fused-madd from i386 target options.
3922 2016-09-23 Martin Liska <mliska@suse.cz>
3924 * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
3927 2016-09-23 Martin Liska <mliska@suse.cz>
3929 * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
3932 2016-09-23 Martin Liska <mliska@suse.cz>
3935 * config/i386/i386.c (ix86_option_override_internal): Change
3936 signature and return false when there's an error related to
3938 (release_options_strings): New function.
3939 (ix86_valid_target_attribute_tree): Call the function.
3941 2016-09-23 Jakub Jelinek <jakub@redhat.com>
3943 * hsa-gen.c (hsa_op_immed::hsa_op_immed Use CONSTRUCTOR_NELTS (...)
3944 instead of vec_safe_length (CONSTRUCTOR_ELTS (...)).
3945 (gen_hsa_ctor_assignment): Likewise.
3946 * print-tree.c (print_node): Likewise.
3947 * tree-dump.c (dequeue_and_dump): Likewise.
3948 * tree-sra.c (sra_modify_constructor_assign): Likewise.
3949 * expr.c (store_constructor): Likewise.
3950 * fold-const.c (operand_equal_p): Likewise.
3951 * tree-pretty-print.c (dump_generic_node): Likewise.
3952 * hsa-brig.c (hsa_op_immed::emit_to_buffer): Likewise.
3953 * ipa-icf-gimple.c (func_checker::compare_operand): Likewise.
3955 2016-09-23 Richard Biener <rguenther@suse.de>
3957 * hooks.h (hook_uint_uintp_false): Declare.
3959 2016-09-22 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
3961 * config/avr/avr.c (avr_rtx_costs_1): Handle DImode MULT.
3962 (avr_address_cost): Replace 61 with MAX_LD_OFFSET(mode).
3964 2016-09-22 Martin Sebor <msebor@redhat.com>
3967 * gimple-ssa-sprintf.c (target_int_min, target_int_max): Use
3968 HOST_BITS_PER_WIDE_INT, make a static local variable auto.
3969 (target_int_min): Correct computation.
3970 (format_integer): Use long long as the argument for the ll length
3972 (format_floating): Use target_int_max().
3973 (get_string_length): Same.
3974 (format_string): Avoid setting the bounded flag for strings
3976 (try_substitute_return_value): Avoid setting range info when
3977 the result isn't bounded.
3978 * varasm.c (assemble_name): Increase buffer size.
3980 2016-09-22 Andre Vieira <andre.simoesdiasvieira@arm.com>
3981 Terry Guo <terry.guo@arm.com>
3983 * target.def (elf_flags_numeric): New target hook.
3984 * targhooks.h (default_asm_elf_flags_numeric): New.
3985 * varasm.c (default_asm_elf_flags_numeric): New.
3986 (default_elf_asm_named_section): Use new target hook.
3987 * config/arm/arm.opt (mpure-code): New.
3988 * config/arm/arm.h (SECTION_ARM_PURECODE): New.
3989 * config/arm/arm.c (arm_asm_init_sections): Add section
3990 attribute to default text section if -mpure-code.
3991 (arm_option_check_internal): Diagnose use of option with
3992 non supported targets and/or options.
3993 (arm_asm_elf_flags_numeric): New.
3994 (arm_function_section): New.
3995 (arm_elf_section_type_flags): New.
3996 * config/arm/elf.h (JUMP_TABLES_IN_TEXT_SECTION): Disable
3998 * gcc/doc/texi (TARGET_ASM_ELF_FLAGS_NUMERIC): New.
3999 * gcc/doc/texi.in (TARGET_ASM_ELF_FLAGS_NUMERIC): Likewise.
4001 2016-09-22 Jan Hubicka <hubicka@ucw.cz>
4003 * regcprop.c (copyprop_hardreg_forward_1): Remove noop moves.
4005 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
4007 * emit-rtl.c (next_cc0_user): Make argument type rtx_insn *.
4008 * rtl.h: Adjust prototype.
4010 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
4012 * emit-rtl.c (next_active_insn): Change argument type to rtx_insn *.
4013 (prev_active_insn): Likewise.
4014 (active_insn_p): Likewise.
4015 * rtl.h: Adjust prototypes.
4016 * cfgcleanup.c (merge_blocks_move_successor_nojumps): Adjust.
4017 * config/arc/arc.md: Likewise.
4018 * config/pa/pa.c (branch_to_delay_slot_p): Likewise.
4019 (branch_needs_nop_p): Likewise.
4020 (use_skip_p): Likewise.
4021 * config/sh/sh.c (gen_block_redirect): Likewise.
4022 (split_branches): Likewise.
4023 * reorg.c (optimize_skip): Likewise.
4024 (fill_simple_delay_slots): Likewise.
4025 (fill_slots_from_thread): Likewise.
4026 (relax_delay_slots): Likewise.
4027 * resource.c (mark_target_live_regs): Likewise.
4029 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
4031 * config/cris/cris.c (cris_asm_output_case_end): Change argument
4033 * emit-rtl.c (next_nonnote_nondebug_insn): Likewise.
4034 (prev_nonnote_nondebug_insn): Likewise.
4035 * config/cris/cris-protos.h: Adjust prototype.
4037 * jump.c (rtx_renumbered_equal_p): Adjust.
4039 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
4041 * emit-rtl.c (prev_real_insn): Change argument type to rtx_insn *.
4042 * rtl.h: Adjust prototype.
4043 * config/sh/sh.md: Adjust.
4044 * dwarf2out.c (add_var_loc_to_decl): Likewise.
4046 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
4048 * emit-rtl.c (next_nondebug_insn): Change argument type to rtx_insn *.
4049 (prev_nondebug_insn): Likewise.
4050 * loop-doloop.c (doloop_condition_get): Likewise.
4051 * rtl.h: Adjust prototype.
4052 * cfgloop.h: Likewise.
4054 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
4056 * emit-rtl.c (next_nonnote_insn): Change argument type to rtx_insn *.
4057 (prev_nonnote_insn): Likewise.
4058 * jump.c (reversed_comparison_code_parts): Likewise.
4059 (reversed_comparison): Likewise.
4060 * rtl.h: Adjust prototypes.
4061 * config/arc/arc.md: Adjust.
4062 * cse.c (find_comparison_args): Likewise.
4063 * reorg.c (redundant_insn): Change return type to rtx_insn *.
4064 (fix_reg_dead_note): Change argument type to rtx_insn *.
4065 (delete_prior_computation): Likewise.
4066 (delete_computation): Likewise.
4067 (fill_slots_from_thread): Adjust.
4068 (relax_delay_slots): Likewise.
4069 * simplify-rtx.c (simplify_unary_operation_1): Likewise.
4070 (simplify_relational_operation_1): Likewise.
4071 (simplify_ternary_operation): Likewise.
4073 2016-09-22 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
4075 * config/arc/arc-protos.h (arc_label_align): Change type of
4076 variables from rtx to rtx_insn *.
4077 * config/arc/arc.c (arc_label_align): Likewise.
4078 * config/arm/arm.c (any_sibcall_could_use_r3): Likewise.
4079 * config/bfin/bfin.c (workaround_speculation): Likewise.
4080 * config/c6x/c6x.c (find_next_cycle_insn): Likewise.
4081 (find_last_same_clock): Likewise.
4082 (reorg_split_calls): Likewise.
4083 * config/cris/cris-protos.h (cris_cc0_user_requires_cmp): Likewise.
4084 * config/cris/cris.c (cris_cc0_user_requires_cmp): Likewise.
4085 * config/h8300/h8300-protos.h (same_cmp_preceding_p): Likewise.
4086 (same_cmp_following_p): Likewise.
4087 * config/h8300/h8300.c (same_cmp_preceding_p): Likewise.
4088 (same_cmp_following_p): Likwise.
4089 * config/m32r/m32r.c (m32r_expand_epilogue): Likewise.
4090 * config/nds32/nds32-protos.h (nds32_target_alignment): Likewise.
4091 * config/nds32/nds32.c (nds32_target_alignment): Likewise.
4092 * config/rl78/rl78.c (rl78_alloc_physical_registers_op2): Likewise.
4093 (rl78_alloc_physical_registers_cmp): Likewise.
4094 (rl78_alloc_physical_registers_umul): Likewise.
4095 (rl78_calculate_death_notes): Likewise.
4096 * config/s390/s390-protos.h (s390_label_align): Likewise.
4097 * config/s390/s390.c (s390_label_align): Likewise.
4098 * config/sh/sh.c (barrier_align): Likewise.
4099 * config/sparc/sparc-protos.h (emit_cbcond_nop): Likewise.
4100 * config/sparc/sparc.c (sparc_asm_function_epilogue): Likewise.
4101 (emit_cbcond_nop): Likewise.
4103 2016-09-22 Martin Liska <mliska@suse.cz>
4106 * ipa-icf.c (sem_variable::merge): Yield merge operation if
4107 alias address matters, not necessarily address of original.
4109 2016-09-22 Richard Biener <rguenther@suse.de>
4112 * gimple-fold.c (fold_array_ctor_reference): Turn asserts into
4115 2016-09-22 Richard Biener <rguenther@suse.de>
4118 * gimple-match-head.c (gimple_resimplify1): Drop TREE_OVERFLOW
4119 from constant folding results.
4120 (gimple_resimplify2): Likewise.
4121 (gimple_resimplify3): Likewise.
4123 2016-09-22 Richard Biener <rguenther@suse.de>
4126 * expr.c (expand_expr_real_1): Guard array access against negative
4129 2016-09-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4131 * gimple-ssa-sprintf.c (format_floating_max): Use GMP_RNDN instead
4133 (format_floating): Likewise.
4135 2016-09-22 Jakub Jelinek <jakub@redhat.com>
4138 * tree-inline.c (remap_gimple_stmt): Set has_simduid_loops
4139 for all IFN_GOMP_SIMD_* internal fns, not just for
4140 IFN_GOMP_SIMD_ORDERED_*.
4142 2016-09-21 Michael Meissner <meissner@linux.vnet.ibm.com>
4145 * config/rs6000/predicates.md (invert_fpmask_comparison_operator):
4146 New predicate that matches the ISA 3.0 XSCMP{EQ,GT,GE}DP
4147 instructions when you want to invert the test.
4148 * config/rs6000/rs6000.md (fpmask<mode>): Use the arguments in the
4149 correct order for XXSEL.
4150 (mov<SFDF:mode><SFDF2:mode>cc_invert_p9): Define the inverted test
4151 for using XSCMP{EQ,GT,GE}DP.
4153 2016-09-21 David Malcolm <dmalcolm@redhat.com>
4155 * genconstants.c (main): Introduce noop_reader and convert call
4156 to read_md_files to a method call.
4157 * genenums.c (main): Likewise.
4158 * genmddeps.c (main): Likewise.
4159 * genpreds.c (write_tm_constrs_h): Replace use of "in_fname" with
4160 rtx_reader_ptr->get_top_level_filename ().
4161 (write_tm_preds_h): Likewise.
4162 (write_insn_preds_c): Likewise.
4163 * gensupport.c (class gen_reader): New subclass of rtx_reader.
4164 (rtx_handle_directive): Convert to...
4165 (gen_reader::handle_unknown_directive): ...this.
4166 (init_rtx_reader_args_cb): Convert return type from bool to
4167 rtx_reader *. Create a gen_reader instance, using it for the
4168 call to read_md_files. Return it if no errors occur.
4169 (init_rtx_reader_args): Convert return type from bool to
4171 * gensupport.h (init_rtx_reader_args_cb): Likewise.
4172 (init_rtx_reader_args_cb): Likewise.
4173 * read-md.c (struct file_name_list): Move to class rtx_reader.
4174 (read_md_file): Delete in favor of rtx_reader::m_read_md_file.
4175 (read_md_filename): Delete in favor of
4176 rtx_reader::m_read_md_filename.
4177 (read_md_lineno): Delete in favor of rtx_reader::m_read_md_lineno.
4178 (in_fname): Delete in favor of rtx_reader::m_toplevel_fname.
4179 (base_dir): Delete in favor of rtx_reader::m_base_dir.
4180 (first_dir_md_include): Delete in favor of
4181 rtx_reader::m_first_dir_md_include.
4182 (last_dir_md_include_ptr): Delete in favor of
4183 rtx_reader::m_last_dir_md_include_ptr.
4184 (max_include_len): Delete.
4185 (rtx_reader_ptr): New.
4186 (fatal_with_file_and_line): Use get_filename and get_lineno
4187 accessors of rtx_reader_ptr.
4188 (require_char_ws): Likewise.
4189 (rtx_reader::read_char): New method, based on ::read_char.
4190 (rtx_reader::unread_char): New method, based on ::unread_char.
4191 (read_escape): Use get_filename and get_lineno accessors of
4193 (read_braced_string): Use get_lineno accessor of rtx_reader_ptr.
4194 (read_string): Use get_filename and get_lineno accessors of
4196 (rtx_reader::rtx_reader): New ctor.
4197 (rtx_reader::~rtx_reader): New dtor.
4198 (handle_include): Convert from a function to...
4199 (rtx_reader::handle_include): ...this method, converting
4200 handle_directive from a callback to a virtual function.
4201 (handle_file): Likewise, converting to...
4202 (rtx_reader::handle_file): ...this method.
4203 (handle_toplevel_file): Likewise, converting to...
4204 (rtx_reader::handle_toplevel_file): ...this method.
4205 (rtx_reader::get_current_location): New method.
4206 (parse_include): Convert from a function to...
4207 (rtx_reader::add_include_path): ...this method, dropping redundant
4208 update to unused max_include_len.
4209 (read_md_files): Convert from a function to...
4210 (rtx_reader::read_md_files): ...this method, converting
4211 handle_directive from a callback to a virtual function.
4212 (noop_reader::handle_unknown_directive): New method.
4213 * read-md.h (directive_handler_t): Delete this typedef.
4215 (read_md_file): Delete.
4216 (read_md_lineno): Delete.
4217 (read_md_filename): Delete.
4218 (class rtx_reader): New class.
4219 (rtx_reader_ptr): New decl.
4220 (class noop_reader): New subclass of rtx_reader.
4221 (read_char): Reimplement in terms of rtx_reader::read_char.
4222 (unread_char): Reimplement in terms of rtx_reader::unread_char.
4223 (read_md_files): Delete.
4224 * read-rtl.c (read_rtx_code): Update for deletion of globals
4225 read_md_filename and read_md_lineno.
4227 2016-09-21 Jason Merrill <jason@redhat.com>
4229 * input.h (from_macro_definition_at): New.
4231 2016-09-21 Segher Boessenkool <segher@kernel.crashing.org>
4233 * doc/rtl.texi (JUMP_LABEL): Document RETURN and SIMPLE_RETURN values.
4235 2016-09-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
4237 PR tree-optimization/77550
4238 * tree-vect-stmts.c (create_array_ref): Change parameters.
4239 (get_group_alias_ptr_type): New function.
4240 (vectorizable_store, vectorizable_load): Use get_group_alias_ptr_type.
4242 2016-09-21 Marek Polacek <polacek@redhat.com>
4244 * gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length):
4245 Add falls through comment.
4247 2016-09-21 Richard Biener <rguenther@suse.de>
4249 * dwarf2out.c (remove_child_with_prev): Clear child->die_sib.
4250 (replace_child): Likewise.
4251 (remove_child_TAG): Adjust.
4252 (move_marked_base_types): Likewise.
4253 (prune_unused_types_prune): Clear die_sib of removed children.
4255 2016-09-21 Georg-Johann Lay <avr@gjlay.de>
4258 * config/avr/avr.c (avr_notice_update_cc) [CC_NONE]: If insn
4259 touches some regs mentioned in cc_status, do CC_STATUS_INIT.
4261 2016-09-21 Richard Biener <rguenther@suse.de>
4263 PR tree-optimization/77648
4264 * tree-ssa-structalias.c (process_constraint): Handle all DEREF
4266 (make_transitive_closure_constraints): Adjust comment.
4267 (make_any_offset_constraints): New function.
4268 (handle_rhs_call): Make sure to first expand a pointer to all
4269 subfields before transitively closing it.
4270 (handle_const_call): Likewise. Properly expand returned
4272 (handle_pure_call): Likewise.
4274 2016-09-21 Richard Biener <rguenther@suse.de>
4275 Jakub Jelinek <jakub@redhat.com>
4277 PR tree-optimization/77621
4278 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Split
4279 group at non-vectorizable stmts.
4281 2016-09-21 Kugan Vivekanandarajah <kuganv@linaro.org>
4283 PR tree-optimization/72835
4284 * tree-ssa-reassoc.c (make_new_ssa_for_def): New.
4285 (make_new_ssa_for_all_defs): Likewise.
4286 (zero_one_operation): Replace all SSA_NAMEs defined in the chain.
4288 2016-09-20 Martin Sebor <msebor@redhat.com>
4291 * Makefile.in (OBJS): Add gimple-ssa-sprintf.o.
4292 * config/linux.h (TARGET_PRINTF_POINTER_FORMAT): Redefine.
4293 * config/linux.c (gnu_libc_printf_pointer_format): New function.
4294 * config/sol2.h (TARGET_PRINTF_POINTER_FORMAT): Same.
4295 * config/sol2.c (solaris_printf_pointer_format): New function.
4296 * doc/invoke.texi (-Wformat-length, -fprintf-return-value): New
4298 * doc/tm.texi.in (TARGET_PRINTF_POINTER_FORMAT): Document.
4299 * doc/tm.texi: Regenerate.
4300 * gimple-fold.h (get_range_strlen): New function.
4301 (get_maxval_strlen): Declare existing function.
4302 * gimple-fold.c (get_range_strlen): Add arguments and compute both
4303 maximum and minimum.
4304 (get_range_strlen): Define overload.
4305 (get_maxval_strlen): Adjust.
4306 * gimple-ssa-sprintf.c: New file and pass.
4307 * passes.def (pass_sprintf_length): Add new pass.
4308 * targhooks.h (default_printf_pointer_format): Declare new function.
4309 (gnu_libc_printf_pointer_format): Same.
4310 (solaris_libc_printf_pointer_format): Same.
4311 * targhooks.c (default_printf_pointer_format): Define new function.
4312 * tree-pass.h (make_pass_sprintf_length): Declare new function.
4313 * print-tree.c: Increase buffer size.
4315 2016-09-21 Kugan Vivekanandarajah <kuganv@linaro.org>
4317 * tree-vrp.c (get_value_range): Teach PARM_DECL to use ipa-vrp results.
4319 2016-09-21 Kugan Vivekanandarajah <kuganv@linaro.org>
4321 * common.opt: New option -fipa-vrp.
4322 * ipa-cp.c (ipa_get_vr_lat): New.
4323 (ipcp_vr_lattice::print): Likewise.
4324 (print_all_lattices): Call ipcp_vr_lattice::print.
4325 (ipcp_vr_lattice::meet_with): New.
4326 (ipcp_vr_lattice::meet_with_1): Likewise.
4327 (ipcp_vr_lattice::top_p): Likewise.
4328 (ipcp_vr_lattice::bottom_p): Likewsie.
4329 (ipcp_vr_lattice::set_to_bottom): Likewise.
4330 (set_all_contains_variable): Call VR set_to_bottom.
4331 (initialize_node_lattices): Init VR lattices.
4332 (propagate_vr_accross_jump_function): New.
4333 (propagate_constants_accross_call): Call
4334 propagate_vr_accross_jump_function.
4335 (ipcp_store_vr_results): New.
4336 (ipcp_driver): Handle VR.
4337 * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Handle VR.
4338 (ipa_set_jf_unknown): Likewise.
4339 (ipa_compute_jump_functions_for_edge): Likewise.
4340 (ipa_node_params_t::duplicate): Likewise.
4341 (ipa_write_jump_function): Likewise.
4342 (ipa_read_jump_function): Likewise.
4343 (write_ipcp_transformation_info): Likewise.
4344 (read_ipcp_transformation_info): Likewise.
4345 (ipcp_update_vr): New.
4346 (ipcp_transform_function): Handle VR.
4347 * ipa-prop.h (struct ipa_vr): New.
4348 * cgraph.c: Include tree-vrp.h.
4349 * cgraphunit.c: Likewise.
4350 * ipa-utils.c: Likewise.
4353 * toplev.c: Likewise.
4354 * ipa-devirt.c: Likewise.
4355 * ipa-inline-transform.c: Likewise.
4356 * ipa-inline.c: Likewise.
4357 * ipa-profile.c: Likewise.
4359 2016-09-21 Kugan Vivekanandarajah <kuganv@linaro.org>
4361 * doc/invoke.texi: Document -fdump-tree-evrp.
4362 * passes.def: Define new pass_early_vrp.
4363 * timevar.def: Define new TV_TREE_EARLY_VRP.
4364 * tree-pass.h (make_pass_early_vrp): New.
4365 * tree-ssa-propagate.c: Make replace_uses_in non static.
4366 * tree-ssa-propagate.h: Export replace_uses_in.
4367 * tree-vrp.c (extract_range_for_var_from_comparison_expr): New.
4368 (extract_range_from_assert): Factor out
4369 extract_range_for_var_from_comparison_expr.
4370 (vrp_initialize_lattice): New.
4371 (vrp_initialize): Factor out vrp_initialize_lattice.
4372 (vrp_valueize): Fix it to reject complex value ranges.
4373 (vrp_free_lattice): New.
4374 (evrp_dom_walker::before_dom_children): Likewise.
4375 (evrp_dom_walker::after_dom_children): Likewise.
4376 (evrp_dom_walker::push_value_range): Likewise.
4377 (evrp_dom_walker::pop_value_range): Likewise.
4378 (execute_early_vrp): Likewise.
4379 (execute_vrp): Call vrp_initialize_lattice and vrp_free_lattice.
4380 (make_pass_early_vrp): New.
4382 2016-09-20 Uros Bizjak <ubizjak@gmail.com>
4384 * config/i386/i386.md (mult->ashift peephole2s): Use pow2p_hwi
4385 instead of exact_log2.
4387 2016-09-20 Uros Bizjak <ubizjak@gmail.com>
4390 * config/i386/i386.c (ix86_preferred_simd_mode) <case DFmode>:
4391 Don't return word_mode for !TARGET_VECTORIZE_DOUBLE.
4392 (ix86_add_stmt_cost): Penalize DFmode vector operations
4393 for !TARGET_VECTORIZE_DOUBLE.
4395 2016-09-20 Gerald Pfeifer <gerald@pfeifer.com>
4397 * doc/invoke.texi (Warning Options): Simplify language.
4398 (Optimize Options): Complete sentence.
4400 2016-09-20 David Edelsohn <dje.gcc@gmail.com>
4402 * dbxout.c (xcoff_debug_hooks): Add filename parameter to
4405 2016-09-20 Michael Meissner <meissner@linux.vnet.ibm.com>
4408 * config/rs6000/rs6000.c (rs6000_expand_vector_init): For V4SF
4409 inits on power8 and above, use the VMRGEW instruction instead of a
4412 * config/rs6000/altivec.md (UNSPEC_VMRGEW_DIRECT): New unspec.
4413 (p8_vmrgew_v4sf_direct): New VMRGEW insn for V4SF floating
4416 2016-09-20 Tamar Christina <tamar.christina@arm.com>
4418 * config/aarch64/arm_neon.h
4419 (vst2_s64, vst2_u64, vst2_f64, vst2_s8): Add missing attributes.
4420 (vst3_s64, vst3_u64, vst3_f64, vst3_s8): Likewise.
4421 (vst4_s64, vst4_u64, vst4_f64, vst4_s8): Likewise.
4423 2016-09-20 Bernd Edlinger <bernd.edlinger@hotmail.de>
4425 * config/var/vax.h (ELIMINABLE_REGS): Define.
4426 (INITIAL_ELIMINATION_OFFSET): Define.
4428 2016-09-20 Jakub Jelinek <jakub@redhat.com>
4431 * builtins.c (fold_builtin_atomic_always_lock_free): Only look through
4432 cast to void * if the cast is from some other pointer type.
4434 2016-09-20 Richard Biener <rguenther@suse.de>
4436 PR tree-optimization/77646
4437 * tree-ssa-sccvn.c (visit_reference_op_call): Always value-number
4440 2016-09-20 Tamar Christina <tamar.christina@arm.com>
4442 * config/aarch64/arm_neon.h: Add gnu_inline and artificial
4443 attributes to all inlined functions and make them extern.
4445 2016-09-20 Richard Biener <rguenther@suse.de>
4447 * debug.h (gcc_debug_hooks): Add filename parameter to early_finish
4449 * debug.c (do_nothing_debug_hooks): Adjust.
4450 * dbxout.c (dbx_debug_hooks): Likewise.
4451 * sdbout.c (sdb_debug_hooks): Likewise.
4452 * dwarf2out.c (dwarf2_lineno_debug_hooks): Likewise.
4453 (dwarf2out_finish): Move producer, filename and
4455 (dwarf2out_early_finish): ... here. Remove in_lto_p special-casing.
4456 * cgraphunit.c (symbol_table::finalize_compilation_unit): Adjust.
4458 2016-09-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
4461 * doc/invoke.texi: Document -Wint-in-bool-context.
4464 * dwarf2out.c (output_loc_operands): Fix an assertion.
4466 2016-09-19 Joseph Myers <joseph@codesourcery.com>
4468 * ginclude/float.h [__STDC_WANT_IEC_60559_BFP_EXT__]
4469 (CR_DECIMAL_DIG): New macro.
4471 2016-09-19 Joseph Myers <joseph@codesourcery.com>
4473 * ginclude/stddef.h (max_align_t) [__i386__]: Add __float128
4476 2016-09-19 Vladimir Makarov <vmakarov@redhat.com>
4478 PR rtl-optimization/77416
4479 * lra-remat.c (operand_to_remat): Process hard coded insn
4482 2016-09-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4484 * simplify-rtx.c (simplify_relational_operation_1): Add transformation
4485 (GTU (PLUS a C) (C - 1)) --> (LTU a -C).
4487 2016-09-19 Segher Boessenkool <segher@kernel.crashing.org>
4489 * target.def (lra_p): Wordsmithing.
4490 * doc/tm.texi: Regenerate.
4492 2016-09-19 Jakub Jelinek <jakub@redhat.com>
4493 Jan Hubicka <jh@suse.cz>
4496 * cgraph.c (cgraph_node::rtl_info): Pass &avail to
4497 ultimate_alias_target call, return NULL if avail < AVAIL_AVAILABLE.
4498 Call ultimate_alias_target just once, not up to 4 times.
4500 2016-09-19 Richard Biener <rguenther@suse.de>
4502 * dwarf2out.c (early_dwarf_finished): New global.
4503 (set_early_dwarf::set_early_dwarf): Assert early_dwarf_finished
4505 (dwarf2out_early_finish): Set early_dwarf_finished at the end,
4506 if called from LTO exit early.
4507 (dwarf2out_late_global_decl): When being during the early
4508 debug phase do not add locations but only const value attributes.
4509 Adjust the way we generate early DIEs for LTO.
4511 2016-09-19 Richard Biener <rguenther@suse.de>
4514 * tree-data-ref.c (analyze_subscript_affine_affine): Use the
4515 proper niter to bound the loops.
4517 2016-09-19 Richard Biener <rguenther@suse.de>
4519 PR tree-optimization/77514
4520 * tree-ssa-pre.c (create_expression_by_pieces): Optimize
4521 search for folded stmt.
4523 2016-09-17 Jan Hubicka <hubicka@ucw.cz>
4525 * passes.def (pass_early_thread_jumps): Schedule after forwprop.
4526 * tree-pass.h (make_pass_early_thread_jumps): Declare.
4527 * tree-ssa-threadbackward.c (fsm_find_thread_path,
4528 fsm_find_thread_path, profitable_jump_thread_path,
4529 fsm_find_control_statement_thread_paths,
4530 find_jump_threads_backwards): Add speed_p parameter.
4531 (pass_data_early_thread_jumps): New pass.
4532 (make_pass_early_thread_jumps): New function.
4534 2016-09-17 Andreas Schwab <schwab@suse.de>
4536 * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Add cast.
4537 * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
4539 2016-09-16 Eric Botcazou <ebotcazou@adacore.com>
4541 * recog.c (rest_of_handle_split_after_reload): Delete.
4542 (pass_split_after_reload::gate): New method.
4543 (pass_split_after_reload::execute): Call split_all_insns directly.
4545 2016-09-16 Jonathan Wakely <jwakely@redhat.com>
4547 * doc/extend.texi (Integer Overflow Builtins): Fix type of out
4548 parameters for functions taking long long arguments.
4550 2016-09-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
4553 * config/rs6000/rs6000.c (rtx_is_swappable_p): Add support for
4554 splat with truncate.
4556 2016-09-16 Jason Merrill <jason@redhat.com>
4558 * hwint.h (least_bit_hwi, pow2_or_zerop, pow2p_hwi, ctz_or_zero):
4560 * hwint.c (exact_log2): Use pow2p_hwi.
4561 (ctz_hwi, ffs_hwi): Use least_bit_hwi.
4562 * alias.c (memrefs_conflict_p): Use pow2_or_zerop.
4563 * builtins.c (get_object_alignment_2, get_object_alignment)
4564 (get_pointer_alignment, fold_builtin_atomic_always_lock_free): Use
4566 * calls.c (compute_argument_addresses, store_one_arg): Use
4568 * cfgexpand.c (expand_one_stack_var_at): Use least_bit_hwi.
4569 * combine.c (force_to_mode): Use least_bit_hwi.
4570 (contains_muldiv, find_split_point, combine_simplify_rtx)
4571 (simplify_if_then_else, simplify_set, force_to_mode)
4572 (if_then_else_cond, simplify_and_const_int_1)
4573 (simplify_compare_const): Use pow2p_hwi.
4574 * cse.c (fold_rtx): Use pow2p_hwi.
4575 * emit-rtl.c (set_mem_attributes_minus_bitpos, adjust_address_1):
4577 * expmed.c (synth_mult, expand_divmod): Use ctz_or_zero, ctz_hwi.
4578 (init_expmed_one_conv): Use pow2p_hwi.
4579 * expr.c (is_aligning_offset): Use pow2p_hwi.
4580 * fold-const.c (round_up_loc, round_down_loc): Use pow2_or_zerop.
4581 (fold_binary_loc): Use pow2p_hwi.
4582 * function.c (assign_parm_find_stack_rtl): Use least_bit_hwi.
4583 * gimple-fold.c (gimple_fold_builtin_memory_op): Use pow2p_hwi.
4584 * gimple-ssa-strength-reduction.c (replace_ref): Use least_bit_hwi.
4585 * hsa-gen.c (gen_hsa_addr_with_align, hsa_bitmemref_alignment):
4587 * ifcvt.c (noce_try_store_flag_constants): Use pow2p_hwi.
4588 * ipa-cp.c (ipcp_alignment_lattice::meet_with_1): Use least_bit_hwi.
4589 * ipa-prop.c (ipa_modify_call_arguments): Use least_bit_hwi.
4590 * omp-low.c (oacc_loop_fixed_partitions)
4591 (oacc_loop_auto_partitions): Use least_bit_hwi.
4592 * rtlanal.c (nonzero_bits1): Use ctz_or_zero.
4593 * stor-layout.c (place_field): Use least_bit_hwi.
4594 * tree-pretty-print.c (dump_generic_node): Use pow2p_hwi.
4595 * tree-sra.c (build_ref_for_offset): Use least_bit_hwi.
4596 * tree-ssa-ccp.c (ccp_finalize): Use least_bit_hwi.
4597 * tree-ssa-math-opts.c (bswap_replace): Use least_bit_hwi.
4598 * tree-ssa-strlen.c (handle_builtin_memcmp): Use pow2p_hwi.
4599 * tree-vect-data-refs.c (vect_analyze_group_access_1)
4600 (vect_grouped_store_supported, vect_grouped_load_supported)
4601 (vect_permute_load_chain, vect_shift_permute_load_chain)
4602 (vect_transform_grouped_load): Use pow2p_hwi.
4603 * tree-vect-generic.c (expand_vector_divmod): Use ctz_or_zero.
4604 * tree-vect-patterns.c (vect_recog_divmod_pattern): Use ctz_or_zero.
4605 * tree-vect-stmts.c (vectorizable_mask_load_store): Use
4607 * tsan.c (instrument_expr): Use least_bit_hwi.
4608 * var-tracking.c (negative_power_of_two_p): Use pow2_or_zerop.
4610 2016-09-16 Andreas Schwab <schwab@suse.de>
4612 * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Use parameter
4614 * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
4616 2016-09-16 Jakub Jelinek <jakub@redhat.com>
4619 * combine.c (rest_of_handle_combine): If any edges have been purged,
4620 free dominators if available.
4622 2016-09-16 Jakub Jelinek <jakub@redhat.com>
4623 Eric Botcazou <ebotcazou@adacore.com>
4626 * internal-fn.c (expand_arith_overflow) <case MINUS_EXPR>: Don't fall
4627 through into expand_addsub_overflow after expand_neg_overflow.
4629 2016-09-15 David Malcolm <dmalcolm@redhat.com>
4631 * diagnostic-show-locus.c
4632 (selftest::test_fixit_insert_containing_newline): New function.
4633 (selftest::test_fixit_replace_containing_newline): New function.
4634 (selftest::diagnostic_show_locus_c_tests): Call the above.
4636 2016-09-15 Bin Cheng <bin.cheng@arm.com>
4638 PR tree-optimization/77503
4639 * tree-vect-loop.c (vectorizable_reduction): Record reduction
4640 code for CONST_COND_REDUCTION at analysis stage and use it at
4642 * tree-vectorizer.h (struct _stmt_vec_info): New field.
4643 (STMT_VINFO_VEC_CONST_COND_REDUC_CODE): New macro.
4644 * tree-vect-stmts.c (new_stmt_vec_info): Initialize above new
4647 2016-09-15 Richard Biener <rguenther@suse.de>
4650 * fold-const.c (split_tree): Do not split constant ~X.
4652 2016-09-15 Jakub Jelinek <jakub@redhat.com>
4654 PR rtl-optimization/77425
4655 * sched-int.h (sd_iterator_cond): Don't update it_ptr->linkp if list
4659 * config/i386/i386.c (ix86_parse_stringop_strategy_string): Simplify,
4660 use %qs instead of %s where desirable, use argument instead of arg in
4661 the diagnostic wording, add list of supported strategies and
4663 (ix86_option_override_internal): Emit target("m...") instead of
4664 option("m...") in the diagnostic. Use %qs instead of %s in invalid
4665 -march/-mtune option diagnostic. Add list of supported arches/tunings
4666 and spellcheck hint. Remove prefix, suffix and sw variables, use
4667 main_args_p ? "..." : "..." in diagnostics to make translation
4670 2016-09-15 Richard Biener <rguenther@suse.de>
4672 * dwarf2asm.h (dw2_asm_output_offset): Add overload with
4673 extra offset argument.
4674 * dwarf2asm.c (dw2_asm_output_offset): Implement that.
4675 * doc/tm.texi.in (ASM_OUTPUT_DWARF_OFFSET): Adjust documentation
4676 to reflect new offset parameter.
4677 * doc/tm.texi: Regenerate.
4678 * config/darwin.h (ASM_OUTPUT_DWARF_OFFSET): Adjust.
4679 * config/darwin-protos.h (darwin_asm_output_dwarf_delta): Add
4681 (darwin_asm_output_dwarf_offset): Likewise.
4682 * config/darwin.c (darwin_asm_output_dwarf_delta): Add offset
4684 (darwin_asm_output_dwarf_offset): Pass offset argument through.
4685 * config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): Adjust.
4686 * config/i386/cygmin.h (ASM_OUTPUT_DWARF_OFFSET): Likewise.
4688 2016-09-15 Chung-Lin Tang <cltang@codesourcery.com>
4691 * ipa-icf.c (set_alias_uids): New function.
4692 (sem_variable::merge): Use set_alias_uids to set DECL_PT_UID of
4693 all the merged variable's referring aliases.
4695 2016-09-15 Richard Biener <rguenther@suse.de>
4697 PR tree-optimization/77514
4698 * tree-ssa-pre.c (create_expression_by_pieces): Handle garbage
4699 only forced_stmts sequence.
4701 2016-09-15 Kugan Vivekanandarajah <kuganv@linaro.org>
4703 * tree-ssanames.h (FOR_EACH_SSA_NAME): New.
4704 * cfgexpand.c (update_alias_info_with_stack_vars): Use
4705 FOR_EACH_SSA_NAME to iterate over SSA variables.
4706 (pass_expand::execute): Likewise.
4707 * omp-simd-clone.c (ipa_simd_modify_function_body): Likewise.
4708 * tree-cfg.c (dump_function_to_file): Likewise.
4709 * tree-into-ssa.c (pass_build_ssa::execute): Likewise.
4710 (update_ssa): Likewise.
4711 * tree-ssa-alias.c (dump_alias_info): Likewise.
4712 * tree-ssa-ccp.c (ccp_finalize): Likewise.
4713 * tree-ssa-coalesce.c (build_ssa_conflict_graph): Likewise.
4714 (create_outofssa_var_map): Likewise.
4715 (coalesce_ssa_name): Likewise.
4716 * tree-ssa-operands.c (dump_immediate_uses): Likewise.
4717 * tree-ssa-pre.c (compute_avail): Likewise.
4718 * tree-ssa-sccvn.c (init_scc_vn): Likewise.
4719 (scc_vn_restore_ssa_info): Likewise.
4720 (free_scc_vn): Likwise.
4721 (run_scc_vn): Likewise.
4722 * tree-ssa-structalias.c (compute_points_to_sets): Likewise.
4723 * tree-ssa-ter.c (new_temp_expr_table): Likewise.
4724 * tree-ssa-copy.c (fini_copy_prop): Likewise.
4725 * tree-ssa.c (verify_ssa): Likewise.
4727 2016-09-14 Matthew Fortune <matthew.fortune@imgtec.com>
4729 * config.gcc (mips*-mti-elf*, mips*-mti-linux*): Set mips32r2
4730 and mips64r2 as default 32-bit and 64-bit architectures.
4731 (mips*-img-elf*, mips*-img-linux*): Set mips32r6 and mips64r6
4732 as default 32-bit and 64-bit architectures.
4734 2016-09-14 Pat Haugen <pthaugen@us.ibm.com>
4736 * loop-unroll.c (unroll_loop_runtime_iterations): Set probability
4739 2016-09-14 Segher Boessenkool <segher@kernel.crashing.org>
4741 * target.def (lra_p): Change commentary (for the manual) for the
4743 * doc/tm.texi: Regenerate.
4745 2016-09-14 Segher Boessenkool <segher@kernel.crashing.org>
4747 * config/aarch64/aarch64.c (TARGET_LRA_P): Delete macro.
4748 * config/arm/arm.c (TARGET_LRA_P): Delete macro.
4749 * config/i386/i386.c (TARGET_LRA_P): Delete macro.
4750 * config/nds32/nds32.c (TARGET_LRA_P): Delete macro.
4752 2016-09-14 Segher Boessenkool <segher@kernel.crashing.org>
4754 * targhooks.c (default_lra_p): Return true instead of false.
4756 2016-09-14 Segher Boessenkool <segher@kernel.crashing.org>
4758 * config/alpha/alpha.c (TARGET_LRA_P): New macro, defined to
4759 hook_bool_void_false.
4760 * config/avr/avr.c: Ditto.
4761 * config/bfin/bfin.c: Ditto.
4762 * config/c6x/c6x.c: Ditto.
4763 * config/cr16/cr16.c: Ditto.
4764 * config/cris/cris.c: Ditto.
4765 * config/epiphany/epiphany.c: Ditto.
4766 * config/fr30/fr30.c: Ditto.
4767 * config/frv/frv.c: Ditto.
4768 * config/h8300/h8300.c: Ditto.
4769 * config/ia64/ia64.c: Ditto.
4770 * config/iq2000/iq2000.c: Ditto.
4771 * config/lm32/lm32.c: Ditto.
4772 * config/m32c/m32c.c: Ditto.
4773 * config/m32r/m32r.c: Ditto.
4774 * config/m68k/m68k.c: Ditto.
4775 * config/mcore/mcore.c: Ditto.
4776 * config/microblaze/microblaze.c: Ditto.
4777 * config/mmix/mmix.c: Ditto.
4778 * config/mn10300/mn10300.c: Ditto.
4779 * config/moxie/moxie.c: Ditto.
4780 * config/msp430/msp430.c: Ditto.
4781 * config/nios2/nios2.c: Ditto.
4782 * config/nvptx/nvptx.c: Ditto.
4783 * config/pa/pa.c: Ditto.
4784 * config/pdp11/pdp11.c: Ditto.
4785 * config/rl78/rl78.c: Ditto.
4786 * config/sparc/sparc.c: Ditto.
4787 * config/spu/spu.c: Ditto.
4788 * config/stormy16/stormy16.c: Ditto.
4789 * config/tilegx/tilegx.c: Ditto.
4790 * config/tilepro/tilepro.c: Ditto.
4791 * config/v850/v850.c: Ditto.
4792 * config/vax/vax.c: Ditto.
4793 * config/visium/visium.c: Ditto.
4794 * config/xtensa/xtensa.c: Ditto.
4796 2016-09-14 Jakub Jelinek <jakub@redhat.com>
4799 * tsan.c: Include target.h.
4800 (enum tsan_atomic_action): Add bool_clear and bool_test_and_set.
4801 (BOOL_CLEAR, BOOL_TEST_AND_SET): Define.
4802 (tsan_atomic_table): Add BUILT_IN_ATOMIC_CLEAR and
4803 BUILT_IN_ATOMIC_TEST_AND_SET entries.
4804 (instrument_builtin_call): Handle bool_clear and bool_test_and_set.
4806 2016-09-14 Bernd Edlinger <bernd.edlinger@hotmail.de>
4807 Martin Liska <mliska@suse.cz>
4810 * predict.c (force_edge_cold): Add braces to a condition.
4812 2016-09-13 Bernd Edlinger <bernd.edlinger@hotmail.de>
4814 PR rtl-optimization/77289
4815 * lra-constraints.c (get_final_hard_regno): Removed.
4816 (get_hard_regno): Add new parameter final_p.
4817 (get_reg_class): Directly call lra_get_elimination_hard_regno.
4818 (operands_match_p): Adjust call to get_hard_regno.
4819 (uses_hard_regs_p): Likewise.
4820 (process_alt_operands): Likewise.
4822 2016-09-13 Joe Seymour <joe.s@somniumtech.com>
4825 * config/msp430/msp430.c (msp430_start_function): Emit an error
4826 if a function is both weak and specifies an interrupt number.
4828 2016-09-13 Jakub Jelinek <jakub@redhat.com>
4830 PR tree-optimization/77454
4831 * tree-ssa-dom.c (optimize_stmt): Set modified flag on stmt after
4832 changing GIMPLE_COND. Move update_stmt_if_modified call after this.
4835 2016-09-13 Tamar Christina <tamar.christina@arm.com>
4837 * config/aarch64/aarch64-builtins.c
4838 (aarch64_init_simd_builtins): Fix builtin type signature printing.
4840 2016-09-13 Uros Bizjak <ubizjak@gmail.com>
4842 * config/alpha/alpha.c (alpha_pass_by_reference): Pass un-named
4843 SFmode and SCmode arguments by reference.
4845 2016-09-13 David Malcolm <dmalcolm@redhat.com>
4847 * diagnostic-show-locus.c (selftest::test_one_liner_fixit_insert):
4849 (selftest::test_one_liner_fixit_insert_before): ...this, and update
4850 for renaming of add_fixit_insert to add_fixit_insert_before.
4851 (selftest::test_one_liner_fixit_insert_after): New function.
4852 (selftest::test_one_liner_fixit_validation_adhoc_locations):
4853 Update for renaming of add_fixit_insert to add_fixit_insert_before.
4854 (selftest::test_one_liner_many_fixits): Likewise.
4855 (selftest::test_diagnostic_show_locus_one_liner): Update for
4856 renaming, call new test function.
4857 (selftest::test_diagnostic_show_locus_fixit_lines): Update for
4858 renaming of add_fixit_insert to add_fixit_insert_before.
4859 (selftest::test_fixit_consolidation): Likewise.
4860 * diagnostic.c (selftest::test_print_parseable_fixits_insert):
4862 * edit-context.c (selftest::test_applying_fixits_insert): Rename to...
4863 (selftest::test_applying_fixits_insert_before): ...this.
4864 (selftest::test_applying_fixits_insert): Update for renaming of
4865 add_fixit_insert to add_fixit_insert_before.
4866 (selftest::test_applying_fixits_insert_after): New function.
4867 (selftest::test_applying_fixits_insert_after_at_line_end): New
4869 (selftest::test_applying_fixits_insert_after_failure): New function.
4870 (selftest::test_applying_fixits_multiple): Update for renaming of
4871 add_fixit_insert to add_fixit_insert_before.
4872 (selftest::change_line): Likewise.
4873 (selftest::test_applying_fixits_unreadable_file): Likewise.
4874 (selftest::test_applying_fixits_line_out_of_range): Likewise.
4875 (selftest::test_applying_fixits_column_validation): Likewise.
4876 (selftest::test_applying_fixits_column_validation): Likewise.
4877 (selftest::edit_context_c_tests): Update for renamed test function;
4878 call new test functions.
4880 2016-09-13 Pat Haugen <pthaugen@us.ibm.com>
4882 PR tree-optimization/77536
4883 PR rtl-optimization/68212
4884 * config/rs6000/rs6000.md (div->recip splitter): Remove
4885 optimize_insn_for_speed_p condition.
4887 2016-09-13 Maciej W. Rozycki <macro@imgtec.com>
4889 * optabs.c (prepare_cmp_insn): Update documentation comment.
4891 2016-09-13 Jakub Jelinek <jakub@redhat.com>
4892 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4895 * opts.h (candidates_list_and_hint): Declare.
4896 * opts-common.c (candidates_list_and_hint): New function.
4897 (cmdline_handle_error): Use it.
4899 2016-09-12 David Malcolm <dmalcolm@redhat.com>
4901 * edit-context.c (edited_line::get_len): New accessor.
4902 (edited_file::print_diff): Split out hunk-printing into...
4903 (edited_file::print_diff_hunk): New method.
4904 (edited_file::print_diff_line): New method.
4906 2016-09-12 Andrew Pinski <apinski@cavium.com>
4908 * config/aarch64/aarch64-tuning-flags.def (SLOW_UNALIGNED_LDPW):
4910 * config/aarch64/aarch64.c (thunderx_tunings): Enable
4911 AARCH64_EXTRA_TUNE_SLOW_UNALIGNED_LDPW.
4912 (aarch64_operands_ok_for_ldpstp): Return false if
4913 AARCH64_EXTRA_TUNE_SLOW_UNALIGNED_LDPW and the mode
4914 was SImode and the alignment is less than 8 byte.
4915 (aarch64_operands_adjust_ok_for_ldpstp): Likewise.
4917 2016-09-12 Orlando Arias <oarias@knights.ucf.edu>
4920 * config/msp430/msp430.md (delay_cycles_32x): Fix pushm/popm.
4922 2016-09-12 Marek Polacek <polacek@redhat.com>
4924 * doc/extend.texi: Use lowercase "boolean".
4925 * doc/invoke.texi: Likewise.
4926 * doc/md.texi: Likewise.
4927 * target.def: Likewise.
4928 * doc/tm.texi: Regenerated.
4930 2016-09-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4933 * expmed.c (synth_mult): Delete duplicate mode check.
4935 2016-09-10 Tom de Vries <tom@codesourcery.com>
4938 * builtins.c (std_canonical_va_list_type): Strictly return non-null for
4940 * config/i386/i386.c (ix86_canonical_va_list_type): Same.
4941 * gimplify.c (gimplify_va_arg_expr): Handle &va_list.
4943 2016-09-09 Peter Bergner <bergner@vnet.ibm.com>
4945 PR rtl-optimization/77289
4946 * lra-constraints.c (get_final_hard_regno): Add support for non hard
4947 register numbers. Remove support for subregs.
4948 (get_hard_regno): Use SUBREG_P. Don't call get_final_hard_regno().
4949 (get_reg_class): Delete removed get_final_hard_regno() argument.
4950 (uses_hard_regs_p): Call get_final_hard_regno().
4952 2016-09-09 Martin Sebor <msebor@redhat.com>
4956 * pretty-print.c (pp_quoted_string): New function.
4957 (pp_format): Call it for %c and %s directives.
4959 2016-09-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
4961 * doc/tm.texi.in (INITIAL_FRAME_POINTER_OFFSET): Remove.
4962 (ELIMINABLE_REGS, TARGET_CAN_ELIMINATE,
4963 INITIAL_ELIMINATION_OFFSET) : Update documentation.
4964 * target.def (frame_pointer_required, can_eliminate): Likewise.
4965 * doc/tm.texi: Regenerated.
4966 * builtins.c (expand_builtin_setjmp_receiver): Remove #ifdef
4968 * df-scan.c (df_hard_reg_init): Likewise.
4969 * ira.c (ira_setup_eliminable_regset): Likewise.
4970 * lra-eliminations.c (reg_eliminate_1, (update_reg_eliminate,
4971 init_elim_table): Likewise.
4972 * reload1.c (reg_eliminate_1, verify_initial_elim_offsets,
4973 set_initial_elim_offsets, update_eliminables,
4974 init_elim_table): Likewise.
4975 * rtlanal.c (get_initial_register_offset): Likewise.
4976 * config/ft32/ft32.h (INITIAL_FRAME_POINTER_OFFSET): Remove.
4977 * config/m32r/m32r.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
4978 * config/moxie/moxie.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
4979 * config/vax/vax.h (INITIAL_FRAME_POINTER_OFFSET): Likewise.
4980 * config/fr30/fr30.h: Fix comment.
4981 * config/frv/frv.c: Likewise.
4982 * config/frv/frv.h: Likewise.
4983 * config/ft32/ft32.h: Likewise.
4984 * config/visium/visium.h: Likewise.
4985 * config/pa/pa64-linux.h: Likewise.
4986 * config/v850/v850.h: Likewise.
4987 * config/cris/cris.c: Likewise.
4988 * config/ia64/ia64.h: Likewise.
4989 * config/moxie/moxie.h: Likewise.
4990 * config/m32r/m32r.h: Likewise.
4992 2016-09-10 Alexander Ivchenko <alexander.ivchenko@intel.com>
4995 * config.in: Regenerate.
4996 * config/i386/linux-common.h (MPX_LD_AS_NEEDED_GUARD_PUSH):
4998 (MPX_LD_AS_NEEDED_GUARD_PUSH): Ditto.
4999 (LIBMPXWRAPPERS_SPEC): Remove "--no-whole-archive" from
5000 static-libmpxwrappers case.
5001 (LIBMPX_SPEC): Add guards with MPX_LD_AS_NEEDED_GUARD_PUSH and
5002 MPX_LD_AS_NEEDED_GUARD_POP.
5003 * configure: Regenerate.
5004 * configure.ac (HAVE_LD_PUSHPOPSTATE_SUPPORT): New variable.
5005 defined if linker support "--push-state"/"--pop-state".
5007 2016-09-09 Bernd Edlinger <bernd.edlinger@hotmail.de>
5009 * doc/cpp.texi (__*_WIDTH__): Small wording fixes.
5011 2016-09-09 Joseph Myers <joseph@codesourcery.com>
5013 * doc/cpp.texi (__SCHAR_WIDTH__, __SHRT_WIDTH__, __INT_WIDTH__)
5014 (__LONG_WIDTH__, __LONG_LONG_WIDTH__, __PTRDIFF_WIDTH__)
5015 (__SIG_ATOMIC_WIDTH__, __SIZE_WIDTH__, __WCHAR_WIDTH__)
5016 (__WINT_WIDTH__, __INT_LEAST8_WIDTH__, __INT_LEAST16_WIDTH__)
5017 (__INT_LEAST32_WIDTH__, __INT_LEAST64_WIDTH__)
5018 (__INT_FAST8_WIDTH__, __INT_FAST16_WIDTH__, __INT_FAST32_WIDTH__)
5019 (__INT_FAST64_WIDTH__, __INTPTR_WIDTH__, __INTMAX_WIDTH__):
5021 * ginclude/stdint-gcc.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Define
5022 width macros from TS 18661-1.
5023 * glimits.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Likewise.
5025 2016-09-08 Jakub Jelinek <jakub@redhat.com>
5028 * omp-low.c (lower_rec_simd_input_clauses): Use max_vf for non-positive
5029 OMP_CLAUSE_SAFELEN_EXPR.
5031 2016-09-07 David Malcolm <dmalcolm@redhat.com>
5033 * Makefile.in (OBJS): Add substring-locations.o.
5034 * langhooks-def.h (class substring_loc): New forward decl.
5035 (lhd_get_substring_location): New decl.
5036 (LANG_HOOKS_GET_SUBSTRING_LOCATION): New macro.
5037 (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_GET_SUBSTRING_LOCATION.
5038 * langhooks.c (lhd_get_substring_location): New function.
5039 * langhooks.h (class substring_loc): New forward decl.
5040 (struct lang_hooks): Add field get_substring_location.
5041 * substring-locations.c: New file, taking definition of
5042 format_warning_va and format_warning_at_substring from
5043 c-family/c-format.c, making them non-static.
5044 * substring-locations.h (class substring_loc): Move class here
5045 from c-family/c-common.h. Add and rewrite comments.
5046 (format_warning_va): New decl.
5047 (format_warning_at_substring): New decl.
5048 (get_source_location_for_substring): Add comment.
5050 2016-09-07 Eric Gallager <egall@gwmail.gwu.edu>
5052 * config/i386/i386.c: Add 'U' suffix to processor feature bits
5053 to avoid -Wnarrowing warning.
5054 * config/i386/x86-tune.def: Likewise for DEF_TUNE selector bitmasks.
5055 * opts.c: Likewise for SANITIZER_OPT bitmasks.
5057 2016-09-07 Wilco Dijkstra <wdijkstr@arm.com>
5059 * config/aarch64/aarch64.c (aarch64_legitimize_address):
5060 Avoid use of base_offset if offset already in range.
5062 2016-09-07 Kaz Kojima <kkojima@gcc.gnu.org>
5064 * config/sh/sh-protos.h (struct sh_atomic_model,
5065 selected_atomic_model, TARGET_ATOMIC_ANY, TARGET_ATOMIC_STRICT,
5066 TARGET_ATOMIC_SOFT_GUSA, TARGET_ATOMIC_HARD_LLCS,
5067 TARGET_ATOMIC_SOFT_TCB, TARGET_ATOMIC_SOFT_IMASK): Move to...
5068 * config/sh/sh.h (struct sh_atomic_model,
5069 selected_atomic_model, TARGET_ATOMIC_ANY, TARGET_ATOMIC_STRICT,
5070 TARGET_ATOMIC_SOFT_GUSA, TARGET_ATOMIC_HARD_LLCS,
5071 TARGET_ATOMIC_SOFT_TCB, TARGET_ATOMIC_SOFT_IMASK): ...here.
5072 Guard with __cplusplus.
5074 2016-09-06 Jakub Jelinek <jakub@redhat.com>
5077 * config/i386/i386.c (ix86_expand_builtin): For builtin with
5078 unsupported or unknown ISA, use expand_call.
5080 2016-09-06 Martin Liska <mliska@suse.cz>
5082 PR gcov-profile/77378
5083 PR gcov-profile/77466
5084 * tree-profile.c (tree_profiling): Detect whether target can use
5085 -fprofile-update=atomic.
5087 2016-09-06 Richard Biener <rguenther@suse.de>
5089 PR tree-optimization/77479
5090 * tree-vrp.c (update_value_range): Extend overflow handling to
5093 2016-09-05 Jakub Jelinek <jakub@redhat.com>
5096 * config/i386/i386.md (isa): Add x64_avx512bw.
5097 (*zero_extendsidi2): For alternative 11 use x64_avx512bw isa.
5098 (kmov_isa): New mode attr.
5099 (zero_extend<mode>di2): Use <kmov_isa> isa for the last alternative.
5100 (*zero_extend<mode>si2): Likewise.
5101 (*zero_extendqihi2): Use avx512dq isa for the last alternative.
5103 2016-09-05 Gerald Pfeifer <gerald@pfeifer.com>
5105 * doc/invoke.texi (SPU Options): nops -> NOPs.
5106 (x86 Options): Ditto.
5108 2016-09-05 Jakub Jelinek <jakub@redhat.com>
5111 * toplev.c (process_options): Temporarily set input_location
5112 to UNKNOWN_LOCATION around targetm.target_option.override () call.
5114 2016-09-05 Uros Bizjak <ubizjak@gmail.com>
5116 PR rtl-optimization/77452
5117 * explow.c (plus_constant) <case MEM>: Extract scalar constant from
5118 inner-mode reference to a CONST_VECTOR constant in the constant pool.
5120 2016-09-05 Marek Polacek <polacek@redhat.com>
5123 * doc/invoke.texi: Update -Wlogical-not-parentheses documentation.
5125 2016-09-05 Jakub Jelinek <jakub@redhat.com>
5128 * gensupport.c (alter_output_for_subst_insn): Remove redundant
5129 *insn_out == '*' test. Don't copy unnecessary to yet another
5130 memory buffer, and don't leak it.
5132 PR rtl-optimization/77425
5133 * ipa-devirt.c (get_odr_type): Set val->id unconditionally.
5135 2016-09-03 Kirill Yukhin <kirill.yukhin@intel.com>
5137 * ubsan.c (ubsan_use_new_style_p): Fix check for empty string.
5139 2016-09-02 David Malcolm <dmalcolm@redhat.com>
5141 * common.opt (fdiagnostics-generate-patch): New option.
5142 * diagnostic.c: Include "edit-context.h".
5143 (diagnostic_initialize): Initialize context->edit_context_ptr.
5144 (diagnostic_finish): Delete context->edit_context_ptr.
5145 (diagnostic_report_diagnostic): Add fix-it hints from the
5146 diagnostic to context->edit_context_ptr, if any.
5147 * diagnostic.h (class edit_context): Add forward decl.
5148 (struct diagnostic_context): Add field "edit_context_ptr".
5149 * doc/invoke.texi (Diagnostic Message Formatting Options): Add
5150 -fdiagnostics-generate-patch.
5151 (-fdiagnostics-generate-patch): New item.
5152 * toplev.c: Include "edit-context.h".
5153 (process_options): Set global_dc->edit_context_ptr to a new
5154 edit_context if the options need one.
5155 (toplev::main): Handle -fdiagnostics-generate-patch by using
5156 global_dc->edit_context_ptr.
5158 2016-09-02 Jakub Jelinek <jakub@redhat.com>
5161 * gimplify.c (gimplify_adjust_omp_clauses_1): Diagnose implicit
5162 map and firstprivate clauses on target construct for _Atomic
5164 (gimplify_adjust_omp_clauses): Diagnose explicit firstprivate clauses
5165 on target construct for _Atomic qualified decls.
5166 * omp-low.c (use_pointer_for_field): Return true for _Atomic qualified
5168 * omp-simd-clone.c (simd_clone_clauses_extract): Warn and give up for
5169 _Atomic qualified arguments not mentioned in uniform clause.
5171 2016-09-02 David Malcolm <dmalcolm@redhat.com>
5173 * Makefile.in (OBJS-libcommon): Add edit-context.o.
5174 * diagnostic-color.c (color_dict): Add "diff-filename",
5175 "diff-hunk", "diff-delete", and "diff-insert".
5176 (parse_gcc_colors): Update default value of GCC_COLORS in comment
5177 to reflect above changes.
5178 * doc/invoke.texi (-fdiagnostics-color): Update description of
5179 default GCC_COLORS, and of the supported capabilities.
5180 * edit-context.c: New file.
5181 * edit-context.h: New file.
5182 * input.c (struct fcache): Add field "missing_trailing_newline".
5183 (diagnostics_file_cache_forcibly_evict_file): Initialize it to
5185 (add_file_to_cache_tab): Likewise.
5186 (fcache::fcache): Likewise.
5187 (get_next_line): Update c->missing_trailing_newline.
5188 (location_missing_trailing_newline): New function.
5189 * input.h (location_missing_trailing_newline): New decl.
5190 * selftest-run-tests.c (selftest::run_tests): Call
5191 edit_context_c_tests.
5192 * selftest.h (edit_context_c_tests): New decl.
5194 2016-09-02 Jakub Jelinek <jakub@redhat.com>
5195 Richard Biener <rguenth@suse.de>
5197 PR tree-optimization/77444
5198 * tree-ssa-loop-ivopts.c (cand_value_at): For pointers use sizetype
5199 as steptype, remove redundant initialization.
5201 2016-09-02 Jakub Jelinek <jakub@redhat.com>
5204 * sanopt.c: Include gimple-ssa.h, tree-phinodes.h and ssa-iterators.h.
5205 (sanopt_optimize_walker): Optimize away
5206 __asan_before_dynamic_init (...) followed by
5207 __asan_after_dynamic_init () without intervening memory loads/stores.
5208 * ipa-pure-const.c (special_builtin_state): Handle
5209 BUILT_IN_ASAN_BEFORE_DYNAMIC_INIT and
5210 BUILT_IN_ASAN_AFTER_DYNAMIC_INIT.
5212 2016-09-02 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
5214 * cfg.c (free_original_copy_tables): Replace second assignment of
5215 bb_copy = NULL by bb_original = NULL.
5217 2016-09-02 Jakub Jelinek <jakub@redhat.com>
5220 * config/i386/i386.c (ix86_expanded_args_builtin): Remove redundant
5221 assignment added in r216794.
5223 2016-09-02 David Malcolm <dmalcolm@redhat.com>
5225 * Makefile.in (OBJS): Add typed-splay-tree.o.
5226 * selftest-run-tests.c (selftest::run_tests): Call
5227 typed_splay_tree_c_tests.
5228 * selftest.h (typed_splay_tree_c_tests): New decl.
5229 * typed-splay-tree.c: New file.
5230 * typed-splay-tree.h (typed_splay_tree::foreach_fn): New typedef.
5231 (typed_splay_tree::max): New method.
5232 (typed_splay_tree::min): New method.
5233 (typed_splay_tree::foreach): New method.
5234 (typed_splay_tree::closure): New struct.
5235 (typed_splay_tree::inner_foreach_fn): New function.
5237 2016-09-02 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
5239 * ipa-cp.c (ipcp_store_bits_results): Change option name from
5240 -fipa-cp-bit to -fipa-bit-cp.
5242 2016-09-01 Martin Sebor <msebor@redhat.com>
5244 PR tree-optimization/71831
5245 * tree-object-size.h: Return bool instead of the size and add
5246 argument for the size.
5247 * tree-object-size.c (compute_object_offset): Update signature.
5248 (addr_object_size): Same.
5249 (compute_builtin_object_size): Return bool instead of the size
5250 and add argument for the size. Handle POINTER_PLUS_EXPR when
5251 optimization is disabled.
5252 (expr_object_size): Adjust.
5253 (plus_stmt_object_size): Adjust.
5254 (pass_object_sizes::execute): Adjust.
5255 * builtins.c (fold_builtin_object_size): Adjust.
5256 * doc/extend.texi (Object Size Checking): Update.
5257 * ubsan.c (instrument_object_size): Adjust.
5259 2016-09-01 Martin Sebor <msebor@redhat.com>
5261 * genmatch.c (parser::parse_expr): Increase buffer size to guarantee
5262 it fits the output of the formatted function regardless of its
5264 * gcc/genmodes.c (parser::parse_expr): Same.
5265 * gimplify.c (gimplify_asm_expr): Same.
5266 * passes.c (pass_manager::register_one_dump_file): Same.
5267 * print-tree.c (print_node): Same.
5269 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
5271 * config/rs6000/altivec.md: Use VSCR_REGNO instead of 110 throughout.
5273 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
5275 * config/rs6000/altivec.md: Use VRSAVE_REGNO instead of 109 throughout.
5277 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
5279 * config/rs6000/altivec.md: Use CR6_REGNO instead of 74 throughout.
5280 * config/rs6000/vector.md: Ditto.
5281 * config/rs6000/vsx.md: Ditto.
5283 2016-09-01 Eric Botcazou <ebotcazou@adacore.com>
5285 * ipa-inline-analysis.c (param_change_prob): Get to the base object
5288 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
5290 * config/rs6000/rs6000.md (*restore_gpregs_<mode>_r11,
5291 *restore_gpregs_<mode>_r12, *restore_gpregs_<mode>_r1,
5292 *return_and_restore_gpregs_<mode>_r11,
5293 *return_and_restore_gpregs_<mode>_r12,
5294 *return_and_restore_gpregs_<mode>_r1,
5295 *return_and_restore_fpregs_<mode>_r11,
5296 *return_and_restore_fpregs_<mode>_r12,
5297 *return_and_restore_fpregs_<mode>_r1): Use the hard register LR_REGNO
5298 directly instead of via the "l" constraint. Renumber operands.
5301 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
5303 * config/rs6000/altivec.md (*save_world, *save_vregs_<mode>_r11,
5304 save_vregs_<mode>_r12, *restore_vregs_<mode>_r11,
5305 *restore_vregs_<mode>_r12): Use LR_REGNO instead of 65.
5306 * config/rs6000/darwin.md (load_macho_picbase, load_macho_picbase_si,
5307 load_macho_picbase_di, *call_indirect_nonlocal_darwin64,
5308 *call_nonlocal_darwin64, *call_value_indirect_nonlocal_darwin64,
5309 *call_value_nonlocal_darwin64, reload_macho_picbase,
5310 reload_macho_picbase_si, reload_macho_picbase_di): Ditto.
5311 * config/rs6000/rs6000.h (RETURN_ADDR_IN_PREVIOUS_FRAME): Ditto.
5312 * config/rs6000/rs6000.md (*save_gpregs_<mode>_r11,
5313 *save_gpregs_<mode>_r12, *save_gpregs_<mode>_r1,
5314 *save_fpregs_<mode>_r11, *save_fpregs_<mode>_r12,
5315 *save_fpregs_<mode>_r1): Ditto.
5316 * config/rs6000/spe.md (*save_gpregs_spe, *restore_gpregs_spe,
5317 *return_and_restore_gpregs_spe): Ditto.
5319 2016-09-01 Segher Boessenkool <segher@kernel.crashing.org>
5321 * config/rs6000/rs6000.md
5322 (define_insn "*return_and_restore_fpregs_aix_<mode>_r11"): Delete
5323 the use of the link register.
5324 (define_insn "*return_and_restore_fpregs_aix_<mode>_r1"): Ditto.
5326 2016-09-01 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
5327 Michael Meissner <meissner@linux.vnet.ibm.com>
5330 * config/rs6000/rs6000.c (rs6000_legitimize_address): Avoid
5331 reg+reg addressing for TImode.
5332 (rs6000_legitimate_address_p): Only allow register indirect
5333 addressing for TImode, even without TARGET_QUAD_MEMORY.
5335 2016-09-01 Richard Biener <rguenther@suse.de>
5338 * tree-chrec.c (tree_fold_binomial): Use widest_int, properly
5339 check whether the result fits the desired result type.
5341 2016-09-01 Nathan Sidwell <nathan@acm.org>
5343 * config/nvptx/nvptx.md (cbranch<mode>4): Op 2 can be const.
5345 2016-09-01 Wilco Dijkstra <wdijkstr@arm.com>
5347 * config/aarch64/aarch64.c (aarch64_legitimize_address_displacement):
5349 (TARGET_LEGITIMIZE_ADDRESS_DISPLACEMENT): Define.
5351 2016-09-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5353 * config/aarch64/aarch64.md (*ands<mode>_compare0): New pattern.
5354 * config/aarch64/aarch64.c (aarch64_select_cc_mode): Return CC_NZmode
5355 for comparisons of integer ZERO_EXTEND against zero.
5357 2016-09-01 Eric Botcazou <ebotcazou@adacore.com>
5359 * config/i386/i386.c (ix86_option_override_internal): Also disable the
5360 STV pass if -mstackrealign is enabled.
5362 2016-08-31 Ilya Verbin <iverbin@gmail.com>
5364 * config/i386/driver-i386.c (host_detect_local_cpu): Fix detection of
5367 2016-08-31 David Malcolm <dmalcolm@redhat.com>
5369 * diagnostic-show-locus.c (class layout): Add field m_fixit_hints.
5370 (layout_range::intersects_line_p): New method.
5371 (test_range_contains_point_for_single_point): Rename to...
5372 (test_layout_range_for_single_point): ...this, and add testing
5373 for layout_range::intersects_line_p.
5374 (test_range_contains_point_for_single_line): Rename to...
5375 (test_layout_range_for_single_line): ...this, and add testing
5376 for layout_range::intersects_line_p.
5377 (test_range_contains_point_for_multiple_lines): Rename to...
5378 (test_layout_range_for_multiple_lines): ...this, and add testing
5379 for layout_range::intersects_line_p.
5380 (layout::layout): Populate m_fixit_hints.
5381 (layout::get_expanded_location): Handle the case of a line-span
5383 (layout::validate_fixit_hint_p): New method.
5384 (get_line_span_for_fixit_hint): New function.
5385 (layout::calculate_line_spans): Add spans for fixit-hints.
5386 (layout::should_print_annotation_line_p): New method.
5387 (layout::print_any_fixits): Drop param "richloc", instead using
5388 validated fixits in m_fixit_hints. Add "const" to hint pointers.
5389 (diagnostic_show_locus): Avoid printing blank annotation lines.
5390 (selftest::test_diagnostic_context::test_diagnostic_context):
5391 Initialize show_column and start_span.
5392 (selftest::test_diagnostic_context::start_span_cb): New static
5394 (selftest::test_diagnostic_show_locus_fixit_lines): New function.
5395 (selftest::diagnostic_show_locus_c_tests): Update for function
5396 renamings. Call test_diagnostic_show_locus_fixit_lines.
5398 2016-08-31 Marc Glisse <marc.glisse@inria.fr>
5400 PR tree-optimization/73714
5401 * match.pd (a * (1 << b)): Revert change from 2016-05-23.
5403 2016-08-31 David Malcolm <dmalcolm@redhat.com>
5405 * selftest.c: Move "namespace selftest {" to top of file,
5406 removing explicit "selftest::" qualifiers throughout.
5408 2016-08-31 Marc Glisse <marc.glisse@inria.fr>
5410 * config/i386/avx512fintrin.h (__m512_u, __m512i_u, __m512d_u):
5412 (_mm512_loadu_pd, _mm512_storeu_pd, _mm512_loadu_ps,
5413 _mm512_storeu_ps, _mm512_loadu_si512, _mm512_storeu_si512):
5414 Replace builtin with vector extension.
5415 * config/i386/avxintrin.h (__m256_u, __m256i_u, __m256d_u):
5417 (_mm256_loadu_pd, _mm256_storeu_pd, _mm256_loadu_ps,
5418 _mm256_storeu_ps, _mm256_loadu_si256, _mm256_storeu_si256):
5419 Replace builtin with vector extension.
5420 * config/i386/emmintrin.h (__m128i_u, __m128d_u): New types.
5421 (_mm_loadu_pd, _mm_storeu_pd, _mm_loadu_si128, _mm_storeu_si128):
5422 Replace builtin with vector extension.
5423 * config/i386/xmmintrin.h (__m128_u): New type.
5424 (_mm_loadu_ps, _mm_storeu_ps): Replace builtin with vector extension.
5425 (_mm_load_ps, _mm_store_ps): Simplify.
5427 2016-08-31 Eric Botcazou <ebotcazou@adacore.com>
5429 * config/arm/arm.c (thumb1_size_rtx_costs) <SET>: Add missing guard.
5431 2016-08-30 David Malcolm <dmalcolm@redhat.com>
5433 * diagnostic-show-locus.c (colorizer::begin_state): Support more
5434 than 3 ranges per diagnostic by alternating between color 1 and
5436 (layout::layout): Replace use of rich_location::MAX_RANGES
5437 with richloc->get_num_locations ().
5438 (layout::calculate_line_spans): Replace use of
5439 rich_location::MAX_RANGES with m_layout_ranges.length ().
5440 (layout::print_annotation_line): Handle arbitrary numbers of
5441 ranges in caret-printing by defaulting to '^'.
5442 (selftest::test_one_liner_many_fixits): New function.
5443 (test_diagnostic_show_locus_one_liner): Call it.
5444 * diagnostic.c (diagnostic_initialize): Update for renaming
5445 of rich_location::MAX_RANGES to
5446 rich_location::STATICALLY_ALLOCATED_RANGES.
5447 * diagnostic.h (struct diagnostic_context): Likewise.
5449 2016-08-30 David Malcolm <dmalcolm@redhat.com>
5451 * selftest.c (selftest::named_temp_file::named_temp_file): New
5453 (selftest::temp_source_file::~temp_source_file): Move to...
5454 (selftest::named_temp_file::~named_temp_file): ...here.
5455 (selftest::test_named_temp_file): New function.
5456 (selftest::selftest_c_tests): Call test_named_temp_file.
5457 * selftest.h (class named_temp_file): New class.
5458 (class temp_source_file): Convert to a subclass of named_temp_file.
5460 2016-08-30 Segher Boessenkool <segher@kernel.crashing.org>
5462 * config/rs6000/rs6000.c (rs6000_emit_epilogue): Do not emit
5463 USEs of LR_REGNO in returns and sibcalls.
5464 (rs6000_output_mi_thunk): Similar.
5465 (rs6000_sibcall_aix): Similar.
5466 * config/rs6000/rs6000.md (sibcall, sibcall_value, sibcall_local32,
5467 sibcall_local64, sibcall_value_local32, sibcall_value_local64,
5468 sibcall_nonlocal_sysv<mode>, sibcall_value_nonlocal_sysv<mode>):
5469 Remove the USE of LR_REGNO from the patterns as well. Delete an
5471 (return_internal_<mode>): Delete.
5473 2016-08-30 Tamar Christina <tamar.christina@arm.com>
5475 * gcc/config/aarch64/aarch64-simd.md
5476 (aarch64_ld2<mode>_dreg_le): New.
5477 (aarch64_ld2<mode>_dreg_be): New.
5478 (aarch64_ld2<mode>_dreg): Removed.
5479 (aarch64_ld3<mode>_dreg_le): New.
5480 (aarch64_ld3<mode>_dreg_be): New.
5481 (aarch64_ld3<mode>_dreg): Removed.
5482 (aarch64_ld4<mode>_dreg_le): New.
5483 (aarch64_ld4<mode>_dreg_be): New.
5484 (aarch64_ld4<mode>_dreg): Removed.
5485 (aarch64_ld<VSTRUCT:nregs><VDC:mode>): Wrapper around _le, _be.
5487 2016-08-30 David Malcolm <dmalcolm@redhat.com>
5489 * diagnostic-show-locus.c (test_one_liner_fixit_insert): Remove
5490 redundant location param.
5491 (test_one_liner_fixit_remove): Likewise.
5492 (test_one_liner_fixit_replace): Likewise.
5493 (test_one_liner_fixit_replace_equal_secondary_range): Likewise.
5494 * gcc-rich-location.c
5495 (gcc_rich_location::add_fixit_misspelled_id): Eliminate call to
5496 get_range_from_loc. Drop overload taking a const char *.
5497 * gcc-rich-location.h
5498 (gcc_rich_location::add_fixit_misspelled_id): Drop overload taking
5501 2016-08-30 Szabolcs Nagy <szabolcs.nagy@arm.com>
5503 * config/linux.c (linux_libc_has_function): Return true on musl.
5505 2016-08-30 Szabolcs Nagy <szabolcs.nagy@arm.com>
5507 * config.gcc (*-*-*musl*): Disable gnu-indirect-function.
5509 2016-08-30 Eric Botcazou <ebotcazou@adacore.com>
5511 * postreload-gcse.c (bb_has_well_behaved_predecessors): Tweak criterion
5512 used for abnormal egdes.
5514 2016-08-30 Jakub Jelinek <jakub@redhat.com>
5516 PR tree-optimization/72866
5517 * tree-vect-patterns.c (search_type_for_mask): Turn into
5518 a small wrapper, move all code to ...
5519 (search_type_for_mask_1): ... this new function. Add caching
5520 and adjust recursive calls.
5523 * dwarf2out.c (modified_type_die): Use lookup_type_die (type)
5524 instead of lookup_type_die (type_main_variant (type)) even for array
5528 * simplify-rtx.c (avoid_constant_pool_reference): For out of bounds
5529 constant pool reference return x instead of c.
5531 2016-08-29 Segher Boessenkool <segher@kernel.crashing.org>
5533 * config/rs6000/rs6000.h (CALL_REALLY_USED_REGISTERS): Do not
5536 2016-08-29 David Malcolm <dmalcolm@redhat.com>
5539 (selftest::test_make_location_nonpure_range_endpoints): Fix
5542 2016-08-29 David Malcolm <dmalcolm@redhat.com>
5544 * diagnostic-show-locus.c
5545 (selftest::test_one_liner_fixit_validation_adhoc_locations): New
5547 (selftest::test_diagnostic_show_locus_one_liner): Call it.
5548 * input.c (get_pure_location): Move to libcpp/line-map.c.
5549 * input.h (get_pure_location): Convert decl to an inline function
5550 calling implementation in libcpp.
5552 2016-08-29 Uros Bizjak <ubizjak@gmail.com>
5555 * config/i386/sse.md (vec_set_lo_<mode><mask_name>): Fix assembler
5556 template for intel asm dialect.
5557 (vec_set_hi_<mode><mask_name>): Ditto.
5559 2016-08-29 David Malcolm <dmalcolm@redhat.com>
5561 * selftest.h (selftest::fail): Add ATTRIBUTE_NORETURN.
5562 (selftest::fail_formatted): Likewise.
5564 2016-08-29 David Malcolm <dmalcolm@redhat.com>
5566 * input.c (make_location): Call get_start and get_finish
5567 on the endpoints to avoid storing packed ranges or ad-hoc
5569 (selftest::test_make_location_nonpure_range_endpoints): New function.
5570 (selftest::input_c_tests): Call it.
5571 * input.h (get_start): New inline function.
5573 2016-08-29 Tom de Vries <tom@codesourcery.com>
5576 * gimplify.c (gimplify_va_arg_expr): Replace first argument type error
5579 2016-08-29 Eric Botcazou <ebotcazou@adacore.com>
5581 * Makefile.in (gcov-iov.h): Add dummy recipe.
5583 2016-08-29 Nathan Sidwell <nathan@acm.org>
5585 * config/nvptx/nvptx.c: #include tree-vrp.h.
5587 2016-08-28 Eric Botcazou <ebotcazou@adacore.com>
5590 * config/sparc/sparc.c (sparc_legitimate_address_p): Accept special
5591 HIGH+LO construct during reload.
5593 2016-08-28 Tom de Vries <tom@codesourcery.com>
5596 * config/i386/i386.c (ix86_build_builtin_va_list_64): Tag type with
5597 'sysv_abi va_list' attribute.
5598 (ix86_build_builtin_va_list): Tag type with 'ms_abi va_list' attribute.
5599 (ix86_canonical_va_list_type): Handle 'sysv_abi/ms_abi va_list'
5602 2016-08-27 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
5604 * emit-rtl.h (struct rtl_data): Make stack_slot_list a vector.
5605 * emit-rtl.c (unshare_all_rtl_1): Adjust.
5606 (unshare_all_rtl_again): Likewise.
5607 * function.c (assign_stack_local_1): Likewise.
5608 (assign_stack_temp_for_type): Likewise.
5610 2016-08-27 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
5612 * cfgbuild.c (make_edges): Adjust.
5613 * cfgrtl.c (can_delete_label_p): Likewise.
5614 * dwarf2cfi.c (create_trace_edges): Likewise.
5615 * except.c (sjlj_emit_dispatch_table): Likewise.
5616 * function.h (struct expr_status): make x_forced_labels a vector.
5617 * jump.c (rebuild_jump_labels_1): Adjust.
5618 * reload1.c (set_initial_label_offsets): Likewise.
5619 * stmt.c (force_label_rtx): Likewise.
5620 (expand_label): Likewise.
5622 2016-08-27 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
5624 * haifa-sched.c (fix_recovery_deps): Make ready_list a vector.
5626 2016-08-27 Patrick Palka <ppalka@gcc.gnu.org>
5628 PR tree-optimization/71077
5629 PR tree-optimization/68542
5630 * fold-const.c (fold_relational_const): Fix folding of
5631 VECTOR_CST comparisons that have a scalar boolean result type.
5632 (selftest::test_vector_folding): New static function.
5633 (selftest::fold_const_c_tests): Call it.
5635 2016-08-27 Gerald Pfeifer <gerald@pfeifer.com>
5637 * doc/extend.texi (SPU Built-in Functions): Remove stale
5638 references to material formerly at IBM and Sony.
5640 2016-08-26 David Edelsohn <dje.gcc@gmail.com>
5643 * config/rs6000/xcoff.h (DWARF_OFFSET_SIZE): Define as PTR_SIZE.
5645 2016-08-26 David Malcolm <dmalcolm@redhat.com>
5647 * diagnostic-show-locus.c
5648 (selftest::test_fixit_consolidation): New function.
5649 (selftest::diagnostic_show_locus_c_tests): Call it.
5650 * gcc-rich-location.h (gcc_rich_location): Eliminate unused
5651 constructor based on source_range.
5653 2016-08-26 David Malcolm <dmalcolm@redhat.com>
5655 * diagnostic-color.c (color_dict): Add "fixit-insert" and
5657 (parse_gcc_colors): Update description of default GCC_COLORS.
5658 * diagnostic-show-locus.c (colorizer::set_fixit_hint): Delete.
5659 (colorizer::set_fixit_insert): New method.
5660 (colorizer::set_fixit_delete): New method.
5661 (colorizer::get_color_by_name): New method.
5662 (colorizer::STATE_FIXIT_INSERT): New constant.
5663 (colorizer::STATE_FIXIT_DELETE): New constant.
5664 (class colorizer): Drop "_cs" suffix from fields. Delete "_ce"
5665 fields in favor of new field "m_stop_color". Add fields
5666 "m_fixit_insert" and "m_fixit_delete".
5667 (colorizer::colorizer): Update for above changes. Replace
5668 colorize_start calls with calls to get_color_by_name.
5669 (colorizer::begin_state): Handle STATE_FIXIT_INSERT and
5670 STATE_FIXIT_DELETE. Update for field renamings.
5671 (colorizer::finish_state): Simplify by using m_stop_color,
5672 rather than multiple identical "*_ce" fields.
5673 (colorizer::get_color_by_name): New method.
5674 (layout::print_any_fixits): Print insertions and replacements
5675 using the "fixit-insert" color, and deletions using the
5676 "fixit-delete" color.
5677 * doc/invoke.texi (-fdiagnostics-color): Update description of
5678 default GCC_COLORS, and of the supported capabilities.
5680 2016-08-26 Max Filippov <jcmvbkbc@gmail.com>
5682 * config/xtensa/xtensa.c (xtensa_expand_prologue): Update
5683 current_function_static_stack_size variable with the static
5684 stack frame size of the current function when
5685 flag_stack_usage_info is enabled.
5687 2016-08-26 Nathan Sidwell <nathan@acm.org>
5689 * ipa-inline-analysis.c (inline_write_summary): Remove unnecessary
5690 assignment inside if condition.
5692 2016-08-26 Richard Biener <rguenther@suse.de>
5694 PR tree-optimization/69047
5695 * tree-ssa.c (maybe_rewrite_mem_ref_base): Handle general bitfield
5696 extracts similar to what FRE does.
5697 (non_rewritable_mem_ref_base): Likewise.
5699 2016-08-26 Joseph Myers <joseph@codesourcery.com>
5701 * config/i386/i386.c (ix86_libgcc_floating_mode_supported_p)
5702 (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
5703 * config/i386/i386elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5704 * config/i386/lynx.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5705 * config/i386/netbsd-elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE):
5707 * config/i386/netbsd64.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5708 * config/i386/nto.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5709 * config/i386/openbsd.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5710 * config/i386/rtemself.h (IX86_NO_LIBGCC_TFMODE): Likewise.
5711 * config/i386/vxworks.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Likewise.
5713 2016-08-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5716 * config/arm/cortex-a8-neon.md (cortex_a8_vfp_muld): Reduce
5717 reservation duration to 15 cycles.
5718 (cortex_a8_vfp_macs): Likewise.
5719 (cortex_a8_vfp_macd): Likewise.
5720 (cortex_a8_vfp_divs): Likewise.
5721 (cortex_a8_vfp_divd): Likewise.
5723 2016-08-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5725 * config/arm/arm.c (arm_sets_movw_movt_fusible_p): New function.
5726 (aarch_macro_fusion_pair_p): Use above to avoid early return.
5728 2016-08-26 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
5729 Martin Jambhor <mjambor@suse.cz>
5731 * common.opt: New option -fipa-bit-cp.
5732 * doc/invoke.texi: Document -fipa-bit-cp.
5733 * opts.c (default_options_table): Add entry for -fipa-bit-cp.
5734 (enable_fdo_optimizations): Check for flag_ipa_bit_cp.
5735 * tree-ssa-ccp.h: New header file.
5736 * tree-ssa-ccp.c: Include tree-ssa-ccp.h
5737 (bit_value_binop_1): Change to bit_value_binop_1 and export it.
5738 Replace all occurences of tree parameter by two new params: signop, int.
5739 (bit_value_unop_1): Change to bit_value_unop and export it.
5740 Replace all occurences of tree parameter by two new params: signop,
5742 (bit_value_binop): Change call from bit_value_binop_1 to
5744 (bit_value_assume_aligned): Likewise.
5745 (bit_value_unop): Change call from bit_value_unop_1 to bit_value_unop.
5746 (do_ssa_ccp): Pass nonzero_p || flag_ipa_cp_bit instead of nonzero_p
5748 (ccp_finalize): Skip processing if val->mask == 0.
5749 * ipa-cp.c: Include tree-ssa-ccp.h
5750 (ipcp_bits_lattice): New class.
5751 (ipcp_param_lattice (bits_lattice): New member.
5752 (print_all_lattices): Call ipcp_bits_lattice::print.
5753 (set_all_contains_variable): Call ipcp_bits_lattice::set_to_bottom.
5754 (initialize_node_lattices): Likewise.
5755 (propagate_bits_accross_jump_function): New function.
5756 (propagate_constants_accross_call): Call
5757 propagate_bits_accross_jump_function.
5758 (ipcp_propagate_stage): Store parameter types when in_lto_p is true.
5759 (ipcp_store_bits_results): New function.
5760 (ipcp_driver): Call ipcp_store_bits_results.
5761 * ipa-prop.h (ipa_bits): New struct.
5762 (ipa_jump_func): Add new member bits of type ipa_bits.
5763 (ipa_param_descriptor): Change decl to decl_or_type.
5764 (ipa_get_param): Change decl to decl_or_type and assert on
5766 (ipa_get_type): New function.
5767 (ipcp_transformation_summary): New member bits.
5768 * ipa-prop.c (ipa_get_param_decl_index_1): s/decl/decl_or_type.
5769 (ipa_populate_param_decls): Likewise.
5770 (ipa_dump_param): Likewise.
5771 (ipa_print_node_jump_functions_for_edge): Pretty-print ipa_bits jump
5773 (ipa_set_jf_unknown): Set ipa_bits::known to false.
5774 (ipa_compute_jump_functions_for_edge): Compute jump function for bits
5776 (ipa_node_params_t::duplicate): Copy src->bits into dst->bits.
5777 (ipa_write_jump_function): Add streaming for ipa_bits.
5778 (ipa_read_jump_function): Add support for reading streamed ipa_bits.
5779 (write_ipcp_transformation_info): Add streaming for ipa_bits
5781 (read_ipcp_transfomration_info): Add support for reading streamed
5783 (ipcp_update_bits): New function.
5784 (ipcp_transform_function): Call ipcp_update_bits.
5786 2016-08-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
5788 * config/mips/linux.h (MUSL_DYNAMIC_LINKER32): Update.
5789 (MUSL_DYNAMIC_LINKER64, MUSL_DYNAMIC_LINKERN32): Update.
5791 2016-08-25 David Edelsohn <dje.gcc@gmail.com>
5793 * multiple_target.c (pass_data_dispatcher_calls): Fix typo.
5795 2016-08-25 Richard Biener <rguenther@suse.de>
5797 * dwarf2out.c (gen_remaining_tmpl_value_param_die_attributes):
5798 Only add locations in late dwarf.
5799 (gen_scheduled_generic_parms_dies): Do not set early dwarf here.
5800 (dwarf2out_early_finish): But do it here.
5802 2016-08-24 Michael Collison <michael.collison@linaro.org>
5803 Michael Collison <michael.collison@arm.com>
5805 * config/arm/arm-modes.def: Add new condition code mode CC_V
5806 to represent the overflow bit.
5807 * config/arm/arm.c (maybe_get_arm_condition_code):
5808 Add support for CC_Vmode.
5809 (arm_gen_unlikely_cbranch): New function to generate common
5810 rtl conditional branches for overflow patterns.
5811 * config/arm/arm-protos.h: Add prototype for
5812 arm_gen_unlikely_cbranch.
5813 * config/arm/arm.md (addv<mode>4, add<mode>3_compareV,
5814 addsi3_compareV_upper): New patterns to support signed
5815 builtin overflow add operations.
5816 (uaddv<mode>4, add<mode>3_compareC, addsi3_compareV_upper):
5817 New patterns to support unsigned builtin add overflow operations.
5818 (subv<mode>4, sub<mode>3_compare1): New patterns to support signed
5819 builtin overflow subtract operations,
5820 (usubv<mode>4): New patterns to support unsigned builtin subtract
5821 overflow operations.
5822 (negvsi3, negvdi3, negdi2_compare, negsi2_carryin_compare): New patterns
5823 to support builtin overflow negate operations.
5825 2016-08-24 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
5828 2016-08-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
5830 * explow.c (get_dynamic_stack_size): Take known alignment of stack
5831 pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
5834 2016-08-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
5836 * doc/fragments.texi (MULTILIB_REUSE): Mention that only options in
5837 MULTILIB_OPTIONS should be used. Small wording fixes.
5838 * genmultilib: Memorize set of all option combinations in
5839 combination_space. Detect if RHS of MULTILIB_REUSE uses an option not
5840 found in MULTILIB_OPTIONS by checking if option set is listed in
5841 combination_space. Output new and existing error message to stderr.
5843 2016-08-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
5845 * config/arm/t-aprofile (MULTILIB_MATCHES): Add mapping for
5846 -mcpu=cortex-a7, -mfpu=neon-fp16, -mfpu=fpv5-d16 and -mfpu=fp-armv8.
5847 Fix typo in -mfpu=vfpv3-d16-fp16 mapping.
5848 (MULTILIB_REUSE): Remove reuse rules for option set including
5849 -mfpu=fp-armv8 and -mfpu=vfpv4
5851 2016-08-24 Sebastian Huber <sebastian.huber@embedded-brains.de>
5853 * config/arm/t-rtems: Add vfp multilib.
5855 2016-08-23 Ian Lance Taylor <iant@golang.org>
5857 * config/s390/s390.c (s390_asm_file_start): Call
5860 2016-08-23 Michael Meissner <meissner@linux.vnet.ibm.com>
5862 * config/rs6000/rs6000.c (rs6000_expand_vector_init): Set
5863 initialization of all 0's to the 0 constant, instead of directly
5864 generating XOR. Add support for V4SImode vector initialization on
5865 64-bit systems with direct move, and rework the ISA 3.0 V4SImode
5866 initialization. Change variables used in V4SFmode vector
5867 intialization. For V4SFmode vector splat on ISA 3.0, make sure
5868 any memory addresses are in index form. Add support for using
5869 VSPLTH/VSPLTB to initialize vector short and vector char vectors
5870 with all of the same element.
5871 (regno_or_subregno): New helper function to return a register
5872 number for either REG or SUBREG.
5873 (rs6000_adjust_vec_address): Do not generate ADDI <reg>,R0,<num>.
5874 Use regno_or_subregno where possible.
5875 (rs6000_split_v4si_init_di_reg): New helper function to build up a
5876 DImode value from two SImode values in order to generate V4SImode
5877 vector initialization on 64-bit systems with direct move.
5878 (rs6000_split_v4si_init): Split up the insns for a V4SImode vector
5880 (rtx_is_swappable_p): V4SImode vector initialization insn is not
5882 * config/rs6000/rs6000-protos.h (rs6000_split_v4si_init): Add
5884 * config/rs6000/vsx.md (VSX_SPLAT_I): New mode iterators and
5885 attributes to initialize V8HImode and V16QImode vectors with the
5887 (VSX_SPLAT_COUNT): Likewise.
5888 (VSX_SPLAT_SUFFIX): Likewise.
5889 (UNSPEC_VSX_VEC_INIT): New unspec.
5890 (vsx_concat_v2sf): Eliminate using 'preferred' register classes.
5891 Allow SFmode values to come from Altivec registers.
5892 (vsx_init_v4si): New insn/split for V4SImode vector initialization
5893 on 64-bit systems with direct move.
5894 (vsx_splat_<mode>, VSX_W iterator): Rework V4SImode and V4SFmode
5895 vector initializations, to allow V4SImode vector initializations
5896 on 64-bit systems with direct move.
5897 (vsx_splat_v4si): Likewise.
5898 (vsx_splat_v4si_di): Likewise.
5899 (vsx_splat_v4sf): Likewise.
5900 (vsx_splat_v4sf_internal): Likewise.
5901 (vsx_xxspltw_<mode>, VSX_W iterator): Eliminate using 'preferred'
5903 (vsx_xxspltw_<mode>_direct, VSX_W iterator): Likewise.
5904 (vsx_vsplt<VSX_SPLAT_SUFFIX>_di): New insns to support
5905 initializing V8HImode and V16QImode vectors with the same
5907 * config/rs6000/rs6000.h (TARGET_DIRECT_MOVE_64BIT): Disallow
5908 optimization if -maltivec=be.
5910 2016-08-23 Christophe Lyon <christophe.lyon@linaro.org>
5912 * config/arm/arm.md (arm_movqi_insn): Swap predicable_short_it
5913 attribute for alternatives 3 and 4.
5915 2016-08-23 David Malcolm <dmalcolm@redhat.com>
5917 * selftest.c (selftest::assert_str_contains): New function.
5918 (selftest::test_assertions): Verify ASSERT_STR_CONTAINS.
5919 * selftest.h (selftest::assert_str_contains): New decl.
5920 (ASSERT_STR_CONTAINS): New macro.
5922 2016-08-23 Richard Biener <rguenther@suse.de>
5924 PR tree-optimization/77286
5925 * tree-vect-loop.c (vect_analyze_loop_form_1): Do not modify
5927 (vect_transform_loop): Split exit edges of loop and scalar
5928 loop if required and at the appropriate time.
5930 2016-08-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
5932 * explow.c (get_dynamic_stack_size): Take known alignment of stack
5933 pointer + STACK_DYNAMIC_OFFSET into account when calculating the size
5935 Correct a typo in a comment.
5937 2016-08-23 Dominik Vogt <vogt@linux.vnet.ibm.com>
5939 * config/s390/s390.md ("*andc_split"): New splitter for and with
5942 2016-08-23 Richard Biener <rguenther@suse.de>
5944 PR tree-optimization/27336
5945 * tree-vrp.c (infer_value_range): Handle stmts that can throw
5946 by looking for a non-EH edge.
5947 (process_assert_insertions_for): Likewise.
5949 2016-08-23 Richard Biener <rguenther@suse.de>
5952 * statistics.c (statistics_counter_event): Robustify against
5955 2016-08-23 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
5957 * config/i386/i386.c (processor_alias_table): Enable PTA_PRFCHW
5958 for targets amdfam10 and barcelona.
5960 2016-08-22 Uros Bizjak <ubizjak@gmail.com>
5962 * config/i386/i386.md (*zero_extendsidi2): Add (*r,*k) alternative.
5963 (zero_extend<mode>di2): Ditto.
5964 (*zero_extend<mode>si2): Ditto.
5965 (*zero_extendqihi2): Ditto.
5967 2016-08-22 Joseph Myers <joseph@codesourcery.com>
5970 * builtins.c (fold_builtin_classify): Use builtin_decl_explicit
5971 (BUILT_IN_SIGNBIT) to expand __builtin_isinf_sign.
5973 2016-08-22 Patrick Palka <ppalka@gcc.gnu.org>
5975 * print-tree.c (print_node) [VECTOR_CST]: Coalesce the output of
5976 identical consecutive elements.
5977 [SSA_NAME]: Print the name's def stmt on its own line. When printing
5978 the node's def stmt, avoid printing an unwanted trailing newline by
5979 replacing the call to print_gimple_stmt() with its inlined body and
5980 adjusting it to not set pp_needs_newline and to call pp_flush()
5981 instead of pp_newline_and_flush().
5983 2016-08-22 Joseph Myers <joseph@codesourcery.com>
5985 * tree.h (CASE_FLT_FN_FLOATN_NX, float16_type_node)
5986 (float32_type_node, float64_type_node, float32x_type_node)
5987 (float128x_type_node): New macros.
5988 * builtin-types.def (BT_FLOAT16, BT_FLOAT32, BT_FLOAT64)
5989 (BT_FLOAT128, BT_FLOAT32X, BT_FLOAT64X, BT_FLOAT128X)
5990 (BT_FN_FLOAT16, BT_FN_FLOAT32, BT_FN_FLOAT64, BT_FN_FLOAT128)
5991 (BT_FN_FLOAT32X, BT_FN_FLOAT64X, BT_FN_FLOAT128X)
5992 (BT_FN_FLOAT16_FLOAT16, BT_FN_FLOAT32_FLOAT32)
5993 (BT_FN_FLOAT64_FLOAT64, BT_FN_FLOAT128_FLOAT128)
5994 (BT_FN_FLOAT32X_FLOAT32X, BT_FN_FLOAT64X_FLOAT64X)
5995 (BT_FN_FLOAT128X_FLOAT128X, BT_FN_FLOAT16_CONST_STRING)
5996 (BT_FN_FLOAT32_CONST_STRING, BT_FN_FLOAT64_CONST_STRING)
5997 (BT_FN_FLOAT128_CONST_STRING, BT_FN_FLOAT32X_CONST_STRING)
5998 (BT_FN_FLOAT64X_CONST_STRING, BT_FN_FLOAT128X_CONST_STRING)
5999 (BT_FN_FLOAT16_FLOAT16_FLOAT16, BT_FN_FLOAT32_FLOAT32_FLOAT32)
6000 (BT_FN_FLOAT64_FLOAT64_FLOAT64, BT_FN_FLOAT128_FLOAT128_FLOAT128)
6001 (BT_FN_FLOAT32X_FLOAT32X_FLOAT32X)
6002 (BT_FN_FLOAT64X_FLOAT64X_FLOAT64X)
6003 (BT_FN_FLOAT128X_FLOAT128X_FLOAT128X): New type definitions.
6004 * builtins.def (DEF_GCC_FLOATN_NX_BUILTINS): New macro.
6005 (copysign, fabs, huge_val, inf, nan, nans): Use it.
6006 * builtins.c (expand_builtin): Use CASE_FLT_FN_FLOATN_NX for fabs
6008 (fold_builtin_0): Use CASE_FLT_FN_FLOATN_NX for inf and huge_val.
6009 (fold_builtin_1): Use CASE_FLT_FN_FLOATN_NX for fabs.
6010 * doc/extend.texi (Other Builtins): Document these built-in
6012 * fold-const-call.c (fold_const_call): Use CASE_FLT_FN_FLOATN_NX
6015 2016-08-22 Gerald Pfeifer <gerald@pfeifer.com>
6017 * doc/install.texi (Binaries): www.opencsw.org now uses https.
6019 2016-08-22 Richard Biener <rguenther@suse.de>
6021 * tree-ssa-forwprop.c (pass_forwprop::execute): Use RPO order.
6023 2016-08-21 Uros Bizjak <ubizjak@gmail.com>
6026 * config/i386/i386.md (prefetch): When TARGET_PRFCHW or
6027 TARGET_PREFETCHWT1 are disabled, emit 3dNOW! write prefetches for
6028 non-SSE2 athlons only, otherwise prefer SSE prefetches.
6030 2016-08-20 Kugan Vivekanandarajah <kuganv@linaro.org>
6032 * tree-vrp.c (vrp_visit_assignment_or_call): Changed to Return VR.
6033 (vrp_visit_cond_stmt): Just sets TAKEN_EDGE_P.
6034 (vrp_visit_switch_stmt): Likewise.
6035 (extract_range_from_stmt): Factored out from vrp_visit_stmt.
6036 (extract_range_from_phi_node): Factored out from vrp_visit_phi_stmt.
6037 (vrp_visit_stmt): Use extract_range_from_stmt.
6038 (vrp_visit_phi_node): Use extract_range_from_phi_node.
6040 2016-08-20 Kugan Vivekanandarajah <kuganv@linaro.org>
6042 * Makefile.in: Add tree-vrp.h to GTFILES.
6043 * gengtype.c (open_base_files): Add tree-vrp.h.
6044 * asan.c: Add tree-vrp.h which now has the definition value_range_type.
6045 * builtins.c: Likewise.
6046 * fold-const.c: Likewise.
6047 * gimple-builder.c: Likewise.
6048 * gimple-laddress.c: Likewise.
6049 * hsa-gen.c: Likewise.
6050 * internal-fn.c: Likewise.
6052 * targhooks.c: Liewise,
6053 * tree-ssa-address.c: Likewise.
6054 * tree-ssanames.h (value_range_type: Move to tree-vrp.h.
6055 * tree-vrp.c (struct value_range): Move to tree-vrp.h
6056 * tree-vrp.h: New file.
6058 2016-08-20 Kugan Vivekanandarajah <kuganv@linaro.org>
6060 PR tree-optimization/61839
6061 * tree-vrp.c (two_valued_val_range_p): New.
6062 (simplify_stmt_using_ranges): Convert CST BINOP VAR where VAR is
6063 two-valued to VAR == VAL1 ? (CST BINOP VAL1) : (CST BINOP VAL2).
6064 Also Convert VAR BINOP CST where VAR is two-valued to
6065 VAR == VAL1 ? (VAL1 BINOP CST) : (VAL2 BINOP CST).
6067 2016-08-19 David Malcolm <dmalcolm@redhat.com>
6069 * diagnostic-show-locus.c
6070 (layout::annotation_line_showed_range_p): New method.
6071 (layout::print_any_fixits): Remove case fixit_hint::REMOVE.
6072 Reimplement case fixit_hint::REPLACE to cover removals, and
6073 replacements where the range of the replacement isn't one
6074 of the ranges in the rich_location.
6075 (test_one_liner_fixit_replace): Likewise.
6076 (selftest::test_one_liner_fixit_replace_non_equal_range): New
6078 (selftest::test_one_liner_fixit_replace_equal_secondary_range):
6080 (selftest::test_diagnostic_show_locus_one_liner): Call the new
6082 * diagnostic.c (print_parseable_fixits): Remove case
6085 2016-08-19 Uros Bizjak <ubizjak@gmail.com>
6088 * config/i386/i386.c (ix86_option_override_internal): Remove
6089 PTA_PRFCHW from entries that also have PTA_3DNOW flag.
6090 Enable SSE prefetch also for TARGET_PREFETCHWT1.
6091 Do not try to enable TARGET_PRFCHW ISA flag here.
6092 * config/i386/i386.md (prefetch): Enable also for TARGET_3DNOW.
6093 Rewrite expander function body.
6094 (*prefetch_3dnow): Enable for TARGET_3DNOW and TARGET_PREFETCHWT1.
6096 2016-08-19 Joseph Myers <joseph@codesourcery.com>
6099 * tree-core.h (TI_COMPLEX_FLOAT16_TYPE)
6100 (TI_COMPLEX_FLOATN_NX_TYPE_FIRST, TI_COMPLEX_FLOAT32_TYPE)
6101 (TI_COMPLEX_FLOAT64_TYPE, TI_COMPLEX_FLOAT128_TYPE)
6102 (TI_COMPLEX_FLOAT32X_TYPE, TI_COMPLEX_FLOAT64X_TYPE)
6103 (TI_COMPLEX_FLOAT128X_TYPE, TI_FLOAT16_TYPE, TI_FLOATN_TYPE_FIRST)
6104 (TI_FLOATN_NX_TYPE_FIRST, TI_FLOAT32_TYPE, TI_FLOAT64_TYPE)
6105 (TI_FLOAT128_TYPE, TI_FLOATN_TYPE_LAST, TI_FLOAT32X_TYPE)
6106 (TI_FLOATNX_TYPE_FIRST, TI_FLOAT64X_TYPE, TI_FLOAT128X_TYPE)
6107 (TI_FLOATNX_TYPE_LAST, TI_FLOATN_NX_TYPE_LAST): New enum
6109 (NUM_FLOATN_TYPES, NUM_FLOATNX_TYPES, NUM_FLOATN_NX_TYPES): New
6111 (struct floatn_type_info): New structure type.
6112 (floatn_nx_types): New variable declaration.
6113 * tree.h (FLOATN_TYPE_NODE, FLOATN_NX_TYPE_NODE)
6114 (FLOATNX_TYPE_NODE, float128_type_node, float64x_type_node)
6115 (COMPLEX_FLOATN_NX_TYPE_NODE): New macros.
6116 * tree.c (floatn_nx_types): New variable.
6117 (build_common_tree_nodes): Initialize _FloatN, _FloatNx and
6118 corresponding complex types.
6119 * target.def (floatn_mode): New hook.
6120 * targhooks.c: Include "real.h".
6121 (default_floatn_mode): New function.
6122 * targhooks.h (default_floatn_mode): New prototype.
6123 * doc/extend.texi (Floating Types): Document _FloatN and _FloatNx
6125 * doc/sourcebuild.texi (float@var{n}, float@var{n}x): Document new
6126 effective-target and dg-add-options keywords.
6127 (float@var{n}_runtime, float@var{n}x_runtime, floatn_nx_runtime):
6128 Document new effective-target keywords.
6129 * doc/tm.texi.in (TARGET_FLOATN_MODE): New @hook.
6130 * doc/tm.texi: Regenerate.
6131 * ginclude/float.h (LDBL_DECIMAL_DIG): Define to
6132 __LDBL_DECIMAL_DIG__, not __DECIMAL_DIG__.
6133 [__STDC_WANT_IEC_60559_TYPES_EXT__]: Define macros from TS
6135 * real.h (struct real_format): Add field ieee_bits.
6136 * real.c (ieee_single_format, mips_single_format)
6137 (motorola_single_format, spu_single_format, ieee_double_format)
6138 (mips_double_format, motorola_double_format)
6139 (ieee_extended_motorola_format, ieee_extended_intel_96_format)
6140 (ieee_extended_intel_128_format)
6141 (ieee_extended_intel_96_round_53_format, ibm_extended_format)
6142 (mips_extended_format, ieee_quad_format, mips_quad_format)
6143 (vax_f_format, vax_d_format, vax_g_format, decimal_single_format)
6144 (decimal_double_format, decimal_quad_format, ieee_half_format)
6145 (arm_half_format, real_internal_format: Initialize ieee_bits
6147 * config/i386/i386.c (ix86_init_builtin_types): Do not initialize
6148 float128_type_node. Set float80_type_node to float64x_type_node
6149 if appropriate and long_double_type_node not appropriate.
6150 * config/ia64/ia64.c (ia64_init_builtins): Likewise.
6151 * config/pdp11/pdp11.c (pdp11_f_format, pdp11_d_format):
6152 Initialize ieee_bits field.
6153 * config/rs6000/rs6000.c (TARGET_FLOATN_MODE): New macro.
6154 (rs6000_init_builtins): Set ieee128_float_type_node to
6156 (rs6000_floatn_mode): New function.
6158 2016-08-19 Jakub Jelinek <jakub@redhat.com>
6160 * config/i386/rdseedintrin.h (_rdseed16_step, _rdseed32_step,
6161 _rdseed64_step): Uglify argument names and/or local variable names
6162 in inline functions.
6163 * config/i386/rtmintrin.h (_xabort): Likewise.
6164 * config/i386/avx512vlintrin.h (_mm256_ternarylogic_epi64,
6165 _mm256_mask_ternarylogic_epi64, _mm256_maskz_ternarylogic_epi64,
6166 _mm256_ternarylogic_epi32, _mm256_mask_ternarylogic_epi32,
6167 _mm256_maskz_ternarylogic_epi32, _mm_ternarylogic_epi64,
6168 _mm_mask_ternarylogic_epi64, _mm_maskz_ternarylogic_epi64,
6169 _mm_ternarylogic_epi32, _mm_mask_ternarylogic_epi32,
6170 _mm_maskz_ternarylogic_epi32): Likewise.
6171 * config/i386/lwpintrin.h (__llwpcb, __lwpval32, __lwpval64,
6172 __lwpins32, __lwpins64): Likewise.
6173 * config/i386/avx2intrin.h (_mm_i32gather_pd, _mm_mask_i32gather_pd,
6174 _mm256_i32gather_pd, _mm256_mask_i32gather_pd, _mm_i64gather_pd,
6175 _mm_mask_i64gather_pd, _mm256_i64gather_pd, _mm256_mask_i64gather_pd,
6176 _mm_i32gather_ps, _mm_mask_i32gather_ps, _mm256_i32gather_ps,
6177 _mm256_mask_i32gather_ps, _mm_i64gather_ps, _mm_mask_i64gather_ps,
6178 _mm256_i64gather_ps, _mm256_mask_i64gather_ps, _mm_i32gather_epi64,
6179 _mm_mask_i32gather_epi64, _mm256_i32gather_epi64,
6180 _mm256_mask_i32gather_epi64, _mm_i64gather_epi64,
6181 _mm_mask_i64gather_epi64, _mm256_i64gather_epi64,
6182 _mm256_mask_i64gather_epi64, _mm_i32gather_epi32,
6183 _mm_mask_i32gather_epi32, _mm256_i32gather_epi32,
6184 _mm256_mask_i32gather_epi32, _mm_i64gather_epi32,
6185 _mm_mask_i64gather_epi32, _mm256_i64gather_epi32,
6186 _mm256_mask_i64gather_epi32): Likewise.
6187 * config/i386/pmm_malloc.h (_mm_malloc, _mm_free): Likewise.
6188 * config/i386/ia32intrin.h (__writeeflags): Likewise.
6189 * config/i386/pkuintrin.h (_wrpkru): Likewise.
6190 * config/i386/avx512pfintrin.h (_mm512_mask_prefetch_i32gather_pd,
6191 _mm512_mask_prefetch_i32gather_ps, _mm512_mask_prefetch_i64gather_pd,
6192 _mm512_mask_prefetch_i64gather_ps, _mm512_prefetch_i32scatter_pd,
6193 _mm512_prefetch_i32scatter_ps, _mm512_mask_prefetch_i32scatter_pd,
6194 _mm512_mask_prefetch_i32scatter_ps, _mm512_prefetch_i64scatter_pd,
6195 _mm512_prefetch_i64scatter_ps, _mm512_mask_prefetch_i64scatter_pd,
6196 _mm512_mask_prefetch_i64scatter_ps): Likewise.
6197 * config/i386/gmm_malloc.h (_mm_malloc, _mm_free): Likewise.
6198 * config/i386/avx512fintrin.h (_mm512_ternarylogic_epi64,
6199 _mm512_mask_ternarylogic_epi64, _mm512_maskz_ternarylogic_epi64,
6200 _mm512_ternarylogic_epi32, _mm512_mask_ternarylogic_epi32,
6201 _mm512_maskz_ternarylogic_epi32, _mm512_i32gather_ps,
6202 _mm512_mask_i32gather_ps, _mm512_i32gather_pd, _mm512_i64gather_ps,
6203 _mm512_i64gather_pd, _mm512_i32gather_epi32, _mm512_i32gather_epi64,
6204 _mm512_i64gather_epi32, _mm512_i64gather_epi64): Likewise.
6206 * config/i386/fxsrintrin.h (_fxsave): Remove return keyword in inlines
6208 (_fxrstor, _fxsave64, _fxrstor64): Likewise.
6209 * config/i386/xsaveintrin.h (_xsave, _xrstor, _xsave64, _xrstor64):
6211 * config/i386/xsaveoptintrin.h (_xsaveopt, _xsaveopt64): Likewise.
6212 * config/i386/pkuintrin.h (_wrpkru): Likewise. Add space after
6214 (_rdpkru_u32): Add space after function name.
6216 * config/i386/t-i386 (i386-c.o): Don't depend on
6217 i386-builtin-types.inc.
6218 (i386.o): Depend on i386-builtin-types.inc.
6220 2016-08-19 Matthew Wahab <matthew.wahab@arm.com>
6223 * config/arm/arm.c (neon_valid_immediate): Delete declaration.
6224 Use const_vec_duplicate to check for duplicated elements.
6226 2016-08-19 Richard Biener <rguenther@suse.de>
6228 PR tree-optimization/77290
6229 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
6230 Fix flag_tree_parallelize_loops check.
6232 2016-08-19 Richard Biener <rguenther@suse.de>
6234 * match.pd (x | 0 -> x): Add.
6236 2016-08-19 Richard Biener <rguenther@suse.de>
6238 PR tree-optimization/77286
6239 * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
6240 Deal with virtual PHIs being out-of-order.
6242 2016-08-18 David Malcolm <dmalcolm@redhat.com>
6244 * doc/invoke.texi (fverbose-asm): Note that source code lines
6245 are emitted, and provide an example.
6246 * final.c (asm_show_source): New function.
6247 (final_scan_insn): Call asm_show_source.
6249 2016-08-18 David Malcolm <dmalcolm@redhat.com>
6251 * diagnostic-show-locus.c (colorizer::colorizer): Replace diagnostic
6252 param with diagnostic_kind.
6253 (class colorizer): Similarly replace field m_diagnostic with
6255 (colorizer::colorizer): Replace diagnostic
6256 param with diagnostic_kind.
6257 (colorizer::begin_state): Update for above field change.
6258 (layout::layout): Replace diagnostic param with rich_location *
6259 and diagnostic_kind.
6260 (diagnostic_show_locus): Replace diagnostic param with richloc
6261 and diagnostic_kind.
6262 (class selftest::test_diagnostic_context): New class.
6263 (selftest::test_diagnostic_show_locus_unknown_location): New
6265 (selftest::test_one_liner_simple_caret): New function.
6266 (selftest::test_one_liner_caret_and_range): New function.
6267 (selftest::test_one_liner_multiple_carets_and_ranges): New
6269 (selftest::test_one_liner_fixit_remove): New function.
6270 (selftest::test_one_liner_fixit_replace): New function.
6271 (selftest::test_diagnostic_show_locus_one_liner): New function.
6272 (selftest::diagnostic_show_locus_c_tests): Call the new test
6274 * diagnostic.c (diagnostic_initialize): Initialize
6275 colorize_source_p, show_ruler_p and parseable_fixits_p.
6276 (default_diagnostic_finalizer): Update for change to
6277 diagnostic_show_locus.
6278 (diagnostic_append_note): Likewise.
6279 * diagnostic.h (diagnostic_show_locus): Replace
6280 const diagnostic_info * param with location * and diagnostic_t.
6282 2016-08-18 David Malcolm <dmalcolm@redhat.com>
6284 * input.c (saved_line_table): New global.
6285 (class selftest::temp_line_table): Rename to line_table_test and
6286 move declaration to selftest.h, and drop field m_old_line_table.
6287 (selftest::temp_line_table::temp_line_table): Rename ctor to...
6288 (selftest::line_table_test::line_table_test): ...this. Add a
6289 default ctor. Store current value of line_table within
6291 (selftest::temp_line_table::~temp_line_table): Rename dtor to...
6292 (selftest::line_table_test::~line_table_test): ...this, and
6293 restore line_table from the saved_line_table, rather than
6295 (selftest::test_accessing_ordinary_linemaps): Update for above
6297 (selftest::test_lexer): Likewise.
6298 (struct selftest::lexer_test): Likewise.
6299 (selftest::lexer_test::lexer_test): Likewise.
6300 (selftest::input_c_tests): Move the looping over test cases from
6302 (selftest::for_each_line_table_case): New function.
6303 * input.h (saved_line_table): New decl.
6304 * selftest.h (struct selftest::line_table_case): New forward decl.
6305 (class selftest::line_table_test): New class, moved here from
6306 selftest::temp_line_table in input.c, and renamed.
6307 (selftest::for_each_line_table_case): New decl.
6309 2015-08-18 H.J. Lu <hongjiu.lu@intel.com>
6312 * config/i386/i386.c (lakemont_cost): Set MOVE_RATIO to 17.
6314 2016-08-18 Chung-Lin Tang <cltang@codesourcery.com>
6317 * gimplify.c (omp_add_variable): Adjust/add variable mapping on
6318 enclosing parallel construct for reduction variables on OpenACC loop
6321 2016-08-18 Pierre-Marie de Rodat <derodat@adacore.com>
6323 * dwarf2out.c (copy_dwarf_procedure): Remove obsolete comment.
6324 (new_dwarf_proc_die): Emit DW_TAG_dwarf_procedure DIEs even for
6326 (function_to_dwarf_procedure): Update comment.
6328 2016-08-18 David Malcolm <dmalcolm@redhat.com>
6330 * input.c (diagnostics_file_cache_forcibly_evict_file): New
6332 * input.h (diagnostics_file_cache_forcibly_evict_file): New
6334 * selftest.c (selftest::temp_source_file::~temp_source_file):
6335 Evict m_filename from the diagnostic file cache.
6337 2016-08-18 Richard Biener <rguenther@suse.de>
6339 * tree-pass.h (make_pass_materialize_all_clones): Declare.
6340 * ipa.c (pass_data_materialize_all_clones, pass_materialize_all_clones,
6341 make_pass_materialize_all_clones): New simple IPA pass encapsulating
6342 clone materialization.
6343 * passes.def (all_late_ipa_passes): Start with
6344 pass_materialize_all_clones.
6345 * cgraphunit.c (symbol_table::compile): Remove call to
6346 materialize_all_clones.
6347 * tree-into-ssa.c: Include statistics.h.
6348 (update_ssa): Count number of times we do incremental/rewrite
6351 2016-08-18 Richard Biener <rguenther@suse.de>
6353 PR tree-optimization/77282
6354 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
6355 When doing auto-parallelizing also prevent use of PHIs that
6356 carry dependences across loop backedges.
6358 2016-08-18 Tamar Christina <tamar.christina@arm.com>
6359 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
6361 * varasm.c (default_use_anchors_for_symbol_p): Reject too large decls.
6363 2016-08-18 Richard Biener <rguenther@suse.de>
6365 * ssa-iterators.h (ssa_vuse_operand): New inline.
6366 * tree-if-conv.c (ifc_temp_var): Update virtual operand.
6367 (predicate_all_scalar_phis): Use remove_phi_node to remove
6368 phi nodes predicated. Delay removing virtual PHIs.
6369 (predicate_mem_writes): Update virtual operands.
6370 (combine_blocks): Likewise. Propagate out remaining virtual PHIs.
6371 (tree_if_conversion): Do not rewrite virtual SSA form.
6372 * tree-phinodes.c (release_phi_node): Make static.
6373 * tree-phinodes.h (release_phi_node): Remove.
6375 2016-08-18 Jakub Jelinek <jakub@redhat.com>
6377 * config/i386/i386.c (enum ix86_builtins): Remove IX86_BUILTIN_*
6378 codes that appear in bdesc_* arrays, instead include i386-builtin.def
6379 twice to define those.
6380 (bdesc_comi, bdesc_pcmpestr, bdesc_pcmpistr, bdesc_special_args,
6381 bdesc_args, bdesc_round_args, bdesc_mpx, bdesc_mpx_const,
6382 bdesc_multi_arg): Define by including i386-builtin.def the third time.
6383 * config/i386/i386-builtin.def: New file.
6385 2016-08-17 David Malcolm <dmalcolm@redhat.com>
6387 * input.c (get_source_range_for_char): Rename to...
6388 (selftest::get_source_range_for_char): ...this, and move within
6389 the #if CHECKING_P guard.
6390 (get_num_source_ranges_for_substring): Rename to...
6391 (selftest::get_num_source_ranges_for_substring): ...this, move
6392 within the #if CHECKING_P guard, and make static.
6393 (selftest::assert_num_substring_ranges): Initialize
6396 2016-08-18 Alan Modra <amodra@gmail.com>
6398 PR rtl-optimization/72771
6399 * reload.c (find_reloads): Don't assume that a subreg mem is OK
6400 when find_reloads_toplev returns address_reloaded==-1.
6401 (alternative_allows_const_pool_ref): Update comment.
6403 2015-08-17 Alan Hayward <alan.hayward@arm.com>
6405 PR tree-optimization/71752
6406 * tree-vect-loop.c (vectorizable_reduction): Keep SLP operand ordering.
6407 * tree-vect-slp.c (vect_get_slp_defs): Handle null operands.
6409 2016-08-17 Jakub Jelinek <jakub@redhat.com>
6411 * gimple-fold.c (gimple_fold_call): Use gimple_call_noreturn_p
6412 instead of testing ECF_NORETURN bit in gimple_call_flags.
6413 * tree-cfg.c (make_edges_bb, execute_fixup_cfg): Likewise.
6414 * predict.c (tree_bb_level_predictions): Likewise.
6415 * gimple-low.c (gimple_stmt_may_fallthru): Likewise.
6418 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): If
6419 turning a call into __builtin_unreachable-like noreturn call, adjust
6420 gimple_call_set_fntype.
6421 * tree-cfgcleanup.c (fixup_noreturn_call): Remove lhs also if
6422 gimple_call_fntype has void return type.
6424 2016-08-17 Chung-Lin Tang <cltang@codesourcery.com>
6426 * omp-low.c (lower_oacc_reductions): Adjust variable lookup to use
6427 maybe_lookup_decl, to handle nested acc loop directives.
6429 2016-08-17 Richard Biener <rguenther@suse.de>
6431 PR tree-optimization/76490
6432 * tree-vrp.c (update_value_range): Preserve overflow infinities
6433 when intersecting with ranges from get_range_info.
6434 (operand_less_p): Handle overflow infinities correctly.
6435 (value_range_constant_singleton): Use vrp_operand_equal_p
6436 to handle overflow max/min correctly.
6437 (vrp_valueize): Likewise.
6438 (union_ranges): Likewise.
6439 (intersect_ranges): Likewise.
6440 (vrp_visit_phi_node): Improve iteration limitation to only
6441 apply when we'll possibly re-visit the PHI via a changed argument
6444 2016-08-17 Thomas Preud'homme <thomas.preudhomme@arm.com>
6446 * config/arm/t-aprofile (MULTILIB_EXCEPTIONS): Rewrite into ...
6447 (MULTILIB_REQUIRED): This by specifying multilib needing to be built
6448 rather than those that should not be built.
6450 2016-08-17 Stanislaw Halik <sthalik@misaki.pl>
6453 * config/i386/xm-mingw32.h (HOST_BITS_PER_PTR): Define if __x86_64__.
6455 2016-08-17 Richard Biener <rguenther@suse.de>
6457 * tree-ssa.c: Include tree-cfg.h and tree-dfa.h.
6458 (verify_vssa): New function verifying virtual SSA form.
6459 (verify_ssa): Call it.
6460 * tree-ssa-loop-manip.c (slpeel_update_phi_nodes_for_guard2):
6461 Do not apply loop-closed SSA handling to virtuals.
6462 * ssa-iterators.h (op_iter_init): Handle GIMPLE_TRANSACTION.
6463 * tree-into-ssa.c (prepare_use_sites_for): Skip virtual SSA names
6464 when rewriting their symbol.
6465 (prepare_def_site_for): Likewise.
6466 * tree-chkp-opt.c (chkp_reduce_bounds_lifetime): Clear virtual
6467 operands of moved stmts.
6469 2016-08-17 Richard Biener <rguenther@suse.de>
6471 PR tree-optimization/23855
6472 * tree-ssa-loop-unswitch.c: Include tree-ssa-loop-manip.h.
6473 (tree_unswitch_outer_loop): Iterate find_loop_guard as long as we
6474 find guards to hoist. Do not update SSA form but rewrite virtuals
6475 into loop closed SSA.
6476 (find_loop_guard): Adjust to skip already hoisted guards. Do
6477 not mark virtuals for renaming or update SSA form.
6479 2016-08-17 Martin Liska <mliska@suse.cz>
6481 * coverage.c (get_gcov_type): Replace GCOV_TYPE_SIZE with
6482 a LONG_LONG_TYPE_SIZE comparison.
6483 * gcov-io.h: Remove macro definitions.
6484 * tree-profile.c (gimple_gen_edge_profiler): Replace usage
6485 of GCOV_TYPE_ATOMIC_FETCH_ADD with a LONG_LONG_TYPE_SIZE
6488 2016-08-16 Jakub Jelinek <jakub@redhat.com>
6490 * config/i386/i386.c (enum ix86_builtins): Reorder enumerators, so
6491 that builtins not mentioned in bdesc_* arrays come first, then
6492 the ones mentioned in bdesc_* arrays in the order they appear in
6493 the arrays in between IX86_BUILTIN__BDESC_*_FIRST and
6494 IX86_BUILTIN__BDESC_*_LAST enumerator.
6495 (bdesc_mpx): Fix up a comment typo.
6496 (bdesc_multi_arg): Remove __builtin_ia32_vpcomne[bwdq] and
6497 __builtin_ia32_vpcomneu[bwdq] builtins.
6498 (BDESC_VERIFY, BDESC_VERIFYS): Define.
6499 (ix86_init_mmx_sse_builtins, ix86_init_mpx_builtins): Verify
6500 enum ix86_builtins ordering.
6501 (ix86_expand_builtin): Use enum ix86_builtins ordering assumption
6502 for direct bdesc_* array member access instead of searching all the
6503 arrays until an fcode match is found.
6505 2016-08-16 Uros Bizjak <ubizjak@gmail.com>
6507 * config/i386/i386.md (*ashl<mode>3_mask): Rewrite define_insn
6508 pattern as define_insn_and_split. Split insn before reload to
6510 (*<shift_insn><mode>3_mask): Ditto. Split insn before reload to
6511 <shift_insn><mode>3_1.
6512 (*<rotate_insn><mode>3_mask): Ditto. Split insn before reload to
6513 <rotate_insn><mode>3_1.
6515 2016-08-16 David Malcolm <dmalcolm@redhat.com>
6518 * input.c (get_source_range_for_substring): Rename to...
6519 (get_source_location_for_substring): ...this, adding param
6520 "caret_idx", and converting output param from source_range * to
6522 (get_source_range_for_char): New function.
6523 (get_num_source_ranges_for_substring): Update comment to reflect
6525 (assert_char_at_range): Update to use get_source_range_for_char
6526 rather than get_source_range_for_substring.
6527 (test_lexer_string_locations_concatenation_2): Likewise.
6528 * substring-locations.h (get_source_range_for_substring): Rename
6530 (get_source_location_for_substring): ...this, and adding param
6531 "caret_idx", and converting output param from source_range * to
6534 2016-08-16 David Malcolm <dmalcolm@redhat.com>
6536 * input.c (class selftest::temp_source_file): Move to
6538 (selftest::temp_source_file::temp_source_file): Move to
6540 (selftest::temp_source_file::~temp_source_file): Likewise.
6541 * selftest.c (selftest::temp_source_file::temp_source_file): Move
6543 (selftest::temp_source_file::~temp_source_file): Likewise.
6544 * selftest.h (class selftest::temp_source_file): Move here from
6547 2016-08-16 Jakub Jelinek <jakub@redhat.com>
6550 * tree-cfg.c (execute_fixup_cfg): Add node variable, use it. Before
6551 inlining, add cgraph edge for the added __builtin_unreachable call.
6554 * expmed.c (expand_mult_const): Change val_so_far's type to UHWI,
6555 only cast it to SHWI for the final comparison.
6557 2016-08-16 Martin Liska <mliska@suse.cz>
6559 PR gcov-profile/36412
6560 * doc/gcov.texi: Document --hash-filenames(-x).
6561 * gcov.c (print_usage): Add the option.
6562 (process_args): Process the option, sort options alphabetically.
6563 (md5sum_to_hex): New function.
6564 (make_gcov_file_name): Do the md5sum and append it to a
6567 2016-08-16 Bin Cheng <bin.cheng@arm.com>
6569 PR tree-optimization/69848
6570 * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Invert NE
6571 and swtich operands to avoid additional NOT instruction.
6572 (vcond<v_cmp_mixed><mode>): Ditto.
6573 (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
6575 2016-08-16 Eric Botcazou <ebotcazou@adacore.com>
6577 * doc/install.texi (*-*-solaris2*): Adjust latest change.
6579 2016-08-16 Richard Biener <rguenther@suse.de>
6581 PR tree-optimization/76783
6582 * tree-ssa-propagate.c (ssa_prop_init): Use RPO order. Clear
6583 BB visited flags at start.
6585 2016-08-16 Bin Cheng <bin.cheng@arm.com>
6587 PR tree-optimization/72817
6588 PR tree-optimization/73450
6589 * tree-ssa-loop-niter.c (number_of_iterations_ne): Check
6590 multiple_of_p for adjusted IV.base.
6592 2016-08-15 Uros Bizjak <ubizjak@gmail.com>
6595 * config/i386/sse.md (<code><mode>3<mask_name><round_saeonly_name>):
6596 Emit ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>
6597 for !flag_finite_math_only or flag_signed_zeros.
6598 (*<code><mode>3<mask_name><round_saeonly_name>): Rename from
6599 *<code><mode>3_finite<mask_name><round_saeonly_name>. Do not
6600 depend on flag_finite_math_only.
6601 (ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>):
6603 (*<code><mode>3<mask_name><round_saeonly_name>): Remove.
6604 (*ieee_smin<mode>3): Ditto.
6605 (*ieee_smax<mode>3): Ditto.
6606 * config/i386/mmx.md (mmx_<code>v2sf3): Emit
6607 mmx_ieee_<ieee_maxmin>v2sf3 for !flag_finite_math_only or
6609 (*mmx_<code>v2sf3): Rename from *mmx_<code>v2sf3_finite. Do not
6610 depend on flag_finite_math_only.
6611 (mmx_ieee_<ieee_maxmin>v2sf3): New insn pattern.
6612 (*mmx_<code>v2sf3): Remove.
6613 * config/i386/subst.md (round_saeonly_mask_arg3): New subst attribute.
6614 * config/i386/i386.c (ix86_expand_sse_fp_mimnax): Check
6615 flag_signed_zeros instead of !flag_unsafe_math_optimizations.
6617 2016-08-15 Segher Boessenkool <segher@kernel.crashing.org>
6619 PR rtl-optimization/73650
6620 * lra-constraints.c (simple_move_p): If the insn is multiple_sets
6621 it is not a simple move.
6623 2016-08-15 Martin Liska <mliska@suse.cz>
6626 * gcc.c (do_spec_1): Call save_string with the right size.
6627 (save_string): Do an assert about string we copy.
6629 2016-08-15 Richard Biener <rguenther@suse.de>
6631 * ree.c (rest_of_handle_ree): Remove redundant timevar push/pop.
6632 * config/i386/i386.c (pass_data_insert_vzeroupper): Account to
6634 (pass_data_stv): Likewise.
6636 2016-08-15 Richard Biener <rguenther@suse.de>
6638 PR tree-optimization/73434
6639 * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Preserve
6640 TBAA info on the base when forwarding a non-invariant address.
6642 2016-08-15 Jakub Jelinek <jakub@redhat.com>
6644 * dwarf2out.c (struct checksum_attributes): Add
6645 at_string_length_bit_size and at_string_length_byte_size fields.
6646 (collect_checksum_attributes): Handle DW_AT_string_length_bit_size
6647 and DW_AT_string_length_byte_size.
6648 (die_checksum_ordered): Handle at_string_length_bit_size and
6649 at_string_length_byte_size.
6650 (gen_array_type_die): For dwarf_version >= 5 emit
6651 DW_AT_string_length_byte_size instead of DW_AT_byte_size.
6652 (adjust_string_types): For dwarf_version >= 5 remove
6653 DW_AT_string_length_byte_size instead of DW_AT_byte_size.
6654 (resolve_addr): Likewise.
6657 * dwarf2out.c (string_types): New variable.
6658 (gen_array_type_die): Change early_dwarf handling of
6659 DW_AT_string_length, create DW_OP_call4 referencing the
6660 length var temporarily. Handle parameters that are pointers
6662 (adjust_string_types): New function.
6663 (gen_subprogram_die): Temporarily set string_types to local var,
6664 call adjust_string_types if needed.
6665 (non_dwarf_expression, copy_deref_exprloc, optimize_string_length):
6667 (resolve_addr): Adjust DW_AT_string_length if it is DW_OP_call4.
6669 2016-08-15 Eric Botcazou <ebotcazou@adacore.com>
6671 * doc/install.texi (*-*-solaris2*): Fix version number and document
6672 requirement on GNU make for building libjava with the Solaris linker.
6674 2016-08-15 Martin Liska <mliska@suse.cz>
6675 Jakub Jelinek <jakub@redhat.com>
6677 PR tree-optimization/72824
6678 * tree-loop-distribution.c (const_with_all_bytes_same)
6679 <case VECTOR_CST>: Fix a typo.
6681 2016-08-14 Uros Bizjak <ubizjak@gmail.com>
6684 * config/i386/avx512fintrin.h (_mm512_undefined_epi32):
6685 Renamed from _mm512_undefined_si512.
6686 (_mm_undefined_si512): New definition.
6688 2016-08-13 Richard Biener <rguenther@suse.de>
6690 * tree-ssa-forwprop.c (pass_forwprop::execute): Propagate
6691 into PHIs and update the lattice for its def.
6693 2016-08-12 Jakub Jelinek <jakub@redhat.com>
6696 * ubsan.c (instrument_si_overflow): Pass true instead of false
6698 (pass_ubsan::execute): Call gimple_purge_dead_eh_edges at the end
6699 of bbs. Return TODO_cleanup_cfg if any returned true.
6701 2016-08-12 Michael Meissner <meissner@linux.vnet.ibm.com>
6703 * config/rs6000/vsx.md (vsx_concat_<mode>): Add support for the
6704 ISA 3.0 MTVSRDD instruction.
6705 (vsx_splat_<mode>): Change cpu type of MTVSRDD instruction to
6708 2016-08-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
6710 PR tree-optimization/71083
6711 * tree-predcom.c (ref_at_iteration): Use a COMPONENT_REF for the
6712 bitfield access when possible.
6714 2016-08-12 Patrick Palka <ppalka@gcc.gnu.org>
6717 * match.pd ((T)A CMP (T)B -> A CMP B): Allow (T)A to be a
6718 sign-changing cast from a shorter unsigned type to a wider
6721 2016-08-12 Jakub Jelinek <jakub@redhat.com>
6723 * config/i386/sse.md (avx512dq_vextract<shuffletype>64x2_1_maskm,
6724 vec_extract_hi_<mode>_mask, vec_extract_lo_<mode>_mask,
6725 vec_extract_hi_<mode>_mask): Use Yk constraint instead of k.
6727 2016-08-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
6729 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost):
6730 Correct costs for vec_construct.
6732 2016-08-12 Bin Cheng <bin.cheng@arm.com>
6734 PR tree-optimization/69848
6735 * tree-vectorizer.h (enum vect_def_type): New condition reduction
6736 type CONST_COND_REDUCTION.
6737 * tree-vect-loop.c (vectorizable_reduction): Support new condition
6738 reudction type CONST_COND_REDUCTION.
6740 2016-08-12 Richard Biener <rguenther@suse.de>
6742 PR tree-optimization/57326
6743 * tree-ssa-pre.c (fully_constant_expression): Handle simplification
6744 returning an SSA name.
6745 (phi_translate_1): When fully_constant_expression returns a NAME
6746 make sure we have a leader for it.
6748 2016-08-12 Martin Liska <mliska@suse.cz>
6749 Adam Fineman <afineman@afineman.com>
6751 * gcov.c (process_file): Create .gcov file when .gcda
6754 2016-08-12 Marek Polacek <polacek@redhat.com>
6757 * alias.c (find_base_value): Adjust fall through comment.
6758 * cfgexpand.c (expand_debug_expr): Likewise.
6759 * combine.c (find_split_point): Likewise.
6760 (expand_compound_operation): Likewise. Add FALLTHRU.
6761 (make_compound_operation): Adjust fall through comment.
6762 (canon_reg_for_combine): Add FALLTHRU.
6763 (force_to_mode): Adjust fall through comment.
6764 (simplify_shift_const_1): Likewise.
6765 (simplify_comparison): Likewise.
6766 * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Add
6768 * config/aarch64/predicates.md: Likewise.
6769 * config/i386/i386.c (function_arg_advance_32): Likewise.
6770 (ix86_gimplify_va_arg): Likewise.
6771 (print_reg): Likewise.
6772 (ix86_print_operand): Likewise.
6773 (ix86_build_const_vector): Likewise.
6774 (ix86_expand_branch): Likewise.
6775 (ix86_sched_init_global): Adjust fall through comment.
6776 (ix86_expand_args_builtin): Add FALLTHRU.
6777 (ix86_expand_builtin): Likewise.
6778 (ix86_expand_vector_init_one_var): Likewise.
6779 * config/rs6000/rs6000.c (rs6000_emit_vector_compare_inner): Likewise.
6780 (rs6000_adjust_cost): Likewise.
6781 (insn_must_be_first_in_group): Likewise.
6782 * config/rs6000/rs6000.md: Likewise. Adjust fall through comment.
6783 * dbxout.c (dbxout_symbol): Adjust fall through comment.
6784 * df-scan.c (df_uses_record): Likewise.
6785 * dojump.c (do_jump): Add FALLTHRU.
6786 * dwarf2out.c (mem_loc_descriptor): Likewise. Adjust fall through
6788 (resolve_args_picking_1): Adjust fall through comment.
6789 (loc_list_from_tree_1): Likewise.
6790 * expmed.c (make_tree): Likewise.
6791 * expr.c (expand_expr_real_2): Add FALLTHRU.
6792 (expand_expr_real_1): Likewise. Adjust fall through comment.
6793 * fold-const.c (const_binop): Adjust fall through comment.
6794 (fold_truth_not_expr): Likewise.
6795 (fold_cond_expr_with_comparison): Add FALLTHRU.
6796 (fold_binary_loc): Likewise.
6797 (contains_label_1): Adjust fall through comment.
6798 (multiple_of_p): Likewise.
6799 * gcov-tool.c (process_args): Add FALLTHRU.
6800 * genattrtab.c (check_attr_test): Likewise.
6801 (write_test_expr): Likewise.
6802 * genconfig.c (walk_insn_part): Likewise.
6803 * genpreds.c (validate_exp): Adjust fall through comment.
6804 (needs_variable): Likewise.
6805 * gensupport.c (get_alternatives_number): Add FALLTHRU.
6806 (subst_dup): Likewise.
6807 * gimple-pretty-print.c (dump_gimple_assign): Likewise.
6808 * gimplify.c (gimplify_addr_expr): Adjust fall through comment.
6809 (gimplify_scan_omp_clauses): Add FALLTHRU.
6810 (goa_stabilize_expr): Likewise.
6811 * graphite-isl-ast-to-gimple.c (substitute_ssa_name): Adjust fall
6813 * hsa-gen.c (get_address_from_value): Likewise.
6814 * ipa-icf.c (sem_function::hash_stmt): Likewise.
6815 * ira.c (ira_setup_alts): Add FALLTHRU.
6816 * lra-eliminations.c (lra_eliminate_regs_1): Adjust fall through
6818 * lto-streamer-out.c (lto_output_tree_ref): Add FALLTHRU.
6819 * opts.c (common_handle_option): Likewise.
6820 * read-rtl.c (read_rtx_code): Likewise.
6821 * real.c (round_for_format): Likewise.
6822 * recog.c (asm_operand_ok): Likewise.
6823 * reginfo.c (reg_scan_mark_refs): Adjust fall through comment.
6824 * reload1.c (set_label_offsets): Likewise.
6825 (eliminate_regs_1): Likewise.
6826 (reload_reg_reaches_end_p): Likewise.
6827 * rtlanal.c (commutative_operand_precedence): Add FALLTHRU.
6828 (rtx_cost): Likewise.
6829 * sched-rgn.c (is_exception_free): Likewise.
6830 * simplify-rtx.c (simplify_rtx): Adjust fall through comment.
6831 * stor-layout.c (int_mode_for_mode): Likewise.
6832 * toplev.c (print_to_asm_out_file): Likewise.
6833 (print_to_stderr): Likewise.
6834 * tree-cfg.c (gimple_verify_flow_info): Likewise.
6835 * tree-chrec.c (chrec_fold_plus_1): Add FALLTHRU.
6836 (chrec_fold_multiply): Likewise.
6837 (evolution_function_is_invariant_rec_p): Likewise.
6838 (for_each_scev_op): Likewise.
6839 * tree-data-ref.c (siv_subscript_p): Likewise.
6840 (get_references_in_stmt): Likewise.
6841 * tree.c (find_placeholder_in_expr): Adjust fall through comment.
6842 (substitute_in_expr): Likewise.
6843 (type_cache_hasher::equal): Likewise.
6844 (walk_type_fields): Likewise.
6845 * var-tracking.c (adjust_mems): Add FALLTHRU.
6846 (set_dv_changed): Adjust fall through comment.
6847 * varasm.c (default_function_section): Add FALLTHRU.
6849 2016-08-12 Marek Polacek <polacek@redhat.com>
6852 * tree-complex.c (expand_complex_division): Add missing break.
6854 2016-08-12 Richard Biener <rguenther@suse.de>
6856 * passes.c (execute_todo): Do not push/pop TV_TODO.
6857 (execute_one_ipa_transform_pass): Move timevar push/pop TODO execution.
6858 (execute_one_pass): Likewise.
6859 * common.opt (ftime-report-details): New switch.
6860 * doc/invoke.texi (ftime-report-details): Document.
6861 * timevar.h (timer::print_row): Adjust signature.
6862 (timer::all_zero): New static helper.
6863 (timer::child_map_t): New typedef.
6864 (timer::time_var_def): Add children field.
6865 * timevar.c (timer::named_items::print): Adjust.
6866 (timer::~timer): Free timevar recorded children.
6867 (timer::pop_internal): When -ftime-report-details record
6868 time spent in sub-timevars.
6869 (timer::print_row): Adjust.
6870 (timer::print): Print sub-timevar stats, use all_zero.
6871 * timevar.def (TV_TODO): Remove.
6873 2016-08-12 Richard Biener <rguenther@suse.de>
6875 PR tree-optimization/72851
6876 * tree-ssa-propagate.c: Include cfganal.h. Rewrite block and stmt
6877 worklists to use bitmaps indexed in execution order.
6878 (executable_blocks, cfg_blocks_num, cfg_blocks_tail, cfg_blocks_head,
6879 bb_in_list, interesting_ssa_edges, varying_ssa_edges): Remove.
6880 (cfg_blocks): Make a bitmap.
6881 (bb_to_cfg_order, cfg_order_to_bb, ssa_edge_worklist, uid_to_stmt):
6883 (cfg_blocks_empty_p): Adjust.
6884 (cfg_blocks_add): Likewise.
6885 (cfg_blocks_get): Likewise.
6886 (add_ssa_edge): Likewise.
6887 (add_control_edge): Likewise.
6888 (simulate_stmt): Likewise.
6889 (process_ssa_edge_worklist): Likewise.
6890 (simulate_block): Likewise.
6891 (ssa_prop_init): Compute PRE order and stmt UIDs.
6892 (ssa_prop_fini): Adjust.
6893 (ssa_propagate): Adjust.
6895 2016-08-12 Richard Biener <rguenther@suse.de>
6897 * tree-vrp.c (vrp_visit_phi_node): Allow a last iteration if
6898 the currently executable edges have fixed ranges. Always
6899 go through update_value_range.
6901 2016-08-12 Alexandre Oliva <aoliva@redhat.com>
6905 (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Const_tree-ify.
6906 (LANG_HOOKS_FUNCTION_DECL_DELETED_P): Likewise.
6907 (LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Set default.
6908 (LANG_HOOKS_DECLS): Add it.
6909 * langhooks.h (struct lang_hooks_for_decls): Add
6910 function_decl_defaulted. Const_tree-ify
6911 function_decl_explicit_p and function_decl_deleted_p.
6912 * dwarf2out.c (gen_subprogram_die): Add DW_AT_defaulted
6913 attribute. Add DW_AT_deleted instead of DW_AT_GNU_deleted,
6914 also at strict DWARF v5.
6917 * dwarf2out.c (decl_quals): Don't map TREE_READONLY to
6918 TYPE_QUAL_CONST in reference-typed decls.
6921 * dwarf2out.c (loc_list_from_tree_1): Expand some CONSTRUCTORs
6922 in DW_OP_pieces, just enough to handle pointers to member
6924 (gen_remaining_tmpl_value_param_die_attribute): Use a location
6925 expression on DWARFv5 if a constant value doesn't work.
6927 2016-08-11 David Malcolm <dmalcolm@redhat.com>
6929 * selftest-run-tests.c (selftest::run_tests): Call selftest_c_tests.
6930 * selftest.c (selftest::test_assertions): New function.
6931 (selftest::selftest_c_tests): New function.
6932 * selftest.h (selftest::selftest_c_tests): New declaration.
6934 2016-08-11 Richard Biener <rguenther@suse.de>
6935 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
6937 PR rtl-optimization/72855
6938 * df-core.c (df_verify): Turn off DF_VERIFY_SCHEDULED at end.
6940 2016-08-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
6943 * vsx.md (vsx_load_<mode>): For P8LE, emit swaps at expand time.
6944 (vsx_store_<mode>): Likewise.
6946 2015-08-11 H.J. Lu <hongjiu.lu@intel.com>
6948 * config/i386/i386.c (timode_scalar_to_vector_candidate_p): Allow
6949 TImode CONST_WIDE_INT store.
6950 (timode_scalar_chain::convert_insn): Handle CONST_WIDE_INT store.
6952 2015-08-11 H.J. Lu <hongjiu.lu@intel.com>
6954 * config/i386/i386.h (MOVE_MAX_PIECES): Use TImode in 64-bit
6955 mode if unaligned SSE load and store are optimal.
6957 2016-08-11 Bernd Edlinger <bernd.edlinger@hotmail.de>
6959 PR tree-optimization/71083
6960 * tree-predcom.c (ref_at_iteration): Correctly align the
6963 2016-08-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
6965 * config/s390/s390-builtin-types.def: Add INT128 types.
6966 * config/s390/s390-builtins.def: Add INT128 variants for the add
6967 sub low-level builtins dealing with TImode.
6968 * config/s390/s390.c (s390_expand_builtin): Allow mode conversions
6969 via subreg when expanding a builtin.
6970 * config/s390/s390.md: Remove UNSPEC_VEC_ADDC_U128,
6971 UNSPEC_VEC_SUB_U128, and UNSPEC_VEC_SUBC_U128 constants.
6973 * config/s390/vecintrin.h: Adjust builtin names accordingly.
6974 * config/s390/vx-builtins.md ("vec_add_u128"): Remove expander.
6975 ("vec_addc<mode>", "vec_addc_u128"): Merge to
6976 "vacc<bhfgq>_<mode>".
6977 ("vec_adde_u128"): Rename to "vacq". Change mode to TImode.
6978 ("vec_addec_u128"): Rename to "vacccq". Change mode to TImode.
6979 ("vec_subc<mode>", "vec_subc_u128"): Merge to
6980 "vscbi<bhfgq>_<mode>".
6981 ("vec_sube_u128"): Rename to "vsbiq". Change mode to TImode.
6982 ("vec_subec_u128"): Rename to "vsbcbiq". Change mode to TImode.
6984 2016-08-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
6986 * config/s390/s390-builtins.def: Mark last operand of s390_vlvg*
6988 2016-08-11 Bin Cheng <bin.cheng@arm.com>
6990 * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Delete
6992 (vcond<v_cmp_mixed><mode>): Ditto.
6993 (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
6995 2016-08-11 Bin Cheng <bin.cheng@arm.com>
6997 * config/aarch64/aarch64-simd.md (vec_cmp<mode><v_cmp_result>): Init
6998 variable explicitly, also assert on it before use.
7000 2016-08-11 Richard Biener <rguenther@suse.de>
7002 PR tree-optimization/72772
7003 * cfgloopmanip.c (create_preheader): Use split_edge if there
7004 is a single loop entry, avoiding degenerate PHIs.
7006 2016-08-11 Richard Biener <rguenther@suse.de>
7008 * tree-ssa-threadbackward.c (pass_data_thread_jumps): Remove
7009 unconditional TODO_cleanup_cfg.
7010 (pass_thread_jumps::execute): Initialize loops, perform a CFG
7011 cleanup only if we threaded a jump.
7013 2016-08-11 Alan Modra <amodra@gmail.com>
7016 * lra-constraints.c (simplify_operand_subreg): Allow subreg
7017 mode for mem when SLOW_UNALIGNED_ACCESS if inner mode is also
7018 slow. Emit two reloads for slow mem case, first loading in
7019 fast innermode, then converting to required mode.
7021 2016-08-10 Kelvin Nilsen <kelvin@gcc.gnu.org>
7023 * config/rs6000/altivec.h (vec_extract_exp): New macro.
7024 (vec_extract_sig): New macro.
7025 (vec_insert_exp): New macro.
7026 (vec_test_data_class): New macro.
7027 (scalar_extract_exp): New macro.
7028 (scalar_extract_sig): New macro.
7029 (scalar_insert_exp): New macro.
7030 (scalar_test_data_class): New macro.
7031 (scalar_test_neg): New macro.
7032 (scalar_cmp_exp_gt): New macro.
7033 (scalar_cmp_exp_lt): New macro.
7034 (scalar_cmp_exp_eq): New macro.
7035 (scalar_cmp_exp_unordered): New macro.
7036 * config/rs6000/predicates.md (u7bit_cint_operand): New predicate
7037 to enforce constraint that operand is a 7-bit unsigned literal.
7038 * config/rs6000/rs6000-builtin.def (BU_P9V_64BIT_VSX_1): New macro
7039 for power9 built-ins.
7040 (BU_P9V_VSX_2): Likewise.
7041 (BU_P9V_64BIT_VSX_2): Likewise.
7042 (VSEEDP): Add scalar extract exponent support.
7043 (VSEESP): Add scalar extract signature support.
7044 (VSTDCNDP): Add scalar test negative support.
7045 (VSTDCNSP): Likewise.
7046 (VSIEDP): Add scalar insert exponent support.
7047 (VSCEDPGT): Add scalar compare exponent greater than support.
7048 (VSCEDPLT): Add scalar compare exponent less than support.
7049 (VSCEDPEQ): Add scalar compare exponent test-for-equality support.
7050 (VSCEDPUO): Add scalar compare exponent test-for-unordered support.
7051 (VSTDCDP): Add scalar test data class support.
7052 (VSTDCSP): Likewise.
7053 (VSEEDP): Add overload support for scalar extract exponent
7055 (VSESDP): Add overload support for scalar extract signature
7057 (VSTDCN): Add overload support for scalar test negative
7059 (VSTDCNDP): Add overload support for scalar test negative
7061 (VSTDCNSP): Add overload support for scalar test negative
7063 (VSIEDP): Add overload support for scalar insert exponent
7065 (VSTDC): Add overload support for scalar test data class
7067 (VSTDCDP): Add overload support for scalar test data class
7069 (VSTDCSP): Add overload support for scalar test data class
7071 (VSCEDPGT): Add overload support for scalar compare exponent
7072 greater than operation.
7073 (VSCEDPLT): Add overload support for scalar compare exponent
7074 less than operation.
7075 (VSCEDPEQ): Add overload support for scalar compare exponent
7076 test-for-equality operation.
7077 (VSCEDPUO): Add overload support for scalar compare exponent
7078 test-for-unordered operation.
7079 (VEEDP): Add vector extract exponent support.
7081 (VESDP): Add vector extract significand support.
7083 (VIEDP): Add vector insert exponent support.
7085 (VTDCDP): Add vector test data class support.
7087 (VES): Add overload support for vector extract significand operation.
7090 (VEE): Add overload support for vector extract exponent operation.
7093 (VTDC): Add overload support for vector test data class operation.
7096 (VIE): Add overload support for vector insert exponent operation.
7099 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
7100 overloaded binary floating point functions.
7101 (altivec_resolve_overloaded_builtin): Improve error messages to
7102 distinguish between functions not supported in the current
7103 compiler configuration and functions that were invoked with an
7104 invalid parameter combination, and include the built-in function
7105 name in both error messages.
7106 * config/rs6000/rs6000-protos.h (rs6000_overloaded_builtin_name):
7108 * config/rs6000/rs6000.c (rs6000_overloaded_builtin_name): New
7110 (rs6000_expand_binop_builtin): Add check to enforce that argument
7111 2 of the test data class operations is a 7-bit unsigned literal.
7112 (rs6000_invalid_builtin): Add code to issue an error message if a
7113 built-in function that requires the power9_vector and -m32
7114 command-line options is compiled without these options.
7115 * config/rs6000/vsx.md (UNSPEC_VSX_SXEXPDP): New value.
7116 (UNSPEC_VSX_SXSIGDP): New value.
7117 (UNSPEC_VSX_SXSIGPDP): New value.
7118 (UNSPEC_VSX_SIEXPDP): New value.
7119 (UNSPEC_VSX_SCMPEXPDP): New value.
7120 (UNSPEC_VSX_STSTDC): New value.
7121 (UNSPEC_VSX_VXEXP): New value.
7122 (UNSPEC_VSX_VXSIG): New value.
7123 (UNSPEC_VSX_VIEXP): New value.
7124 (UNSPEC_VSX_VTSTDC): New value.
7125 (xsxexpdp): New insn for scalar extract exponent.
7126 (xsxsigdp): New insn for scalar extract significand.
7127 (xsiexpdp): New insn for scalar insert exponent.
7128 (xscmpexpdp_<code>): New expansion for scalar compare exponents.
7129 (*xscmpexpdp): New insn for scalar compare exponents.
7130 (xststdc<Fvsx): New expansion for both single- and
7131 double-precision scalar test data class operations.
7132 (xststdcneg<Fvsx>): New expansion for both single- and
7133 double-precision scalar test for negative value operations.
7134 (*xststdc<Fvsx>): New insn for scalar test data class
7136 (xvxexp<VSs>): New insn for single- and double-precision
7137 vector extract exponent operation.
7138 (xvxsig<VSs>): New insn for single- and double-precision
7139 vector extract significand operation.
7140 (xviexp<VSs>): New insn for single- and double-precision
7141 vector insert exponent operation.
7142 (xvtstdc<VSs>): New insn for single- and double-precision
7143 vector test data class operation.
7144 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
7145 built-in functions to represent the Power9 binary floating-point
7146 support instructions.
7148 2016-08-10 bin cheng <bin.cheng@arm.com>
7150 * doc/sourcebuild.texi (@item vect_cond_mixed): New item.
7152 2016-08-10 Alan Lawrence <alan.lawrence@arm.com>
7153 Renlin Li <renlin.li@arm.com>
7154 Bin Cheng <bin.cheng@arm.com>
7156 * config/aarch64/iterators.md (V_cmp_mixed, v_cmp_mixed): New.
7157 * config/aarch64/aarch64-simd.md (<su><maxmin>v2di3): Call
7158 gen_vcondv2div2di instead of gen_aarch64_vcond_internalv2div2di.
7159 (aarch64_vcond_internal<mode><mode>): Delete pattern.
7160 (aarch64_vcond_internal<VDQF_COND:mode><VDQF:mode>): Ditto.
7161 (vcond<v_cmp_result><mode>): Ditto.
7162 (vcond<mode><mode>): Re-implement using vec_cmp and vcond_mask.
7163 (vcondu<mode><mode>): Ditto.
7164 (vcond<v_cmp_mixed><mode>): New pattern.
7165 (vcondu<mode><v_cmp_mixed>): New pattern.
7166 (aarch64_cmtst<mode>): Revise comment using aarch64_vcond instead
7167 of aarch64_vcond_internal.
7169 2016-08-10 Alan Lawrence <alan.lawrence@arm.com>
7170 Renlin Li <renlin.li@arm.com>
7171 Bin Cheng <bin.cheng@arm.com>
7173 * config/aarch64/aarch64-simd.md (vec_cmp<mode><mode>): New pattern.
7174 (vec_cmp<mode><v_cmp_result>): New pattern.
7175 (vec_cmpu<mode><mode>): New pattern.
7176 (vcond_mask_<mode><v_cmp_result>): New pattern.
7178 2016-08-10 Yuri Rumyantsev <ysrumyan@gmail.com>
7180 PR tree-optimization/71734
7181 * tree-ssa-loop-im.c (ref_indep_loop_p): Add new argument
7182 REF_LOOP, invoke ref_indep_loop_p_1.
7183 (outermost_indep_loop): Pass LOOP argumnet where REF was defined
7184 to ref_indep_loop_p.
7185 (ref_indep_loop_p_1): Fix commentary, add argument REF_LOOP,
7186 combine it with ref_indep_lopp_p_2, update SAFELEN if only REF
7187 is inside LOOP, do not cache dpendence value for loops with
7189 (ref_indep_loop_p_2): Delete function.
7190 (can_sm_ref_p): Pass LOOP as additional argument to
7193 2016-08-10 Michael Meissner <meissner@linux.vnet.ibm.com>
7196 * config/rs6000/rs6000.c (mem_operand_ds_form): Add check for op
7197 being an offsettable address.
7199 2016-08-10 Martin Liska <mliska@suse.cz>
7201 PR gcov-profile/58306
7202 * tree-profile.c (gimple_init_edge_profiler): Create conditionally
7203 atomic variants of profile update functions.
7205 2016-08-10 Martin Liska <mliska@suse.cz>
7207 Cherry picked (and modified) from google-4_7 branch
7208 2012-12-26 Rong Xu <xur@google.com>
7209 * common.opt (fprofile-update): Add new flag.
7210 * coretypes.h: Define enum profile_update.
7211 * doc/invoke.texi: Document -fprofile-update.
7212 * gcov-io.h: Declare GCOV_TYPE_ATOMIC_FETCH_ADD and
7213 GCOV_TYPE_ATOMIC_FETCH_ADD_FN.
7214 * tree-profile.c (gimple_init_edge_profiler): Generate
7215 also atomic profiler update.
7216 (gimple_gen_edge_profiler): Likewise.
7218 2016-08-10 David Malcolm <dmalcolm@redhat.com>
7220 * toplev.c (finalize): Set aux_info_file, asm_out_file, and
7221 stack_usage_file to NULL after fclose calls.
7223 2016-08-10 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
7226 * reload.c (push_reload): Compute subreg_in_class for
7227 subregs of constants and plus expressions. Remove special
7228 handling of SYMBOL_REFs.
7230 2016-08-10 Alan Modra <amodra@gmail.com>
7233 * config/rs6000/rs6000.h (HARD_REGNO_CALLER_SAVE_MODE): Return
7234 SImode for TARGET_E500_DOUBLE when given SImode.
7236 2016-08-09 David Wohlferd <dw@LimeGreenSocks.com>
7238 * config/i3836/avx512fintrin.h (_mm512_cvtsepi64_epi32): Remove
7239 unused variable __O.
7241 2016-08-09 Martin Liska <mliska@suse.cz>
7243 * doc/gcov.texi: Change _gcov_dump to __gcov_dump and
7244 _gcov_reset to __gcov_reset.
7245 * doc/gcov-tool.texi: Fix typo.
7247 2016-08-09 Martin Liska <mliska@suse.cz>
7249 * value-prof.c (gimple_divmod_values_to_profile): Do not
7250 instrument MOD histogram if a value is not a SSA name.
7252 2016-08-09 Martin Liska <mliska@suse.cz>
7254 * value-prof.c (dump_histogram_value): Swap pow2 and non-pow2
7257 2016-08-09 Renlin Li <renlin.li@arm.com>
7260 * calls.c (prepare_call_address): Convert funexp to Pmode when
7262 * config/aarch64/aarch64.md (sibcall): Remove fix for PR 64971.
7263 (sibcall_value): Likewise.
7265 2016-08-09 Marek Polacek <polacek@redhat.com>
7268 * cselib.c (cselib_expand_value_rtx_1): Add return.
7269 * gengtype.c (dbgprint_count_type_at): Likewise.
7270 * hsa-gen.c (gen_hsa_insn_for_internal_fn_call): Likewise.
7271 * reg-stack.c (get_true_reg): Restructure to avoid fallthrough warning.
7273 2016-08-09 Martin Jambor <mjambor@suse.cz>
7276 * ipa-polymorphic-call.c (get_dynamic_type): Bail out gracefully
7277 if instance is a MEM_REF.
7279 2016-08-09 Uros Bizjak <ubizjak@gmail.com>
7282 * config/i386/i386.md (*movtf_internal): Use
7283 lra_in_progress || reload_completed instead of !can_create_pseudo_p
7284 in the insn constraint.
7285 (*movxf_internal): Ditto.
7286 (*movdf_internal): Ditto.
7287 (*movsf_internal): Ditto.
7289 2016-08-09 Bin Cheng <bin.cheng@arm.com>
7291 PR tree-optimization/72772
7292 * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
7295 2016-08-09 Bin Cheng <bin.cheng@arm.com>
7297 PR tree-optimization/72772
7298 * tree-ssa-loop-niter.h (simplify_using_initial_conditions): Delete
7300 * tree-ssa-loop-niter.c (tree_simplify_using_condition_1): Delete
7301 parameter STOP and update calls. Move expand_simple_operations
7302 function call from here...
7303 (simplify_using_initial_conditions): ...to here. Delete parameter
7305 (tree_simplify_using_condition): Delete parameter STOP.
7306 * tree-scalar-evolution.c (simple_iv_with_niters): Update call to
7307 simplify_using_initial_conditions.
7309 2016-08-09 Matthew Fortune <matthew.fortune@imgtec.com>
7312 * config/mips/mips.c (mips_atomic_assign_expand_fenv):
7313 Use create_tmp_var_raw instead of create_tmp_var.
7315 2016-08-09 Richard Biener <rguenther@suse.de>
7317 * tree-ssa-threadbackward.c (profitable_jump_thread_path):
7318 Treat same SSA names related.
7320 2016-08-09 Jakub Jelinek <jakub@redhat.com>
7322 PR tree-optimization/72824
7323 * tree-loop-distribution.c (const_with_all_bytes_same): Verify
7324 real_zerop is not negative.
7326 2016-08-09 Richard Biener <rguenther@suse.de>
7328 PR tree-optimization/71802
7329 * tree-cfgcleanup.c (cleanup_tree_cfg_bb): Make sure to catch
7330 all merge opportunities with the predecessor.
7332 2016-08-09 Richard Biener <rguenther@suse.de>
7335 * ipa-prop.c (ipa_modify_formal_parameters): Build
7336 parameter types with natural alignment also for the
7339 2016-08-08 Andi Kleen <ak@linux.intel.com>
7341 * tree-vrp.c (get_single_symbol): Always initialize inv and neg.
7343 2016-08-08 David Malcolm <dmalcolm@redhat.com>
7346 * langhooks-def.h (LANG_HOOKS_RUN_LANG_SELFTESTS): New default
7347 do-nothing langhook.
7348 (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_RUN_LANG_SELFTESTS.
7349 * langhooks.h (struct lang_hooks): Add run_lang_selftests.
7350 * selftest-run-tests.c: Include "tree.h" and "langhooks.h".
7351 (selftest::run_tests): Call lang_hooks.run_lang_selftests.
7353 2016-08-08 David Malcolm <dmalcolm@redhat.com>
7356 * input.c: Ensure that HAVE_ICONV is defined.
7358 2016-08-08 Jakub Jelinek <jakub@redhat.com>
7361 * omp-low.c (lower_lastprivate_clauses): Set TREE_NO_WARNING on the
7362 private vars for lastprivate and for linear iterator.
7365 * omp-simd-clone.c: Include varasm.h.
7366 (simd_clone_create): Copy over DECL_COMDAT, DECL_WEAK, DECL_EXTERNAL,
7367 DECL_VISIBILITY, DECL_VISIBILITY_SPECIFIED, DECL_DLLIMPORT_P and for
7368 DECL_ONE_ONLY call make_decl_one_only. Fix up spelling in comment and
7369 update function name.
7371 2016-07-29 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
7373 * config/avr/driver-avr.c (specfiles_doc_url): Remove.
7374 (avr_diagnose_devicespecs_error): Remove.
7375 (avr_devicespecs_file): Remove composing absolute path for specfile
7376 and its verbose info. Remove conditions to check specs-file,
7378 2016-08-08 Jakub Jelinek <jakub@redhat.com>
7380 PR rtl-optimization/72821
7381 * lra-spills.c (regno_in_use_p): Don't use BLOCK_FOR_INSN on barriers,
7382 just return false for them.
7384 2016-08-08 Alan Modra <amodra@gmail.com>
7387 * config/rs6000/rs6000.c (toc_relative_expr_p): Allow (lo_sum (high))
7388 toc refs created during reload. Update function comment.
7390 2016-08-08 Alan Modra <amodra@gmail.com>
7393 * config/rs6000/rs6000.md (mov<mode>_hardfloat): Sort
7394 alternatives. Put loads first, then stores, and reg/reg moves
7395 within same class later. Delete attr length.
7397 2016-08-08 Alan Modra <amodra@gmail.com>
7400 * config/rs6000/rs6000.c (mem_operand_gpr): Remove vsx dform test.
7401 (mem_operand_ds_form): New predicate.
7402 * config/rs6000/rs6000-protos.h (mem_operand_ds_form): Declare.
7403 * config/rs6000/constraints.md (wY): Use mem_operand_df_form.
7404 * config/rs6000/predicates.md (offsettable_mem_14bit_operand): Delete.
7405 * config/rs6000/rs6000.md (f32_lm2, f32_sm2): Use wY for SF.
7406 (extendsfdf2_fpr): Replace o constraint with wY.
7408 2016-08-07 Jan Hubicka <hubicka@ucw.cz>
7410 * tree-ssa-threadbackward.c: Include tree-inline.h
7411 (profitable_jump_thread_path): Use estimate_num_insns to estimate
7412 size of copied block; for cold paths reduce duplication.
7413 (find_jump_threads_backwards): Remove redundant tests.
7414 (pass_thread_jumps::gate): Enable for -Os.
7416 2016-08-07 Jakub Jelinek <jakub@redhat.com>
7419 * stor-layout.c (layout_decl): Fix up formatting.
7420 (relayout_decl): Allow DECL to be FIELD_DECL.
7422 2016-08-07 Alan Modra <amodra@gmail.com>
7424 * config/rs6000/rs6000.md (fix_trunc<mode>si2): Fix mode of reg.
7426 2016-08-07 Kugan Vivekanandarajah <kuganv@linaro.org>
7428 * data-streamer-in.c (streamer_read_wide_int): New.
7429 (streamer_read_widest_int): Renamed function.
7430 * data-streamer-out.c (streamer_write_wide_int): New
7431 (streamer_write_widest_int): Renamed function.
7432 * lto-streamer-in.c (streamer_read_wi): Renamed and moved to
7434 (input_cfg): Call renamed function.
7435 * lto-streamer-out.c (streamer_write_wi): Renamed and moved to
7437 (output_cfg): Call renamed function.
7438 * data-streamer.h: Add declarations.
7440 2016-08-08 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
7442 * tree-ssa-ccp.c (extend_mask): New param sgn.
7443 Remove ORing with wi::mask.
7444 (get_default_value): Adjust call to extend_mask to pass sign.
7445 (evaluate_stmt): Likewise.
7447 2016-08-06 Jakub Jelinek <jakub@redhat.com>
7449 * gcov.c (handle_cycle): Use INTTYPE_MAXIMUM (int64_t) instead of
7452 2016-08-06 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
7454 * match.pd ((intptr_t) x eq/ne CST to x eq/ne (typeof x) cst): Disable
7455 transform if operand's type is pointer to function or method.
7457 2016-08-05 Patrick Palka <ppalka@gcc.gnu.org>
7459 PR tree-optimization/18046
7460 * tree-ssa-threadedge.c: Include cfganal.h.
7461 (simplify_control_statement_condition): If simplifying a
7462 GIMPLE_SWITCH, replace the index operand of the GIMPLE_SWITCH
7463 with the dominating ASSERT_EXPR before handing it off to VRP.
7464 Mention that a CASE_LABEL_EXPR may be returned.
7465 (thread_around_empty_blocks): Adjust to handle
7466 simplify_control_statement_condition() returning a
7468 (thread_through_normal_block): Likewise.
7469 * tree-vrp.c (simplify_stmt_for_jump_threading): Simplify
7470 a switch statement by trying to determine which case label
7473 2016-08-05 Vladimir Makarov <vmakarov@redhat.com>
7475 PR rtl-optimization/69847
7476 * lra-constraints.c (process_invariant_for_inheritance): Save
7477 pattern instead of src.
7478 (remove_inheritance_pseudos): Use the pattern. Add assert.
7480 2016-08-05 David Malcolm <dmalcolm@redhat.com>
7482 * input.c (string_concat::string_concat): New constructor.
7483 (string_concat_db::string_concat_db): New constructor.
7484 (string_concat_db::record_string_concatenation): New method.
7485 (string_concat_db::get_string_concatenation): New method.
7486 (string_concat_db::get_key_loc): New method.
7487 (class auto_cpp_string_vec): New class.
7488 (get_substring_ranges_for_loc): New function.
7489 (get_source_range_for_substring): New function.
7490 (get_num_source_ranges_for_substring): New function.
7491 (class selftest::lexer_test_options): New class.
7492 (struct selftest::lexer_test): New struct.
7493 (class selftest::ebcdic_execution_charset): New class.
7494 (selftest::ebcdic_execution_charset::s_singleton): New variable.
7495 (selftest::lexer_test::lexer_test): New constructor.
7496 (selftest::lexer_test::~lexer_test): New destructor.
7497 (selftest::lexer_test::get_token): New method.
7498 (selftest::assert_char_at_range): New function.
7499 (ASSERT_CHAR_AT_RANGE): New macro.
7500 (selftest::assert_num_substring_ranges): New function.
7501 (ASSERT_NUM_SUBSTRING_RANGES): New macro.
7502 (selftest::assert_has_no_substring_ranges): New function.
7503 (ASSERT_HAS_NO_SUBSTRING_RANGES): New macro.
7504 (selftest::test_lexer_string_locations_simple): New function.
7505 (selftest::test_lexer_string_locations_ebcdic): New function.
7506 (selftest::test_lexer_string_locations_hex): New function.
7507 (selftest::test_lexer_string_locations_oct): New function.
7508 (selftest::test_lexer_string_locations_letter_escape_1): New function.
7509 (selftest::test_lexer_string_locations_letter_escape_2): New function.
7510 (selftest::test_lexer_string_locations_ucn4): New function.
7511 (selftest::test_lexer_string_locations_ucn8): New function.
7512 (selftest::uint32_from_big_endian): New function.
7513 (selftest::test_lexer_string_locations_wide_string): New function.
7514 (selftest::uint16_from_big_endian): New function.
7515 (selftest::test_lexer_string_locations_string16): New function.
7516 (selftest::test_lexer_string_locations_string32): New function.
7517 (selftest::test_lexer_string_locations_u8): New function.
7518 (selftest::test_lexer_string_locations_utf8_source): New function.
7519 (selftest::test_lexer_string_locations_concatenation_1): New
7521 (selftest::test_lexer_string_locations_concatenation_2): New
7523 (selftest::test_lexer_string_locations_concatenation_3): New
7525 (selftest::test_lexer_string_locations_macro): New function.
7526 (selftest::test_lexer_string_locations_stringified_macro_argument):
7528 (selftest::test_lexer_string_locations_non_string): New function.
7529 (selftest::test_lexer_string_locations_long_line): New function.
7530 (selftest::test_lexer_char_constants): New function.
7531 (selftest::input_c_tests): Call the new test functions once per
7532 case within the line_table test matrix.
7533 * input.h (struct string_concat): New struct.
7534 (struct location_hash): New struct.
7535 (class string_concat_db): New class.
7536 * substring-locations.h: New header.
7538 2016-08-05 Patrick Palka <ppalka@gcc.gnu.org>
7540 PR tree-optimization/72810
7541 * tree-vrp.c (simplify_switch_using_ranges): Avoid changing
7542 the type of the case labels when truncating.
7544 2016-08-05 James Greenhalgh <james.greenhalgh@arm.com>
7547 * config/aarch64/aarch64.h (aarch64_fp16_type_node): Declare.
7548 (aarch64_fp16_ptr_type_node): Likewise.
7549 * config/aarch64/aarch64-simd-builtins.c
7550 (aarch64_fp16_ptr_type_node): Define.
7551 (aarch64_init_fp16_types): New, refactored out of...
7552 (aarch64_init_builtins): ...here, update to call
7553 aarch64_init_fp16_types.
7554 * config/aarch64/aarch64.c (aarch64_gimplify_va_arg_expr): Handle
7556 (aapcs_vfp_sub_candidate): Likewise.
7558 2016-08-05 Martin Liska <mliska@suse.cz>
7559 Joshua Cranmer <Pidgeot18@gmail.com>
7561 * gcov.c (line_t::has_block): New function.
7562 (enum loop_type): New enum.
7563 (handle_cycle): New function.
7564 (unblock): Likewise.
7565 (circuit): Likewise.
7566 (get_cycles_count): Likewise.
7567 (accumulate_line_counts): Use new loop detection algorithm.
7569 2016-08-05 Martin Liska <mliska@suse.cz>
7571 * gcov.c (output_intermediate_file): Rename
7572 function_info::line_next to next_file_fn.
7573 (process_file): Likewise.
7574 (read_graph_file): Likewise.
7575 (accumulate_line_counts): Likewise.
7576 (output_lines): Likewise.
7578 2016-08-05 Richard Biener <rguenther@suse.de>
7580 * tree-ssa-threadupdate.c (thread_block_1): Remove unnecessary
7581 restriction on threading to a loop header.
7583 2016-08-05 Richard Biener <rguenther@suse.de>
7585 * tree-cfgcleanup.c (tree_forwarder_block_p): Use bb_loop_header_p.
7586 * cfghooks.c (force_nonfallthru): If we ended up splitting a latch
7587 adjust loop info accordingly.
7589 2016-08-05 Kugan Vivekanandarajah <kuganv@linaro.org>
7591 * tree-vrp.c (extract_range_basic): Check cfun->after_inlining
7592 before folding call to __builtin_constant_p with parameters to false.
7594 2016-08-05 Alan Modra <amodra@gmail.com>
7596 * config/rs6000/rs6000.c (rs6000_preferred_reload_class): Delete
7597 code accidentally committed 2016-05-02 providing class when given
7600 2016-08-04 Patrick Palka <ppalka@gcc.gnu.org>
7602 * tree-vrp.c (simplify_switch_using_ranges): Try to truncate
7603 the case label ranges that partially overlap with OP's value
7606 2016-08-04 Uros Bizjak <ubizjak@gmail.com>
7609 * config/i386/avx512fintrin.h (_mm512_cmp_epi32_mask) [!__OPTIMIZE__]:
7610 Cast builtin function result to __mmask16 instead of __mmask8.
7611 (_mm512_cmp_epu32_mask) [!__OPTIMIZE__]: Ditto.
7612 (_mm512_mask_cmp_epi32_mask) [!__OPTIMIZE__]: Ditto.
7613 (_mm512_mask_cmp_epu32_mask) [!__OPTIMIZE__]: Ditto.
7615 2016-08-04 David Malcolm <dmalcolm@redhat.com>
7617 * selftest.h (ASSERT_TRUE): Reimplement in terms of...
7618 (ASSERT_TRUE_AT): New macro.
7619 (ASSERT_FALSE): Reimplement in terms of...
7620 (ASSERT_FALSE_AT): New macro.
7621 (ASSERT_STREQ_AT): Fix typo in comment.
7623 2016-08-04 Patrick Palka <ppalka@gcc.gnu.org>
7625 * gimple.c (preprocess_case_label_vec_for_gimple): When the case
7626 labels are exhaustive, designate the label with the widest
7627 range to be the default label.
7629 2016-08-04 Andrew Pinski <apinski@cavium.com>
7631 * config/aarch64/aarch64.c (thunderx_vector_cost): New variable.
7632 (thunderx_tunings): Use thunderx_vector_cost instead of
7633 generic_vector_cost.
7635 2016-08-04 Martin Liska <mliska@suse.cz>
7637 * gcov.c (main): Fix GNU coding style.
7638 (output_intermediate_file): Likewise.
7639 (process_file): Likewise.
7640 (generate_results): Likewise.
7641 (release_structures): Likewise.
7642 (create_file_names): Likewise.
7643 (find_source): Likewise.
7644 (read_graph_file): Likewise.
7645 (find_exception_blocks): Likewise.
7646 (canonicalize_name): Likewise.
7647 (make_gcov_file_name): Likewise.
7648 (mangle_name): Likewise.
7649 (accumulate_line_counts): Likewise.
7650 (output_branch_count): Likewise.
7651 (read_line): Likewise.
7653 2016-08-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
7655 PR rtl-optimization/71779
7656 * emit-rtl.c (set_reg_attrs_from_value): Only propagate REG_POINTER,
7657 if the value was sign-extended according to POINTERS_EXTEND_UNSIGNED
7658 or if it was truncated.
7660 PR rtl-optimization/70903
7661 * cse.c (cse_insn): If DEST is a paradoxical SUBREG, don't record DEST.
7663 2016-08-04 Kugan Vivekanandarajah <kuganv@linaro.org>
7665 * tree-inline.c (remap_ssa_name): Check for POINTER_TYPE_P before
7666 accessing SSA_NAME_PTR_INFO.
7668 2016-08-04 Georg-Johann Lay <avr@gjlay.de>
7671 * common/config/avr/avr-common.c (avr_option_optimization_table)
7672 [OPT_LEVELS_ALL]: Turn off -fcaller-saves.
7674 2016-08-04 Georg-Johann Lay <avr@gjlay.de>
7677 * config/avr/avr.md: New pattern to work around do_store_flag
7678 generating shift instructions for bit extractions.
7680 2016-08-04 Kugan Vivekanandarajah <kuganv@linaro.org>
7682 * tree-vrp.c (set_value_range): Use vrp_equiv_obstack with
7684 (add_equivalence): Likewise.
7685 (get_value_range): Allocate value range with vrp_value_range_pool.
7686 (vrp_initialize): Initialize vrp_equiv_obstack for equiv allocation.
7687 (vrp_finalize): Relase vrp_equiv_obstack and vrp_value_range_pool.
7689 2016-08-03 Peter Bergner <bergner@vnet.ibm.com>
7691 * config/rs6000/rs6000.c (rs6000_option_override_internal): Make LRA
7692 the default for the rs6000 port.
7694 2016-08-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
7697 * calls.c (special_function_p): Remove special handling of
7698 "setjmp_syscall", "qsetjmp", "longjmp", "siglongjmp" and the
7699 prefix "__x". Recognize "savectx", "vfork" and "getcontext" only
7700 without prefix. Remove potentially unsafe ECF_LEAF and ECF_NORETURN.
7702 2016-08-03 Vladimir Makarov <vmakarov@redhat.com>
7705 * lra-spills.c (regno_in_use_p): Check bb and regno modification.
7706 Don't stop on regular insns.
7708 2016-08-03 Nathan Sidwell <nathan@codesourcery.com>
7710 * config/nvptx/nvptx.c (nvptx_declare_function_name): Round frame
7711 size to DImode boundary.
7712 (nvptx_propagate): Likewise.
7714 2016-08-03 Alan Modra <amodra@gmail.com>
7716 * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Make scalar
7717 float access depend on TARGET_EFFICIENT_UNALIGNED_VSX.
7718 * config/rs6000/rs6000.opt (-mefficient-unaligned-vsx): Renamed
7719 from -mefficient-unaligned-vector. Note that this affects fp too.
7721 2016-08-03 Alan Modra <amodra@gmail.com>
7723 * config/rs6000/rs6000.c (rs6000_rtx_costs): Make unaligned mem
7726 2016-08-03 Alan Modra <amodra@gmail.com>
7728 * config/rs6000/rs6000.md (fix_trunc<mode>si2): Force source operand
7729 to a reg. Localize vars.
7731 2016-08-03 Alan Modra <amodra@gmail.com>
7733 * config/rs6000/rs6000.opt: Remove negatives from help strings
7736 2016-08-03 Alan Modra <amodra@gmail.com>
7738 * config/rs6000/rs6000.c (rs6000_secondary_reload_direct_move):
7739 Delete duplicated code.
7741 2016-08-02 Vladimir Makarov <vmakarov@redhat.com>
7744 * lra-spills.c (regno_in_use_p): New.
7745 (lra_final_code_change): Use it.
7747 2016-08-02 Vladimir Makarov <vmakarov@redhat.com>
7749 PR rtl-optimization/69847
7750 * lra-int.h (struct lra-reg): Use restore_rtx instead of
7752 (lra_rtx_hash): New.
7753 * lra.c (initialize_lra_reg_info_element): Use restore_rtx instead
7755 (lra_rtx_hash): Rename and move lra-remat.c::rtx_hash.
7756 * lra-remat.c (rtx_hash): Rename and Move to lra.c.
7757 * lra-spills.c (lra_final_code_change): Don't delete insn when the
7758 next insn is USE with the same reg as the current insn source.
7759 * lra-constraints.c (curr_insn_transform): Use restore_rtx instead
7761 (lra_constraints_init): Call initiate_invariants.
7762 (lra_constraints_finish): Call finish_invariants.
7763 (struct invariant, invariant_t, invariant_ptr_t): New.
7764 (const_invariant_ptr_t, invariants, invariants_pool): New.
7765 (invariant_table, invariant_hash, invariant_eq_p): New.
7766 (insert_invariant, initiate_invariants, finish_invariants): New.
7767 (clear_invariants, invalid_invariant_regs): New.
7768 (inherit_reload_reg, split_reg, fix_bb_live_info): Use restore_rtx
7769 instead of restore_regno.
7770 (invariant_p, process_invariant_for_inheritance): New.
7771 (inherit_in_ebb): Implement invariant inheritance.
7772 (lra_inheritance): Initialize and finalize invalid_invariant_regs.
7773 (remove_inheritance_pseudos): Implement undoing invariant
7775 (undo_optional_reloads, lra_undo_inheritance): Use restore_rtx
7776 instead of restore_regno.
7777 * lra-assigns.c (regno_live_length): New.
7778 (reload_pseudo_compare_func): Use regno_live_length.
7779 (assign_by_spills): Use restore_rtx instead of restore_regno.
7780 (lra_assign): Ditto. Initiate regno_live_length.
7782 2016-02-08 James Greenhalgh <james.greenhalgh@arm.com>
7784 * config/aarch64/arm_neon.h (vminnm_f64): Add back missing 'f' from
7785 __builtin_aarch64_fmindf.
7787 2016-08-02 Bin Cheng <bin.cheng@arm.com>
7789 PR tree-optimization/34114
7790 * tree-ssa-loop-niter.c (number_of_iterations_ne): Prove no-overflow
7791 information for more control IVs.
7793 2016-08-02 Bin Cheng <bin.cheng@arm.com>
7795 PR tree-optimization/34114
7796 * fold-const.c (multiple_of_p): Improve MULT_EXPR, PLUS_EXPR,
7797 PLUS_EXPR case. Handle SSA_NAME case.
7799 2016-08-02 Tamar Christina <tamar.christina@arm.com>
7801 * config/aarch64/aarch64-simd-builtins.def
7802 (__builtin_aarch64_fmindf): Change BUILTIN_VDQF to BUILTIN_VDQF_DF.
7803 (__builtin_aarch64_fmaxdf): Likewise.
7804 (__builtin_aarch64_smin_nandf): Likewise.
7805 (__builtin_aarch64_smax_nandf): Likewise.
7806 * config/aarch64/aarch64-simd.md (<fmaxmin><mode>3): Remove.
7807 * config/aarch64/aarch64.md (<fmaxmin><mode>3): Rename to...
7808 (<fmaxmin><mode>3): ...this.
7809 * config/aarch64/arm_neon.h (vmaxnm_f64): New.
7810 (vminnm_f64): Likewise.
7811 (vmin_f64): Likewise.
7812 (vmax_f64): Likewise.
7813 * config/aarch64/iterators.md (FMAXMIN): Merge with...
7814 (FMAXMIN_UNS): ...this.
7815 (fmaxmin): Merged with
7816 (fmaxmin_op): ...this...
7817 (maxmin_uns_op): ...in to this.
7819 2016-08-01 Michael Meissner <meissner@linux.vnet.ibm.com>
7821 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
7822 Add support for vec_extract on vector float, vector int, vector
7823 short, and vector char vector types.
7824 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
7825 vector float, vector int, vector short, and vector char
7826 optimizations on 64-bit ISA 2.07 systems for both constant and
7827 variable element numbers.
7828 (rs6000_split_vec_extract_var): Likewise.
7829 * config/rs6000/vsx.md (vsx_xscvspdp_scalar2): Allow SFmode to be
7830 Altivec registers on ISA 2.07 and above.
7831 (vsx_extract_v4sf): Delete alternative that hard coded element 0,
7832 which never was matched due to the split occuring before register
7833 allocation (and the code would not have worked on little endian
7834 systems if it did match). Allow extracts to go to the Altivec
7835 registers if ISA 2.07 (power8). Change from using "" around the
7836 C++ code to using {}'s.
7837 (vsx_extract_v4sf_<mode>_load): New insn to optimize vector float
7838 vec_extracts when the vector is in memory.
7839 (vsx_extract_v4sf_var): New insn to optimize vector float
7840 vec_extracts when the element number is variable on 64-bit ISA
7842 (vsx_extract_<mode>, VSX_EXTRACT_I iterator): Add optimizations
7843 for 64-bit ISA 2.07 as well as ISA 3.0.
7844 (vsx_extract_<mode>_p9, VSX_EXTRACT_I iterator): Likewise.
7845 (vsx_extract_<mode>_p8, VSX_EXTRACT_I iterator): Likewise.
7846 (vsx_extract_<mode>_load, VSX_EXTRACT_I iterator): New insn to
7847 optimize vector int, vector short, and vector char vec_extracts
7848 when the vector is in memory.
7849 (vsx_extract_<mode>_var, VSX_EXTRACT_I iterator): New insn to
7850 optimize vector int, vector short, and vector char vec_extracts
7851 when the element number is variable.
7853 2016-08-01 Georg-Johann Lay <avr@gjlay.de>
7856 * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): Use a value that
7857 does not overlap with other symbol flags.
7859 2016-08-01 Wilco Dijkstra <wdijkstr@arm.com>
7861 * config/aarch64/aarch64.h (aarch64_frame):
7862 Remove padding0 and hardfp_offset. Add locals_offset,
7863 initial_adjust, callee_adjust, callee_offset and final_adjust.
7864 * config/aarch64/aarch64.c (aarch64_layout_frame):
7865 Remove unused padding0 and hardfp_offset initializations.
7866 Choose frame layout and set frame variables accordingly.
7867 Use INVALID_REGNUM instead of FIRST_PSEUDO_REGISTER.
7868 (aarch64_push_regs): Use INVALID_REGNUM, not FIRST_PSEUDO_REGISTER.
7869 (aarch64_pop_regs): Likewise.
7870 (aarch64_expand_prologue): Remove all decision code, just emit
7871 prolog according to frame variables.
7872 (aarch64_expand_epilogue): Remove all decision code, just emit
7873 epilog according to frame variables.
7874 (aarch64_initial_elimination_offset): Use offset to local/arg area.
7876 2015-08-01 H.J. Lu <hongjiu.lu@intel.com>
7879 * config/i386/i386.c (timode_scalar_chain::convert_insn): Call
7880 fix_debug_reg_uses after changing source register mode to
7881 V1TImode if source register is undefined.
7883 2015-08-01 Alan Hayward <alan.hayward@arm.com>
7885 PR tree-optimization/71818
7886 * tree-vect-loop-manip.c (vect_can_advance_ivs_p): Don't advance IVs
7887 with non invariant evolutions
7889 2016-08-01 Georg-Johann Lay <avr@gjlay.de>
7892 * config/avr/avr.md (length) [branch]: Correct insn length
7893 attribute for forward branches.
7895 2016-08-01 Georg-Johann Lay <avr@gjlay.de>
7897 * doc/extend.texi (AVR Built-in Functions): Document
7899 * config/avr/builtins.def (NOPS): New.
7900 * config/avr/avr.c (avr_expand_nops): New static function.
7901 (avr_expand_builtin): Use it to handle AVR_BUILTIN_NOPS.
7903 2016-08-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
7905 * config/aarch64/aarch64.c (aarch64_classify_address): Use DImode when
7906 performing aarch64_offset_7bit_signed_scaled_p check for TImode LDP/STP
7909 2016-08-01 Virendra Pathak <virendra.pathak@broadcom.com>
7911 * config/aarch64/aarch64.c (vulcan_tunings): Update
7912 vulcan L1 cache_line_size.
7914 2016-07-30 Michael Meissner <meissner@linux.vnet.ibm.com>
7916 * config/rs6000/rs6000-protos.h (rs6000_adjust_vec_address): New
7917 function that takes a vector memory address, a hard register, an
7918 element number and a temporary base register, and recreates an
7919 address that points to the appropriate element within the vector.
7920 * config/rs6000/rs6000.c (rs6000_adjust_vec_address): Likewise.
7921 (rs6000_split_vec_extract_var): Add support for the target of a
7922 vec_extract with variable element number being a scalar memory
7924 (rtx_is_swappable_p): VLSO insns (UNSPEC_VSX_VSLOW) are not
7926 * config/rs6000/vsx.md (vsx_extract_<mode>_load): Replace
7927 vsx_extract_<mode>_load insn with a new insn that optimizes
7928 storing either element to a memory location, using scratch
7929 registers to pick apart the vector and reconstruct the address.
7930 (vsx_extract_<P:mode>_<VSX_D:mode>_load): Likewise.
7931 (vsx_extract_<mode>_store): Rework alternatives to more correctly
7932 support Altivec registers. Add support for ISA 3.0 Altivec d-form
7934 (vsx_extract_<mode>_var): Add support for extracting a variable
7935 element number from memory.
7937 2016-07-29 Georg-Johann Lay <avr@gjlay.de>
7939 * config/avr/avr.c (avr_out_compare): Use const0_rtx instead of 0
7940 when testing for compares against constants of the form 0xabab.
7942 2016-07-29 Bin Cheng <bin.cheng@arm.com>
7944 PR tree-optimization/57558
7945 * tree-vect-loop-manip.c (vect_create_cond_for_niters_checks): New
7947 (vect_loop_versioning): Support versioning with niter assumptions.
7948 * tree-vect-loop.c (tree-ssa-loop.h): Include header file.
7949 (vect_get_loop_niters): New parameter. Reimplement to support
7950 assumptions in loop niter info.
7951 (vect_analyze_loop_form_1, vect_analyze_loop_form): Ditto.
7952 (new_loop_vec_info): Init LOOP_VINFO_NITERS_ASSUMPTIONS.
7953 (vect_estimate_min_profitable_iters): Use LOOP_REQUIRES_VERSIONING.
7954 Support loop versioning for niters.
7955 * tree-vectorizer.c (tree-ssa-loop-niter.h): Include header file.
7956 (vect_free_loop_info_assumptions): New function.
7957 (vectorize_loops): Free loop niter info for loops with flag
7958 LOOP_F_ASSUMPTIONS set if vectorization failed.
7959 * tree-vectorizer.h (struct _loop_vec_info): New field
7960 num_iters_assumptions.
7961 (LOOP_VINFO_NITERS_ASSUMPTIONS): New macro.
7962 (LOOP_REQUIRES_VERSIONING_FOR_NITERS): New macro.
7963 (LOOP_REQUIRES_VERSIONING): New macro.
7964 (vect_free_loop_info_assumptions): New decl.
7966 2016-07-29 Bin Cheng <bin.cheng@arm.com>
7968 * cfgloop.h (struct loop): New field constraints.
7969 (LOOP_C_INFINITE, LOOP_C_FINITE): New macros.
7970 (loop_constraint_set, loop_constraint_clr, loop_constraint_set_p): New
7972 * cfgloop.c (alloc_loop): Initialize new field.
7973 * cfgloopmanip.c (copy_loop_info): Copy constraints.
7974 * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions):
7975 Adjust niter analysis wrto loop constraints.
7976 * doc/loop.texi (@node Number of iterations): Add description for loop
7979 2016-07-29 Marek Polacek <polacek@redhat.com>
7982 * config/i386/i386.c (ix86_expand_args_builtin): Add break.
7983 (ix86_expand_round_builtin): Likewise.
7985 2016-07-29 Segher Boessenkool <segher@kernel.crashing.org>
7986 Georg-Johann Lay <avr@gjlay.de>
7988 PR rtl-optimization/71976
7989 * combine.c (get_last_value): Return 0 if the argument for which
7990 the function is called has a wider mode than the recorded value.
7992 2016-07-29 Marek Polacek <polacek@redhat.com>
7995 * config/rs6000/rs6000.c (altivec_expand_ld_builtin): Add break.
7996 (altivec_expand_st_builtin): Likewise.
7998 2016-07-29 Georg-Johann Lay <avr@gjlay.de>
8000 * config/avr/avr.md (addqi3) [cc]: Revert glitch in insn attribute
8001 introduced in r238381.
8003 2016-07-29 Kugan Vivekanandarajah <kuganv@linaro.org>
8006 * tree-vrp.c (extract_range_from_binary_expr_1): In case of signed
8007 & sign-bit-CST, generate [-INF, 0] instead of [-INF, INF].
8009 2016-07-28 Michael Meissner <meissner@linux.vnet.ibm.com>
8011 * config/rs6000/rs6000-protos.h (rs6000_split_vec_extract_var):
8013 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
8014 Add support for vec_extract of vector double or vector long having
8015 a variable element number on 64-bit ISA 2.07 systems or newer.
8016 * config/rs6000/rs6000.c (rs6000_expand_vector_extract):
8018 (rs6000_split_vec_extract_var): New function to split a
8019 vec_extract built-in function with variable element number.
8020 (rtx_is_swappable_p): Variable vec_extracts and shifts are not
8022 * config/rs6000/vsx.md (UNSPEC_VSX_VSLO): New unspec.
8023 (UNSPEC_VSX_EXTRACT): Likewise.
8024 (vsx_extract_<mode>, VSX_D iterator): Fix constraints to allow
8025 direct move instructions to be generated on 64-bit ISA 2.07
8026 systems and newer, and to take advantage of the ISA 3.0 MFVSRLD
8028 (vsx_vslo_<mode>): New insn to do VSLO on V2DFmode and V2DImode
8029 arguments for vec_extract variable element.
8030 (vsx_extract_<mode>_var, VSX_D iterator): New insn to support
8031 vec_extract with variable element on V2DFmode and V2DImode
8033 * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): Remove
8034 -mupper-regs-df requirement, since it isn't needed.
8035 (TARGET_DIRECT_MOVE_64BIT): New macro to say whether we can
8036 do direct moves on 64-bit systems, which allows optimization of
8037 vec_extract on 64-bit ISA 2.07 systems and newer.
8039 2016-07-28 Kristina Martsenko <kristina.martsenko@arm.com>
8040 2016-07-28 Wilco Dijkstra <wdijkstr@arm.com>
8042 * config/aarch64/aarch64.md
8043 (zero_extend<SHORT:mode><GPI:mode>2_aarch64): Change output
8045 (<optab>qihi2_aarch64): Likewise, and split into two.
8046 (extendqihi2_aarch64): New.
8047 (zero_extendqihi2_aarch64): New.
8048 * config/aarch64/iterators.md (ldrxt): Remove.
8049 * config/aarch64/aarch64.c (aarch64_rtx_costs): Change cost of
8052 2016-07-28 Kristina Martsenko <kristina.martsenko@arm.com>
8054 * config/aarch64/aarch64.c (aarch64_rtx_costs): Fix cost of zero extend.
8056 2016-07-28 Wilco Dijkstra <wdijkstr@arm.com>
8058 * config/aarch64/aarch64.c (aarch64_pushwb_pair_reg): Rename.
8059 (aarch64_push_reg): New function to push 1 or 2 registers.
8060 (aarch64_pop_reg): New function to pop 1 or 2 registers.
8061 (aarch64_expand_prologue): Use aarch64_push_regs.
8062 (aarch64_expand_epilogue): Use aarch64_pop_regs.
8064 2016-07-28 Yuri Rumyantsev <ysrumyan@gmail.com>
8066 PR tree-optimization/71734
8067 * tree-ssa-loop-im.c (ref_indep_loop_p_1): Pass value of safelen
8068 attribute instead of REF_LOOP and use it.
8069 (ref_indep_loop_p_2): Use SAFELEN argument instead of REF_LOOP and
8070 set it for Loops having non-zero safelen attribute.
8071 (ref_indep_loop_p): Pass zero as initial value for safelen.
8073 2016-07-28 Ilya Enkovich <ilya.enkovich@intel.com>
8077 * tree-chkp.c (chkp_retbnd_call_by_val): Check for instrumentation
8078 call using chkp_gimple_call_builtin_p.
8079 (chkp_copy_bounds_for_assign): Likewise.
8081 2016-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
8083 * config/alpha/alpha.c (alpha_adjust_cost): Adjust.
8084 * config/arm/arm-protos.h (struct tune_params): Likewise.
8085 * config/arm/arm.c (xscale_sched_adjust_cost): Likewise.
8086 (cortex_a9_sched_adjust_cost): Likewise.
8087 (fa726te_sched_adjust_cost): Likewise.
8088 (arm_adjust_cost): Likewise.
8089 * config/bfin/bfin.c (bfin_adjust_cost): Likewise.
8090 * config/c6x/c6x.c (c6x_adjust_cost): Likewise.
8091 * config/epiphany/epiphany.c (epiphany_adjust_cost): Likewise.
8092 * config/i386/i386.c (ix86_adjust_cost): Likewise.
8093 * config/ia64/ia64.c: Likewise.
8094 * config/m68k/m68k.c: Likewise.
8095 * config/mep/mep.c (mep_adjust_cost): Likewise.
8096 * config/microblaze/microblaze.c (microblaze_adjust_cost):
8098 * config/mips/mips.c (mips_adjust_cost): Likewise.
8099 * config/mn10300/mn10300.c (mn10300_adjust_sched_cost):
8101 * config/pa/pa.c (pa_adjust_cost): Likewise.
8102 * config/rs6000/rs6000.c (rs6000_adjust_cost): Likewise.
8103 (rs6000_debug_adjust_cost): Likewise.
8104 * config/sh/sh.c (sh_adjust_cost): Likewise.
8105 * config/sparc/sparc.c (supersparc_adjust_cost): Likewise.
8106 (hypersparc_adjust_cost): Likewise.
8107 (sparc_adjust_cost): Likewise.
8108 * config/spu/spu.c (spu_sched_adjust_cost): Likewise.
8109 * config/tilegx/tilegx.c (tilegx_sched_adjust_cost): Likewise.
8110 * config/tilepro/tilepro.c (tilepro_sched_adjust_cost):
8112 * config/visium/visium.c (visium_adjust_cost): Likewise.
8113 * doc/tm.texi: Regenerate.
8114 * haifa-sched.c (dep_cost_1): Adjust.
8115 * target.def: Merge adjust_cost and adjust_cost_2.
8117 2016-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
8119 * haifa-sched.c (add_to_speculative_block): Make twins a vector.
8121 2016-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
8123 * store-motion.c (struct st_expr): Make pattern_regs a vector.
8124 (extract_mentioned_regs): Append to a vector instead of
8125 returning a rtx_expr_list.
8126 (st_expr_entry): Adjust.
8127 (free_st_expr_entry): Likewise.
8128 (store_ops_ok): Likewise.
8129 (store_killed_in_insn): Likewise.
8130 (find_moveable_store): Likewise.
8132 2016-07-28 Martin Liska <mliska@suse.cz>
8134 PR gcov-profile/68025
8135 * tree-profile.c (tree_profiling): Respect
8136 no_profile_instrument_function attribute.
8137 * doc/extend.texi: Document no_profile_instrument_function
8140 2016-07-28 Martin Liska <mliska@suse.cz>
8142 PR rtl-optimization/70944
8143 * combine.c (make_compound_operation):
8144 Do not allow make_compound_operation for vector mode
8146 2016-07-28 Kugan Vivekanandarajah <kuganv@linaro.org>
8149 * tree-ssa-reassoc.c (maybe_optimize_range_tests): Check tcc_comparison
8150 before calling get_ops.
8152 2016-07-27 Bernd Edlinger <bernd.edlinger@hotmail.de>
8154 * defaults.h (LOG2_BITS_PER_UNIT): Move from here...
8155 * tree.h (LOG2_BITS_PER_UNIT): ...to here.
8156 (BITS_PER_UNIT_LOG): Remove.
8157 (int_bit_position): Use LOG2_BITS_PER_UNIT instead of BITS_PER_UNIT_LOG.
8158 * expr.c (expand_assignment): Likewise.
8159 * stor-layout.c (initialize_sizetypes): Likewise.
8161 2016-07-27 Michael Meissner <meissner@linux.vnet.ibm.com>
8163 * config/rs6000/vector.md (vec_extract<mode>): Change the calling
8164 signature of rs6000_expand_vector_extract so that the element
8165 number is a RTX instead of a constant integer.
8166 * config/rs6000/rs6000-protos.h (rs6000_expand_vector_extract):
8168 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Likewise.
8169 (altivec_expand_vec_ext_builtin): Likewise.
8170 * config/rs6000/altivec.md (reduc_plus_scal_<mode>): Likewise.
8171 * config/rs6000/vsx.md (vsx_extract_<mode>): Fix spelling of the
8172 MFVSRLD instruction.
8174 2016-07-27 David Malcolm <dmalcolm@redhat.com>
8176 * input.c (get_pure_location): Move here from tree.c.
8177 (make_location): Likewise. Add header comment.
8178 (selftest::test_accessing_ordinary_linemaps): Verify
8179 pure_location_p, make_location, get_location_from_adhoc_loc and
8181 * input.h (get_pure_location): Move declaration here from tree.h.
8182 (get_finish): Likewise for inline function.
8183 (make_location): Likewise for declaration.
8184 * tree.c (get_pure_location): Move to input.c.
8185 (make_location): Likewise.
8186 * tree.h (get_pure_location): Move declaration to tree.h.
8187 (get_finish): Likewise for inline function.
8188 (make_location): Likewise for declaration.
8190 2016-07-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
8193 * match.pd (x / abs(x) -> copysign(1.0, x)): New pattern.
8195 2016-07-27 David Malcolm <dmalcolm@redhat.com>
8197 * system.h (STATIC_ASSERT): Use static_assert if building
8200 2016-07-27 Richard Biener <rguenther@suse.de>
8202 PR tree-optimization/72517
8203 * tree-vect-data-refs.c (vect_analyze_data_ref_dependences):
8204 Revert change to not compute read-read dependences.
8206 2016-07-27 Richard Biener <rguenther@suse.de>
8208 * predict.c (set_even_probabilities): Make nedges unsigned.
8210 2016-07-27 Martin Liska <mliska@suse.cz>
8212 * predict.c (set_even_probabilities): Handle unlikely edges.
8213 (combine_predictions_for_bb): Likewise.
8215 2016-07-26 Michael Meissner <meissner@linux.vnet.ibm.com>
8218 * config/rs6000/rs6000.c (rs6000_generate_compare): Rework
8219 __float128 support when we don't have hardware support, so that
8220 the IEEE built-in functions like isgreater, first call __unordkf3
8221 to make sure neither operand is a NaN, and if both operands are
8222 ordered, do the normal comparison.
8224 2016-07-26 Patrick Palka <ppalka@gcc.gnu.org>
8226 * tree-vrp.c (dump_asserts_for): Print loc->expr instead of
8228 (extract_code_and_val_from_cond_with_ops): Verify that name is
8229 either cond_op0 or cond_op1.
8231 2016-07-26 Patrick Palka <ppalka@gcc.gnu.org>
8233 PR tree-optimization/18046
8234 * genmodes.c (emit_mode_size_inline): Emit an assert that
8235 verifies that mode is a valid array index.
8236 (emit_mode_nuinits_inline): Likewise.
8237 (emit_mode_inner_inline): Likewise.
8238 (emit_mode_unit_size_inline): Likewise.
8239 (emit_mode_unit_precision_inline): Likewise.
8240 * tree-vrp.c: Include params.h.
8241 (find_switch_asserts): Register edge assertions for the default
8242 label which correspond to the anti-ranges of each case label.
8243 * params.def (PARAM_MAX_VRP_SWITCH_ASSERTIONS): New.
8244 * doc/invoke.texi: Document it.
8246 2016-07-26 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
8248 * gimple-ssa-strength-reduction.c (slsr_process_phi): Remove dead
8249 and unnecessary call to gimple_bb.
8251 2016-07-26 Richard Biener <rguenther@suse.de>
8253 PR rtl-optimization/71984
8254 * simplify-rtx.c (simplify_subreg): Use GET_MODE_SIZE and prepare
8257 2016-07-26 Richard Biener <rguenther@suse.de>
8260 * expmed.c (extract_bit_field_1): Constrain the vector mode
8261 with element size matching the extraction mode size when
8262 choosing a better vector mode to do the extraction from.
8264 2016-07-26 Richard Biener <rguenther@suse.de>
8265 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
8268 * match.pd ((intptr)x eq/ne CST to x eq/ne (typeof x) CST): New
8271 2016-07-26 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
8273 * tree-ssa-structalias.c (struct scc_info): Change types of
8274 members to auto_sbitmap and auto_vec.
8275 (scc_info::scc_info): New constructor.
8276 (scc_info::~scc_info): New destructor.
8277 (init_scc_info): Remove.
8278 (free_scc_info): Remove.
8279 (find_indirect_cycles): Adjust.
8280 (perform_var_substitution): Likewise.
8281 (free_var_substitution_info): Likewise.
8283 2016-07-26 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
8285 * tree-outof-ssa.c (struct elim_graph): Change type of members
8286 to auto_vec and auto_sbitmap.
8287 (elim_graph::elim_graph): New constructor.
8288 (delete_elim_graph): Remove.
8289 (expand_phi_nodes): Adjust.
8291 2016-07-26 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
8293 * tree-outof-ssa.c (struct elim_graph): Remove typedef.
8294 (new_elim_graph): Adjust.
8295 (clear_elim_graph): Likewise.
8296 (delete_elim_graph): Likewise.
8297 (elim_graph_size): Likewise.
8298 (elim_graph_add_node): Likewise.
8299 (elim_graph_add_edge): Likewise.
8300 (elim_graph_remove_succ_edge): Likewise.
8301 (eliminate_name): Likewise.
8302 (eliminate_build): Likewise.
8303 (elim_forward): Likewise.
8304 (elim_unvisited_predecessor): Likewise.
8305 (elim_backward): Likewise.
8306 (elim_create): Likewise.
8307 (eliminate_phi): Likewise.
8308 (expand_phi_nodes): Likewise.
8310 2016-07-26 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
8312 * bt-load.c (compute_out): Use auto_sbitmap class.
8313 (link_btr_uses): Likewise.
8314 * cfganal.c (mark_dfs_back_edges): Likewise.
8315 (post_order_compute): Likewise.
8316 (inverted_post_order_compute): Likewise.
8317 (pre_and_rev_post_order_compute_fn): Likewise.
8318 (single_pred_before_succ_order): Likewise.
8319 * cfgexpand.c (pass_expand::execute): Likewise.
8320 * cfgloop.c (verify_loop_structure): Likewise.
8321 * cfgloopmanip.c (fix_bb_placements): Likewise.
8322 (remove_path): Likewise.
8323 (update_dominators_in_loop): Likewise.
8324 * cfgrtl.c (break_superblocks): Likewise.
8325 * ddg.c (check_sccs): Likewise.
8326 (create_ddg_all_sccs): Likewise.
8327 * df-core.c (df_worklist_dataflow): Likewise.
8328 * dse.c (dse_step3): Likewise.
8329 * except.c (eh_region_outermost): Likewise.
8330 * function.c (thread_prologue_and_epilogue_insns): Likewise.
8331 * gcse.c (prune_expressions): Likewise.
8332 (prune_insertions_deletions): Likewise.
8333 * gimple-ssa-backprop.c (backprop::~backprop): Likewise.
8334 * graph.c (draw_cfg_nodes_no_loops): Likewise.
8335 * ira-lives.c (remove_some_program_points_and_update_live_ranges): Likewise.
8336 * lcm.c (compute_earliest): Likewise.
8337 (compute_farthest): Likewise.
8338 * loop-unroll.c (unroll_loop_constant_iterations): Likewise.
8339 (unroll_loop_runtime_iterations): Likewise.
8340 (unroll_loop_stupid): Likewise.
8341 * lower-subreg.c (decompose_multiword_subregs): Likewise.
8342 * lra-lives.c: Likewise.
8343 * lra.c (lra): Likewise.
8344 * modulo-sched.c (schedule_reg_moves): Likewise.
8345 (optimize_sc): Likewise.
8346 (get_sched_window): Likewise.
8347 (sms_schedule_by_order): Likewise.
8348 (check_nodes_order): Likewise.
8349 (order_nodes_of_sccs): Likewise.
8350 (order_nodes_in_scc): Likewise.
8351 * recog.c (split_all_insns): Likewise.
8352 * regcprop.c (pass_cprop_hardreg::execute): Likewise.
8353 * reload1.c (reload): Likewise.
8354 * sched-rgn.c (haifa_find_rgns): Likewise.
8355 (split_edges): Likewise.
8356 (compute_trg_info): Likewise.
8357 * sel-sched.c (init_seqno): Likewise.
8358 * store-motion.c (remove_reachable_equiv_notes): Likewise.
8359 * tree-into-ssa.c (update_ssa): Likewise.
8360 * tree-ssa-live.c (live_worklist): Likewise.
8361 * tree-ssa-loop-im.c (fill_always_executed_in): Likewise.
8362 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
8364 (try_peel_loop): Likewise.
8365 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop):
8367 * tree-ssa-pre.c (compute_antic): Likewise.
8368 * tree-ssa-reassoc.c (undistribute_ops_list): Likewise.
8369 * tree-stdarg.c (reachable_at_most_once): Likewise.
8370 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Likewise.
8371 * var-tracking.c (vt_find_locations): Likewise.
8373 2016-07-26 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
8375 * sbitmap.h (auto_sbitmap): New class.
8377 2016-07-26 Alan Modra <amodra@gmail.com>
8380 * config/rs6000/rs6000.c (rs6000_secondary_reload): Initialize
8383 2016-07-25 David Malcolm <dmalcolm@redhat.com>
8385 * input.c (selftest::temp_source_file::temp_source_file): Fix
8386 missing "%s" in fprintf.
8388 2016-07-25 John David Anglin <danglin@gcc.gnu.org>
8391 * cselib.c (cselib_process_insn): Invalidate argument slots for
8394 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8396 * config/aarch64/arm_neon.h (vfmah_lane_f16, vfmah_laneq_f16,
8397 vfmsh_lane_f16, vfmsh_laneq_f16, vmulh_lane_f16, vmulh_laneq_f16,
8398 vmulxh_lane_f16, vmulxh_laneq_f16): New.
8400 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8402 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
8403 * config/aarch64/aarch64.md (fma, fnma): Support HF.
8404 * config/aarch64/arm_fp16.h (vfmah_f16, vfmsh_f16): New.
8406 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8408 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
8409 * config/aarch64/aarch64.md (<FCVT_F2FIXED:fcvt_fixed_insn>hf<mode>3):
8411 (<FCVT_FIXED2F:fcvt_fixed_insn><mode>hf3): Likewise.
8412 (add<mode>3): Likewise.
8413 (sub<mode>3): Likewise.
8414 (mul<mode>3): Likewise.
8415 (div<mode>3): Likewise.
8416 (*div<mode>3): Likewise.
8417 (<fmaxmin><mode>3): Extend to HF.
8418 * config/aarch64/aarch64-simd.md (aarch64_rsqrts<mode>): Likewise.
8419 (fabd<mode>3): Likewise.
8420 (<FCVT_F2FIXED:fcvt_fixed_insn><VHSDF_HSDF:mode>3): Likewise.
8421 (<FCVT_FIXED2F:fcvt_fixed_insn><VHSDI_HSDI:mode>3): Likewise.
8422 (aarch64_fmulx<mode>): Likewise.
8423 (aarch64_fac<optab><mode>): Likewise.
8424 (aarch64_frecps<mode>): Likewise.
8425 (<FCVT_F2FIXED:fcvt_fixed_insn>hfhi3): New.
8426 (<FCVT_FIXED2F:fcvt_fixed_insn>hihf3): Likewise.
8427 * config/aarch64/iterators.md (VHSDF_SDF): Delete.
8428 (VSDQ_HSDI): Support HI.
8429 (fcvt_target, FCVT_TARGET): Likewise.
8430 * config/aarch64/arm_fp16.h (vaddh_f16, vsubh_f16, vabdh_f16,
8431 vcageh_f16, vcagth_f16, vcaleh_f16, vcalth_f16, vceqh_f16, vcgeh_f16,
8432 vcgth_f16, vcleh_f16, vclth_f16, vcvth_n_f16_s16, vcvth_n_f16_s32,
8433 vcvth_n_f16_s64, vcvth_n_f16_u16, vcvth_n_f16_u32, vcvth_n_f16_u64,
8434 vcvth_n_s16_f16, vcvth_n_s32_f16, vcvth_n_s64_f16, vcvth_n_u16_f16,
8435 vcvth_n_u32_f16, vcvth_n_u64_f16, vdivh_f16, vmaxh_f16, vmaxnmh_f16,
8436 vminh_f16, vminnmh_f16, vmulh_f16, vmulxh_f16, vrecpsh_f16,
8439 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8441 * config.gcc (aarch64*-*-*): Install arm_fp16.h.
8442 * config/aarch64/aarch64-builtins.c (hi_UP): New.
8443 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
8444 * config/aarch64/aarch64-simd.md (aarch64_frsqrte<mode>): Extend to HF
8446 (aarch64_frecp<FRECP:frecp_suffix><mode>): Likewise.
8447 (aarch64_cm<optab><mode>): Likewise.
8448 * config/aarch64/aarch64.md (<frint_pattern><mode>2): Likewise.
8449 (l<fcvt_pattern><su_optab><GPF:mode><GPI:mode>2): Likewise.
8450 (fix_trunc<GPF:mode><GPI:mode>2): Likewise.
8451 (sqrt<mode>2): Likewise.
8452 (*sqrt<mode>2): Likewise.
8453 (abs<mode>2): Likewise.
8454 (<optab><mode>hf2): New pattern for HF mode.
8455 (<optab>hihf2): Likewise.
8456 * config/aarch64/arm_neon.h: Include arm_fp16.h.
8457 * config/aarch64/iterators.md (GPF_F16, GPI_F16, VHSDF_HSDF): New.
8458 (w1, w2, v, s, q, Vmtype, V_cmp_result, fcvt_iesize, FCVT_IESIZE):
8460 * config/aarch64/arm_fp16.h: New file.
8461 (vabsh_f16, vceqzh_f16, vcgezh_f16, vcgtzh_f16, vclezh_f16, vcltzh_f16,
8462 vcvth_f16_s16, vcvth_f16_s32, vcvth_f16_s64, vcvth_f16_u16,
8463 vcvth_f16_u32, vcvth_f16_u64, vcvth_s16_f16, vcvth_s32_f16,
8464 vcvth_s64_f16, vcvth_u16_f16, vcvth_u32_f16, vcvth_u64_f16,
8465 vcvtah_s16_f16, vcvtah_s32_f16, vcvtah_s64_f16, vcvtah_u16_f16,
8466 vcvtah_u32_f16, vcvtah_u64_f16, vcvtmh_s16_f16, vcvtmh_s32_f16,
8467 vcvtmh_s64_f16, vcvtmh_u16_f16, vcvtmh_u32_f16, vcvtmh_u64_f16,
8468 vcvtnh_s16_f16, vcvtnh_s32_f16, vcvtnh_s64_f16, vcvtnh_u16_f16,
8469 vcvtnh_u32_f16, vcvtnh_u64_f16, vcvtph_s16_f16, vcvtph_s32_f16,
8470 vcvtph_s64_f16, vcvtph_u16_f16, vcvtph_u32_f16, vcvtph_u64_f16,
8471 vnegh_f16, vrecpeh_f16, vrecpxh_f16, vrndh_f16, vrndah_f16, vrndih_f16,
8472 vrndmh_f16, vrndnh_f16, vrndph_f16, vrndxh_f16, vrsqrteh_f16,
8475 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8477 * config/aarch64/aarch64-simd-builtins.def (reduc_smax_scal_,
8478 reduc_smin_scal_): Use VDQIF_F16.
8479 (reduc_smax_nan_scal_, reduc_smin_nan_scal_): Use VHSDF.
8480 * config/aarch64/aarch64-simd.md (reduc_<maxmin_uns>_scal_<mode>):
8482 (aarch64_reduc_<maxmin_uns>_internal<mode>): Likewise.
8483 * config/aarch64/iterators.md (VDQIF_F16): New.
8484 (vp): Support HF modes.
8485 * config/aarch64/arm_neon.h (vmaxv_f16, vmaxvq_f16, vminv_f16,
8486 vminvq_f16, vmaxnmv_f16, vmaxnmvq_f16, vminnmv_f16, vminnmvq_f16): New.
8488 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8490 * config/aarch64/aarch64-simd.md (*aarch64_mulx_elt_to_64v2df): Rename to
8491 "*aarch64_mulx_elt_from_dup<mode>".
8492 (*aarch64_mul3_elt<mode>): Update schedule type.
8493 (*aarch64_mul3_elt_from_dup<mode>): Likewise.
8494 (*aarch64_fma4_elt_from_dup<mode>): Likewise.
8495 (*aarch64_fnma4_elt_from_dup<mode>): Likewise.
8496 * config/aarch64/iterators.md (VMUL): Supprt half precision float modes.
8497 (f, fp): Support HF modes.
8498 * config/aarch64/arm_neon.h (vfma_lane_f16, vfmaq_lane_f16,
8499 vfma_laneq_f16, vfmaq_laneq_f16, vfma_n_f16, vfmaq_n_f16, vfms_lane_f16,
8500 vfmsq_lane_f16, vfms_laneq_f16, vfmsq_laneq_f16, vfms_n_f16,
8501 vfmsq_n_f16, vmul_lane_f16, vmulq_lane_f16, vmul_laneq_f16,
8502 vmulq_laneq_f16, vmul_n_f16, vmulq_n_f16, vmulx_lane_f16,
8503 vmulxq_lane_f16, vmulx_laneq_f16, vmulxq_laneq_f16): New.
8505 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8507 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
8508 * config/aarch64/aarch64-simd.md (fma<mode>4, fnma<mode>4): Extend to HF
8510 * config/aarch64/arm_neon.h (vfma_f16, vfmaq_f16, vfms_f16,
8513 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8515 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
8516 * config/aarch64/aarch64-simd.md
8517 (aarch64_rsqrts<mode>): Extend to HF modes.
8518 (fabd<mode>3): Likewise.
8519 (<FCVT_F2FIXED:fcvt_fixed_insn><VHSDF_SDF:mode>3): Likewise.
8520 (<FCVT_FIXED2F:fcvt_fixed_insn><VHSDI_SDI:mode>3): Likewise.
8521 (aarch64_<maxmin_uns>p<mode>): Likewise.
8522 (<su><maxmin><mode>3): Likewise.
8523 (<maxmin_uns><mode>3): Likewise.
8524 (<fmaxmin><mode>3): Likewise.
8525 (aarch64_faddp<mode>): Likewise.
8526 (aarch64_fmulx<mode>): Likewise.
8527 (aarch64_frecps<mode>): Likewise.
8528 (*aarch64_fac<optab><mode>): Rename to aarch64_fac<optab><mode>.
8529 (add<mode>3): Extend to HF modes.
8530 (sub<mode>3): Likewise.
8531 (mul<mode>3): Likewise.
8532 (div<mode>3): Likewise.
8533 (*div<mode>3): Likewise.
8534 * config/aarch64/aarch64.c (aarch64_emit_approx_div): Return false for
8536 * config/aarch64/iterators.md (VDQ_HSDI, VSDQ_HSDI): New mode iterator.
8537 * config/aarch64/arm_neon.h (vadd_f16, vaddq_f16, vabd_f16, vabdq_f16,
8538 vcage_f16, vcageq_f16, vcagt_f16, vcagtq_f16, vcale_f16, vcaleq_f16,
8539 vcalt_f16, vcaltq_f16, vceq_f16, vceqq_f16, vcge_f16, vcgeq_f16,
8540 vcgt_f16, vcgtq_f16, vcle_f16, vcleq_f16, vclt_f16, vcltq_f16,
8541 vcvt_n_f16_s16, vcvtq_n_f16_s16, vcvt_n_f16_u16, vcvtq_n_f16_u16,
8542 vcvt_n_s16_f16, vcvtq_n_s16_f16, vcvt_n_u16_f16, vcvtq_n_u16_f16,
8543 vdiv_f16, vdivq_f16, vdup_lane_f16, vdup_laneq_f16, vdupq_lane_f16,
8544 vdupq_laneq_f16, vdups_lane_f16, vdups_laneq_f16, vmax_f16, vmaxq_f16,
8545 vmaxnm_f16, vmaxnmq_f16, vmin_f16, vminq_f16, vminnm_f16, vminnmq_f16,
8546 vmul_f16, vmulq_f16, vmulx_f16, vmulxq_f16, vpadd_f16, vpaddq_f16,
8547 vpmax_f16, vpmaxq_f16, vpmaxnm_f16, vpmaxnmq_f16, vpmin_f16, vpminq_f16,
8548 vpminnm_f16, vpminnmq_f16, vrecps_f16, vrecpsq_f16, vrsqrts_f16,
8549 vrsqrtsq_f16, vsub_f16, vsubq_f16): New.
8551 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8553 * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New.
8554 * config/aarch64/aarch64-simd-builtins.def: Register new builtins.
8555 * config/aarch64/aarch64-simd.md (aarch64_rsqrte<mode>): Extend to HF modes.
8556 (neg<mode>2): Likewise.
8557 (abs<mode>2): Likewise.
8558 (<frint_pattern><mode>2): Likewise.
8559 (l<fcvt_pattern><su_optab><VDQF:mode><fcvt_target>2): Likewise.
8560 (<optab><VDQF:mode><fcvt_target>2): Likewise.
8561 (<fix_trunc_optab><VDQF:mode><fcvt_target>2): Likewise.
8562 (ftrunc<VDQF:mode>2): Likewise.
8563 (<optab><fcvt_target><VDQF:mode>2): Likewise.
8564 (sqrt<mode>2): Likewise.
8565 (*sqrt<mode>2): Likewise.
8566 (aarch64_frecpe<mode>): Likewise.
8567 (aarch64_cm<optab><mode>): Likewise.
8568 * config/aarch64/aarch64.c (aarch64_emit_approx_sqrt): Return false for
8570 * config/aarch64/iterators.md (VHSDF, VHSDF_DF, VHSDF_SDF): New.
8571 (VDQF_COND, fcvt_target, FCVT_TARGET, hcon): Extend mode attribute to HF modes.
8573 * config/aarch64/arm_neon.h (vdup_n_f16): New.
8574 (vdupq_n_f16): Likewise.
8575 (vld1_dup_f16): Use vdup_n_f16.
8576 (vld1q_dup_f16): Use vdupq_n_f16.
8577 (vabs_f16, vabsq_f16, vceqz_f16, vceqzq_f16, vcgez_f16, vcgezq_f16,
8578 vcgtz_f16, vcgtzq_f16, vclez_f16, vclezq_f16, vcltz_f16, vcltzq_f16,
8579 vcvt_f16_s16, vcvtq_f16_s16, vcvt_f16_u16, vcvtq_f16_u16, vcvt_s16_f16,
8580 vcvtq_s16_f16, vcvt_u16_f16, vcvtq_u16_f16, vcvta_s16_f16,
8581 vcvtaq_s16_f16, vcvta_u16_f16, vcvtaq_u16_f16, vcvtm_s16_f16,
8582 vcvtmq_s16_f16, vcvtm_u16_f16, vcvtmq_u16_f16, vcvtn_s16_f16,
8583 vcvtnq_s16_f16, vcvtn_u16_f16, vcvtnq_u16_f16, vcvtp_s16_f16,
8584 vcvtpq_s16_f16, vcvtp_u16_f16, vcvtpq_u16_f16, vneg_f16, vnegq_f16,
8585 vrecpe_f16, vrecpeq_f16, vrnd_f16, vrndq_f16, vrnda_f16, vrndaq_f16,
8586 vrndi_f16, vrndiq_f16, vrndm_f16, vrndmq_f16, vrndn_f16, vrndnq_f16,
8587 vrndp_f16, vrndpq_f16, vrndx_f16, vrndxq_f16, vrsqrte_f16, vrsqrteq_f16,
8588 vsqrt_f16, vsqrtq_f16): New.
8590 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8592 * config/aarch64/aarch64-simd.md
8593 (aarch64_<PERMUTE:perm_insn><PERMUTE:perm_hilo><mode>): Use VALL_F16.
8594 (aarch64_ext<mode>): Likewise.
8595 (aarch64_rev<REVERSE:rev_op><mode>): Likewise.
8596 * config/aarch64/aarch64.c (aarch64_evpc_trn, aarch64_evpc_uzp,
8597 aarch64_evpc_zip, aarch64_evpc_ext, aarch64_evpc_rev): Support V4HFmode
8599 * config/aarch64/arm_neon.h (__INTERLEAVE_LIST): Support float16x4_t,
8601 (__aarch64_vdup_lane_f16, __aarch64_vdup_laneq_f16,
8602 __aarch64_vdupq_lane_f16, __aarch64_vdupq_laneq_f16, vbsl_f16,
8603 vbslq_f16, vdup_n_f16, vdupq_n_f16, vdup_lane_f16, vdup_laneq_f16,
8604 vdupq_lane_f16, vdupq_laneq_f16, vduph_lane_f16, vduph_laneq_f16,
8605 vext_f16, vextq_f16, vmov_n_f16, vmovq_n_f16, vrev64_f16, vrev64q_f16,
8606 vtrn1_f16, vtrn1q_f16, vtrn2_f16, vtrn2q_f16, vtrn_f16, vtrnq_f16,
8607 vuzp1_f16, vuzp1q_f16, vuzp2_f16, vuzp2q_f16, vzip1_f16, vzip2q_f16):
8609 (vmov_n_f16): Reimplement using vdup_n_f16.
8610 (vmovq_n_f16): Reimplement using vdupq_n_f16..
8612 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8614 * config/aarch64/aarch64.c (aarch64_add_constant): New parameter
8615 "frame_related_p". Generate CFA annotation when it's necessary.
8616 (aarch64_expand_prologue): Use aarch64_add_constant.
8617 (aarch64_expand_epilogue): Likewise.
8618 (aarch64_output_mi_thunk): Pass "false" when calling
8619 aarch64_add_constant.
8621 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8623 * config/aarch64/aarch64.c (aarch64_add_constant): Optimize instruction
8626 2016-07-25 Jiong Wang <jiong.wang@arm.com>
8628 * config/aarch64/aarch64.c (aarch64_add_constant): New parameter "mode".
8629 Use aarch64_internal_mov_immediate instead of aarch64_build_constant.
8630 (aarch64_output_mi_thunk): Pass Pmode when calling aarch64_add_constant.
8631 (aarch64_build_constant): Delete.
8633 2016-07-25 Alexander Monakov <amonakov@ispras.ru>
8636 2016-07-20 Alexander Monakov <amonakov@ispras.ru>
8638 * config/nvptx/nvptx.c (nvptx_option_override): Do not set
8639 flag_toplevel_reorder.
8641 2016-07-25 Richard Biener <rguenther@suse.de>
8643 * cgraph.c (cgraph_node::verify_node): Compare against builtin
8644 by using DECL_BUILT_IN_CLASS and DECL_FUNCTION_CODE.
8645 * tree-chkp.c (chkp_gimple_call_builtin_p): Likewise.
8646 * tree-streamer.h (streamer_handle_as_builtin_p): Remove.
8647 (streamer_get_builtin_tree): Likewise.
8648 (streamer_write_builtin): Likewise.
8649 * lto-streamer.h (LTO_builtin_decl): Remove.
8650 * lto-streamer-in.c (lto_read_tree_1): Remove assert.
8651 (lto_input_scc): Remove LTO_builtin_decl handling.
8652 (lto_input_tree_1): Liekwise.
8653 * lto-streamer-out.c (lto_output_tree_1): Remove special
8654 handling of builtins.
8655 (DFS::DFS): Likewise.
8656 * tree-streamer-in.c (streamer_get_builtin_tree): Remove.
8657 * tree-streamer-out.c (pack_ts_function_decl_value_fields): Remove
8659 (streamer_write_builtin): Remove.
8661 2016-07-25 Martin Liska <mliska@suse.cz>
8663 * lto-cgraph.c (input_symtab): Don't call get_working_sets
8664 if flag_auto_profile is set to true.
8666 2016-07-25 Martin Liska <mliska@suse.cz>
8668 PR gcov-profile/71868
8669 * cfgloopanal.c (expected_loop_iterations_unbounded): When we
8670 have a function with multiple latches, count them all.
8672 2016-07-25 Martin Liska <mliska@suse.cz>
8674 * tree-ssa-loop-niter.c (loop_only_exit_p): Release body array.
8676 2016-07-25 Martin Liska <mliska@suse.cz>
8678 PR tree-optimization/71987
8679 * tree-ssa-reassoc.c (maybe_optimize_range_tests): Call get_ops
8680 just for SSA_NAMEs. Fix GNU coding style.
8682 2016-07-25 Martin Liska <mliska@suse.cz>
8684 PR gcov-profile/64874
8685 * gcov-io.h: Update command about file format.
8686 * gcov-iov.c (main): Adapt the numbering scheme.
8688 2016-07-24 Kugan Vivekanandarajah <kuganv@linaro.org>
8691 * tree-ssa-reassoc.c (optimize_vec_cond_expr): Handle tcc_compare stmt
8692 whose result is used in PHI.
8693 (final_range_test_p): Likewise.
8694 (maybe_optimize_range_tests): Likewise.
8696 2016-07-22 Michael Meissner <meissner@linux.vnet.ibm.com>
8698 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
8699 Reformat two multi-line strings.
8701 2016-07-22 Martin Sebor <msebor@redhat.com>
8703 * doc/extend.texi (Compound Literals): Add '@' missed in last commit.
8705 2016-07-22 Martin Sebor <msebor@redhat.com>
8708 * doc/extend.texi (Compound Literals): Correct and clarify.
8709 (Cast to Union): Same.
8711 2016-07-22 Kelvin Nilsen <kelvin@gcc.gnu.org>
8713 * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
8714 comments to explain why certain error messages make mention of
8715 undocumented options.
8716 (rs6000_invalid_builtin): Change error messages to replace mention
8717 of undocumented options with mention of the -mcpu=power9 option
8718 that enables those undocumented options.
8719 * config/rs6000/rs6000.h (MASK_FLOAT128): New macro.
8720 (RS6000_BTM_FLOAT128): Use the new MASK_FLOAT128 macro in the
8721 definition of this macro to correct an existing error.
8722 * config/rs6000/rs6000.opt: Add the Undocumented qualifier to the
8723 mpower9-fusion, mpower9-vector, mpower9-dform, and mmodulo entries.
8724 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Modify
8725 descriptions of built-in functions so that they depend on
8726 -mcpu=power9 instead of on the corresponding undocumented flags.
8727 * doc/invoke.texi (Option Summary): Remove all mention of newly
8729 (IBM RS/6000 and PowerPC Options): Likewise.
8730 * doc/md.texi (Constraints for Particuliar Machines): Remove all
8731 mention of newly undocumented flags.
8733 2016-07-22 Evgeny Stupachenko <evstupac@gmail.com>
8735 * ipa-cp.c (determine_versionability): Do not create constprop clones,
8736 when target_clones attribute is set.
8738 2016-07-22 Bin Cheng <bin.cheng@arm.com>
8740 * common.opt (funsafe-loop-optimizations): Mark ignore.
8741 * doc/invoke.texi (funsafe-loop-optimizations): Remove.
8742 * loop-iv.c (get_simple_loop_desc): Remove unsafe-loop-optimizations
8744 * tree-ssa-loop-niter.c (finite_loop_p): Ditto.
8745 * config/bfin/bfin.c (bfin_can_use_doloop_p): Ditto.
8747 2016-07-22 Bin Cheng <bin.cheng@arm.com>
8749 * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
8751 * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
8753 (number_of_iterations_exit): Warn missed loop optimization for
8754 possible infinite loops.
8756 2016-07-22 Segher Boessenkool <segher@kernel.crashing.org>
8759 * config/rs6000/rs6000.c (rs6000_file_start): Fix condition for
8760 when to emit a ".machine" pseudo-op.
8762 2016-07-22 Martin Liska <mliska@suse.cz>
8764 PR gcov-profile/69028
8765 PR gcov-profile/62047
8766 * coverage.c (coverage_compute_lineno_checksum): Do not
8767 calculate checksum for fns w/o xloc.file.
8768 (coverage_compute_profile_id): Likewise.
8770 2016-07-22 Georg-Johann Lay <avr@gjlay.de>
8772 * config/avr/avr.c (TARGET_SECONDARY_RELOAD): Remove hook define...
8773 (avr_secondary_reload): ...and implementation.
8774 (avr_adjust_insn_length) [ADJUST_LEN_LPM]: Remove handling.
8775 * config/avr/avr.md (reload_in<mode>): Remove insns.
8776 (adjust_len) [lpm]: Remove insn attribute value.
8777 * config/avr/predicates.md (flash_operand): Remove insn predicate.
8779 2016-07-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
8782 * builtin-attrs.def (ATTR_RT_NOTHROW_LEAF_LIST): New return twice
8784 * builtins.def (BUILT_IN_SETJMP): Use ATTR_RT_NOTHROW_LEAF_LIST here.
8785 * calls.c (special_function_p): Remove the special handling of the
8786 "__builtin_" prefix.
8788 2016-07-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
8791 * calls.c (gimple_maybe_alloca_call_p): New function. Return true
8792 if STMT may be an alloca call.
8793 (gimple_alloca_call_p, alloca_call_p): Return only true for the
8794 builtin alloca call.
8795 * calls.h (gimple_maybe_alloca_call_p): New function.
8796 * tree-inline.c (inline_forbidden_p_stmt): Use
8797 gimple_maybe_alloca_call_p here.
8799 2016-07-21 David Malcolm <dmalcolm@redhat.com>
8801 * spellcheck-tree.c (best_macro_match::best_macro_match):
8802 Explictly specify the template arguments when invoking the base
8803 class constructor, to help older C++ compilers.
8805 2016-07-21 Jakub Jelinek <jakub@redhat.com>
8808 * asan.c (asan_dynamic_init_call): Call asan_init_shadow_ptr_types
8809 before builtin_decl_implicit.
8811 2016-07-21 James Greenhalgh <james.greenhalgh@arm.com>
8813 * optabs.c (emit_condiitonal_move): Short circuit for identical
8816 2016-07-21 James Greenhalgh <james.greenhalgh@arm.com>
8818 * ifcvt.c (noce_if_info): New fields: speed_p, original_cost,
8819 max_seq_cost. Removed fields: then_cost, else_cost, branch_cost.
8820 (noce_conversion_profitable_p): New.
8821 (noce_try_store_flag_constants): Use it.
8822 (noce_try_addcc): Likewise.
8823 (noce_try_store_flag_mask): Likewise.
8824 (noce_try_cmove): Likewise.
8825 (noce_try_cmove_arith): Likewise.
8826 (bb_valid_for_noce_process_p): Add to the cost parameter rather than
8828 (noce_convert_multiple_sets): Move cost model to here, from...
8829 (bb_ok_for_noce_convert_multiple_sets) ...here.
8830 (noce_process_if_block): Update calls for above changes.
8831 (noce_find_if_block): Record new noce_if_info parameters.
8833 2016-07-21 James Greenhalgh <james.greenhalgh@arm.com>
8835 * target.def (max_noce_ifcvt_seq_cost): New.
8836 * doc/tm.texi.in (TARGET_MAX_NOCE_IFCVT_SEQ_COST): Document it.
8837 * doc/tm.texi: Regenerate.
8838 * targhooks.h (default_max_noce_ifcvt_seq_cost): New.
8839 * targhooks.c (default_max_noce_ifcvt_seq_cost): New.
8840 * params.def (PARAM_MAX_RTL_IF_CONVERSION_PREDICTABLE_COST): New.
8841 (PARAM_MAX_RTL_IF_CONVERSION_UNPREDICTABLE_COST): Likewise.
8842 * doc/invoke.texi: Document new params.
8844 2016-07-21 Richard Biener <rguenther@suse.de>
8846 PR tree-optimization/71947
8847 * tree-vrp.c (extract_range_from_assert): Singleton symbolic
8848 ranges have useful limit_vr information.
8850 2016-07-21 Richard Biener <rguenther@suse.de>
8852 * function-tests.c (build_trivial_generic_function): Set
8853 BLOCK_SUPERCONTEXT of DECL_INITIAL.
8854 * omp-low.c (create_omp_child_function): Likewise.
8855 (grid_expand_target_grid_body): Likewise.
8856 * cgraphunit.c (init_lowered_empty_function): Likewise.
8857 (cgraph_node::expand_thunk): Likewise.
8858 * tree-parloops.c (create_loop_fn): Likewise.
8859 * ipa.c (cgraph_build_static_cdtor_1): Likewise.
8861 2016-07-21 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
8863 * tree-ssa-strlen.c (strlen_dom_walker::before_dom_children): Fix typo
8866 2016-07-21 Georg-Johann Lay <avr@gjlay.de>
8868 * config/avr/avr.md (any_extract, any_shiftrt): New code iterators.
8869 (*insv.extract, *insv.shiftrt, *insv.not-bit.0, *insv.not-bit.7)
8870 (*insv.xor-extract, *insv.xor1-bit.0): New insns.
8871 (adjust_len) [insv_notbit, insv_notbit_0, insv_notbit_7]: New
8872 values for insn attribute.
8873 * config/avr/avr.c (avr_out_insert_notbit): New function.
8874 (avr_adjust_insn_length): Handle ADJUST_LEN_INSV_NOTBIT,
8875 ADJUST_LEN_INSV_NOTBIT_0/_7.
8876 * config/avr/avr-protos.h (avr_out_insert_notbit): New proto.
8878 2016-07-21 Bin Cheng <bin.cheng@arm.com>
8880 * tree-chrec.c (convert_affine_scev): New parameter. Pass new arg.
8881 (chrec_convert_1, chrec_convert): Ditto.
8882 * tree-chrec.h (chrec_convert, convert_affine_scev): New parameter.
8883 * tree-scalar-evolution.c (interpret_rhs_expr): Pass new arg.
8884 * tree-vrp.c (adjust_range_with_scev): Ditto.
8885 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): Ditto.
8886 (scev_var_range_cant_overflow): New function.
8887 (scev_probably_wraps_p): New parameter. Call above function.
8888 * tree-ssa-loop-niter.h (scev_probably_wraps_p): New parameter.
8890 2016-07-21 Bin Cheng <bin.cheng@arm.com>
8892 * tree-ssa-loop-niter.c (number_of_iterations_lt_to_ne): Clean up
8893 by removing computation of may_be_zero.
8895 2016-07-21 Jakub Jelinek <jakub@redhat.com>
8897 * tree-object-size.c (unknown): Use HOST_WIDE_INT_M1U instead of -1.
8899 2016-07-21 Andrew Sutton <andrew.n.sutton@gmail.com>
8901 Improving concepts performance and diagnostics.
8902 * timevar.def (TV_CONSTRAINT_SAT, TV_CONSTRAINT_SUB): New time vars
8903 for constraint satisfaction and subsumption.
8904 * timevar.h (auto_timevar): New constructor that matches the push/pop
8905 pattern of usage in pt.c.
8907 2016-07-20 Uros Bizjak <ubizjak@gmail.com>
8909 * hwint.h (HOST_WIDE_INT_0): New define.
8910 (HOST_WIDE_INT_0U): Ditto.
8911 * double-int.c: Use HOST_WIDE_INT_0 instead of (HOST_WIDE_INT) 0.
8912 * dse.c: Use HOST_WIDE_INT_0U instead of (unsigned HOST_WIDE_INT) 0.
8913 * simplify-rtx.c: Ditto.
8914 * tree-object-size.c: Ditto.
8916 2016-07-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
8918 * config/s390/s390.c (s390_encode_section_info): Remove mode size
8921 2016-07-20 Uros Bizjak <ubizjak@gmail.com>
8923 * cse.c: Use HOST_WIDE_INT_M1 instead of ~(HOST_WIDE_INT) 0.
8924 * combine.c: Use HOST_WIDE_INT_M1U instead of
8925 ~(unsigned HOST_WIDE_INT) 0.
8926 * double-int.h: Ditto.
8928 * dwarf2asm.c:Ditto.
8930 * genmodes.c: Ditto.
8932 * read-rtl.c: Ditto.
8933 * tree-ssa-loop-ivopts.c: Ditto.
8934 * tree-ssa-loop-prefetch.c: Ditto.
8935 * tree-vect-generic.c: Ditto.
8936 * tree-vect-patterns.c: Ditto.
8939 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
8941 * gcc/config/avr.c (avr_legitimize_address) [AVR_TINY]: Force
8942 constant addresses outside [0,0xc0] into a register.
8943 (avr_out_movhi_r_mr_reg_no_disp_tiny): Pass insn. And handle
8944 cases where the base address register is unused after.
8945 (avr_out_movhi_r_mr_reg_disp_tiny): Same.
8946 (avr_out_movhi_mr_r_reg_disp_tiny): Same.
8947 (avr_out_store_psi_reg_disp_tiny): Same.
8949 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
8951 Implement attribute progmem on reduced Tiny cores by adding
8952 flash offset 0x4000 to respective symbols.
8955 * doc/extend.texi (AVR Variable Attributes) [progmem]: Add
8956 documentation how it works on reduced Tiny cores.
8957 (AVR Named Address Spaces): No support for reduced Tiny.
8958 * config/avr/avr.c (AVR_SYMBOL_FLAG_TINY_PM): New macro.
8959 (avr_address_tiny_pm_p): New static function.
8960 (avr_print_operand_address) [AVR_TINY]: Add AVR_TINY_PM_OFFSET
8961 if the address is in progmem.
8962 (avr_assemble_integer): Same.
8963 (avr_encode_section_info) [AVR_TINY]: Set AVR_SYMBOL_FLAG_TINY_PM
8964 for symbol_ref in progmem.
8965 * config/avr/avr.h (AVR_TINY_PM_OFFSET): New macro.
8966 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Use it instead of
8967 magic 0x4000 when built-in def'ing __AVR_TINY_PM_BASE_ADDRESS__.
8969 2016-07-20 Patrick Palka <ppalka@gcc.gnu.org>
8971 * configure.ac (thin_archive_support): New variable. AC_SUBST it.
8972 * configure: Regenerate.
8973 * Makefile.in (THIN_ARCHIVE_SUPPORT): New variable.
8974 (USE_THIN_ARCHIVES): New variable.
8975 (libbackend.a): If USE_THIN_ARCHIVES then pass T to ar to build
8976 this archive as a thin archive.
8978 2016-07-20 David Malcolm <dmalcolm@redhat.com>
8980 * diagnostic-show-locus.c (diagnostic_show_locus): If this is the
8981 same location as last time, don't skip if we have fix-it hints.
8982 Clarify the skipping logic by converting it from one "if" clause
8983 to repeated "if" clauses.
8984 * spellcheck-tree.c: Include "cpplib.h".
8985 (find_closest_macro_cpp_cb): Move here from c/c-decl.c.
8986 (best_macro_match::best_macro_match): New constructor.
8987 * spellcheck-tree.h (struct edit_distance_traits<cpp_hashnode *>):
8988 Move here from c/c-decl.c.
8989 (class best_macro_match): Move here from c/c-decl.c, converting
8990 from a typedef to a subclass, gaining a ctor.
8992 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
8994 * config/avr/avr-protos.h (avr_addr_space_supported_p): New prototype.
8995 * config/avr/avr.c (TARGET_ADDR_SPACE_DIAGNOSE_USAGE): New hook
8997 (avr_addr_space_diagnose_usage): ...and implementation.
8998 (avr_addr_space_supported_p): New function.
8999 (avr_nonconst_pointer_addrspace, avr_pgm_check_var_decl): Only
9000 report bad address space usage if that space is supported.
9001 (avr_insert_attributes): Same. No more complain about unsupported
9003 * config/avr/avr-c.c (tm_p.h): Include it.
9004 (avr_cpu_cpp_builtins): Only define addr-space related built-in
9005 macro if avr_addr_space_supported_p.
9007 2016-07-20 Alexander Monakov <amonakov@ispras.ru>
9009 * config/nvptx/nvptx.c (nvptx_option_override): Do not set
9010 flag_toplevel_reorder.
9012 2016-07-20 David Malcolm <dmalcolm@redhat.com>
9014 * gcc-rich-location.c
9015 (gcc_rich_location::add_fixit_misspelled_id): New overload, taking
9017 * gcc-rich-location.h
9018 (gcc_rich_location::add_fixit_misspelled_id): Likewise.
9020 2016-07-20 Georg-Johann Lay <avr@gjlay.de>
9022 * target.def (addr_space): Add new diagnose_usage to hook vector.
9023 * targhooks.c (default_addr_space_diagnose_usage): Add default
9024 implementation and...
9025 * targhooks.h (default_addr_space_diagnose_usage): ... its prototype.
9026 * c/c-parser.c (c_lex_one_token) [CPP_NAME]: If the token
9027 is some address space, call targetm.addr_space.diagnose_usage.
9028 * doc/tm.texi.in (Named Address Spaces): Add anchor for
9029 TARGET_ADDR_SPACE_DIAGNOSE_USAGE documentation.
9030 * doc/tm.texi: Regenerate.
9032 2016-07-20 Martin Liska <mliska@suse.cz>
9035 * graphite-isl-ast-to-gimple.c (later_of_the_two):
9036 Properly handly PHI stmts.
9038 2016-07-20 Bin Cheng <bin.cheng@arm.com>
9040 PR tree-optimization/71503
9041 PR tree-optimization/71683
9042 * tree-if-conv.c (gen_phi_arg_condition): Record true predicate
9045 2016-07-20 Martin Liska <mliska@suse.cz>
9047 * doc/invoke.texi (-fipa-ra): Document when the option is
9048 disabled. Fix a typo.
9050 2016-07-20 Martin Liska <mliska@suse.cz>
9052 * Makefile.in: Include fibonacci_heap.c
9053 * fibonacci_heap.c: New file.
9054 * fibonacci_heap.h (fibonacci_heap::insert): Use insert_node.
9055 (fibonacci_heap::union_with): Fix deletion of the second heap.
9056 * selftest-run-tests.c (selftest::run_tests): Incorporate
9057 fibonacci heap tests.
9058 * selftest.h: Declare fibonacci_heap_c_tests.
9060 2016-07-20 Martin Liska <mliska@suse.cz>
9062 * selftest-run-tests.c (selftest::run_tests): New function.
9063 * selftest.h (sreal_c_tests): Declare.
9064 * sreal.c (sreal_verify_basics): New function.
9065 (verify_aritmetics): Likewise.
9066 (sreal_verify_arithmetics): Likewise.
9067 (verify_shifting): Likewise.
9068 (sreal_verify_shifting): Likewise.
9069 (void sreal_c_tests): Likewise.
9071 2016-07-19 Jakub Jelinek <jakub@redhat.com>
9073 PR rtl-optimization/71916
9074 * cfgrtl.c (contains_no_active_insn_p): Return false also for
9075 bb which have a single succ fake edge.
9077 2016-07-19 Aldy Hernandez <aldyh@redhat.com>
9080 * dwarf2out.c (gen_subprogram_die): Only call
9081 gen_unspecified_parameters_die while dumping early dwarf.
9083 2016-07-19 Jakub Jelinek <jakub@redhat.com>
9086 * gimple-fold.c (fold_builtin_memory_op): Use
9087 get_addr_base_and_unit_offset instead of get_ref_base_and_extent.
9089 2016-07-19 Uros Bizjak <ubizjak@gmail.com>
9091 * builtins.c: Use HOST_WIDE_INT_1 instead of (HOST_WIDE_INT) 1,
9092 HOST_WIDE_INT_1U instead of (unsigned HOST_WIDE_INT) 1,
9093 HOST_WIDE_INT_M1 instead of (HOST_WIDE_INT) -1 and
9094 HOST_WIDE_INT_M1U instead of (unsigned HOST_WIDE_INT) -1.
9098 * double-int.c: Ditto.
9100 * dwarf2out.c: Ditto.
9103 * fold-const.c: Ditto.
9104 * function.c: Ditto.
9106 * genmodes.c: Ditto.
9110 * loop-doloop.c: Ditto.
9111 * loop-invariant.c: Ditto.
9118 * simplify-rtx.c: Ditto.
9119 * stor-layout.c: Ditto.
9121 * tree-ssa-loop-ivopts.c: Ditto.
9122 * tree-vect-generic.c: Ditto.
9123 * tree-vect-patterns.c: Ditto.
9128 * wide-int-print.cc: Ditto.
9129 * wide-int.cc: Ditto.
9130 * wide-int.h: Ditto.
9132 2016-07-19 David Malcolm <dmalcolm@redhat.com>
9134 * selftest.c (selftest::assert_streq): Handle NULL values of
9135 val_actual and val_expected.
9137 2016-07-19 Martin Jambor <mjambor@suse.cz>
9140 * trans-decl.c (gfc_generate_function_code): Use cgraph_get_create_node
9141 rather than cgraph_create_node to get a call graph node.
9143 2016-07-19 Richard Biener <rguenther@suse.de>
9145 * gimple-fold.c (get_base_constructor): Add VIEW_CONVERT case,
9146 handle all tcc_constant bases and valueize SSA names.
9147 * tree-ssa-sccvn.c (fully_constant_vn_reference_p): Handle
9150 2016-07-19 David Malcolm <dmalcolm@redhat.com>
9152 * function-tests.c (selftest::verify_three_block_rtl_cfg): Verify
9153 the flags of the exit block and bb2, not just the entry block.
9155 2016-07-19 Richard Biener <rguenther@suse.de>
9157 PR tree-optimization/71901
9158 * tree-ssa-sccvn.h (struct vn_reference_op_struct): Add
9159 align member, group stuff with the bitfield.
9160 (vn_ref_op_align_unit): New inline.
9161 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): For ARRAY_REFs
9162 record element alignment and operand 3 unchanged.
9163 (ao_ref_init_from_vn_reference): Adjust.
9164 (valueize_refs_1): Likewise.
9165 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Likewise.
9167 2016-07-19 Richard Biener <rguenther@suse.de>
9169 PR tree-optimization/71908
9170 * tree-ssa-structalias.c (get_constraint_for_component_ref): Handle
9171 symbolic constants in a more reliable way.
9173 2016-07-19 Ilya Enkovich <ilya.enkovich@intel.com>
9175 * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer): Update
9177 (vect_update_inits_of_drs): Likewise.
9178 (vect_create_cond_for_alias_checks): Likewise.
9179 * tree-vect-loop.c (vect_get_known_peeling_cost): Likewise.
9181 2016-07-19 Richard Biener <rguenther@suse.de>
9184 * lto-streamer-out.c (DFS::DFS_write_tree_body): For blocks
9185 with an abstract origin that is not an inlined function outer
9186 scope add a self-reference as abstract origin.
9187 * tree-streamer-out.c (write_ts_block_tree_pointers): Likewise.
9189 2016-07-18 Michael Meissner <meissner@linux.vnet.ibm.com>
9192 * config/rs6000/rs6000.c (rs6000_function_value): Fix
9193 unintentional System V.4 structure return breakage for structures
9194 with a single floating point element.
9196 2016-07-18 Yuri Rumyantsev <ysrumyan@gmail.com>
9198 PR tree-optimization/71734
9199 * tree-ssa-loop-im.c (ref_indep_loop_p_1): Add REF_LOOP argument which
9200 contains REF, use it to check safelen, assume that safelen value
9201 must be greater 1, fix style.
9202 (ref_indep_loop_p_2): Add REF_LOOP argument.
9203 (ref_indep_loop_p): Pass LOOP as additional argument to
9206 2016-07-18 Dominik Vogt <vogt@linux.vnet.ibm.com>
9208 * cfgexpand.c (expand_stack_vars): Implement synamic stack space
9209 allocation in the prologue.
9210 * explow.c (get_dynamic_stack_base): New function to return an address
9211 expression for the dynamic stack base.
9212 (get_dynamic_stack_size): New function to do the required dynamic stack
9213 space size calculations.
9214 (allocate_dynamic_stack_space): Use new functions.
9215 (align_dynamic_address): Move some code from
9216 allocate_dynamic_stack_space to new function.
9217 * explow.h (get_dynamic_stack_base, get_dynamic_stack_size): Export.
9219 2016-07-18 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
9221 * config/s390/s390.c (s390_encode_section_info): Always set
9222 notaligned marker if mode size is 0 or no MEM_ALIGN info could be
9225 2016-07-18 Richard Biener <rguenther@suse.de>
9227 PR tree-optimization/71893
9228 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Compensate
9229 for sizetype cast added by array_ref_element_size.
9230 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
9232 2016-07-16 John David Anglin <danglin@gcc.gnu.org>
9234 * config/pa/pa.c (hppa_profile_hook): Allocate stack space for
9235 register parameters. Remove code to initialize argument pointer
9236 on TARGET_64BIT. Optimize call to _mcount when it can be reached
9237 using a pc-relative branch. Cleanup conditional code.
9238 * config/pa/pa.md (call_mcount): New expander.
9239 (call_mcount_nonpic): New insn.
9240 (call_mcount_pic): New insn and split.
9241 (call_mcount_pic_post_reload): New insn.
9242 (call_mcount_64bit): New insn and split.
9243 (call_mcount_64bit_post_reload): New insn.
9245 2016-07-15 Georg-Johann Lay <avr@gjlay.de>
9247 * config/avr/predicates.md (const_m255_to_m1_operand): New.
9248 * config/avr/constraints.md (Cn8, Ca1, Co1, Yx2): New constraints.
9249 * config/avr/avr.md (add<mode>3) <ALL1>: Fix set_vzn for +/-2.
9250 (*cmphi.zero-extend.0, *cmphi.zero-extend.1)
9251 (*usum_widenqihi3, *udiff_widenqihi3)
9252 (*addhi3_zero_extend.const): New combiner insns.
9253 (andqi3, iorqi3): Provide "l" (NO_LD_REGS) alternative if
9254 just 1 bit is affected.
9255 * config/avr/avr.c (avr_out_bitop) <QImode>: Don't access xop[3].
9256 (avr_out_compare) [EQ,NE]: Tweak comparing d-regs against -1.
9258 2016-07-15 Cesar Philippidis <cesar@codesourcery.com>
9260 * omp-low.c (lower_omp_target): Mark data clauses with
9261 GOMP_MAP_FORCE_{PRESENT,TO,FROM,TOFROM} as potentially having
9262 zero-length subarrays.
9264 2016-07-15 Richard Biener <rguenther@suse.de>
9266 PR tree-optimization/71881
9267 * tree-loop-distribution.c (destroy_loop): Remove blocks in
9268 reverse DOM order to make debug temp generation happy.
9270 2016-07-15 Richard Biener <rguenther@suse.de>
9272 PR tree-optimization/71887
9273 * tree-ssa-phiopt.c (absorbing_element_p): Add rhs arg and
9274 verify it is not zero for division / modulo handling.
9275 (value_replacement): Adjust.
9277 2016-07-15 Virendra Pathak <virendra.pathak@broadcom.com>
9278 Julian Brown <julian@codesourcery.com>
9280 * config/aarch64/aarch64-cores.def: Update vulcan COSTS.
9281 * config/aarch64/aarch64-cost-tables.h
9282 (vulcan_extra_costs): New variable.
9283 * config/aarch64/aarch64.c
9284 (vulcan_addrcost_table): Likewise.
9285 (vulcan_regmove_cost): Likewise.
9286 (vulcan_vector_cost): Likewise.
9287 (vulcan_branch_cost): Likewise.
9288 (vulcan_tunings): Likewise.
9290 2016-07-15 Alexander Monakov <amonakov@ispras.ru>
9292 * cgraphunit.c (cgraph_order_sort_kind): New entry ORDER_VAR_UNDEF.
9293 (output_in_order): Loop over undefined variables too. Output them
9294 via assemble_undefined_decl. Skip variables that correspond to hard
9295 registers or have value-exprs.
9296 * varpool.c (symbol_table::output_variables): Handle undefined
9297 variables together with defined ones.
9299 2016-07-15 Richard Biener <rguenther@suse.de>
9301 * tree-ssa-pre.c (get_representative_for): Make sure to return
9302 the value number of SSA names.
9303 (phi_translate_1): get_representative_for cannot return NULL.
9304 (do_pre_regular_insertion): Remove redundant call to
9305 fully_constant_expression.
9306 (do_pre_partial_partial_insertion): Likewise.
9308 2016-07-15 Bin Cheng <bin.cheng@arm.com>
9310 * tree-scalar-evolution.c (simple_iv_with_niters): New funcion.
9311 (derive_simple_iv_with_niters): New function.
9312 (simple_iv): Rewrite using simple_iv_with_niters.
9313 * tree-scalar-evolution.h (simple_iv_with_niters): New decl.
9314 * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions): New
9316 (number_of_iterations_exit): Rewrite using above function.
9317 * tree-ssa-loop-niter.h (number_of_iterations_exit_assumptions): New
9320 2016-07-15 Richard Biener <rguenther@suse.de>
9322 * config/i386/i386.c (ix86_builtin_vectorization_cost): Adjust
9325 2016-07-14 Jakub Jelinek <jakub@redhat.com>
9327 PR tree-optimization/71872
9328 * tree-data-ref.c (get_references_in_stmt): Ignore references
9329 with is_gimple_constant get_base_address.
9331 2016-07-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
9333 * config/arm/arm.h (TARGET_HAVE_LDACQ): Enable for ARMv8-M Mainline.
9334 (TARGET_HAVE_LDACQD): New macro.
9335 * config/arm/sync.md (atomic_loaddi): Use TARGET_HAVE_LDACQD rather
9336 than TARGET_HAVE_LDACQ.
9337 (arm_load_acquire_exclusivedi): Likewise.
9338 (arm_store_release_exclusivedi): Likewise.
9340 2016-07-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
9342 PR rtl-optimization/71878
9343 * lra-constraints.c (match_reload): Pass information about other
9344 output operands. Create new unique register value if matching input
9345 operand shares same register value as output operand being considered.
9346 (curr_insn_transform): Record output operands already processed.
9348 2016-07-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9351 PR tree-optimization/70923
9352 * tree-vect-patterns.c: Include mult-synthesis.h.
9353 (target_supports_mult_synth_alg): New function.
9354 (synth_lshift_by_additions): Likewise.
9355 (apply_binop_and_append_stmt): Likewise.
9356 (vect_synth_mult_by_constant): Likewise.
9357 (target_has_vecop_for_code): Likewise.
9358 (vect_recog_mult_pattern): Use above functions to synthesize vector
9359 multiplication by integer constants.
9361 2016-07-14 Alan Modra <amodra@gmail.com>
9363 * gcc/config/rs6000/altivec.md (altivec_mov<mode>): Disparage
9364 gpr alternatives. Correct '*' placement on Y,r alternative.
9365 Add '*' on operand 1 of r,r alternative.
9367 2016-07-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9369 * expmed.c (mult_variant, choose_mult_variant): Move declaration to...
9370 * expmed.h: ... Here.
9372 2016-07-14 Jan Hubicka <hubicka@ucw.cz>
9374 * gimple.h (stmt_can_terminate_bb_p): New function.
9375 * tree-cfg.c (need_fake_edge_p): Rename to ...
9376 (stmt_can_terminate_bb_p): ... this; return true if stmt can
9377 throw external; handle const and pure calls.
9378 * tree-ssa-loop-niter.c (loop_only_exit_p): Use it.
9380 2016-07-14 Richard Biener <rguenther@suse.de>
9382 PR tree-optimization/71866
9383 * tree-ssa-pre.c (get_constant_for_value_id): Remove.
9384 (do_hoist_insertion): Avoid endless recursion when we
9385 didn't insert anything because we managed to simplify
9386 things down to a constant or SSA name.
9387 (fully_constant_expression): Re-write in terms of ...
9388 * tree-ssa-sccvn.h (vn_nary_simplify): ... this. Declare.
9389 * tree-ssa-sccvn.c (vn_nary_simplify): New wrapper around
9390 vn_nary_build_or_lookup_1.
9391 (vn_nary_build_or_lookup_1): Added flag and renamed from ...
9392 (vn_nary_build_or_lookup): ... this which now wraps it.
9394 2016-07-14 Alan Modra <amodra@gmail.com>
9397 * config/rs6000/rs6000.c (rs6000_option_override_internal): Deal
9398 with p9_vector override before power9-dform override.
9400 2016-07-13 Andi Kleen <ak@linux.intel.com>
9402 * value-prof.c (gimple_value_profile_transformations): Don't run
9403 when auto_profile is on.
9405 2016-07-13 Andi Kleen <ak@linux.intel.com>
9407 * auto-profile.c (update_inlined_ind_target,
9408 afdo_indirect_call): Print information to dump file.
9410 2016-07-13 Andrew Burgess <andrew.burgess@embecosm.com>
9412 * genrecog.c (special_predicate_operand_p): New function.
9413 (predicate_name): Move function.
9414 (validate_pattern): Don't warn about missing mode for all
9415 define_special_predicate predicates.
9417 2016-07-13 Bin Cheng <bin.cheng@arm.com>
9419 * tree-vect-data-refs.c (vect_no_alias_p): New function.
9420 (vect_prune_runtime_alias_test_list): Call vect_no_alias_p to
9421 resolve alias checks which are known at compilation time.
9422 Truncate vector LOOP_VINFO_MAY_ALIAS_DDRS(loop_vinfo) if all
9423 alias checks are resolved. Move dump info for too many runtime
9424 alias checks to here...
9425 * tree-vect-loop.c (vect_analyze_loop_2): ...From here.
9427 2016-07-13 Richard Biener <rguenther@suse.de>
9429 PR tree-optimization/24574
9430 * tree-ssa-phiopt.c (absorbing_element_p): Pass in argument
9431 position and add shift, rotate, divison and modulo support
9433 (value_replacement): Pass in argument position to absorbing_element_p.
9435 2016-07-13 Ilya Enkovich <ilya.enkovich@intel.com>
9438 * ipa-inline-transform.c (inline_call): Support
9439 instrumented thunks.
9441 2016-07-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
9443 * config/arm/arm.h (TARGET_HAVE_CBZ): Define.
9444 (TARGET_IDIV): Set for all Thumb targets provided they have hardware
9446 * config/arm/arm.md (divsi3): New unpredicable alternative for ARMv8-M
9447 Baseline. Make initial alternative TARGET_32BIT only.
9448 (udivsi3): Likewise.
9449 * config/arm/thumb1.md (thumb1_cbz): New define_insn.
9450 * doc/sourcebuild.texi (arm_thumb1_cbz_ok): Document new effective
9453 2016-07-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
9455 * config/arm/arm.h (TARGET_HAVE_MOVT): Include ARMv8-M as having MOVT.
9456 * config/arm/arm.c (arm_arch_name): (const_ok_for_op): Check MOVT/MOVW
9457 availability with TARGET_HAVE_MOVT.
9458 (thumb_legitimate_constant_p): Strip the high part of a label_ref.
9459 (thumb1_rtx_costs): Also return 0 if setting a half word constant and
9460 MOVW is available and replace (unsigned HOST_WIDE_INT) INTVAL by
9462 (thumb1_size_rtx_costs): Make set of half word constant also cost 1
9463 extra instruction if MOVW is available. Use a cost variable
9464 incremented by COSTS_N_INSNS (1) when the condition match rather than
9465 returning an arithmetic expression based on COSTS_N_INSNS. Make
9466 constant with bottom half word zero cost 2 instruction if MOVW is
9468 * config/arm/arm.md (define_attr "arch"): Add v8mb.
9469 (define_attr "arch_enabled"): Set to yes if arch value is v8mb and
9470 target is ARMv8-M Baseline.
9471 (arm_movt): New unpredicable alternative for ARMv8-M Baseline.
9472 (arm_movtas_ze): Likewise.
9473 * config/arm/thumb1.md (thumb1_movdi_insn): Add ARMv8-M Baseline only
9474 alternative for constants satisfying j constraint.
9475 (thumb1_movsi_insn): Likewise.
9476 (movsi splitter for K alternative): Tighten condition to not trigger
9477 if movt is available and j constraint is satisfied.
9478 (Pe immediate splitter): Likewise.
9479 (thumb1_movhi_insn): Add ARMv8-M Baseline only alternative for
9480 constant fitting in an halfword to use MOVW.
9481 * doc/sourcebuild.texi (arm_thumb1_movt_ok): Document new ARM
9484 2016-07-13 Richard Biener <rguenther@suse.de>
9487 * gimplify.c (gimplify_modify_expr): Gimplify the RHS before
9488 gimplifying the LHS. Make sure to gimplify a returning twice
9489 call LHS without using SSA names.
9491 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9493 * tree-data-ref.c (find_data_references_in_stmt): Remove
9494 unnecessary call to vec::release.
9495 (graphite_find_data_references_in_stmt): Likewise.
9496 * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p): Likewise.
9497 * tree-vect-stmts.c (vectorizable_condition): Likewise.
9499 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9501 * cfgexpand.c (expand_used_vars): Make the type of a local
9503 * genmatch.c (lower_for): Likewise.
9504 * haifa-sched.c (haifa_sched_init): Likewise.
9505 (add_to_speculative_block): Likewise.
9506 (create_check_block_twin): Likewise.
9507 * predict.c (handle_missing_profiles): Likewise.
9508 * tree-data-ref.c (loop_nest_has_data_refs): Likewise.
9509 * tree-diagnostic.c (maybe_unwind_expanded_macro_loc): Likewise.
9510 * tree-ssa-loop-niter.c (discover_iteration_bound_by_body_walk):
9512 (maybe_lower_iteration_bound): Likewise.
9513 * tree-ssa-sccvn.c (DFS): Likewise.
9514 * tree-stdarg.c (reachable_at_most_once): Likewise.
9515 * tree-vect-stmts.c (vectorizable_conversion): Likewise.
9516 (vectorizable_store): Likewise.
9518 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9520 * tree-ssa-sccvn.c (sccvn_dom_walker::~sccvn_dom_walker): remove.
9521 (sccvn_dom_walker): make cond_stack an auto_vec.
9523 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9525 * ree.c (struct ext_state): Make type of members auto_vec.
9526 (find_and_remove_re): Adjust.
9528 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9530 * cfgexpand.c (struct stack_vars_data): Make type of fields
9532 (expand_used_vars): Adjust.
9534 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9536 * ipa.c (record_cdtor_fn): Adjust.
9537 (build_cdtor_fns): Likewise.
9538 (ipa_cdtor_merge): Make static_ctors and static_dtors local
9541 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9543 * genextract.c (struct accum_extract): Add constructor and make
9547 2016-07-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9549 * tree.c (struct free_lang_data_d): Add constructor and change
9550 types of members to ones that automatically manage resources.
9551 (fld_worklist_push): Adjust.
9552 (find_decls_types): Likewise.
9553 (find_decls_types_in_eh_region): Likewise.
9554 (free_lang_data_in_cgraph): Stop manually creating and
9555 destroying members of free_lang_data_d.
9557 2016-07-13 Uros Bizjak <ubizjak@gmail.com>
9559 PR rtl-optimization/68961
9560 * config/i386/sse.md (movsd/movhpd to movupd peephole2s): Add new
9561 peephole variant. Use sse_reg_operand predicates.
9563 2016-07-12 Uros Bizjak <ubizjak@gmail.com>
9565 * config/i386/predicates.md (x86_64_immediate_operand)
9566 <case CONST_INT>: Remove unneeded truncation to DImode.
9567 <case CONST>: Ditto.
9568 (x86_64_zext_immediate_operand) <case CONST>: Ditto.
9570 2016-07-12 Michael Meissner <meissner@linux.vnet.ibm.com>
9573 * config/rs6000/altivec.md (altivec_vperm_<mode>_internal):
9574 The xxperm and xxpermr instructions require that the 2nd input
9575 operand overlap with the output operand, and not the 1st.
9576 (altivec_vperm_v8hiv16qi): Likewise.
9577 (altivec_vperm_<mode>_uns_internal): Likewise.
9578 (altivec_vpermr_<mode>_internal): Likewise.
9579 (vperm_v8hiv4si): Likewise.
9580 (vperm_v16qiv8hi): Likewise.
9582 2016-07-12 Nathan Sidwell <nathan@acm.org>
9584 * config/arm/arm.c (arm_option_override): Set MASK_SINGLE_PIC_BASE
9585 when -mno-pic-data-is-text-relative is in effect, by default.
9586 * doc/invoke.texi (mpic-data-is-text-relative): Document new
9587 behavior and clarify.
9589 2016-07-12 Martin Liska <mliska@suse.cz>
9591 * params.def: Add avg-loop niter.
9592 * tree-ssa-loop-ivopts.c (avg_loop_niter): Use the param.
9593 * cfgloopanal.c (expected_loop_iterations_unbounded): Likewise.
9594 * doc/invoke.texi: Document the new parameter.
9596 2016-07-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9599 * expr.c (store_constructor): Mask sign-extended bits when widening
9600 sub-word constructor element at the start of a word.
9602 2016-07-12 Martin Liska <mliska@suse.cz>
9604 * Makefile.in: Append rule for params-options.h.
9605 * params-options.h: New file.
9607 2016-07-12 Martin Liska <mliska@suse.cz>
9609 * ira-build.c (mark_loops_for_removal): Properly iterate
9612 2016-07-12 Steven Bosscher <steven@gcc.gnu.org>
9613 Richard Biener <rguenther@suse.de>
9615 PR tree-optimization/23286
9616 PR tree-optimization/70159
9617 * doc/invoke.texi: Document -fcode-hoisting.
9618 * common.opt (fcode-hoisting): New flag.
9619 * opts.c (default_options_table): Enable -fcode-hoisting at -O2+.
9620 * tree-ssa-pre.c (pre_stats): Add hoist_insert.
9621 (do_regular_insertion): Rename to ...
9622 (do_pre_regular_insertion): ... this and amend general comments
9623 on insertion strathegy.
9624 (do_partial_partial_insertion): Rename to ...
9625 (do_pre_partial_partial_insertion): ... this.
9626 (do_hoist_insertion): New function.
9627 (insert_aux): Take flags on whether to do PRE and/or hoist insertion
9628 and call do_hoist_insertion properly.
9630 (pass_pre::gate): Enable also if -fcode-hoisting is enabled.
9631 (pass_pre::execute): Register hoist_insert stats.
9633 2016-07-12 Jakub Jelinek <jakub@redhat.com>
9636 * gimple-fold.c (optimize_atomic_compare_exchange_p): Return false
9637 for SCALAR_FLOAT_TYPE_P type of expected var, or if TYPE_PRECISION
9638 is different from mode's bitsize. Small cleanup.
9640 2016-07-12 Richard Biener <rguenther@suse.de>
9642 PR rtl-optimization/68961
9643 * fwprop.c (propagate_rtx): Allow SUBREGs of VEC_CONCAT and CONCAT
9644 to simplify to a non-constant.
9646 2016-07-11 Jakub Jelinek <jakub@redhat.com>
9649 * omp-low.c (expand_omp_target): Gimplify device.
9651 PR tree-optimization/71823
9652 * tree-vect-stmts.c (vectorizable_operation): Use vect_get_vec_defs
9653 to get vec_oprnds2 from op2.
9655 2016-07-11 Uros Bizjak <ubizjak@gmail.com>
9657 * config/i386/predicates.md (x86_64_immediate_operand) <case CONST>:
9658 Hoist common subexpressions.
9659 (x86_64_zext_immediate_operand) <case CONST>: Ditto.
9661 2016-07-11 Pat Haugen <pthaugen@us.ibm.com>
9664 * config/rs6000/rs6000.md (stfiwx): Change constraint to 'wu' to
9665 prevent generation of 'stxsiwx' on pre Power8 hardware.
9667 2016-07-11 David Malcolm <dmalcolm@redhat.com>
9669 * input.c: Include cpplib.h.
9670 (selftest::temp_source_file): New class.
9671 (selftest::temp_source_file::temp_source_file): New ctor.
9672 (selftest::temp_source_file::~temp_source_file): New dtor.
9673 (selftest::should_have_column_data_p): New function.
9674 (selftest::test_should_have_column_data_p): New function.
9675 (selftest::temp_line_table): New class.
9676 (selftest::temp_line_table::temp_line_table): New ctor.
9677 (selftest::temp_line_table::~temp_line_table): New dtor.
9678 (selftest::test_accessing_ordinary_linemaps): Add case_ param; use
9679 it to create a temp_line_table.
9680 (selftest::assert_loceq): Only verify LOCATION_COLUMN for
9681 locations that are known to have column data.
9682 (selftest::line_table_case): New struct.
9683 (selftest::test_reading_source_line): Move tempfile handling
9684 to class temp_source_file.
9685 (ASSERT_TOKEN_AS_TEXT_EQ): New macro.
9686 (selftest::assert_token_loc_eq): New function.
9687 (ASSERT_TOKEN_LOC_EQ): New macro.
9688 (selftest::test_lexer): New function.
9689 (selftest::boundary_locations): New array.
9690 (selftest::input_c_tests): Call test_should_have_column_data_p.
9691 Loop over a test matrix of interesting values of location and
9692 default_range_bits, calling test_lexer on each case in the matrix.
9693 Move call to test_accessing_ordinary_linemaps into the matrix.
9694 * selftest.h (ASSERT_EQ): Reimplement in terms of...
9695 (ASSERT_EQ_AT): New macro.
9697 2016-07-11 H.J. Lu <hongjiu.lu@intel.com>
9700 * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
9701 Don't convert TImode in debug insn.
9703 2016-07-11 Bernd Edlinger <bernd.edlinger@hotmail.de>
9705 Convert TYPE_ALIGN_OK to a TYPE_LANG_FLAG.
9706 * tree-core.h (tree_base::nothrow_flag): Adjust comment.
9707 (tree_type_common::lang_flag_7): New.
9708 (tree_type_common::spare): Reduce size.
9709 * tree.h (TYPE_ALIGN_OK): Remove.
9710 (TYPE_LANG_FLAG_7): New.
9711 (get_inner_reference): Adjust header.
9712 * print-tree.c (print_node): Adjust.
9713 * expr.c (get_inner_reference): Remove parameter keep_aligning.
9714 (get_bit_range, expand_assignment, expand_expr_addr_expr_1): Adjust
9715 calls to get_inner_reference.
9716 (expand_expr_real_1): Adjust call to get_inner_reference. Remove
9717 handling of TYPE_ALIGN_OK.
9718 * builtins.c (get_object_alignment_2): Adjust call to
9719 get_inner_reference. Remove handling of VIEW_CONVERT_EXPR.
9720 * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove handling of
9722 * asan.c (instrument_derefs): Adjust calls to get_inner_reference.
9723 * cfgexpand.c (expand_debug_expr): Likewise.
9724 * dbxout.c (dbxout_expand_expr): Likewise.
9725 * dwarf2out.c (loc_list_for_address_of_addr_expr_of_indirect_ref,
9726 loc_list_from_tree, fortran_common): Likewise.
9727 * fold-const.c (optimize_bit_field_compare,
9728 decode_field_reference, fold_unary_loc, fold_comparison,
9729 split_address_to_core_and_offset): Likewise.
9730 * gimple-laddress.c (execute): Likewise.
9731 * gimple-ssa-strength-reduction.c (slsr_process_ref): Likewise.
9732 * gimplify.c (gimplify_scan_omp_clauses): Likewise.
9733 * hsa-gen.c (gen_hsa_addr): Likewise.
9734 * simplifx-rtx.c (delegitimize_mem_from_attrs): Likewise.
9735 * tsan.c (instrument_expr): Likewise.
9736 * ubsan.c (instrument_bool_enum_load, instrument_object_size): Likewise.
9737 * tree.c (verify_type_variant): Remove handling of TYPE_ALIGN_OK.
9738 * tree-affine.c (tree_to_aff_combination,
9739 get_inner_reference_aff): Adjust calls to get_inner_reference.
9740 * tree-data-ref.c (split_constant_offset_1,
9741 dr_analyze_innermost): Likewise.
9742 * tree-scalar-evolution.c (interpret_rhs_expr): Likewise.
9743 * tree-sra.c (ipa_sra_check_caller): Likewise.
9744 * tree-ssa-loop-ivopts.c (split_address_cost): Likewise.
9745 * tree-ssa-math-opts.c (find_bswap_or_nop_load,
9746 bswap_replace): Likewise.
9747 * tree-vect-data-refs.c (vect_check_gather,
9748 vect_analyze_data_refs): Likewise.
9749 * config/mips/mips.c (r10k_safe_mem_expr_p): Likewise.
9750 * config/pa/pa.c (pa_emit_move_sequence): Remove handling of
9753 2016-07-11 David Malcolm <dmalcolm@redhat.com>
9755 * Makefile.in (selftest-valgrind): New phony target.
9756 * function-tests.c (selftest::build_cfg): Delete pass instances
9757 created by the test.
9758 (selftest::convert_to_ssa): Likewise.
9759 (selftest::test_expansion_to_rtl): Likewise.
9760 * tree-cfg.c (selftest::test_linear_chain): Release dominator
9762 (selftest::test_diamond): Likewise.
9764 2016-07-11 Richard Biener <rguenther@suse.de>
9766 PR tree-optimization/71816
9767 * tree-ssa-pre.c (compute_avail): Adjust alignment of ref rather
9768 than replacing all of its operands.
9770 2016-07-11 Alan Modra <amodra@gmail.com>
9772 * config/rs6000/rs6000.md (UNSPEC_DOLOOP): New unspec.
9773 (ctr<mode>): Add unspec.
9774 (ctr<mode>_internal*): Likewise.
9776 2016-07-08 James Bowman <james.bowman@ftdichip.com>
9778 * config/ft32/ft32.c (ft32_elf_encode_section_info): New function.
9779 * config/ft32/ft32.h (ASM_OUTPUT_SYMBOL_REF): New function.
9781 2016-07-08 Vladimir Makarov <vmakarov@redhat.com>
9783 PR rtl-optimization/71621
9784 * lra-constraints.c (process_alt_operands): Check combination of
9787 2016-07-08 Jason Merrill <jason@redhat.com>
9788 Richard Biener <rguenther@suse.de>
9790 P0145: Refining Expression Order for C++.
9791 * gimplify.c (initial_rhs_predicate_for): New.
9792 (gimplfy_modify_expr): Gimplify RHS before LHS.
9794 2016-07-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9797 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
9798 Allow standard error handling to take over when a wrong number
9799 of arguments is presented to __builtin_vec_ld () or
9800 __builtin_vec_st ().
9802 2016-07-08 Jiong Wang <jiong.wang@arm.com>
9804 * config/aarch64/aarch64-simd-builtins.def (smax): Remove float
9809 * config/aarch64/arm_neon.h (vmaxnm_f32): Use
9810 __builtin_aarch64_fmaxv2sf.
9811 (vmaxnmq_f32): Likewise.
9812 (vmaxnmq_f64): Likewise.
9813 (vminnm_f32): Likewise.
9814 (vminnmq_f32): Likewise.
9815 (vminnmq_f64): Likewise.
9817 2016-07-08 Michael Meissner <meissner@linux.vnet.ibm.com>
9820 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Do not
9821 enable -mfloat128-hardware by default.
9822 (ISA_3_0_MASKS_IEEE): New macro to give all of the VSX options
9823 that IEEE 128-bit hardware support needs.
9824 * config/rs6000/rs6000.c (rs6000_option_override_internal): If
9825 -mcpu=power9 -mfloat128, enable -mfloat128-hardware by default.
9826 Use ISA_3_0_MASKS_IEEE as the set of options that IEEE 128-bit
9827 floating point requires.
9828 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
9829 -mfloat128 and -mfloat128-hardware changes.
9831 2016-07-08 Alan Hayward <alan.hayward@arm.com>
9833 PR tree-optimization/71667
9834 * tree-vect-loop.c (vectorizable_live_operation): ignore DEBUG stmts
9836 2016-07-08 Martin Liska <mliska@suse.cz>
9839 * fold-const.c (fold_convertible_p): As COMPLEX_TYPE
9840 folding produces SAVE_EXPRs, thus return false for the type.
9842 2016-07-07 Martin Liska <mliska@suse.cz>
9844 * file-find.c (remove_prefix): New function.
9845 * file-find.h (remove_prefix): Declare the function.
9846 * gcc-ar.c (main): Skip a folder of the wrapper if
9847 a wrapped binary would point to the same file.
9849 2016-07-07 Jan Hubicka <jh@suse.cz>
9851 * tree-scalar-evolution.c (iv_can_overflow_p): export.
9852 * tree-scalar-evolution.h (iv_can_overflow_p): Declare.
9853 * tree-ssa-loop-ivopts.c (alloc_iv): Use it.
9855 2016-07-07 Ilya Enkovich <ilya.enkovich@intel.com>
9858 * ipa-inline-analysis.c (compute_inline_parameters): Set
9859 local.can_change_signature to false for intrumentation
9862 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
9864 * config/arm/arm.h (TARGET_USE_MOVT): Check MOVT/MOVW availability
9865 with TARGET_HAVE_MOVT.
9866 (TARGET_HAVE_MOVT): Define.
9867 * config/arm/arm.c (const_ok_for_op): Check MOVT/MOVW
9868 availability with TARGET_HAVE_MOVT.
9869 * config/arm/arm.md (arm_movt): Use TARGET_HAVE_MOVT to check MOVT
9871 (addsi splitter): Use TARGET_THUMB && TARGET_HAVE_MOVT rather than
9873 (symbol_refs movsi splitter): Remove TARGET_32BIT check.
9874 (arm_movtas_ze): Use TARGET_HAVE_MOVT to check MOVT availability.
9875 * config/arm/constraints.md (define_constraint "j"): Use
9876 TARGET_HAVE_MOVT to check MOVT availability.
9878 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
9880 * config/arm/arm-protos.h: Reindent FL_FOR_* macro definitions.
9882 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
9884 * config/arm/arm-arches.def (armv8-m.base): Define new architecture.
9885 (armv8-m.main): Likewise.
9886 (armv8-m.main+dsp): Likewise.
9887 * config/arm/arm-protos.h (FL_FOR_ARCH8M_BASE): Define.
9888 (FL_FOR_ARCH8M_MAIN): Likewise.
9889 * config/arm/arm-tables.opt: Regenerate.
9890 * config/arm/bpabi.h: Add armv8-m.base, armv8-m.main and
9891 armv8-m.main+dsp to BE8_LINK_SPEC.
9892 * config/arm/arm.h (TARGET_HAVE_LDACQ): Exclude ARMv8-M.
9893 (enum base_architecture): Add BASE_ARCH_8M_BASE and BASE_ARCH_8M_MAIN.
9894 * config/arm/arm.c (arm_arch_name): Increase size to work with ARMv8-M
9895 Baseline and Mainline.
9896 (arm_option_override_internal): Also disable arm_restrict_it when
9897 !arm_arch_notm. Update comment for -munaligned-access to also cover
9899 (arm_file_start): Increase buffer size for printing architecture name.
9900 * doc/invoke.texi: Document architectures armv8-m.base, armv8-m.main
9901 and armv8-m.main+dsp.
9902 (mno-unaligned-access): Clarify that this is disabled by default for
9903 ARMv8-M Baseline architectures as well.
9905 2016-07-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
9907 * config/arm/elf.h: Use __ARM_ARCH_ISA_THUMB and __ARM_ARCH_ISA_ARM to
9908 decide whether to prevent some libgcc routines being included for some
9909 multilibs rather than __ARM_ARCH_6M__ and add comment to indicate the
9910 link between this condition and the one in
9911 libgcc/config/arm/lib1func.S.
9913 2016-07-07 Richard Biener <rguenther@suse.de>
9915 * tree-ssa-pre.c: Include alias.h.
9916 (compute_avail): If we have multiple VN_REFERENCEs with the
9917 same hashtable entry adjust that to make it a valid replacement
9918 for all of them with respect to alignment and aliasing
9919 when doing insertion.
9920 * tree-ssa-sccvn.h (vn_reference_operands_for_lookup): Declare.
9921 * tree-ssa-sccvn.c (vn_reference_operands_for_lookup): New function.
9923 2016-07-06 Segher Boessenkool <segher@kernel.crashing.org>
9927 * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
9928 *ctr<mode>_internal5, *ctr<mode>_internal6): Add *wi to the output
9931 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9933 * var-tracking.c (struct adjust_mem_data): Make side_effects a vector.
9934 (adjust_mems): Adjust.
9935 (adjust_insn): Likewise.
9936 (prepare_call_arguments): Likewise.
9938 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9940 * gcse.c (struct ls_expr): Make stores field a vector.
9941 (ldst_entry): Adjust.
9942 (free_ldst_entry): Likewise.
9943 (print_ldst_list): Likewise.
9944 (compute_ld_motion_mems): Likewise.
9945 (update_ld_motion_stores): Likewise.
9947 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9949 * gcse.c (struct ls_expr): Remove loads field.
9950 (ldst_entry): Adjust.
9951 (free_ldst_entry): Likewise.
9952 (print_ldst_list): Likewise.
9953 (compute_ld_motion_mems): Likewise.
9955 2016-07-06 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
9957 * store-motion.c (struct st_expr): Make antic_stores a vector.
9958 (st_expr_entry): Adjust.
9959 (free_st_expr_entry): Likewise.
9960 (print_store_motion_mems): Likewise.
9961 (find_moveable_store): Likewise.
9962 (compute_store_table): Likewise.
9963 (remove_reachable_equiv_notes): Likewise.
9964 (replace_store_insn): Likewise.
9965 (build_store_vectors): Likewise.
9967 2016-07-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9969 * config/arm/driver-arm.c (arm_cpu_table): Add entries for cortex-a32,
9970 cortex-a35, cortex-a53, cortex-a57, cortex-a72, cortex-a73.
9972 2016-07-06 Yuri Rumyantsev <ysrumyan@gmail.com>
9974 PR tree-optimization/71518
9975 * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Adjust
9976 misalign also for outer loops with negative step.
9978 2016-07-06 Wilco Dijkstra <wdijkstr@arm.com>
9980 * config/arm/cortex-a53.md: Use final_presence_set for in-order.
9981 (cortex_a53_shift): Add mov_shift.
9982 (cortex_a53_shift_reg): Add new reservation for register shifts.
9983 (cortex_a53_alu): Remove bfm.
9984 (cortex_a53_alu_shift): Add bfm, remove mov_shift.
9985 (cortex_a53_alu_extr): Add new reservation for EXTR.
9986 (bypasses): Improve bypass modelling.
9988 2016-07-06 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
9991 * config/avr/avr.c (avr_asm_select_section): Strip off
9992 SECTION_DECLARED from flags when calling get_section.
9994 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
9996 * tree-vectorizer.h (vect_memory_access_type): Add
9997 VMAT_INVARIANT, VMAT_CONTIGUOUS_DOWN and VMAT_CONTIGUOUS_REVERSED.
9998 * tree-vect-stmts.c (compare_step_with_zero): New function.
9999 (perm_mask_for_reverse): Move further up file.
10000 (get_group_load_store_type): Stick to VMAT_ELEMENTWISE if the
10002 (get_negative_load_store_type): New function.
10003 (get_load_store_type): Call it. Add an ncopies argument.
10004 (vectorizable_mask_load_store): Update call accordingly and
10005 remove tests for negative steps.
10006 (vectorizable_store, vectorizable_load): Likewise. Handle new
10007 memory_access_types.
10009 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
10011 * tree-vectorizer.h (vect_memory_access_type): New enum.
10012 (_stmt_vec_info): Add a memory_access_type field.
10013 (STMT_VINFO_MEMORY_ACCESS_TYPE): New macro.
10014 (vect_model_store_cost): Take an access type instead of a boolean.
10015 (vect_model_load_cost): Likewise.
10016 * tree-vect-slp.c (vect_analyze_slp_cost_1): Update calls to
10017 vect_model_store_cost and vect_model_load_cost.
10018 * tree-vect-stmts.c (vec_load_store_type): New enum.
10019 (vect_model_store_cost): Take an access type instead of a
10020 store_lanes_p boolean. Simplify tests.
10021 (vect_model_load_cost): Likewise, but for load_lanes_p.
10022 (get_group_load_store_type, get_load_store_type): New functions.
10023 (vectorizable_store): Use get_load_store_type. Record the access
10024 type in STMT_VINFO_MEMORY_ACCESS_TYPE.
10025 (vectorizable_load): Likewise.
10026 (vectorizable_mask_load_store): Likewise. Replace is_store
10027 variable with vls_type.
10029 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
10031 * tree-vectorizer.h (vect_grouped_load_supported): Add a
10032 single_element_p parameter.
10033 * tree-vect-data-refs.c (vect_grouped_load_supported): Likewise.
10034 Check the PR65518 case here rather than in vectorizable_load.
10035 * tree-vect-loop.c (vect_analyze_loop_2): Update call accordignly.
10036 * tree-vect-stmts.c (vectorizable_load): Likewise.
10038 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
10040 * tree-vectorizer.h (gather_scatter_info): New structure.
10041 (vect_check_gather_scatter): Return a bool rather than a decl.
10042 Replace return-by-pointer arguments with a single
10043 gather_scatter_info *.
10044 * tree-vect-data-refs.c (vect_check_gather_scatter): Likewise.
10045 (vect_analyze_data_refs): Update call accordingly.
10046 * tree-vect-stmts.c (vect_mark_stmts_to_be_vectorized): Likewise.
10047 (vectorizable_mask_load_store): Likewise. Also record the
10048 offset dt and vectype in the gather_scatter_info.
10049 (vectorizable_store): Likewise.
10050 (vectorizable_load): Likewise.
10052 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
10054 * tree-vect-stmts.c (vect_model_store_cost): For non-SLP
10055 strided groups, use the cost of N scalar accesses instead
10056 of ncopies vector accesses.
10057 (vect_model_load_cost): Likewise.
10059 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
10061 * tree-vect-stmts.c (vect_cost_group_size): Delete.
10062 (vect_model_store_cost): Avoid calling it. Use first_stmt_p
10063 variable to indicate when once-per-group costs are being used.
10064 (vect_model_load_cost): Likewise. Fix comment and misindented code.
10066 2016-07-06 Richard Sandiford <richard.sandiford@arm.com>
10068 * tree-vect-stmts.c (vectorizable_load): Remove unnecessary
10069 peeling-for-gaps condition.
10071 2016-07-06 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
10073 * config/s390/s390.c (s390_expand_vec_init): Force initializer
10074 element to register if it doesn't match general_operand.
10076 2016-07-05 Michael Meissner <meissner@linux.vnet.ibm.com>
10077 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
10079 * config/rs6000/rs6000-protos.h (rs6000_split_signbit): New
10081 * config/rs6000/rs6000.c (rs6000_split_signbit): New function.
10082 * config/rs6000/rs6000.md (UNSPEC_SIGNBIT): New constant.
10083 (SIGNBIT): New mode iterator.
10084 (Fsignbit): New mode attribute.
10085 (signbit<mode>2): Change operand1 to match FLOAT128 instead of
10086 IBM128; dispatch to gen_signbit{kf,tf}2_dm for __float128
10087 when direct moves are available.
10088 (signbit<mode>2_dm): New define_insn_and_split).
10089 (signbit<mode>2_dm2): New define_insn.
10091 2016-07-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
10093 PR rtl-optimization/71594
10094 * ifcvt.c (noce_convert_multiple_sets): Wrap new_val or old_val
10095 into subregs of appropriate mode before trying to emit a conditional
10098 2016-07-05 Jan Hubicka <jh@suse.cz>
10100 * tree-scalar-evolution.c (iv_can_overflow_p): New function.
10101 (simple_iv): Use it.
10103 2016-07-05 Jan Hubicka <jh@suse.cz>
10105 * tree-ssa-loop-niter.c (nowrap_type_p): Use ANY_INTEGRAL_TYPE_P.
10107 2016-07-05 Jiong Wang <jiong.wang@arm.com>
10109 * lra-constraints.c (process_alt_operands): Don't add spilling cost for
10112 2016-07-05 Jan Hubicka <jh@suse.cz>
10114 * tree-scalar-evoluiton.c (simple_iv): Use nowrap_type to check if
10117 2016-07-05 Richard Biener <rguenther@suse.de>
10119 * gimple-ssa-split-paths.c (find_block_to_duplicate_for_splitting_pa):
10120 Handle empty else block.
10121 (is_feasible_trace): Likewise.
10122 (split_paths): Likewise.
10124 2016-07-05 Richard Biener <rguenther@suse.de>
10126 * tree-loop-distribution.c (distribute_loop): Fix issue with
10127 the cost model loop.
10129 2016-07-05 Christophe Lyon <christophe.lyon@linaro.org>
10131 * config/arm/neon-testgen.ml: Delete.
10132 * config/arm/neon.ml: Delete.
10134 2016-07-04 Jakub Jelinek <jakub@redhat.com>
10137 * tree.c (attribute_value_equal): Use get_attribute_name instead of
10138 directly using TREE_PURPOSE.
10140 2016-07-04 Jiong Wang <jiong.wang@arm.com>
10142 * config/aarch64/aarch64.h: Rename "ARMv8.1" to "ARMv8.1-A".
10143 * config/aarch64/aarch64_neon.h: Likewise.
10144 * config/aarch64/arm_neon.h: Likewise.
10145 * config/aarch64/atomics.md: Likewise.
10146 * config/aarch64/aarch64-simd-builtins.def: Likewise.
10147 * doc/invoke.texi: Likewise.
10149 2016-07-04 Dominik Vogt <vogt@linux.vnet.ibm.com>
10151 * config/s390/s390.md: Add "z13" cpu_facility.
10152 ("*mov<mode>cc"): Add support for z13 instructions lochi and locghi.
10153 * config/s390/predicates.md ("loc_operand"): New predicate for "load on
10154 condition" type instructions.
10156 2016-07-04 Dominik Vogt <vogt@linux.vnet.ibm.com>
10157 Jeff Law <law@redhat.com>
10159 * explow.c (allocate_dynamic_stack_space): Simplify knowing that
10160 MUST_ALIGN was always true and extra_align ist always BITS_PER_UNIT.
10162 2016-07-04 Yuri Rumyantsev <ysrumyan@gmail.com>
10164 * config/i386/i386.c (ix86_expand_vec_perm): Add handle one-operand
10165 permutation for TARGET_AVX512F.
10166 (ix86_expand_vec_one_operand_perm_avx512): New function.
10167 (expand_vec_perm_1): Invoke introduced function.
10168 * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
10169 it may be not valid after vectorization.
10171 2016-07-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
10174 * config/aarch64/aarch64.c (aarch64_classify_symbol): Fix
10175 typo in comment. Only force to memory if it is a weak
10176 external reference.
10178 2016-07-04 Matthew Wahab <matthew.wahab@arm.com>
10179 Jiong Wang <jiong.wang@arm.com>
10181 * config/aarch64/aarch64-arches.def: Add "armv8.2-a".
10182 * config/aarch64/aarch64.h (AARCH64_FL_V8_2): New.
10183 (AARCH64_FL_F16): New.
10184 (AARCH64_FL_FOR_ARCH8_2): New.
10185 (AARCH64_ISA_8_2): New.
10186 (AARCH64_ISA_F16): New.
10187 (TARGET_FP_F16INST): New.
10188 (TARGET_SIMD_F16INST): New.
10189 * config/aarch64/aarch64-option-extensions.def ("fp16"): New entry.
10190 ("fp"): Disabling "fp" also disables "fp16".
10191 * config/aarch64/aarch64-c.c (arch64_update_cpp_builtins):
10192 Conditionally define __ARM_FEATURE_FP16_SCALAR_ARITHMETIC
10193 and __ARM_FEATURE_FP16_VECTOR_ARITHMETIC.
10194 * doc/invoke.texi (AArch64 Options): Document "armv8.2-a" and "fp16".
10196 2016-07-04 Jan Beulich <jbeulich@suse.com>
10198 * gcc.c (default_compilers["@c-header"]): Conditionalize "-o".
10200 2016-07-01 Michael Meissner <meissner@linux.vnet.ibm.com>
10203 * config/rs6000/vsx.md (vsx_splat_v4sf_internal): When splitting
10204 the insns, use an insn form that does not adjust the offset on
10205 little endian systems.
10207 2016-07-01 Jan Beulich <jbeulich@suse.com>
10209 * varasm.c (get_variable_section): Validate initializer in
10210 named .bss-like sections.
10212 2016-07-01 Kelvin Nilsen <kelvin@gcc.gnu.org>
10214 * config/rs6000/altivec.md (*altivec_vpermr_<mode>_internal):
10215 Exchange the order of the second and third operands in the vpermr
10216 instruction tmeplate.
10218 2016-07-01 Peter Bergner <bergner@vnet.ibm.com>
10221 * config/rs6000/rs6000.c (rs6000_secondary_reload_simple_move):
10222 Disallow TDmode values.
10224 2016-07-01 Alan Modra <amodra@gmail.com>
10226 PR rtl-optimization/71709
10227 * ira-lives.c (find_call_crossed_cheap_reg): Exit loop on arg reg
10228 being set, not referenced.
10230 2016-07-01 Yuri Rumyantsev <ysrumyan@gmail.com>
10232 PR tree-optimization/70729
10233 * tree-vectorizer.c (adjust_simduid_builtins): Nullify safelen field
10234 of loop since it can be not valid after transformation.
10236 2016-07-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
10238 * config/arm/arm.c (thumb_reload_in_hi): Delete.
10239 * config/arm/arm-protos.h (thumb_reload_in_hi): Delete prototype.
10241 2016-07-01 Eric Botcazou <ebotcazou@adacore.com>
10243 * config/arm/arm.c (arm_function_ok_for_sibcall): Add another check
10246 2016-06-30 Michael Meissner <meissner@linux.vnet.ibm.com>
10249 * config/rs6000/constraints.md (wY constraint): New constraint to
10250 match the requirements for the LXSD and STXSD instructions.
10251 * config/rs6000/predicates.md (offsettable_mem_14bit_operand): New
10252 predicate to match the requirements for the LXSD and STXSD
10254 * config/rs6000/rs6000.md (mov<mode>_hardfloat32, FMOVE64 case):
10255 Use constaint wY for LXSD/STXSD instructions instead of 'o' or 'Y'
10256 to make sure that the bottom 2 bits of offset are 0, the address
10257 form is offsettable, and no updating is done in the address mode.
10258 (mov<mode>_hardfloat64, FMOVE64 case): Likewise.
10259 (movdi_internal32): Likewise
10260 (movdi_internal64): Likewise.
10262 2016-06-30 Jakub Jelinek <jakub@redhat.com>
10264 PR tree-optimization/71707
10265 * tree-ssa-strlen.c (get_stridx_plus_constant): Handle already present
10266 strinfo even for ADDR_EXPR ptr.
10268 2016-06-30 Kelvin Nilsen <kelvin@gcc.gnu.org>
10270 * config/rs6000/altivec.md (darn_32): Change the condition to
10271 TARGET_P9_MISC instead of TARGET_MODULO.
10272 (darn_raw): Replace TARGET_MODULO with TARGET_P9_MISC in the
10273 condition expression.
10274 (darn): Replace TARGET_MODULO with TARGET_P9_MISC in the
10275 condition expression.
10276 * config/rs6000/dfp.md (UNSPEC_DTSTSFI): New unspec constant.
10277 (DFP_TEST): New code iterator.
10278 (dfptstsfi_<code>_mode>): New define_expand.
10279 (*dfp_sgnfcnc_<mode>): New define_insn.
10280 * config/rs6000/rs6000-builtin.def (BU_P9_MISC_0): Move this macro
10281 definition next to BU_P9_MISC_1 definition and change the MASK
10282 value to RS6000_BTM_P9_MISC.
10283 (BU_P9_MISC_1): Change the MASK value to RS6000_BTM_P9_MISC.
10284 (BU_P9_64BIT_MISC_0): Likewise.
10285 (BU_P9_DFP_MISC_0): New macro definition.
10286 (BU_P9_DFP_MISC_1): New macro definition.
10287 (BU_P9_DFP_MISC_2): New macro definition.
10288 (BU_P9_DFP_OVERLOAD_1): New macro definition.
10289 (BU_P9_DFP_OVERLOAD_2): New macro definition.
10290 (BU_P9_DFP_OVERLOAD_3): New macro definition.
10291 (TSTSFI_LT_DD): New BU_P9_DFP_MISC_2.
10292 (TSTSFI_LT_TD): Likewise.
10293 (TSTSFI_EQ_DD): Likewise.
10294 (TSTSFI_EQ_TD): Likewise.
10295 (TSTSFI_GT_DD): Likewise.
10296 (TSTSFI_GT_TD): Likewise.
10297 (TSTSFI_OV_DD): Likewise.
10298 (TSTSFI_OV_TD): Likewise.
10299 (TSTSFI_LT): New BU_P9_DFP_OVERLOAD_2.
10300 (TSTSFI_LT_DD): Likewise.
10301 (TSTSFI_LT_TD): Likewise.
10302 (TSTSFI_EQ): Likewise.
10303 (TSTSFI_EQ_DD): Likewise.
10304 (TSTSFI_EQ_TD): Likewise.
10305 (TSTSFI_GT): Likewise.
10306 (TSTSFI_GT_DD): Likewise.
10307 (TSTSFI_GT_TD): Likewise.
10308 (TSTSFI_OV): Likewise.
10309 (TSTSFI_OV_DD): Likewise.
10310 (TSTSFI_OV_TD): Likewise.
10311 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
10312 overloaded test significance functions.
10313 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
10314 OPTION_MASK_P9_MISC into the representation of this mask.
10315 (POWERPC_MASKS): Add OPTION_MASK_P9_MISC into the representation
10317 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Set the
10318 RS6000_BTM_P9_MISC flag in the return value if TARGET_P9_MISC is
10320 (rs6000_expand_binop_builtin): Enforce that argument 0 of the exp
10321 argument is a 6-bit unsigned literal value if the icode argument
10322 represents a DFP test significance built-in call.
10323 (rs6000_invalid_builtin): Add support for the RS6000_BTM_P9_MISC
10324 flag used independently and in combination with the
10325 RS6000_BTM_64BIT flag.
10326 (rs6000_opt_masks): Add entry for power9-misc command-line option.
10327 (rs6000_builtin_mask_names): Add entry for power9-misc
10328 command-line option.
10329 * config/rs6000/rs6000.h: Redefine TARGET_P9_MISC as 0 if
10330 HAVE_AS_POWER9 is not a defined macro. Define MASK_P9_MISC and
10331 RS6000_BTM_P9_MISC macros.
10332 * config/rs6000/rs6000.opt: Add support for the -mpower9-misc
10333 option and change the description of the -mpower9-vector option to
10334 enable only vector instructions, removing its erroneously claimed
10335 support for scalar instructions.
10336 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
10337 the ISA 3.0 digital floating point test significance built-in
10340 2016-06-30 Wilco Dijkstra <wdijkstr@arm.com>
10342 * config/aarch64/aarch64.c (cortexa35_tunings):
10343 Enable AES fusion. Use cortexa57_branch_cost.
10344 (cortexa53_tunings): Use cortexa57_branch_cost.
10345 (cortexa72_tunings): Use cortexa57_branch_cost.
10346 Use AUTOPREFETCHER_WEAK.
10347 (cortexa73_tunings): Use cortexa57_branch_cost.
10349 2016-06-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
10350 James Greenhalgh <james.greenhalgh@arm.com>
10352 * config/aarch64/arm_neon.h (vcopyq_lane_f32, vcopyq_lane_f64,
10353 vcopyq_lane_p8, vcopyq_lane_p16, vcopyq_lane_s8, vcopyq_lane_s16,
10354 vcopyq_lane_s32, vcopyq_lane_s64, vcopyq_lane_u8, vcopyq_lane_u16,
10355 vcopyq_lane_u32, vcopyq_lane_u64): Reimplement in C.
10356 (vcopy_lane_f32, vcopy_lane_f64, vcopy_lane_p8, vcopy_lane_p16,
10357 vcopy_lane_s8, vcopy_lane_s16, vcopy_lane_s32, vcopy_lane_s64,
10358 vcopy_lane_u8, vcopy_lane_u16, vcopy_lane_u32, vcopy_lane_u64,
10359 vcopy_laneq_f32, vcopy_laneq_f64, vcopy_laneq_p8, vcopy_laneq_p16,
10360 vcopy_laneq_s8, vcopy_laneq_s16, vcopy_laneq_s32, vcopy_laneq_s64,
10361 vcopy_laneq_u8, vcopy_laneq_u16, vcopy_laneq_u32, vcopy_laneq_u64,
10362 vcopyq_laneq_f32, vcopyq_laneq_f64, vcopyq_laneq_p8, vcopyq_laneq_p16,
10363 vcopyq_laneq_s8, vcopyq_laneq_s16, vcopyq_laneq_s32, vcopyq_laneq_s64,
10364 vcopyq_laneq_u8, vcopyq_laneq_u16, vcopyq_laneq_u32, vcopyq_laneq_u64):
10367 2016-06-30 James Greenhalgh <james.greenhalgh@arm.com>
10368 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
10370 * config/aarch64/aarch64-simd.md (*aarch64_simd_vec_copy_lane<mode>):
10372 (*aarch64_simd_vec_copy_lane_<vswap_width_name><mode>): Likewise.
10374 2016-06-30 David Malcolm <dmalcolm@redhat.com>
10377 * gcc.c (driver::build_option_suggestions): Pass "option" to
10378 add_misspelling_candidates.
10379 * opts-common.c (add_misspelling_candidates): Add "option" param;
10380 use it to avoid adding negated forms for options marked with
10382 * opts.h (add_misspelling_candidates): Add "option" param.
10384 2016-06-30 Jakub Jelinek <jakub@redhat.com>
10386 PR middle-end/71693
10387 * fold-const.c (fold_binary_loc) <case RROTATE_EXPR>: Cast
10388 TREE_OPERAND (arg0, 0) and TREE_OPERAND (arg0, 1) to type
10389 first when permuting bitwise operation with rotate. Cast
10390 TREE_OPERAND (arg0, 0) to type when cancelling two rotations.
10392 2016-06-29 David Malcolm <dmalcolm@redhat.com>
10394 * opts.c (handle_param): Use find_param_fuzzy to offer suggestions
10395 for misspelled param names.
10396 * params.c: Include spellcheck.h.
10397 (find_param_fuzzy): New function.
10398 * params.h (find_param_fuzzy): New prototype.
10399 * spellcheck.c (struct edit_distance_traits<const char *>): Move to...
10400 * spellcheck.h (struct edit_distance_traits<const char *>):
10403 2016-06-29 Michael Meissner <meissner@linux.vnet.ibm.com>
10405 * config/rs6000/predicates.md (const_0_to_7_operand): New
10406 predicate, recognize 0..7.
10407 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
10408 support for doing extracts from V16QImode, V8HImode, V4SImode
10410 * config/rs6000/vsx.md (VSX_EXTRACT_I): Mode iterator for ISA 3.0
10411 vector extract support.
10412 (VSX_EXTRACT_PREDICATE): Mode attribute to validate element number
10413 for ISA 3.0 vector extract.
10414 (VSX_EX): Constraints to use for ISA 3.0 vector extract.
10415 (vsx_extract_<mode>, VSX_EXTRACT_I): Add support for doing
10416 extracts of a constant element number from small integer vectors
10417 on 64-bit ISA 3.0 systems.
10418 (vsx_extract_<mode>_di): Likewise.
10419 * config/rs6000/rs6000.h (TARGET_VEXTRACTUB): New target macro to
10420 say when we can do ISA 3.0 vector extracts.
10421 * config/rs6000/rs6000.md (stfiwx): Allow DImode in Altivec
10422 registers, using the stxsiwx instruction.
10424 2016-06-29 Jim Wilson <jim.wilson@linaro.org>
10426 * config/aarch64/aarch64-cores.def (qdf24xx): Use qdf24xx tuning.
10427 * config/aarch64/aarch64.c (qdf24xx_addrcost_table,
10428 qdf24xx_regmove_cost, qdf24xx_tunings): New.
10429 * config/arm/aarch64-cost-tables.h (qdf24xx_extra_costs): New.
10430 * config/arm/arm-cores.def (qdf24xx): Use qdf24xx tuning.
10431 * config/arm/arm.c (arm_qdf24xx_tune): New.
10433 2016-06-29 Wilco Dijkstra <wdijkstr@arm.com>
10435 * config/aarch64/aarch64.c (cortexa53_tunings):
10436 Increase loop alignment to 8. Set function alignment to 16.
10437 (cortexa35_tunings): Likewise.
10438 (cortexa57_tunings): Increase loop alignment to 8.
10439 (cortexa72_tunings): Likewise.
10440 (cortexa73_tunings): Likewise.
10442 2016-06-29 Matthew Wahab <matthew.wahab@arm.com>
10444 * doc/sourcebuild.texi (Effective-Target keywords): Add entries
10445 for arm_fp16_ok and arm_fp16_hw.
10446 (Add Options): Add entries for arm_fp16, arm_fp16_ieee and
10447 arm_fp16_alternative.
10449 2016-06-29 Ilya Enkovich <ilya.enkovich@intel.com>
10451 PR tree-optimization/71655
10452 * tree-vect-stmts.c (vectorizable_comparison): Swap definition
10453 types when swapping operands.
10455 2016-06-29 Martin Liska <mliska@suse.cz>
10457 PR middle-end/71585
10458 * common.opt (flag_stack_protect): Mark the flag as optimization flag.
10459 * ipa-inline-transform.c (inline_call): Remove unnecessary call
10460 of build_optimization_node.
10462 2016-06-29 Yuri Rumyantsev <ysrumyan@gmail.com>
10464 PR tree-optimization/70729
10465 * tree-ssa-loop-im.c (ref_indep_loop_p_1): Consider memory reference as
10466 independent in loops having positive safelen value.
10467 * tree-vect-loop.c (vect_transform_loop): Clear-up safelen value since
10468 it may be not valid after vectorization.
10470 2016-06-29 Jakub Jelinek <jakub@redhat.com>
10472 PR tree-optimization/71625
10473 * tree-ssa-strlen.c (get_addr_stridx): Add PTR argument. Assume list
10474 is sorted by ascending list->offset. If PTR is non-NULL and there is
10475 previous strinfo, call get_stridx_plus_constant.
10476 (get_stridx): Pass exp as second argument to get_addr_stridx.
10477 (addr_stridxptr): Add missing list = list->next, so that there can be
10478 more than one entries in the list. Bump limit from 16 to 32. Ensure
10479 the list is sorted by ascending list->offset.
10480 (get_stridx_plus_constant): Adjust so that it can be also called with
10481 ADDR_EXPR instead of SSA_NAME as PTR.
10482 (handle_char_store): Pass NULL_TREE as second argument to
10485 2016-06-29 Richard Biener <rguenther@suse.de>
10487 PR rtl-optimization/68961
10488 * simplify-rtx.c (simplify_subreg): Handle VEC_CONCAT like CONCAT.
10490 2016-06-29 Richard Biener <rguenther@suse.de>
10492 PR middle-end/71002
10493 * alias.c (component_uses_parent_alias_set_from): Handle
10494 type punning through union accesses by using the union alias set.
10495 * gimple.c (gimple_get_alias_set): Remove union type punning case.
10497 2016-07-29 Richard Biener <rguenther@suse.de>
10499 * match.pd ((T)(T2)x -> (T)x): Remove restriction on final
10500 precision not matching mode precision.
10502 2016-06-28 John David Anglin <danglin@gcc.gnu.org>
10504 * config/pa/pa.md (call_symref_64bit_post_reload): Don't call
10505 pa_output_arg_descriptor.
10506 (call_val_symref_64bit_post_reload): Likewise.
10507 (call_val_powf_64bit_post_reload): Likewise.
10508 (sibcall_internal_symref_64bit): Likewise.
10509 (sibcall_value_internal_symref_64bit): Likewise.
10511 2016-06-28 Jakub Jelinek <jakub@redhat.com>
10513 PR middle-end/71626
10514 * config/i386/i386.c (ix86_expand_vector_move): For SUBREG of
10515 a constant, force its SUBREG_REG into memory or register instead
10518 2016-06-28 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
10521 * config/avr/avr.opt (-mfract-convert-truncate): Update description.
10522 * doc/invoke.texi (AVR Options): Document it.
10524 2016-06-28 Walter Lee <walt@tilera.com>
10526 * config/tilegx/linux.h: Do not include arch/icache.h
10527 (CLEAR_INSN_CACHE): Provide inlined definition directly.
10528 * config/tilepro/linux.h: Do not include arch/icache.h
10529 (CLEAR_INSN_CACHE): Provide inlined definition directly.
10531 2016-06-28 Wilco Dijkstra <wdijkstr@arm.com>
10533 * tree-ssa-math-opts.c (find_bswap_or_nop_1): Adjust bitnumbering
10534 for big-endian BIT_FIELD_REF.
10536 2016-06-28 Pat Haugen <pthaugen@us.ibm.com>
10538 * config/rs6000/rs6000.md ('type' attribute): Add htmsimple/dfp types.
10539 ('size' attribute): Add '128'.
10541 (*mov<mode>_hardfloat32, *mov<mode>_hardfloat64, *movdi_internal32,
10542 *movdi_internal64, *movdf_update1): Set size attribute to '64'.
10543 (add<mode>3, sub<mode>3, mul<mode>3, div<mode>3, sqrt<mode>2,
10544 copysign<mode>3, neg<mode>2_hw, abs<mode>2_hw, *nabs<mode>2_hw,
10545 *fma<mode>4_hw, *fms<mode>4_hw, *nfma<mode>4_hw, *nfms<mode>4_hw,
10546 extend<SFDF:mode><IEEE128:mode>2_hw, trunc<mode>df2_hw,
10547 *xscvqp<su>wz_<mode>, *xscvqp<su>dz_<mode>, *xscv<su>dqp_<mode>,
10548 *trunc<mode>df2_odd): Set size attribute to '128'.
10549 (*cmp<mode>_hw): Change type to veccmp and set size attribute to '128'.
10550 * config/rs6000/power6.md (power6-fp): Include dfp type.
10551 * config/rs6000/power7.md (power7-fp): Likewise.
10552 * config/rs6000/power8.md (power8-fp): Likewise.
10553 * config/rs6000/power9.md: New file.
10554 * config/rs6000/t-rs6000 (MD_INCLUDES): Add power9.md.
10555 * config/rs6000/htm.md (*tabort, *tabort<wd>c, *tabort<wd>ci,
10556 *trechkpt, *treclaim, *tsr, *ttest): Change type attribute to
10558 * config/rs6000/dfp.md (extendsddd2, truncddsd2, extendddtd2,
10559 trunctddd2, adddd3, addtd3, subdd3, subtd3, muldd3, multd3, divdd3,
10560 divtd3, *cmpdd_internal1, *cmptd_internal1, floatdidd2, floatditd2,
10561 ftruncdd2, fixdddi2, ftrunctd2, fixtddi2, dfp_ddedpd_<mode>,
10562 dfp_denbcd_<mode>, dfp_dxex_<mode>, dfp_diex_<mode>, dfp_dscli_<mode>,
10563 dfp_dscri_<mode>): Change type attribute to dfp.
10564 * config/rs6000/crypto.md (crypto_vshasigma<CR_char>): Change type
10565 attribute to vecsimple.
10566 * config/rs6000/rs6000.c (power9_cost): Update costs, cache size
10567 and prefetch streams.
10568 (rs6000_option_override_internal): Remove temporary code setting
10569 tuning to power8. Don't set rs6000_sched_groups for power9.
10570 (last_scheduled_insn): Change to rtx_insn *.
10571 (divide_cnt, vec_load_pendulum): New variables.
10572 (rs6000_adjust_cost): Add Power9 to test for store->load separation.
10573 (rs6000_issue_rate): Set issue rate for Power9.
10574 (is_power9_pairable_vec_type): New.
10575 (power9_sched_reorder2): New.
10576 (rs6000_sched_reorder2): Call new function for Power9 specific
10578 (insn_must_be_first_in_group): Remove Power9.
10579 (insn_must_be_last_in_group): Likewise.
10580 (force_new_group): Likewise.
10581 (rs6000_sched_init): Fix initialization of last_scheduled_insn.
10582 Initialize divide_cnt/vec_load_pendulum.
10583 (_rs6000_sched_context, rs6000_init_sched_context,
10584 rs6000_set_sched_context): Handle context save/restore of new
10587 2016-06-28 Richard Biener <rguenther@suse.de>
10589 * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
10590 Properly handle DECL_BIT_FIELD_REPRESENTATIVE occuring as
10591 COMPONENT_REF operand.
10592 (nonoverlapping_component_refs_p): Likewise.
10593 * stor-layout.c (start_bitfield_representative): Mark
10594 DECL_BIT_FIELD_REPRESENTATIVE as DECL_NONADDRESSABLE_P.
10596 2016-06-28 Jakub Jelinek <jakub@redhat.com>
10598 * Makefile.in: Don't cat ../stage_current if it does not exist.
10600 * doc/extend.texi (__builtin_add_overflow_p): Clarify behavior when
10601 last argument is a bit-field.
10603 PR rtl-optimization/71673
10604 * internal-fn.c (expand_arith_overflow_result_store): Use
10605 OPTAB_LIB_WIDEN instead of OPTAB_DIRECT as last argument to
10606 expand_simple_binop.
10608 PR middle-end/66867
10609 * builtins.c (expand_ifn_atomic_compare_exchange_into_call,
10610 expand_ifn_atomic_compare_exchange): New functions.
10611 * internal-fn.c (expand_ATOMIC_COMPARE_EXCHANGE): New function.
10612 * tree.h (build_call_expr_internal_loc): Rename to ...
10613 (build_call_expr_internal_loc_array): ... this. Fix up type of
10615 * internal-fn.def (ATOMIC_COMPARE_EXCHANGE): New internal fn.
10616 * predict.c (expr_expected_value_1): Handle IMAGPART_EXPR of
10617 ATOMIC_COMPARE_EXCHANGE result.
10618 * builtins.h (expand_ifn_atomic_compare_exchange): New prototype.
10619 * gimple-fold.h (optimize_atomic_compare_exchange_p,
10620 fold_builtin_atomic_compare_exchange): New prototypes.
10621 * gimple-fold.c (optimize_atomic_compare_exchange_p,
10622 fold_builtin_atomic_compare_exchange): New functions..
10623 * tree-ssa.c (execute_update_addresses_taken): If
10624 optimize_atomic_compare_exchange_p, ignore &var in 2nd argument
10625 of call when finding addressable vars, and if such var becomes
10626 non-addressable, call fold_builtin_atomic_compare_exchange.
10628 2016-06-27 Segher Boessenkool <segher@kernel.crashing.org>
10631 * config/rs6000/rs6000.md (ashdi3_extswsli_dot): Use
10632 gen_ashdi3_extswsli_dot2 instead of gen_ashdi3_extswsli_dot.
10634 2016-06-27 Pat Haugen <pthaugen@us.ibm.com>
10636 * config/rs6000/rs6000.md ('type' attribute): Add
10637 veclogical,veccmpfx,vecexts,vecmove insn types.
10638 (*abs<mode>2_fpr, *nabs<mode>2_fpr, *neg<mode>2_fpr, *extendsfdf2_fpr,
10639 copysign<mode>3_fcpsgn, trunc<mode>df2_internal1, neg<mode>2_internal,
10640 p8_fmrgow_<mode>, pack<mode>): Change type to fpsimple.
10641 (*xxsel<mode>, copysign<mode>3_hard, neg<mode>2_hw, abs<mode>2_hw,
10642 *nabs<mode>2_hw): Change type to vecmove.
10643 (*and<mode>3_internal, *bool<mode>3_internal, *boolc<mode>3_internal,
10644 *boolcc<mode>3_internal, *eqv<mode>3_internal,
10645 *one_cmpl<mode>3_internal, *ieee_128bit_vsx_neg<mode>2_internal,
10646 *ieee_128bit_vsx_abs<mode>2_internal,
10647 *ieee_128bit_vsx_nabs<mode>2_internal, extendkftf2, trunctfkf2,
10648 *ieee128_mfvsrd_64bit, *ieee128_mfvsrd_32bit, *ieee128_mtvsrd_64bit,
10649 *ieee128_mtvsrd_32bit): Change type to veclogical.
10650 (mov<mode>_hardfloat, *mov<mode>_hardfloat32, *mov<mode>_hardfloat64,
10651 *movdi_internal32, *movdi_internal64): Update insn types.
10652 * config/rs6000/vsx.md (*vsx_le_undo_permute_<mode>,
10653 vsx_extract_<mode>): Change type to veclogical.
10654 (*vsx_xxsel<mode>, *vsx_xxsel<mode>_uns): Change type to vecmove.
10655 (vsx_sign_extend_qi_<mode>, *vsx_sign_extend_hi_<mode>,
10656 *vsx_sign_extend_si_v2di): Change type to vecexts.
10657 * config/rs6000/altivec.md (*altivec_mov<mode>, *altivec_movti): Change
10658 type to veclogical.
10659 (*altivec_eq<mode>, *altivec_gt<mode>, *altivec_gtu<mode>,
10660 *altivec_vcmpequ<VI_char>_p, *altivec_vcmpgts<VI_char>_p,
10661 *altivec_vcmpgtu<VI_char>_p): Change type to veccmpfx.
10662 (*altivec_vsel<mode>, *altivec_vsel<mode>_uns): Change type to vecmove.
10663 * config/rs6000/dfp.md (*negdd2_fpr, *absdd2_fpr, *nabsdd2_fpr,
10664 negtd2, *abstd2_fpr, *nabstd2_fpr): Change type to fpsimple.
10665 * config/rs6000/40x.md (ppc405-float): Add fpsimple.
10666 * config/rs6000/440.md (ppc440-fp): Add fpsimple.
10667 * config/rs6000/476.md (ppc476-fp): Add fpsimple.
10668 * config/rs6000/601.md (ppc601-fp): Add fpsimple.
10669 * config/rs6000/603.md (ppc603-fp): Add fpsimple.
10670 * config/rs6000/6xx.md (ppc604-fp): Add fpsimple.
10671 * config/rs6000/7xx.md (ppc750-fp): Add fpsimple.
10672 (ppc7400-vecsimple): Add veclogical, vecmove, veccmpfx.
10673 * config/rs6000/7450.md (ppc7450-fp): Add fpsimple.
10674 (ppc7450-vecsimple): Add veclogical, vecmove.
10675 (ppc7450-veccmp): Add veccmpfx.
10676 * config/rs6000/8540.md (ppc8540_simple_vector): Add veclogical,
10678 (ppc8540_vector_compare): Add veccmpfx.
10679 * config/rs6000/a2.md (ppca2-fp): Add fpsimple.
10680 * config/rs6000/cell.md (cell-fp): Add fpsimple.
10681 (cell-vecsimple): Add veclogical, vecmove.
10682 (cell-veccmp): Add veccmpfx.
10683 * config/rs6000/e300c2c3.md (ppce300c3_fp): Add fpsimple.
10684 * config/rs6000/e6500.md (e6500_vecsimple): Add veclogical, vecmove,
10686 * config/rs6000/mpc.md (mpccore-fp): Add fpsimple.
10687 * config/rs6000/power4.md (power4-fp): Add fpsimple.
10688 (power4-vecsimple): Add veclogical, vecmove.
10689 (power4-veccmp): Add veccmpfx.
10690 * config/rs6000/power5.md (power5-fp): Add fpsimple.
10691 * config/rs6000/power6.md (power6-fp): Add fpsimple.
10692 (power6-vecsimple): Add veclogical, vecmove.
10693 (power6-veccmp): Add veccmpfx.
10694 * config/rs6000/power7.md (power7-fp): Add fpsimple.
10695 (power7-vecsimple): Add veclogical, vecmove, veccmpfx.
10696 * config/rs6000/power8.md (power8-fp): Add fpsimple.
10697 (power8-vecsimple): Add veclogical, vecmove, veccmpfx.
10698 * config/rs6000/rs64.md (rs64a-fp): Add fpsimple.
10699 * config/rs6000/titan.md (titan_fp): Add fpsimple.
10700 * config/rs6000/xfpu.md (fp-default, fp-addsub-s, fp-addsub-d): Add
10702 * config/rs6000/rs6000.c (rs6000_adjust_cost): Add TYPE_FPSIMPLE.
10704 2016-06-27 Peter Bergner <bergner@vnet.ibm.com>
10707 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
10708 OPTION_MASK_P9_DFORM_VECTOR.
10709 * config/rs6000/rs6000.c (rs6000_option_override_internal): Do not
10710 disable -mpower9-dform-vector when using reload.
10711 (quad_address_p): Remove 'gpr_p' argument and all associated code.
10712 New 'strict' argument. Update all callers. Add strict addressing
10714 (rs6000_legitimate_offset_address_p): Remove call to
10715 virtual_stack_registers_memory_p.
10716 (rs6000_legitimize_reload_address): Add quad address support.
10717 (rs6000_legitimate_address_p): Move call to quad_address_p above
10718 call to virtual_stack_registers_memory_p. Adjust quad_address_p args
10719 to account for new strict usage.
10720 (rs6000_output_move_128bit): Adjust quad_address_p args to account
10721 for new strict usage.
10722 * config/rs6000/predicates.md (quad_memory_operand): Likewise.
10724 2016-06-26 Uros Bizjak <ubizjak@gmail.com>
10731 * config/i386/i386.c (ix86_spill_class): Disable condition to
10732 always return NO_REGS.
10734 2016-06-26 Jan Hubicka <hubicka@ucw.cz>
10736 * predict.c: Include gimple-pretty-print.h
10737 (predicted_by_loop_heuristics_p): Check also
10738 PRED_LOOP_EXIT_WITH_RECURSION
10739 (predict_loops): Find self recursive calls and use special purpose
10740 predictors for them; dump log about decisions.
10741 (pass_profile::execute): Dump info about #of iterations.
10742 * predict.def (PRED_LOOP_EXIT_WITH_RECURSION,
10743 (PRED_LOOP_GUARD_WITH_RECURSION): New predictors.
10745 2016-06-26 John David Anglin <danglin@gcc.gnu.org>
10747 * config/pa/pa.c (pa_output_indirect_call): Rework to combine
10748 output_asm_insn calls and shorten long lines. Output .CALL
10749 argument descriptor using pa_output_arg_descriptor. Add various
10750 inline $$dyncall and other optimizations.
10751 (pa_attr_length_indirect_call): Adjust ordering and lengths.
10753 2016-06-25 Jakub Jelinek <jakub@redhat.com>
10755 PR tree-optimization/71643
10756 * tree-ssa-tail-merge.c (find_clusters_1): Ignore basic blocks with
10759 * tree-ssa-tail-merge.c (deps_ok_for_redirect_from_bb_to_bb): Don't
10760 leak a bitmap if dep_bb is NULL.
10762 PR tree-optimization/71631
10763 * tree-ssa-reassoc.c (reassociate_bb): Pass true as last argument
10764 to rewrite_expr_tree even if negate_result, move new_lhs var
10765 declaration and initialization earlier, for powi_result set afterwards
10766 new_lhs to lhs. For negate_result, use new_lhs instead of tmp
10767 if new_lhs != lhs, and don't shadow gsi var.
10769 2016-06-24 Jan Hubicka <hubicka@ucw.cz>
10771 * predict.c (predict_paths_leading_to, predict_paths_leading_to_edge):
10772 Add in_loop parameter.
10773 (predict_loops): Add loop guard heuristics.
10774 * predict.def (PRED_LOOP_GUARD): New heuristics.
10776 2016-06-24 Jan Hubicka <hubicka@ucw.cz>
10778 * predict.c: Include ipa-utils.h
10779 (tree_bb_level_prediction): Predict recursive calls.
10780 (tree_estimate_probability_bb): Skip inexpensive calls for call
10782 * predict.def (PRED_RECURSIVE_CALL): New.
10784 2016-06-24 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
10786 * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): New #define.
10787 (BU_FLOAT128_1): Likewise.
10789 (COPYSIGNQ): Likewise.
10790 (RS6000_BUILTIN_NANQ): Likewise.
10791 (RS6000_BUILTIN_NANSQ): Likewise.
10792 (RS6000_BUILTIN_INFQ): Likewise.
10793 (RS6000_BUILTIN_HUGE_VALQ): Likewise.
10794 * config/rs6000/rs6000.c (rs6000_fold_builtin): New prototype.
10795 (TARGET_FOLD_BUILTIN): New #define.
10796 (rs6000_builtin_mask_calculate): Add TARGET_FLOAT128 entry.
10797 (rs6000_invalid_builtin): Add handling for RS6000_BTM_FLOAT128.
10798 (rs6000_fold_builtin): New target hook implementation, handling
10799 folding of 128-bit NaNs and infinities.
10800 (rs6000_init_builtins): Initialize const_str_type_node; ensure all
10801 entries are filled in to avoid problems during bootstrap
10802 self-test; define builtins for 128-bit NaNs and infinities.
10803 (rs6000_opt_mask): Add entry for float128.
10804 * config/rs6000/rs6000.h (RS6000_BTM_FLOAT128): New #define.
10805 (RS6000_BTM_COMMON): Include RS6000_BTM_FLOAT128.
10806 (rs6000_builtin_type_index): Add RS6000_BTI_const_str.
10807 (const_str_type_node): New #define.
10808 * config/rs6000/rs6000.md (copysign<mode>3 for IEEE128): Convert
10809 to a define_expand that dispatches to either copysign<mode>3_soft
10810 or copysign<mode>3_hard.
10811 (copysign<mode>3_hard): Rename from copysign<mode>3.
10812 (copysign<mode>3_soft): New define_insn.
10813 * doc/extend.texi: Document new builtins.
10815 2016-06-24 Jakub Jelinek <jakub@redhat.com>
10817 * cfgloop.c (flow_loop_dump): Cast nit to uint64_t and print it using
10818 PRIu64 instead of lu.
10820 2016-06-24 Eric Botcazou <ebotcazou@adacore.com>
10823 * tree-inline.c (remap_decl): When fixing up DECL_ORIGINAL_TYPE, just
10824 copy the type name.
10826 2016-06-24 Jakub Jelinek <jakub@redhat.com>
10828 PR tree-optimization/71647
10829 * omp-low.c (lower_rec_input_clauses): Convert
10830 omp_clause_aligned_alignment (c) to size_type_node for the
10831 last argument of __builtin_assume_aligned.
10833 2016-06-24 H.J. Lu <hongjiu.lu@intel.com>
10835 * configure.ac (calling ___tls_get_addr via GOT): New
10836 assembler/linker check.
10837 (HAVE_AS_IX86_TLS_GET_ADDR_GOT): New. Defined to 1 if 32-bit
10838 assembler and linker supports calling ___tls_get_addr via GOT.
10839 Otherise, defined to 0.
10840 * config.in: Regenerated.
10841 * configure: Likewise.
10842 * config/i386/constraints.md (Yb): New constraint.
10843 * config/i386/i386.h (reg_class): Add TLS_GOTBASE_REGS.
10844 (REG_CLASS_NAMES): Likewise.
10845 (REG_CLASS_CONTENTS): Likewise.
10846 * config/i386/i386.md (*tls_global_dynamic_32_gnu): Replace
10847 the b constraint with the Yb constraint. Call ___tls_get_addr
10848 via GOT for GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT
10850 (*tls_local_dynamic_base_32_gnu): Likewise.
10851 (*tls_global_dynamic_64_<mode>): Call _tls_get_addr via GOT for
10852 GNU TLS with -fno-plt if HAVE_AS_IX86_TLS_GET_ADDR_GOT is 1.
10853 (*tls_local_dynamic_base_64_<mode>): Likewise.
10855 2016-06-24 Martin Liska <mliska@suse.cz>
10857 * cfgloop.c (flow_loop_dump): Dump average number of loop iterations.
10858 * cfgloop.h: Change 'struct loop' to 'const struct loop' for a
10860 * cfgloopanal.c (expected_loop_iterations_unbounded): Set a new
10861 argument to true if the expected number of iterations is
10864 2016-06-24 Uros Bizjak <ubizjak@gmail.com>
10866 * configure.ac (HAVE_AS_GOTOF_IN_DATA): Use $as_ix86_gas_32_opt to
10867 assemble for 32bit target.
10868 (HAVE_AS_IX86_TLSGDPLT): Use $as_ix86_gas_32_opt to assemble
10869 and $ld_ix86_gld_32_opt to link for 32bit target.
10870 (HAVE_AS_IX86_TLSLDMPLT): Ditto.
10871 * configure: Regenerate.
10873 2016-06-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
10875 * config/arm/arm.c (int_log2): Delete definition and prototype.
10876 (shift_op): Use exact_log2 instead of int_log2.
10877 (vfp3_const_double_for_fract_bits): Likewise.
10879 2016-06-24 Jakub Jelinek <jakub@redhat.com>
10881 * internal-fn.c (expand_arith_set_overflow): New function.
10882 (expand_addsub_overflow, expand_neg_overflow, expand_mul_overflow):
10884 (expand_arith_overflow_result_store): Likewise. Handle precision
10885 smaller than mode precision.
10886 * tree-vrp.c (extract_range_basic): For imag part, handle
10887 properly signed 1-bit precision result.
10888 * doc/extend.texi (__builtin_add_overflow): Document that last
10889 argument can't be pointer to enumerated or boolean type.
10890 (__builtin_add_overflow_p): Document that last argument can't
10891 have enumerated or boolean type.
10893 2016-06-23 Michael Meissner <meissner@linux.vnet.ibm.com>
10894 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
10896 * config/rs6000/predicates.md (splat_input_operand): Rework.
10897 Don't allow constants, since the insns that use this predicate
10898 don't support constants. Constants are handled by other insns
10899 that are created via combine. During and after register
10900 allocation, only allow indexed or indirect addresses, and not
10901 general addresses. Only allow modes supported by the hardware.
10902 * config/rs6000/rs6000.c (xxsplitb_constant_p): Update usage
10903 comment. Move check for using VSPLTIS<x> to a common location,
10904 instead of doing it in two different places.
10906 2016-06-23 Jocelyn Mayer <l_indien@magic.fr>
10908 * config/i386/driver-i386.c (host_detect_local_cpu): Set
10909 PROCESSOR_PENTIUMPRO for signature_CENTAUR_ebx family >= 9.
10910 <case PROCESSOR_PENTIMUMPRO>: Pass c7 or nehemiah for
10911 signature_CENTAUR_ebx.
10913 2016-06-23 H.J. Lu <hongjiu.lu@intel.com>
10917 * configure.ac (as_ix86_tls_ldm_opt): Renamed to ...
10918 (as_ix86_gas_32_opt): This.
10919 (ld_ix86_tls_ldm_opt): Renamed to ...
10920 (ld_ix86_gld_32_opt): This.
10921 (R_386_TLS_LDM reloc): Updated.
10922 (R_386_GOT32X reloc): New assembler/linker check.
10923 (HAVE_AS_IX86_GOT32X): New. Defined to 1 if 32-bit assembler and
10924 linker support "jmp *_start@GOT" and "cmpl $0, bar@GOT". Otherise,
10926 * config.in: Regenerated.
10927 * configure: Likewise.
10928 * config/i386/i386.c (ix86_force_load_from_GOT_p): Return
10929 true if HAVE_AS_IX86_GOT32X is 1 in 32-bit mode.
10930 (ix86_legitimate_address_p): Allow UNSPEC_GOT for -fno-plt
10931 if ix86_force_load_from_GOT_p returns true.
10932 (ix86_print_operand_address_as): Also support UNSPEC_GOT if
10933 ix86_force_load_from_GOT_p returns true.
10934 (ix86_expand_move): Generate UNSPEC_GOT in 32-bit mode to load
10935 the external function address via the GOT slot.
10936 (ix86_nopic_noplt_attribute_p): Check both TARGET_64BIT and
10937 HAVE_AS_IX86_GOT32X before returning false.
10938 (ix86_output_call_insn): Generate "%!jmp/call\t*%p0@GOT" in
10939 32-bit mode if ix86_nopic_noplt_attribute_p returns true.
10941 2016-06-23 Eric Botcazou <ebotcazou@adacore.com>
10943 * tree-inline.c (remap_decl): Preserve DECL_ORIGINAL_TYPE invariant.
10945 2016-06-23 Andi Kleen <ak@linux.intel.com>
10947 * Makefile.in: Regenerate.
10948 * doc/install.texi: Document autoprofiledbootstrap.
10950 2016-06-23 Andi Kleen <ak@linux.intel.com>
10952 * config/i386/gcc-auto-profile: New file.
10954 2016-06-23 Martin Liska <mliska@suse.cz>
10956 PR middle-end/71619
10957 * predict.c (predict_loops): Revert the hunk that was removed
10960 2016-06-23 Jakub Sejdak <jakub.sejdak@phoesys.com>
10962 * config.gcc: Add support for arm*-*-phoenix* targets.
10963 * config/arm/t-phoenix: New.
10964 * config/phoenix.h: New.
10966 2016-06-23 Uros Bizjak <ubizjak@gmail.com>
10967 H.J. Lu <hongjiu.lu@intel.com>
10970 * config/i386/i386-protos.h (ix86_force_load_from_GOT_p): New.
10971 * config/i386/i386.c (ix86_force_load_from_GOT_p): New function.
10972 (ix86_legitimate_constant_p): Do not allow UNSPEC_GOTPCREL if
10973 ix86_force_load_from_GOT_p returns true.
10974 (ix86_legitimate_address_p): Allow UNSPEC_GOTPCREL if
10975 ix86_force_load_from_GOT_p returns true.
10976 (ix86_print_operand_address_as): Support UNSPEC_GOTPCREL if
10977 ix86_force_load_from_GOT_p returns true.
10978 (ix86_expand_move): Load the external function address via the
10979 GOT slot if ix86_force_load_from_GOT_p returns true.
10980 * config/i386/predicates.md (x86_64_immediate_operand): Return
10981 false for SYMBOL_REFs where ix86_force_load_from_GOT_p returns true.
10982 (x86_64_zext_immediate_operand): Ditto.
10984 2016-06-22 Uros Bizjak <ubizjak@gmail.com>
10986 * config/i386/i386.c (ix86_expand_move): Simplify SYMBOL_REF handling.
10988 2016-06-22 David Malcolm <dmalcolm@redhat.com>
10991 * diagnostic-core.h (pedwarn_at_rich_loc): New prototype.
10992 * diagnostic.c (pedwarn_at_rich_loc): New function.
10993 * spellcheck.h (best_match::best_match): Add a
10994 "best_distance_so_far" optional parameter.
10995 (best_match::set_best_so_far): New method.
10996 (best_match::get_best_distance): New accessor.
10997 (best_match::get_best_candidate_length): New accessor.
10999 2016-06-22 Nick Clifton <nickc@redhat.com>
11001 * dwarf2out.c (scompare_loc_descriptor): Use SCALAR_INT_MODE_P() in
11002 place of GET_MODE_CLASS() == MODE_INT, so that partial integer
11003 modes are accepted as well.
11004 (ucompare_loc_descriptor): Likewise.
11005 (minmax_loc_descriptor): Likewise.
11006 (clz_loc_descriptor): Likewise.
11007 (popcount_loc_descriptor): Likewise.
11008 (bswap_loc_descriptor): Likewise.
11009 (rotate_loc_descriptor): Likewise.
11010 (mem_loc_descriptor): Likewise.
11011 (loc_descriptor): Likewise.
11013 2016-06-22 David Malcolm <dmalcolm@redhat.com>
11015 * common.opt (fdiagnostics-parseable-fixits): New option.
11016 * diagnostic.c: Include "selftest.h".
11017 (print_escaped_string): New function.
11018 (print_parseable_fixits): New function.
11019 (diagnostic_report_diagnostic): Call print_parseable_fixits.
11020 (selftest::assert_print_escaped_string): New function.
11021 (ASSERT_PRINT_ESCAPED_STRING_STREQ): New macro.
11022 (selftest::test_print_escaped_string): New function.
11023 (selftest::test_print_parseable_fixits_none): New function.
11024 (selftest::test_print_parseable_fixits_insert): New function.
11025 (selftest::test_print_parseable_fixits_remove): New function.
11026 (selftest::test_print_parseable_fixits_replace): New function.
11027 (selftest::diagnostic_c_tests): New function.
11028 * diagnostic.h (struct diagnostic_context): Add field
11029 "parseable_fixits_p".
11030 * doc/invoke.texi (Diagnostic Message Formatting Options): Add
11031 -fdiagnostics-parseable-fixits.
11032 (-fdiagnostics-parseable-fixits): New option.
11033 * opts.c (common_handle_option): Handle
11034 -fdiagnostics-parseable-fixits.
11035 * selftest-run-tests.c (selftest::run_tests): Call
11036 selftest::diagnostic_c_tests.
11037 * selftest.h (selftest::diagnostic_c_tests): New prototype.
11039 2016-06-22 Ilya Enkovich <ilya.enkovich@intel.com>
11041 PR tree-optimization/71488
11042 * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Support
11043 comparison of boolean vectors.
11044 * tree-vect-stmts.c (vectorizable_comparison): Vectorize comparison
11045 of boolean vectors using bitwise operations.
11047 2016-06-22 Andreas Schwab <schwab@suse.de>
11049 * config/aarch64/aarch64-protos.h (aarch64_elf_asm_named_section):
11050 Remove declaration.
11052 2016-06-22 Eric Botcazou <ebotcazou@adacore.com>
11054 * function.c (assign_parm_setup_reg): Prevent sharing in another case.
11056 2016-06-22 Bernd Edlinger <bernd.edlinger@hotmail.de>
11058 * config/i386/i386.c (print_reg): Emit an error message on attempt to
11061 2016-06-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11063 * config/arm/arm.c (arm_cortex_a73_tune): New struct.
11064 * config/arm/arm-cores.def (cortex-a73): New entry.
11065 (cortex-a73.cortex-a35): Likewise.
11066 (cortex-a73.cortex-a53): Likewise.
11067 * config/arm/arm-tables.opt: Regenerate.
11068 * config/arm/arm-tune.md: Likewise.
11069 * config/arm/bpabi.h (BE8_LINK_SPEC): Handle mcpu=cortex-a73,
11070 mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
11071 * config/arm/t-aprofile: Handle mcpu=cortex-a73,
11072 mcpu=cortex-a73.cortex-a35 and mcpu=cortex-a73.cortex-a53.
11073 * doc/invoke.texi (ARM Options): Document cortex-a73,
11074 cortex-a73.cortex-a35 and cortex-a73.cortex-a53.
11076 2016-06-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11078 * config/aarch64/aarch64.c (cortexa73_tunings): New struct.
11079 * config/aarch64/aarch64-cores.def (cortex-a73): New entry.
11080 (cortex-a73.cortex-a35): Likewise.
11081 (cortex-a73.cortex-a53): Likewise.
11082 * config/aarch64/aarch64-tune.md: Regenerate.
11083 * doc/invoke.texi (AArch64 Options): Document cortex-a73,
11084 cortex-a73.cortex-a35 and cortex-a73.cortex-a53 arguments to
11087 2016-06-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11089 * configure.ac (gcc_cv_as_compress_debug): Remove
11090 --compress-debug-sections as extra as switch.
11091 Handle gas --compress-debug-sections=type.
11092 (gcc_cv_ld_compess_debug): Remove bogus ld_date check.
11093 Handle gld --compress-debug-sections=type.
11094 * configure: Regenerate.
11096 2016-06-21 Andrew Burgess <andrew.burgess@embecosm.com>
11098 * bb-reorder.c (pass_partition_blocks::gate): Update comment.
11100 2016-06-21 John David Anglin <danglin@gcc.gnu.org>
11102 * gcov-tool.c (profile_rewrite): Use int64_t instead of long long.
11103 (do_rewrite): likewise.
11105 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11107 * common/config/mep/mep-common.c: Remove.
11108 * config.gcc: Remove mep-* support.
11109 * config/mep/constraints.md: Remove.
11110 * config/mep/default.h: Remove.
11111 * config/mep/intrinsics.h: Remove.
11112 * config/mep/intrinsics.md: Remove.
11113 * config/mep/ivc2-template.h: Remove.
11114 * config/mep/mep-c5.cpu: Remove.
11115 * config/mep/mep-core.cpu: Remove.
11116 * config/mep/mep-default.cpu: Remove.
11117 * config/mep/mep-ext-cop.cpu: Remove.
11118 * config/mep/mep-intrin.h: Remove.
11119 * config/mep/mep-ivc2.cpu: Remove.
11120 * config/mep/mep-pragma.c: Remove.
11121 * config/mep/mep-protos.h: Remove.
11122 * config/mep/mep.c: Remove.
11123 * config/mep/mep.cpu: Remove.
11124 * config/mep/mep.h: Remove.
11125 * config/mep/mep.md: Remove.
11126 * config/mep/mep.opt: Remove.
11127 * config/mep/predicates.md: Remove.
11128 * config/mep/t-mep: Remove.
11129 * doc/install.texi: Remove mep-* documentation.
11130 * doc/md.texi: Likewise.
11132 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11134 * config.gcc: Remove support for avr-rtems.
11135 * config/avr/gen-avr-mmcu-specs.c: Likewise.
11136 * config/avr/rtems.h: Remove.
11137 * config/avr/t-rtems: Remove.
11139 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11141 * config.gcc: Remove m32r-rtems support.
11142 * config/m32r/rtems.h: Remove.
11144 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11146 * config.gcc: Remove h8300-rtems support.
11147 * config/h8300/rtems.h: Remove.
11148 * config/h8300/t-rtems: Remove.
11150 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11152 * config.gcc: Remove support for knetbsd.
11153 * configure.ac: Likewise.
11154 * config/i386/knetbsd-gnu.h: Remove. * config/i386/knetbsd-gnu64.h: Remove.
11155 * config/knetbsd-gnu.h: Remove.
11156 * configure: Regenerate.
11158 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11160 * config.gcc: Remove support for openbsd 2 and 3.
11161 * config/openbsd-oldgas.h: Remove.
11163 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
11165 * config.gcc: Remove interix support.
11166 * config/i386/i386-interix.h: Remove.
11167 * config/i386/interix.opt: Remove.
11168 * config/i386/t-interix: Remove.
11169 * configure: Regenerate.
11170 * configure.ac: Remove interix support.
11171 * doc/install.texi: Remove interix documentation.
11173 2016-06-21 Kelvin Nilsen <kelvin@gcc.gnu.org>
11175 * config/rs6000/rs6000.h: Add conditional preprocessing directives
11176 to disable Power9-specific compiler features if HAVE_AS_POWER9 is
11179 2016-06-21 Eric Botcazou <ebotcazou@adacore.com>
11181 * tree.c (verify_type_variant): Skip TYPE_SIZE and TYPE_SIZE_UNIT if
11182 they are both PLACEHOLDER_EXPRs.
11184 2016-06-21 Michael Meissner <meissner@linux.vnet.ibm.com>
11186 * stor-layout.c (layout_type): Move setting complex MODE to
11187 layout_type, instead of setting it ahead of time by the caller.
11188 * tree.c (build_complex_type): Likewise.
11190 2016-06-21 Martin Liska <mliska@suse.cz>
11192 * predict.c (force_edge_cold): Replace imposisble with
11195 2016-06-21 Ilya Verbin <ilya.verbin@intel.com>
11197 * config/i386/i386.c (ix86_emit_swsqrtsf): Emit vrsqrt28ps.
11198 * config/i386/sse.md (define_expand "rsqrtv16sf2"): New.
11200 2016-06-21 Ilya Verbin <ilya.verbin@intel.com>
11202 * config/i386/i386.c (ix86_emit_swdivsf): Emit vrcp28ps.
11204 2016-06-21 H.J. Lu <hongjiu.lu@intel.com>
11205 Ilya Enkovich <ilya.enkovich@intel.com>
11208 * config/i386/i386.c (timode_scalar_chain::fix_debug_reg_uses):
11209 New member function to convert V1TImode register to SUBREG
11210 TImode in debug insn.
11211 (timode_scalar_chain::convert_insn): Call fix_debug_reg_uses
11212 after changing register mode to V1TImode.
11214 2016-06-21 Virendra Pathak <virendra.pathak@broadcom.com>
11216 * config/aarch64/aarch64-cores.def (vulcan): New core.
11217 * config/aarch64/aarch64-tune.md: Regenerate.
11218 * doc/invoke.texi: Document vulcan as an available option.
11220 2016-06-21 Eric Botcazou <ebotcazou@adacore.com>
11222 * cse.c (canon_asm_operands): New function extracted from...
11223 (canonicalize_insn): ...here. Call it to canonicalize an ASM_OPERANDS
11224 either standalone or member of a PARALLEL.
11226 2016-06-21 Georg-Johann Lay <avr@gjlay.de>
11229 * config/avr/gen-avr-mmcu-specs.c (print_mcu):
11230 [*link_data_start]: Wrap -Tdata into %{!Tdata:...}.
11231 [*link_text_start]: Wrap -Ttext into %{!Ttext:...}.
11233 2016-06-21 Georg-Johann Lay <avr@gjlay.de>
11236 * config/avr/avr.md (movqi): Only handle loading subreg:qi of
11237 constant addresses if can_create_pseudo_p.
11239 2016-06-21 Jakub Jelinek <jakub@redhat.com>
11241 PR tree-optimization/71588
11242 * tree-ssa-strlen.c (valid_builtin_call): New function.
11243 (adjust_last_stmt, handle_builtin_memset, strlen_optimize_stmt): Use
11246 2016-06-20 Jakub Jelinek <jakub@redhat.com>
11248 PR middle-end/71581
11249 * tree-ssa-uninit.c (warn_uninit): If EXPR and VAR are NULL,
11250 see if T isn't anonymous SSA_NAME with COMPLEX_EXPR created
11251 for conversion of scalar user var to complex type and use the
11252 underlying SSA_NAME_VAR in that case. If EXPR is still NULL,
11255 PR rtl-optimization/71591
11256 * toplev.c (toplev::run_self_tests): If no_backend, complain and
11257 don't run any tests.
11259 2016-06-20 Hans-Peter Nilsson <hp@axis.com>
11262 * config/cris/cris.c (cris_asm_output_mi_thunk): Add missing "ba"
11263 delay-slot "nop" for PIC with CRIS v32. Also add missing leading
11264 space for PIC with non-v32 and the common non-PIC "jump".
11266 2016-06-20 Jakub Jelinek <jakub@redhat.com>
11269 * config/i386/i386.c (ix86_fp_cmp_code_to_pcmp_immediate): Fix up
11270 returned values and add UN*/LTGT/*ORDERED cases with values matching
11271 D operand modifier on vcmp for AVX.
11273 2016-06-20 Wilco Dijkstra <wdijkstr@arm.com>
11275 * config/aarch64/aarch64.opt
11276 (mpc-relative-literal-loads): Rename internal option name.
11277 * config/aarch64/aarch64.c
11278 (aarch64_nopcrelative_literal_loads): Rename to
11279 aarch64_pcrelative_literal_loads.
11280 (aarch64_expand_mov_immediate): Likewise.
11281 (aarch64_secondary_reload): Likewise.
11282 (aarch64_can_use_per_function_literal_pools_p): Likewise.
11283 (aarch64_override_options_after_change_1): Rename and simplify logic.
11284 (aarch64_classify_symbol): Merge large model checks into switch,
11285 remove pc-relative load check.
11287 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
11289 * config/arm/aarch-cost-tables.h (cortexa53_extra_costs): Make FP
11290 costs relative to the cost of a register move.
11292 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
11294 * config/aarch64/arm_neon.h (vcvt_n_f64_s64): New.
11295 (vcvt_n_f64_u64): Likewise.
11296 (vcvt_n_s64_f64): Likewise.
11297 (vcvt_n_u64_f64): Likewise.
11298 (vcvt_f64_s64): Likewise.
11299 (vrecpe_f64): Likewise.
11300 (vcvt_f64_u64): Likewise.
11301 (vrecps_f64): Likewise.
11303 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
11305 * config/aarch64/aarch64.md
11306 (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3): Add attributes to
11308 (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>3): Likewise. Correct
11310 * config/aarch64/aarch64-builtins.c
11311 (aarch64_types_binop_uss_qualifiers): Delete.
11312 (TYPES_BINOP_USS): Likewise.
11313 (aarch64_types_binop_sus_qualifiers): Likewise.
11314 (TYPES_BINOP_SUS): Likewise.
11315 (aarch64_types_fcvt_from_unsigned_qualifiers): New.
11316 (TYPES_FCVTIMM_SUS): Likewise.
11317 * config/aarch64/aarch64-simd-builtins.def (scvtf): Use SHIFTIMM
11319 (ucvtf): Use FCVTIMM_SUS rather than BINOP_SUS.
11320 (fcvtzs): Use SHIFTIMM rather than BINOP.
11321 (fcvtzu): Use SHIFTIMM_USS rather than BINOP_USS.
11323 2016-06-20 James Greenhalgh <james.greenhalgh@arm.com>
11325 * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): Make FP
11326 costs relative to the cost of a register move.
11328 2016-06-20 Wilco Dijkstra <wdijkstr@arm.com>
11330 * config/aarch64/aarch64.c (aarch64_modes_tieable_p):
11331 Allow scalar/single vector modes to be tieable.
11333 2016-06-20 Wilco Dijkstra <wdijkstr@arm.com>
11335 * config/arm/cortex-a57.md (cortex_a57_fp_cpys): Add fcsel.
11337 2016-06-20 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11339 * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of
11341 * tree.h (TYPE_ALIGN): Likewise.
11343 2016-06-20 Georg-Johann Lay <avr@gjlay.de>
11346 * config/avr/avr.md (movqi): Handle loading subreg:qi (const).
11348 2016-06-20 Georg-Johann Lay <avr@gjlay.de>
11350 * config/avr/avr.c (avr_print_operand): Fix "format not a string
11351 literal" build warnings.
11352 (avr_print_operand_address): Dito.
11354 2016-06-19 David Edelsohn <dje.gcc@gmail.com>
11357 * config/rs6000/aix51.h (TARGET_EXTRA_BUILTINS): Define as 0.
11358 * config/rs6000/aix43.h (TARGET_EXTRA_BUILTINS): Same.
11360 2016-06-18 John David Anglin <danglin@gcc.gnu.org>
11362 * config/pa/pa.h (TARGET_LONG_PIC_PCREL_CALL): Remove.
11364 2016-06-18 Eric Botcazou <ebotcazou@adacore.com>
11367 * reload1.c (reload): Pass 0 to finish_spills when called because
11368 update_eliminables_and_spill returns true and remove did_spill.
11369 (finish_spills): Adjust comment and document GLOBAL parameter.
11371 2016-06-17 DJ Delorie <dj@redhat.com>
11374 * config/rl78/rl78-expand.c (umulqihi3): Enable for G10.
11375 * config/rl78/rl78-virtual.c (umulhi3_shift_virt): Likewise.
11376 (umulqihi3_virt): Likewise.
11377 * config/rl78/rl78-real.c (umulhi3_shift_real): Likewise.
11378 (umulqihi3_real): Likewise.
11380 2016-06-17 Martin Liska <mliska@suse.cz>
11382 * tree-ssa-reassoc.c (transform_add_to_multiply): Use auto_vec.
11384 2016-06-17 Martin Liska <mliska@suse.cz>
11386 * predict.def: PRED_LOOP_EXIT from 92 to 85.
11388 2016-06-17 James Greenhalgh <james.greenhalgh@arm.com>
11390 * config/arm/arm_neon.h (vadd_f32): replace __FAST_MATH with
11392 (vaddq_f32): Likewise.
11393 (vmul_f32): Likewise.
11394 (vmulq_f32): Likewise.
11395 (vsub_f32): Likewise.
11396 (vsubq_f32): Likewise.
11398 2016-06-17 Bin Cheng <bin.cheng@arm.com>
11400 PR tree-optimization/71347
11401 * tree-ssa-loop-ivopts.c (determine_group_iv_cost_address): Compute
11402 cost for all uses in group.
11404 2016-06-17 Bin Cheng <bin.cheng@arm.com>
11406 * tree-vect-loop.c (vect_create_epilog_for_reduction): Only
11407 insert gimple seq if it's not empty.
11409 2016-06-17 Bin Cheng <bin.cheng@arm.com>
11411 * tree-vectorizer.h (struct dr_with_seg_len): Remove class
11413 * tree-vect-data-refs.c (operator ==): Handle DR_OFFSET directly,
11414 rather than OFFSET.
11415 (comp_dr_with_seg_len_pair): Ditto.
11416 (vect_prune_runtime_alias_test_list): Ditto. Also Canonicalize
11417 struct dr_with_seg_len_pair against DR_OFFSET.
11418 * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks): Handle
11419 DR_OFFSET directly.
11421 2016-06-17 Szabolcs Nagy <szabolcs.nagy@arm.com>
11423 * config/aarch64/geniterators.sh: Handle parenthesised conditions.
11425 2016-06-16 John David Anglin <danglin@gcc.gnu.org>
11427 * config/pa/pa.c (pa_output_pic_pcrel_sequence): New.
11428 (pa_output_lbranch): Use pa_output_pic_pcrel_sequence.
11429 (pa_output_millicode_call): Likewise.
11430 (pa_output_call): Likewise.
11431 (pa_output_indirect_call): Likewise.
11432 (pa_asm_output_mi_thunk): Likewise.
11434 2016-06-16 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
11436 * doc/invoke.texi (x86 Options): Fix -mno-fp-ret-in-387 typo.
11438 2016-06-16 Martin Liska <mliska@suse.cz>
11440 * predict.c (combine_predictions_for_insn): When we find a first
11441 match predictor, we should consider just predictors with
11442 PRED_FLAG_FIRST_MATCH. Print either first match (if any) or
11443 DS theory predictor.
11444 (combine_predictions_for_bb): Likewise.
11446 2016-06-16 Jakub Jelinek <jakub@redhat.com>
11448 * gimplify.c (gimplify_scan_omp_clauses): Handle COMPONENT_REFs
11449 with base of reference to struct.
11451 2016-06-16 Uros Bizjak <ubizjak@gmail.com>
11453 * doc/invoke.texi (x86 Options): Document -m80387 and -mhard-float.
11455 2016-06-16 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
11458 * config/avr/avr.c (avr_asm_init_sections): Remove setup of
11459 progmem_swtable_section.
11460 (progmem_swtable_section): Remove.
11461 (avr_asm_function_rodata_section): Remove.
11462 (TARGET_ASM_FUNCTION_RODATA_SECTION): Remove.
11463 * config/avr/avr.h (JUMP_TABLES_IN_TEXT_SECTION: Define to 1.
11465 2016-06-16 Jocelyn Mayer <l_indien@magic.fr>
11467 * config/i386/driver-i386.c (host_detect_local_cpu): Set
11468 PROCESSOR_K8 for signature_CENTAUR_ebx with has_longmode.
11469 <case PROCESSOR_K8>: Pass nano-3000, nano, eden-x2 or k8 for
11470 signature_CENTAUR_ebx.
11471 * config/i386/i386.c (ix86_option_override_internal): Add
11472 definitions for VIA c7, samuel-2, nehemiah, esther, eden-x2, eden-x4,
11473 nano, nano-1000, nano-2000, nano-3000, nano-x2 and nano-x4.
11474 * doc/invoke.texi (x86 Options): Document new VIA -march entries.
11476 2016-06-16 Martin Liska <mliska@suse.cz>
11478 * predict.def: Add fortran loop preheader predictor.
11479 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Properly
11480 fold IFN_BUILTIN_EXPECT with a known constant argument.
11482 2016-06-16 Martin Liska <mliska@suse.cz>
11484 * predict.def: Add 'Fortran' to display text of all
11485 PRED_FORTRAN_* predictors.
11487 2016-06-16 Uros Bizjak <ubizjak@gmail.com>
11490 * config/ia64/ia64.c (enum ia64_builtins) [IA64_BUILTIN_NANQ]: New.
11491 [IA64_BUILTIN_NANSQ]: Ditto.
11492 (ia64_fold_builtin): New function.
11493 (TARGET_FOLD_BUILTIN): New define.
11494 (ia64_init_builtins) Declare const_string_type node.
11495 Add __builtin_nanq and __builtin_nansq builtin functions.
11496 (ia64_expand_builtin): Handle IA64_BUILTIN_NANQ and IA64_BUILTIN_NANSQ.
11498 2016-06-16 Nick Clifton <nickc@redhat.com>
11500 * config/msp430/msp430-opts.h (msp430_hwmult_types): Add
11501 MSP430_HWMULT_ prefix to enum values.
11502 (msp430_regions): Add MSP430_REGION_ prefix to enum values.
11503 * config/msp430/msp430.c: Update use of enum values.
11504 * config/msp430/msp430.md: Likewise.
11505 * config/msp430/msp430.opt: Likewise.
11507 2016-06-16 Jan Hubicka <hubicka@ucw.cz>
11509 * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Fix estimation
11510 of comparsions in the last iteration.
11512 2016-06-16 Claudiu Zissulescu <claziss@synopsys.com>
11513 Joern Rennecke <joern.rennecke@embecosm.com>
11515 * config/arc/arc.c (arc_print_operand_address): Handle pc-relative
11517 (arc_needs_pcl_p): Add GOTOFFPC.
11518 (arc_legitimate_pic_addr_p): Likewise.
11519 (arc_output_pic_addr_const): Likewise.
11520 (arc_legitimize_pic_address): Generate a pc-relative address using
11522 (arc_output_libcall): Use @pcl syntax.
11523 (arc_delegitimize_address_0): Delegitimize ARC_UNSPEC_GOTOFFPC.
11524 * config/arc/arc.md ("unspec"): Add ARC_UNSPEC_GOTOFFPC.
11525 (*movsi_insn): Use @pcl syntax.
11526 (doloop_begin_i): Likewise.
11528 2016-06-16 Martin Liska <mliska@suse.cz>
11530 * predict.def: Define a new predictor.
11532 2016-06-16 Claudiu Zissulescu <claziss@synopsys.com>
11534 * config/arc/arc.opt (mtp-regno): Update text.
11536 2016-06-16 Renlin Li <renlin.li@arm.com>
11538 * config/aarch64/aarch64.c (aarch64_legitimize_address): Fix a typo.
11540 2016-06-16 Jakub Jelinek <jakub@redhat.com>
11543 * config/i386/i386.md (setcc + movzbl peephole2): Use reg_set_p.
11544 (setcc + and peephole2): Likewise.
11546 PR rtl-optimization/71532
11547 * cse.c (cse_insn): For const/pure calls, invalidate argument passing
11550 2016-06-15 Michael Meissner <meissner@linux.vnet.ibm.com>
11552 * config/rs6000/vsx.md (VSINT_84): Add DImode to enable loading
11553 DImode constants with XXSPLTIB in vector registers.
11554 (vsx_extract_<mode>, V2DImode/V2DFmode): Combine both
11555 vsx_extract_<mode>_internal{1,2} into a single insn that handles
11556 direct move (both ISA 2.07 and ISA 3.0 versions), and optimizes
11557 extraction of the element at the top of the register as a scalar
11559 (vsx_extract_<mode>_internal1): Likewise.
11560 (vsx_extract_<mode>_internal2): Likewise.
11561 * config/rs6000/constraints.md (wi constraint): Remove a comment
11562 about DImode not being allowed in Altivec registers.
11563 (wB constraint): New constraint for constants that can be
11564 generated in Altivec registers with VSPLTISW/VUPKHSW.
11565 * config/rs6000/predicates.md (xxspltib_constant_split): Update
11567 (xxspltib_constant_nosplit): Likewise.
11568 * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Add
11569 support for -mupper-regs-di to enable DImode to go into Altivec
11571 (POWERPC_MASKS): Likewise.
11572 (power7 cpu): Likewise.
11573 * config/rs6000/rs6000.opt (-mupper-regs-di): Likewise.
11574 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Add support
11575 for DImode being allowed in Altivec registers. Update wi/wj
11576 constraints. Set scalar_in_vmx_p flag.
11577 (rs6000_option_override_internal): Add checks for -mupper-regs-di.
11578 (xxspltib_constant_p): Allow CONST_INT's with VOIDmode. Don't
11579 return true if we could use VSPLTISW/VUPKHSW instead of XXSPLTIB.
11580 (rs6000_opt_masks): Add -mupper-regs-di.
11581 * config/rs6000/rs6000.md (lfiwax): Update clobbers that don't use
11582 direct move to use wi and not wj.
11583 (lfiwzx): Likewise.
11584 (floatsi<mode>2_lfiwax_mem): Combine alternatives into a single
11586 (floatunssi<mode>2_lfiwzx_mem): Likewise.
11587 (fix_trunc<mode>di2_fctidz): Change second alternative to allow
11588 any VSX register, instead of just Altivec registers, to allow
11589 either operand to be an Altivec register or both.
11590 (fixuns_trunc<mode>di2_fctiduz): Likewise.
11591 (movdi_internal32): Add support for -mupper-regs-di. Add support
11592 to load constants via XXSPLTIB or VSPLTISW. Add spacing to allow
11593 the alternatives and attributes to be lined up to be easier to
11595 (movdi_internal64): Likewise.
11596 (64-bit DImode splitters): Change predicates to only split loading
11597 up GPR registers. Add splits for using XXSPLTIB or VSPLTISW to
11598 load constants in ISA 3.0 or ISA 2.07 respectively.
11599 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
11600 -mupper-regs-di. Update -mupper-regs-df and -mupper-regs-sf to
11601 mention -mcpu=power9 sets these options.
11602 * doc/md.texi (PowerPC and IBM RS6000 constraints): Document the
11605 2016-06-15 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
11608 * config/avr/avr.c (avr_set_current_function): Warn misspelled
11609 interrupt/ signal handler if -Wmisspelled-isr flag is enabled.
11610 * config/avr/avr.opt (Wmisspelled-isr): New warning flag. Enabled
11611 by default to warn misspelled interrupt/ signal handler.
11612 * doc/invoke.texi (AVR Options): Document it. Update description
11613 for -nodevicelib option.
11615 2016-06-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11617 * config/aarch64/aarch64-simd.md (aarch64_<sur>shll_n<mode>): Clean
11618 up parentheses. Use GET_MODE_UNIT_BITSIZE.
11619 (aarch64_<sur>shll2_n<mode>): Likewise.
11621 2016-06-15 Ilya Enkovich <ilya.enkovich@intel.com>
11623 PR middle-end/71529
11624 * ipa-chkp.c (chkp_build_instrumented_fndecl): Fix
11625 DECL_CONTEXT for copied arguments.
11627 2016-06-15 Alan Hayward <alan.hayward@arm.com>
11629 PR tree-optimization/71483
11630 * tree-vect-loop.c (vectorizable_live_operation): Pick correct index
11633 2016-06-15 Martin Liska <mliska@suse.cz>
11635 * predict.c (tree_predict_by_opcode): Call predict_edge_def
11636 instead of predict_edge w/o a probability.
11638 2016-06-15 Alan Hayward <alan.hayward@arm.com>
11640 PR tree-optimization/71439
11641 * tree-vect-loop.c (vect_analyze_loop_operations): Additional check for
11644 2016-06-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11646 * ifcvt.c (bb_ok_for_noce_multiple_sets): Allow simple lowpart
11647 register subregs in SET_SRC.
11649 2016-06-15 Richard Biener <rguenther@suse.de>
11651 * tree-vect-stmts.c (vectorizable_store): Remove strided grouped
11652 store restrictions.
11654 2016-06-15 Richard Biener <rguenther@suse.de>
11656 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Do
11657 not consider dependences between accesses that belong to the
11659 (vect_analyze_data_ref_dependences): Do not analyze read-read
11660 or self-dependences.
11662 2016-06-14 David Malcolm <dmalcolm@redhat.com>
11664 * spellcheck-tree.c: Include spellcheck-tree.h rather than
11666 (find_closest_identifier): Reimplement in terms of
11667 best_match<tree,tree>.
11668 * spellcheck-tree.h: New file.
11669 * spellcheck.c (struct edit_distance_traits<const char *>): New
11671 (find_closest_string): Reimplement in terms of
11672 best_match<const char *, const char *>.
11673 * spellcheck.h (levenshtein_distance): Move prototype of tree-based
11674 overload to spellcheck-tree.h.
11675 (find_closest_identifier): Likewise.
11676 (struct edit_distance_traits<T>): New template.
11677 (class best_match): New class.
11679 2016-06-14 David Malcolm <dmalcolm@redhat.com>
11681 * selftest-run-tests.c (selftest::run_tests): Call
11682 selftest::spellcheck_tree_c_tests.
11683 * selftest.h (selftest::spellcheck_tree_c_tests): New decl.
11684 * spellcheck-tree.c: Include selftest.h and stringpool.h.
11685 (selftest::test_find_closest_identifier): New function.
11686 (selftest::spellcheck_tree_c_tests): New function.
11687 * spellcheck.c (selftest::test_find_closest_string): Verify that
11688 the order of the vec does not affect the results for this case.
11689 (selftest::test_data): New array.
11690 (selftest::test_metric_conditions): New function.
11691 (selftest::spellcheck_c_tests): Add a test of case-comparison.
11692 Call selftest::test_metric_conditions.
11694 2016-06-14 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
11696 * config/rs6000/rs6000-builtin.def (commentary): Typo.
11697 (BU_P9_MISC_1): Likewise.
11698 (BU_P9_64BIT_MISC_0): Likewise.
11699 (BU_P9_MISC_0): Likewise.
11701 2016-06-14 David Malcolm <dmalcolm@redhat.com>
11703 * gcc-rich-location.c
11704 (gcc_rich_location::add_fixit_misspelled_id): New method.
11705 * gcc-rich-location.h
11706 (gcc_rich_location::add_fixit_misspelled_id): Add decl.
11708 2016-06-14 Andreas Tobler <andreast@gcc.gnu.org>
11710 * config/arm/freebsd.h: Only enable unaligned access for armv6 on
11711 FreeBSD 11 and above.
11713 2016-06-14 Uros Bizjak <ubizjak@gmail.com>
11715 * config/i386/i386.md (signbittf2): Emit sse_movmskps for TARGET_SSE.
11717 2016-06-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11719 * expmed.h: Close parenthesis in "at your option" in copyright
11721 * lower-subreg.h: Likewise.
11723 2016-06-14 Richard Biener <rguenther@suse.de>
11725 PR middle-end/71526
11726 * genmatch.c (expr::gen_transform): Use in_type for comparisons
11729 2015-06-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11731 * config/aarch64/aarch64.c (aarch64_mask_and_shift_for_ubfiz_p):
11733 (aarch64_rtx_costs): Use it. Rewrite CONST_INT_P (op1) case to handle
11734 mask+shift version.
11735 * config/aarch64/aarch64-protos.h (aarch64_mask_and_shift_for_ubfiz_p):
11737 * config/aarch64/aarch64.md (*andim_ashift<mode>_bfiz): Replace
11738 matching condition with aarch64_mask_and_shift_for_ubfiz_p.
11740 2016-06-14 Richard Biener <rguenther@suse.de>
11742 PR tree-optimization/71522
11743 * tree-ssa.c (non_rewritable_lvalue_p): Do not rewrite non-float
11744 copying into float copying.
11746 2016-06-14 Jakub Jelinek <jakub@redhat.com>
11748 PR tree-optimization/71520
11749 * tree-ssa-tail-merge.c (find_duplicate): Handle labels.
11750 (replace_block_by): Move user labels from bb1 to bb2.
11752 2016-06-14 Richard Biener <rguenther@suse.de>
11754 PR middle-end/71310
11756 * expr.h (get_bit_range): Declare.
11757 * expr.c (get_bit_range): Export.
11758 * fold-const.c (optimize_bit_field_compare): Use get_bit_range and
11759 word_mode again to constrain the bitfield access.
11761 2016-06-14 Richard Biener <rguenther@suse.de>
11763 PR tree-optimization/71521
11764 * tree-vrp.c (extract_range_from_binary_expr_1): Guard
11765 division int_const_binop against zero divisor.
11767 2016-06-13 Uros Bizjak <ubizjak@gmail.com>
11769 * config/i386/i386.md (signbittf2): New expander.
11770 * config/i386/sse.md (ptesttf2): New insn pattern.
11772 2016-06-13 David Malcolm <dmalcolm@redhat.com>
11775 * input.c (selftest::test_reading_source_line): Avoid reading from
11776 __FILE__ by creating a tempfile with known content and reading
11779 2016-06-13 David Malcolm <dmalcolm@redhat.com>
11781 * pretty-print.c (assert_pp_format_colored): Skip the test if
11783 (test_pp_format): Remove comment about GCC_COLORS.
11785 2016-06-13 David Malcolm <dmalcolm@redhat.com>
11787 * input.c (test_reading_source_line): Use SELFTEST_LOCATION.
11788 * pretty-print.c (assert_pp_format_va): Add location param and use
11789 it with ASSERT_STREQ_AT.
11790 (assert_pp_format): Add location param and pass it to
11791 assert_pp_format_va.
11792 (assert_pp_format_colored): Likewise.
11793 (ASSERT_PP_FORMAT_1): New.
11794 (ASSERT_PP_FORMAT_2): New.
11795 (ASSERT_PP_FORMAT_3): New.
11796 (test_pp_format): Provide SELFTEST_LOCATION throughout, either
11797 explicitly, or implicitly via the above macros.
11798 * selftest.c (selftest::pass): Use a selftest::location rather
11799 than file and line.
11800 (selftest::fail): Likewise. Print the function name.
11801 (selftest::fail_formatted): Likewise.
11802 (selftest::assert_streq): Use a selftest::location rather than
11804 * selftest.h (selftest::location): New struct.
11805 (SELFTEST_LOCATION): New macro.
11806 (selftest::pass): Accept a const location & rather than file
11808 (selftest::fail): Likewise.
11809 (selftest::fail_formatted): Likewise.
11810 (selftest::assert_streq): Likewise.
11811 (ASSERT_TRUE): Update for above changes, using SELFTEST_LOCATION.
11812 (ASSERT_FALSE): Likewise.
11813 (ASSERT_EQ): Likewise.
11814 (ASSERT_NE): Likewise.
11815 (ASSERT_STREQ): Likewise.
11816 (ASSERT_PRED1): Likewise.
11817 (ASSERT_STREQ_AT): New macro.
11819 2016-06-13 David Malcolm <dmalcolm@redhat.com>
11821 * selftest.c (selftest::fail_formatted): New function.
11822 (selftest::assert_streq): New function.
11823 * selftest.h (selftests::fail_formatted): New decl.
11824 (selftest::assert_streq): New decl.
11825 (ASSERT_STREQ): Reimplement in terms of selftest::assert_streq.
11827 2016-06-13 Jeff Law <law@redhat.com>
11829 PR tree-optimization/71403
11830 * tree-ssa-threadbackward.c
11831 (convert_and_register_jump_thread_path): No longer accept reference
11832 to path. Do not pop items off the path anymore.
11833 (fsm_find_control_statement_thread_paths): Do not allow threading
11834 to a deeper loop nest. Pop the last item off the path here rather
11835 than in convert_and_register_jump_thread_path.
11837 2016-06-13 Evandro Menezes <e.menezes@samsung.com>
11838 Wilco Dijkstra <Wilco.Dijkstra@arm.com>
11840 [AArch64] Emit division using the Newton series
11842 * config/aarch64/aarch64-protos.h
11843 (cpu_approx_modes): Add new member "division".
11844 (aarch64_emit_approx_div): Declare new function.
11845 * config/aarch64/aarch64.c
11846 (generic_approx_modes): New member "division".
11847 (exynosm1_approx_modes): Likewise.
11848 (xgene1_approx_modes): Likewise.
11849 (aarch64_emit_approx_div): Define new function.
11850 * config/aarch64/aarch64.md ("div<mode>3"): New expansion.
11851 * config/aarch64/aarch64-simd.md ("div<mode>3"): Likewise.
11852 * config/aarch64/aarch64.opt (-mlow-precision-div): Add new option.
11853 * doc/invoke.texi (-mlow-precision-div): Describe new option.
11855 2016-06-13 Evandro Menezes <e.menezes@samsung.com>
11856 Wilco Dijkstra <wilco.dijkstra@arm.com>
11858 [AArch64] Emit square root using the Newton series
11860 * config/aarch64/aarch64-protos.h
11861 (aarch64_emit_approx_rsqrt): Replace with new function
11862 "aarch64_emit_approx_sqrt".
11863 (cpu_approx_modes): New member "sqrt".
11864 * config/aarch64/aarch64.c
11865 (generic_approx_modes): New member "sqrt".
11866 (exynosm1_approx_modes): Likewise.
11867 (xgene1_approx_modes): Likewise.
11868 (aarch64_emit_approx_rsqrt): Replace with new function
11869 "aarch64_emit_approx_sqrt".
11870 (aarch64_override_options_after_change_1): Handle new option.
11871 * config/aarch64/aarch64-simd.md
11872 (rsqrt<mode>2): Use new function instead.
11873 (sqrt<mode>2): New expansion and insn definitions.
11874 * config/aarch64/aarch64.md: Likewise.
11875 * config/aarch64/aarch64.opt
11876 (mlow-precision-sqrt): Add new option description.
11877 * doc/invoke.texi (mlow-precision-sqrt): Likewise.
11879 2016-06-13 Evandro Menezes <e.menezes@samsung.com>
11881 [AArch64] Add more choices for the reciprocal square root approximation
11883 Allow a target to prefer such operation depending on the operation mode.
11885 * config/aarch64/aarch64-protos.h
11886 (AARCH64_APPROX_MODE): New macro.
11887 (AARCH64_APPROX_{NONE,ALL}): Likewise.
11888 (cpu_approx_modes): New structure.
11889 (tune_params): New member "approx_modes".
11890 * config/aarch64/aarch64-tuning-flags.def
11891 (AARCH64_EXTRA_TUNE_APPROX_RSQRT): Remove macro.
11892 * config/aarch64/aarch64.c
11893 (generic_approx_modes): New core "cpu_approx_modes" structure.
11894 (exynosm1_approx_modes): Likewise.
11895 (xgene1_approx_modes): Likewise.
11896 (generic_tunings): New member "approx_modes".
11897 (cortexa35_tunings): Likewise.
11898 (cortexa53_tunings): Likewise.
11899 (cortexa57_tunings): Likewise.
11900 (cortexa72_tunings): Likewise.
11901 (exynosm1_tunings): Likewise.
11902 (thunderx_tunings): Likewise.
11903 (xgene1_tunings): Likewise.
11904 (use_rsqrt_p): New argument for the mode and use new member from
11906 (aarch64_builtin_reciprocal): Devise mode from builtin.
11907 (aarch64_optab_supported_p): New argument for the mode.
11908 * doc/invoke.texi (-mlow-precision-recip-sqrt): Reword description.
11910 2016-06-13 Kelvin Nilsen <kelvin@gcc.gnu.org>
11912 * config/rs6000/rs6000.h (RS6000_BTM_COMMON): Add the
11913 RS6000_BTM_MODULO flag into the set of flags that are considered
11914 to be part of the common configuration.
11916 2016-06-13 Kelvin Nilsen <kelvin@gcc.gnu.org>
11918 * config/rs6000/altivec.h (vec_absd): New macro for vector absolute
11919 difference unsigned.
11920 (vec_absdb): New macro for vector absolute difference unsigned
11922 (vec_absdh): New macro for vector absolute difference unsigned
11924 (vec_absdw): New macro for vector absolute difference unsigned word.
11925 * config/rs6000/altivec.md (UNSPEC_VADU): New value.
11926 (vadu<mode>3): New insn.
11927 (*p9_vadu<mode>3): New insn.
11928 * config/rs6000/rs6000-builtin.def (vadub): New built-in
11930 (vaduh): New built-in definition.
11931 (vaduw): New built-in definition.
11932 (vadu): New overloaded built-in definition.
11933 (vadub): New overloaded built-in definition.
11934 (vaduh): New overloaded built-in definition.
11935 (vaduw): New overloaded built-in definition.
11936 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
11937 overloaded vector absolute difference unsigned functions.
11938 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
11939 the ISA 3.0 vector absolute difference unsigned built-in functions.
11941 2016-06-13 Eric Botcazou <ebotcazou@adacore.com>
11943 * tree-ssa-sccvn.c (vn_reference_lookup_3): Use a uniform test and
11944 update shared_lookup_references only once after changing operands.
11946 2016-06-13 Thomas Schwinge <thomas@codesourcery.com>
11948 PR middle-end/71373
11949 * tree-nested.c (convert_nonlocal_omp_clauses)
11950 (convert_local_omp_clauses): Document missing OMP_CLAUSE_*.
11952 * tree-cfg.c (edge_to_cases_cleanup): Fix CASE_CHAIN typo.
11953 * tree.def (CASE_LABEL_EXPR): Likewise.
11955 2016-06-13 Bernd Edlinger <bernd.edlinger@hotmail.de>
11958 * input.c (test_builtins): Fix an assertion.
11960 2016-06-13 Uros Bizjak <ubizjak@gmail.com>
11962 * config/i386/i386.md (paritydi2): Use ix86_expand_setcc.
11963 (paritysi2): Ditto.
11965 (isinf<mode>2): Ditto.
11967 2016-06-13 Uros Bizjak <ubizjak@gmail.com>
11969 * ggc-tests.c (test_finalization): Only test need_finalization_p
11970 for GCC_VERSION >= 4003.
11972 2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
11974 * config/s390/vecintrin.h: Fix file description in comment.
11976 2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
11978 * config/s390/s390-builtin-types.def: Change builtin type naming
11979 scheme to match builtin-types.def.
11981 2016-06-13 Marc Glisse <marc.glisse@inria.fr>
11983 * fold-const.c (optimize_minmax_comparison): Remove.
11984 (fold_comparison): Remove call to the above.
11985 * match.pd (MIN (X, Y) == X, MIN (X, 5) == 0, MIN (X, C1) < C2):
11986 New transformations.
11988 2016-06-13 Alan Hayward <alan.hayward@arm.com>
11990 PR tree-optimization/71416
11991 * tree-vect-loop.c (vectorizable_live_operation): Let worklist have
11994 2016-06-13 Martin Liska <mliska@suse.cz>
11996 * predict.c (enum predictor_reason): Prefix enum with REASON_.
11997 (combine_predictions_for_insn): Likewise.
11998 (prune_predictions_for_bb): Likewise.
11999 (combine_predictions_for_bb): Likewise.
12001 2016-06-13 Richard Biener <rguenther@suse.de>
12003 PR tree-optimization/71505
12004 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Make
12005 assert match comment.
12007 2016-06-13 Marek Polacek <polacek@redhat.com>
12009 PR middle-end/71476
12010 * gimplify.c (maybe_warn_switch_unreachable): Factored out of
12011 gimplify_switch_expr.
12012 (warn_switch_unreachable_r): New function.
12014 2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
12017 * config/s390/s390.c (s390_expand_builtin): Increase MAX_ARGS by
12020 2016-06-13 Richard Biener <rguenther@suse.de>
12022 PR middle-end/64516
12023 * fold-const.c (fold_unary_loc): Preserve alignment when
12024 folding a VIEW_CONVERT_EXPR into a MEM_REF.
12026 2016-06-13 Martin Liska <mliska@suse.cz>
12029 * toplev.c (process_options): Do not enable -fcheck-pointer-bounds
12030 w/ -fsanitize=bounds.
12032 2016-06-12 Uros Bizjak <ubizjak@gmail.com>
12034 * config/i386/i386.c (ix86_init_builtins): Calculate
12035 FLOAT128_FTYPE_CONST_STRING function type only once.
12036 * doc/extend.texi (x86 Built-in Functions): Update text, __float128
12037 built-in functions are available for x86-32 and x86-64 targets.
12039 2016-06-12 Uros Bizjak <ubizjak@gmail.com>
12042 * config/i386/i386.i386-builtin-types.def (CONST_STRING):
12043 New primitive type.
12044 (FLOAT128_FTYPE_CONST_STRING): New function type.
12045 * config/i386/i386.c (enum ix86_builtins) [IX86_BUILTIN_NANQ]: New.
12046 [IX86_BUILTIN_NANSQ]: Ditto.
12047 (ix86_fold_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
12048 (ix86_init_builtin_types): Declare const_string_type_node.
12049 (ix86_init_builtins): Add __builtin_nanq and __builtin_nansq
12051 (ix86_expand_builtin): Handle IX86_BUILTIN_NANQ and IX86_BUILTIN_NANSQ.
12052 * doc/extend.texi (x86 Built-in Functions): Document
12053 __builtin_nanq and __builtin_nansq.
12055 2016-06-11 Jiong Wang <jiong.wang@arm.com>
12058 * config/arm/arm-protos.h (arm_attr_length_pop_multi): New declaration.
12059 * config/arm/arm.c (arm_attr_length_pop_multi): New function to return
12060 length for pop patterns.
12061 (arm_attr_length_push_multi): Update comments.
12062 * config/arm/arm.md (*load_multiple_with_writeback): Set "length"
12064 (*pop_multiple_with_writeback_and_return): Likewise.
12065 (*pop_multiple_with_return): Likewise.
12067 2016-06-11 Segher Boessenkool <segher@kernel.crashing.org>
12069 PR middle-end/71310
12070 * fold-const.c (optimize_bit_field_compare): Don't try to use
12071 word_mode unconditionally for reading the bit field, look at
12072 DECL_BIT_FIELD_REPRESENTATIVE instead.
12074 2016-06-11 Kugan Vivekanandarajah <kuganv@linaro.org>
12076 PR middle-end/71478
12077 * tree-ssa-reassoc.c (reassociate_bb): Remove (-1) from ops list for
12078 vector integer type.
12080 2016-06-10 Jakub Jelinek <jakub@redhat.com>
12082 PR middle-end/71494
12083 * tree-nested.c (convert_nonlocal_reference_stmt): For GIMPLE_GOTO
12084 without LABEL_DECL, set *handled_ops_p to false instead of true.
12086 2016-06-10 Martin Sebor <msebor@redhat.com>
12089 * builtin-attrs.def (ATTR_NOTHROW_NONNULL_LEAF_LIST): New macro.
12090 (ATTR_NOTHROW_NONNULL_TYPEGENERIC_LEAF): Same.
12091 * builtins.def (BUILT_IN_SADD_OVERFLOW, BUILT_IN_SADDL_OVERFLOW): Use
12093 (BUILT_IN_SADDLL_OVERFLOW, BUILT_IN_SSUB_OVERFLOW): Same.
12094 (BUILT_IN_SSUBL_OVERFLOW, BUILT_IN_SSUBLL_OVERFLOW): Same.
12095 (BUILT_IN_SMUL_OVERFLOW, BUILT_IN_SMULL_OVERFLOW): Same.
12096 (BUILT_IN_SMULLL_OVERFLOW, BUILT_IN_UADD_OVERFLOW): Same.
12097 (BUILT_IN_UADDL_OVERFLOW, BUILT_IN_UADDLL_OVERFLOW): Same.
12098 (BUILT_IN_USUB_OVERFLOW, BUILT_IN_USUBL_OVERFLOW): Same.
12099 (BUILT_IN_USUBLL_OVERFLOW, BUILT_IN_UMUL_OVERFLOW): Same.
12100 (BUILT_IN_UMULL_OVERFLOW, BUILT_IN_UMULLL_OVERFLOW): Same.
12102 2016-06-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
12104 * config/arm/arm.h (pool_vector_label,
12105 return_used_this_function): Remove.
12107 2016-06-10 Jeff Law <law@redhat.com>
12109 PR tree-optimization/71335
12110 * tree-ssa-threadbackward.c (profitable_jump_thread_path): Filter out
12111 zero length paths here.
12112 (convert_and_register_jump_thread_path): Remove hacks related to
12113 duplicated blocks in the jump thread path.
12114 (fsm_find_control_statement_thread_paths): Avoid putting the same
12115 block on the thread path twice, but ensure the thread path is
12116 unchanged from the caller's point of view.
12118 2016-06-10 Jan Hubicka <hubicka@ucw.cz>
12120 * predict.c (predict_loops): Remove PRED_LOOP_BRANCH.
12121 * predict.def (PRED_LOOP_BRANCH): Remove.
12123 2016-06-10 David Malcolm <dmalcolm@redhat.com>
12125 * Makefile.in (OBJS): Add ggc-tests.o.
12126 (GTFILES): Add ggc-tests.c.
12127 * ggc-tests.c: New file.
12128 * selftest-run-tests.c (selftest::run_tests): Call
12129 selftest::ggc_tests_c_tests.
12130 * selftest.h (selftest::ggc_tests_c_tests): New prototype.
12132 2016-06-10 Alexander Monakov <amonakov@ispras.ru>
12134 * match.pd (-1 / B < A): Use :c to avoid pattern duplication.
12136 2016-06-10 Maxim Ostapenko <m.ostapenko@samsung.com>
12139 * varasm.c (place_block_symbol): Adjust alignment for asan protected
12140 STRING_CSTs even if TREE_CONSTANT_POOL_ADDRESS_P.
12142 2016-06-10 Jan Hubicka <hubicka@ucw.cz>
12144 * profile.c: Include cfgloop.h.
12145 (branch_prob): Compute estimated number of iterations.
12146 * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Do not
12147 recompute estimate number of iterations from profile.
12149 2016-06-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
12151 PR inline-asm/68843
12152 * reg-stack.c (check_asm_stack_operands): Explicit input arguments
12153 must be grouped on top of stack. Don't force early clobber
12154 on ordinary reg outputs.
12156 2016-06-10 Richard Biener <rguenther@suse.de>
12158 * targhooks.c (default_builtin_vectorization_cost): Adjust
12159 vec_construct cost.
12161 2016-06-10 Richard Biener <rguenther@suse.de>
12163 * gimple-fold.c (gimple_fold_builtin_memory_op): Make sure
12164 to fold the RHS to a constant if possible.
12166 2016-06-10 Thomas Schwinge <thomas@codesourcery.com>
12168 PR middle-end/71373
12169 * tree-nested.c (convert_nonlocal_omp_clauses)
12170 (convert_local_omp_clauses): Handle OMP_CLAUSE_ASYNC,
12171 OMP_CLAUSE_WAIT, OMP_CLAUSE_INDEPENDENT, OMP_CLAUSE_AUTO,
12172 OMP_CLAUSE__CACHE_, OMP_CLAUSE_TILE.
12174 * gimplify.c (gimplify_adjust_omp_clauses): Discard
12176 * omp-low.c (scan_sharing_clauses): Don't expect OMP_CLAUSE_TILE.
12178 * omp-low.c (scan_sharing_clauses): Don't expect
12179 OMP_CLAUSE__CACHE_.
12181 2016-06-10 Alan Hayward <alan.hayward@arm.com>
12183 PR tree-optimization/71407
12184 PR tree-optimization/71416
12185 * tree-vect-loop.c (vectorizable_live_operation): Use vectype for
12186 BIT_FIELD_REF type.
12188 2016-06-10 Richard Biener <rguenther@suse.de>
12190 PR middle-end/71477
12191 * cfgloop.c (alloc_loop): Initialize nb_iterations_likely_upper_bound.
12193 2016-06-09 Eric Botcazou <ebotcazou@adacore.com>
12195 * df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.
12197 2016-06-09 Vladimir Makarov <vmakarov@redhat.com>
12198 Jiong Wang <jiong.wang@arm.com>
12200 PR rtl-optimization/70751
12201 * lra-constraints.c (process_alt_operands): Recognize Non-pseudo
12202 spilled into memory.
12204 2016-06-09 Jonathan Yong <10walls@gmail.com>
12207 2015-09-21 Jonathan Yong <10walls@gmail.com>
12209 * config/i386/cygwin.h (STARTFILE_SPEC): Explicitly search
12210 sysroot/usr/lib/32api for additional win32 libraries,
12211 fixes failing Cygwin bootstrapping.
12213 2016-06-09 Marcin Baczyński <marbacz@gmail.com>
12215 * diagnostic.h (diagnostic_line_cutoff, diagnostic_flush_buffer):
12218 2016-06-09 David Malcolm <dmalcolm@redhat.com>
12221 * pretty-print.c (pp_indent): Specify that %p is printed in a
12222 host-dependent manner.
12223 (test_pp_format): Remove the test for %p.
12225 2016-06-09 Maciej W. Rozycki <macro@imgtec.com>
12227 * config/mips/mips.c (mips_output_jump): Fix formatting.
12229 2016-06-09 Richard Biener <rguenther@suse.de>
12231 PR tree-optimization/71462
12232 * tree-ssa-loop-manip.c (find_uses_to_rename): Guard against
12235 2016-06-09 Martin Liska <mliska@suse.cz>
12237 * predict.c (dump_prediction): Add new argument.
12238 (enum predictor_reason): New enum.
12239 (struct predictor_hash): New struct.
12240 (predictor_hash::hash): New function.
12241 (predictor_hash::equal): Likewise.
12242 (not_removed_prediction_p): New function.
12243 (prune_predictions_for_bb): Likewise.
12244 (combine_predictions_for_bb): Prune predictions.
12246 2016-06-09 Martin Liska <mliska@suse.cz>
12248 * predict.c (filter_predictions): New function.
12249 (remove_predictions_associated_with_edge): Use the filter
12251 (equal_edge_p): New function.
12253 2016-06-09 Stefan Bruens <stefan.bruens@rwth-aachen.de>
12255 * doc/invoke.texi (ARM Options): Use lexicographical ordering.
12256 Correct usage of @samp vs @option, add @samp where appropriate.
12257 Add -march={armv6k,armv6z,arm6zk}, remove -march=ep9312.
12258 Add armv6s-m and document it, as it is no official ARM name.
12260 2016-06-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12262 * ifcvt.c (struct noce_if_info): Add transform_name field.
12263 (noce_try_move): Set if_info->transform_name to the function name.
12264 (noce_try_ifelse_collapse): Likewise.
12265 (noce_try_store_flag): Likewise.
12266 (noce_try_inverse_constants): Likewise.
12267 (noce_try_store_flag_constants): Likewise.
12268 (noce_try_addcc): Likewise.
12269 (noce_try_store_flag_mask): Likewise.
12270 (noce_try_cmove): Likewise.
12271 (noce_try_cmove_arith): Likewise.
12272 (noce_try_minmax): Likewise.
12273 (noce_try_abs): Likewise.
12274 (noce_try_sign_mask): Likewise.
12275 (noce_try_bitop): Likewise.
12276 (noce_convert_multiple_sets): Likewise.
12277 (noce_process_if_block): Print if_info->transform_name to
12278 dump_file if transformation succeeded.
12280 2016-06-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12282 * config/arm/cortex-a57.md (cortex_a57_alu):
12285 2016-06-08 Martin Sebor <msebor@redhat.com>
12286 Jakub Jelinek <jakub@redhat.com>
12290 * builtins.def (BUILT_IN_ADD_OVERFLOW_P, BUILT_IN_SUB_OVERFLOW_P,
12291 BUILT_IN_MUL_OVERFLOW_P): New builtins.
12292 * builtins.c: Include gimple-fold.h.
12293 (fold_builtin_arith_overflow): Handle
12294 BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
12295 (fold_builtin_3): Likewise.
12296 * doc/extend.texi (Integer Overflow Builtins): Document
12297 __builtin_{add,sub,mul}_overflow_p.
12299 2016-06-08 Jose E. Marchesi <jose.marchesi@oracle.com>
12301 * config/sparc/driver-sparc.c (cpu_names): Fix the entry for the
12302 SPARC-M7 and add an entry for SPARC-S7 cpus (Sonoma).
12304 2016-06-08 Alan Lawrence <alan.lawrence@arm.com>
12306 * config/aarch64/aarch64.c (aarch64_function_arg_alignment):
12307 Rewrite, looking one level down for records and arrays.
12309 2016-06-08 David Malcolm <dmalcolm@redhat.com>
12311 * pretty-print.c: Include "selftest.h".
12312 (pp_format): Fix comment.
12313 (identifier_to_locale): Likewise.
12314 (selftest::test_basic_printing): New function.
12315 (selftest::assert_pp_format): New function.
12316 (selftest::test_pp_format): New function.
12317 (selftest::pretty_print_c_tests): New function.
12318 * selftest-run-tests.c (selftest::run_tests): Call
12319 selftest::pretty_print_c_tests.
12320 * selftest.h (pretty_print_c_tests): New declaration.
12322 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
12324 * invoke.texi (max-loop-headers-insns): Document.
12325 * params.def (PARAM_MAX_LOOP_HEADER_INSNS): New.
12326 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Update comment.
12327 (ch_base::copy_headers): Use PARAM_MAX_LOOP_HEADER_INSNS.
12329 2016-06-08 Richard Biener <rguenther@suse.de>
12331 * tree-vect-stmts.c (vectorizable_load): Remove restrictions
12332 on strided SLP loads and fall back to scalar loads in case
12333 we can't chunk them.
12335 2016-06-08 Richard Biener <rguenther@suse.de>
12337 PR tree-optimization/71452
12338 * tree-ssa.c (non_rewritable_lvalue_p): Make sure that the
12339 type used for the SSA rewrite has enough precision to cover
12340 the dynamic type of the location.
12342 2016-06-08 Jakub Jelinek <jakub@redhat.com>
12343 Richard Biener <rguenther@suse.de>
12346 * fold-const.c (fold_comparison): Handle CONSTANT_CLASS_P (base0)
12347 the same as DECL_P (base0) for indirect_base0. Use equality_code
12348 in one further place.
12350 2016-06-08 Richard Sandiford <richard.sandiford@arm.com>
12352 * expmed.c (store_bit_field_1): Do not restrict a multiword op0
12353 to one word if the field is known to overlap other words.
12354 (extract_bit_field_1): Likewise.
12355 (store_split_bit_field): Remove compensating code.
12356 (extract_split_bit_field): Likewise.
12358 2016-06-08 Bernd Schmidt <bschmidt@redhat.com>
12362 * tree-ssa-strlen.c (handle_builtin_memcmp): Ignore debug insns.
12364 2016-06-08 Jiong Wang <jiong.wang@arm.com>
12366 * config/aarch64/aarch64-builtins.def (faddp): New builtins for modes in
12368 * config/aarch64/aarch64-simd.md (aarch64_faddp<mode>): New.
12369 (arch64_addpv4sf): Delete.
12370 (reduc_plus_scal_v4sf): Use "gen_aarch64_faddpv4sf" instead of
12371 "gen_aarch64_addpv4sf".
12372 * config/aarch64/arm_neon.h (vpadd_f32): Remove inline assembly. Use
12374 (vpadds_f32): Likewise.
12375 (vpaddq_f32): Likewise.
12376 (vpaddq_f64): Likewise.
12378 2016-06-08 Jiong Wang <jiong.wang@arm.com>
12380 * config/aarch64/aarch64-builtins.def (fabd): New builtins for modes
12382 * config/aarch64/aarch64-simd.md (fabd<mode>_3): Extend modes from VDQF
12383 to VALLF. Rename to "fabd<mode>3".
12384 "*fabd_scalar<mode>3): Delete.
12385 * config/aarch64/arm_neon.h (vabds_f32): Remove inline assembly.
12387 (vabdd_f64): Likewise.
12388 (vabd_f32): Likewise.
12389 (vabd_f64): Likewise.
12390 (vabdq_f32): Likewise.
12391 (vabdq_f64): Likewise.
12393 2016-06-08 Jiong Wang <jiong.wang@arm.com>
12395 * config/aarch64/aarch64-builtins.def (rsqrts): New builtins for modes
12397 * config/aarch64/aarch64-simd.md (aarch64_rsqrts_<mode>3): Rename to
12398 "aarch64_rsqrts<mode>".
12399 * config/aarch64/aarch64.c (get_rsqrts_type): Update gen* name.
12400 * config/aarch64/arm_neon.h (vrsqrtss_f32): Remove inline assembly. Use
12402 (vrsqrtsd_f64): Likewise.
12403 (vrsqrts_f32): Likewise.
12404 (vrsqrts_f64): Likewise.
12405 (vrsqrtsq_f32): Likewise.
12406 (vrsqrtsq_f64): Likewise.
12408 2016-06-08 Jiong Wang <jiong.wang@arm.com>
12410 * config/aarch64/aarch64-builtins.def (rsqrte): New builtins for modes
12412 * config/aarch64/aarch64-simd.md (aarch64_rsqrte_<mode>2): Rename to
12413 "aarch64_rsqrte<mode>".
12414 * config/aarch64/aarch64.c (get_rsqrte_type): Update gen* name.
12415 * config/aarch64/arm_neon.h (vrsqrts_f32): Remove inline assembly. Use
12417 (vrsqrted_f64): Likewise.
12418 (vrsqrte_f32): Likewise.
12419 (vrsqrte_f64): Likewise.
12420 (vrsqrteq_f32): Likewise.
12421 (vrsqrteq_f64): Likewise.
12423 2016-06-08 Jiong Wang <jiong.wang@arm.com>
12425 * config/aarch64/aarch64-builtins.def (scvtf): Register vector modes.
12427 (fcvtzs): Likewise.
12428 (fcvtzu): Likewise.
12429 * config/aarch64/aarch64-simd.md
12430 (<FCVT_F2FIXED:fcvt_fixed_insn><VDQF:mode>3): New.
12431 (<FCVT_FIXED2F:fcvt_fixed_insn><VDQ_SDI:mode>3): Likewise.
12432 * config/aarch64/arm_neon.h (vcvt_n_f32_s32): Remove inline assembly.
12434 (vcvt_n_f32_u32): Likewise.
12435 (vcvt_n_s32_f32): Likewise.
12436 (vcvt_n_u32_f32): Likewise.
12437 (vcvtq_n_f32_s32): Likewise.
12438 (vcvtq_n_f32_u32): Likewise.
12439 (vcvtq_n_f64_s64): Likewise.
12440 (vcvtq_n_f64_u64): Likewise.
12441 (vcvtq_n_s32_f32): Likewise.
12442 (vcvtq_n_s64_f64): Likewise.
12443 (vcvtq_n_u32_f32): Likewise.
12444 (vcvtq_n_u64_f64): Likewise.
12445 * config/aarch64/iterators.md (VDQ_SDI): New mode iterator.
12446 (VSDQ_SDI): Likewise.
12447 (fcvt_target): Support V4DI, V4SI and V2SI.
12448 (FCVT_TARGET): Likewise.
12450 2016-06-08 Jiong Wang <jiong.wang@arm.com>
12452 * config/aarch64/aarch64-builtins.c (TYPES_BINOP_USS): New
12453 (TYPES_BINOP_SUS): Likewise.
12454 (aarch64_simd_builtin_data): Update include file name.
12455 (aarch64_builtins): Likewise.
12456 * config/aarch64/aarch64-simd-builtins.def (scvtf): New entries
12457 for conversion between scalar float-point and fixed-point.
12459 (fcvtzs): Likewise.
12460 (fcvtzu): Likewise.
12461 * config/aarch64/aarch64.md
12462 (<FCVT_F2FIXED:fcvt_fixed_insn><GPF:mode>3: New
12463 pattern for conversion between scalar float to fixed-pointer.
12464 (<FCVT_FIXED2F:fcvt_fixed_insn><GPI:mode>: Likewise.
12465 (UNSPEC_FCVTZS): New UNSPEC enumeration.
12466 (UNSPEC_FCVTZU): Likewise.
12467 (UNSPEC_SCVTF): Likewise.
12468 (UNSPEC_UCVTF): Likewise.
12469 * config/aarch64/arm_neon.h (vcvtd_n_f64_s64): Remove inline assembly.
12471 (vcvtd_n_f64_u64): Likewise.
12472 (vcvtd_n_s64_f64): Likewise.
12473 (vcvtd_n_u64_f64): Likewise.
12474 (vcvtd_n_f32_s32): Likewise.
12475 (vcvts_n_f32_u32): Likewise.
12476 (vcvtd_n_s32_f32): Likewise.
12477 (vcvts_n_u32_f32): Likewise.
12478 * config/aarch64/iterators.md (fcvt_target): Support integer to float
12480 (FCVT_TARGET): Likewise.
12481 (FCVT_FIXED2F): New iterator.
12482 (FCVT_F2FIXED): Likewise.
12483 (fcvt_fixed_insn): New define_int_attr.
12485 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
12487 * predict.c (pass_strip_predict_hints::execute): Cleanup CFG if
12488 some statements was removed.
12490 2016-06-08 Alan Hayward <alan.hayward@arm.com>
12492 * tree-vect-data-refs.c (vect_analyze_data_refs): Remove debug newline.
12493 * tree-vect-loop-manip.c (slpeel_make_loop_iterate_ntimes): likewise.
12494 (vect_can_advance_ivs_p): likewise.
12495 (vect_update_ivs_after_vectorizer): likewise.
12496 * tree-vect-loop.c (vect_determine_vectorization_factor): likewise.
12497 (vect_analyze_scalar_cycles_1): likewise.
12498 (vect_analyze_loop_operations): likewise.
12499 (report_vect_op): likewise.
12500 (vect_is_slp_reduction): likewise.
12501 (vect_is_simple_reduction): likewise.
12502 (get_initial_def_for_induction): likewise.
12503 (vect_transform_loop): likewise.
12504 * tree-vect-patterns.c (vect_recog_dot_prod_pattern): likewise.
12505 (vect_recog_sad_pattern): likewise.
12506 (vect_recog_widen_sum_pattern): likewise.
12507 (vect_recog_widening_pattern): likewise.
12508 (vect_recog_divmod_pattern): likewise.
12509 * tree-vect-slp.c (vect-build-slp_tree_1): likewise.
12510 (vect_analyze_slp_instance): likewise.
12511 (vect_transform_slp_perm_load): likewise.
12512 (vect_schedule_slp_instance): likewise.
12514 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
12516 * predict.c (predict_iv_comparison): Mention that heuristics is broken.
12517 (return_prediction): PRED_CONST_RETURN predict return as not taken.
12518 * predict.def (PRED_CONTINUE): Change hitrate 50->67
12519 (PRED_LOOP_BRANCH): Document predictor as broken.
12520 (PRED_LOOP_EXIT): Change hitrate 91->92.
12521 (PRED_LOOP_EXTRA_EXIT): Change hitrate 91->83.
12522 (PRED_POINTER, PRED_TREE_POINTER): Change hitrate 85->70.
12523 (PRED_OPCODE_POSITIVE): Change hitrate 79->64.
12524 (PRED_OPCODE_NONEQUAL): Change hitrate 91->66.
12525 (PRED_TREE_OPCODE_POSITIVE): Change hitrate 73->64
12526 (PRED_TREE_OPCODE_NONEQUAL): Chnage hitrate 72->66
12527 (PRED_CALL): Chane hitrate 71->67.
12528 (PRED_TREE_EARLY_RETURN): Document issues, change hitrate 61->54.
12529 (PRED_GOTO): Document as unused right now.
12530 (PRED_CONST_RETURN): Change hitrate 67->69
12531 (PRED_NEGATIVE_RETURN): Change hitrate 96->98
12532 (PRED_NULL_RETURN): Change hitrate 91->90.
12533 (PRED_LOOP_IV_COMPARE_GUESS): Change hitrate to 98.
12534 (PRED_FORTRAN_FAIL_ALLOC): Change hitrate to 62; document issues.
12535 (PRED_FORTRAN_SIZE_ZERO): Change hitrate to 99.
12537 2016-06-07 Bill Seurer <seurer@linux.vnet.ibm.com>
12539 * config/rs6000/altivec.h: Add __builtin_vec_mul.
12540 * config/rs6000/rs6000-builtin.def (vec_mul): Change vec_mul to a
12541 special case Altivec builtin.
12542 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
12543 VSX_BUILTIN_VEC_MUL (replaced with special case code).
12544 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
12545 code for ALTIVEC_BUILTIN_VEC_MUL.
12546 * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
12547 for __builtin_vec_mul.
12549 2016-06-07 Peter Bergner <bergner@vnet.ibm.com>
12551 * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mhtm and
12554 2016-06-07 David Malcolm <dmalcolm@redhat.com>
12556 * spellcheck.c (selftest::test_find_closest_string): New function.
12557 (spellcheck_c_tests): Call the above.
12559 2016-06-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12561 * simplify-rtx.c (simplify_cond_clz_ctz): Delete 'mode' local variable.
12563 2016-06-07 Jakub Jelinek <jakub@redhat.com>
12565 * config/i386/sse.md (avx_vec_concat<mode>): Add v=v,vm and
12566 Yv=Yv,C alternatives.
12568 2016-06-07 Richard Biener <rguenther@suse.de>
12571 * common.opt (ffast-math): Make Optimization.
12573 2016-06-07 Simon Dardis <simon.dardis@imgtec.com>
12574 Prachi Godbole <prachi.godbole@imgtec.com>
12576 * config/mips/p5600.md (p5600_fpu_fadd): Remove checking for
12577 `fabs' and `fneg' type attributes.
12578 (p5600_fpu_fabs): Add `fmove' to the comment.
12580 2016-06-07 Jan Hubicka <hubicka@ucw.cz>
12582 * gimple.c: Include builtins.h
12583 (gimple_inexpensive_call_p): New function.
12584 * gimple.h (gimple_inexpensive_call_p): Declare.
12585 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Use it.
12586 * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Likewise;
12589 2016-06-07 Paolo Carlini <paolo.carlini@oracle.com>
12591 * diagnostic.c (diagnostic_impl, diagnostic_n_impl): New.
12592 (inform, inform_at_rich_loc, inform_n, warning, warning_at,
12593 warning_at_rich_loc, warning_n, pedwarn, permerror,
12594 permerror_at_rich_loc, error, error_n, error_at, error_at_rich_loc,
12595 sorry, fatal_error, internal_error, internal_error_no_backtrace):
12598 2016-06-07 Richard Biener <rguenther@suse.de>
12600 PR tree-optimization/71428
12601 * tree-ssa-math-opts.c (perform_symbolic_merge): Properly distinguish
12602 BIT_FIELD_REF op vs. load.
12604 2016-06-07 Richard Biener <rguenther@suse.de>
12606 PR middle-end/71423
12607 * match.pd ((X | ~Y) -> Y <= X): Properly invert the comparison
12610 2016-06-06 John David Anglin <danglin@gcc.gnu.org>
12612 * config/pa/pa.md (call): Generate indirect long calls to non-local
12613 functions on TARGET_64BIT.
12614 (call_value): Likewise.
12616 2016-06-06 John David Anglin <danglin@gcc.gnu.org>
12618 * config/pa/pa.md (call_val_reg_64bit): Remove "reg: DI " clobber from
12619 pattern and subsequent splitters.
12620 (call_val_reg_64bit_post_reload): Likewise.
12622 2016-06-07 Kugan Vivekanandarajah <kuganv@linaro.org>
12624 PR middle-end/71408
12625 * tree-ssa-reassoc.c (zero_one_operation): Fix NEGATE_EXPR operand for
12626 propagate_op_to_single_use.
12628 2016-06-07 Kugan Vivekanandarajah <kuganv@linaro.org>
12630 PR middle-end/71281
12631 * tree-ssa-reassoc.c (reassociate_bb): Set uid for negate stmt.
12633 2016-06-07 Uros Bizjak <ubizjak@gmail.com>
12635 * config/i386/i386.h (enum ix86_enitity): Add X86_DIRFLAG.
12636 (enum x86_dirflag_state): New enum.
12637 (NUM_MODES_FOR_MODE_SWITCHING): Add X86_DIRFLAG_ANY.
12638 (machine_function): Remove needs_cld.
12639 (ix86_current_function_needs_cld): Remove.
12640 * config/i386/i386.c (ix86_set_func_type): Set
12641 ix86_optimize_mode_switching[X86_DIRFLAG] to 1.
12642 (ix86_expand_prologue): Do not emit CLD here.
12643 (ix86_dirflag_mode_needed): New function.
12644 (ix86_dirflag_mode_entry): Ditto.
12645 (ix86_mode_needed): Handle X86_DIRFLAG entity.
12646 (ix86_mode_after): Ditto.
12647 (ix86_mode_entry): Ditto.
12648 (ix86_mode_exit): Ditto.
12649 (ix86_emit_mode_set): Ditto.
12650 * config/i386/i386.md (strmov_singleop): Set
12651 ix86_optimize_mode_switching[X86_DIRFLAG] to 1 for TARGET_CLD.
12652 Do not set ix86_current_function_needs_cld.
12654 (strset_singleop): Ditto.
12656 (cmpstrnqi_nz_1): Ditto.
12657 (cmpstrnqi_1): Ditto.
12658 (strlenqi_1): Ditto.
12660 2016-06-06 Jakub Jelinek <jakub@redhat.com>
12662 PR tree-optimization/71259
12663 * tree-vect-slp.c (vect_get_constant_vectors): For
12664 VECTOR_BOOLEAN_TYPE_P, return all ones constant instead of
12665 one for constant op, and use COND_EXPR for non-constant.
12667 2016-06-06 David Malcolm <dmalcolm@redhat.com>
12669 * Makefile.in (OBJS): Add function-tests.o,
12670 hash-map-tests.o, hash-set-tests.o, rtl-tests.o,
12671 selftest-run-tests.o.
12672 (OBJS-libcommon): Add selftest.o.
12673 (OBJS-libcommon-target): Add selftest.o.
12674 (all.internal): Add "selftest".
12675 (all.cross): Likewise.
12676 (selftest): New phony target.
12677 (s-selftest): New target.
12678 (selftest-gdb): New phony target.
12679 (COLLECT2_OBJS): Add selftest.o.
12680 * bitmap.c: Include "selftest.h".
12681 (selftest::test_gc_alloc): New function.
12682 (selftest::test_set_range): New function.
12683 (selftest::test_clear_bit_in_middle): New function.
12684 (selftest::test_copying): New function.
12685 (selftest::test_bitmap_single_bit_set_p): New function.
12686 (selftest::bitmap_c_tests): New function.
12687 * common.opt (fself-test): New.
12688 * diagnostic-show-locus.c: Include "selftest.h".
12689 (make_range): New function.
12690 (test_range_contains_point_for_single_point): New function.
12691 (test_range_contains_point_for_single_line): New function.
12692 (test_range_contains_point_for_multiple_lines): New function.
12693 (assert_eq): New function.
12694 (test_get_line_width_without_trailing_whitespace): New function.
12695 (selftest::diagnostic_show_locus_c_tests): New function.
12696 * et-forest.c: Include "selftest.h".
12697 (selftest::test_single_node): New function.
12698 (selftest::test_simple_tree): New function.
12699 (selftest::test_disconnected_nodes): New function.
12700 (selftest::et_forest_c_tests): New function.
12701 * fold-const.c: Include "selftest.h".
12702 (selftest::assert_binop_folds_to_const): New function.
12703 (selftest::assert_binop_folds_to_nonlvalue): New function.
12704 (selftest::test_arithmetic_folding): New function.
12705 (selftest::fold_const_c_tests): New function.
12706 * function-tests.c: New file.
12707 * gimple.c: Include "selftest.h".
12708 Include "gimple-pretty-print.h".
12709 (selftest::verify_gimple_pp): New function.
12710 (selftest::test_assign_single): New function.
12711 (selftest::test_assign_binop): New function.
12712 (selftest::test_nop_stmt): New function.
12713 (selftest::test_return_stmt): New function.
12714 (selftest::test_return_without_value): New function.
12715 (selftest::gimple_c_tests): New function.
12716 * hash-map-tests.c: New file.
12717 * hash-set-tests.c: New file.
12718 * input.c: Include "selftest.h".
12719 (selftest::assert_loceq): New function.
12720 (selftest::test_accessing_ordinary_linemaps): New function.
12721 (selftest::test_unknown_location): New function.
12722 (selftest::test_builtins): New function.
12723 (selftest::test_reading_source_line): New function.
12724 (selftest::input_c_tests): New function.
12725 * rtl-tests.c: New file.
12726 * selftest-run-tests.c: New file.
12727 * selftest.c: New file.
12728 * selftest.h: New file.
12729 * spellcheck.c: Include "selftest.h".
12730 (selftest::levenshtein_distance_unit_test_oneway): New function,
12731 adapted from testsuite/gcc.dg/plugin/levenshtein_plugin.c.
12732 (selftest::levenshtein_distance_unit_test): Likewise.
12733 (selftest::spellcheck_c_tests): Likewise.
12734 * toplev.c: Include selftest.h.
12735 (toplev::run_self_tests): New.
12736 (toplev::main): Handle -fself-test.
12737 * toplev.h (toplev::run_self_tests): New.
12738 * tree.c: Include "selftest.h".
12739 (selftest::test_integer_constants): New function.
12740 (selftest::test_identifiers): New function.
12741 (selftest::test_labels): New function.
12742 (selftest::tree_c_tests): New function.
12743 * tree-cfg.c: Include "selftest.h".
12744 (selftest::push_fndecl): New function.
12745 (selftest::test_linear_chain): New function.
12746 (selftest::test_diamond): New function.
12747 (selftest::test_fully_connected): New function.
12748 (selftest::tree_cfg_c_tests): New function.
12749 * vec.c: Include "selftest.h".
12750 (selftest::safe_push_range): New function.
12751 (selftest::test_quick_push): New function.
12752 (selftest::test_safe_push): New function.
12753 (selftest::test_truncate): New function.
12754 (selftest::test_safe_grow_cleared): New function.
12755 (selftest::test_pop): New function.
12756 (selftest::test_safe_insert): New function.
12757 (selftest::test_ordered_remove): New function.
12758 (selftest::test_unordered_remove): New function.
12759 (selftest::test_block_remove): New function.
12760 (selftest::reverse_cmp): New function.
12761 (selftest::test_qsort): New function.
12762 (selftest::vec_c_tests): New function.c.
12763 * wide-int.cc: Include selftest.h and wide-int-print.h.
12764 (selftest::from_int <wide_int>): New function.
12765 (selftest::from_int <offset_int>): New function.
12766 (selftest::from_int <widest_int>): New function.
12767 (selftest::assert_deceq): New function.
12768 (selftest::assert_hexeq): New function.
12769 (selftest::test_printing <VALUE_TYPE>): New function template.
12770 (selftest::test_ops <VALUE_TYPE>): New function template.
12771 (selftest::test_comparisons <VALUE_TYPE>): New function template.
12772 (selftest::run_all_wide_int_tests <VALUE_TYPE>): New function
12774 (selftest::wide_int_cc_tests): New function.
12776 2016-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12778 PR middle-end/37780
12779 * ifcvt.c (noce_try_ifelse_collapse): New function.
12781 (noce_process_if_block): Call noce_try_ifelse_collapse.
12782 * simplify-rtx.c (simplify_cond_clz_ctz): New function.
12783 (simplify_ternary_operation): Use the above to simplify
12784 conditional CLZ/CTZ expressions.
12786 2016-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12788 PR middle-end/37780
12789 * config/aarch64/aarch64.md (ctz<mode>2): Convert to
12790 define_insn_and_split.
12792 2016-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12794 PR middle-end/37780
12795 * config/arm/arm.md (ctzsi2): Convert to define_insn_and_split.
12797 2016-06-06 Bernd Edlinger <bernd.edlinger@hotmail.de>
12800 * cfgexpand.c (expand_asm_loc): Remove handling for ADDR_EXPR.
12801 Implicitly clobber memory for basic asm with non-empty assembler
12802 string. Use targetm.md_asm_adjust also here.
12803 * compare-elim.c (arithmetic_flags_clobber_p): Use asm_noperands here.
12804 * final.c (final_scan_insn): Handle basic asm in PARALLEL block.
12805 * gimple.c (gimple_asm_clobbers_memory_p): Handle basic asm with
12806 non-empty assembler string.
12807 * ira.c (compute_regs_asm_clobbered): Use asm_noperands here.
12808 * recog.c (asm_noperands): Handle basic asm in PARALLEL block.
12809 (decode_asm_operands): Handle basic asm in PARALLEL block.
12810 (extract_insn): Handle basic asm in PARALLEL block.
12811 * doc/extend.texi: Mention new behavior of basic asm.
12812 * config/ia64/ia64 (rtx_needs_barrier): Handle ASM_INPUT here.
12813 * config/pa/pa.c (branch_to_delay_slot_p, branch_needs_nop_p,
12814 branch_needs_nop_p): Use asm_noperands.
12816 2016-06-06 Jose E. Marchesi <jose.marchesi@oracle.com>
12818 * config/sparc/sparc.md (cpu): Add niagara7 cpu type.
12819 Include the M7 SPARC DFA scheduler.
12820 New attribute v3pipe.
12821 Annotate insns with v3pipe where appropriate.
12822 Define cpu_feature vis4.
12823 Add lzd instruction type and set it on clzdi_sp64 and clzsi_sp64.
12824 Add (V8QI "8") to vbits.
12825 Add insns {add,sub}v8qi3
12826 Add insns ss{add,sub}v8qi3
12827 Add insns us{add,sub}{v8qi,v4hi}3
12828 Add insns {min,max}{v8qi,v4hi,v2si}3
12829 Add insns {minu,maxu}{v8qi,v4hi,v2si}3
12830 Add insns fpcmp{le,gt,ule,ug,ule,ugt}{8,16,32}_vis.
12831 * config/sparc/niagara4.md: Add a comment explaining the
12832 discrepancy between the documented latenty numbers and the
12834 * config/sparc/niagara7.md: New file.
12835 * configure.ac (HAVE_AS_SPARC5_VIS4): Define if the assembler
12836 supports SPARC5 and VIS 4.0 instructions.
12837 * configure: Regenerate.
12838 * config.in: Likewise.
12839 * config.gcc: niagara7 is a supported cpu in sparc*-*-* targets.
12840 * config/sparc/sol2.h (ASM_CPU32_DEFAUILT_SPEC): Set for
12841 TARGET_CPU_niagara7.
12842 (ASM_CPU64_DEFAULT_SPEC): Likewise.
12843 (CPP_CPU_SPEC): Handle niagara7.
12844 (ASM_CPU_SPEC): Likewise.
12845 * config/sparc/sparc-opts.h (processor_type): Add
12846 PROCESSOR_NIAGARA7.
12847 (mvis4): New option.
12848 * config/sparc/sparc.h (TARGET_CPU_niagara7): Define.
12849 (AS_NIAGARA7_FLAG): Define.
12850 (ASM_CPU64_DEFAULT_SPEC): Set for niagara7.
12851 (CPP_CPU64_DEFAULT_SPEC): Likewise.
12852 (CPP_CPU_SPEC): Handle niagara7.
12853 (ASM_CPU_SPEC): Likewise.
12854 * config/sparc/sparc.c (niagara7_costs): Define.
12855 (sparc_option_override): Handle niagara7 and adjust cache-related
12856 parameters with better values for niagara cpus. Also support VIS4.
12857 (sparc32_initialize_trampoline): Likewise.
12858 (sparc_use_sched_lookahead): Likewise.
12859 (sparc_issue_rate): Likewise.
12860 (sparc_register_move_cost): Likewise.
12861 (dump_target_flag_bits): Support VIS4.
12862 (sparc_vis_init_builtins): Likewise.
12863 (sparc_builtins): Likewise.
12864 * config/sparc/sparc-c.c (sparc_target_macros): Define __VIS__ for
12866 * config/sparc/driver-sparc.c (cpu_names): Add SPARC-M7 and
12868 * config/sparc/sparc.opt (sparc_processor_type): New value
12870 * config/sparc/visintrin.h (__attribute__): Prototypes for the
12872 * doc/invoke.texi (SPARC Options): Document -mcpu=niagara7 and
12874 * doc/extend.texi (SPARC VIS Built-in Functions): Document the
12877 2016-06-06 Jonathan Wakely <jwakely@redhat.com>
12879 * doc/sourcebuild.texi (Directives): Remove extra closing braces.
12881 2016-06-06 Richard Biener <rguenther@suse.de>
12883 PR tree-optimization/71398
12884 * tree-ssa-loop-ivcanon.c (unloop_loops): First unloop, then
12887 2016-06-05 James Bowman <james.bowman@ftdichip.com>
12889 * config/ft32/ft32.c (ft32_setup_incoming_varargs,
12890 ft32_expand_prolog, ft32_expand_epilogue):
12891 Handle pretend_args.
12892 * config/ft32/ft32.h: Remove OUTGOING_REG_PARM_STACK_SPACE.
12893 * config/ft32/ft32.md: Add pretend_returner.
12895 2016-06-06 Uros Bizjak <ubizjak@gmail.com>
12898 * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
12899 Copy op1 RTX to avoid invalid sharing.
12900 (ix86_expand_vector_move_misalign): Ditto.
12902 2016-06-05 John David Anglin <danglin@gcc.gnu.org>
12904 * expr.c (move_by_pieces_d::generate): Mark mode parameter with
12907 2016-06-05 Jan Hubicka <hubicka@ucw.cz>
12909 * predict.c (predicted_by_loop_heuristics_p): New function.
12910 (predict_iv_comparison): Use it.
12911 (predict_loops): Walk from innermost loops; do not predict edges
12912 leaving multiple loops multiple times; implement
12913 PRED_LOOP_ITERATIONS_MAX heuristics.
12914 * predict.def (PRED_LOOP_ITERATIONS_MAX): New predictor.
12916 2016-06-05 Jan Hubicka <hubicka@ucw.cz>
12918 * cfg.c (check_bb_profile): Do not report mismatched profiles when
12919 only edges out of BB are EH edges.
12921 2016-06-04 Martin Sebor <msebor@redhat.com>
12922 Marcin Baczyński <marbacz@gmail.com>
12925 * doc/invoke.texi (-Wreturn-type): Mention not warning on return with
12926 a void expression in a void function.
12928 2016-06-03 Jan Hubicka <hubicka@ucw.cz>
12930 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Do not check
12931 aux; dump reasons of decisions.
12932 (should_duplicate_loop_header_p): Likewise.
12933 (do_while_loop_p): Likewise.
12934 (ch_base::copy_headers): Dump asi num insns duplicated.
12936 2016-06-04 Jakub Jelinek <jakub@redhat.com>
12938 PR tree-optimization/71405
12939 * tree-ssa.c (execute_update_addresses_taken): For clobber with
12940 incompatible type, build a new clobber with the right type instead
12941 of building a VIEW_CONVERT_EXPR around it.
12943 2016-06-04 Oleg Endo <olegendo@gcc.gnu.org>
12945 PR tree-optimization/52171
12946 * config/sh/sh.c (sh_use_by_pieces_infrastructure_p): Use
12947 by_pieces_ninsns instead of move_by_pieces_ninsns.
12949 2016-06-04 Oleg Endo <olegendo@gcc.gnu.org>
12951 * config/sh/sh.c (sh_print_operand_address): Don't use hardcoded 'r0'
12952 for reg+reg addressing mode.
12954 2016-06-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
12956 * rs6000-c.c (c/c-tree.h): Add #include.
12957 (altivec_resolve_overloaded_builtin): Handle ARRAY_TYPE arguments
12958 in C++ when found in the base position of vec_ld or vec_st.
12960 2016-06-03 Jan Hubicka <hubicka@ucw.cz>
12962 * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Avoid
12963 use of profile unless profile status is PROFILE_READ.
12964 * profile.c (compute_branch_probabilities): Set profile status
12965 only after reporting predictor hitrates.
12967 2016-06-03 Joseph Myers <joseph@codesourcery.com>
12971 * common.opt (ffp-int-builtin-inexact): New option.
12972 * doc/invoke.texi (-fno-fp-int-builtin-inexact): Document.
12973 * doc/md.texi (floor@var{m}2, btrunc@var{m}2, round@var{m}2)
12974 (ceil@var{m}2): Document dependence on this option.
12975 * ipa-inline-transform.c (inline_call): Handle
12976 flag_fp_int_builtin_inexact.
12977 * ipa-inline.c (can_inline_edge_p): Likewise.
12978 * config/i386/i386.md (rintxf2): Do not test
12979 flag_unsafe_math_optimizations.
12980 (rint<mode>2_frndint): New define_insn.
12981 (rint<mode>2): Do not test flag_unsafe_math_optimizations for 387
12982 or !flag_trapping_math for SSE. Just use gen_rint<mode>2_frndint
12983 for 387 instead of extending and truncating.
12984 (frndintxf2_<rounding>): Test flag_fp_int_builtin_inexact ||
12985 !flag_trapping_math instead of flag_unsafe_math_optimizations.
12986 Change to frndint<mode>2_<rounding>.
12987 (frndintxf2_<rounding>_i387): Likewise. Change to
12988 frndint<mode>2_<rounding>_i387.
12989 (<rounding_insn>xf2): Likewise.
12990 (<rounding_insn><mode>2): Test flag_fp_int_builtin_inexact ||
12991 !flag_trapping_math instead of flag_unsafe_math_optimizations for
12992 x87. Test TARGET_ROUND || !flag_trapping_math ||
12993 flag_fp_int_builtin_inexact instead of !flag_trapping_math for
12994 SSE. Use ROUND_NO_EXC in constant operand of
12995 gen_sse4_1_round<mode>2. Just use gen_frndint<mode>2_<rounding>
12996 for 387 instead of extending and truncating.
12998 2016-06-03 H.J. Lu <hongjiu.lu@intel.com>
12999 Julia Koval <julia.koval@intel.com>
13011 * config/i386/i386-protos.h (ix86_epilogue_uses): New prototype.
13012 * config/i386/i386.c (ix86_conditional_register_usage): Preserve
13013 all registers, except for function return registers if there are
13014 no caller-saved registers.
13015 (ix86_set_func_type): New function.
13016 (ix86_set_current_function): Call ix86_set_func_type to set
13017 no_caller_saved_registers and func_type. Call reinit_regs if
13018 caller-saved registers are changed. Don't allow MPX, SSE, MMX
13019 nor x87 instructions in interrupt handler nor function with
13020 no_caller_saved_registers attribute.
13021 (ix86_function_ok_for_sibcall): Return false if there are no
13022 caller-saved registers.
13023 (type_natural_mode): Don't warn ABI change for MMX in interrupt
13025 (ix86_function_arg_advance): Skip for callee in interrupt handler.
13026 (ix86_function_arg): Return special arguments in interrupt handler.
13027 (ix86_promote_function_mode): Promote pointer to word_mode only
13028 for normal functions.
13029 (ix86_can_use_return_insn_p): Don't use `ret' instruction in
13031 (ix86_epilogue_uses): New function.
13032 (ix86_hard_regno_scratch_ok): Likewise.
13033 (ix86_save_reg): Preserve all registers in interrupt handler
13034 after reload. Preserve all registers, except for function return
13035 registers, if there are no caller-saved registers after reload.
13036 (find_drap_reg): Always use callee-saved register if there are
13037 no caller-saved registers.
13038 (ix86_minimum_incoming_stack_boundary): Return MIN_STACK_BOUNDARY
13039 for interrupt handler.
13040 (ix86_expand_prologue): Don't allow DRAP in interrupt handler.
13041 Emit cld instruction if stringops are used in interrupt handler
13042 or interrupt handler isn't a leaf function.
13043 (ix86_expand_epilogue): Generate interrupt return for interrupt
13044 handler and pop the 'ERROR_CODE' off the stack before interrupt
13045 return in exception handler.
13046 (ix86_expand_call): Disallow calling interrupt handler directly.
13047 If there are no caller-saved registers, mark all registers that
13048 are clobbered by the call which returns as clobbered.
13049 (ix86_handle_no_caller_saved_registers_attribute): New function.
13050 (ix86_handle_interrupt_attribute): Likewise.
13051 (ix86_attribute_table): Add interrupt and no_caller_saved_registers
13053 (TARGET_HARD_REGNO_SCRATCH_OK): Likewise.
13054 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use argument
13055 accumulation in interrupt function if stack may be realigned to
13057 (EPILOGUE_USES): New.
13058 (function_type): New enum.
13059 (machine_function): Add func_type and no_caller_saved_registers.
13060 * config/i386/i386.md (UNSPEC_INTERRUPT_RETURN): New.
13061 (interrupt_return): New pattern.
13062 * doc/extend.texi: Document x86 interrupt and
13063 no_caller_saved_registers attributes.
13065 2016-06-03 Bernd Schmidt <bschmidt@redhat.com>
13067 PR tree-optimization/52171
13068 * builtins.c (expand_cmpstrn_or_cmpmem): Delete, moved elsewhere.
13069 (expand_builtin_memcmp): New arg RESULT_EQ. All callers changed.
13070 Look for constant strings. Move some code to emit_block_cmp_hints
13072 * builtins.def (BUILT_IN_MEMCMP_EQ): New.
13073 * defaults.h (COMPARE_MAX_PIECES): New macro.
13074 * expr.c (move_by_pieces_d, store_by_pieces_d): Remove old structs.
13075 (move_by_pieces_1, store_by_pieces_1, store_by_pieces_2): Remvoe.
13076 (clear_by_pieces_1): Don't declare. Move definition before use.
13077 (can_do_by_pieces): New static function.
13078 (can_move_by_pieces): Use it. Return bool.
13079 (by_pieces_ninsns): Renamed from move_by_pieces_ninsns. New arg
13080 OP. All callers changed. Handle COMPARE_BY_PIECES.
13081 (class pieces_addr); New.
13082 (pieces_addr::pieces_addr, pieces_addr::decide_autoinc,
13083 pieces_addr::adjust, pieces_addr::increment_address,
13084 pieces_addr::maybe_predec, pieces_addr::maybe_postinc): New member
13086 (class op_by_pieces_d): New.
13087 (op_by_pieces_d::op_by_pieces_d, op_by_pieces_d::run): New member
13089 (class move_by_pieces_d, class compare_by_pieces_d,
13090 class store_by_pieces_d): New subclasses of op_by_pieces_d.
13091 (move_by_pieces_d::prepare_mode, move_by_pieces_d::generate,
13092 move_by_pieces_d::finish_endp, store_by_pieces_d::prepare_mode,
13093 store_by_pieces_d::generate, store_by_pieces_d::finish_endp,
13094 compare_by_pieces_d::generate, compare_by_pieces_d::prepare_mode,
13095 compare_by_pieces_d::finish_mode): New member functions.
13096 (compare_by_pieces, emit_block_cmp_via_cmpmem): New static
13098 (expand_cmpstrn_or_cmpmem): Moved here from builtins.c.
13099 (emit_block_cmp_hints): New function.
13100 (move_by_pieces, store_by_pieces, clear_by_pieces): Rewrite to just
13101 use the newly defined classes.
13102 * expr.h (by_pieces_constfn): New typedef.
13103 (can_store_by_pieces, store_by_pieces): Use it in arg declarations.
13104 (emit_block_cmp_hints, expand_cmpstrn_or_cmpmem): Declare.
13105 (move_by_pieces_ninsns): Don't declare.
13106 (can_move_by_pieces): Change return value to bool.
13107 * target.def (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): Update docs.
13108 (compare_by_pieces_branch_ratio): New hook.
13109 * target.h (enum by_pieces_operation): Add COMPARE_BY_PIECES.
13110 (by_pieces_ninsns): Declare.
13111 * targethooks.c (default_use_by_pieces_infrastructure_p): Handle
13113 (default_compare_by_pieces_branch_ratio): New function.
13114 * targhooks.h (default_compare_by_pieces_branch_ratio): Declare.
13115 * doc/tm.texi.in (STORE_MAX_PIECES, COMPARE_MAX_PIECES): Document.
13116 * doc/tm.texi: Regenerate.
13117 * tree-ssa-strlen.c: Include "builtins.h".
13118 (handle_builtin_memcmp): New static function.
13119 (strlen_optimize_stmt): Call it for BUILT_IN_MEMCMP.
13120 * tree.c (build_common_builtin_nodes): Create __builtin_memcmp_eq.
13122 2016-06-03 Alan Hayward <alan.hayward@arm.com>
13124 * tree-vect-stmts.c (vect_stmt_relevant_p): Do not vectorize non live
13125 relevant stmts which are simple and invariant.
13126 * tree-vect-loop.c (vectorizable_live_operation): Check relevance
13127 instead of simple and invariant
13129 2016-06-03 Alan Hayward <alan.hayward@arm.com>
13131 * tree-vect-loop.c (vect_analyze_loop_operations): Allow live stmts.
13132 (vectorizable_reduction): Check for new relevant state.
13133 (vectorizable_live_operation): vectorize live stmts using
13134 BIT_FIELD_REF. Remove special case for gimple assigns stmts.
13135 * tree-vect-stmts.c (is_simple_and_all_uses_invariant): New function.
13136 (vect_stmt_relevant_p): Check for stmts which are only used live.
13137 (process_use): Use of a stmt does not inherit it's live value.
13138 (vect_mark_stmts_to_be_vectorized): Simplify relevance inheritance.
13139 (vect_analyze_stmt): Check for new relevant state.
13140 * tree-vectorizer.h (vect_relevant): New entry for a stmt which is used
13141 outside the loop, but not inside it.
13143 2016-06-03 Alan Hayward <alan.hayward@arm.com>
13145 * tree-vectorizer.h (vect_get_vec_def_for_operand_1): New.
13146 * tree-vect-stmts.c (vect_get_vec_def_for_operand_1): New.
13147 (vect_get_vec_def_for_operand): Split out code.
13149 2016-06-03 Segher Boessenkool <segher@kernel.crashing.org>
13151 * config/rs6000/rs6000.md (define_peepholes for two mfcr's): Delete.
13153 2016-06-03 Alan Hayward <alan.hayward@arm.com>
13155 * tree-vect-stmts.c (vectorizable_call) Remove GOMP_SIMD_LANE code.
13157 2016-06-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13159 * config/arm/thumb1.md (*thumb1_mulsi3): Fix typos in comment.
13161 2016-06-03 Jakub Jelinek <jakub@redhat.com>
13163 PR middle-end/71387
13164 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): If redirecting
13165 to noreturn e->callee->decl that has void return type and void
13166 arguments, adjust gimple_call_fntype and remove lhs even if it had
13167 previously addressable type.
13169 2016-06-02 Jeff Law <law@redhat.com>
13171 PR tree-optimization/71328
13172 * tree-ssa-threadupdate.c (duplicate_thread_path): Fix off-by-one
13173 error when checking for a jump back onto the copied path.
13175 2016-06-02 David Malcolm <dmalcolm@redhat.com>
13177 * config/microblaze/microblaze.c (get_branch_target): Add return
13178 NULL_RTX for the non-CALL_P case.
13179 (insert_wic_for_ilb_runout): Remove unused local "wic_addr1".
13180 (insert_wic): Remove unused local "j".
13182 2016-06-02 Martin Liska <mliska@suse.cz>
13184 * predict.def: Fix typo in PRED_FORTRAN_FAIL_IO display name.
13186 2016-06-02 H.J. Lu <hongjiu.lu@intel.com>
13187 Julia Koval <julia.koval@intel.com>
13189 * function.c (assign_parm_setup_stack): Force source into a
13190 register if needed.
13191 * target.def (function_incoming_arg): Update documentation to
13192 allow arbitrary address computation based on hard register.
13193 * doc/tm.texi: Regenerated.
13195 2016-06-02 Martin Liska <mliska@suse.cz>
13197 * predict.c (combine_predictions_for_bb): Fix first match in
13198 cases where a first predictor contains more than one occurence
13199 in list of predictors. Take the best value in such case.
13201 2016-06-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13203 PR rtl-optimization/71295
13204 * rtlanal.c (subreg_get_info): If taking a subreg at the requested
13205 offset would go over the size of the inner mode reject it.
13207 2016-06-02 Jakub Jelinek <jakub@redhat.com>
13209 * config/i386/sse.md (*vec_concatv4si): Use v=v,v instead of
13210 x=x,x and v=v,m instead of x=x,m.
13212 * config/i386/sse.md (*vec_concatv2si_sse4_1): Add avx512dq v=Yv,rm
13213 alternative. Change x=x,x alternative to v=Yv,Yv and x=rm,C
13214 alternative to v=rm,C.
13216 * config/i386/sse.md (*vec_concatv2di): Add x86_avx512dq v=Yv,rm
13217 alternative. Change x=xm,C alternative to v=vm,C, x=x,x alternative
13218 to v=Yv,Yv and x=x,m to v=v,m. Use maybe_evex prefix attribute
13219 instead of vex for the last two above mentioned alternatives.
13221 2016-06-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13224 * config/arm/arm.c (arm_output_multireg_pop): Guard "pop" on update.
13226 2016-06-02 Segher Boessenkool <segher@kernel.crashing.org>
13228 * config/rs6000/dfp.md (trunctddd2): Correct the "length" attribute.
13230 2016-06-01 David Malcolm <dmalcolm@redhat.com>
13232 * config/rl78/rl78.c (rl78_expand_prologue): Convert local
13233 from int to unsigned.
13235 2016-05-31 Michael Meissner <meissner@linux.vnet.ibm.com>
13237 * config/rs6000/vsx.md (vsx_splat_<mode>, V2DI/V2DF): Simplify
13238 alternatives, eliminating preferred register class. Add support
13239 for the MTVSRDD instruction in ISA 3.0.
13240 (vsx_splat_v4si_internal): Use splat_input_operand instead of
13241 reg_or_indexed_operand.
13242 (vsx_splat_v4sf_internal): Likewise.
13244 2016-05-31 Michael Meissner <meissner@linux.vnet.ibm.com>
13247 * config/rs6000/vsx.md (xxspltib_<mode>_nosplit): Add alternatives
13248 for loading up all 0's or all 1's.
13250 2016-06-01 Thomas Preud'homme <thomas.preudhomme@arm.com>
13252 * doc/sourcebuild.texi (arm_acq_rel): Document new effective target.
13254 2016-06-01 Eduard Sanou <dhole@openmailbox.org>
13256 * doc/cppenv.texi: Note that the `%s` in `date` is a non-standard
13258 * gcc.c (driver_handle_option): Call set_source_date_epoch_envvar.
13259 * gcc.c (set_source_date_epoch_envvar): New function, sets
13260 the SOURCE_DATE_EPOCH environment variable to the current time.
13262 2016-06-01 Eric Botcazou <ebotcazou@adacore.com>
13264 * tree-vect-loop.c (vect_determine_vectorization_factor): Also compute
13265 the factor for live Phi nodes.
13267 2016-06-01 Jan Hubicka <hubicka@ucw.cz>
13269 * loop-dolop.c (doloop_optimize): Us likely max iteration bound.
13270 * tree-parloops.c (parallelize_loops): likewise.
13271 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop,
13272 tree_unswitch_outer_loop): likewise.
13274 2016-06-01 Jakub Jelinek <jakub@redhat.com>
13276 PR middle-end/71371
13277 * gimplify.c (gimplify_omp_for): Temporarily clear gimplify_omp_ctxp
13278 around creation of the temporary.
13280 2016-06-01 Richard Biener <rguenther@suse.de>
13282 PR tree-optimization/71366
13283 * tree-ssa-loop-ivcanon.c (edges_to_remove): New global.
13284 (unloop_loops): Move removing edges here ...
13285 (try_unroll_loop_completely): ... from here.
13286 (try_peel_loop): ... and here.
13287 (tree_unroll_loops_completely_1): Track parent loops via
13288 bitmap of header BBs.
13289 (tree_unroll_loops_completely): Adjust for that.
13291 2016-06-01 Kelvin Nilsen <kelvin@gcc.gnu.org>
13293 * config/rs6000/altivec.h (vec_slv): New macro.
13294 (vec_srv): New macro.
13295 * config/rs6000/altivec.md (UNSPEC_VSLV): New value.
13296 (UNSPEC_VSRV): New value.
13299 * config/rs6000/rs6000-builtin.def (vslv): New builtin definition.
13300 (vsrv): New builtin definition.
13301 * config/rs6000/rs6000-c.c (P9V_BUILTIN_VSLV): Macro expansion to
13302 define argument types for new builtin.
13303 (P9V_BUILTIN_VSRV): Macro expansion to define argument types for
13305 * doc/extend.texi: Document the new vec_vslv and vec_srv built-in
13308 2016-06-01 Uros Bizjak <ubizjak@gmail.com>
13309 Jocelyn Mayer <l_indien@magic.fr>
13312 * config/i386/driver-i386.c (host_detect_local_cpu): Correctly
13313 detect processor family for signature_CENTAUR_ebx.
13314 <case PROCESSOR_I486>: Pass c3, winchip2 or winchip-c6 for
13315 signature_CENTAUR_ebx.
13316 <case PROCESSOR _PENTIUMPRO>: Pass c3-2 for signature_CENTAUR_ebx.
13317 <default>: Pass x86-64 for has_longmode.
13319 2016-06-01 Nathan Sidwell <nathan@acm.org>
13321 * config/nvptx/nvptx.c (nvptx_assemble_undefined_decl): Reject
13324 2016-06-01 Richard Biener <rguenther@suse.de>
13326 PR tree-optimization/71261
13327 * tree-vect-patterns.c (check_bool_pattern): Gather a hash-set
13328 of stmts successfully put in the bool pattern. Remove
13329 single-use restriction.
13330 (adjust_bool_pattern_cast): Add cast at the use site via the
13331 pattern def sequence.
13332 (adjust_bool_pattern): Remove recursion, maintain a hash-map
13333 of patterned defs. Use the pattern def seqence instead of
13334 multiple independent patterns.
13335 (sort_after_uid): New qsort compare function.
13336 (adjust_bool_stmts): New function to process stmts in the bool
13337 pattern in IL order.
13338 (vect_recog_bool_pattern): Adjust.
13339 * tree-if-conv.c (ifcvt_split_def_stmt): Remove.
13340 (ifcvt_walk_pattern_tree): Likewise.
13341 (stmt_is_root_of_bool_pattern): Likewise.
13342 (ifcvt_repair_bool_pattern): Likewise.
13343 (tree_if_conversion): Do not call ifcvt_repair_bool_pattern.
13345 2016-06-01 Jan Hubicka <hubicka@ucw.cz>
13347 * loop-unroll.c (decide_unroll_constant_iterations,
13348 decide_unroll_runtime_iterations, decide_unroll_stupid): Use
13349 likely upper bounds.
13350 * loop-iv.c (find_simple_exit): Dump likely upper bounds.
13352 2016-06-01 Thomas Schwinge <thomas@codesourcery.com>
13354 * tree-core.h (enum omp_clause_code): Remove
13355 OMP_CLAUSE_DEVICE_RESIDENT. Adjust all users.
13357 2016-06-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13359 * config/arm/sync.md (arm_store_exclusive<mode>):
13360 Use 'H' output modifier on operands[2] rather than creating a new
13361 entry in out-of-bounds memory of the operands array.
13362 (arm_store_release_exclusivedi): Likewise.
13364 2016-06-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13366 * config/arm/arm.c (arm_fusion_enabled_p): New function.
13367 * config/arm/arm-protos.h (arm_fusion_enabled_p): Declare prototype.
13368 * config/arm/crypto.md (crypto_<crypto_pattern>, CRYPTO_UNARY):
13369 Add "=w,0" alternative. Enable it when AES/AESMC fusion is enabled.
13371 2016-06-01 Eric Botcazou <ebotcazou@adacore.com>
13373 * tree-vect-loop.c (vect_determine_vectorization_factor): Also take
13374 into account live statements for mask producers.
13376 2016-06-01 Richard Biener <rguenther@suse.de>
13378 PR tree-optimization/71311
13379 * match.pd (@0 < @1 && @0 < @2 -> @0 < min(@1,@2)): Add :c and
13380 restrict to non-INTEGER_CST @0.
13382 2016-06-01 Richard Biener <rguenther@suse.de>
13384 * match.pd ((A & B) - (A & ~B) -> B - (A ^ B)): Add missing :c.
13385 (relational patterns): Use :c to avoid pattern duplications.
13387 2016-06-01 Richard Biener <rguenther@suse.de>
13389 * genmatch.c (comparison_code_p): New predicate.
13390 (swap_tree_comparison): New function.
13391 (commutate): Add for_vec parameter to append new for entries.
13392 Support commutating relational operators by swapping it alongside
13394 (lower_commutative): Adjust.
13395 (dt_simplify::gen): Do not pass artificial operators to gen
13397 (decision_tree::gen): Do not add artificial operators as parameters.
13398 (parser::parse_expr): Verify operator commutativity when :c is
13399 applied. Allow :C to override this.
13400 * match.pd: Adjust patterns to use :C instead of :c where required.
13402 2016-06-01 Patrick Palka <ppalka@gcc.gnu.org>
13404 PR tree-optimization/71077
13405 * tree-ssa-threadedge.c (simplify_control_stmt_condition_1): In
13406 the combining step, use boolean_false_node and boolean_true_node
13407 as the designated false/true return values.
13409 2016-05-31 Jan Hubicka <hubicka@ucw.cz>
13411 * predict.def (PRED_LOOP_EXTRA_EXIT): Define.
13412 * predict.c (predict_iv_comparison): Also check PRED_LOOP_EXTRA_EXIT.
13413 (predict_extra_loop_exits): Use PRED_LOOP_EXTRA_EXIT instead of
13416 2016-05-31 Jan Hubicka <hubicka@ucw.cz>
13418 * doc/invoke.texi (-frename-registers): Drop -fpeel-loops from list
13419 of flags impliying the register renaming.
13420 * toplev.c (process_options): Do not imply flag_rename_registers with
13423 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
13425 * config/sh/sh.h (ASM_OUTPUT_SYMBOL_REF): Remove macro and use the
13426 default implementation.
13428 2016-05-31 Nathan Sidwell <nathan@acm.org>
13430 * dwarf2out.c (cur_line_info_table): Add GTY marker.
13432 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
13434 * config/sh/constraints.md (b): Remove constraint.
13435 * config/sh/predicates.md (arith_reg_operand): Remove
13437 * config/sh/sh-modes.def (PDI): Remove.
13438 * config/sh/sh.c (sh_target_reg_class,
13439 sh_optimize_target_register_callee_saved): Remove functions.
13440 (sh_option_override): Don't set MASK_SAVE_ALL_TARGET_REGS.
13441 (sh_expand_epilogue): Update comment.
13442 (sh_hard_regno_mode_ok, sh_register_move_cost, calc_live_regs,
13443 sh_secondary_reload): Remove TARGET_REGS related code.
13444 * config/sh/sh.h (FIRST_TARGET_REG, LAST_TARGET_REG,
13445 TARGET_REGISTER_P): Remove macros.
13446 (SH_DBX_REGISTER_NUMBER, REG_ALLOC_ORDER): Remove target regs.
13447 * config/sh/sh.md (PR_MEDIA_REG, T_MEDIA_REG, FR23_REG, TR0_REG,
13448 TR1_REG, TR2_REG): Remove constants.
13449 * config/sh/sh.opt (SAVE_ALL_TARGET_REGS): Remove.
13451 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
13453 * config/sh/sh.md (adddi3, subdi3, negdi2, abs<mode>2): Remove
13454 define_expand patterns.
13455 (adddi3_compact): Rename to adddi3.
13456 (subdi3_compact): Rename to subdi3.
13457 (*negdi2): Rename to negdi2.
13458 (*abs<mode>2): Rename to abs<mode>2.
13460 2016-05-31 Oleg Endo <olegendo@gcc.gnu.org>
13462 * config/rx/rx.md (FETCHOP_NO_MINUS): New code iterator.
13463 (atomic_<fetchop_name>_fetchsi): Extract minus operator into ...
13464 (atomic_sub_fetchsi): ... this new pattern.
13465 (mvtc): Add CC_REG clobber.
13467 2016-05-31 Marek Polacek <polacek@redhat.com>
13469 * gimplify.c (gimplify_switch_expr): Also handle GIMPLE_TRY.
13471 2016-05-31 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13473 * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Use
13474 aarch64_fusion_enabled_p to check for fusion capabilities.
13476 2016-05-31 Richard Biener <rguenther@suse.de>
13478 PR tree-optimization/71352
13479 * tree-ssa-reassoc.c (zero_one_operation): Handle op equal to
13480 minus one and a negate.
13482 2016-05-31 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13484 * config/aarch64/aarch64.c (aarch64_simd_attr_length_move): Delete.
13485 * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_move):
13487 * config/aarch64/iterators.md (insn_count): Add descriptive comment.
13488 * config/aarch64/aarch64-simd.md (*aarch64_mov<mode>, VSTRUCT modes):
13489 Remove use of aarch64_simd_attr_length_move, set length attribute
13491 (*aarch64_be_movoi): Likewise.
13492 (*aarch64_be_movci): Likewise.
13493 (*aarch64_be_movxi): Likewise.
13495 2016-05-31 Jan Hubicka <hubicka@ucw.cz>
13497 * loop-init.c (gate): Do not enale RTL loop unroller with -fpeel-loops.
13498 It no longer does that.
13499 * toplev.c (process_options): Do not enable flag_web with -fpeel-loops.
13501 2016-05-31 Wladimir J. van der Laan <laanwj@gmail.com>
13503 * config/aarch64/arm_neon.h (vdupb_laneq_s8): Remove spurious
13504 attribute __unused__.
13506 2016-05-31 Thomas Preud'homme <thomas.preudhomme@arm.com>
13508 * config/arm/arm-protos.h (arm_arch_thumb1): Declare.
13509 * config/arm/arm.c (arm_arch_thumb1): Define.
13510 (arm_option_override): Initialize arm_arch_thumb1.
13511 * config/arm/arm.h (arm_arch_thumb1): Declare.
13512 (TARGET_ARM_ARCH_ISA_THUMB): Use arm_arch_thumb to determine if target
13513 support Thumb-1 ISA.
13515 2016-05-31 Kirill Yukhin <kirill.yukhin@intel.com>
13518 * config/i386/sse.md (define_insn_and_split "*vec_extractv4sf_0"): Use
13519 `Yv' for scalar operand.
13521 2016-05-31 Tom de Vries <tom@codesourcery.com>
13523 PR tree-optimization/69068
13524 * graphite-isl-ast-to-gimple.c (copy_bb_and_scalar_dependences): Handle
13525 phis with more than two args.
13527 2016-05-30 Andreas Tobler <andreast@gcc.gnu.org>
13529 * config.gcc: Move hard float support for arm*hf*-*-freebsd* into
13530 armv6*-*-freebsd* for FreeBSD 11. Eliminate the arm*hf*-*-freebsd*
13533 2016-05-30 Jose E. Marchesi <jose.marchesi@oracle.com>
13535 * config.gcc (sparc*-*-*): Support cpu_32, cpu_64, tune_32 and
13537 * doc/install.texi (--with-cpu-32, --with-cpu-64): Document
13539 * config/sparc/linux64.h (OPTION_DEFAULT_SPECS): Add entries for
13540 cpu_32, cpu_64, tune_32 and tune_64.
13541 * config/sparc/sol2.h (OPTION_DEFAULT_SPECS): Likewise.
13543 2016-05-30 Uros Bizjak <ubizjak@gmail.com>
13545 * config/i386/sync.md (mfence_nosse): Use "lock orl $0, -4(%esp)".
13547 2016-05-30 Andi Kleen <ak@linux.intel.com>
13549 * auto-profile.c (read_profile): Replace asserts with errors
13550 when file does not exist.
13551 * gcov-io.c (gcov_read_words): Dito.
13553 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
13555 * tree-cfg.c (print_loop): Print likely upper bounds.
13557 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
13559 * doc/invoke.texi (-fpeel-loops,-O3): Update documentation.
13560 * opts.c (default_options): Enable peel loops at -O3.
13561 * tree-ssa-loop-ivcanon.c (peeled_loops): New static var.
13562 (try_peel_loop): Do not re-peel already peeled loops;
13563 use likely upper bounds; fix profile updating.
13564 (pass_complete_unroll::execute): Initialize peeled_loops.
13566 2016-05-30 Martin Liska <mliska@suse.cz>
13568 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Scale
13569 computed costs by frequency of BB they belong to.
13570 (get_scaled_computation_cost_at): New function.
13572 2016-05-30 Alexander Monakov <amonakov@ispras.ru>
13573 Marc Glisse <marc.glisse@inria.fr>
13575 PR tree-optimization/71289
13576 * match.pd (-1 / B < A, A > -1 / B): New transformations.
13578 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
13580 * tree-vect-loop.c (vect_transform_loop): Update likely bounds.
13582 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
13584 * tree-ssa-loop-ivcanon.c (try_peel_loop): Correctly set wont_exit
13585 for peeled copies; avoid underflow when updating estimates; correctly
13586 scale loop profile.
13588 2016-05-30 Kugan Vivekanandarajah <kuganv@linaro.org>
13590 * tree-ssa-reassoc.ci (swap_ops_for_binary_stmt): Fix typo from commit
13591 r236875. Corrected oe3 to oe2 as obvious.
13593 2016-05-30 Kugan Vivekanandarajah <kuganv@linaro.org>
13595 PR middle-end/71269
13596 PR middle-end/71252
13597 * tree-ssa-reassoc.c (insert_stmt_before_use): Use find_insert_point so
13598 that inserted stmt will not dominate stmts that defines its operand.
13599 (rewrite_expr_tree): Add stmt_to_insert before adding the use stmt.
13600 (rewrite_expr_tree_parallel): Likewise.
13602 2016-05-30 Kugan Vivekanandarajah <kuganv@linaro.org>
13604 PR middle-end/71252
13605 * tree-ssa-reassoc.c (swap_ops_for_binary_stmt): Fix swap such that
13606 all fields including stmt_to_insert are swapped.
13608 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
13610 * predict.h (force_edge_cold): Declare.
13611 * predict.c (force_edge_cold): New function.
13612 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Fix profile
13614 (canonicalize_loop_induction_variables): Fix formating.
13616 2016-05-30 Eric Botcazou <ebotcazou@adacore.com>
13618 * config/visium/visium.c (visium_split_double_add): Minor tweaks.
13619 (visium_expand_copysign): Use gen_int_mode directly.
13620 (visium_compute_frame_size): Minor tweaks.
13622 2016-05-30 Jan Hubicka <hubicka@ucw.cz>
13624 * tree-vect-loop.c (vect_analyze_loop_2): Use
13625 likely_max_stmt_executions_int.
13627 2016-05-30 Tom de Vries <tom@codesourcery.com>
13629 PR tree-optimization/69067
13630 * graphite-isl-ast-to-gimple.c (get_def_bb_for_const): Remove assert.
13632 2016-05-29 Uros Bizjak <ubizjak@gmail.com>
13635 * config/i386/sync.md (define_peephole2 atomic_storedi_fpu):
13636 New peepholes to remove unneeded fild/fistp pairs.
13637 (define_peephole2 atomic_loaddi_fpu): Ditto.
13639 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
13641 * predict.c (maybe_hot_frequency_p): Avoid division.
13643 2016-05-28 Gerald Pfeifer <gerald@pfeifer.com>
13645 * doc/install.texi: Use https for shop.fsf.org.
13647 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
13649 * tree-ssa-loop-ivopts.c (estimated_stmt_executions_int): Use
13650 likely_max_stmt_executions_int.
13652 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
13654 * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Use
13655 likely_max_stmt_executions_int.
13657 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
13659 * profile.c (compute_branch_probabilities): Do not report hitrates
13661 (branch_prob): Report hitrates here.
13662 * predict.c (gimple_predict_edge): Do not assert profile status;
13663 fix formatting issues.
13665 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
13667 * predict.c (edge_predicted_by_p): New function.
13668 (predict_paths_for_bb): Do not put multiple predictions of the same type
13671 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
13673 * tree-ssa-loop-niter.c (number_of_iterations_exit): Revert accidental
13676 2016-05-28 Alan Modra <amodra@gmail.com>
13678 * dominance.c (verify_dominators): Don't segfault on NULL imm_bb.
13680 2016-05-28 Alan Modra <amodra@gmail.com>
13682 PR rtl-optimization/71275
13683 * ira.c (ira): Free dominance info.
13685 2016-05-27 Gerald Pfeifer <gerald@pfeifer.com>
13687 * doc/sourcebuild.texi: New address for upstream Go repository.
13689 2016-05-27 Thomas Preud'homme <thomas.preudhomme@arm.com>
13691 * config/arm/arm.h (TARGET_ARM_V6M): Remove.
13692 (TARGET_ARM_V7M): Likewise.
13694 2016-05-26 Jeff Law <law@redhat.com>
13696 * tree-ssa-threadedge.c: Remove include of tree-ssa-threadbackward.h.
13697 (thread_across_edge): Remove calls to find_jump_threads_backwards.
13698 * passes.def: Add jump threading passes before DOM/VRP.
13699 * tree-ssa-threadbackward.c (find_jump_threads_backwards): Change
13700 argument to a basic block from an edge. Remove tests which are
13702 (pass_data_thread_jumps, class pass_thread_jumps): New.
13703 (pass_thread_jumps::gate, pass_thread_jumps::execute): New.
13704 (make_pass_thread_jumps): Likewise.
13705 * tree-pass.h (make_pass_thread_jumps): Declare.
13707 2016-05-27 Eric Botcazou <ebotcazou@adacore.com>
13709 * config/visium/visium-protos.h (split_double_move): Rename into...
13710 (visium_split_double_move): ...this.
13711 (visium_split_double_add): Declare.
13712 * config/visium/visium.c (split_double_move): Rename into...
13713 (visium_split_double_move): ...this.
13714 (visium_split_double_add): New function.
13715 (visium_expand_copysign): Renumber operands for consistency.
13716 * config/visium/visium.md (DImode move splitter): Adjust to renaming.
13717 (DFmode move splitter): Likewise.
13718 (*addi3_insn): Split by means of visium_split_double_add.
13719 (*adddi3_insn_flags): Delete.
13720 (*plus_plus_sltu<subst_arith>): New insn.
13721 (*subdi3_insn): Split by means of visium_split_double_add.
13722 (subdi3_insn_flags): Delete.
13723 (*minus_minus_sltu<subst_arith>): New insn.
13724 (*negdi2_insn): Split by means of visium_split_double_add.
13725 (*negdi2_insn_flags): Delete.
13727 2016-05-27 Ulrich Weigand <uweigand@de.ibm.com>
13729 * configure.ac: Treat a --with-headers option without argument
13730 the same as the default (i.e. consult sys-include directory).
13731 * configure: Regenerate.
13733 2016-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13735 * config/aarch64/aarch64.c (aarch64_fusion_enabled_p): New function.
13736 * config/aarch64/aarch64-protos.h (aarch64_fusion_enabled_p): Declare
13738 * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aesmc_op>v16qi):
13739 Add "=w,0" alternative. Enable it when AES/AESMC fusion is enabled.
13741 2016-05-27 Jiong Wang <jiong.wang@arm.com>
13744 * config/aarch64/aarch64.c (aarch64_expand_builtin_va_start): Honor
13745 tree-stdarg analysis results.
13746 (aarch64_setup_incoming_varargs): Likewise.
13748 2016-05-27 Jiong Wang <jiong.wang@arm.com>
13750 * config/aarch64/aarch64.c (aarch64_build_builtin_va_list): Initialize
13751 va_list_gpr_counter_field and va_list_fpr_counter_field.
13753 2016-05-27 Wilco Dijkstra <wdijkstr@arm.com>
13756 * config/aarch64/aarch64.h (CANNOT_CHANGE_MODE_CLASS): Remove.
13757 * config/aarch64/aarch64.c
13758 (aarch64_cannot_change_mode_class): Remove function.
13759 * config/aarch64/aarch64-protos.h
13760 (aarch64_cannot_change_mode_class): Remove.
13762 2016-05-27 Jan Hubicka <hubicka@ucw.cz>
13764 * cfgloop.c (record_niter_bound): Record likely upper bounds.
13765 (likely_max_stmt_executions_int, get_likely_max_loop_iterations,
13766 get_likely_max_loop_iterations_int): New.
13767 * cfgloop.h (struct loop): Add nb_iterations_likely_upper_bound,
13768 any_likely_upper_bound.
13769 (get_likely_max_loop_iterations_int, get_likely_max_loop_iterations):
13771 * cfgloopmanip.c (copy_loop_info): Copy likely upper bounds.
13772 * loop-unroll.c (unroll_loop_constant_iterations): Update likely
13774 (unroll_loop_constant_iterations): Likewise.
13775 (unroll_loop_runtime_iterations): Likewise.
13776 * lto-streamer-in.c (input_cfg): Stream likely upper bounds.
13777 * lto-streamer-out.c (output_cfg): Likewise.
13778 * tree-ssa-loop-ivcanon.c (try_peel_loop): Update likely upper
13780 (canonicalize_loop_induction_variables): Dump likely upper bounds.
13781 * tree-ssa-loop-niter.c (record_estimate): Record likely upper bounds.
13782 (likely_max_loop_iterations): New.
13783 (likely_max_loop_iterations_int): New.
13784 (likely_max_stmt_executions): New.
13785 * tree-ssa-loop-niter.h (likely_max_loop_iterations,
13786 likely_max_loop_iterations_int, likely_max_stmt_executions_int,
13787 likely_max_stmt_executions): Declare.
13789 2016-05-27 Marek Polacek <polacek@redhat.com>
13791 PR middle-end/71308
13792 * gimple-fold.c (gimple_fold_call): Check that LHS is not null.
13794 2016-05-27 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
13796 * config/s390/s390.md (2x risbg splitters): Use
13797 reg_overlap_mentioned_p instead of rtx_equal_p.
13799 2016-05-27 Dominik Vogt <vogt@linux.vnet.ibm.com>
13801 * combine.c (make_compound_operation): Take known zero bits into
13802 account when checking for possible zero_extend.
13804 2016-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13806 * config/aarch64/aarch64.md (ashl<mode>3, SHORT modes):
13807 Use const_int_operand for operand 2 predicate. Simplify expand code
13810 2016-05-27 Ilya Enkovich <ilya.enkovich@intel.com>
13812 PR middle-end/71279
13813 * fold-const.c (fold_ternary_loc): Don't fold VEC_COND_EXPR
13816 2016-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13818 * config/aarch64/aarch64-modes.def (CC_ZESWP, CC_SESWP): Delete.
13819 * config/aarch64/aarch64.c (aarch64_select_cc_mode): Remove condition
13820 that returns CC_SESWPmode and CC_ZESWPmode.
13821 (aarch64_get_condition_code_1): Remove handling of CC_SESWPmode
13823 (aarch64_rtx_costs): Likewise.
13825 2016-05-26 Michael Meissner <meissner@linux.vnet.ibm.com>
13827 * config/rs6000/rs6000.c (rs6000_emit_p9_fp_minmax): New function
13828 for ISA 3.0 min/max support.
13829 (rs6000_emit_p9_fp_cmove): New function for ISA 3.0 floating point
13830 conditional move support.
13831 (rs6000_emit_cmove): Call rs6000_emit_p9_fp_minmax and
13832 rs6000_emit_p9_fp_cmove if the ISA 3.0 instructions are
13834 * config/rs6000/rs6000.md (SFDF2): New iterator to allow doing
13835 conditional moves where the comparison type is different from move
13837 (fp_minmax): New code iterator for smin/smax.
13838 (minmax): New code attributes for min/max.
13839 (SMINMAX): Likewise.
13840 (smax<mode>3): Combine min, max insns into one insn using the
13841 fp_minmax code iterator. Add support for ISA 3.0 min/max
13842 instructions that don't need -ffast-math.
13843 (s<minmax><mode>3): Likewise.
13844 (smax<mode>3_vsx): Likewise.
13845 (smin<mode>3): Likewise.
13846 (s<minmax><mode>3_vsx): Likewise.
13847 (smin<mode>3_vsx): Likewise.
13848 (pre-VSX min/max splitters): Likewise.
13849 (s<minmax><mode>3_fpr): Likewise.
13850 (movsfcc): Rewrite floating point conditional moves to combine
13851 SFmode/DFmode into a single insn.
13852 (mov<mode>cc): Likewise.
13853 (movdfcc): Likewise.
13854 (fselsfsf4): Combine FSEL cases into a single insn, using SFDF and
13855 SFDF2 iterators to handle all combinations.
13856 (fseldfsf4): Likewise.
13857 (fsel<SFDF:mode><SFDF2:mode>4): Likewise.
13858 (fseldfdf4): Likewise.
13859 (fselsfdf4): Likewise.
13860 (mov<SFDF:mode><SFDF2:mode>cc_p9): Add support for the ISA 3.0
13861 comparison instructions that set a 0/-1 mask, and use it for
13862 floating point conditional move via XXSEL.
13863 (fpmask<mode>): Likewise.
13864 (xxsel<mode>): Likewise.
13865 * config/rs6000/predicates.md (min_max_operator): Delete, no
13867 (fpmask_comparison_operaton): New insn for ISA 3.0 comparison
13868 instructions that generate a 0/-1 mask for use with XXSEL.
13869 * config/rs6000/rs6000.h (TARGET_MINMAX_SF): New helper macros to
13870 say whether floating point min/max is available, either through
13871 FSEL, ISA 2.06 min/max, and ISA 3.0 min/max instrucitons.
13872 (TARGET_MINMAX_DF): Likewise.
13874 2016-05-27 Alan Modra <amodra@gmail.com>
13876 PR rtl-optimization/71275
13877 * ira.c (ira): Call loop_optimizer_init to set up bb_loop_depth
13878 for update_equiv_regs and combine_and_move_insns.
13880 2016-05-26 Uros Bizjak <ubizjak@gmail.com>
13882 * config/i386/i386.md (*movqi_internal) <attr "isa">: Use
13883 if_then_else or cond RTXes to calculate attribute value.
13884 * config/i386/mmx.md (*vec_extractv2sf_1) <attr "prefix_rep">: Ditto.
13885 <attr "length_immediate>: Ditto.
13886 (*vec_extractv2sf_1) <attr "length_immediate">: Ditto.
13887 * config/i386/sse.md (sse_loadlps) <attr "length_immediate">: Ditto.
13888 (*vec_concatv2sf_sse4_1) <attr "isa">: Ditto.
13889 <attr "type">: Ditto.
13890 <attr "prefix_data16">: Ditto.
13891 <attr "prefix_extra">: Ditto.
13892 <attr "length_immediate">: Ditto.
13893 <attr "prefix">: Ditto.
13894 (vec_set<mode>_0) <attr "isa">: Ditto.
13895 <attr "prefix_extra">: Ditto.
13896 <attr "length_immediate">: Ditto.
13897 <attr "prefix">: Ditto.
13898 (*vec_interleave_highv2df) <attr "prefix_data16">: Ditto.
13899 (*vec_interleave_lowv2df) <attr "prefix_data16">: Ditto.
13900 (sse2_storelpd) <attr "prefix_data16">: Ditto.
13901 (sse2_loadhpd) <attr "prefix_data16">: Ditto.
13902 (sse2_loadlpd) <attr "prefix_data16">: Ditto.
13903 <attr "length_immediate">: Ditto.
13904 <attr "prefix">: Ditto.
13905 (sse2_movsd) <attr "length_immediate">: Ditto.
13906 <attr "prefix">: Ditto.
13907 (vec_concatv2df) <attr "isa">: Ditto.
13908 <attr "prefix">: Ditto.
13909 (*vec_extractv4si) <attr "prefix_extra">: Ditto.
13910 (*vec_extractv2di_1) <attr "isa">: Ditto.
13911 <attr "type">: Ditto.
13912 <attr "length_immediate">: Ditto.
13913 <attr "prefix_rex">: Ditto.
13914 <attr "prefix_extra">: Ditto.
13915 (*vec_concatv2si_sse4_1) <attr "type">: Ditto.
13916 <attr "prefix_extra">: Ditto.
13917 <attr "length_immediate">: Ditto.
13918 (vec_concatv2di) <attr "isa">: Ditto.
13919 <attr "prefix_extra">: Ditto.
13920 <attr "length_immediate">: Ditto.
13921 <attr "prefix">: Ditto.
13923 2016-05-26 Martin Liska <mliska@suse.cz>
13925 * tree-ssa-loop-ivopts.c (comp_cost::infinite_cost_p): New
13927 (operator+): Likewise.
13928 (operator-): Likewise.
13929 (comp_cost::operator+=): Likewise.
13930 (comp_cost::operator-=): Likewise.
13931 (comp_cost::operator/=): Likewise.
13932 (comp_cost::operator*=): Likewise.
13933 (operator<): Likewise.
13934 (operator==): Likewise.
13935 (operator<=): Likewise.
13936 (new_cost): Remove.
13937 (infinite_cost_p): Likewise.
13938 (add_costs): Likewise.
13939 (sub_costs): Likewise.
13940 (compare_costs): Likewise.
13941 (set_group_iv_cost): Use the newly introduced functions.
13942 (get_address_cost): Likewise.
13943 (get_shiftadd_cost): Likewise.
13944 (force_expr_to_var_cost): Likewise.
13945 (split_address_cost): Likewise.
13946 (ptr_difference_cost): Likewise.
13947 (difference_cost): Likewise.
13948 (get_computation_cost_at): Likewise.
13949 (determine_group_iv_cost_generic): Likewise.
13950 (determine_group_iv_cost_address): Likewise.
13951 (determine_group_iv_cost_cond): Likewise.
13952 (autoinc_possible_for_pair): Likewise.
13953 (determine_group_iv_costs): Likewise.
13954 (cheaper_cost_pair): Likewise.
13955 (iv_ca_recount_cost): Likewise.
13956 (iv_ca_set_no_cp): Likewise.
13957 (iv_ca_set_cp): Likewise.
13958 (iv_ca_cost): Likewise.
13959 (iv_ca_new): Likewise.
13960 (iv_ca_dump): Likewise.
13961 (iv_ca_narrow): Likewise.
13962 (iv_ca_prune): Likewise.
13963 (iv_ca_replace): Likewise.
13964 (try_add_cand_for): Likewise.
13965 (try_improve_iv_set): Likewise.
13966 (find_optimal_iv_set): Likewise.
13968 2016-05-26 Richard Sandiford <richard.sandiford@arm.com>
13970 * tree-ssa-loop-ivopts.c (loop_body_includes_call): Don't assume
13971 that internal functions will clobber all caller-saved registers.
13973 2016-05-26 Wilco Dijkstra <wdijkstr@arm.com>
13975 * config/aarch64/aarch64.c (aarch64_case_values_threshold):
13976 Return a better case_values_threshold when optimizing.
13978 2016-05-26 Wilco Dijkstra <wdijkstr@arm.com>
13980 * config/aarch64/aarch64-simd.md (aarch64_combinez):
13981 Add ? to integer variant.
13982 (aarch64_combinez_be): Likewise.
13984 2016-05-26 Jakub Jelinek <jakub@redhat.com>
13986 * config/i386/sse.md (*vcvtps2ph_store<mask_name>): Use v constraint
13987 instead of x constraint.
13988 (vcvtps2ph256<mask_name>): Likewise.
13990 * config/i386/sse.md (*ssse3_palignr<mode>_perm): Add avx512bw
13991 alternative. Formatting fix.
13993 * config/i386/sse.md
13994 (<mask_codefor>avx512vl_shuf_<shuffletype>32x4_1<mask_name>): Rename
13996 (avx512vl_shuf_<shuffletype>32x4_1<mask_name>): ... this.
13997 (*avx_vperm_broadcast_v4sf): Use v constraint instead of x. Use
13998 maybe_evex prefix instead of vex.
13999 (*avx_vperm_broadcast_<mode>): Use v constraint instead of x. Handle
14000 EXT_REX_SSE_REG_P (op0) case in the splitter.
14002 2016-05-25 Jeff Law <law@redhat.com>
14004 PR tree-optimization/71272
14005 * tree-ssa-threadbackward.c (convert_and_register_jump_thread_path):
14006 Update comments. Add test for empty path.
14008 2016-05-25 Bill Seurer <seurer@linux.vnet.ibm.com>
14010 * config/rs6000/altivec.h (vec_cmpne): Add #define for vec_cmpne.
14011 * config/rs6000/rs6000-builtin.def (vec_cmpne): Add vec_cmpne as a
14012 special case builtin.
14013 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
14014 code for ALTIVEC_BUILTIN_VEC_CMPNE.
14015 * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
14016 for __builtin_vec_cmpne.
14018 2016-05-25 Eric Botcazou <ebotcazou@adacore.com>
14020 * tree-ssa-phiopt.c (factor_out_conditional_conversion): Remove
14021 redundant test and bail out if the type of the new operand is not
14022 a GIMPLE register type after stripping a VIEW_CONVERT_EXPR.
14024 2016-05-25 Uros Bizjak <ubizjak@gmail.com>
14026 * config/i386/i386.opt (ix86_target_flags_explicit): Remove.
14027 (x_ix86_target_flags_explicit): Remove.
14028 * config/i386/i386.c (ix86_function_specific_save): Do not copy
14029 x_ix86_target_flags_explicit.
14030 (ix86_function_specific_restore): Ditto.
14032 2016-05-25 Uros Bizjak <ubizjak@gmail.com>
14033 H.J. Lu <hongjiu.lu@intel.com>
14036 * common/config/i386/i386-common.c
14037 (OPTION_MASK_ISA_GENERAL_REGS_ONLY_UNSET): New.
14038 (ix86_handle_option) <case OPT_mgeneral_regs_only>: Disable
14039 MPX, MMX, SSE and x87 instructions for -mgeneral-regs-only.
14040 * config/i386/i386.opt (ix86_target_flags): Add new Variable.
14041 (-mgeneral-regs-only): Add new option.
14042 * config/i386/i386.c (ix86_option_override_internal): Don't enable
14043 x87 instructions if only general registers are allowed.
14044 (ix86_target_string): Add ix86_flags argument. Handle additional
14045 flags options through ix86_flags argument. Update all callers.
14046 * doc/invoke.texi (x86 Options): Document -mgeneral-regs-only.
14048 2016-05-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14050 PR rtl-optimization/66940
14051 * ifcvt.c (noce_get_alt_condition): Check that incrementing or
14052 decrementing desired_val will not overflow before performing these
14055 2016-05-25 Ilya Verbin <ilya.verbin@intel.com>
14057 * config/i386/i386-builtin-types.def: Add V16SI_FTYPE_V16SF,
14058 V8DF_FTYPE_V8DF_ROUND, V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND.
14059 * config/i386/i386.c (enum ix86_builtins): Add
14060 IX86_BUILTIN_CVTPS2DQ512_MASK, IX86_BUILTIN_FLOORPS512,
14061 IX86_BUILTIN_FLOORPD512, IX86_BUILTIN_CEILPS512, IX86_BUILTIN_CEILPD512,
14062 IX86_BUILTIN_TRUNCPS512, IX86_BUILTIN_TRUNCPD512,
14063 IX86_BUILTIN_CVTPS2DQ512, IX86_BUILTIN_VEC_PACK_SFIX512,
14064 IX86_BUILTIN_FLOORPS_SFIX512, IX86_BUILTIN_CEILPS_SFIX512,
14065 IX86_BUILTIN_ROUNDPS_AZ_SFIX512.
14066 (builtin_description bdesc_args): Add __builtin_ia32_floorps512,
14067 __builtin_ia32_ceilps512, __builtin_ia32_truncps512,
14068 __builtin_ia32_floorpd512, __builtin_ia32_ceilpd512,
14069 __builtin_ia32_truncpd512, __builtin_ia32_cvtps2dq512,
14070 __builtin_ia32_vec_pack_sfix512, __builtin_ia32_roundps_az_sfix512,
14071 __builtin_ia32_floorps_sfix512, __builtin_ia32_ceilps_sfix512.
14072 Change IX86_BUILTIN_CVTPS2DQ512 to IX86_BUILTIN_CVTPS2DQ512_MASK for
14073 __builtin_ia32_cvtps2dq512_mask.
14074 (ix86_expand_args_builtin): Handle V8DF_FTYPE_V8DF_ROUND,
14075 V16SF_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF_ROUND, V16SI_FTYPE_V16SF.
14076 (ix86_builtin_vectorized_function): Handle builtins mentioned above.
14077 * config/i386/sse.md
14078 (<mask_codefor>avx512f_fix_notruncv16sfv16si<mask_name><round_name>):
14080 (avx512f_fix_notruncv16sfv16si<mask_name><round_name>): ... this.
14081 (<mask_codefor>avx512f_cvtpd2dq512<mask_name><round_name>): Rename
14083 (avx512f_cvtpd2dq512<mask_name><round_name>): ... this.
14084 (avx512f_vec_pack_sfix_v8df): New define_expand.
14085 (avx512f_roundpd512): Rename to ...
14086 (avx512f_round<castmode>512): ... this. Change iterator.
14087 (avx512f_roundps512_sfix): New define_expand.
14088 (round<mode>2_sfix): Change iterator.
14090 2016-05-25 Nick Clifton <nickc@redhat.com>
14092 * config/msp430/msp430.c (msp430_attr): Produce an error if a
14093 static interrupt handler is detected.
14094 * config/msp430/msp430.h (LIB_SPEC): Do not use msp430.ld as the
14095 default linker script.
14096 * config/msp430/msp430.md (movpsihi2_lo): New pattern for loading
14097 the low part of a symbolic pointer.
14099 2016-05-25 Richard Biener <rguenther@suse.de>
14101 PR tree-optimization/71261
14102 * tree-if-conv.c (ifcvt_split_def_stmt): Walk uses on the
14103 interesting stmt instead of immediate uses when looking
14104 for the use operand to replace.
14106 2016-05-25 Martin Liska <mliska@suse.cz>
14108 * ipa-inline.c (edge_badness): Use 'w/' instead of 'w'.
14110 2016-05-25 Richard Biener <rguenther@suse.de>
14112 PR tree-optimization/71264
14113 * tree-vect-stmts.c (vect_init_vector): Properly deal with
14116 2016-05-25 Martin Liska <mliska@suse.cz>
14118 PR tree-optimization/71239
14119 * tree.c (array_at_struct_end_p): Do not call operand_equal_p
14120 if DECL_SIZE is NULL.
14122 2016-05-25 Richard Biener <rguenther@suse.de>
14124 * timevar.def (TV_TREE_LOOP_IFCVT): Add.
14125 * tree-if-conv.c (pass_data_if_conversion): Use it.
14127 2016-05-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
14129 * cgraph.c (cgraph_node::get_availability): Fix typo in comment.
14130 * symtab.c (symtab_node::binds_to_current_def_p): Likewise.
14131 * varpool.c (varpool_node::get_availability): Likewise.
14133 2016-05-24 Michael Meissner <meissner@linux.vnet.ibm.com>
14135 * config/rs6000/altivec.md (VNEG iterator): New iterator for
14136 VNEGW/VNEGD instructions.
14137 (p9_neg<mode>2): New insns for ISA 3.0 VNEGW/VNEGD.
14138 (neg<mode>2): Add expander for V2DImode added in ISA 2.07, and
14139 support for ISA 3.0 VNEGW/VNEGD instructions.
14141 2016-05-24 Cesar Philippidis <cesar@codesourcery.com>
14143 * gimplify.c (omp_notice_variable): Use zero-length arrays for data
14144 pointers inside OACC_DATA regions.
14145 (gimplify_scan_omp_clauses): Prune firstprivate clause associated
14146 with OACC_DATA, OACC_ENTER_DATA and OACC_EXIT data regions.
14147 (gimplify_adjust_omp_clauses): Fix typo in comment.
14149 2016-05-24 Michael Meissner <meissner@linux.vnet.ibm.com>
14151 * config/rs6000/altivec.md (VParity): New mode iterator for vector
14152 parity built-in functions.
14153 (p9v_ctz<mode>2): Add support for ISA 3.0 vector count trailing
14155 (p9v_parity<mode>2): Likewise.
14156 * config/rs6000/vector.md (VEC_IP): New mode iterator for vector
14158 (ctz<mode>2): ISA 3.0 expander for vector count trailing zeros.
14159 (parity<mode>2): ISA 3.0 expander for vector parity.
14160 * config/rs6000/rs6000-builtin.def (BU_P9_MISC_1): New macros for
14162 (BU_P9_64BIT_MISC_0): Likewise.
14163 (BU_P9_MISC_0): Likewise.
14164 (BU_P9V_AV_1): Likewise.
14165 (BU_P9V_AV_2): Likewise.
14166 (BU_P9V_AV_3): Likewise.
14167 (BU_P9V_AV_P): Likewise.
14168 (BU_P9V_VSX_1): Likewise.
14169 (BU_P9V_OVERLOAD_1): Likewise.
14170 (BU_P9V_OVERLOAD_2): Likewise.
14171 (BU_P9V_OVERLOAD_3): Likewise.
14172 (VCTZB): Add vector count trailing zeros support.
14176 (VPRTYBD): Add vector parity support.
14177 (VPRTYBQ): Likewise.
14178 (VPRTYBW): Likewise.
14179 (VCTZ): Add overloaded vector count trailing zeros support.
14180 (VPRTYB): Add overloaded vector parity support.
14181 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
14182 overloaded vector count trailing zeros and parity instructions.
14183 * config/rs6000/rs6000.md (wd mode attribute): Add V1TI and TI for
14184 vector parity support.
14185 * config/rs6000/altivec.h (vec_vctz): Add ISA 3.0 vector count
14186 trailing zeros support.
14187 (vec_cntlz): Likewise.
14188 (vec_vctzb): Likewise.
14189 (vec_vctzd): Likewise.
14190 (vec_vctzh): Likewise.
14191 (vec_vctzw): Likewise.
14192 (vec_vprtyb): Add ISA 3.0 vector parity support.
14193 (vec_vprtybd): Likewise.
14194 (vec_vprtybw): Likewise.
14195 (vec_vprtybq): Likewise.
14196 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
14197 the ISA 3.0 vector count trailing zeros and vector parity built-in
14200 2016-05-24 Kugan Vivekanandarajah <kuganv@linaro.org>
14202 * tree-ssa-reassoc.c (sort_by_operand_rank): Skip checking gimple_bb
14203 when there is stmt_to_insert.
14205 2016-05-24 Martin Sebor <msebor@redhat.com>
14208 * tree.h (complete_or_array_type_p): New inline function.
14210 2016-05-24 Jakub Jelinek <jakub@redhat.com>
14212 * config/i386/i386.h (TARGET_AVOID_4BYTE_PREFIXES): Define.
14213 * config/i386/constraints.md (Yr): Test TARGET_AVOID_4BYTE_PREFIXES
14214 rather than X86_TUNE_AVOID_4BYTE_PREFIXES.
14216 * config/i386/sse.md (<sse4_1>_round<ssemodesuffix><avxsizesuffix>):
14217 Limit 1st alternative to noavx isa, split 2nd alternative into one
14218 noavx and one avx alternative, use *x and Bm in the former and
14219 x and m in the latter.
14221 * config/i386/sse.md (vec_set<mode>_0): Use sse4_noavx isa instead
14222 of sse4 for the first alternative, drop %v from the template
14223 and d operand modifier. Split second alternative into one sse4_noavx
14224 and one avx alternative, use *x instead of *v in the former and v
14225 instead of *v in the latter.
14226 (*sse4_1_extractps): Use noavx isa instead of * for the first
14227 alternative, drop %v from the template. Split second alternative into
14228 one noavx and one avx alternative, use *x instead of *v in the
14229 former and v instead of *v in the latter.
14230 (<vi8_sse4_1_avx2_avx512>_movntdqa): Guard the first 2 alternatives
14231 with noavx and the last one with avx.
14232 (sse4_1_phminposuw): Guard first alternative with noavx isa,
14233 split the second one into one noavx and one avx alternative,
14234 use *x and Bm in the former and x and m in the latter one.
14235 (<sse4_1>_ptest<mode>): Use noavx instead of * for the first two
14238 * config/i386/sse.md (sse4_1_<code>v8qiv8hi2<mask_name>): Limit
14239 first two alternatives to noavx, use *x instead of *v in the second
14240 one, add avx alternative without *.
14241 (sse4_1_<code>v4qiv4si2<mask_name>, sse4_1_<code>v4hiv4si2<mask_name>,
14242 sse4_1_<code>v2qiv2di2<mask_name>, sse4_1_<code>v2hiv2di2<mask_name>,
14243 sse4_1_<code>v2siv2di2<mask_name>): Likewise.
14245 2016-05-24 Jeff Law <law@redhat.com>
14247 * tree-ssa-threadbackwards.c (convert_and_register_jump_thread_path):
14248 New function, extracted from...
14249 (fsm_find_control_statement_thread_paths): Here. Use the new function.
14250 Allow simple copies and constant initializations in the SSA chain.
14252 2016-05-24 Marek Polacek <polacek@redhat.com>
14255 * gimplify.c (gimplify_switch_expr): Look into the innermost lexical
14258 2016-05-24 Jakub Jelinek <jakub@redhat.com>
14261 * tree-vect-stmts.c (vectorizable_simd_clone_call): Handle
14262 SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP like
14263 SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP. Add
14264 SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP and
14265 SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP cases explicitly.
14267 2016-05-24 Richard Biener <rguenther@suse.de>
14269 PR tree-optimization/71240
14270 * tree-ssa-math-opts.c (init_symbolic_number): Verify the source
14273 2016-05-24 Richard Biener <rguenther@suse.de>
14275 PR tree-optimization/71230
14276 * tree-ssa-reassoc.c (zero_one_operation): Handle negate special ops.
14278 2016-05-24 Richard Sandiford <richard.sandiford@arm.com>
14280 * tree-vectorizer.h (vectorizable_comparison): Delete.
14281 * tree-vect-loop.c (vectorizable_reduction): Remove redundant
14282 PURE_SLP_STMT check.
14283 * tree-vect-stmts.c (vectorizable_call): Likewise.
14284 (vectorizable_simd_clone_call): Likewise.
14285 (vectorizable_conversion): Likewise.
14286 (vectorizable_assignment): Likewise.
14287 (vectorizable_shift): Likewise.
14288 (vectorizable_operation): Likewise.
14289 (vectorizable_load): Likewise.
14290 (vectorizable_condition): Likewise.
14291 (vectorizable_store): Likewise. Assert that we don't have
14293 (vectorizable_comparison): Make static. Remove redundant
14294 PURE_SLP_STMT check.
14295 (vect_transform_stmt): Assert that we always have an slp_node
14298 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14300 * config/arm/neon.md (ashldi3_neon): Replace comparison of INTVAL of
14301 operands[2] against 1 with comparison against CONST1_RTX.
14302 (<shift>di3_neon): Likewise.
14303 * config/arm/predicates.md (const0_operand): Replace with comparison
14304 against CONST0_RTX.
14306 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14308 * config/arm/arm.md (ashldi3): Replace comparison of INTVAL of
14309 operands[2] against 1 with comparison against CONST1_RTX.
14310 (ashrdi3): Likewise.
14311 (lshrdi3): Likewise.
14312 (ashlsi3): Replace cast of INTVAL to unsigned HOST_WIDE_INT with
14314 (ashrsi3): Likewise.
14315 (lshrsi3): Likewise.
14316 (rotrsi3): Likewise.
14317 (define_split above *compareqi_eq0): Likewise.
14318 (define_split above "prologue"): Likewise.
14319 * config/arm/arm.c (thumb1_size_rtx_costs): Likewise.
14320 * config/arm/predicates.md (shift_operator): Likewise.
14321 (shift_nomul_operator): Likewise.
14322 (sat_shift_operator): Likewise.
14323 (thumb1_cmp_operand): Likewise.
14324 (const_neon_scalar_shift_amount_operand): Replace manual range
14325 check with IN_RANGE.
14326 * config/arm/thumb1.md (define_peephole2 above *thumb_subdi3):
14327 Replace cast of INTVAL to unsigned HOST_WIDE_INT with UINTVAL.
14329 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14331 * config/arm/arm.md (andsi3): Replace cast of 1 to HOST_WIDE_INT
14332 with HOST_WIDE_INT_1.
14334 * config/arm/arm.c (optimal_immediate_sequence): Replace cast of
14335 1 to unsigned HOST_WIDE_INT with HOST_WIDE_INT_1U.
14336 (arm_canonicalize_comparison): Likewise.
14337 (thumb1_rtx_costs): Replace cast of 1 to HOST_WIDE_INT with
14339 (thumb1_size_rtx_costs): Likewise.
14340 (vfp_const_double_index): Replace cast of 1 to unsigned
14341 HOST_WIDE_INT with HOST_WIDE_INT_1U.
14342 (get_jump_table_size): Replace cast of 1 to HOST_WIDE_INT with
14344 (arm_asan_shadow_offset): Replace cast of 1 to unsigned
14345 HOST_WIDE_INT with HOST_WIDE_INT_1U.
14346 * config/arm/neon.md (vec_set<mode>): Replace cast of 1 to
14347 HOST_WIDE_INT with HOST_WIDE_INT_1.
14349 2016-05-24 Marek Polacek <polacek@redhat.com>
14351 * tree-cfg.h (should_remove_lhs_p): New predicate.
14352 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Use it.
14353 * gimplify.c (gimplify_modify_expr): Likewise.
14354 * tree-cfg.c (verify_gimple_call): Likewise.
14355 * tree-cfgcleanup.c (fixup_noreturn_call): Likewise.
14356 * gimple-fold.c: Include "tree-cfg.h".
14357 (gimple_fold_call): Use should_remove_lhs_p.
14359 2016-05-24 Richard Biener <rguenther@suse.de>
14361 PR tree-optimization/71253
14362 * cfganal.h (control_dependences): Make robust against edge
14364 (control_dependences::control_dependences): Remove edge_list argument.
14365 (control_dependences::get_edge): Remove.
14366 (control_dependences::get_edge_src): Add.
14367 (control_dependences::get_edge_dest): Likewise.
14368 (control_dependences::m_el): Make a vector of edge src/dest index.
14369 * cfganal.c (control_dependences::find_control_dependence): Adjust.
14370 (control_dependences::control_dependences): Likewise.
14371 (control_dependences::~control_dependence): Likewise.
14372 (control_dependences::get_edge): Remove.
14373 (control_dependences::get_edge_src): Add.
14374 (control_dependences::get_edge_dest): Likewise.
14375 * tree-ssa-dce.c (mark_control_dependent_edges_necessary): Use
14377 (perform_tree_ssa_dce): Adjust.
14378 * tree-loop-distribution.c (create_edge_for_control_dependence): Use
14380 (pass_loop_distribution::execute): Adjust. Do loop destroying
14381 conditional on changed.
14383 2016-05-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14386 * config/arm/arm.c (gen_operands_ldrd_strd): Remove bogus early
14387 return. Reindent transformation comment and mention the ARM state
14390 2016-05-24 Kugan Vivekanandarajah <kuganv@linaro.org>
14392 PR middle-end/71252
14393 * tree-ssa-reassoc.c (rewrite_expr_tree_parallel): Add stmt_to_insert
14394 after build_and_add_sum creates new use stmt.
14396 2016-05-24 Richard Sandiford <richard.sandiford@arm.com>
14398 * tree-vect-stmts.c (vectorizable_load): Reorder checks so that
14399 load_lanes/grouped_load classification comes first. Don't check
14400 whether the vectorization factor is a multiple of the group size
14403 2016-05-24 Richard Sandiford <richard.sandiford@arm.com>
14405 * tree-vect-data-refs.c (vect_analyze_group_access_1): Set
14406 GROUP_GAP for single-element interleaving.
14407 * tree-vect-stmts.c (vectorizable_load): Remove force_peeling
14410 2016-05-24 Richard Biener <rguenther@suse.de>
14412 PR middle-end/70434
14414 * tree-ssa.c (non_rewritable_mem_ref_base): Make sure to mark
14415 bases which are accessed with non-invariant indices.
14416 * gimple-fold.c (maybe_canonicalize_mem_ref_addr): Re-write
14417 constant index ARRAY_REFs of vectors into BIT_FIELD_REFs.
14419 2016-05-24 Kugan Vivekanandarajah <kuganv@linaro.org>
14421 PR middle-end/71170
14422 * tree-ssa-reassoc.c (struct operand_entry): Add field stmt_to_insert.
14423 (add_to_ops_vec): Add stmt_to_insert.
14424 (add_repeat_to_ops_vec): Init stmt_to_insert.
14425 (insert_stmt_before_use): New.
14426 (transform_add_to_multiply): Remove mult_stmt insertion and add it
14428 (get_ops): Init stmt_to_insert.
14429 (maybe_optimize_range_tests): Likewise.
14430 (rewrite_expr_tree): Insert stmt_to_insert before use stmt.
14431 (rewrite_expr_tree_parallel): Likewise.
14432 (reassociate_bb): Likewise.
14434 2016-05-23 Michael Meissner <meissner@linux.vnet.ibm.com>
14437 * config/rs6000/altivec.md (altivec_vperm_<mode>_internal): Drop
14438 ISA 3.0 xxperm fusion alternative.
14439 (altivec_vperm_v8hiv16qi): Likewise.
14440 (altivec_vperm_<mode>_uns_internal): Likewise.
14441 (vperm_v8hiv4si): Likewise.
14442 (vperm_v16qiv8hi): Likewise.
14444 2016-05-23 Michael Meissner <meissner@linux.vnet.ibm.com>
14445 Kelvin Nilsen <kelvin@gcc.gnu.org>
14447 * config/rs6000/rs6000.c (rs6000_expand_vector_set): Generate
14448 vpermr/xxpermr on ISA 3.0.
14449 (altivec_expand_vec_perm_le): Likewise.
14450 * config/rs6000/altivec.md (UNSPEC_VPERMR): New unspec.
14451 (altivec_vpermr_<mode>_internal): Add VPERMR/XXPERMR support for
14454 2016-05-23 Uros Bizjak <ubizjak@gmail.com>
14456 * config/i386/i386.h (IS_STACK_MODE): Enable for
14457 TARGET_MIX_SSE_I387. Rewrite using X87_FLOAT_MODE_P and
14458 SSE_FLOAT_MODE_P macros.
14459 * config/i386/i386.c (ix86_preferred_reload_class): Use
14460 IS_STACK_MODE, INTEGER_CLASS_P, FLOAT_CLASS_P and Q_CLASS_P macros.
14461 Cleanup regclass processing for CONST_DOUBLE_P.
14462 (ix86_preferred_output_reload_class): Use IS_STACK_MODE macro.
14463 (ix86_rtx_costs): Remove redundant TARGET_80387 check
14464 with IS_STACK_MODE macro.
14465 * config/i386/i386.md: Replace SSE_FLOAT_MODE_P (DFmode)
14467 (*movdf_internal): Use IS_STACK_MODE macro.
14468 (*movsf_internal): Ditto.
14470 2016-05-23 Marc Glisse <marc.glisse@inria.fr>
14472 * match.pd (a * (1 << b), ~x & ~y, ~X ^ ~Y, (X ^ Y) ^ Y, ~ (-A),
14473 ~ (A - 1), ~(~X >> Y), ~(~X >>r Y)): Relax constraints.
14475 2016-05-23 Jeff Law <law@redhat.com>
14477 * tree-ssa-threadbackward.c (profitable_jump_thread_path): New function
14479 (fsm_find_control_statement_thread_paths): Call it.
14481 2016-05-23 Martin Jambor <mjambor@suse.cz>
14484 * ipa-cp.c (ipa_get_indirect_edge_target_1): Only check value of
14485 from_global_constant if t is not NULL.
14487 2016-05-23 Marek Polacek <polacek@redhat.com>
14490 * common.opt (Wswitch-unreachable): New option.
14491 * doc/invoke.texi: Document -Wswitch-unreachable.
14492 * gimplify.c (gimplify_switch_expr): Implement the -Wswitch-unreachable
14495 2016-05-23 Bin Cheng <bin.cheng@arm.com>
14497 * tree-ssa-address.c (copy_ref_info): Check NULL TMR_STEP when
14498 TMR_INDEX is non-NULL.
14500 2016-05-23 Richard Biener <rguenther@suse.de>
14502 PR tree-optimization/71230
14503 * tree-ssa-reassoc.c (acceptable_pow_call): Move initial condition...
14504 (try_special_add_to_ops): ... here. Always test for single-use.
14506 2016-05-23 Martin Jambor <mjambor@suse.cz>
14508 * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Create an empty
14509 default block if a PHI node in the original one would be resized.
14511 2016-05-23 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
14513 PR tree-optimization/58135
14514 * tree-vect-slp.c: When group size is not multiple
14515 of vector size, allow splitting of store group at
14518 2016-05-23 Christophe Lyon <christophe.lyon@linaro.org>
14520 * config/arm/arm_neon.h (vtst_p16, vtstq_p16): New.
14522 2016-05-22 Jakub Jelinek <jakub@redhat.com>
14524 * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
14525 vec_set_hi_<mode><mask_name>): Add && <mask_avx512dq_condition>
14526 condition. For !TARGET_AVX512DQ, emit 32x4 instruction instead
14529 * config/i386/sse.md (vec_set_lo_v16hi, vec_set_hi_v16hi,
14530 vec_set_lo_v32qi, vec_set_hi_v32qi): Add alternative with
14531 v constraint instead of x and vinserti32x4 insn.
14533 * config/i386/sse.md (i128vldq): New mode iterator.
14534 (avx2_vbroadcasti128_<mode>, avx_vbroadcastf128_<mode>): Add
14535 avx512dq and avx512vl alternatives.
14537 * config/i386/sse.md (avx2_vec_dupv4df): Use v instead of x
14538 constraint, use maybe_evex prefix instead of vex.
14539 (vec_dupv4sf): Use v constraint instead of x for output
14540 operand except for noavx alternative, use Yv constraint
14541 instead of x for input. Use maybe_evex prefix instead of vex.
14542 (*vec_dupv4si): Likewise.
14543 (*vec_dupv2di): Likewise.
14545 2016-05-22 Kugan Vivekanandarajah <kuganv@linaro.org>
14547 PR middle-end/40921
14548 * tree-ssa-reassoc.c (try_special_add_to_ops): New.
14549 (linearize_expr_tree): Call try_special_add_to_ops.
14550 (reassociate_bb): Convert MULT_EXPR by (-1) to NEGATE_EXPR.
14552 2016-05-21 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
14554 * config/avr/avr.c (avr_expand_prologue): Add INCOMING_FRAME_SP_OFFSET
14555 to computed stack_usage.
14557 2016-05-21 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
14560 * config/avr/avr.md (define_expand "mov<mode>"): If the source
14561 operand is subreg (symbol_ref) then move the symbol ref to register.
14563 2016-05-21 Jan Hubicka <hubicka@ucw.cz>
14565 * tree.c (array_at_struct_end_p): Look through MEM_REF.
14567 2016-05-21 Kugan Vivekanandarajah <kuganv@linaro.org>
14569 PR middle-end/71179
14570 * tree-ssa-reassoc.c (transform_add_to_multiply): Disallow float
14573 2016-05-20 Eric Botcazou <ebotcazou@adacore.com>
14575 * tree-vrp.c (compare_values_warnv): Simplify handling of symbolic
14576 ranges by calling get_single_symbol and tidy up. Look more closely
14577 into NAME + CST1 vs CST2 comparisons if type overflow is undefined.
14579 2016-05-20 Jeff Law <law@redhat.com>
14581 * bitmap.c (bitmap_find_bit): Remove useless test.
14583 2016-05-20 Segher Boessenkool <segher@kernel.crashing.org>
14585 * function.c (thread_prologue_and_epilogue_insns): Commit the
14586 insertion of the epilogue.
14588 2016-05-20 Martin Jambor <mjambor@suse.cz>
14590 PR tree-optimization/70884
14591 * tree-sra.c (initialize_constant_pool_replacements): Do not check
14592 should_scalarize_away_bitmap and cannot_scalarize_away_bitmap bits.
14593 (sort_and_splice_var_accesses): Do not consider multiple scalar reads
14594 of constant pool data as a reason for scalarization.
14596 2016-05-20 Eric Botcazou <ebotcazou@adacore.com>
14598 * config/arm/arm.c (arm_expand_prologue): Set the stack usage to 0
14599 for naked functions.
14600 (thumb1_expand_prologue): Likewise.
14602 2016-05-20 Nathan Sidwell <nathan@acm.org>
14604 * config/nvptx/nptx.c (nvptx_option_override): Only set
14605 flag_toplevel_reorder, if not explicitly specified. Set
14606 flag_no_common, unless explicitly specified.
14608 2016-05-20 David Malcolm <dmalcolm@redhat.com>
14610 * calls.c (can_implement_as_sibling_call_p): Mark param
14611 reg_parm_stack_space with ATTRIBUTE_UNUSED.
14613 2016-05-20 Uros Bizjak <ubizjak@gmail.com>
14615 * config/i386/i386.c (ix86_rtx_costs) <case CONST_DOUBLE>:
14616 Use IS_STACK_MODE when calculating cost of standard 80387 constants.
14617 Fallthru to CONST_VECTOR case to calculate cost of standard SSE
14619 <case CONST_WIDE_INT>: Calculate cost of (MEM (SYMBOL_REF)).
14620 (ix86_legitimate_constant_p): Use CASE_CONST_SCALAR_INT
14621 and CASE_CONST_ANY.
14623 2016-05-20 Cesar Philippidis <cesar@codesourcery.com>
14625 * config/nvptx/nvptx.md (sincossf3): New pattern.
14627 2016-05-20 David Malcolm <dmalcolm@redhat.com>
14629 * calls.c (maybe_complain_about_tail_call): New function.
14630 (initialize_argument_information): Call
14631 maybe_complain_about_tail_call when clearing *may_tailcall.
14632 (can_implement_as_sibling_call_p): Call
14633 maybe_complain_about_tail_call when returning false.
14634 (expand_call): Read CALL_EXPR_MUST_TAIL_CALL and, if set,
14635 ensure try_tail_call is set. Call maybe_complain_about_tail_call
14636 if tail-call optimization fails.
14637 * cfgexpand.c (expand_call_stmt): Initialize
14638 CALL_EXPR_MUST_TAIL_CALL from gimple_call_must_tail_p.
14639 * gimple-pretty-print.c (dump_gimple_call): Dump
14640 gimple_call_must_tail_p.
14641 * gimple.c (gimple_build_call_from_tree): Call
14642 gimple_call_set_must_tail with the value of
14643 CALL_EXPR_MUST_TAIL_CALL.
14644 * gimple.h (enum gf_mask): Add GF_CALL_MUST_TAIL_CALL.
14645 (gimple_call_set_must_tail): New function.
14646 (gimple_call_must_tail_p): New function.
14647 * print-tree.c (print_node): Update printing of TREE_STATIC
14648 to reflect its use for CALL_EXPR_MUST_TAIL_CALL.
14649 * tree-core.h (struct tree_base): Add MUST_TAIL_CALL to the
14650 trailing comment listing applicable flags.
14651 * tree.h (CALL_EXPR_MUST_TAIL_CALL): New macro.
14653 2016-05-20 David Malcolm <dmalcolm@redhat.com>
14655 * calls.c (expand_call): Move "Rest of purposes for tail call
14656 optimizations to fail" to...
14657 (can_implement_as_sibling_call_p): ...this new function, and
14658 split into multiple "if" statements.
14660 2016-05-20 Jan Hubicka <hubicka@ucw.cz>
14662 * cfgloop.h (expected_loop_iterations_unbounded,
14663 expected_loop_iterations): Unconstify.
14664 * cfgloopanal.c (expected_loop_iterations_unbounded): Sanity check the
14665 profile with known upper bound; return 3 when profile is absent.
14666 (expected_loop_iterations): Update.
14668 2016-05-20 Jan Hubicka <hubicka@ucw.cz>
14670 * loop-doloop.c (doloop_optimize): Use get_estimated_loop_iterations_int
14671 and get_max_loop_iterations_int.
14673 2016-05-20 Jan Hubicka <hubicka@ucw.cz>
14675 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can not produce
14676 realistic upper bounds here.
14678 2016-05-20 Jakub Jelinek <jakub@redhat.com>
14681 * gimple-fold.c (gimple_fold_call): Do not remove lhs of noreturn
14682 calls if the LHS is variable length or has addressable type.
14683 If targets[0]->decl is a noreturn call with void return type and
14684 zero arguments, adjust fntype and remove lhs in that case.
14686 2016-05-20 Marc Glisse <marc.glisse@inria.fr>
14688 PR tree-optimization/71079
14689 PR tree-optimization/71206
14690 * match.pd ((X ^ Y) ^ (X ^ Z)): Convert the arguments.
14692 2016-05-20 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
14694 * tree-vectorizer.c (get_vec_alignment_for_decl): New static function.
14695 (get_vec_alignment_for_array_decl): Likewise.
14696 (get_vec_alignment_for_record_decl): Likewise.
14697 (increase_alignment::execute): Move code to find alignment to
14698 get_vec_alignment_for_array_decl and call get_vec_alignment_for_decl.
14699 (type_align_map): New hash_map.
14701 2016-05-20 Richard Guenther <rguenther@suse.de>
14703 PR tree-optimization/29756
14704 * tree.def (BIT_INSERT_EXPR): New tcc_expression tree code.
14705 * expr.c (expand_expr_real_2): Handle BIT_INSERT_EXPR.
14706 * fold-const.c (operand_equal_p): Likewise.
14707 (fold_ternary_loc): Add constant folding of BIT_INSERT_EXPR.
14708 * gimplify.c (gimplify_expr): Handle BIT_INSERT_EXPR.
14709 * tree-inline.c (estimate_operator_cost): Likewise.
14710 * tree-pretty-print.c (dump_generic_node): Likewise.
14711 * tree-ssa-operands.c (get_expr_operands): Likewise.
14712 * cfgexpand.c (expand_debug_expr): Likewise.
14713 * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
14714 * gimple.c (get_gimple_rhs_num_ops): Handle BIT_INSERT_EXPR.
14715 * tree-cfg.c (verify_gimple_assign_ternary): Verify BIT_INSERT_EXPR.
14716 * tree-ssa.c (non_rewritable_lvalue_p): We can rewrite
14717 vector inserts using BIT_FIELD_REF or MEM_REF on the lhs.
14718 (execute_update_addresses_taken): Do it.
14720 2016-05-20 Richard Biener <rguenther@suse.de>
14722 PR tree-optimization/71185
14723 * tree-ssa-loop-prefetch.c (gather_memory_references): Drop
14724 register operations.
14726 2016-05-20 Richard Biener <rguenther@suse.de>
14728 * tree-if-conv.c (add_bb_predicate_gimplified_stmts): Use
14729 gimple_seq_add_seq_without_update.
14730 (release_bb_predicate): Assert we have no operands to free.
14731 (if_convertible_loop_p_1): Calculate post dominators later.
14732 Do not free BB predicates here.
14733 (combine_blocks): Do not recompute BB predicates.
14734 (version_loop_for_if_conversion): Save BB predicates around
14737 2016-05-19 Segher Boessenkool <segher@kernel.crashing.org>
14739 * function.c (make_epilogue_seq): Remove epilogue_end parameter.
14740 (thread_prologue_and_epilogue_insns): Remove bb_flags. Restructure
14741 code. Ignore sibcalls on EDGE_IGNORE edges.
14742 * shrink-wrap.c (handle_simple_exit): New function. Set EDGE_IGNORE
14743 on edges for sibcalls that run without prologue. The rest of the
14744 function is combined from...
14745 (fix_fake_fallthrough_edge): ... this, and ...
14746 (try_shrink_wrapping): ... a part of this. Remove the bb_with
14747 function argument, make it a local variable.
14749 2016-05-19 Sandra Loosemore <sandra@codesourcery.com>
14751 * config/i386/cygming.h (DWARF2_UNWIND_INFO): Allow
14752 --disable-sjlj-exceptions for TARGET_BI_ARCH to select DWARF-2 EH
14753 for 32-bit mode and SEH for 64-bit.
14754 * config/i386/mingw32.h (SHARED_LIBGCC_UNDEFS_SPEC): Handle
14755 TARGET_64BIT_DEFAULT.
14757 2016-05-19 Ryan Burn <contact@rnburn.com>
14759 * Makefile.in (GTFILES): Add cilk.h and cilk-common.c.
14760 * gengtype.c (open_base_files): Add cilk.h to ifiles.
14762 2016-05-19 Uros Bizjak <ubizjak@gmail.com>
14764 * sched-deps.c (sched_analyze_2) <case TRAP_IF>: Also
14765 force pending loads from memory.
14767 2016-05-19 Kelvin Nilsen <kelvin@gcc.gnu.org>
14769 * config/rs6000/altivec.md (UNSPEC_DARN): New unspec constant.
14770 (UNSPEC_DARN_32): New unspec constant.
14771 (UNSPEC_DARN_RAW): New unspec constant.
14772 (darn_32): New instruction.
14773 (darn_raw): New instruction.
14774 (darn): New instruction.
14775 * config/rs6000/rs6000-builtin.def (RS6000_BUILTIN_0): Add
14776 support and documentation for this macro.
14777 (BU_P9_MISC_1): New macro definition.
14778 (BU_P9_64BIT_MISC_0): New macro definition.
14779 (BU_P9_MISC_0): New macro definition.
14780 (darn_32): New builtin definition.
14781 (darn_raw): New builtin definition.
14782 (darn): New builtin definition.
14783 * config/rs6000/rs6000.c: Add #define RS6000_BUILTIN_0 and #undef
14784 RS6000_BUILTIN_0 directives to surround each occurrence of
14785 #include "rs6000-builtin.def".
14786 (rs6000_builtin_mask_calculate): Add in the RS6000_BTM_MODULO and
14787 RS6000_BTM_64BIT flags to the returned mask, depending on
14789 (def_builtin): Correct an error in the assignments made to the
14790 debugging variable attr_string.
14791 (rs6000_expand_builtin): Add support for no-operand built-in
14793 (builtin_function_type): Remove fatal_error assertion that is no
14795 (rs6000_common_init_builtins): Add support for no-operand built-in
14797 * config/rs6000/rs6000.h (RS6000_BTM_MODULO): New macro
14799 (RS6000_BTM_PURE): Enhance comment to clarify intent of this flag
14801 (RS6000_BTM_64BIT): New macro definition.
14802 * doc/extend.texi: Document __builtin_darn (void),
14803 __builtin_darn_raw (void), and __builtin_darn_32 (void) built-in
14806 2016-05-19 Jan Hubicka <hubicka@ucw.cz>
14808 * tree-vect-loop.c (vect_analyze_loop_2): Use also
14809 max_loop_iterations_int.
14811 2016-05-19 Marek Polacek <polacek@redhat.com>
14813 PR tree-optimization/71031
14814 * tree-vrp.c (extract_range_from_binary_expr_1): Turn assert into a
14815 condition and adjust the code a bit.
14817 2016-05-19 Martin Liska <mliska@suse.cz>
14819 * tree-vect-stmts.c (vectorizable_simd_clone_call): Utilize
14820 auto_vec instead of vec.
14822 2016-05-19 Martin Liska <mliska@suse.cz>
14824 * tree-parloops.c (oacc_entry_exit_ok): Release a vector.
14826 2016-05-19 Martin Liska <mliska@suse.cz>
14828 * tree-if-conv.c (ifcvt_repair_bool_pattern): Utilize auto_vecs.
14830 2016-05-19 Martin Liska <mliska@suse.cz>
14832 * ipa-pure-const.c (set_function_state): Remove an existing
14834 (remove_node_data): Do not free it as it's released
14835 in set_function_state.
14837 2016-05-19 Martin Liska <mliska@suse.cz>
14839 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Release
14842 2016-05-19 Martin Liska <mliska@suse.cz>
14844 * omp-simd-clone.c (simd_clone_adjust): Release vector.
14846 2016-05-19 Martin Liska <mliska@suse.cz>
14848 * tree-ssa-reassoc.c (eliminate_duplicate_pair): Truncate
14849 an auto_vec instead of re-creating it.
14851 2016-05-19 Martin Liska <mliska@suse.cz>
14853 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Use
14854 auto_vec instead of vec.
14856 2016-05-19 Martin Liska <mliska@suse.cz>
14858 * lto-section-in.c (lto_get_section_data): Call
14859 lto_check_version with additional argument.
14860 * lto-streamer.c (lto_check_version): Add new argument.
14861 * lto-streamer.h (lto_check_version): Likewise.
14863 2016-05-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14865 * config/arm/arm.c (arm_new_rtx_costs, SIGN_EXTEND case):
14866 Don't add cost of inner memory when handling sign-extended loads.
14868 2016-05-19 Ilya Enkovich <ilya.enkovich@intel.com>
14870 PR rtl-optimization/71148
14871 * cse.c (cse_main): Free dominance info.
14872 (rest_of_handle_cse): Don't free dominance info.
14873 (rest_of_handle_cse2): Likewise.
14874 (rest_of_handle_cse_after_global_opts): Likewise.
14876 2016-05-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14879 * config/arm/arm-builtins.c (arm_builtin_vectorized_function): Return
14880 NULL_TREE early if NEON is not available. Remove now redundant check
14881 in ARM_CHECK_BUILTIN_MODE.
14883 2016-05-19 Maxim Ostapenko <m.ostapenko@samsung.com>
14886 * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Add new
14887 builtin __SANITIZE_THREAD__ macros for fsanitize=thread switch.
14888 * doc/cpp.texi: Document new macros.
14890 2016-05-19 Bin Cheng <bin.cheng@arm.com>
14892 PR tree-optimization/69848
14893 * tree-vect-loop.c (vectorizable_reduction): Don't factor
14894 comparison expr out of VEC_COND_EXPR for COND_REDUCTION.
14896 2016-05-19 Segher Boessenkool <segher@kernel.crashing.org>
14898 * function.c (thread_prologue_and_epilogue_insn): Move the
14899 "goto epilogue_done" one block later.
14901 2016-05-19 Richard Biener <rguenther@suse.de>
14903 PR tree-optimization/70729
14904 * passes.def: Move LIM pass before PRE. Remove no longer
14905 required copyprop and move first DCE out of the loop pipeline.
14907 2016-05-18 David Malcolm <dmalcolm@redhat.com>
14910 * Makefile.in (GCC_OBJS): Move spellcheck.o to...
14911 (OBJS-libcommon-target): ...here.
14912 * opts-common.c: Include spellcheck.h.
14913 (cmdline_handle_error): Build a vec of valid options and use it
14914 to suggest provide hints for misspelled arguments.
14916 2016-05-18 Jakub Jelinek <jakub@redhat.com>
14919 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Don't drop
14920 lhs if it has TREE_ADDRESSABLE type.
14922 2016-05-18 Uros Bizjak <ubizjak@gmail.com>
14925 * config/alpha/alpha.md (trap): Add (use (reg:DI 29)).
14926 (*exception_receiver_1): Return "#" for TARGET_EXPLICIT_RELOCS.
14928 2016-05-18 Martin Jambor <mjambor@suse.cz>
14931 * ipa-cp.c (ipa_get_jf_pass_through_result): Allow non-ip constant
14932 input for NOP_EXPR pass-through functions.
14933 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Allow
14934 aggregate global constant VAR_DECLs in constant jump functions.
14936 2016-05-18 Martin Jambor <mjambor@suse.cz>
14939 * ipa-prop.c (parm_preserved_before_stmt_p): Return true for loads
14940 from TREE_READONLY parameters.
14942 2016-05-18 Martin Jambor <mjambor@suse.cz>
14945 * cgraph.h (cgraph_indirect_call_info): New field
14946 guaranteed_unmodified.
14947 * ipa-cp.c (ipa_get_indirect_edge_target_1): Also pass parameter value
14948 to ipa_find_agg_cst_for_param, check guaranteed_unmodified when
14950 * ipa-inline-analysis.c (evaluate_conditions_for_known_args): Also
14951 pass the parameter value to ipa_find_agg_cst_for_param.
14952 * ipa-prop.c (ipa_load_from_parm_agg): New parameter
14953 guaranteed_unmodified, store AA results there instead of bailing out
14955 (ipa_note_param_call): Also initialize guaranteed_unmodified flag.
14956 (ipa_analyze_indirect_call_uses): Also set guaranteed_unmodified flag.
14957 (find_constructor_constant_at_offset): New function.
14958 (ipa_find_agg_cst_from_init): Likewise.
14959 (ipa_find_agg_cst_for_param): Also seearch for aggregate values in
14960 static initializers of contants, report back through a new paameter
14961 from_global_constant if that was the case.
14962 (try_make_edge_direct_simple_call): Also pass parameter value to
14963 ipa_find_agg_cst_for_param, check guaranteed_unmodified when
14965 (ipa_write_indirect_edge_info): Stream new flag guaranteed_unmodified.
14966 (ipa_read_indirect_edge_info): Likewise.
14967 * ipa-prop.h (ipa_find_agg_cst_for_param): Update declaration.
14968 (ipa_load_from_parm_agg): Likewise.
14970 2016-05-18 Jiong Wang <jiong.wang@arm.com>
14972 PR rtl-optimization/71150
14973 * lra-constraint (process_addr_reg): Guard "in_class_p" with REG_P
14976 2016-05-18 Michael Meissner <meissner@linux.vnet.ibm.com>
14979 * config/rs6000/constraints.md (wE constraint): New constraint
14980 for a vector constant that can be loaded with XXSPLTIB.
14981 (wM constraint): New constraint for a vector constant of a 1's.
14982 (wS constraint): New constraint for a vector constant that can be
14983 loaded with XXSPLTIB and a vector sign extend instruction.
14984 * config/rs6000/predicates.md (xxspltib_constant_split): New
14985 predicates for wE/wS constraints.
14986 (xxspltib_constant_nosplit): Likewise.
14987 (easy_vector_constant): Add support for constants that can be
14988 loaded via XXSPLTIB.
14989 (all_ones_constant): New predicate for vector constant with all
14991 (splat_input_operand): Add support for ISA 3.0 word splat operations.
14992 * config/rs6000/rs6000.c (xxspltib_constant_p): New function to
14993 return if a constant can be loaded with the ISA 3.0 XXSPLTIB
14994 instruction and possibly with a sign extension.
14995 (output_vec_const_move): Add support for XXSPLTIB. If we are
14996 loading up 0/-1 into Altivec registers, prefer using VSPLTISW
14997 instead of XXLXOR/XXLORC.
14998 (rs6000_expand_vector_init): Add support for ISA 3.0 word splat
15000 (rs6000_legitimize_reload_address): Likewise.
15001 (rs6000_output_move_128bit): Use output_vec_const_move to emit
15003 * config/rs6000/vsx.md (VSX_M): Add TImode (if -mvsx-timode) and
15004 combine VSX_M and VSX_M2 into one iterator.
15005 (VSX_M2): Likewise.
15006 (VSINT_84): New iterators for loading constants with XXSPLTIB.
15007 (VSINT_842): Likewise.
15008 (UNSPEC_VSX_SIGN_EXTEND): New UNSPEC.
15009 (xxspltib_v16qi): New insns to load up constants with the ISA 3.0
15010 XXSPLTIB instruction.
15011 (xxspltib_<mode>_nosplit): Likewise.
15012 (xxspltib_<mode>_split): New insn to load up constants with
15013 XXSPLTIB and a sign extend instruction.
15014 (vsx_mov<mode>): Replace single move that handled all vector types
15015 with separate 32-bit and 64-bit moves. Combine the movti_<bit>
15016 moves (when -mvsx-timode is in effect) into the main vector
15017 moves. Eliminate separate moves for <VSr> <VSa>, where the
15018 preferred register class (<VSr>) is listed first, and the
15019 secondary register class (<VSa>) is listed second with a '?' to
15020 discourage use. Prefer loading 0/-1 in any VSX register for ISA
15021 3.0, and Altivec registers for ISA 2.06/2.07 (PR target/70915) so
15022 that if the register was involved in a slow operation, the
15023 clear/set operation does not wait for the slow operation to
15024 finish. Adjust the length attributes for 32-bit mode. Use
15025 rs6000_output_move_128bit and drop the use of the string
15026 instructions for 32-bit movti when -mvsx-timode is in effect. Use
15027 spacing so that the alternatives and attributes don't generate
15028 long lines, and put things in columns, so that it is easier to
15029 match up the operands and attributes with the insn alternatives.
15030 (vsx_mov<mode>_64bit): Likewise.
15031 (vsx_mov<mode>_32bit): Likewise.
15032 (vsx_movti_64bit): Fold movti into normal vector moves.
15033 (vsx_movti_32bit): Likewise.
15034 (vsx_splat_<mode>, V4SI/V4SF modes): Add support for ISA 3.0 word
15035 splat instructions.
15036 (vsx_splat_v4si_internal): Likewise.
15037 (vsx_splat_v4sf_internal): Likewise.
15038 (vector fusion peepholes): Use VSX_M instead of VSX_M2.
15039 (vsx_sign_extend_qi_<mode>): New ISA 3.0 instructions to sign
15040 extend vector elements.
15041 (vsx_sign_extend_hi_<mode>): Likewise.
15042 (vsx_sign_extend_si_v2di): Likewise.
15043 * config/rs6000/rs6000-protos.h (xxspltib_constant_p): Add
15045 * doc/md.texi (PowerPC constraints): Document the wE, wM, and wS
15046 constraints. Add trailing period to wL documentation.
15048 2016-05-18 Richard Sandiford <richard.sandiford@arm.com>
15050 PR middle-end/71020
15051 * tree-dfa.h (replace_abnormal_ssa_names): Declare.
15052 * tree-dfa.c (replace_abnormal_ssa_names): New function.
15053 * tree-call-cdce.c: Include tree-dfa.h.
15054 (can_guard_call_p): New function, extracted from...
15055 (can_use_internal_fn): ...here.
15056 (shrink_wrap_one_built_in_call_with_conds): Remove failure path
15058 (shrink_wrap_one_built_in_call): Likewise.
15059 (use_internal_fn): Likewise.
15060 (shrink_wrap_conditional_dead_built_in_calls): Update accordingly
15061 and return void. Call replace_abnormal_ssa_names.
15062 (pass_call_cdce::execute): Check can_guard_call_p during the
15063 initial walk. Assume shrink_wrap_conditional_dead_built_in_calls
15064 will always change something.
15066 2016-05-18 Martin Jambor <mjambor@suse.cz>
15069 * ipa-prop.c (determine_locally_known_aggregate_parts): Bail out early
15070 if parameter PARAM_IPA_MAX_AGG_ITEMS is zero.
15072 2016-05-18 Martin Jambor <mjambor@suse.cz>
15075 * ipa-inline.h (condition): New field size.
15076 * ipa-inline-analysis.c (add_condition): New parameter SIZE, use it
15077 for comaprison and store it into the new condition.
15078 (evaluate_conditions_for_known_args): Use condition size to check
15079 access sizes for all but CHANGED conditions.
15080 (unmodified_parm_1): New parameter size_p, store access size into it.
15081 (unmodified_parm): Likewise.
15082 (unmodified_parm_or_parm_agg_item): Likewise.
15083 (eliminated_by_inlining_prob): Pass NULL to unmodified_parm as size_p.
15084 (set_cond_stmt_execution_predicate): Extract access sizes and store
15085 them to conditions.
15086 (set_switch_stmt_execution_predicate): Likewise.
15087 (will_be_nonconstant_expr_predicate): Likewise.
15088 (will_be_nonconstant_predicate): Likewise.
15089 (inline_read_section): Stream condition size.
15090 (inline_write_summary): Likewise.
15092 2016-05-18 Richard Biener <rguenther@suse.de>
15094 * tree-ssa-loop-im.c (determine_max_movement): Properly add
15095 condition cost to PHI cost instead of total_cost.
15097 2016-05-18 Martin Liska <mliska@suse.cz>
15100 * ipa-icf.c (sem_variable::merge): Set DECL_PT_UID for
15103 2016-05-18 Richard Biener <rguenther@suse.de>
15105 * lto-streamer.h (LTO_major_version): Bump to 6.
15107 2016-05-18 Segher Boessenkool <segher@kernel.crashing.org>
15109 * function.c (make_split_prologue_seq, make_prologue_seq,
15110 make_epilogue_seq): New functions, factored out from...
15111 (thread_prologue_and_epilogue_insns): Here.
15113 2016-05-18 Segher Boessenkool <segher@kernel.crashing.org>
15115 * function.c (rest_of_handle_thread_prologue_and_epilogue): Call
15116 cleanup_cfg with CLEANUP_EXPENSIVE after shrink-wrapping instead
15117 of before. Add a comment.
15119 2016-05-18 Bin Cheng <bin.cheng@arm.com>
15121 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check invariant
15122 expression pointer, not pointer to the pointer.
15124 2016-05-18 Jakub Jelinek <jakub@redhat.com>
15126 * config/i386/sse.md (pbroadcast_evex_isa): New mode attr.
15127 (avx2_pbroadcast<mode>): Add another alternative with v instead
15128 of x constraints in it, using <pbroadcast_evex_isa> isa.
15129 (avx2_pbroadcast<mode>_1): Similarly, add two such alternatives.
15131 * config/i386/sse.md (<ssse3_avx2>_palignr<mode>): Use
15132 constraint x instead of v in second alternative, add avx512bw
15135 * config/i386/sse.md (<ssse3_avx2>_pshufb<mode>3<mask_name>): Use
15136 constraint x instead of v in second alternative, add avx512bw
15139 * config/i386/sse.md (*<ssse3_avx2>_pmulhrsw<mode>3<mask_name>): Use
15140 constraint x instead of v in second alternative, add avx512bw
15143 * config/i386/sse.md (avx2_pmaddubsw256, ssse3_pmaddubsw128): Add
15144 avx512bw alternative.
15146 2016-05-18 Kirill Yukhin <kirill.yukhin@intel.com>
15148 * config/i386/sse.md (define_insn "*andnot<mode>3"): Extend static
15149 array to 128 chars.
15150 (define_insn "*andnottf3"): Ditto.
15151 (define_insn "*<code><mode>3"/any_logic): Ditto.
15152 (define_insn "*<code>tf3"/any_logic): Ditto.
15153 (define_insn "sse2_storehpd"): Use Yv constraint for scalar
15154 operand to block AVX-512VL insn variant emit when it is not enabled.
15156 2016-05-18 Kirill Yukhin <kirill.yukhin@intel.com>
15158 * config/i386/sse.md (define_insn "*vec_concatv2sf_sse4_1"): Use 'Yv'
15159 constraint fot SF mode.
15161 2016-05-18 Petr Murzin <petr.murzin@intel.com>
15162 Kirill Yukhin <kirill.yukhin@intel.com>
15164 * config/i386/sse.md (define_insn "srcp14<mode>"): Use proper operand
15166 (define_insn "rsqrt14<mode>"): Ditto.
15167 (define_insn "<mask_codefor>avx512dq_cvtps2qqv2di<mask_name>"): Ditto.
15168 (define_insn "<fixsuffix>fix_truncv2sfv2di2<mask_name>"): Ditto.
15169 (define_insn "avx512f_<code>v8div16qi2_mask_store"): Ditto.
15170 (define_insn "vec_set_hi_<mode><mask_name>"): Ditto.
15171 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>"):
15173 (define_insn "*avx512f_gatherdi<mode>"): Ditto.
15174 (define_insn "*avx512f_scatterdi<mode>"): Ditto.
15175 * config/i386/i386.c (ix86_print_operand): Expand check for size
15176 override codes for Intel syntax.
15178 2016-05-18 Richard Biener <rguenther@suse.de>
15180 PR tree-optimization/71168
15181 * tree-loop-distribution.c (distribute_loop): Move *destroy_p
15182 initialization earlier.
15184 2016-05-18 James Greenhalgh <james.greenhalgh@arm.com>
15186 * config/aarch64/aarch64-simd.md
15187 (aarch64_reduc_plus_internal<mode>): Rename to...
15188 (reduc_plus_scal): ...This, and remove previous implementation.
15190 2016-05-18 Richard Biener <rguenther@suse.de>
15192 * passes.def: Put late dse and cd_dce in canonical order.
15194 2016-05-17 Jan Hubicka <hubicka@ucw.cz>
15196 * ipa-inline-transform.c (preserve_function_body_p): Look for
15197 first non-thunk clone.
15198 (save_function_body): Save into first non-thunk.
15199 * lto-cgraph.c (lto_output_edge): When streaming thunk do not look
15201 (lto_output_node): Inline thunks don't need body in every
15203 * lto-streamer-in.c: Do not fixup thunk clones.
15204 * cgraphclones.c (cgraph_node::create_edge_including_clone): Skip
15206 * tree-inline.c (copy_bb): Be prepared for target node to be new after
15209 2016-05-17 Kugan Vivekanandarajah <kuganv@linaro.org>
15211 PR middle-end/63586
15212 * tree-ssa-reassoc.c (transform_add_to_multiply): New.
15213 (reassociate_bb): Call transform_add_to_multiply.
15215 2016-05-17 Kugan Vivekanandarajah <kuganv@linaro.org>
15217 * config/aarch64/aarch64.c (all_extensions): Removed unused
15220 2016-05-17 Nathan Sidwell <nathan@acm.org>
15222 * config/nvptx/nvptx.c (nvptx_function_arg_boundary): New.
15223 (TARGET_FUNCTION_ARG_BOUNDARY): Override.
15225 2016-05-17 Mikhail Maltsev <maltsevm@gmail.com>
15227 PR tree-optimization/54579
15228 PR middle-end/55299
15229 * match.pd (~(~X >> Y), ~(~X >>r Y), ~(~X <<r Y)): New patterns.
15231 2016-05-17 Marek Polacek <polacek@redhat.com>
15234 * tree-inline.c (expand_call_inline): Call
15235 maybe_remove_unused_call_args.
15237 2016-05-17 Jim Wilson <jim.wilson@linaro.org>
15239 * doc/cpp.texi (__GNUC__): Major version changes are no longer rare.
15240 * doc/invoke.texi (-mnan=2008): Change signalling to signaling.
15241 * doc/md.texi (fmin@var{m}3): Likewise.
15243 2016-05-17 Marc Glisse <marc.glisse@inria.fr>
15245 * match.pd (X & C): New transformation.
15247 2016-05-17 Marc Glisse <marc.glisse@inria.fr>
15249 * match.pd (~X & Y): New transformation.
15251 2016-05-17 Marc Glisse <marc.glisse@inria.fr>
15253 * tree-vrp.c (simplify_truth_ops_using_ranges): Set range
15254 information for new SSA_NAME.
15255 (simplify_conversion_using_ranges): Get range through get_range_info
15256 instead of get_value_range.
15258 2016-05-17 Jiong Wang <jiong.wang@arm.com>
15260 * config/aarch64/arm_neon.h (vmvn_s8): Reimplement using C operator.
15261 Remove inline assembly.
15262 (vmvn_s16): Likewise.
15263 (vmvn_s32): Likewise.
15264 (vmvn_u8): Likewise.
15265 (vmvn_u16): Likewise.
15266 (vmvn_u32): Likewise.
15267 (vmvnq_s8): Likewise.
15268 (vmvnq_s16): Likewise.
15269 (vmvnq_s32): Likewise.
15270 (vmvnq_u8): Likewise.
15271 (vmvnq_u16): Likewise.
15272 (vmvnq_u32): Likewise.
15273 (vmvn_p8): Likewise.
15274 (vmvnq_p16): Likewise.
15276 2016-05-17 Jiong Wang <jiong.wang@arm.com>
15278 * config/aarch64/aarch64-simd.md (vmul_n_f32): Remove inline assembly.
15280 (vmul_n_s16): Likewise.
15281 (vmul_n_s32): Likewise.
15282 (vmul_n_u16): Likewise.
15283 (vmul_n_u32): Likewise.
15284 (vmulq_n_f32): Likewise.
15285 (vmulq_n_f64): Likewise.
15286 (vmulq_n_s16): Likewise.
15287 (vmulq_n_s32): Likewise.
15288 (vmulq_n_u16): Likewise.
15289 (vmulq_n_u32): Likewise.
15291 2016-05-17 Jiong Wang <jiong.wang@arm.com>
15293 * config/aarch64/aarch64-simd.md (*aarch64_mul3_elt_to_128df): Extend
15294 to all supported modes. Rename to "*aarch64_mul3_elt_from_dup".
15296 2016-05-17 Jiong Wang <jiong.wang@arm.com>
15298 * config/aarch64/aarch64-simd.md (*aarch64_fma4_elt_to_128df): Rename
15299 to *aarch64_fma4_elt_from_dup<mode>.
15300 (*aarch64_fnma4_elt_to_128df): Rename to
15301 *aarch64_fnma4_elt_from_dup<mode>.
15302 * config/aarch64/arm_neon.h (vfma_n_f64): New.
15303 (vfms_n_f32): Likewise.
15304 (vfms_n_f64): Likewise.
15305 (vfmsq_n_f32): Likewise.
15306 (vfmsq_n_f64): Likewise.
15308 2016-05-17 Gerald Pfeifer <gerald@pfeifer.com>
15310 * wide-int.h: Change fixed_wide_int_storage from class to struct.
15312 2016-05-17 Richard Biener <rguenther@suse.de>
15314 PR tree-optimization/71132
15315 * tree-loop-distribution.c (create_rdg_cd_edges): Pass in loop.
15316 Only add control dependences for blocks in the loop.
15317 (build_rdg): Adjust.
15318 (generate_code_for_partition): Return whether loop should
15319 be destroyed and delay that.
15320 (distribute_loop): Likewise.
15321 (pass_loop_distribution::execute): Record loops to be destroyed
15322 and perform delayed destroying of loops.
15324 2016-05-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15327 * config/aarch64/aarch64-simd.md (aarch64_vmls<mode>): Delete.
15329 2016-05-17 James Greenhalgh <james.greenhalgh@arm.com>
15331 * config/aarch64/aarch64-elf.h (ASM_OUTPUT_DEF): Delete.
15333 2016-05-17 Ilya Enkovich <ilya.enkovich@intel.com>
15336 * config/i386/i386.c (dimode_scalar_chain::convert_op): Fix
15337 insertion point for instructions generated by validize_mem.
15339 2016-05-17 James Greenhalgh <james.greenhalgh@arm.com>
15341 * config/aarch64/aarch64.c (SHIFT_COUNT_TRUNCATED): Wrap definition
15344 2016-05-17 James Greenhalgh <james.greenhalgh@arm.com>
15346 * config/aarch64/aarch64.c
15347 (aarch64_output_simd_mov_immediate): Make "buf_size" a variable
15348 rather than a macro.
15350 2016-05-16 Wilco Dijkstra <wdijkstr@arm.com>
15352 * doc/invoke.texi (AArch64 Options): Various updates.
15354 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
15356 * ipa-inline-analysis.c (compute_inline_parameters): Disable inlinig
15357 into instrumentation thunks.
15358 * cif-code.def (CIF_CHKP): New.
15360 2016-05-16 Uros Bizjak <ubizjak@gmail.com>
15362 * config/i386/xopintrin.h: Correct "unsinged" typo in the comments.
15364 2016-05-16 Martin Jambor <mjambor@suse.cz>
15366 * hsa-gen.c (fillup_for_decl): Increase alignment to natural one.
15367 (get_symbol_for_decl): Sorry if a global symbol in under-aligned.
15369 2016-05-16 Marek Polacek <polacek@redhat.com>
15371 * gimple.c (maybe_remove_unused_call_args): Fix typos in the
15374 2016-05-16 Martin Jambor <mjambor@suse.cz>
15377 * omp-low.c (grid_expand_target_grid_body): Copy RESULT_DECL of
15378 the outlined kernel function.
15380 2016-05-16 Robert Suchanek <robert.suchanek@imgtec.com>
15382 * config/mips/mips.h (ISA_HAS_LSA): Enable for -mmsa.
15383 (ISA_HAS_DLSA): Ditto.
15385 2016-05-16 Matthew Fortune <matthew.fortune@imgtec.com>
15387 * config/mips/m5100.md (m51_int_load): Update the latency to 2.
15389 2016-05-16 Nathan Sidwell <nathan@acm.org>
15391 * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): Revert.
15392 (nvptx_name_replacement): Restore. Add comment.
15393 (write_fn_proto, write_fn_proto_from_insn,
15394 nvptx_output_call_insn): Restore
15395 (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Delete.
15397 2016-05-16 Wilco Dijkstra <wdijkstr@arm.com>
15399 * config/aarch64/aarch64.md
15400 (add<mode>3_compareC_cconly_imm): Remove use of %w.
15401 (add<mode>3_compareC_imm): Likewise.
15402 (<optab>si3_uxtw): Split into register and immediate variants.
15403 (andsi3_compare0_uxtw): Likewise.
15404 (and<mode>3_compare0): Likewise.
15405 (and<mode>3nr_compare0): Likewise.
15406 (stack_protect_test_<mode>): Don't use %x for memory operands.
15408 2016-05-16 Matthew Fortune <matthew.fortune@imgtec.com>
15410 * config/mips/mips-cpus.def (p5600): Add multi-line brackets.
15412 2016-05-16 Wilco Dijkstra <wdijkstr@arm.com>
15414 * config/aarch64/aarch64.md (aarch64_ashl_sisd_or_int_<mode>3):
15415 Split integer shifts into shift_reg and bfm.
15416 (aarch64_lshr_sisd_or_int_<mode>3): Likewise.
15417 (aarch64_ashr_sisd_or_int_<mode>3): Likewise.
15418 (ror<mode>3_insn): Likewise.
15419 (<optab>si3_insn_uxtw): Likewise.
15420 (<optab><mode>3_insn): Change to rotate_imm.
15421 (extr<mode>5_insn_alt): Likewise.
15422 (extrsi5_insn_uxtw): Likewise.
15423 (extrsi5_insn_uxtw_alt): Likewise.
15425 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
15427 * doc/tm.texi: Regenerate.
15428 * doc/tm.texi.in (TARGET_INVALID_PARAMETER_TYPE): Remove.
15429 (TARGET_INVALID_RETURN_TYPE): Remove.
15430 * system.h: Poison TARGET_INVALID_PARAMETER_TYPE and
15431 TARGET_INVALID_RETURN_TYPE.
15432 * target.def (invalid_parameter_type): Remove.
15433 (invalid_return_type): Remove.
15435 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
15437 * ipa-inline-analysis.c (compute_inline_parameters): Be more reailistic
15438 on estimating thunk bodies; do not set inline_failed to CIF_THUNK for
15440 * ipa-inline-transform.c (inline_call): When inlining into thunk produce
15442 (preserve_function_body_p): No need to preserve function body
15443 * cif-codes.def (CIF_THUNK): Remove.
15444 * cgraphclones.c (duplicate_thunk_for_node): Thunks calls are inlinable.
15446 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
15448 * tree-inline.c (expand_call_inline): recurse after inlining thunk.
15450 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
15452 * tree.c (free_lang_data_in_decl): Also set target/optimization flags
15455 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
15457 * ipa-inline.c (report_inline_failed_reason): Look into thunks, too
15458 (inline_small_functions): Do not look for function symbol when
15461 2016-05-16 Jan Hubicka <hubicka@ucw.cz>
15463 * lto-cgraph.c (compute_ltrans_boundary, output_symtab): Fix handling
15466 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
15467 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
15468 Jiong Wang <jiong.wang@arm.com>
15470 * config/arm/arm-c.c (arm_cpu_builtins): Use def_or_undef_macro
15471 for __ARM_FP16_FORMAT_IEEE and __ARM_FP16_FORMAT_ALTERNATIVE.
15472 Define __ARM_FP16_ARGS when appropriate.
15473 * config/arm/arm.c (arm_invalid_parameter_type): Remove
15475 (arm_invalid_return_type): Likewise.
15476 (TARGET_INVALID_PARAMETER_TYPE): Remove.
15477 (TARGET_INVALID_RETURN_TYPE): Remove.
15478 (aapcs_vfp_sub_candidate): Allow HFmode.
15479 (aapcs_vfp_allocate): Add comment. Support HFmode.
15480 (aapcs_vfp_allocate_return_reg): Likewise.
15481 (struct aapcs_cp_arg_layout): Slightly reword comments for
15482 is_return_candidate and allocate_return_reg.
15483 (output_mov_vfp): Update assert.
15484 (arm_hard_regno_mode_ok): Remove comment, update HF-mode
15486 (arm_invalid_parameter_type): Remove.
15487 (amr_invalid_return_type): Remove.
15488 * config/arm/arm.h (TARGET_NEON_FP16): Fix definition.
15489 * config/arm/arm.md (*arm32_movhf): Disable for TARGET_VFP.
15490 * config/arm/vfp.md (*movhf_vfp): Enable for TARGET_VFP.
15492 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
15494 * config/aarch64/aarch64.h (LEGITIMIZE_RELOAD_ADDRESS): Remove.
15495 * config/aarch64/arch64-protos.h
15496 (aarch64_legitimize_reload_address): Remove.
15497 * config/aarch64/aarch64.c (aarch64_legitimize_reload_address):
15500 2016-05-16 Eric Botcazou <ebotcazou@adacore.com>
15502 * configure.ac: Add ACX_NONCANONICAL_HOST.
15503 * configure: Regenerate.
15504 * Makefile.in: Set host_noncanonical.
15506 2016-05-14 Uros Bizjak <ubizjak@gmail.com>
15509 * config/i386/i386.md (*movtf_internal): Before register allocation,
15510 do not allow FP constants for CM_MEDIUM memory model, allow only
15511 standard FP constants for CM_LARGE and CM_LARGE_PIC models.
15512 (*movxf_internal): Ditto.
15513 (*movdf_internal): Ditto.
15514 (*movsf_internal): Ditto.
15516 2016-05-13 Segher Boessenkool <segher@kernel.crashing.org>
15518 PR rtl-optimization/67483
15519 * combine.c (make_compound_operation): Don't call extract_left_shift
15520 with negative shift amounts.
15522 2016-05-13 Jakub Jelinek <jakub@redhat.com>
15525 * fold-const.c (fold_checksum_tree): Allow modification
15526 of TYPE_ALIAS_SET during folding.
15528 * config/i386/i386.c (ix86_compute_frame_layout, ix86_expand_prologue,
15529 ix86_expand_split_stack_prologue): Use HOST_WIDE_INT_C macro.
15530 (ix86_split_to_parts): Likewise. Fix up formatting.
15532 2016-05-13 H.J. Lu <hongjiu.lu@intel.com>
15534 * tree-ssa-loop-ivopts.c (create_new_ivs): Cast to
15535 unsigned HOST_WIDE_INT with HOST_WIDE_INT_PRINT_UNSIGNED in
15538 2016-05-13 Nathan Sidwell <nathan@acm.org>
15540 * config/nvptx/nvptx.c (nvptx_mangle_decl_assembler_name): New.
15541 (nvptx_name_replacement): Delete.
15542 (write_fn_proto, write_fn_proto_from_insn,
15543 nvptx_output_call_insn): Remove nvptx_name_replacement call.
15544 (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Override.
15545 * langhooks.c (add_builtin_funcction_common): Call
15546 targetm.mangle_decl_assembler_name.
15548 * config/nvptx/nvptx.c (write_fn_proto): Handle
15549 BUILT_IN_ATOMIC_COMPARE_EXCHANGE_n oddity.
15551 2016-05-13 Martin Liska <mliska@suse.cz>
15553 * tree-ssa-loop-ivopts.c (create_new_ivs): Use HOST_WIDE_INT_PRINT_DEC
15554 and PRIu64 in printf format.
15556 2016-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15558 * tree-ssa-loop-ivanon.c (try_unroll_loop_completely): Typo fix in
15561 2016-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15563 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely):
15564 Change --param max-completely-peeled-times to
15565 --param max-completely-peel-times in dump file printing.
15567 2016-05-13 Richard Biener <rguenther@suse.de>
15569 PR tree-optimization/42587
15570 * tree-ssa-math-opts.c (perform_symbolic_merge): Handle BIT_FIELD_REF.
15571 (find_bswap_or_nop_1): Likewise.
15572 (bswap_replace): Likewise.
15574 2016-05-13 Martin Liska <mliska@suse.cz>
15576 * tree-vect-patterns.c (vect_recog_mask_conversion_pattern):
15577 Initialize a variable with default value.
15579 2016-05-13 Martin Liska <mliska@suse.cz>
15581 * doc/invoke.texi: Enhance explanation of error recovery
15584 2016-05-13 Martin Liska <mliska@suse.cz>
15586 * tree-ssa-loop-ivopts.c (avg_loop_niter): Fix coding style.
15587 (struct cost_pair): Change inv_expr_id (int) to inv_expr
15588 (iv_inv_expr_ent *).
15589 (struct iv_inv_expr_ent): Comment struct fields.
15590 (sort_iv_inv_expr_ent): New function.
15591 (struct ivopts_data): Rename inv_expr_id to max_inv_expr_id.
15592 (struct iv_ca): Replace used_inv_expr and num_used_inv_expr with
15593 a hash_map between iv_inv_expr_ent and number of usages.
15594 (niter_for_exit): Fix coding style.
15595 (tree_ssa_iv_optimize_init): Use renamed variable.
15596 (determine_base_object): Fix coding style.
15597 (alloc_iv): Likewise.
15598 (find_interesting_uses_outside): Likewise.
15599 (add_candidate_1): Likewise.
15600 (add_standard_iv_candidates): Likewise.
15601 (set_group_iv_cost): Replace inv_expr_id with inv_expr.
15602 (prepare_decl_rtl): Fix coding style.
15603 (get_address_cost): Likewise.
15604 (get_shiftadd_cost): Likewise.
15605 (force_expr_to_var_cost): Likewise.
15606 (compare_aff_trees): Likewise.
15607 (get_expr_id): Restructure the function.
15608 (get_loop_invariant_expr_id): Renamed to
15609 get_loop_invariant_expr.
15610 (get_computation_cost_at): Replace usage of inv_expr_id with
15612 (get_computation_cost): Likewise.
15613 (determine_group_iv_cost_generic): Likewise.
15614 (determine_group_iv_cost_address): Likewise.
15615 (iv_period): Fix coding style.
15616 (iv_elimination_compare_lt): Likewise.
15617 (may_eliminate_iv): Likewise.
15618 (determine_group_iv_cost_cond): Replace usage of inv_expr_id with
15620 (determine_group_iv_costs): Dump invariant expressions.
15621 (iv_ca_recount_cost): Use the newly added hash_map.
15622 (iv_ca_set_remove_invariants): Fix coding style.
15623 (iv_ca_set_add_invariants): Fix coding style.
15624 (iv_ca_set_no_cp): Utilize the newly added hash_map for used
15626 (iv_ca_set_cp): Likewise.
15627 (iv_ca_new): Initialize the newly added hash_map and remove
15628 initialization of fields.
15629 (iv_ca_free): Delete the hash_map.
15630 (iv_ca_dump): Dump invariant expressions.
15631 (iv_ca_extend): Fix coding style.
15632 (try_add_cand_for): Likewise.
15633 (create_new_ivs): Dump information about # of avg iterations and
15634 # of used invariant expressions.
15635 (rewrite_use_compare): Fix coding style.
15636 (free_loop_data): Set default value for max_inv_expr_id.
15638 2016-05-13 Ilya Enkovich <ilya.enkovich@intel.com>
15640 * cse.c (rest_of_handle_cse): Use cleanup_cfg
15641 returned value cse_cfg_altered computation.
15642 (rest_of_handle_cse2): Likewise.
15643 (rest_of_handle_cse_after_global_opts): Likewise.
15645 2016-05-13 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
15648 * config/arm/arm.c (arm32_output_mi_thunk): New.
15649 (arm_output_mi_thunk): Rename to arm_thumb1_mi_thunk. Rework
15650 to split Thumb1 vs TARGET_32BIT functionality.
15651 (arm_thumb1_mi_thunk): New.
15653 2016-05-13 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
15655 * config/aarch64/aarch64.c (TARGET_OMIT_STRUCT_RETURN_REG): Set
15658 2016-05-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
15661 * config/i386/i386.c (ix86_in_large_data_p): Guard against NULL exp.
15663 2016-05-13 Eric Botcazou <ebotcazou@adacore.com>
15665 * builtins.c (expand_builtin_memcmp): Do not emit the call here.
15666 (expand_builtin_trap): Emit a regular call.
15667 (set_builtin_user_assembler_name): Remove obsolete cases.
15668 * dse.c (scan_insn): Adjust.
15669 * except.c: Include calls.h.
15670 (sjlj_emit_function_enter): If DONT_USE_BUILTIN_SETJMP is defined,
15671 emit a regular call to setjmp.
15672 * expr.c (emit_block_move_hints): Call emit_block_copy_via_libcall.
15673 (block_move_libcall_safe_for_call_parm): Use memcpy builtin.
15674 (emit_block_move_via_libcall): Delete.
15675 (block_move_fn): Delete.
15676 (init_block_move_fn): Likewise.
15677 (emit_block_move_libcall_fn): Likewise.
15678 (emit_block_op_via_libcall): New function.
15679 (set_storage_via_libcall): Tidy up and use memset builtin.
15680 (block_clear_fn): Delete.
15681 (init_block_clear_fn): Likewise.
15682 (clear_storage_libcall_fn): Likewise.
15683 (expand_assignment): Call emit_block_move_via_libcall.
15684 Do not include gt-expr.h.
15685 * expr.h (emit_block_op_via_libcall): Declare.
15686 (emit_block_copy_via_libcall): New inline function.
15687 (emit_block_move_via_libcall): Likewise.
15688 (emit_block_comp_via_libcall): Likewise.
15689 (block_clear_fn): Delete.
15690 (init_block_move_fn): Likewise.
15691 (init_block_clear_fn): Likewise.
15692 (emit_block_move_via_libcall): Likewise.
15693 (set_storage_via_libcall): Add default parameter value.
15694 * libfuncs.h (enum libfunc_index): Remove obsolete values.
15695 (abort_libfunc): Delete.
15696 (memcpy_libfunc): Likewise.
15697 (memmove_libfunc): Likewise.
15698 (memcmp_libfunc): Likewise.
15699 (memset_libfunc): Likewise.
15700 (setbits_libfunc): Likewise.
15701 (setjmp_libfunc): Likewise.
15702 (longjmp_libfunc): Likewise.
15703 (profile_function_entry_libfunc): Likewise.
15704 (profile_function_exit_libfunc): Likewise.
15705 (gcov_flush_libfunc): Likewise.
15706 * optabs-libfuncs.c (build_libfunc_function): Set DECL_ARTIFICIAL
15707 and DECL_VISIBILITY on the declaration.
15708 (init_optabs): Do not initialize obsolete libfuncs.
15709 * optabs.c (prepare_cmp_insn): Call emit_block_comp_via_libcall.
15710 * tree-core.h (ECF_RET1): Define.
15711 (ECF_TM_PURE): Adjust.
15712 (ECF_TM_BUILTIN): Likewise.
15713 * tree.c (set_call_expr_flags): Deal with ECF_RET1.
15714 (build_common_builtin_nodes): Initialize abort builtin.
15715 Add ECF_RET1 on memcpy, memmove and memset builtins.
15716 Pass final flags for alloca and alloca_with_align builtins.
15717 * config/alpha/alpha.c (alpha_init_libfuncs): Do not initialize
15719 * config/ia64/ia64.c (ia64_vms_init_libfuncs): Likewise.
15720 * config/i386/i386.c (ix86_expand_set_or_movmem): Adjust call to
15721 set_storage_via_libcall and call emit_block_copy_via_libcall.
15723 2016-05-12 Uros Bizjak <ubizjak@gmail.com>
15725 * config/i386/i386.md (*call_got_x32): Change operand 0 to
15726 DImode before it is passed to ix86_output_call_operand.
15727 (*call_value_got_x32): Ditto for operand 1.
15729 2016-05-12 Jiong Wang <jiong.wang@arm.com>
15731 PR rtl-optimization/70904
15732 * lra-constraint.c (process_addr_reg): Relax the restriction on subreg
15733 reload for wide mode.
15735 2016-05-12 Marek Polacek <polacek@redhat.com>
15738 * langhooks-def.h (lhd_incomplete_type_error): Adjust declaration.
15739 * langhooks.c (lhd_incomplete_type_error): Add location parameter.
15740 * langhooks.h (incomplete_type_error): Likewise.
15741 * tree.c (size_in_bytes_loc): Renamed from size_in_bytes. Add location
15742 parameter, pass it down to incomplete_type_error.
15743 * tree.h (size_in_bytes): New inline overload.
15744 (size_in_bytes_loc): Renamed from size_in_bytes.
15746 2016-05-12 Richard Biener <rguenther@suse.de>
15748 PR tree-optimization/71059
15749 * tree-ssa-pre.c (phi_translate_1): Fully fold translated
15750 nary before looking up or entering the expression into the VN
15752 * tree-ssa-sccvn.c (vn_nary_build_or_lookup): Fix comment typo.
15753 Make sure to re-use NARYs without result as inserted by
15756 2016-05-12 Richard Biener <rguenther@suse.de>
15758 PR tree-optimization/71062
15759 * tree-ssa-alias.h (struct pt_solution): Add vars_contains_restrict
15761 * tree-ssa-structalias.c (set_uids_in_ptset): Set
15762 vars_contains_restrict if the var is a restrict tag.
15763 * tree-ssa-alias.c (ptrs_compare_unequal): If vars_contains_restrict
15764 do not disambiguate pointers against it.
15765 (dump_points_to_solution): Re-structure and adjust for new
15766 vars_contains_restrict flag.
15767 * gimple-pretty-print.c (pp_points_to_solution): Likewise.
15769 2016-05-12 Martin Liska <mliska@suse.cz>
15771 * doc/invoke.texi: Explain connection between
15772 -fsanitize-recover=address and ASAN_OPTIONS="halt_on_error=1".
15774 2016-05-12 Ilya Enkovich <ilya.enkovich@intel.com>
15776 PR tree-optimization/71006
15777 * tree-vect-loop.c (vect_determine_vectorization_factor): Don't
15778 consider COND_EXPR as a mask producer.
15780 2016-05-12 Marek Polacek <polacek@redhat.com>
15783 * opts.c (common_handle_option): Detect missing argument for --help^.
15785 2016-05-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15788 * config/arm/arm.c (arm_output_multireg_pop): Avoid POP instruction
15789 when popping the PC and within an interrupt handler routine.
15790 Add missing tab to output of "ldmfd".
15791 (output_return_instruction): Output LDMFD with SP update rather
15792 than POP when returning from interrupt handler.
15794 2016-05-12 Jakub Jelinek <jakub@redhat.com>
15796 * config/i386/i386.md (isa): Add x64_avx512dq, enable if
15797 TARGET_64BIT && TARGET_AVX512DQ.
15798 * config/i386/sse.md (*vec_extract<mode>): Add avx512bw alternatives.
15799 (*vec_extract<PEXTR_MODE12:mode>_zext): Add avx512bw alternative.
15800 (*vec_extract<ssevecmodelower>_0, *vec_extractv4si_0_zext,
15801 *vec_extractv2di_0_sse): Use v constraint instead of x constraint.
15802 (*vec_extractv4si): Add avx512dq and avx512bw alternatives.
15803 (*vec_extractv4si_zext): Add avx512dq alternative.
15804 (*vec_extractv2di_1): Add x64_avx512dq and avx512bw alternatives,
15805 use v instead of x constraint in other alternatives where possible.
15807 * config/i386/sse.md (sse2_loadld): Use v instead of x
15808 constraint in alternatives 0,1,4.
15810 * config/i386/sse.md (pinsr_evex_isa): New mode attr.
15811 (<sse2p4_1>_pinsr<ssemodesuffix>): Add 2 alternatives with
15812 v constraints instead of x and <pinsr_evex_isa> isa attribute.
15815 * config/i386/sse.md (<sse2_avx2>_packssdw<mask_name>,
15816 <sse4_1_avx2>_packusdw<mask_name>): Make sure EVEX encoded insn
15817 is not emitted unless TARGET_AVX512BW.
15818 (<sse2_avx2>_packuswb<mask_name>, <sse2_avx2>_packsswb<mask_name>):
15819 Likewise. For TARGET_AVX512BW, use "=v" constraint instead of "=x"
15820 for the result operand.
15822 * config/i386/sse.md (*vec_setv4sf_sse4_1, sse4_1_insertps): Use v
15823 constraint instead of x in avx alternatives. Use maybe_evex instead
15826 * config/i386/constraints.md (Yv): New constraint.
15827 * config/i386/i386.h (VALID_AVX512VL_128_REG_MODE): Allow
15828 TFmode and V1TImode in xmm16+ registers for TARGET_AVX512VL.
15829 * config/i386/i386.md (avx512fvecmode): New mode attr.
15830 (*pushtf): Use v constraint instead of x.
15831 (*movtf_internal): Likewise. For TARGET_AVX512VL and
15832 xmm16+ registers, use vmovdqu64 or vmovdqa64 instructions.
15833 (*absneg<mode>2): Use Yv constraint instead of x constraint.
15834 (*absnegtf2_sse): Likewise.
15835 (copysign<mode>3_const, copysign<mode>3_var): Likewise.
15836 * config/i386/sse.md (*andnot<mode>3): Add avx512vl and
15837 avx512f alternatives.
15838 (*andnottf3, *<code><mode>3, *<code>tf3): Likewise.
15840 2016-05-12 Richard Biener <rguenther@suse.de>
15842 PR tree-optimization/71060
15843 * tree-data-ref.c (initialize_data_dependence_relation): Do not
15844 require exact match of DR_BASE_OBJECT but only matching address and
15847 2016-05-12 Richard Biener <rguenther@suse.de>
15849 PR tree-optimization/70986
15850 * cfganal.c: Include cfgloop.h.
15851 (dfs_find_deadend): Prefer to take edges exiting loops.
15853 2016-05-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
15855 * gcc.target/powerpc/pr70963.c: Require at least power8 at both
15856 compile and run time.
15858 2016-05-11 Mikhail Maltsev <maltsevm@gmail.com>
15861 * doc/invoke.texi (Wduplicate-decl-specifier): Document new option.
15863 2016-05-11 Uros Bizjak <ubizjak@gmail.com>
15865 * config/i386/i386.c (legitimize_pic_address): Use
15866 copy_to_suggested_reg instead of gen_movsi.
15868 2016-05-11 Michael Meissner <meissner@linux.vnet.ibm.com>
15870 * config/rs6000/predicates.md (quad_memory_operand): Move most of
15871 the code into quad_address_p and call it to share code with
15872 vsx_quad_dform_memory_operand.
15873 (vsx_quad_dform_memory_operand): New predicate for ISA 3.0 vector
15875 * config/rs6000/rs6000.opt (-mlra): Switch to being an option mask
15876 bit instead of being a separate word. Split -mpower9-dform into
15877 two switches, -mpower9-dform-scalar and -mpower9-dform-vector.
15878 * config/rs6000/rs6000.c (RELOAD_REG_QUAD_OFFSET): New addr_mask
15879 for the register class supporting 128-bit quad word memory offsets.
15880 (mode_supports_vsx_dform_quad): Helper function to return if the
15881 register class uses quad word memory offsets.
15882 (rs6000_debug_addr_mask): Add support for quad word memory offsets.
15883 (rs6000_debug_reg_global): Always print if we are using LRA or not.
15884 (rs6000_setup_reg_addr_masks): If ISA 3.0 vector d-form
15885 instructions are enabled, set up the appropriate addr_masks for
15887 (rs6000_init_hard_regno_mode_ok): wb constraint is now based on
15888 -mpower9-dform-scalar, instead of -mpower9-dform.
15889 (rs6000_option_override_internal): Split -mpower9-dform into two
15890 switches, -mpower9-dform-scalar and -mpower9-dform-vector. The
15891 -mpower9-dform switch sets or clears both. If we are not using
15892 the LRA register allocator, do not enable -mpower9-dform-vector by
15893 default. If we are using LRA, enable -mpower9-dform-vector and
15894 -mvsx-timode if it is appropriate. Issue a warning if either
15895 -mpower9-dform-vector or -mvsx-timode are explicitly used without
15897 (quad_address_offset_p): New helper function to return if the
15898 offset is legal for quad word memory instructions.
15899 (quad_address_p): New function to determin if GPR or vector
15900 register quad word memory addresses are legal.
15901 (mem_operand_gpr): Validate quad word address offsets.
15902 (reg_offset_addressing_ok_p): Add support for ISA 3.0 vector
15903 d-form (register + offset) instructions.
15904 (offsettable_ok_by_alignment): Likewise.
15905 (rs6000_legitimate_offset_address_p): Likewise.
15906 (legitimate_lo_sum_address_p): Likewise.
15907 (rs6000_legitimize_address): Likewise.
15908 (rs6000_legitimize_reload_address): Add more debug statements for
15910 (rs6000_legitimate_address_p): Add support for ISA 3.0 vector
15911 d-form instructions.
15912 (rs6000_secondary_reload_memory): Add support for ISA 3.0 vector
15913 d-form instructions. Distinguish different cases in debug
15914 output. (rs6000_secondary_reload_inner): Add support for ISA 3.0 vector
15915 d-form instructions.
15916 (rs6000_preferred_reload_class): Likewise.
15917 (rs6000_output_move_128bit): Add support for ISA 3.0 d-form
15918 instructions. If ISA 3.0 is available, generate lxvx/stxvx instead
15919 of the ISA 2.06 indexed memory instructions.
15920 (rs6000_emit_prologue): If we have ISA 3.0 d-form instructions,
15921 use them to save/restore the saved vector registers instead of
15922 using Altivec instructions.
15923 (rs6000_emit_epilogue): Likewise.
15924 (rs6000_lra_p): Use TARGET_LRA instead of the old option word.
15925 (rs6000_opt_masks): Split -mpower9-dform into
15926 -mpower9-dform-scalar and -mpower9-dform-vector.
15927 (rs6000_print_options_internal): Print -mno-<switch> if <switch>
15929 * config/rs6000/vsx.md (p9_vecload_<mode>): Delete hack to emit
15930 ISA 3.0 vector indexed memory instructions, and fold the code into
15931 the normal mov<mode> patterns.
15932 (p9_vecstore_<mode>): Likewise.
15933 (vsx_mov<mode>): Add support for ISA 3.0 vector d-form
15935 (vsx_movti_64bit): Likewise.
15936 (vsx_movti_32bit): Likewise.
15937 * config/rs6000/constraints.md (wO constraint): New constraint for
15938 ISA 3.0 vector d-form support.
15939 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Use
15940 -mpower9-dform-scalar instead of -mpower9-dform. Add note not to
15941 include -mpower9-dform-vector until we switch over to LRA.
15942 (POWERPC_MASKS): Add -mlra. Split -mpower9-dform into two.
15943 switches, -mpower9-dform-scalar and -mpower9-dform-vector.
15944 * config/rs6000/rs6000-protos.h (quad_address_p): Add declaration.
15945 * doc/invoke.texi (RS/6000 and PowerPC Options): Add documentation
15946 for -mpower9-dform and -mlra.
15947 * doc/md.texi (wO constraint): Document wO constraint.
15949 2016-05-11 Alexander Monakov <amonakov@ispras.ru>
15951 * genattr.c (main): Change 'rtx' to 'rtx_insn *' in prototypes of
15952 'insn_latency', 'maximal_insn_latency', 'min_insn_conflict_delay'.
15953 * genautomata.c (output_internal_insn_code_evaluation): Simplify.
15954 Move handling of non-insn arguments inline into the sole user:
15955 (output_trans_func): ...here.
15956 (output_min_insn_conflict_delay_func): Change 'rtx' to 'rtx_insn *'
15957 in emitted function prototype.
15958 (output_internal_insn_latency_func): Ditto. Simplify.
15959 (output_internal_maximal_insn_latency_func): Ditto. Delete
15960 always-unused argument.
15961 (output_insn_latency_func): Ditto.
15962 (output_maximal_insn_latency_func): Ditto.
15964 2016-05-11 Richard Biener <rguenther@suse.de>
15966 PR tree-optimization/71055
15967 * tree-ssa-sccvn.c (vn_reference_lookup_3): When native-interpreting
15968 sth with precision not equal to access size verify we don't chop
15971 2016-05-11 Richard Biener <rguenther@suse.de>
15974 * dwarf2out.c (retry_incomplete_types): Set early_dwarf.
15975 (dwarf2out_finish): Move retry_incomplete_types call ...
15976 (dwarf2out_early_finish): ... here.
15978 2016-05-11 Richard Biener <rguenther@suse.de>
15980 PR middle-end/71002
15981 * alias.c (reference_alias_ptr_type): Preserve alias-set zero
15982 if the langhook insists on it.
15983 * fold-const.c (make_bit_field_ref): Add arg for the original
15984 reference and preserve its alias-set.
15985 (decode_field_reference): Take exp by reference and adjust it
15986 to the original memory reference.
15987 (optimize_bit_field_compare): Adjust callers.
15988 (fold_truth_andor_1): Likewise.
15989 * gimplify.c (gimplify_expr): Adjust in-SSA form test.
15991 2016-05-11 Ilya Enkovich <ilya.enkovich@intel.com>
15993 PR middle-end/70807
15994 * cfgrtl.h (delete_insn_and_edges): Now return bool.
15995 * cfgrtl.c (delete_insn_and_edges): Likewise.
15996 * config/i386/i386.c (convert_scalars_to_vector): Remove
15998 * cse.c (cse_insn): Compute cse_cfg_altered.
15999 (delete_trivially_dead_insns): Likewise.
16000 (cse_cc_succs): Likewise.
16001 (rest_of_handle_cse): Free dominance info if required.
16002 (rest_of_handle_cse2): Likewise.
16003 (rest_of_handle_cse_after_global_opts): Likewise.
16005 2016-05-11 Alan Modra <amodra@gmail.com>
16007 * config/rs6000/rs6000.c (is_complex_IBM_long_double,
16008 abi_v4_pass_in_fpr): New functions.
16009 (rs6000_function_arg_boundary): Exclude complex IBM long double
16010 from 64-bit alignment when ABI_V4.
16011 (rs6000_function_arg, rs6000_function_arg_advance_1,
16012 rs6000_gimplify_va_arg): Use abi_v4_pass_in_fpr.
16014 2016-05-10 Segher Boessenkool <segher@kernel.crashing.org>
16016 PR rtl-optimization/71028
16017 * cfgcleanup.c (try_optimize_cfg): Do not flip a conditional
16018 jump with just a return in the fallthrough block if the branch
16019 block contains just a return as well.
16021 2016-05-10 Marc Glisse <marc.glisse@inria.fr>
16023 * fold-const.c (fold_binary_loc) [(X ^ Y) & Y]: Remove and merge with...
16024 * match.pd ((X & Y) ^ Y): ... this.
16025 ((X & Y) & Y, (X | Y) | Y, (X ^ Y) ^ Y, (X & Y) & (X & Z), (X | Y)
16026 | (X | Z), (X ^ Y) ^ (X ^ Z)): New transformations.
16028 2016-05-10 David Malcolm <dmalcolm@redhat.com>
16030 * read-md.c (require_char_ws): New function.
16031 (read_string): Simplify using require_char_ws.
16032 (handle_constants): Likewise.
16033 (handle_enum): Likewise.
16034 (handle_file): Likewise.
16035 * read-md.h (require_char_ws): New declaration.
16036 * read-rtl.c (read_conditions): Simplify using require_char_ws.
16037 (read_mapping): Likewise.
16038 (read_rtx_code): Likewise.
16039 (read_nested_rtx): Likewise.
16041 2016-05-10 James Norris <jnorris@codesourcery.com>
16043 * config/rs6000/sysv4.h (CRTOFFLOADBEGIN): Define. Add crtoffloadbegin.o
16044 if offloading is enabled and -fopenacc or -fopenmp is specified.
16045 (CRTOFFLOADEND): Likewise.
16046 (STARTFILE_LINUX_SPEC): Add CRTOFFLOADBEGIN.
16047 (ENDFILE_LINUX_SPEC): Add CRTOFFLOADEND.
16049 2016-05-10 Uros Bizjak <ubizjak@gmail.com>
16051 * config/i386/i386.c (legitimize_pic_address): Merge 64-bit and 32-bit
16052 gotoff_operand code paths. Use copy_to_suggested_regs and
16053 expand_simple_binop where appropriate. Cleanup.
16055 2016-05-10 Ilya Enkovich <ilya.enkovich@intel.com>
16058 * config/i386/i386.c (dimode_scalar_to_vector_candidate_p): Allow
16060 (dimode_scalar_chain::vector_const_cost): New.
16061 (dimode_scalar_chain::compute_convert_gain): Handle constants.
16062 (dimode_scalar_chain::convert_op): Likewise.
16063 (dimode_scalar_chain::convert_insn): Likewise.
16065 2016-05-10 Pierre-Marie de Rodat <derodat@adacore.com>
16067 * dwarf2out.c (resolve_args_picking_1): Consider DW_OP_neg as an
16068 unary operation, not a binary one.
16070 2016-05-10 Ilya Enkovich <ilya.enkovich@intel.com>
16072 PR middle-end/70877
16073 * tree-chkp.c (chkp_add_bounds_to_call_stmt): Handle
16074 calls with type casted fndecl.
16076 2016-05-10 Ilya Enkovich <ilya.enkovich@intel.com>
16078 PR tree-optimization/70786
16079 * tree-chkp.c (chkp_find_bounds_1): Support WITH_SIZE_EXPR.
16080 * calls.c (initialize_argument_information): Bind bounds
16081 with corresponding args passed by reference.
16083 2016-05-10 Jakub Jelinek <jakub@redhat.com>
16086 * config/i386/sse.md (<sse>_andnot<mode>3<mask_name>),
16087 *<code><mode>3<mask_name>): For !TARGET_AVX512DQ and EVEX encoding,
16088 use vp*[dq] instead of v*p[sd] instructions and adjust mode attribute
16091 2016-05-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
16094 * config/rs6000/vsx.md (vsx_xvcvdpsxds_scale): Generate correct
16095 code for a zero scale factor.
16096 (vsx_xvcvdpuxds_scale): Likewise.
16098 2016-05-10 David Malcolm <dmalcolm@redhat.com>
16100 * diagnostic-show-locus.c (layout::layout): Call show_ruler
16101 if show_ruler_p was set on the context.
16102 (layout::show_ruler): New method.
16103 * diagnostic.h (struct diagnostic_context): Add field
16106 2016-05-10 Richard Biener <rguenther@suse.de>
16108 PR tree-optimization/71039
16109 * tree-ssa-phiprop.c: Include tree-ssa-loop.h.
16110 (chk_uses): New function.
16111 (propagate_with_phi): Verify we can safely replicate the lhs of an
16112 aggregate assignment on all incoming edges.
16114 2016-05-10 Oleg Endo <olegendo@gcc.gnu.org>
16116 * config/rx/rx-protos.h (is_interrupt_func, is_fast_interrupt_func):
16118 (rx_atomic_sequence): New class.
16119 * config/rx/rx.c (rx_print_operand): Use symbolic names for PSW bits.
16120 (is_interrupt_func, is_fast_interrupt_func): Make non-static and
16122 (rx_atomic_sequence::rx_atomic_sequence,
16123 rx_atomic_sequence::~rx_atomic_sequence): New functions.
16124 * config/rx/rx.md (CTRLREG_PSW, CTRLREG_USP, CTRLREG_FPSW, CTRLREG_CPEN,
16125 CTRLREG_BPSW, CTRLREG_BPC, CTRLREG_ISP, CTRLREG_FINTV,
16126 CTRLREG_INTB): New constants.
16127 (FETCHOP): New code iterator.
16128 (fethcop_name, fetchop_name2): New iterator code attributes.
16129 (QIHI): New mode iterator.
16130 (atomic_exchange<mode>, atomic_exchangesi, xchg_mem<mode>,
16131 atomic_fetch_<fetchop_name>si, atomic_fetch_nandsi,
16132 atomic_<fetchop_name>_fetchsi, atomic_nand_fetchsi): New patterns.
16134 2016-05-10 Martin Liska <mliska@suse.cz>
16136 * tree-inline.c (remap_dependence_clique): Do not remap
16137 debugging statements.
16139 2016-05-10 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
16141 * config/s390/s390.md ("*vec_cmp<insn_cmp>df_cconly")
16142 ("*fixuns_truncdfdi2_z13")
16143 ("*fixuns_trunc<FP:mode><GPR:mode>2_z196")
16144 ("*fix_truncdfdi2_bfp_z13", "*floatunsdidf2_z13")
16145 ("*extendsfdf2_z13"): Replace TARGET_Z13 with TARGET_VX.
16147 2016-05-10 Richard Biener <rguenther@suse.de>
16149 PR tree-optimization/70497
16150 PR tree-optimization/28367
16151 * tree-ssa-sccvn.c (vn_nary_build_or_lookup): New function
16153 (visit_reference_op_load): ... here.
16154 (vn_reference_lookup_3): Use it to handle subreg-like accesses
16155 with simplified BIT_FIELD_REFs.
16156 * tree-ssa-pre.c (eliminate_insert): Handle inserting BIT_FIELD_REFs.
16157 * tree-complex.c (extract_component): Handle BIT_FIELD_REFs
16160 2016-05-10 Pierre-Marie de Rodat <derodat@adacore.com>
16162 * dwarf2out.c (add_abstract_origin_attribute): Adjust
16163 documentation comment. For BLOCK nodes, add a
16164 DW_AT_abstract_origin attribute that points to the DIE generated
16165 for the origin BLOCK.
16166 (gen_lexical_block_die): Call add_abstract_origin_attribute for
16167 blocks from inlined functions.
16169 2016-05-10 Alan Modra <amodra@gmail.com>
16172 * config/rs6000/rs6000.c (rs6000_expand_split_stack_prologue): Stop
16173 regrename modifying insns saving lr before __morestack call.
16174 * config/rs6000/rs6000.md (split_stack_return): Similarly for
16175 insns restoring lr after __morestack call.
16177 2016-05-09 Jakub Jelinek <jakub@redhat.com>
16179 * config/i386/i386.md (set_got, set_got_labelled, lwp_llwpcb,
16180 lwp_lwpval<mode>3, lwp_lwpins<mode>3): Remove constraints from
16182 * config/i386/sse.md (vec_interleave_high<mode>,
16183 vec_interleave_low<mode>, <avx512>_vpermi2var<mode>3_maskz,
16184 <avx512>_vpermt2var<mode>3_maskz): Likewise.
16186 2016-05-04 Aaron Sawdey <acsawdey@linux.vnet.ibm.com>
16188 * config/rs6000/rs6000.c (rs6000_reassociation_width): Add
16189 function for TARGET_SCHED_REASSOCIATION_WIDTH to enable
16190 parallel reassociation for power8 and forward.
16192 2016-05-09 Uros Bizjak <ubizjak@gmail.com>
16194 * config/i386/i386.md (absneg splitters with general regs): Use
16195 general_reg_operand predicate.
16196 (btsq peephole2): Use x86_64_immediate_operand to check if new
16197 value is suitable for immediate operand. Generate emitted insn
16198 using RTL expressions.
16199 (btcq peephole2): Ditto.
16200 (btrq peephole2): Ditto. Generate correct immediate operand
16203 2016-05-09 Richard Sandiford <richard.sandiford@arm.com>
16205 * cfgexpand.c (expand_debug_expr): Fix address offset for negative
16208 2016-05-09 Richard Sandiford <richard.sandiford@arm.com>
16210 * tree-affine.c (wide_int_constant_multiple_p): Add missing
16211 pointer dereference.
16213 2016-05-09 Richard Biener <rguenther@suse.de>
16215 PR tree-optimization/70985
16216 * match.pd (BIT_FIELD_REF -> (type)): Disable on GIMPLE when
16217 op0 isn't a gimple register.
16219 2016-05-09 Prachi Godbole <prachi.godbole@imgtec.com>
16221 * config/mips/i6400.md (i6400_fpu_intadd, i6400_fpu_logic)
16222 (i6400_fpu_div, i6400_fpu_cmp, i6400_fpu_float, i6400_fpu_store)
16223 (i6400_fpu_long_pipe, i6400_fpu_logic_l, i6400_fpu_float_l)
16224 (i6400_fpu_mult): New cpu units.
16225 (i6400_msa_add_d, i6400_msa_int_add, i6400_msa_short_logic3)
16226 (i6400_msa_short_logic2, i6400_msa_short_logic, i6400_msa_move)
16227 (i6400_msa_cmp, i6400_msa_short_float2, i6400_msa_div_d)
16228 (i6400_msa_div_w, i6400_msa_div_h, i6400_msa_div_b)
16229 (i6400_msa_copy, i6400_msa_branch, i6400_fpu_msa_store)
16230 (i6400_fpu_msa_load, i6400_fpu_msa_move, i6400_msa_long_logic1)
16231 (i6400_msa_long_logic2, i6400_msa_mult, i6400_msa_long_float2)
16232 (i6400_msa_long_float4, i6400_msa_long_float5)
16233 (i6400_msa_long_float8, i6400_msa_fdiv_df)
16234 (i6400_msa_fdiv_sf): New reservations.
16235 * config/mips/p5600.md (p5600_fpu_intadd, p5600_fpu_cmp)
16236 (p5600_fpu_float, p5600_fpu_logic_a, p5600_fpu_logic_b)
16237 (p5600_fpu_div, p5600_fpu_logic, p5600_fpu_float_a)
16238 (p5600_fpu_float_b, p5600_fpu_float_c, p5600_fpu_float_d)
16239 (p5600_fpu_mult, p5600_fpu_fdiv, p5600_fpu_load): New cpu units.
16240 (msa_short_int_add, msa_short_logic, msa_short_logic_move_v)
16241 (msa_short_cmp, msa_short_float2, msa_short_logic3)
16242 (msa_short_store4, msa_long_load, msa_short_store)
16243 (msa_long_logic, msa_long_float2, msa_long_float4)
16244 (msa_long_float5, msa_long_float8, msa_long_mult)
16245 (msa_long_fdiv, msa_long_div): New reservations.
16247 2016-05-09 Robert Suchanek <robert.suchanek@imgtec.com>
16248 Sameera Deshpande <sameera.deshpande@imgtec.com>
16249 Matthew Fortune <matthew.fortune@imgtec.com>
16250 Graham Stott <graham.stott@imgtec.com>
16251 Chao-ying Fu <chao-ying.fu@imgtec.com>
16253 * config.gcc: Add MSA header file for mips*-*-* target.
16254 * config/mips/constraints.md (YI, YC, YZ, Unv5, Uuv5, Usv5, Uuv6)
16255 (Ubv8i, Urv8): New constraints.
16256 * config/mips/mips-ftypes.def: Add function types for MSA
16258 * config/mips/mips-modes.def (V16QI, V8HI, V4SI, V2DI, V4SF)
16259 (V2DF, V32QI, V16HI, V8SI, V4DI, V8SF, V4DF): New modes.
16260 * config/mips/mips-msa.md: New file.
16261 * config/mips/mips-protos.h
16262 (mips_split_128bit_const_insns): New prototype.
16263 (mips_msa_idiv_insns): Likewise.
16264 (mips_split_128bit_move): Likewise.
16265 (mips_split_128bit_move_p): Likewise.
16266 (mips_split_msa_copy_d): Likewise.
16267 (mips_split_msa_insert_d): Likewise.
16268 (mips_split_msa_fill_d): Likewise.
16269 (mips_expand_msa_branch): Likewise.
16270 (mips_const_vector_same_val_p): Likewise.
16271 (mips_const_vector_same_bytes_p): Likewise.
16272 (mips_const_vector_same_int_p): Likewise.
16273 (mips_const_vector_shuffle_set_p): Likewise.
16274 (mips_const_vector_bitimm_set_p): Likewise.
16275 (mips_const_vector_bitimm_clr_p): Likewise.
16276 (mips_msa_vec_parallel_const_half): Likewise.
16277 (mips_msa_output_division): Likewise.
16278 (mips_ldst_scaled_shift): Likewise.
16279 (mips_expand_vec_cond_expr): Likewise.
16280 * config/mips/mips.c (enum mips_builtin_type): Add
16281 MIPS_BUILTIN_MSA_TEST_BRANCH.
16282 (mips_gen_const_int_vector_shuffle): New prototype.
16283 (mips_const_vector_bitimm_set_p): New function.
16284 (mips_const_vector_bitimm_clr_p): Likewise.
16285 (mips_const_vector_same_val_p): Likewise.
16286 (mips_const_vector_same_bytes_p): Likewise.
16287 (mips_const_vector_same_int_p): Likewise.
16288 (mips_const_vector_shuffle_set_p): Likewise.
16289 (mips_symbol_insns): Forbid loading symbols via immediate for
16291 (mips_valid_offset_p): Limit offset to 10-bit for MSA loads and
16293 (mips_valid_lo_sum_p): Forbid loadings symbols via %lo(base) for
16295 (mips_lx_address_p): Add support load indexed address for MSA.
16296 (mips_address_insns): Add calculation of instructions needed for
16297 stores and loads for MSA.
16298 (mips_const_insns): Move CONST_DOUBLE below CONST_VECTOR. Handle
16299 CONST_VECTOR for MSA and let it fall through.
16300 (mips_ldst_scaled_shift): New function.
16301 (mips_subword_at_byte): Likewise.
16302 (mips_msa_idiv_insns): Likewise.
16303 (mips_legitimize_move): Validate MSA moves.
16304 (mips_rtx_costs): Add UNGE, UNGT, UNLE, UNLT cases. Add
16305 calculation of costs for MSA division.
16306 (mips_split_move_p): Check if MSA moves need splitting.
16307 (mips_split_move): Split MSA moves if necessary.
16308 (mips_split_128bit_move_p): New function.
16309 (mips_split_128bit_move): Likewise.
16310 (mips_split_msa_copy_d): Likewise.
16311 (mips_split_msa_insert_d): Likewise.
16312 (mips_split_msa_fill_d): Likewise.
16313 (mips_output_move): Handle MSA moves.
16314 (mips_expand_msa_branch): New function.
16315 (mips_print_operand): Add 'E', 'B', 'w', 'v' and 'V' modifiers.
16316 Reinstate 'y' modifier.
16317 (mips_file_start): Add MSA .gnu_attribute.
16318 (mips_hard_regno_mode_ok_p): Allow TImode and 128-bit vectors in
16320 (mips_hard_regno_nregs): Always return 1 for MSA supported mode.
16321 (mips_class_max_nregs): Add register size for MSA supported mode.
16322 (mips_cannot_change_mode_class): Allow conversion between MSA
16323 vector modes and TImode.
16324 (mips_mode_ok_for_mov_fmt_p): Allow MSA to use move.v
16326 (mips_secondary_reload_class): Force MSA loads/stores via memory.
16327 (mips_preferred_simd_mode): Add preffered modes for MSA.
16328 (mips_vector_mode_supported_p): Add MSA supported modes.
16329 (mips_autovectorize_vector_sizes): New function.
16330 (mips_msa_output_division): Likewise.
16331 (MSA_BUILTIN, MIPS_BUILTIN_DIRECT_NO_TARGET)
16332 (MSA_NO_TARGET_BUILTIN, MSA_BUILTIN_TEST_BRANCH): New macros.
16333 (CODE_FOR_msa_adds_s_b, CODE_FOR_msa_adds_s_h)
16334 (CODE_FOR_msa_adds_s_w, CODE_FOR_msa_adds_s_d)
16335 (CODE_FOR_msa_adds_u_b, CODE_FOR_msa_adds_u_h)
16336 (CODE_FOR_msa_adds_u_w, CODE_FOR_msa_adds_u_du
16337 (CODE_FOR_msa_addv_b, CODE_FOR_msa_addv_h, CODE_FOR_msa_addv_w)
16338 (CODE_FOR_msa_addv_d, CODE_FOR_msa_and_v, CODE_FOR_msa_bmnz_v)
16339 (CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bmz_v, CODE_FOR_msa_bmzi_b)
16340 (CODE_FOR_msa_bnz_v, CODE_FOR_msa_bz_v, CODE_FOR_msa_bsel_v)
16341 (CODE_FOR_msa_bseli_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w)
16342 (CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b)
16343 (CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w)
16344 (CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clti_u_b)
16345 (CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w)
16346 (CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_s_b)
16347 (CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w)
16348 (CODE_FOR_msa_clei_s_d, CODE_FOR_msa_clei_u_b)
16349 (CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w)
16350 (CODE_FOR_msa_clei_u_d, CODE_FOR_msa_div_s_b)
16351 (CODE_FOR_msa_div_s_h, CODE_FOR_msa_div_s_w)
16352 (CODE_FOR_msa_div_s_d, CODE_FOR_msa_div_u_b)
16353 (CODE_FOR_msa_div_u_h, CODE_FOR_msa_div_u_w)
16354 (CODE_FOR_msa_div_u_d, CODE_FOR_msa_fadd_w, CODE_FOR_msa_fadd_d)
16355 (CODE_FOR_msa_fexdo_w, CODE_FOR_msa_ftrunc_s_w)
16356 (CODE_FOR_msa_ftrunc_s_d, CODE_FOR_msa_ftrunc_u_w)
16357 (CODE_FOR_msa_ftrunc_u_d, CODE_FOR_msa_ffint_s_w)
16358 (CODE_FOR_msa_ffint_s_d, CODE_FOR_msa_ffint_u_w)
16359 (CODE_FOR_msa_ffint_u_d, CODE_FOR_msa_fsub_w)
16360 (CODE_FOR_msa_fsub_d, CODE_FOR_msa_fmsub_d, CODE_FOR_msa_fmadd_w)
16361 (CODE_FOR_msa_fmadd_d, CODE_FOR_msa_fmsub_w, CODE_FOR_msa_fmul_w)
16362 (CODE_FOR_msa_fmul_d, CODE_FOR_msa_fdiv_w, CODE_FOR_msa_fdiv_d)
16363 (CODE_FOR_msa_fmax_w, CODE_FOR_msa_fmax_d, CODE_FOR_msa_fmax_a_w)
16364 (CODE_FOR_msa_fmax_a_d, CODE_FOR_msa_fmin_w, CODE_FOR_msa_fmin_d)
16365 (CODE_FOR_msa_fmin_a_w, CODE_FOR_msa_fmin_a_d)
16366 (CODE_FOR_msa_fsqrt_w, CODE_FOR_msa_fsqrt_d)
16367 (CODE_FOR_msa_max_s_b, CODE_FOR_msa_max_s_h)
16368 (CODE_FOR_msa_max_s_w, CODE_FOR_msa_max_s_d)
16369 (CODE_FOR_msa_max_u_b, CODE_FOR_msa_max_u_h)
16370 (CODE_FOR_msa_max_u_w, CODE_FOR_msa_max_u_d)
16371 (CODE_FOR_msa_min_s_b, CODE_FOR_msa_min_s_h)
16372 (CODE_FOR_msa_min_s_w, CODE_FOR_msa_min_s_d)
16373 (CODE_FOR_msa_min_u_b, CODE_FOR_msa_min_u_h)
16374 (CODE_FOR_msa_min_u_w, CODE_FOR_msa_min_u_d)
16375 (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
16376 (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
16377 (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
16378 (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
16379 (CODE_FOR_msa_mod_s_b, CODE_FOR_msa_mod_s_h)
16380 (CODE_FOR_msa_mod_s_w, CODE_FOR_msa_mod_s_d)
16381 (CODE_FOR_msa_mod_u_b, CODE_FOR_msa_mod_u_h)
16382 (CODE_FOR_msa_mod_u_w, CODE_FOR_msa_mod_u_d)
16383 (CODE_FOR_msa_mulv_b, CODE_FOR_msa_mulv_h, CODE_FOR_msa_mulv_w)
16384 (CODE_FOR_msa_mulv_d, CODE_FOR_msa_nlzc_b, CODE_FOR_msa_nlzc_h)
16385 (CODE_FOR_msa_nlzc_w, CODE_FOR_msa_nlzc_d, CODE_FOR_msa_nor_v)
16386 (CODE_FOR_msa_or_v, CODE_FOR_msa_ori_b, CODE_FOR_msa_nori_b)
16387 (CODE_FOR_msa_pcnt_b, CODE_FOR_msa_pcnt_h, CODE_FOR_msa_pcnt_w)
16388 (CODE_FOR_msa_pcnt_d, CODE_FOR_msa_xor_v, CODE_FOR_msa_xori_b)
16389 (CODE_FOR_msa_sll_b, CODE_FOR_msa_sll_h, CODE_FOR_msa_sll_w)
16390 (CODE_FOR_msa_sll_d, CODE_FOR_msa_slli_b, CODE_FOR_msa_slli_h)
16391 (CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d, CODE_FOR_msa_sra_b)
16392 (CODE_FOR_msa_sra_h, CODE_FOR_msa_sra_w, CODE_FOR_msa_sra_d)
16393 (CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w)
16394 (CODE_FOR_msa_srai_d, CODE_FOR_msa_srl_b, CODE_FOR_msa_srl_h)
16395 (CODE_FOR_msa_srl_w, CODE_FOR_msa_srl_d, CODE_FOR_msa_srli_b)
16396 (CODE_FOR_msa_srli_h, CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d)
16397 (CODE_FOR_msa_subv_b, CODE_FOR_msa_subv_h, CODE_FOR_msa_subv_w)
16398 (CODE_FOR_msa_subv_d, CODE_FOR_msa_subvi_b, CODE_FOR_msa_subvi_h)
16399 (CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d, CODE_FOR_msa_move_v)
16400 (CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h, CODE_FOR_msa_vshf_w)
16401 (CODE_FOR_msa_vshf_d, CODE_FOR_msa_ilvod_d, CODE_FOR_msa_ilvev_d)
16402 (CODE_FOR_msa_pckod_d, CODE_FOR_msa_pckdev_d, CODE_FOR_msa_ldi_b)
16403 (CODE_FOR_msa_ldi_hi, CODE_FOR_msa_ldi_w)
16404 (CODE_FOR_msa_ldi_d): New code_aliasing macros.
16405 (mips_builtins): Add MSA sll_b, sll_h, sll_w, sll_d, slli_b,
16406 slli_h, slli_w, slli_d, sra_b, sra_h, sra_w, sra_d, srai_b,
16407 srai_h, srai_w, srai_d, srar_b, srar_h, srar_w, srar_d, srari_b,
16408 srari_h, srari_w, srari_d, srl_b, srl_h, srl_w, srl_d, srli_b,
16409 srli_h, srli_w, srli_d, srlr_b, srlr_h, srlr_w, srlr_d, srlri_b,
16410 srlri_h, srlri_w, srlri_d, bclr_b, bclr_h, bclr_w, bclr_d,
16411 bclri_b, bclri_h, bclri_w, bclri_d, bset_b, bset_h, bset_w,
16412 bset_d, bseti_b, bseti_h, bseti_w, bseti_d, bneg_b, bneg_h,
16413 bneg_w, bneg_d, bnegi_b, bnegi_h, bnegi_w, bnegi_d, binsl_b,
16414 binsl_h, binsl_w, binsl_d, binsli_b, binsli_h, binsli_w,
16415 binsli_d, binsr_b, binsr_h, binsr_w, binsr_d, binsri_b, binsri_h,
16416 binsri_w, binsri_d, addv_b, addv_h, addv_w, addv_d, addvi_b,
16417 addvi_h, addvi_w, addvi_d, subv_b, subv_h, subv_w, subv_d,
16418 subvi_b, subvi_h, subvi_w, subvi_d, max_s_b, max_s_h, max_s_w,
16419 max_s_d, maxi_s_b, maxi_s_h, maxi_s_w, maxi_s_d, max_u_b,
16420 max_u_h, max_u_w, max_u_d, maxi_u_b, maxi_u_h, maxi_u_w,
16421 maxi_u_d, min_s_b, min_s_h, min_s_w, min_s_d, mini_s_b, mini_s_h,
16422 mini_s_w, mini_s_d, min_u_b, min_u_h, min_u_w, min_u_d, mini_u_b,
16423 mini_u_h, mini_u_w, mini_u_d, max_a_b, max_a_h, max_a_w, max_a_d,
16424 min_a_b, min_a_h, min_a_w, min_a_d, ceq_b, ceq_h, ceq_w, ceq_d,
16425 ceqi_b, ceqi_h, ceqi_w, ceqi_d, clt_s_b, clt_s_h, clt_s_w,
16426 clt_s_d, clti_s_b, clti_s_h, clti_s_w, clti_s_d, clt_u_b,
16427 clt_u_h, clt_u_w, clt_u_d, clti_u_b, clti_u_h, clti_u_w,
16428 clti_u_d, cle_s_b, cle_s_h, cle_s_w, cle_s_d, clei_s_b, clei_s_h,
16429 clei_s_w, clei_s_d, cle_u_b, cle_u_h, cle_u_w, cle_u_d, clei_u_b,
16430 clei_u_h, clei_u_w, clei_u_d, ld_b, ld_h, ld_w, ld_d, st_b, st_h,
16431 st_w, st_d, sat_s_b, sat_s_h, sat_s_w, sat_s_d, sat_u_b, sat_u_h,
16432 sat_u_w, sat_u_d, add_a_b, add_a_h, add_a_w, add_a_d, adds_a_b,
16433 adds_a_h, adds_a_w, adds_a_d, adds_s_b, adds_s_h, adds_s_w,
16434 adds_s_d, adds_u_b, adds_u_h, adds_u_w, adds_u_d, ave_s_b,
16435 ave_s_h, ave_s_w, ave_s_d, ave_u_b, ave_u_h, ave_u_w, ave_u_d,
16436 aver_s_b, aver_s_h, aver_s_w, aver_s_d, aver_u_b, aver_u_h,
16437 aver_u_w, aver_u_d, subs_s_b, subs_s_h, subs_s_w, subs_s_d,
16438 subs_u_b, subs_u_h, subs_u_w, subs_u_d, subsuu_s_b, subsuu_s_h,
16439 subsuu_s_w, subsuu_s_d, subsus_u_b, subsus_u_h, subsus_u_w,
16440 subsus_u_d, asub_s_b, asub_s_h, asub_s_w, asub_s_d, asub_u_b,
16441 asub_u_h, asub_u_w, asub_u_d, mulv_b, mulv_h, mulv_w, mulv_d,
16442 maddv_b, maddv_h, maddv_w, maddv_d, msubv_b, msubv_h, msubv_w,
16443 msubv_d, div_s_b, div_s_h, div_s_w, div_s_d, div_u_b, div_u_h,
16444 div_u_w, div_u_d, hadd_s_h, hadd_s_w, hadd_s_d, hadd_u_h,
16445 hadd_u_w, hadd_u_d, hsub_s_h, hsub_s_w, hsub_s_d, hsub_u_h,
16446 hsub_u_w, hsub_u_d, mod_s_b, mod_s_h, mod_s_w, mod_s_d, mod_u_b,
16447 mod_u_h, mod_u_w, mod_u_d, dotp_s_h, dotp_s_w, dotp_s_d,
16448 dotp_u_h, dotp_u_w, dotp_u_d, dpadd_s_h, dpadd_s_w, dpadd_s_d,
16449 dpadd_u_h, dpadd_u_w, dpadd_u_d, dpsub_s_h, dpsub_s_w, dpsub_s_d,
16450 dpsub_u_h, dpsub_u_w, dpsub_u_d, sld_b, sld_h, sld_w, sld_d,
16451 sldi_b, sldi_h, sldi_w, sldi_d, splat_b, splat_h, splat_w,
16452 splat_d, splati_b, splati_h, splati_w, splati_d, pckev_b,
16453 pckev_h, pckev_w, pckev_d, pckod_b, pckod_h, pckod_w, pckod_d,
16454 ilvl_b, ilvl_h, ilvl_w, ilvl_d, ilvr_b, ilvr_h, ilvr_w, ilvr_d,
16455 ilvev_b, ilvev_h, ilvev_w, ilvev_d, ilvod_b, ilvod_h, ilvod_w,
16456 ilvod_d, vshf_b, vshf_h, vshf_w, vshf_d, and_v, andi_b, or_v,
16457 ori_b, nor_v, nori_b, xor_v, xori_b, bmnz_v, bmnzi_b, bmz_v,
16458 bmzi_b, bsel_v, bseli_b, shf_b, shf_h, shf_w, bnz_v, bz_v,
16459 fill_b, fill_h, fill_w, fill_d, pcnt_b, pcnt_h, pcnt_w,
16460 pcnt_d, nloc_b, nloc_h, nloc_w, nloc_d, nlzc_b, nlzc_h, nlzc_w,
16461 nlzc_d, copy_s_b, copy_s_h, copy_s_w, copy_s_d, copy_u_b,
16462 copy_u_h, copy_u_w, copy_u_d, insert_b, insert_h, insert_w,
16463 insert_d, insve_b, insve_h, insve_w, insve_d, bnz_b, bnz_h,
16464 bnz_w, bnz_d, bz_b, bz_h, bz_w, bz_d, ldi_b, ldi_h, ldi_w, ldi_d,
16465 fcaf_w, fcaf_d, fcor_w, fcor_d, fcun_w, fcun_d, fcune_w, fcune_d,
16466 fcueq_w, fcueq_d, fceq_w, fceq_d, fcne_w, fcne_d, fclt_w, fclt_d,
16467 fcult_w, fcult_d, fcle_w, fcle_d, fcule_w, fcule_d, fsaf_w,
16468 fsaf_d, fsor_w, fsor_d, fsun_w, fsun_d, fsune_w, fsune_d,
16469 fsueq_w, fsueq_d, fseq_w, fseq_d, fsne_w, fsne_d, fslt_w,
16470 fslt_d, fsult_w, fsult_d, fsle_w, fsle_d, fsule_w, fsule_d,
16471 fadd_w, fadd_d, fsub_w, fsub_d, fmul_w, fmul_d, fdiv_w, fdiv_d,
16472 fmadd_w, fmadd_d, fmsub_w, fmsub_d, fexp2_w, fexp2_d, fexdo_h,
16473 fexdo_w, ftq_h, ftq_w, fmin_w, fmin_d, fmin_a_w, fmin_a_d,
16474 fmax_w, fmax_d, fmax_a_w, fmax_a_d, mul_q_h, mul_q_w, mulr_q_h,
16475 mulr_q_w, madd_q_h, madd_q_w, maddr_q_h, maddr_q_w, msub_q_h,
16476 msub_q_w, msubr_q_h, msubr_q_w, fclass_w, fclass_d, fsqrt_w,
16477 fsqrt_d, frcp_w, frcp_d, frint_w, frint_d, frsqrt_w, frsqrt_d,
16478 flog2_w, flog2_d, fexupl_w, fexupl_d, fexupr_w, fexupr_d, ffql_w,
16479 ffql_d, ffqr_w, ffqr_d, ftint_s_w, ftint_s_d, ftint_u_w,
16480 ftint_u_d, ftrunc_s_w, ftrunc_s_d, ftrunc_u_w, ftrunc_u_d,
16481 ffint_s_w, ffint_s_d, ffint_u_w, ffint_u_d, ctcmsa, cfcmsa,
16483 (mips_get_builtin_decl_index): New array.
16484 (MIPS_ATYPE_QI, MIPS_ATYPE_HI, MIPS_ATYPE_V2DI, MIPS_ATYPE_V4SI)
16485 (MIPS_ATYPE_V8HI, MIPS_ATYPE_V16QI, MIPS_ATYPE_V2DF)
16486 (MIPS_ATYPE_V4SF, MIPS_ATYPE_UV2DI, MIPS_ATYPE_UV4SI)
16487 (MIPS_ATYPE_UV8HI, MIPS_ATYPE_UV16QI): New.
16488 (mips_init_builtins): Initialize mips_get_builtin_decl_index
16490 (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION): Define target
16492 (mips_expand_builtin_insn): Prepare operands for
16493 CODE_FOR_msa_addvi_b, CODE_FOR_msa_addvi_h, CODE_FOR_msa_addvi_w,
16494 CODE_FOR_msa_addvi_d, CODE_FOR_msa_clti_u_b,
16495 CODE_FOR_msa_clti_u_h, CODE_FOR_msa_clti_u_w,
16496 CODE_FOR_msa_clti_u_d, CODE_FOR_msa_clei_u_b,
16497 CODE_FOR_msa_clei_u_h, CODE_FOR_msa_clei_u_w,
16498 CODE_FOR_msa_clei_u_d, CODE_FOR_msa_maxi_u_b,
16499 CODE_FOR_msa_maxi_u_h, CODE_FOR_msa_maxi_u_w,
16500 CODE_FOR_msa_maxi_u_d, CODE_FOR_msa_mini_u_b,
16501 CODE_FOR_msa_mini_u_h, CODE_FOR_msa_mini_u_w,
16502 CODE_FOR_msa_mini_u_d, CODE_FOR_msa_subvi_b,
16503 CODE_FOR_msa_subvi_h, CODE_FOR_msa_subvi_w, CODE_FOR_msa_subvi_d,
16504 CODE_FOR_msa_ceqi_b, CODE_FOR_msa_ceqi_h, CODE_FOR_msa_ceqi_w,
16505 CODE_FOR_msa_ceqi_d, CODE_FOR_msa_clti_s_b,
16506 CODE_FOR_msa_clti_s_h, CODE_FOR_msa_clti_s_w,
16507 CODE_FOR_msa_clti_s_d, CODE_FOR_msa_clei_s_b,
16508 CODE_FOR_msa_clei_s_h, CODE_FOR_msa_clei_s_w,
16509 CODE_FOR_msa_clei_s_d, CODE_FOR_msa_maxi_s_b,
16510 CODE_FOR_msa_maxi_s_h, CODE_FOR_msa_maxi_s_w,
16511 CODE_FOR_msa_maxi_s_d, CODE_FOR_msa_mini_s_b,
16512 CODE_FOR_msa_mini_s_h, CODE_FOR_msa_mini_s_w,
16513 CODE_FOR_msa_mini_s_d, CODE_FOR_msa_andi_b, CODE_FOR_msa_ori_b,
16514 CODE_FOR_msa_nori_b, CODE_FOR_msa_xori_b, CODE_FOR_msa_bmzi_b,
16515 CODE_FOR_msa_bmnzi_b, CODE_FOR_msa_bseli_b, CODE_FOR_msa_fill_b,
16516 CODE_FOR_msa_fill_h, CODE_FOR_msa_fill_w, CODE_FOR_msa_fill_d,
16517 CODE_FOR_msa_ilvl_b, CODE_FOR_msa_ilvl_h, CODE_FOR_msa_ilvl_w,
16518 CODE_FOR_msa_ilvl_d, CODE_FOR_msa_ilvr_b, CODE_FOR_msa_ilvr_h,
16519 CODE_FOR_msa_ilvr_w, CODE_FOR_msa_ilvr_d, CODE_FOR_msa_ilvev_b,
16520 CODE_FOR_msa_ilvev_h, CODE_FOR_msa_ilvev_w, CODE_FOR_msa_ilvod_b,
16521 CODE_FOR_msa_ilvod_h, CODE_FOR_msa_ilvod_w, CODE_FOR_msa_pckev_b,
16522 CODE_FOR_msa_pckev_h, CODE_FOR_msa_pckev_w, CODE_FOR_msa_pckod_b,
16523 CODE_FOR_msa_pckod_h, CODE_FOR_msa_pckod_w, CODE_FOR_msa_slli_b,
16524 CODE_FOR_msa_slli_h, CODE_FOR_msa_slli_w, CODE_FOR_msa_slli_d,
16525 CODE_FOR_msa_srai_b, CODE_FOR_msa_srai_h, CODE_FOR_msa_srai_w,
16526 CODE_FOR_msa_srai_d, CODE_FOR_msa_srli_b, CODE_FOR_msa_srli_h,
16527 CODE_FOR_msa_srli_w, CODE_FOR_msa_srli_d, CODE_FOR_msa_insert_b,
16528 CODE_FOR_msa_insert_h, CODE_FOR_msa_insert_w,
16529 CODE_FOR_msa_insert_d, CODE_FOR_msa_insve_b,
16530 CODE_FOR_msa_insve_h, CODE_FOR_msa_insve_w, CODE_FOR_msa_insve_d,
16531 CODE_FOR_msa_shf_b, CODE_FOR_msa_shf_h, CODE_FOR_msa_shf_w,
16532 CODE_FOR_msa_shf_w_f, CODE_FOR_msa_vshf_b, CODE_FOR_msa_vshf_h,
16533 CODE_FOR_msa_vshf_w, CODE_FOR_msa_vshf_d.
16534 (mips_expand_builtin): Add case for MIPS_BULTIN_MSA_TEST_BRANCH.
16535 (mips_set_compression_mode): Disallow MSA with MIPS16 code.
16536 (mips_option_override): -mmsa requires -mfp64 and -mhard-float.
16537 These are set implicitly and an error is reported if overridden.
16538 (mips_expand_builtin_msa_test_branch): New function.
16539 (mips_expand_msa_shuffle): Likewise.
16540 (MAX_VECT_LEN): Increase maximum length of a vector to 16 bytes.
16541 (TARGET_SCHED_REASSOCIATION_WIDTH): Define target hook.
16542 (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Likewise.
16543 (mips_expand_vec_unpack): Add support for MSA.
16544 (mips_expand_vector_init): Likewise.
16545 (mips_expand_vi_constant): Use CONST0_RTX (element_mode)
16546 instead of const0_rtx.
16547 (mips_msa_vec_parallel_const_half): New function.
16548 (mips_gen_const_int_vector): Likewise.
16549 (mips_gen_const_int_vector_shuffle): Likewise.
16550 (mips_expand_msa_cmp): Likewise.
16551 (mips_expand_vec_cond_expr): Likewise.
16552 * config/mips/mips.h
16553 (TARGET_CPU_CPP_BUILTINS): Add __mips_msa and __mips_msa_width.
16554 (OPTION_DEFAULT_SPECS): Ignore --with-fp-32 if -mmsa is
16556 (ASM_SPEC): Pass mmsa and mno-msa to the assembler.
16557 (ISA_HAS_MSA): New macro.
16558 (UNITS_PER_MSA_REG): Likewise.
16559 (BITS_PER_MSA_REG): Likewise.
16560 (BIGGEST_ALIGNMENT): Redefine using ISA_HAS_MSA.
16561 (MSA_REG_FIRST): New macro.
16562 (MSA_REG_LAST): Likewise.
16563 (MSA_REG_NUM): Likewise.
16564 (MSA_REG_P): Likewise.
16565 (MSA_REG_RTX_P): Likewise.
16566 (MSA_SUPPORTED_MODE_P): Likewise.
16567 (HARD_REGNO_CALL_PART_CLOBBERED): Redefine using TARGET_MSA.
16568 (ADDITIONAL_REGISTER_NAMES): Add named registers $w0-$w31.
16569 * config/mips/mips.md: Include mips-msa.md.
16570 (alu_type): Add simd_add.
16571 (mode): Add V2DI, V4SI, V8HI, V16QI, V2DF, V4SF.
16572 (type): Add simd_div, simd_fclass, simd_flog2, simd_fadd,
16573 simd_fcvt, simd_fmul, simd_fmadd, simd_fdiv, simd_bitins,
16574 simd_bitmov, simd_insert, simd_sld, simd_mul, simd_fcmp,
16575 simd_fexp2, simd_int_arith, simd_bit, simd_shift, simd_splat,
16576 simd_fill, simd_permute, simd_shf, simd_sat, simd_pcnt,
16577 simd_copy, simd_branch, simd_cmsa, simd_fminmax, simd_logic,
16578 simd_move, simd_load, simd_store. Choose "multi" for moves
16580 (qword_mode): New attribute.
16581 (insn_count): Add instruction count for quad moves.
16582 Increase the count for MIPS SIMD division.
16583 (UNITMODE): Add UNITMODEs for vector types.
16584 (addsub): New code iterator.
16585 * config/mips/mips.opt (mmsa): New option.
16586 * config/mips/msa.h: New file.
16587 * config/mips/mti-elf.h: Don't infer -mfpxx if -mmsa is
16589 * config/mips/mti-linux.h: Likewise.
16590 * config/mips/predicates.md
16591 (const_msa_branch_operand): New constraint.
16592 (const_uimm3_operand): Likewise.
16593 (const_uimm4_operand): Likewise.
16594 (const_uimm5_operand): Likewise.
16595 (const_uimm8_operand): Likewise.
16596 (const_imm5_operand): Likewise.
16597 (aq10b_operand): Likewise.
16598 (aq10h_operand): Likewise.
16599 (aq10w_operand): Likewise.
16600 (aq10d_operand): Likewise.
16601 (const_m1_operand): Likewise.
16602 (reg_or_m1_operand): Likewise.
16603 (const_exp_2_operand): Likewise.
16604 (const_exp_4_operand): Likewise.
16605 (const_exp_8_operand): Likewise.
16606 (const_exp_16_operand): Likewise.
16607 (const_vector_same_val_operand): Likewise.
16608 (const_vector_same_simm5_operand): Likewise.
16609 (const_vector_same_uimm5_operand): Likewise.
16610 (const_vector_same_uimm6_operand): Likewise.
16611 (const_vector_same_uimm8_operand): Likewise.
16612 (par_const_vector_shf_set_operand): Likewise.
16613 (reg_or_vector_same_val_operand): Likewise.
16614 (reg_or_vector_same_simm5_operand): Likewise.
16615 (reg_or_vector_same_uimm6_operand): Likewise.
16616 * doc/extend.texi (MIPS SIMD Architecture Functions): New
16618 * doc/invoke.texi (-mmsa): Document new option.
16620 2016-05-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
16622 * configure.ac (enable_vtable_verify): Handle --enable-vtable-verify.
16623 * configure: Regenerate.
16624 * config.in: Regenerate.
16625 * gcc.c (VTABLE_VERIFICATION_SPEC) [!ENABLE_VTABLE_VERIFY]: Error
16626 on -fvtable-verify.
16627 * config/sol2.h [!ENABLE_VTABLE_VERIFY] (STARTFILE_VTV_SPEC): Define.
16628 (ENDFILE_VTV_SPEC): Define.
16630 2016-05-09 Kaushik Phatak <kaushik.phatak@kpit.com>
16632 * config/rl78/rl78.c (rl78_expand_prologue): Save the MDUC related
16633 registers in all interrupt handlers if necessary.
16634 (rl78_option_override): Add warning.
16635 (MUST_SAVE_MDUC_REGISTERS): New macro.
16636 (rl78_expand_epilogue): Restore the MDUC registers if necessary.
16637 * config/rl78/rl78.c (check_mduc_usage): New function.
16638 (mduc_regs): New structure to hold MDUC register data.
16639 * config/rl78/rl78.md (is_g13_muldiv_insn): New attribute.
16640 (mulsi3_g13): Add is_g13_muldiv_insn attribute.
16641 (udivmodsi4_g13): Add is_g13_muldiv_insn attribute.
16642 (mulhi3_g13): Add is_g13_muldiv_insn attribute.
16643 * config/rl78/rl78.opt (msave-mduc-in-interrupts): New option.
16644 * doc/invoke.texi (RL78 Options): Add -msave-mduc-in-interrupts.
16646 2016-05-09 Bin Cheng <bin.cheng@arm.com>
16648 * tree-if-conv.c (tree-ssa-loop.h): Include header file.
16649 (tree-ssa-loop-niter.h): Ditto.
16650 (idx_within_array_bound, ref_within_array_bound): New functions.
16651 (ifcvt_memrefs_wont_trap): Check if array ref is within bound.
16652 Factor out check on writable base object to ...
16653 (base_object_writable): ... here.
16655 2016-05-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16657 * config/arm/arm.md (probe_stack): Add modes to set source
16660 2016-05-09 Bernd Schmidt <bschmidt@redhat.com>
16662 * regrename.c (base_reg_class_for_rename): New static function.
16663 (scan_rtx_address, scan_rtx): Use it instead of base_reg_class.
16665 2016-05-08 Jan Hubicka <hubicka@ucw.cz>
16667 * cgraph.c (thunk_adjust): Export.
16668 * cgraphclones.c (cgraph_node::create_clone): Clone thunk info.
16669 * cgraphunit.c (thunk_adjust): Export.
16670 (cgraph_node::assemble_thunks_and_aliases): Do not assemble inlined
16672 * ipa-inline-analyssi.c (compute_inline_parameters): Thunks are
16674 * tree-inline.c (expand_call_inline): Expand thunks inline.
16676 2016-05-08 Uros Bizjak <ubizjak@gmail.com>
16679 * config/i386/sse.md (*sse2_vd_cvtsd2ss): New insn pattern.
16680 (*sse2_vd_cvtss2sd): Ditto.
16681 * config/i386/i386.md
16682 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf splitter):
16683 Generate *sse2_vd_cvtsd2ss pattern.
16684 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df splitter):
16685 Generate *sse2_vd_cvtss2sd pattern.
16687 2016-05-08 Oleg Endo <olegendo@gcc.gnu.org>
16689 * config/sh/sh.h (GET_SH_ARG_CLASS): Convert macro into ...
16690 * config/sh/sh.c (get_sh_arg_class): ... this new function. Update its
16693 2016-05-08 Oleg Endo <olegendo@gcc.gnu.org>
16695 * config/sh/sh-protos.h (sh_media_register_for_return): Remove.
16696 * config/sh/sh.c: Define and declare variables on first use throughout
16698 (current_function_interrupt): Change to bool type.
16699 (frame_insn): Rename to emit_frame_insn and update users.
16700 (push_regs): Use bool for 'interrupt_handler' argument.
16701 (save_schedule_s): Remove.
16702 (TARGET_ASM_UNALIGNED_DI_OP, TARGET_ASM_ALIGNED_DI_OP): Remove.
16703 (sh_option_override): Don't nullify targetm.asm_out.aligned_op.di and
16704 targetm.asm_out.unaligned_op.di.
16705 (gen_far_branch): Remove redundant forward declaration.
16706 (sh_media_register_for_return, MAX_SAVED_REGS, save_entry_s, save_entry,
16707 MAX_TEMPS, save_schedule_ssave_schedule): Remove.
16708 (sh_set_return_address, sh_function_ok_for_sibcall,
16709 scavenge_reg): Update comments.
16710 (sh_builtin_saveregs): Use TRAGET_FPU_ANY condition.
16711 (sh2a_get_function_vector_number, sh2a_function_vector_p): Use for loop.
16712 (sh_attr_renesas_p): Remove unnecessary parentheses.
16713 (branch_dest): Simplify.
16714 * config/sh/sh.h (sh_args): Remove byref, byref_regs, stack_regs fields.
16715 Change force_mem, prototype_p, outgoing, renesas_abi fields to bool.
16716 (CUMULATIVE_ARGS): Change macro to typedef.
16717 (current_function_interrupt): Change to bool type.
16718 (sh_arg_class, sh_args, CUMULATIVE_ARGS, current_function_interrupt):
16719 Surround with __cplusplus ifdef.
16720 (sh_compare_op0, sh_compare_op1): Remove.
16721 (EPILOGUE_USES): Use TARGET_FPU_ANY condition.
16723 2016-05-07 Jim Wilson <jim.wilson@linaro.org>
16725 * config/arm/arm.md: (arch): Add neon.
16726 (arch_enabled): Return yes for arch neon when TARGET_NEON.
16727 * config/arm/vfp.md (movdf_vfp): Add w/G as alternative 3. Add
16728 neon_move as type for alt 3. Add arch attr enabling alt 3 for neon.
16729 Emit vmov.i64 for alt 3. Renumber alternatives 3 to 8. Adjust
16730 attributes for alt renumbering. Mark alt 3 as non-predicable.
16731 (thumb2_movdf_vfp): Likewise.
16733 2016-05-07 Uros Bizjak <ubizjak@gmail.com>
16735 * config/i386/i386.md (*addqi_1): Add preferred_for_speed attribute
16736 to disparage alternatives 3 and 4 for TARGET_PARTIAL_REG_STALL targets.
16737 (*andqi_1): Add preferred_for_speed attribute to disparage
16738 alternative 2 for TARGET_PARTIAL_REG_STALL targets.
16739 (*<code>qi_1): Ditto.
16740 (*one_cmplqi2_1): Add preferred_for_speed attribute to disparage
16741 alternative 1 for TARGET_PARTIAL_REG_STALL targets.
16742 (*ashlqi3_1): Ditto.
16743 (*swap<mode>): Merge from *swap<mode>_1 and *swap<mode>_2 patterns.
16744 Add preferred_for_size attribute to disparage alternative 0 and
16745 preferred_for_speed attribute to disparage alternative 1 for
16746 TARGET_PARTIAL_REG_STALL targets.
16748 2016-05-07 Tom de Vries <tom@codesourcery.com>
16750 PR tree-optimization/70956
16751 * graphite-scop-detection.c (build_cross_bb_scalars_def): Handle NULL
16754 2016-05-07 Oleg Endo <olegendo@gcc.gnu.org>
16756 * config/sh/sh-protos.h (sh_cbranch_distance): Declare new function.
16757 * config/sh/sh.c (sh_cbranch_distance): Implement it.
16758 * config/sh/sh.md (branch_zero): Remove define_attr.
16759 (define_delay): Disable delay slot if branch distance is one insn.
16761 2016-05-06 Uros Bizjak <ubizjak@gmail.com>
16763 * config/i386/i386.md (LEAMODE): New mode attribute.
16764 (plus to LEA splitter): Rewrite splitter using LEAMODE mode attribute.
16765 (ashift to LEA splitter): Rewrte splitter using SWI mode iterator
16766 and LEAMODE mode attribute. Use VOIDmode const_0_to_3_operand as
16767 operand 2 predicate.
16768 (*lea<mode>_general_2): Use VOIDmode for const248_operand.
16769 (*lea<mode>_general_3): Ditto.
16770 (*lea<mode>_general_4): Use VOIDmode for const_0_to_3_operand.
16772 2016-05-06 Jakub Jelinek <jakub@redhat.com>
16774 * genmddump.c (main): Convert argv from char ** to const char **.
16776 2016-05-06 David Malcolm <dmalcolm@redhat.com>
16778 * coretypes.h (OVERRIDE): New macro.
16779 (FINAL): New macro.
16781 2016-05-06 Eric Botcazou <ebotcazou@adacore.com>
16783 * tree-ssa-coalesce.c (gimple_can_coalesce_p): In the optimized case,
16784 allow coalescing if the types are compatible.
16786 2016-05-06 David Malcolm <dmalcolm@redhat.com>
16788 * pass_manager.h (pass_manager::register_pass_name): New method.
16789 (pass_manager::get_pass_by_name): New method.
16790 (pass_manager::create_pass_tab): New method.
16791 (pass_manager::m_name_to_pass_map): New field.
16792 * passes.c (name_to_pass_map): Delete global in favor of field
16793 "m_name_to_pass_map" of pass_manager.
16794 (register_pass_name): Rename from a function to...
16795 (pass_manager::register_pass_name): ...this method, updating
16796 for renaming of global "name_to_pass_map" to field
16797 "m_name_to_pass_map".
16798 (create_pass_tab): Rename from a function to...
16799 (pass_manager::create_pass_tab): ...this method, updating
16800 for renaming of global "name_to_pass_map" to field.
16801 (get_pass_by_name): Rename from a function to...
16802 (pass_manager::get_pass_by_name): ...this method.
16803 (enable_disable_pass): Convert use of get_pass_by_name to
16804 a method call, locating the pass_manager singleton.
16806 2016-05-06 David Malcolm <dmalcolm@redhat.com>
16808 * genattr-common.c (main): Convert argv from char ** to const char **.
16809 * genattr.c (main): Likewise.
16810 * genattrtab.c (main): Likewise.
16811 * genautomata.c (initiate_automaton_gen): Likewise.
16813 * gencodes.c (main): Likewise.
16814 * genconditions.c (main): Likewise.
16815 * genconfig.c (main): Likewise.
16816 * genconstants.c (main): Likewise.
16817 * genemit.c (main): Likewise.
16818 * genenums.c (main): Likewise.
16819 * genextract.c (main): Likewise.
16820 * genflags.c (main): Likewise.
16821 * genmddeps.c (main): Likewise.
16822 * genopinit.c (main): Likewise.
16823 * genoutput.c (main): Likewise.
16824 * genpeep.c (main): Likewise.
16825 * genpreds.c (main): Likewise.
16826 * genrecog.c (main): Likewise.
16827 * gensupport.c (init_rtx_reader_args_cb): Likewise.
16828 (init_rtx_reader_args): Likewise.
16829 * gensupport.h (init_rtx_reader_args_cb): Likewise.
16830 (init_rtx_reader_args): Likewise.
16831 * gentarget-def.c (main): Likewise.
16832 * read-md.c (read_md_files): Likewise.
16833 * read-md.h (read_md_files): Likewise.
16835 2016-05-06 Uros Bizjak <ubizjak@gmail.com>
16837 * config/i386/i386.md (int cmove peephole2s): Use general_reg_operand
16838 instead of register_and_not_any_fp_reg_operand as operand 0 predicate.
16839 * config/i386/predicates.md (register_and_not_any_fp_reg_operand):
16840 Remove unused predicate.
16841 (register_and_not_fp_reg_operand): Ditto.
16843 2016-05-06 Martin Liska <mliska@suse.cz>
16845 * tree-if-conv.c (ifcvt_split_critical_edges): Use auto_vec
16846 instead of vec as the vector is local to the function.
16848 2016-05-06 Jakub Jelinek <jakub@redhat.com>
16850 * config/i386/sse.md (*<code>v8hi3, *<code>v16qi3): Add
16851 avx512bw alternative.
16853 * config/i386/sse.md (<mask_codefor>ashr<mode>3<mask_name>): Move
16854 before the ashr<mode>3 pattern.
16856 * config/i386/sse.md (*avx2_pmaddwd, *sse2_pmaddwd): Use
16857 v instead of x in vex or maybe_vex alternatives, use
16858 maybe_evex instead of vex in prefix.
16860 * config/i386/sse.md (*vec_extractv4sf_0, *sse4_1_extractps,
16861 *vec_extractv4sf_mem, vec_extract_lo_v16hi, vec_extract_hi_v16hi,
16862 vec_extract_lo_v32qi, vec_extract_hi_v32qi): Use v instead of x
16863 in vex or maybe_vex alternatives, use maybe_evex instead of vex
16866 * config/i386/sse.md (*vec_concatv2sf_sse4_1, *vec_concatv4sf): Use
16867 v instead of x in vex or maybe_vex alternatives, use
16868 maybe_evex instead of vex in prefix.
16870 * config/i386/sse.md (sse_shufps_<mode>, sse_storehps, sse_loadhps,
16871 sse_storelps, sse_movss, avx2_vec_dup<mode>, avx2_vec_dupv8sf_1,
16872 sse2_shufpd_<mode>, sse2_storehpd, sse2_storelpd, sse2_loadhpd,
16873 sse2_loadlpd, sse2_movsd): Use v instead of x in vex or maybe_vex
16874 alternatives, use maybe_evex instead of vex in prefix.
16876 * config/i386/sse.md (vec_interleave_lowv4sf,
16877 *vec_interleave_highv2df, *vec_interleave_lowv2df): Use
16878 v instead of x in vex or maybe_vex alternatives, use
16879 maybe_evex instead of vex in prefix.
16881 * config/i386/sse.md (sse_movhlps, sse_movlhps): Use
16882 v instead of x in vex or maybe_vex alternatives, use
16883 maybe_evex instead of vex in prefix.
16885 * config/i386/sse.md (*avx_cvtpd2dq256_2, *avx_cvtps2pd256_2): Use
16886 v constraint instead of x.
16888 2016-05-06 Nathan Sidwell <nathan@codesourcery.com>
16890 * gimple.c (gimple_call_same_target_p): Unique functions are eq.
16891 * tree-ssa-tail-merge.c (same_succ::equal): Check pointer eq
16894 2016-05-06 Richard Biener <rguenther@suse.de>
16896 PR tree-optimization/70948
16897 * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
16898 Properly clobber all fields of va_list for __builtin_va_start.
16900 2016-05-06 Yuri Rumyantsev <ysrumyan@gmail.com>
16903 * tree-ssa-loop-unswitch.c (find_loop_guard): Reject guard edge with
16904 loop latch destination.
16906 2016-05-06 Martin Liska <mliska@suse.cz>
16908 * tree-ssa-uninit.c: Apply manual changes
16909 to the GNU coding style.
16910 (prune_uninit_phi_opnds): Rename from
16911 prune_uninit_phi_opnds_in_unrealizable_paths.
16913 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
16915 * config/sh/sh.opt (madjust-unroll, minvalid-symbols, msoft-atomic,
16916 mspace): Remove deprecated options.
16917 * doc/invoke.texi (SH options): Remove -mspace.
16919 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
16921 * config/sh/sh.md (ic_invalidate_line_sh4a): Fix insn length.
16923 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
16925 * config/sh/sh.md (*cmpeqsi_t): Remove combine insn pattern and similar
16926 corresponding combine split pattern.
16928 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
16931 * config/sh/predicates.md (long_displacement_mem_operand): New.
16932 * config/sh/sh.md (movsi_i): Allow for SH2A, disallow for any FPU.
16933 Add movi20, movi20s alternatives. Adjust length attribute for
16935 (movsi_ie): Allow for any FPU. Adjust length attribute for
16937 (movsi_i_lowpart): Add movi20, movi20s alternatives. Adjust length
16938 attribute for alternatives.
16939 (*mov<mode>): Use long_displacement_mem_operand for length attribute.
16940 (*movdi_i, movdf_k, movdf_i4, movsf_i, movsf_ie, movsf_ie_ra): Adjust
16941 length attribute for alternatives.
16943 2016-05-06 Richard Biener <rguenther@suse.de>
16945 PR tree-optimization/70960
16946 * tree-if-conv.c (ifcvt_walk_pattern_tree): Handle non-SSA ops.
16948 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
16951 * config/sh/sh.md (*cmp_div0s_7, *cmp_div0s_8): Add div0s variants.
16952 * config/sh/sh.c (sh_rtx_costs): Add another div0s case.
16954 2016-05-06 Marek Polacek <polacek@redhat.com>
16957 * ubsan.c (get_ubsan_type_info_for_type): Remove assert.
16959 2016-05-06 Oleg Endo <olegendo@gcc.gnu.org>
16962 * config/sh/sh.md (*rotcr): Add another variant.
16964 2016-05-06 Richard Biener <rguenther@suse.de>
16966 PR middle-end/70931
16967 * dwarf2out.c (native_encode_initializer): Skip zero-sized fields.
16969 2016-05-06 Richard Biener <rguenther@suse.de>
16971 PR middle-end/70941
16972 * fold-const.c (split_tree): Always convert to the original type
16975 2016-05-06 Richard Biener <rguenther@suse.de>
16977 * fwprop.c (fwprop): Remove duplicate cleanup_cfg call.
16978 (fwprop_addr): Likewise.
16980 2016-05-06 Uros Bizjak <ubizjak@gmail.com>
16983 * config/i386/i386-protos.h (ix86_standard_x87sse_constant_load_p):
16985 * config/i386/i386.c (ix86_standard_x87sse_constant_load_p): New.
16986 * config/i386/i386.md (push mem splitter): Use find_constant_src in
16987 the splitter condition.
16988 (FP load splitter): Use ix86_standard_x87sse_constant_load_p in
16989 the splitter condition.
16990 (FP float_extend load splitter): Ditto.
16992 2016-05-05 Uros Bizjak <ubizjak@gmail.com>
16994 * config/i386/i386.md (peehole2 patterns): Change true_regnum
16995 to REGNO in all peephole2 patterns.
16996 (post-reload splitters): Change true_regnum to REGNO in
16997 post-reload splitters.
16998 (zero_extend splitters): Use general_reg_operand and
16999 nonimmediate_gr_operand predicates.
17001 2016-05-05 Jakub Jelinek <jakub@redhat.com>
17003 * config/i386/sse.md (<avx512>_fmadd_<mode>_mask3<round_name>): Use
17004 v constraint instead of x.
17006 2016-05-05 Alan Modra <amodra@gmail.com>
17009 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Don't
17010 set OPTION_MASK_RELOCATABLE when flag_pic == 2. Set
17011 TARGET_NO_FP_IN_TOC for -mrelocatable.
17012 (MINIMAL_TOC_SECTION_ASM_OP): Remove redundant
17013 TARGET_RELOCATABLE test.
17014 (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
17015 (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
17016 * config/rs6000/linux64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
17017 (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
17018 (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
17019 * config/rs6000/freebsd64.h (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
17020 (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
17021 (ASM_PREFERRED_EH_DATA_FORMAT): Likewise.
17022 * config/rs6000/predicates.md (easy_fp_constant): Likewise.
17023 * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
17025 (rs6000_assemble_integer): Update TARGET_RELOCATABLE test.
17026 (rs6000_stack_info): Likewise.
17027 (rs6000_elf_asm_out_constructor): Likewise.
17028 (rs6000_elf_asm_out_destructor): Likewise.
17029 (rs6000_elf_declare_function_name): Likewise.
17030 * config/rs6000/rs6000.md (load_toc_aix_di): Likewise.
17031 * config/rs6000/rs6000.h (MASK_RELOCATABLE, MASK_MINIMAL_TOC):
17034 2016-05-05 Alan Modra <amodra@gmail.com>
17036 * config/rs6000/rs6000.c (rs6000_frame_related): Rewrite.
17038 2016-05-05 Alan Modra <amodra@gmail.com>
17040 * config/rs6000/rs6000.c (rs6000_savres_strategy): Don't use
17041 out-of-line gpr restore for one or two regs if that would add
17044 2016-05-04 Uros Bizjak <ubizjak@gmail.com>
17047 * config/i386/i386.md
17048 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_extend sf->df peephole2):
17049 Change to post-epilogue_completed late splitter. Use sse_reg_operand
17050 as operand 0 predicate.
17051 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float_truncate df->sf peephole2):
17053 (TARGET_SSE_PARTIAL_REG_DEPENDENCY float {si,di}->{sf,df} peephole2):
17054 Ditto. Emit the pattern using RTX.
17056 (TARGET_USE_VECTOR_FP_CONVERTS float_extend sf->df splitter):
17057 Use sse_reg_opreand as operand 0 predicate. Do not use true_regnum in
17058 the post-reload splitter. Use lowpart_subreg instead of gen_rtx_REG.
17059 (TARGET_USE_VECTOR_FP_CONVERTS float_truncate df->sf splitter):
17061 (TARGET_USE_VECTOR_CONVERTS float si->{sf,df} splitter): Use
17062 sse_reg_operand as operand 0 predicate.
17064 (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_extend sf->df peephole2):
17065 Use sse_reg_opreand as operand 0 predicate. Use lowpart_subreg
17066 instead of gen_rtx_REG.
17067 (TARGET_SPLIT_MEM_OPND_FOR_FP_CONVERTS float_truncate sf->df peephole2):
17070 2016-05-04 Segher Boessenkool <segher@kernel.crashing.org>
17072 * function.c (emit_use_return_register_into_block): Delete.
17073 (gen_return_pattern): Delete.
17074 (emit_return_into_block): Delete.
17075 (active_insn_between): Delete.
17076 (convert_jumps_to_returns): Delete.
17077 (emit_return_for_exit): Delete.
17078 (thread_prologue_and_epilogue_insns): Delete all code dealing with
17079 simple_return for shrink-wrapped blocks.
17080 * shrink-wrap.c (try_shrink_wrapping): Insert simple_return at the
17081 end of blocks that need one.
17082 (get_unconverted_simple_return): Delete.
17083 (convert_to_simple_return): Delete.
17084 * shrink-wrap.c (get_unconverted_simple_return): Delete declaration.
17085 (convert_to_simple_return): Ditto.
17087 2016-05-04 Segher Boessenkool <segher@kernel.crashing.org>
17089 * cfgcleanup.c (bb_is_just_return): New function.
17090 (try_optimize_cfg): Simplify jumps to return, branches to return,
17091 and branches around return.
17093 2016-05-04 Segher Boessenkool <segher@kernel.crashing.org>
17095 * cfgcleanup.c (try_simplify_condjump): Don't try to simplify a
17096 branch to a return.
17098 2016-05-04 Jakub Jelinek <jakub@redhat.com>
17102 * tree-core.h (enum operand_equal_flag): Add OEP_HASH_CHECK.
17103 * tree.c (inchash::add_expr): If !IS_EXPR_CODE_CLASS (tclass),
17104 assert flags & OEP_HASH_CHECK, instead of asserting it
17105 never happens. Handle TARGET_EXPR.
17106 * fold-const.c (operand_equal_p): For hash verification,
17107 or in OEP_HASH_CHECK into flags.
17109 2016-05-04 Eric Botcazou <ebotcazou@adacore.com>
17111 * tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head
17113 (compute_samebase_partition_bases): Fix typo.
17115 2016-05-04 Jakub Jelinek <jakub@redhat.com>
17117 * config/i386/sse.md (vec_interleave_highv8sf,
17118 vec_interleave_lowv8sf, vec_interleave_highv4df,
17119 vec_interleave_lowv4df): Remove constraints from expanders.
17121 * config/i386/sse.md (sse2_movq128): Use v constraint instead of x.
17123 2016-05-04 Jan Hubicka <hubicka@ucw.cz>
17125 * tree-inline.c (expand_call_inline): Fix path dealing with
17126 making lhs of call statement undefined.
17128 2016-05-04 Jan Hubicka <hubicka@ucw.cz>
17130 * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases):
17131 Check availability on NODE, too.
17132 * cgraph.h (symtab_node::call_for_symbol_and_aliases): Likewise.
17133 (cgraph_node::call_for_symbol_and_aliases): Likewise.
17134 (varpool_node::call_for_symbol_and_aliase): Likewise.
17135 * ipa-pure-const.c (add_new_function): Analyze all bodies.
17136 (propagate_pure_const): Propagate across interposable functions, too.
17137 (skip_function_for_local_pure_const): Do not skip interposable bodies
17139 (pass_local_pure_const::execute): Update.
17141 2016-05-04 Marek Polacek <polacek@redhat.com>
17143 * doc/invoke.texi: Document -Wdangling-else.
17145 2016-05-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
17147 * config.gcc: Error out when conflicting multilib is detected. Do not
17148 loop over multilibs since no combination is legal.
17150 2016-05-04 Alan Modra <amodra@gmail.com>
17152 * config/rs6000/rs6000.h (PIC_OFFSET_TABLE_REGNUM): Correct.
17153 * config/rs6000/sysv4.h (TARGET_TOC): Simplify.
17154 * config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
17157 2016-05-04 Matthew Fortune <matthew.fortune@imgtec.com>
17159 * config/mips/mips-cpus.def (p5600): Avoid IMADD by default.
17160 Clean up p5600 comments.
17162 2016-05-04 Richard Biener <rguenther@suse.de>
17164 * match.pd: Add BIT_FIELD_REF canonicalizations and vector
17165 constructor simplifications.
17166 * fold-const.c (fold_ternary_loc): Remove duplicate functionality here.
17168 2016-05-04 Oleg Endo <olegendo@gcc.gnu.org>
17170 * config/sh/predicates (post_inc_mem, pre_dec_mem): New predicates.
17171 * config/sh/sh-protos.h (sh_find_set_of_reg): Return null result if
17172 result.set_rtx is null instead of aborting.
17173 * config/sh/sh.h (USE_LOAD_POST_INCREMENT, USE_STORE_PRE_DECREMENT):
17175 (USE_LOAD_PRE_DECREMENT, USE_STORE_POST_INCREMENT): Enable for SH2A.
17176 * config/sh/sh.md (*extend<mode>si2_predec, *mov<mode>_load_predec,
17177 *mov<mode>_store_postinc): New patterns.
17179 2016-05-04 Marc Glisse <marc.glisse@inria.fr>
17181 * match.pd ((A | B) & (A | C)): Generalize to BIT_XOR_EXPR. Mark
17182 as commutative. Check both conversions are NOP.
17183 ((A & B) OP (C & B)): Remove.
17185 2016-05-04 Alan Modra <amodra@gmail.com>
17187 * combine.c (simplify_set): Correct WORD_REGISTER_OPERATIONS test.
17189 2016-05-04 Alan Modra <amodra@gmail.com>
17192 * config/rs6000/rs6000.c (rs6000_stack_info): Don't set cr_save_p
17193 when cr2,3,4 are all fixed regs.
17195 2016-05-04 Bernd Schmidt <bschmidt@redhat.com>
17197 PR rtl-optimization/57193
17198 * opts.c (default_options_table): Revert OPT_frename_registers change.
17199 * doc/invoke.texi (-frename-registers, -O2): Likewise.
17201 2016-05-03 Martin Sebor <msebor@redhat.com>
17204 * builtins.c (fold_builtin_FILE): New function.
17205 (fold_builtin_FUNCTION, fold_builtin_LINE): New functions.
17206 (fold_builtin_0): Call them.
17207 * gimplify.c (gimplify_call_expr): Remove the handling of
17208 BUILT_IN_FILE, BUILT_IN_FUNCTION, and BUILT_IN_LINE.
17211 * doc/extend.texi (Other Builtins): Update __builtin_FILE,
17212 __builtin_FUNCTION, and __builtin_LINE to reflect they yield
17216 * doc/extend.texi (Function Names as Strings): Update __func__,
17217 __FUNCTION__, __PRETTY_FUNCTION__ to reflect they evaluate to
17220 2016-05-03 Jakub Jelinek <jakub@redhat.com>
17221 Richard Biener <rguenther@suse.de>
17223 PR tree-optimization/70916
17224 * tree-if-conv.c: Include cfganal.h.
17225 (pass_if_conversion::execute): Call connect_infinite_loops_to_exit
17226 and remove_fake_exit_edges around the optimization pass.
17228 2016-05-03 Jan Hubicka <hubicka@ucw.cz>
17230 * cgraph.c (symbol_table::create_edge): Set inline_failed.
17231 (cgraph_edge::make_direct): Likewise.
17232 (cgraph_edge::dump_edge_flags): Dump call_stmt_cannot_inline_p.
17233 * cgraphclones.c (duplicate_thunk_for_node): Set inline_failed.
17234 * cif-code.def (CIF_LTO_MISMATCHED_DECLARATIONS): New code
17235 (CIF_THUNK): New code.
17236 * ipa-inline-analysis.c (initialize_inline_failed): Preserve
17237 CIF_FINAL_ERROR codes; do not deal with call_stmt_cannot_inline_p.
17238 (compute_inline_parameters): Set inline_failed for thunks.
17239 (inline_analyze_function): Cleanup.
17240 * ipa-inline.c (can_inline_edge_p): Do not deal with
17241 call_stmt_cannot_inline_p.
17242 (can_early_inline_edge_p): Likewise.
17243 (early_inliner): Initialize inline_failed.
17244 * lto-cgraph.c (lto_output_edge): Sanity check inline_failed.
17246 2016-05-03 Uros Bizjak <ubizjak@gmail.com>
17248 * config/i386/predicates.md (x87nonimm_ssenomem_operand): Rename
17249 from nonimm_ssenomem_operand.
17250 (nonimm_ssenomem_operand): New predicate.
17251 * config/i386/i386.md (extendsfdf2): Use nonimm_ssenomem_operand
17252 as operand 0 predicate.
17253 (*extendsfdf2): Merge from *extendsfdf2_mixed and *extendsfdf2_i387.
17254 Disable unsupported alternatives using "enabled" attribute.
17255 Use register_ssemem_operand as operand 0 predicate.
17256 (*fop_<mode>_1): Use x87nonimm_ssenomem_operand as operand 1 predicate.
17258 2016-05-03 Marek Polacek <polacek@redhat.com>
17261 * input.c (expansion_point_location): New function.
17262 * input.h (expansion_point_location): Declare.
17264 2016-05-03 Pierre-Marie de Rodat <derodat@adacore.com>
17266 * dwarf2out.c (resolve_args_picking_1): Replace the frame_offset
17267 occurence with frame_offset_ ones.
17269 2016-05-03 Alan Modra <amodra@gmail.com>
17271 PR rtl-optimization/70890
17272 * ira.c (combine_and_move_insns): When moving def_insn, remove
17273 equivs on use_insn.
17275 2016-05-03 Dominik Vogt <vogt@linux.vnet.ibm.com>
17277 * config/s390/s390.md ("*r<noxa>sbg_<mode>_sll")
17278 ("*r<noxa>sbg_<mode>_srl"): New define_insns.
17279 ("*r<noxa>sbg_<mode>_srl_bitmask"): Rename by adding "_bitmask".
17280 ("*r<noxa>sbg_<mode>_sll_bitmask"): Likewise.
17282 2016-05-03 Alan Modra <amodra@gmail.com>
17284 * config/rs6000/rs6000.c (rs6000_savres_strategy): Correct condition
17285 for SAVE_MULTIPLE/STORE_MULTIPLE.
17287 2016-05-03 Jakub Jelinek <jakub@redhat.com>
17289 * config/i386/i386.md (*truncdfsf_mixed, *truncdfsf_i387,
17290 *truncxfsf2_mixed, *truncxfdf2_mixed): Use v constraint instead of x.
17292 2016-05-03 Richard Biener <rguenther@suse.de>
17294 * gimplify.h (get_initialized_tmp_var): Add allow_ssa parameter
17296 (gimplify_arg): Likewise.
17297 * gimplify.c (gimplify_expr): Add overload with allow_ssa parameter,
17298 re-writing the result to a decl if required.
17299 (internal_get_tmp_var): Add allow_ssa parameter
17300 and override into_ssa with it.
17301 (get_formal_tmp_var): Adjust.
17302 (get_initialized_tmp_var): Add allow_ssa parameter.
17303 (gimplify_arg): Add allow_ssa parameter and avoid generating
17304 SSA names for the result false.
17305 (gimplify_call_expr): If the call may return twice do not
17306 gimplify parameters into SSA.
17307 (prepare_gimple_addressable): Do not allow an SSA name as temporary.
17308 (gimplify_modify_expr): Adjust assert. For noreturn calls
17309 with a SSA name LHS adjust its def.
17310 (gimplify_save_expr): Do not allow an SSA name as save-expr result.
17311 (gimplify_one_sizepos): Do not allow an SSA name as a sizepos.
17312 (gimplify_body): Init GIMPLE SSA data structures and gimplify into-SSA.
17313 (gimplify_scan_omp_clauses): Make sure OMP_CLAUSE_SIZE is not
17314 an SSA name. Likewise for OMP_CLAUSE_REDUCTION operands.
17315 (gimplify_omp_for): Likewise for OMP_CLAUSE_DECL. Likewise
17316 for OMP_FOR_COND, OMP_FOR_INCR and OMP_CLAUSE_LINEAR_STEP.
17317 (optimize_target_teams): Do not allow SSA names for clause operands.
17318 (gimplify_expr): Likewise for where we mark the result addressable.
17319 * passes.def (pass_init_datastructures): Remove.
17320 * tree-into-ssa.c (mark_def_sites): Ignore existing SSA names.
17321 (rewrite_stmt): Likewise.
17322 * tree-inline.c (initialize_cfun): Properly transfer SSA state.
17323 (replace_locals_op): Replace SSA names.
17324 (copy_gimple_seq_and_replace_locals): Init src_cfun.
17325 * gimple-low.c (lower_builtin_setjmp): Deal with SSA.
17326 * cgraph.c (release_function_body): Free CFG annotations only
17327 when we have a CFG. Simplify.
17328 * gimple-fold.c (gimplify_and_update_call_from_tree): Use
17329 force_gimple_operand instead of get_initialized_tmp_var.
17330 * tree-pass.h (make_pass_init_datastructures): Remove.
17331 * tree-ssa.c (execute_init_datastructures): Remove.
17332 (pass_data_init_datastructures): Likewise.
17333 (class pass_init_datastructures): Likewise.
17334 (make_pass_init_datastructures): Likewise.
17335 * omp-low.c (create_omp_child_function): Init SSA data structures.
17336 (grid_expand_target_grid_body): Likewise.
17337 * tree-cfg.c (move_block_to_fn): Double-check the DEF is an SSA
17338 name before adding it to names_to_release.
17339 (remove_bb): Always release SSA defs.
17340 * tree-ssa-ccp.c (get_default_value): Check SSA_NAME_VAR
17341 before dereferencing it.
17342 * cgraphunit.c (init_lowered_empty_function): Always
17343 int SSA data structures.
17344 * tree-ssanames.c (release_defs): Remove assert that we are in
17346 * trans-mem.c (diagnose_tm_1): Handle SSA name function.
17348 2016-05-03 Jakub Jelinek <jakub@redhat.com>
17349 Uros Bizjak <ubizjak@gmail.com>
17351 PR rtl-optimization/70467
17352 * config/i386/predicates.md (x86_64_hilo_int_operand,
17353 x86_64_hilo_general_operand): New predicates.
17354 * config/i386/constraints.md (Wd): New constraint.
17355 * config/i386/i386.md (mode attr di): Use Wd instead of e.
17356 (general_hilo_operand): New mode attr.
17357 (add<mode>3, sub<mode>3): Use <general_hilo_operand>
17358 instead of <general_operand>.
17359 (*add<dwi>3_doubleword, *sub<dwi>3_doubleword): Use
17360 x86_64_hilo_general_operand instead of <general_operand>.
17362 2016-05-03 Jakub Jelinek <jakub@redhat.com>
17364 PR tree-optimization/70916
17365 * tree-if-conv.c (constant_or_ssa_name): Removed.
17366 (fold_build_cond_expr): Use is_gimple_val instead of
17367 constant_or_ssa_name.
17369 PR tree-optimization/70916
17370 * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): Give up
17371 if COND_EXPR rhs1 is neither SSA_NAME nor COMPARISON_CLASS_P.
17374 * tree-ssa-ccp.c: Include stor-layout.h and optabs-query.h.
17375 (optimize_atomic_bit_test_and): New function.
17376 (pass_fold_builtins::execute): Use it.
17377 * optabs.def (atomic_bit_test_and_set_optab,
17378 atomic_bit_test_and_complement_optab,
17379 atomic_bit_test_and_reset_optab): New optabs.
17380 * internal-fn.def (ATOMIC_BIT_TEST_AND_SET,
17381 ATOMIC_BIT_TEST_AND_COMPLEMENT, ATOMIC_BIT_TEST_AND_RESET): New ifns.
17382 * builtins.h (expand_ifn_atomic_bit_test_and): New prototype.
17383 * builtins.c (expand_ifn_atomic_bit_test_and): New function.
17384 * internal-fn.c (expand_ATOMIC_BIT_TEST_AND_SET,
17385 expand_ATOMIC_BIT_TEST_AND_COMPLEMENT,
17386 expand_ATOMIC_BIT_TEST_AND_RESET): New functions.
17387 * doc/md.texi (atomic_bit_test_and_set@var{mode},
17388 atomic_bit_test_and_complement@var{mode},
17389 atomic_bit_test_and_reset@var{mode}): Document.
17390 * config/i386/sync.md (atomic_bit_test_and_set<mode>,
17391 atomic_bit_test_and_complement<mode>,
17392 atomic_bit_test_and_reset<mode>): New expanders.
17393 (atomic_bit_test_and_set<mode>_1,
17394 atomic_bit_test_and_complement<mode>_1,
17395 atomic_bit_test_and_reset<mode>_1): New insns.
17397 2016-05-03 Richard Sandiford <richard.sandiford@arm.com>
17399 PR rtl-optimization/70687
17400 * combine.c (change_zero_ext): Check for scalar modes. Use wide_int
17401 instead of unsigned HOST_WIDE_INT.
17403 2016-05-03 Bernd Schmidt <bschmidt@redhat.com>
17405 PR rtl-optimization/44281
17406 * hard-reg-set.h (struct target_hard_regs): New field
17407 x_fixed_nonglobal_reg_set.
17408 (fixed_nonglobal_reg_set): New macro.
17409 * reginfo.c (init_reg_sets_1): Initialize it.
17410 * ira.c (setup_alloc_regs): Use fixed_nonglobal_reg_set instead
17412 * df-scan.c (df_insn_refs_collect): Asms may reference global regs.
17414 2016-05-03 Bin Cheng <bin.cheng@arm.com>
17416 PR tree-optimization/56541
17417 * doc/invoke.texi (@item max-tree-if-conversion-phi-args): New item.
17418 * params.def (PARAM_MAX_TREE_IF_CONVERSION_PHI_ARGS): new param.
17419 * tree-if-conv.c (MAX_PHI_ARG_NUM): new macro.
17420 (any_complicated_phi): new static variable.
17421 (aggressive_if_conv): delete.
17422 (if_convertible_phi_p): support phis with more than two arguments.
17423 (if_convertible_bb_p): remvoe check on aggressive_if_conv and
17424 critical pred edges.
17425 (ifcvt_split_critical_edges): support phis with more than two
17426 arguments by checking new parameter. only split critical edges
17428 (tree_if_conversion): handle simd pragma marked loop using new
17429 local variable aggressive_if_conv. check any_complicated_phi.
17431 2016-05-03 Bin Cheng <bin.cheng@arm.com>
17433 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Check depends_on
17436 2016-05-03 Bin Cheng <bin.cheng@arm.com>
17438 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Don't clobber
17441 2016-05-03 Oleg Endo <olegendo@gcc.gnu.org>
17443 * config/sh/sh.md (udivsi3, divsi3, mulsi3): Simplify.
17444 (mulhisi3, umulhisi3, (smulsi3_highpart, umulsi3_highpart): Convert to
17445 define_insn_and_split.
17446 (mulsi3_i): New define_insn_and_split.
17447 (mulsi3_call): Convert to define_insn.
17448 (mulsidi3, mulsidi3_compact, umulsidi3, umulsidi3_compact):
17449 Remove constraints.
17451 2016-05-02 Michael Meissner <meissner@linux.vnet.ibm.com>
17453 * machmode.h (mode_complex): Add support to give the complex mode
17455 (GET_MODE_COMPLEX_MODE): Likewise.
17456 * stor-layout.c (layout_type): For COMPLEX_TYPE, use the mode
17457 stored by build_complex_type and gfc_build_complex_type instead of
17458 trying to figure out the appropriate mode based on the size. Raise
17459 an assertion error, if the type was not set.
17460 * genmodes.c (struct mode_data): Add field for the complex type of
17462 (blank_mode): Likewise.
17463 (make_complex_modes): Remember the complex mode created in the
17465 (emit_mode_complex): Write out the mode_complex array to map a
17466 type mode to the complex version.
17467 (emit_insn_modes_c): Likewise.
17468 * tree.c (build_complex_type): Set the complex type to use before
17469 calling layout_type.
17470 * config/rs6000/rs6000.c (rs6000_hard_regno_nregs_internal): Add
17471 support for __float128 complex datatypes.
17472 (rs6000_hard_regno_mode_ok): Likewise.
17473 (rs6000_setup_reg_addr_masks): Likewise.
17474 (rs6000_complex_function_value): Likewise.
17475 * config/rs6000/rs6000.h (FLOAT128_IEEE_P): Likewise.
17476 __float128 and __ibm128 complex.
17477 (FLOAT128_IBM_P): Likewise.
17478 (ALTIVEC_ARG_MAX_RETURN): Likewise.
17479 * doc/extend.texi (Additional Floating Types): Document that
17480 -mfloat128 must be used to enable __float128. Document complex
17481 __float128 and __ibm128 support.
17483 2016-05-02 Jakub Jelinek <jakub@redhat.com>
17486 * gimple.c (gimple_builtin_call_types_compatible_p): Allow
17487 char/short arguments promoted to int because of promote_prototypes.
17489 2016-05-02 Uros Bizjak <ubizjak@gmail.com>
17491 * config/i386/predicates.md (register_ssemem_operand): New predicate.
17492 * config/i386/i386.md (*cmpi<FPCMP:unord><MODEF:mode>): Merge from
17493 *cmpi<FPCMP:unord><MODEF:mode>_mixed and
17494 *cmpi<FPCMP:unord><X87MODEF:mode>_i387. Disable unsupported
17495 alternatives using "enabled" attribute. Use register_ssemem_operand
17496 as operand 1 predicate.
17497 (*cmpi<unord>xf_i387): Split XFmode pattern from
17498 *cmpi<FPCMP:unord><X87MODEF:mode>_i387.
17499 (*absneg<mode>2): Merge from *absneg<mode>2_mixed and
17500 *absneg<mode>2_i387. Disable unsupported alternatives using
17501 "enabled" attribute.
17502 (*absnegxf2_i387): Split XFmode pattern from *absneg<mode>2_i387.
17504 2016-05-02 Nathan Sidwell <nathan@codesourcery.com>
17506 * omp-low.c (lower_oacc_head_tail): Assert there is at least one
17508 (oacc_loop_process): Check mask for loop termination.
17510 2016-05-02 Jan Hubicka <hubicka@ucw.cz>
17512 * cif-code.def (CIF_THUNK): Add.
17513 * ipa-inline-analsysis.c (evaluate_conditions_for_known_args): Revert
17516 2016-05-02 Jan Hubicka <hubicka@ucw.cz>
17518 * ipa-inline-analysis.c (reset_inline_summary): Clear fp_expressions
17519 (dump_inline_summary): Dump it.
17520 (fp_expression_p): New predicate.
17521 (estimate_function_body_sizes): Use it.
17522 (inline_merge_summary): Merge fp_expressions.
17523 (inline_read_section): Read fp_expressions.
17524 (inline_write_summary): Write fp_expressions.
17525 * ipa-inline.c (can_inline_edge_p): Permit inlining across fp math
17526 codegen boundary if either caller or callee is !fp_expressions.
17527 * ipa-inline.h (inline_summary): Add fp_expressions.
17528 * ipa-inline-transform.c (inline_call): When inlining !fp_expressions
17529 to fp_expressions be sure the fp generation flags are updated.
17531 2016-05-02 Jakub Jelinek <jakub@redhat.com>
17533 PR rtl-optimization/70467
17534 * cse.c (cse_insn): Handle no-op MEM moves after folding.
17536 PR rtl-optimization/70467
17537 * ipa-pure-const.c (check_call): Handle internal calls even in
17538 ipa mode like in local mode.
17540 2016-05-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
17542 * doc/install.texi: Document supported in-tree gmp/mpfr/mpc versions.
17544 2016-05-02 Marc Glisse <marc.glisse@inria.fr>
17546 * match.pd (X u< X, X u> X): New transformations.
17548 2016-05-02 Marc Glisse <marc.glisse@inria.fr>
17550 * flag-types.h (enum warn_strict_overflow_code): Move ...
17551 * coretypes.h: ... here.
17552 * fold-const.h (fold_overflow_warning): Declare.
17553 * fold-const.c (fold_overflow_warning): Make non-static.
17554 (fold_comparison): Move the transformation of X +- C1 CMP C2
17555 into X CMP C2 -+ C1 ...
17556 * match.pd: ... here.
17557 * gimple-fold.c (fold_stmt_1): Protect with
17558 fold_defer_overflow_warnings.
17560 2016-05-02 Nathan Sidwell <nathan@codesourcery.com>
17562 * omp-low.c (struct oacc_loop): Add 'inner' field.
17563 (new_oacc_loop_raw): Initialize it to zero.
17564 (oacc_loop_fixed_partitions): Initialize it.
17565 (oacc_loop_auto_partitions): Partition outermost loop to outermost
17566 available partitioning.
17568 2016-05-02 Claudiu Zissulescu <claziss@synopsys.com>
17570 * config/arc/arc.md (mulsidi3): Change operand 0 predicate to
17572 (umulsidi3): Likewise.
17573 (indirect_jump): Fix jump instruction assembly patterns.
17575 2016-05-02 Thomas Schwinge <thomas@codesourcery.com>
17578 * config/nvptx/nvptx.c (nvptx_libcall_value): Handle NULL cfun.
17579 (nvptx_function_value): Assert non-NULL cfun.
17581 2016-05-02 Eric Botcazou <ebotcazou@adacore.com>
17583 PR rtl-optimization/70886
17584 * sched-deps.c (estimate_dep_weak): Canonicalize cselib values.
17586 * cselib.h (rtx_equal_for_cselib_1): Declare.
17587 (rtx_equal_for_cselib_p: New inline function.
17588 * cselib.c (rtx_equal_for_cselib_p): Delete.
17589 (rtx_equal_for_cselib_1): Make public.
17591 2016-05-02 Uros Bizjak <ubizjak@gmail.com>
17593 * config/i386/predicates.md (nonimm_ssenomem_operand): New predicate.
17594 (register_mixssei387nonimm_operand): Remove predicate.
17595 * config/i386/i386.md (*fop_<mode>_comm): Merge from
17596 *fop_<mode>_comm_mixed and *fop_<mode>_comm_i387. Disable unsupported
17597 alternatives using "enabled" attribute. Also check X87_ENABLE_ARITH
17598 for TARGET_MIX_SSE_I387 alternatives.
17599 (*fop_<mode>_1): Merge from *fop_<mode>_1_mixed and *fop_<mode>_1_i387.
17600 Disable unsupported alternatives using "enabled" attribute. Use
17601 nonimm_ssenomem_operand as operand 1 predicate. Also check
17602 X87_ENABLE_ARITH for TARGET_MIX_SSE_I387 alternatives.
17604 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
17606 * tree.c (cst_and_fits_in_hwi): Simplify.
17608 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
17610 * tree.h (wi::to_wide): New function.
17611 * expr.c (expand_expr_real_1): Use wi::to_wide.
17612 * fold-const.c (int_const_binop_1): Likewise.
17613 (extract_muldiv_1): Likewise.
17615 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
17617 * wide-int.h: Update offset_int and widest_int documentation.
17618 (WI_SIGNED_SHIFT_RESULT): New macro.
17619 (wi::binary_shift): Define signed_shift_result_type for
17620 shifts on offset_int- and widest_int-like types.
17621 (generic_wide_int): Support <<= and >>= if << and >> are supported.
17622 * tree.h (int_bit_position): Use shift operators instead of wi::
17624 * alias.c (adjust_offset_for_component_ref): Likewise.
17625 * expr.c (get_inner_reference): Likewise.
17626 * fold-const.c (fold_comparison): Likewise.
17627 * gimple-fold.c (fold_nonarray_ctor_reference): Likewise.
17628 * gimple-ssa-strength-reduction.c (restructure_reference): Likewise.
17629 * tree-dfa.c (get_ref_base_and_extent): Likewise.
17630 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Likewise.
17631 (stmt_kills_ref_p): Likewise.
17632 * tree-ssa-ccp.c (bit_value_binop_1): Likewise.
17633 * tree-ssa-math-opts.c (find_bswap_or_nop_load): Likewise.
17634 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
17635 (ao_ref_init_from_vn_reference): Likewise.
17637 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
17639 * wide-int.h: Update offset_int and widest_int documentation.
17640 (WI_SIGNED_BINARY_PREDICATE_RESULT): New macro.
17641 (wi::binary_traits): Allow ordered comparisons between offset_int and
17642 offset_int, between widest_int and widest_int, and between either
17643 of these types and basic C types.
17644 (operator <, <=, >, >=): Define for the same combinations.
17645 * tree.h (tree_int_cst_lt): Use comparison operators instead
17646 of wi:: comparisons.
17647 (tree_int_cst_le): Likewise.
17648 * gimple-fold.c (fold_array_ctor_reference): Likewise.
17649 (fold_nonarray_ctor_reference): Likewise.
17650 * gimple-ssa-strength-reduction.c (record_increment): Likewise.
17651 * tree-affine.c (aff_comb_cannot_overlap_p): Likewise.
17652 * tree-parloops.c (try_transform_to_exit_first_loop_alt): Likewise.
17653 * tree-sra.c (completely_scalarize): Likewise.
17654 * tree-ssa-alias.c (stmt_kills_ref_p): Likewise.
17655 * tree-ssa-reassoc.c (extract_bit_test_mask): Likewise.
17656 * tree-vrp.c (extract_range_from_binary_expr_1): Likewise.
17657 (check_for_binary_op_overflow): Likewise.
17658 (search_for_addr_array): Likewise.
17659 * ubsan.c (ubsan_expand_objsize_ifn): Likewise.
17661 2016-05-02 Claudiu Zissulescu <claziss@synopsys.com>
17663 * config/arc/arc.c (arc_preferred_simd_mode): Remove enum keyword.
17664 (arc_save_restore): Likewise.
17665 (arc_dwarf_register_span): Likewise.
17666 (arc_output_pic_addr_const): Initialize suffix variable.
17668 2016-05-02 Martin Liska <mliska@suse.cz>
17670 * symbol-summary.h (function_summary::function_summary):
17671 Remove checking assert for all cgraph nodes.
17672 (function_summary::get): Check summary_uid.
17673 (symtab_insertion): Check summary_uid.
17675 2016-05-02 Claudiu Zissulescu <claziss@synopsys.com>
17677 * config/arc/arc-protos.h (compact_memory_operand_p): Declare.
17678 * config/arc/arc.c (arc_output_commutative_cond_exec): Consider
17679 bmaskn instruction.
17680 (arc_dwarf_register_span): Remove enum keyword.
17681 (compact_memory_operand_p): New function.
17682 * config/arc/arc.h (reg_class): Add code density register classes.
17683 (REG_CLASS_NAMES): Likewise.
17684 (REG_CLASS_CONTENTS): Likewise.
17685 * config/arc/arc.md (*movqi_insn): Add code density instructions.
17686 (*movhi_insn, *movsi_insn, *movsf_insn): Likewise.
17687 (*extendhisi2_i, andsi3_i, cmpsi_cc_insn_mixed): Likewise.
17688 (*cmpsi_cc_c_insn, *movsi_ne): Likewise.
17689 * config/arc/constraints.md (C2p, Uts, Cm1, Cm3, Ucd): New
17691 (h, Rcd, Rsd, Rzd): New register constraints.
17692 (T): Use compact_memory_operand_p function.
17693 * config/arc/predicates.md (compact_load_memory_operand): Remove.
17695 2016-05-02 Oleg Endo <olegendo@gcc.gnu.org>
17697 * config/sh/sh.md (*negnegt, *movtt): Remove.
17699 2016-05-02 Marek Polacek <polacek@redhat.com>
17700 Tom de Vries <tom@codesourcery.com>
17702 PR tree-optimization/70700
17703 * tree-ssa-structalias.c (dump_pred_graph): Fix getting varinfo for ids
17704 bigger than FIRST_REF_NODE.
17706 2016-05-02 Oleg Endo <olegendo@gcc.gnu.org>
17709 * config/sh/sh.c (sh_option_override): Remove TARGET_CBRANCHDI4,
17711 (prepare_cbranch_operands): Don't use scratch register. Assume that
17712 function is used when pseudos can be created.
17713 (expand_cbranchdi4): Likewise. Remove unused TARGET_CMPEQDI_T paths.
17714 * config/sh/sh.md (cbranchsi4): Allow only when pseudos can be created.
17715 (cbranchdi4, cbranchdi4_i): Simplify to single cbranchdi4
17716 define_expand. Allow it only when pseudos can be created.
17717 * config/sh/sh.opt (mcbranchdi, mcmpeqdi): Delete.
17719 2016-05-01 Uros Bizjak <ubizjak@gmail.com>
17721 * config/i386/constraints.md (BC): Only allow -1 operands.
17722 * config/i386/sse.md (mov<mode>_internal): Add (v,C) alternative.
17723 Add "enabled" attribute. Update XI mode attribute calculation.
17724 * config/i386/i386.md (*movxi_internal_avx512f): Add (v,C) alternative.
17725 (*movoi_internal_avx): Update XI mode attribute calculation.
17726 (*movti_internal): Ditto.
17728 2016-05-01 Oleg Endo <olegendo@gcc.gnu.org>
17730 * config/sh/sh.md (push, pop, ic_invalidate_line, cstoresi4, cstoredi4,
17731 cstoresf4, cstoredf4, fix_truncsfsi2): Remove constraints.
17733 2016-05-01 Eric Botcazou <ebotcazou@adacore.com>
17735 * config/rs6000/rs6000.c (altivec_expand_lv_builtin): Do not use switch
17736 statement on instruction code. Remove trailing spaces.
17737 (altivec_expand_stv_builtin): Likewise.
17739 2016-05-01 Oleg Endo <olegendo@gcc.gnu.org>
17741 * config/sh/sh.h (TARGET_SH4): Remove and use default implementation.
17742 (TARGET_FPU_DOUBLE): Simplify.
17743 (BASE_ARG_REG, DOUBLE_TYPE_SIZE, OPTIMIZE_MODE_SWITCHING): Replace
17744 'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions with 'TARGET_FPU_DOUBLE'.
17745 * config/sh/sh.c: Replace 'TARGET_SH4 || TARGET_SH2A_DOUBLE' conditions
17746 with 'TARGET_FPU_DOUBLE'.
17747 * config/sh/sh.md: Likewise.
17749 2016-05-01 Yoshinori Sato <ysato@users.sourceforge.jp>
17751 * config/sh/linux.h (SH_DIV_STRATEGY_DEFAULT,
17752 SH_DIV_STR_FOR_SIZE): Remove.
17753 * config/sh/netbsd-elf.h (SH_DIV_STRATEGY_DEFAULT,
17754 SH_DIV_STR_FOR_SIZE): Remove.
17756 2016-05-01 Oleg Endo <olegendo@gcc.gnu.org>
17758 * config/sh/predicates.md (any_register_operand, zero_extend_operand,
17759 logical_reg_operand): Delete.
17760 (arith_operand, arith_reg_dest, arith_or_int_operand, cmpsi_operand,
17761 arith_reg_or_0_operand, arith_reg_or_0_or_1_operand, logical_operand,
17762 logical_and_operand, movsrc_no_disp_mem_operand): Rewrite using
17763 match_operand and match_test.
17764 (sh_const_vec, sh_1el_vec): Remove redundant checks. Declare local
17765 variables on their first use. Return bool values.
17766 * config/sh/sh.h (LOAD_EXTEND_OP): Update comment.
17767 * config/sh/sh.md (andsi3, iorsi3): Use arith_reg_dest for result and
17768 arith_reg_operand for input operand. Remove empty constraints.
17770 (*xorsi3_compact): Rename to xorsi3.
17771 (zero_extend<mode>si2): Use arith_reg_operand for input operand.
17772 (*zero_extend<mode>si2_disp_mem): Update comment.
17775 2016-04-30 Oleg Endo <olegendo@gcc.gnu.org>
17777 * config/sh/t-sh: Remove SH5 support.
17778 * config.gcc: Likewise.
17779 * configure: Likewise.
17781 2016-04-30 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
17783 * config/darwin.h (LINK_COMMAND_SPEC_A): Handle -fcilkplus.
17785 2016-04-30 Oleg Endo <olegendo@gcc.gnu.org>
17787 * config/sh/sh.c (register_sh_passes, sh_option_override,
17788 sh_print_operand, prepare_move_operands,
17789 sh_can_follow_jump): Remove TARGET_SH1 checks.
17790 * config/sh/sh.h (TARGET_VARARGS_PRETEND_ARGS, VALID_REGISTER_P,
17791 PROMOTE_MODE): Likewise.
17792 * config/sh/sh.md (adddi3, addsi3, subdi3, subsi3, andsi3,
17795 2016-04-30 Alan Modra <amodra@gmail.com>
17797 * config/rs6000/rs6000.c (rs6000_savres_strategy): Force inline
17798 restoring when fixed_reg_p, but allow out-of-line or stmw save.
17799 Check for user regs later to avoid unnecessary looping over regs.
17800 Merge user reg check with non-saved reg check. Don't force
17801 inline VR restore when static chain used.
17802 (rs6000_frame_related): Omit eh_frame info for user regs when
17804 (fixed_regs_p): Delete.
17806 2016-04-30 Alan Modra <amodra@gmail.com>
17808 * config/rs6000/rs6000.c (SAVRES_MULTIPLE): Replace with..
17809 (SAVE_STRATEGY, REST_STRATEGY): ..this. Renumber and sort enum.
17812 2016-04-30 Alan Modra <amodra@gmail.com>
17815 * config/rs6000/rs6000.c (fixed_reg_p): New function.
17816 (fixed_regs_p): Rename from global_regs_p. Call fixed_reg_p.
17819 2016-04-30 Alan Modra <amodra@gmail.com>
17821 * config/rs6000/rs6000.c (rs6000_conditional_register_usage):
17822 Remove redundant PIC_OFFSET_TABLE_REGNUM test. Replace with
17823 flag_pic test for Darwin.
17825 2016-04-30 Alan Modra <amodra@gmail.com>
17827 * regs.h (struct reg_info_t): Delete freq_calls_crossed and
17828 throw_calls_crossed.
17829 (REG_FREQ_CALLS_CROSSED): Delete.
17830 (REG_N_THROWING_CALLS_CROSSED): Delete.
17831 * regstat.c (regstat_bb_compute_ri): Don't calculate
17832 REG_FREQ_CALLS_CROSSED and REG_N_THROWING_CALLS_CROSSED.
17833 (dump_reg_info): Don't print call cross frequency.
17834 * ira.c (combine_and_move_insns): Don't set REG_FREQ_CALLS_CROSSED
17835 and REG_N_THROWING_CALLS_CROSSED.
17837 2016-04-30 Alan Modra <amodra@gmail.com>
17839 * regs.h (struct reg_info_t): Delete live_length.
17840 (REG_LIVE_LENGTH): Delete macro.
17841 * regstat.c (regstat_bb_compute_ri): Delete artificial_uses,
17842 local_live, local_processed and local_live_last_luid params.
17843 Replace bb_index param with bb. Don't set REG_LIVE_LENGTH.
17845 (regstat_compute_ri): Adjust for above. Don't set
17847 (dump_reg_info): Don't print live length.
17848 * ira.c (update_equiv_regs): Replace test of REG_LIVE_LENGTH
17849 with test of setjmp_crosses. Don't set REG_LIVE_LENGTH.
17850 Localize loop_depth var.
17852 2016-04-30 Alan Modra <amodra@gmail.com>
17854 * ira.c (enum valid_equiv): New.
17855 (validate_equiv_mem): Return enum.
17856 (update_equiv_mem): Create replacement in more cases.
17857 (add_store_equivs): Update validate_equiv_mem call.
17859 2016-04-30 Alan Modra <amodra@gmail.com>
17861 * ira.c (combine_and_move_insns): Rather than scanning insns,
17862 use DF infrastucture to find use and def insns.
17864 2016-04-30 Alan Modra <amodra@gmail.com>
17866 ira.c (combine_and_move_insns): Move invariant conditions..
17867 (ira.c): ..to here. Call combine_and_move_insns before
17868 add_store_equivs. Call grow_reg_equivs later. Allocate
17869 req_equiv later using max_reg_num() rather than global max_regno.
17870 (contains_replace_regs): Delete.
17871 (add_store_equivs): Remove contains_replace_regs test.
17873 2016-04-30 Alan Modra <amodra@gmail.com>
17875 * ira.c (struct equiv_mem_data): New.
17876 (equiv_mem, equiv_mem_modified): Delete static vars.
17877 (validate_equiv_mem_from_store): Use "data" param to communicate..
17878 (validate_equiv_mem): ..from here.
17880 2016-04-30 Alan Modra <amodra@gmail.com>
17882 * ira.c (add_store_equivs, combine_and_move_insns): New functions,
17884 (update_reg_equivs): ..here. Move allocation and freeing of
17885 reg_equiv, and calls to grow_reg_equivs, init_alias_analysis,
17886 end_alias_analysis to..
17889 2016-04-30 Alan Modra <amodra@gmail.com>
17891 * ira.c (pdx_subregs): Delete.
17892 (struct equivalence): Add pdx_subregs field.
17893 (set_paradoxical_subreg): Remove pdx_subregs param. Update
17894 pdx_subregs access.
17895 (update_equiv_regs): Don't create or free pdx_subregs. Update
17896 pdx_subregs access.
17898 2016-04-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
17900 * config/rs6000/altivec.h: Change definitions of vec_xl and
17902 * config/rs6000/rs6000-builtin.def (LD_ELEMREV_V2DF): New.
17903 (LD_ELEMREV_V2DI): New.
17904 (LD_ELEMREV_V4SF): New.
17905 (LD_ELEMREV_V4SI): New.
17906 (LD_ELEMREV_V8HI): New.
17907 (LD_ELEMREV_V16QI): New.
17908 (ST_ELEMREV_V2DF): New.
17909 (ST_ELEMREV_V2DI): New.
17910 (ST_ELEMREV_V4SF): New.
17911 (ST_ELEMREV_V4SI): New.
17912 (ST_ELEMREV_V8HI): New.
17913 (ST_ELEMREV_V16QI): New.
17916 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
17917 descriptions for VSX_BUILTIN_VEC_XL and VSX_BUILTIN_VEC_XST.
17918 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Map from
17919 TARGET_P9_VECTOR to RS6000_BTM_P9_VECTOR.
17920 (altivec_expand_builtin): Add handling for
17921 VSX_BUILTIN_ST_ELEMREV_<MODE> and VSX_BUILTIN_LD_ELEMREV_<MODE>.
17922 (rs6000_invalid_builtin): Add error-checking for
17923 RS6000_BTM_P9_VECTOR.
17924 (altivec_init_builtins): Define builtins used to implement vec_xl
17926 (rs6000_builtin_mask_names): Define power9-vector.
17927 * config/rs6000/rs6000.h (MASK_P9_VECTOR): Define.
17928 (RS6000_BTM_P9_VECTOR): Define.
17929 (RS6000_BTM_COMMON): Include RS6000_BTM_P9_VECTOR.
17930 * config/rs6000/vsx.md (vsx_ld_elemrev_v2di): New define_insn.
17931 (vsx_ld_elemrev_v2df): Likewise.
17932 (vsx_ld_elemrev_v4sf): Likewise.
17933 (vsx_ld_elemrev_v4si): Likewise.
17934 (vsx_ld_elemrev_v8hi): Likewise.
17935 (vsx_ld_elemrev_v16qi): Likewise.
17936 (vsx_st_elemrev_v2df): Likewise.
17937 (vsx_st_elemrev_v2di): Likewise.
17938 (vsx_st_elemrev_v4sf): Likewise.
17939 (vsx_st_elemrev_v4si): Likewise.
17940 (vsx_st_elemrev_v8hi): Likewise.
17941 (vsx_st_elemrev_v16qi): Likewise.
17942 * doc/extend.texi: Add prototypes for vec_xl and vec_xst. Correct
17945 2016-04-29 Patrick Palka <ppalka@gcc.gnu.org>
17947 * tree-ssa-threadedge.c (simplify_control_stmt_condition): Split
17949 (simplify_control_stmt_condition_1): ... here. Recurse into
17950 BIT_AND_EXPRs and BIT_IOR_EXPRs.
17952 2016-04-29 David Edelsohn <dje.gcc@gmail.com>
17955 * config/rs6000/rs6000.md (EXTQI): Don't allow extension to HImode.
17956 (zero_extendqi<mode>2_dot): Revert earlier conversion from
17957 define_insn_and_split to define_insn.
17958 (zero_extendqi<mode>2_dot2): Same.
17959 (extendqi<mode>2_dot): Same.
17960 (extendqi<mode>2_dot2): Same.
17962 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
17964 * config/i386/i386.md (unspec): Add UNSPEC_PROBE_STACK.
17965 (probe_stack): New expander.
17966 (probe_stack_<mode>): New insn pattern.
17968 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
17970 * config/i386/i386.md
17971 (operations with memory inputs setting flags peephole2):
17972 Remove uneeded REG_P checks. Cleanup pattern generation.
17974 2016-04-29 Ilya Enkovich <ilya.enkovich@intel.com>
17976 * tree-vect-loop.c (vect_transform_loop): Fix
17977 nb_iterations_upper_bound computation for vectorized loop.
17979 2016-04-29 Marek Polacek <polacek@redhat.com>
17980 Jakub Jelinek <jakub@redhat.com>
17983 * fold-const.c (tree_single_nonzero_warnv_p): For TARGET_EXPR, use
17984 TARGET_EXPR_SLOT as a base.
17986 2016-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
17988 * config/arc/arc.md (*loadqi_update): Replace use of 'rI' constraint
17989 with 'rCm2' constraints to limit possible immediate size.
17990 (*load_zeroextendqisi_update): Likewise.
17991 (*load_signextendqisi_update): Likewise.
17992 (*loadhi_update): Likewise.
17993 (*load_zeroextendhisi_update): Likewise.
17994 (*load_signextendhisi_update): Likewise.
17995 (*loadsi_update): Likewise.
17996 (*loadsf_update): Likewise.
17998 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
18000 * config/i386/predicates.md (constm1_operand): Fix comparison.
18002 2016-04-29 Claudiu Zissulescu <claziss@synopsys.com>
18004 * testsuite/gcc.target/arc/ieee_eq.c: New test.
18006 2016-04-29 Oleg Endo <olegendo@gcc.gnu.org>
18008 * common/config/sh/sh-common.c (sh_option_optimization_table): Remove
18009 remaining SH5 related settings.
18010 * config/sh/sh-protos.h (shmedia_cleanup_truncate,
18011 shmedia_prepare_call_address): Delete.
18012 * config/sh/sh.c (sh_print_operand, output_stack_adjust,
18013 DWARF_CIE_DATA_ALIGNMENT, LOCAL_ALIGNMENT): Update comments.
18014 * config/sh/sh.h (SUBTARGET_ASM_RELAX_SPEC,
18015 UNSUPPORTED_SH2A): Remove m5 checks.
18016 (sh_divide_strategy_e): Remove SH5 division strategies.
18017 (TARGET_PTRMEMFUNC_VBIT_LOCATION): Remove and use default.
18018 * config/sh/sh.md (divsf3): Reinstate define_expand pattern.
18020 2016-04-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
18022 * config/s390/s390.c (s390_rtx_costs): Update documentation.
18024 2016-04-29 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
18026 * config/s390/2964.md ("z13_unit_fxu", "z13_0"): Remove lder.
18027 * config/s390/s390.md ("movsi_larl", "*movsi_esa", "mov<mode>"):
18028 Change lder to ldr.
18029 * config/s390/vector.md ("mov<mode>"): Likewise.
18031 2016-04-29 Ulrich Weigand <uweigand@de.ibm.com>
18033 * config/s390/constraints.md ("U", "W"): Invoke
18034 s390_mem_constraint with "ZR" and "ZT".
18035 * config/s390/s390.c (s390_check_qrst_address): Reject invalid
18036 addresses when using LRA. Accept also short displacements for S
18037 and T constraints. Do not check for long displacement target for
18038 S and T constraints.
18039 (s390_mem_constraint): Remove handling of U and W constraints.
18040 * config/s390/s390.md (various patterns): Remove the short
18041 displacement constraints (Q and R) if a long displacement
18042 constraint is present. Add longdisp as required CPU capability.
18043 * config/s390/vector.md: Likewise.
18044 * config/s390/vx-builtins.md: Likewise.
18046 2016-04-29 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
18049 * reload1.c (reload): Call finish_spills before
18050 restarting reload loop. Skip select_reload_regs
18051 if update_eliminables_and_spill returns true.
18053 2016-04-29 Claudiu Zissulescu <claziss@synopsys.com>
18055 * config/arc/arc.h (UNSIGNED_INT12, UNSIGNED_INT16): Define.
18056 * config/arc/arc.md (umulhisi3): Use arc_short_operand predicate.
18057 (umulhisi3_imm): Update predicates and constraint letters.
18058 (umulhisi3_reg): Declare instruction as commutative.
18059 * config/arc/constraints.md (J12, J16): New constraints.
18060 * config/arc/predicates.md (short_unsigned_const_operand): New
18062 (arc_short_operand): Likewise.
18063 * testsuite/gcc.target/arc/umulsihi3_z.c: New file.
18065 2016-04-29 Richard Biener <rguenther@suse.de>
18067 PR tree-optimization/13962
18068 PR tree-optimization/65686
18069 * tree-ssa-alias.h (ptrs_compare_unequal): Declare.
18070 * tree-ssa-alias.c (ptrs_compare_unequal): New function
18071 using PTA to compare pointers.
18072 * match.pd: Add pattern for pointer equality compare simplification
18073 using ptrs_compare_unequal.
18075 2016-04-29 Richard Biener <rguenther@suse.de>
18077 * stor-layout.c (layout_type): Do not build a pointer-to-element
18080 2016-04-29 Uros Bizjak <ubizjak@gmail.com>
18082 * config/i386/i386.md (Load+RegOp to Mov+MemOp peephole2):
18083 Use SWI mode iterator. Use general_reg_operand predicate.
18084 (Load+RegOp to Mov+MemOp peephole2 with vector regs): Split
18085 peephole to MMX and SSE part. Use mmx_reg_operand and sse_reg_operand
18088 2016-04-29 Jakub Jelinek <jakub@redhat.com>
18090 PR middle-end/70843
18091 * fold-const.c (operand_equal_p): Don't verify hash value equality
18093 * tree.c (inchash::add_expr): Handle STATEMENT_LIST. Ignore BLOCK
18096 2016-04-28 Jakub Jelinek <jakub@redhat.com>
18099 * config/i386/i386.c (bdesc_special_args): Add | OPTION_MASK_ISA_64BIT
18100 to __builtin_ia32_lwpval64 and __builtin_ia32_lwpins64.
18101 (bdesc_args): Add | OPTION_MASK_ISA_64BIT to __builtin_ia32_bextr_u64,
18102 __builtin_ia32_bextri_u64, __builtin_ia32_bzhi_di,
18103 __builtin_ia32_pdep_di and __builtin_ia32_pext_di.
18105 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
18107 * config/rs6000/rs6000.c (compute_save_world_info): Rename info_ptr
18108 to info. Don't initialize separate fields to 0. Clean up
18111 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
18113 * config/i386/i386.md (peephole2s for operations with memory inputs):
18114 Use SWI mode iterator.
18115 (peephole2s for operations with memory outputs): Ditto.
18116 Do not check for stack checking probe.
18118 (probe_stack): Remove expander.
18120 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
18121 Andrew Burgess <andrew.burgess@embecosm.com>
18123 * config/arc/arc.c (arc_print_operand): Print integer 'H' / 'L'
18124 operands as 32-bits.
18126 2016-04-28 Jason Merrill <jason@redhat.com>
18128 * gdbinit.in: Skip line-map.h.
18130 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
18131 Andrew Burgess <andrew.burgess@embecosm.com>
18133 * config/arc/arc.c (arc_conditional_register_usage): Take
18134 TARGET_RRQ_CLASS into account.
18135 (arc_print_operand): Support printing 'p' and 's' operands.
18136 * config/arc/arc.h (TARGET_NPS_BITOPS_DEFAULT): Provide default
18138 (TARGET_RRQ_CLASS): Define.
18139 (IS_POWEROF2_OR_0_P): Define.
18140 * config/arc/arc.md (*movsi_insn): Add w/Clo, w/Chi, and w/Cbi
18142 (*tst_movb): New define_insn.
18143 (*tst): Avoid recognition if it could prevent '*tst_movb'
18144 combination; replace c/CnL with c/Chs alternative.
18145 (*tst_bitfield_tst): New define_insn.
18146 (*tst_bitfield_asr): New define_insn.
18147 (*tst_bitfield): New define_insn.
18148 (andsi3_i): Add Rrq variant.
18149 (extzv): New define_expand.
18150 (insv): New define_expand.
18151 (*insv_i): New define_insn.
18152 (*movb): New define_insn.
18153 (*movb_signed): New define_insn.
18154 (*movb_high): New define_insn.
18155 (*movb_high_signed): New define_insn.
18156 (*movb_high_signed + 1): New define_split pattern.
18157 (*mrgb): New define_insn.
18158 (*mrgb + 1): New define_peephole2 pattern.
18159 (*mrgb + 2): New define_peephole2 pattern.
18160 * config/arc/arc.opt (mbitops): New option for nps400, uses
18161 TARGET_NPS_BITOPS_DEFAULT.
18162 * config/arc/constraints.md (q): Make register class conditional.
18163 (Rrq): New register constraint.
18164 (Chs): New constraint.
18165 (Clo): New constraint.
18166 (Chi): New constraint.
18167 (Cbf): New constraint.
18168 (Cbn): New constraint.
18169 (C18): New constraint.
18170 (Cbi): New constraint.
18172 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
18174 * cfganal.c (bitmap_intersection_of_succs): Delete assert checking
18176 (bitmap_intersection_of_preds): Ditto.
18177 (bitmap_union_of_succs): Ditto.
18178 (bitmap_union_of_preds): Ditto.
18179 * sbitmap.c (do_popcount): Delete.
18180 (BITMAP_DEBUGGING): Delete.
18181 (sbitmap_verify_popcount): Delete.
18182 (sbitmap_alloc): Don't initialize the popcount field.
18183 (sbitmap_alloc_with_popcount): Delete.
18184 (sbitmap_resize): Don't resize the popcount array.
18185 (sbitmap_vector_alloc): Don't initialize the popcount field.
18186 (bitmap_copy): Don't copy the popcount array.
18187 (bitmap_clear): Don't clear the popcount array.
18188 (bitmap_clear): Delete the popcount array handling.
18189 (bitmap_ior_and_compl): Delete the popcount assert.
18190 (bitmap_not): Ditto.
18191 (bitmap_and_compl): Ditto.
18192 (bitmap_and): Delete the popcount array handling.
18193 (bitmap_xor): Ditto.
18194 (bitmap_ior): Ditto.
18195 (bitmap_or_and): Delete the popcount assert.
18196 (bitmap_and_or): Ditto.
18197 (popcount_table): Delete.
18198 (sbitmap_elt_popcount): Delete.
18199 * sbitmap.h (simple_bitmap_def): Delete the popcount field.
18200 (bitmap_set_bit): Delete the popcount assert.
18201 (bitmap_clear_bit): Ditto.
18202 (sbitmap_free): Don't free the popcount array.
18203 (sbitmap_alloc_with_popcount): Delete declaration.
18204 (sbitmap_popcount): Ditto.
18206 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
18207 Andrew Burgess <andrew.burgess@embecosm.com>
18209 * config/arc/arc.h (SYMBOL_FLAG_CMEM): Define.
18210 (TARGET_NPS_CMEM_DEFAULT): Provide default definition.
18211 * config/arc/arc.c (arc_address_cost): Return 0 for cmem_address.
18212 (arc_encode_section_info): Set SYMBOL_FLAG_CMEM where indicated.
18213 * config/arc/arc.opt (mcmem): New option.
18214 * config/arc/arc.md (*extendqihi2_i): Add r/Uex alternative,
18215 supply length for r/m alternative.
18216 (*extendqisi2_ac): Likewise.
18217 (*extendhisi2_i): Add r/Uex alternative, supply length for r/m and
18219 (movqi_insn): Add r/Ucm and Ucm/?Rac alternatives.
18220 (movhi_insn): Likewise.
18221 (movsi_insn): Add r/Ucm,Ucm/w alternatives.
18222 (*zero_extendqihi2_i): Add r/Ucm alternative.
18223 (*zero_extendqisi2_ac): Likewise.
18224 (*zero_extendhisi2_i): Likewise.
18225 * config/arc/constraints.md (Uex): New memory constraint.
18226 (Ucm): New define_constraint.
18227 * config/arc/predicates.md (long_immediate_loadstore_operand):
18228 Return 0 for MEM with cmem_address address.
18229 (cmem_address_0): New predicates.
18230 (cmem_address_1): Likewise.
18231 (cmem_address_2): Likewise.
18232 (cmem_address): Likewise.
18234 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
18236 * config/rs6000/rs6000.c (machine_function): Rename
18237 insn_chain_scanned_p to spe_insn_chain_scanned_p.
18238 (rs6000_stack_info): Adjust.
18240 2016-04-28 Joern Rennecke <joern.rennecke@embecosm.com>
18241 Andrew Burgess <andrew.burgess@embecosm.com>
18243 * config/arc/constraints.md (Usd): Convert to define_constraint.
18247 2016-04-28 Jakub Jelinek <jakub@redhat.com>
18250 * config/i386/sync.md (define_peephole2 *atomic_fetch_add_cmp<mode>):
18251 Add new peephole2 where the first insn is *mov<mode>_or instead of
18252 *mov<mode>_internal.
18254 2016-04-28 Segher Boesssenkool <segher@kernel.crashing.org>
18256 * tracer.c (bb_seen): Make static.
18258 2016-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
18260 * common/config/arc/arc-common.c (arc_handle_option): Add NPS400
18261 support, setup defaults.
18262 * config/arc/arc-opts.h (enum processor_type): Add NPS400.
18263 * config/arc/arc.c (arc_init): Add NPS400 support.
18264 * config/arc/arc.h (CPP_SPEC): Add NPS400 defines.
18265 (TARGET_ARC700): NPS400 is also an ARC700.
18266 * config/arc/arc.opt: Add NPS400 options to -mcpu=.
18268 2016-04-28 Segher Boessenkool <segher@kernel.crashing.org>
18271 * config/nds32/nds32.md (casesi): Don't access the operands array
18274 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
18276 * config/i386/i386.md (zeroing peephole2): Use general_reg_operand.
18277 (or $-1,reg peephole2): Ditto.
18278 (strict_low_part zeroing peephole2): Use SWI12 mode iterator.
18280 2016-04-28 Markus Trippelsdorf <markus@trippelsdorf.de>
18282 * doc/extend.texi (Common Function Attributes) [optimize]:
18283 Discourage use of the optimize attribute.
18285 2016-04-28 Bill Seurer <seurer@linux.vnet.ibm.com>
18287 * config/rs6000/rs6000-builtin.def (vec_adde): Change vec_adde to a
18288 special case builtin.
18289 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
18290 ALTIVEC_BUILTIN_VEC_ADDE.
18291 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Add
18292 support for ALTIVEC_BUILTIN_VEC_ADDE.
18293 * config/rs6000/rs6000.c (altivec_init_builtins): Add definition
18294 for __builtin_vec_adde.
18296 2016-04-28 Jakub Jelinek <jakub@redhat.com>
18298 * config/i386/i386.md (sse4_1_round<mode>2): Add avx512f alternative.
18299 * config/i386/sse.md (sse4_1_round<ssescalarmodesuffix>): Likewise.
18301 2016-04-28 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
18304 * doc/sourcebuild.texi (Effective-Target Keywords, Other
18305 attributes): Document cilkplus_runtime.
18307 2016-04-28 Martin Jambor <mjambor@suse.cz>
18309 * tree-cfg.c (verify_expr): Verify that local declarations belong to
18310 this function. Call verify_expr on MEM_REFs and bases of other
18311 handled_components.
18313 2016-04-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18315 * internal-fn.c (expand_arith_overflow): Convert preprocessor check
18316 for WORD_REGISTER_OPERATIONS to runtime check.
18318 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
18320 * config/arc/arc.h (ASM_SPEC): Pass mfpuda to assembler.
18322 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
18324 * config/arc/arc.c (arc_process_double_reg_moves): Fix for
18325 big-endian compilation.
18326 * config/arc/arc.md (addf3): Likewise.
18327 (subdf3): Likewise.
18328 (muldf3): Likewise.
18330 2016-04-28 Richard Biener <rguenther@suse.de>
18332 PR tree-optimization/70840
18333 * match.pd: powi(-x, y) and powi(|x|,y) -> powi(x,y) if y is even;
18334 Fix pow(copysign(x, y), z) -> pow(x, z) and add powi variant;
18335 Mark x * pow(x,c) -> pow(x,c+1) commutative.
18336 Add powi(x,y) * powi(z,y) -> powi(x*z,y).
18338 2015-04-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18340 * config/aarch64/aarch64.h (WORD_REGISTER_OPERATIONS): Define to 0
18341 and explain why in a comment.
18343 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
18345 * config/arc/arc.md (cpu_facility): Add fpx variant.
18346 (subdf3): Prohibit use reverse sub when assist operations option
18348 * config/arc/fpx.md (subdf3_insn, *dsubh_peep2_insn): Allow drsub
18349 instructions only when FPX is enabled.
18350 * testsuite/gcc.target/arc/trsub.c: New test.
18352 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
18354 * config/i386/i386.md (*fop_<mode>_1_mixed): Do not check for
18355 mult_operator when calculating "type" attribute.
18356 (*fop_<mode>_1_i387): Ditto.
18357 (*fop_xf_1_i387): Ditto.
18358 (x87 stack loads peephole2): Add "reg = op (mem, reg)" peephole2.
18359 Use std::swap to swap operands. Use RTL expressions to generate
18362 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
18363 Joern Rennecke <joern.rennecke@embecosm.com>
18365 * config/arc/arc-protos.h (arc_legitimize_pic_address): Remove
18367 (emit_pic_move): Remove.
18368 (arc_eh_uses, insn_is_tls_gd_dispatch): Declare.
18369 * config/arc/arc.c (emit_pic_move): Removed.
18370 (TARGET_HAVE_TLS): Define.
18371 (arc_conditional_register_usage): Test for arc_tp_regno.
18372 (arc_print_operand, arc_print_operand_address): Handle TLS
18374 (arc_needs_pcl_p): New function.
18375 (arc_legitimate_pc_offset_p): Use arc_needs_pcl_p.
18376 (arc_legitimate_pic_addr_p): Handle TLS unspecs.
18377 (arc_raw_symbolic_reference_mentioned_p): Likewise.
18378 (arc_get_tp, arc_emit_call_tls_get_addr): New function.
18379 (arc_legitimize_tls_address): Likewise.
18380 (DTPOFF_ZERO_SYM): Define.
18381 (arc_legitimize_pic_address): Make it static, handle TLS cases.
18382 (arc_output_pic_addr_const): Print TLS unspecs.
18383 (prepare_pic_move): New function, replaces emit_pic_move.
18384 (arc_legitimate_constant_p): Handle TLS unspecs.
18385 (arc_legitimate_address_p): Likewise.
18386 (arc_rewrite_small_data_p): Use assert for TLS constants.
18387 (prepare_move_operands): Use prepare_pic_move.
18388 (arc_legitimize_address): Legitimize tls addresses.
18389 (arc_epilogue_uses): Check for arc_tp_regno.
18390 (arc_eh_uses, insn_is_tls_gd_dispatch): New function.
18391 * config/arc/arc.h [DEFAULT_LIBC != LIBC_UCLIBC] (EXTRA_SPECS):
18393 [DEFAULT_LIBC != LIBC_UCLIBC] (ARC_TLS_EXTRA_START_SPEC):
18395 [DEFAULT_LIBC != LIBC_UCLIBC] (STARTFILE_SPEC): Add
18396 %(arc_tls_extra_start_spec).
18397 (TARGET_CPU_CPP_BUILTINS): Define __ARC_TLS_REGNO__.
18398 (REGNO_OK_FOR_BASE_P): Check for arc_tp_regno.
18400 (INSN_REFERENCES_ARE_DELAYED): Use insn_is_tls_gd_dispatch.
18401 * config/arc/arc.md (UNSPEC_TLS_GD, UNSPEC_TLS_LD, UNSPEC_TLS_IE)
18402 (UNSPEC_TLS_OFF): Add.
18404 (tls_load_tp_soft, tls_gd_load, tls_gd_get_addr, tls_gd_dispatch)
18405 (get_thread_pointersi): New patterns.
18406 * config/arc/arc.opt (mtp-regno): New option.
18407 * config/arc/predicates.md (move_src_operand): Handle TLS symbols.
18408 (move_dest_operand): Likewise.
18409 * configure: Regenerate.
18410 * configure.ac: Add arc*-*-* case to test for tls.
18411 * doc/invoke.texi (ARC options): Document mtp-regno.
18413 2016-04-28 Claudiu Zissulescu <claziss@synopsys.com>
18415 * config/arc/arc.c (arc_vector_mode_supported_p): Add support for
18416 the new ARC HS SIMD instructions.
18417 (arc_preferred_simd_mode): New function.
18418 (arc_autovectorize_vector_sizes): Likewise.
18419 (TARGET_VECTORIZE_PREFERRED_SIMD_MODE)
18420 (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Define.
18421 (arc_init_reg_tables): Accept new ARC HS SIMD modes.
18422 (arc_init_builtins): Add new SIMD builtin types.
18423 (arc_split_move): Handle 64 bit vector moves.
18424 * config/arc/arc.h (TARGET_PLUS_DMPY, TARGET_PLUS_MACD)
18425 (TARGET_PLUS_QMACW): Define.
18426 * config/arc/builtins.def (QMACH, QMACHU, QMPYH, QMPYHU, DMACH)
18427 (DMACHU, DMPYH, DMPYHU, DMACWH, DMACWHU, VMAC2H, VMAC2HU, VMPY2H)
18428 (VMPY2HU, VADDSUB2H, VSUBADD2H, VADDSUB, VSUBADD, VADDSUB4H)
18429 (VSUBADD4H): New builtins.
18430 * config/arc/simdext.md: Add new ARC HS SIMD instructions.
18431 * testsuite/gcc.target/arc/builtin_simdarc.c: New file.
18433 2016-04-28 Eduard Sanou <dhole@openmailbox.org>
18434 Matthias Klose <doko@debian.org>
18436 * doc/cppenv.texi: Document SOURCE_DATE_EPOCH environment variable.
18438 2016-04-28 Richard Biener <rguenther@suse.de>
18440 PR middle-end/70777
18441 * fold-const.c (fold_binary_loc): Remove x*x to pow(x,2.0)
18444 2016-04-28 Oleg Endo <olegendo@gcc.gnu.org>
18446 * common/config/sh/sh-common.c: Remove SH5 support.
18447 * config/sh/constraints.md: Likewise.
18448 * config/sh/config/sh/elf.h: Likewise.
18449 * config/sh/linux.h: Likewise.
18450 * config/sh/netbsd-elf.h: Likewise.
18451 * config/sh/predicates.md: Likewise.
18452 * config/sh/sh-c.c: Likewise.
18453 * config/sh/sh-protos.h: Likewise.
18454 * config/sh/sh.c: Likewise.
18455 * config/sh/sh.h: Likewise.
18456 * config/sh/sh.md: Likewise.
18457 * config/sh/sh.opt: Likewise.
18458 * config/sh/sync.md: Likewise.
18459 * config/sh/sh64.h: Delete.
18460 * config/sh/shmedia.h: Likewise.
18461 * config/sh/shmedia.md: Likewise.
18462 * config/sh/sshmedia.h: Likewise.
18463 * config/sh/t-netbsd-sh5-64: Likewise.
18464 * config/sh/t-sh64: Likewise.
18465 * config/sh/ushmedia.h: Likewise.
18467 2016-04-28 Uros Bizjak <ubizjak@gmail.com>
18469 * config/i386/i386.md (sign_extend to memory peephole2s): Use
18470 general_reg_operand instead of register_operand predicate.
18472 2016-04-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
18474 * params.def (MIN_PARTITION_SIZE): Set default value to 10000.
18476 2016-04-27 Marc Glisse <marc.glisse@inria.fr>
18478 * match.pd (A - B > A, A + B < A): New transformations.
18480 2016-04-27 Patrick Palka <ppalka@gcc.gnu.org>
18482 * genattrtab.c (write_test_expr): New parameter EMIT_PARENS
18483 which defaults to true. Emit an outer pair of parentheses only if
18484 EMIT_PARENS. When continuing a chain of && or || (or & or |),
18485 don't emit parentheses for the right-hand operand.
18487 2016-04-27 Jeff Law <law@redhat.com>
18489 * tree-ssa-dom.c (record_temporary_equivalences): Fix typo in comment.
18491 2016-04-27 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
18493 * config/rs6000/altivec.md (altivec_lvx_<mode>): Remove.
18494 (altivec_lvx_<mode>_internal): Document.
18495 (altivec_lvx_<mode>_2op): New define_insn.
18496 (altivec_lvx_<mode>_1op): Likewise.
18497 (altivec_lvx_<mode>_2op_si): Likewise.
18498 (altivec_lvx_<mode>_1op_si): Likewise.
18499 (altivec_stvx_<mode>): Remove.
18500 (altivec_stvx_<mode>_internal): Document.
18501 (altivec_stvx_<mode>_2op): New define_insn.
18502 (altivec_stvx_<mode>_1op): Likewise.
18503 (altivec_stvx_<mode>_2op_si): Likewise.
18504 (altivec_stvx_<mode>_1op_si): Likewise.
18505 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
18506 Expand vec_ld and vec_st during parsing.
18507 * config/rs6000/rs6000.c (altivec_expand_lvx_be): Commentary
18509 (altivec_expand_stvx_be): Likewise.
18510 (altivec_expand_lv_builtin): Expand lvx built-ins to expose the
18511 address-masking behavior in RTL.
18512 (altivec_expand_stv_builtin): Expand stvx built-ins to expose the
18513 address-masking behavior in RTL.
18514 (altivec_expand_builtin): Change builtin code arguments for calls
18515 to altivec_expand_stv_builtin and altivec_expand_lv_builtin.
18516 (insn_is_swappable_p): Avoid incorrect swap optimization in the
18517 presence of lvx/stvx patterns.
18518 (alignment_with_canonical_addr): New function.
18519 (alignment_mask): Likewise.
18520 (find_alignment_op): Likewise.
18521 (recombine_lvx_pattern): Likewise.
18522 (recombine_stvx_pattern): Likewise.
18523 (recombine_lvx_stvx_patterns): Likewise.
18524 (rs6000_analyze_swaps): Perform a pre-pass to recognize lvx and
18525 stvx patterns from expand.
18526 * config/rs6000/vector.md (vector_altivec_load_<mode>): Use new
18528 (vector_altivec_store_<mode>): Likewise.
18530 2016-04-26 Evandro Menezes <e.menezes@samsung.com>
18532 * config/aarch64/aarch64.md
18533 (*movhf_aarch64): Add "movi %0, #0" to zero up register and
18534 remove the "fp" attributes.
18535 (*movsf_aarch64): Add "movi %0, #0" to zero up register and
18536 add the "simd" attributes.
18537 (*movdf_aarch64): Likewise.
18538 (*movtf_aarch64): Remove the "fp" attributes.
18539 * testsuite/gcc.target/aarch64/fmovf-zero-reg.c: Update accordingly.
18540 * testsuite/gcc.target/aarch64/fmovd-zero-reg.c: Likewise.
18542 2016-04-27 David Malcolm <dmalcolm@redhat.com>
18544 * emit-rtl.c (maybe_set_first_label_num): Strengthen param from
18545 rtx to rtx_code_label *.
18546 * rtl.h (maybe_set_first_label_num): Likewise.
18548 2016-04-27 David Malcolm <dmalcolm@redhat.com>
18550 * df-core.c (df_add_problem): Make the problem param be const.
18551 (df_remove_problem): Make local "problem" be const.
18552 * df-problems.c (problem_RD): Make const.
18553 (problem_LR): Likewise.
18554 (problem_LIVE): Likewise.
18555 (problem_MIR): Likewise.
18556 (problem_CHAIN): Likewise.
18557 (problem_WORD_LR): Likewise.
18558 (problem_NOTE): Likewise.
18559 (problem_MD): Likewise.
18560 * df-scan.c (problem_SCAN): Likewise.
18561 * df.h (struct df_problem): Make field "dependent_problem" be
18563 (struct dataflow): Likewise for field "problem".
18564 (df_add_problem): Make param const.
18566 2016-04-27 Uros Bizjak <ubizjak@gmail.com>
18568 * config/i386/i386.c (ix86_spill_class): Enable for TARGET_SSE2 when
18569 inter-unit moves to/from vector registers are enabled. Do not disable
18572 2016-04-27 David Malcolm <dmalcolm@redhat.com>
18574 * df.h (DF_SCAN, DF_LR, DF_LIVE, DF_RD, DF_CHAIN, DF_WORD_LR,
18575 DF_NOTE, DF_MD, DF_MIR, DF_LAST_PROBLEM_PLUS1): Convert from
18577 (enum df_problem_id): ...this new enum.
18578 (struct df_problem): Convert field "id" from "int" to
18579 enum df_problem_id.
18581 2016-04-27 David Malcolm <dmalcolm@redhat.com>
18583 * rtl.def: Update comment for "things in the instruction chain" to
18584 reflect the removal of the leading "i" field for INSN_UID in
18585 r210360. Fix bogus apostrophe.
18587 2016-04-27 Uros Bizjak <ubizjak@gmail.com>
18589 * config/i386/i386.md
18590 (lea arith with mem operand + setcc peephole2): Set operator mode.
18592 2016-04-27 H.J. Lu <hongjiu.lu@intel.com>
18595 * config/i386/i386.c (scalar_to_vector_candidate_p): Renamed to ...
18596 (dimode_scalar_to_vector_candidate_p): This.
18597 (timode_scalar_to_vector_candidate_p): New function.
18598 (scalar_to_vector_candidate_p): Likewise.
18599 (timode_check_non_convertible_regs): Likewise.
18600 (timode_remove_non_convertible_regs): Likewise.
18601 (remove_non_convertible_regs): Likewise.
18602 (remove_non_convertible_regs): Renamed to ...
18603 (dimode_remove_non_convertible_regs): This.
18604 (scalar_chain::~scalar_chain): Make it virtual.
18605 (scalar_chain::compute_convert_gain): Make it pure virtual.
18606 (scalar_chain::mark_dual_mode_def): Likewise.
18607 (scalar_chain::convert_insn): Likewise.
18608 (scalar_chain::convert_registers): Likewise.
18609 (scalar_chain::add_to_queue): Make it protected.
18610 (scalar_chain::emit_conversion_insns): Likewise.
18611 (scalar_chain::replace_with_subreg): Likewise.
18612 (scalar_chain::replace_with_subreg_in_insn): Likewise.
18613 (scalar_chain::convert_op): Likewise.
18614 (scalar_chain::convert_reg): Likewise.
18615 (scalar_chain::make_vector_copies): Likewise.
18616 (scalar_chain::convert_registers): New pure virtual function.
18617 (class dimode_scalar_chain): New class.
18618 (class timode_scalar_chain): Likewise.
18619 (scalar_chain::mark_dual_mode_def): Renamed to ...
18620 (dimode_scalar_chain::mark_dual_mode_def): This.
18621 (timode_scalar_chain::mark_dual_mode_def): New function.
18622 (timode_scalar_chain::convert_insn): Likewise.
18623 (dimode_scalar_chain::convert_registers): Likewise.
18624 (scalar_chain::compute_convert_gain): Renamed to ...
18625 (dimode_scalar_chain::compute_convert_gain): This.
18626 (scalar_chain::replace_with_subreg): Renamed to ...
18627 (dimode_scalar_chain::replace_with_subreg): This.
18628 (scalar_chain::replace_with_subreg_in_insn): Renamed to ...
18629 (dimode_scalar_chain::replace_with_subreg_in_insn): This.
18630 (scalar_chain::make_vector_copies): Renamed to ...
18631 (dimode_scalar_chain::make_vector_copies): This.
18632 (scalar_chain::convert_reg): Renamed to ...
18633 (dimode_scalar_chain::convert_reg ): This.
18634 (scalar_chain::convert_op): Renamed to ...
18635 (dimode_scalar_chain::convert_op): This.
18636 (scalar_chain::convert_insn): Renamed to ...
18637 (dimode_scalar_chain::convert_insn): This.
18638 (scalar_chain::convert): Call convert_registers.
18639 (convert_scalars_to_vector): Change to scalar_chain pointer to
18640 use timode_scalar_chain in 64-bit mode and dimode_scalar_chain
18641 in 32-bit mode. Delete scalar_chain pointer. Call
18642 free_dominance_info in 64-bit mode.
18643 (pass_stv::gate): Remove TARGET_64BIT check.
18644 (ix86_option_override): Put the 64-bit STV pass before the CSE
18647 2016-04-27 Pierre-Marie de Rodat <derodat@adacore.com>
18649 * dwarf2out.h (struct dw_loc_descr_node): Remove the
18650 dw_loc_frame_offset field.
18651 * dwarf2out.c (new_loc_descr): Likewise.
18652 (resolve_args_picking_1): Turn the VISITED hash set into a
18653 FRAME_OFFSET hash map. Use it to associate a frame offset to
18654 visited nodes. Remove uses of the CHECKING_P macro.
18655 (resolve_args_picking): Update call to resolve_args_picking_1.
18657 2016-04-27 Martin Liska <mliska@suse.cz>
18659 * tree-ssa-loop-ivopts.c (iv_ca_dump): Fix level of indentation.
18660 (free_loop_data): Release vuses of groups.
18662 2016-04-27 Bin Cheng <bin.cheng@arm.com>
18664 * tree-ssa-loop-ivopts.c (struct iv): Use pointer to struct iv_use
18665 instead of redundant use_id and boolean have_use_for.
18666 (struct iv_use): Change sub_id into group_id. Remove field next.
18667 Move fields: related_cands, n_map_members, cost_map and selected
18669 (struct iv_group): ... here. New structure.
18670 (struct iv_common_cand): Use structure declaration directly.
18671 (struct ivopts_data, iv_ca, iv_ca_delta): Rename fields.
18672 (MAX_CONSIDERED_USES): Rename macro to ...
18673 (MAX_CONSIDERED_GROUPS): ... here.
18674 (n_iv_uses, iv_use, n_iv_cands, iv_cand): Delete.
18675 (dump_iv, dump_use, dump_cand): Refactor format of dump information.
18676 (dump_uses): Rename to ...
18677 (dump_groups): ... here. Update all uses.
18678 (tree_ssa_iv_optimize_init, alloc_iv): Update all uses.
18679 (find_induction_variables): Refactor format of dump information.
18680 (record_sub_use): Delete.
18681 (record_use): Update all uses.
18682 (record_group): New function.
18683 (record_group_use, find_interesting_uses_op): Call above functions.
18685 (find_interesting_uses_cond): Ditto.
18686 (group_compare_offset): New function.
18687 (split_all_small_groups): Rename to ...
18688 (split_small_address_groups_p): ... here. Update all uses.
18689 (split_address_groups): Update all uses.
18690 (find_interesting_uses): Refactor format of dump information.
18691 (add_candidate_1): Update all uses. Remove redundant check on iv,
18693 (add_candidate, record_common_cand): Remove redundant assert.
18694 (add_iv_candidate_for_biv): Update use.
18695 (add_iv_candidate_derived_from_uses): Update all uses.
18696 (add_iv_candidate_for_groups, record_important_candidates): Ditto.
18697 (alloc_use_cost_map): Ditto.
18698 (set_use_iv_cost, get_use_iv_cost): Rename to ...
18699 (set_group_iv_cost, get_group_iv_cost): ... here. Update all uses.
18700 (determine_use_iv_cost_generic): Ditto.
18701 (determine_group_iv_cost_generic): Ditto.
18702 (determine_use_iv_cost_address): Ditto.
18703 (determine_group_iv_cost_address): Ditto.
18704 (determine_use_iv_cost_condition): Ditto.
18705 (determine_group_iv_cost_cond): Ditto.
18706 (determine_use_iv_cost): Ditto.
18707 (determine_group_iv_cost): Ditto.
18708 (set_autoinc_for_original_candidates): Update all uses.
18709 (find_iv_candidates): Update all uses. Refactor dump information.
18710 (determine_use_iv_costs): Ditto.
18711 (determine_iv_costs): Ditto.
18712 (iv_ca_cand_for_use): Rename to ...
18713 (iv_ca_cand_for_group): ... here. Update all uses.
18714 (iv_ca_add_use, iv_ca_add_group): Ditto.
18715 (iv_ca_set_cp, iv_ca_cost, iv_ca_delta_add): Update all uses.
18716 (iv_ca_delta_join, iv_ca_delta_reverse, iv_ca_delta_free): Ditto.
18717 (iv_ca_new, iv_ca_dump, iv_ca_extend, iv_ca_narrow): Ditto.
18718 (iv_ca_prune, cheaper_cost_with_cand, iv_ca_replace): Ditto.
18719 (try_add_cand_for, try_improve_iv_set, find_optimal_iv_set): Ditto.
18720 (create_new_iv, adjust_iv_update_pos): Ditto.
18721 (rewrite_use_address): Delete.
18722 (rewrite_use_address_1): Rename to ...
18723 (rewrite_use_address): ... here.
18724 (rewrite_use_compare): Update all uses.
18725 (rewrite_use): Delete.
18726 (rewrite_uses): Rename to ...
18727 (rewrite_groups): ... here. Update all uses.
18728 (remove_unused_ivs, free_loop_data): Update all uses.
18729 (tree_ssa_iv_optimize_finalize, tree_ssa_iv_optimize_loop): Ditto.
18731 2016-04-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18733 * rtlanal.c (nonzero_bits1): Convert preprocessor check
18734 for WORD_REGISTER_OPERATIONS to runtime check.
18736 2016-04-27 Richard Biener <rguenther@suse.de>
18739 * tree-ssa-structalias.c (find_func_aliases_for_call): Use
18740 aggregate_value_p to determine if a function result is
18741 returned by reference.
18742 (ipa_pta_execute): Functions having their address taken are
18743 not automatically nonlocal.
18745 2016-04-27 Jakub Jelinek <jakub@redhat.com>
18748 * tree-core.h (enum operand_equal_flag): Add OEP_NO_HASH_CHECK.
18749 * fold-const.c (operand_equal_p): If flag_checking and
18750 OEP_NO_HASH_CHECK is not set in flag, recurse with OEP_NO_HASH_CHECK
18751 and if it returns non-zero, assert iterative_hash_expr on both
18754 2016-04-27 Bernd Schmidt <bschmidt@redhat.com>
18756 * doc/invoke.texi (-frename-registers): Also enabled at -Os.
18758 2016-04-27 Nick Clifton <nickc@redhat.com>
18760 PR middle-end/49889
18761 * varasm.c (merge_weak): Generate an error if an attempt is made
18762 to convert a non-weak static function into a weak, public function.
18764 2016-04-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
18766 * params.def (MAX_PARTITION_SIZE): New param.
18767 * doc/invoke.texi: Document lto-max-partition.
18769 2016-04-27 Richard Biener <rguenther@suse.de>
18772 * tree-ssa-structalias.c (refered_from_nonlocal_fn): New
18773 function cummulating used_from_other_partition, externally_visible
18774 and force_output from aliases.
18775 (refered_from_nonlocal_var): Likewise.
18776 (ipa_pta_execute): Use call_for_symbol_and_aliases to cummulate
18777 node flags properly.
18779 2016-04-27 Bernd Schmidt <bschmidt@redhat.com>
18781 * doc/invoke.texi (Warning Options): Add -Wmemset-elt-size.
18782 (-Wmemset-elt-size): New item.
18784 2016-04-27 Eric Botcazou <ebotcazou@adacore.com>
18787 * stor-layout.h (internal_reference_types): Delete.
18788 * stor-layout.c (reference_types_internal): Likewise.
18789 (internal_reference_types): Likewise.
18790 (layout_type) <REFERENCE_TYPE>: Adjust.
18792 2016-04-27 Jakub Jelinek <jakub@redhat.com>
18795 * tree.h (inchash::add_expr): Add FLAGS argument.
18796 * tree.c (inchash::add_expr): Likewise. If not OEP_ADDRESS_OF,
18797 use STRIP_NOPS first. For INTEGER_CST assert not OEP_ADDRESS_OF.
18798 For REAL_CST and !HONOR_SIGNED_ZEROS (t) hash +/- 0 the same.
18799 Formatting fix. Adjust recursive calls. For tcc_comparison,
18800 if swap_tree_comparison (code) is smaller than code, hash that
18801 and arguments in the other order. Hash CONVERT_EXPR the same
18802 as NOP_EXPR. For OEP_ADDRESS_OF hash MEM_REF with 0 offset
18803 of ADDR_EXPR of decl as the decl itself. Add or remove
18804 OEP_ADDRESS_OF from recursive flags as needed. For
18805 FMA_EXPR, WIDEN_MULT_{PLUS,MINUS}_EXPR hash the first two
18806 operands commutatively and only the third one normally.
18807 For internal CALL_EXPR hash in CALL_EXPR_IFN.
18809 2016-04-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
18811 * config/rtems.h (LIB_SPEC): Add -latomic.
18813 2016-04-27 Joel Sherrill <joel@rtems.org>
18815 * config/microblaze/rtems.h: Redefine LINK_SPEC to avoid
18816 xilink.ld and flags not relevant to RTEMS.
18818 2016-04-26 Zhouyi Zhou <yizhouzhou@ict.ac.cn>
18820 * toplev.c (backend_init_target): Avoid calling init_reload when using
18823 2016-04-26 Jakub Jelinek <jakub@redhat.com>
18825 * reorg.c (try_merge_delay_insns): Declare i and j inside the
18826 for loops rather than one for the whole function.
18828 2016-04-26 Marc Glisse <marc.glisse@inria.fr>
18830 * match.pd (X + CST CMP X): New transformation.
18832 2016-04-26 Marc Glisse <marc.glisse@inria.fr>
18834 * genmatch.c (write_predicate): Add ATTRIBUTE_UNUSED.
18835 * fold-const.c (fold_binary_loc): Remove 2 transformations
18836 superseded by match.pd.
18837 * match.pd (x+x -> x*2): Generalize to integers.
18839 2016-04-26 Bernd Schmidt <bschmidt@redhat.com>
18841 * config/i386/i386.md (operation on memory peephole): Duplicate an
18842 existing peephole and adapt it to match lea rather than an operation
18845 PR rtl-optimization/57193
18846 * opts.c (default_options_table): Add OPT_frename_registers at -O2
18848 * doc/invoke.texi (-frename-registers, -O2): Update documentation.
18850 2016-04-26 Bin Cheng <bin.cheng@arm.com>
18852 * tree-if-conv.c (any_pred_load_store): New static variable.
18853 (if_convertible_gimple_assign_stmt_p): Remove parameter. Use
18854 any_pred_load_store instead of and_mask_load_store.
18855 (if_convertible_stmt_p, if_convertible_loop_p_1): Ditto.
18856 (if_convertible_loop_p, insert_gimplified_predicates): Ditto.
18857 (combine_blocks, tree_if_conversion): Ditto.
18859 2016-04-26 Bin Cheng <bin.cheng@arm.com>
18861 PR tree-optimization/70771
18862 PR tree-optimization/70775
18863 * tree-if-conv.c (if_convertible_phi_p): Remove check on special
18864 virtual PHI nodes. Delete parameter.
18865 (if_convertible_loop_p_1): Delete argument to above function.
18866 (predicate_all_scalar_phis): Delete code handling single-argument
18868 (tree_if_conversion): Mark and update virtual SSA.
18870 2016-04-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
18873 * config/i386/i386.c (LARGECOMM_SECTION_ASM_OP): Define default.
18874 (x86_elf_aligned_common): Rename to ...
18875 (x86_elf_aligned_decl_common): ... this.
18876 Add decl arg. Switch to .lbss for largecomm object. Use
18877 LARGECOMM_SECTION_ASM_OP.
18878 * config/i386/i386-protos.h (x86_elf_aligned_common): Reflect
18880 * config/i386/x86-64.h (ASM_OUTPUT_ALIGNED_COMMON): Rename to ...
18881 (ASM_OUTPUT_ALIGNED_DECL_COMMON): ... this.
18883 * config/i386/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
18884 [!USE_GAS] (LARGECOMM_SECTION_ASM_OP): Define.
18886 2016-04-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
18889 * config/i386/i386.c (SECTION_LARGE): Define.
18890 (x86_64_elf_select_section): Set it for large data/bss sections.
18891 Only clear SECTION_WRITE for .lrodata.
18892 (x86_64_elf_section_type_flags): Set SECTION_LARGE for large
18894 * config/i386/sol2.h (MACH_DEP_SECTION_ASM_FLAG): Define.
18895 * varasm.c (default_elf_asm_named_section): Grow flagchars.
18896 [MACH_DEP_SECTION_ASM_FLAG] Emit MACH_DEP_SECTION_ASM_FLAG for
18898 * doc/tm.texi.in (Sections, MACH_DEP_SECTION_ASM_FLAG): Describe.
18899 * doc/tm.texi: Regenerate.
18901 2016-04-26 Jakub Jelinek <jakub@redhat.com>
18904 * configure.ac (--enable-checking): Document extra flag, for
18905 non-release builds default to --enable-checking=yes,extra.
18906 If misc checking and extra checking, define CHECKING_P to 2 instead
18908 * common.opt (fchecking=): Add.
18909 * doc/invoke.texi (-fchecking=): Document.
18910 * doc/install.texi: Document --enable-checking changes.
18911 * configure: Regenerated.
18912 * config.in: Regenerated.
18914 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
18916 * config/i386/i386.md (*movxi_internal_avx512f): Use insn type
18917 attribute instead of which_alternative.
18918 * config/i386/sse.md (*mov<mode>_internal): Ditto.
18919 Use EXT_REX_SSE_REG_P where appropriate.
18921 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
18923 * config/i386/predicates.md (const0_operand): Do not match
18924 const_wide_int code.
18925 (const1_operand): Ditto.
18927 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
18929 * config/i386/i386.md (*movoi_internal_avx): Set mode attribute to XI
18930 for SSE constm1 operands and TARGET_AVX512VL.
18931 (*movti_internal): Ditto.
18932 (*mov<mode>_or): Use constm1_operand predicate.
18933 * config/i386/sse.md (*mov<mode>_internal): Set mode attribute to XI
18934 for SSE vector_all_ones operands and TARGET_AVX512VL.
18935 * config/i386/predicates.md (constm1_operand): New predicate.
18936 * config/i386/i386.c (standard_sse_constant_opcode): Simplify
18937 emission of constant -1 load.
18939 2016-04-25 Jason Merrill <jason@redhat.com>
18941 * gdbinit.in: Skip is-a.h.
18943 * attribs.c (register_scoped_attributes): Fix logic.
18944 * attribs.h: Declare register_scoped_attributes.
18946 2016-04-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
18948 * config/rs6000/rs6000-builtin.def: Correct pasto error for
18949 stxvd2x and stxvw4x built-in functions.
18951 2016-04-25 DJ Delorie <dj@redhat.com>
18953 * config/msp430/msp430.md (ashlhi3): Optimize one bit shifts.
18954 (ashrhi3): Likewise.
18955 (lshrhi3): Likewise.
18957 2016-04-25 Richard Biener <rguenther@suse.de>
18959 PR tree-optimization/70780
18960 * tree-ssa-pre.c (compute_antic_aux): Also return true if the block
18961 wasn't visited yet.
18962 (compute_antic): Mark blocks with abnormal preds as visited as
18963 they have a final empty antic-in solution already.
18965 2016-04-25 Michael Collison <michael.collison@linaro.org>
18967 * ChangeLog(2016-04-25): Fix ChangeLog formatting.
18969 2016-04-25 Michael Collison <michael.collison@linaro.org>
18971 * config/arm/neon.md (widen_<us>sum<mode>): New patterns where
18972 mode is VQI to improve mixed mode vectorization.
18973 * config/arm/neon.md (vec_sel_widen_ssum_lo<VQI:mode><VW:mode>3): New
18974 define_insn to match low half of signed vaddw.
18975 * config/arm/neon.md (vec_sel_widen_ssum_hi<VQI:mode><VW:mode>3): New
18976 define_insn to match high half of signed vaddw.
18977 * config/arm/neon.md (vec_sel_widen_usum_lo<VQI:mode><VW:mode>3): New
18978 define_insn to match low half of unsigned vaddw.
18979 * config/arm/neon.md (vec_sel_widen_usum_hi<VQI:mode><VW:mode>3): New
18980 define_insn to match high half of unsigned vaddw.
18981 * config/arm/arm.c (arm_simd_vect_par_cnst_half): New function.
18982 (arm_simd_check_vect_par_cnst_half_p): Likewise.
18983 * config/arm/arm-protos.h (arm_simd_vect_par_cnst_half): Prototype
18985 (arm_simd_check_vect_par_cnst_half_p): Likewise.
18986 * config/arm/predicates.md (vect_par_constant_high): Support
18987 big endian and simplify by calling
18988 arm_simd_check_vect_par_cnst_half
18989 (vect_par_constant_low): Likewise.
18991 2016-04-25 Uros Bizjak <ubizjak@gmail.com>
18993 * config/i386/i386.md (*lea<mode>_general_4): Use const_0_to_3_operand
18994 predicate for operand 2.
18996 2016-04-24 Uros Bizjak <ubizjak@gmail.com>
18997 H.J. Lu <hongjiu.lu@intel.com>
18999 * config/i386/i386-protos.h (standard_sse_constant_p): Add
19000 machine_mode argument.
19001 * config/i386/i386.c (standard_sse_constant_p): Return 2 for
19002 constm1_rtx operands. For VOIDmode constants, get mode from
19003 pred_mode. Check mode size if the mode is supported by ABI.
19004 (standard_sse_constant_opcode): Do not use standard_constant_p.
19005 Strictly check ABI support for all-ones operands.
19006 (ix86_legitimate_constant_p): Handle TImode, OImode and XImode
19007 immediates. Update calls to standard_sse_constant_p.
19008 (ix86_expand_vector_move): Update calls to standard_sse_constant_p.
19009 (ix86_rtx_costs): Ditto.
19010 * config/i386/i386.md (*movxi_internal_avx512f): Use
19011 nonimmediate_or_sse_const_operand instead of vector_move_operand.
19012 Use (v,BC) alternative instead of (v,C). Use register_operand
19013 checks instead of MEM_P.
19014 (*movoi_internal_avx): Use nonimmediate_or_sse_const_operand instead
19015 of vector_move_operand. Add (v,BC) alternative and corresponding avx2
19016 isa attribute. Use register_operand checks instead of MEM_P.
19017 (*movti_internal): Use nonimmediate_or_sse_const_operand for
19018 TARGET_SSE. Improve TARGET_SSE insn constraint. Add (v,BC)
19019 alternative and corresponding sse2 isa attribute.
19020 (*movtf_internal, *movdf_internal, *movsf_interal): Update calls
19021 to standard_sse_constant_p.
19022 (FP constant splitters): Ditto.
19023 * config/i386/constraints.md (BC): Do not use standard_sse_constant_p.
19025 * config/i386/predicates.md (constm1_operand): Remove.
19026 (nonimmediate_or_sse_const_operand): Rewrite using RTX.
19027 * config/i386/sse.md (*<avx512>_cvtmask2<ssemodesuffix><mode>): Use
19028 vector_all_ones_operand instead of constm1_operand.
19030 2016-04-24 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
19032 * print-rtl.c (print_rtx_insn_vec): New function.
19033 * print-rtl.h: New prototype.
19034 * store-motion.c (struct st_expr): Make avail_stores a vector.
19035 (st_expr_entry): Adjust.
19036 (free_st_expr_entry): Likewise.
19037 (print_store_motion_mems): Likewise.
19038 (find_moveable_store): Likewise.
19039 (compute_store_table): Likewise.
19040 (delete_store): Likewise.
19041 (build_store_vectors): Likewise.
19043 2016-04-24 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
19045 * reorg.c (try_merge_delay_insns): Make merged_insns a vector.
19047 2016-04-24 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
19049 * vec.h (vec_safe_contains): New function.
19050 (vec::contains): Likewise.
19051 (vec::begin): Likewise.
19052 (vec::end): Likewise.
19054 2016-04-23 Jakub Jelinek <jakub@redhat.com>
19057 * cfgexpand.c (expand_stack_vars): Fix typo.
19059 2016-04-22 Szabolcs Nagy <szabolcs.nagy@arm.com>
19061 * system.h (list, map, set, vector): Include conditionally.
19062 * auto-profile.c (INCLUDE_MAP, INCLUDE_SET): Define.
19063 * graphite-isl-ast-to-gimple.c (INCLUDE_MAP): Define.
19064 * ipa-icf.c (INCLUDE_LIST): Define.
19065 * config/aarch64/cortex-a57-fma-steering.c (INCLUDE_LIST): Define.
19066 * config/sh/sh.c (INCLUDE_VECTOR): Define.
19067 * config/sh/sh_treg_combine.cc (INCLUDE_ALGORITHM): Define.
19068 (INCLUDE_LIST, INCLUDE_VECTOR): Define.
19069 * cp/logic.cc (INCLUDE_LIST): Define.
19070 * fortran/trans-common.c (INCLUDE_MAP): Define.
19072 2016-04-22 Szabolcs Nagy <szabolcs.nagy@arm.com>
19074 * auto-profile.c: Remove <string.h> include.
19075 * ipa-icf-gimple.c: Remove <list> include.
19076 * diagnostic.c: Remove <new> include.
19077 * genmatch.c: Likewise.
19078 * pretty-print.c: Likewise.
19079 * toplev.c: Likewise
19080 * c/c-objc-common.c: Likewise.
19081 * cp/error.c: Likewise.
19082 * fortran/error.c: Likewise.
19084 2016-04-22 Richard Biener <rguenther@suse.de>
19086 * lto-streamer-in.c (input_ssa_names): Do not allocate
19087 GIMPLE_NOP for all SSA names.
19088 * lto-streamer-out.c (output_ssa_names): Do not output
19089 SSA names that should have been released.
19091 2016-04-22 Richard Biener <rguenther@suse.de>
19093 PR tree-optimization/70740
19094 * tree-ssa-phiprop.c (propagate_with_phi): Handle inserted
19097 2016-04-21 H.J. Lu <hongjiu.lu@intel.com>
19100 * config/i386/predicates.md (call_insn_operand): Replace
19101 sibcall_memory_operand with memory_operand.
19103 2016-04-21 Patrick Palka <ppalka@gcc.gnu.org>
19105 * tree-vrp.c (register_edge_assert_for_2): Remove redundant
19106 has_single_use() tests.
19107 (register_edge_assert_for_1): Likewise.
19108 (find_assert_locations_1): Check the liveness bitmap instead of
19109 checking has_single_use().
19111 2016-04-21 Kirill Yukhin <kirill.yukhin@intel.com>
19114 * config/i386/sse.md (define_insn "<shift_insn><mode>3<mask_name>"):
19115 Extract AVX-512BW constraint from AVX.
19117 2016-04-21 Richard Biener <rguenther@suse.de>
19119 PR tree-optimization/70725
19120 * tree-if-conv.c (if_convertible_phi_p): Adjust guard
19121 for phi_convertible_by_degenerating_args.
19122 (predicate_all_scalar_phis): Handle single-argument PHIs.
19124 2016-04-21 Richard Biener <rguenther@suse.de>
19126 PR middle-end/70747
19127 * fold-const.c (fold_comparison): Return properly typed
19130 2016-04-21 Bin Cheng <bin.cheng@arm.com>
19132 PR tree-optimization/70715
19133 * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
19134 after expanding BASE using expand_simple_operations.
19136 2016-04-21 Marc Glisse <marc.glisse@inria.fr>
19138 * match.pd (min(-x, -y), max(-x, -y), min(~x, ~y), max(~x, ~y)):
19139 New transformations.
19141 2016-04-21 Marc Glisse <marc.glisse@inria.fr>
19143 * match.pd (min(int_max, x), max(int_min, x)): New transformations.
19145 2016-04-20 Jan Hubicka <jh@suse.cz>
19147 * ipa-inline.c (can_inline_edge_p): Pass caller info to
19148 ultiimate_alias_target.
19149 (update_callee_keys): Likewise.
19150 (lookup_recursive_calls): Likewise.
19151 (speculation_useful_p): Likewise.
19153 2016-04-20 Jan Hubicka <jh@suse.cz>
19156 * cgraph.c (cgraph_set_nothrow_flag_1): Rename to ...
19157 (set_nothrow_flag_1): ... this; handle interposition correctly;
19158 recurse on aliases and thunks.
19159 (cgraph_node::set_nothrow_flag): New.
19160 * ipa-pure-const.c (ignore_edge_for_nothrow): Ignore calls to
19161 functions compiled with non-call exceptions that binds to current
19163 (propagate_nothrow): Be safe WRT interposition.
19164 * cgraph.h (set_nothrow_flag): Update prototype.
19166 2016-04-18 Jan Hubicka <jh@suse.cz>
19168 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
19169 max_loop_iterations_int.
19170 (tree_unswitch_outer_loop): Likewise.
19172 2016-04-20 Bin Cheng <bin.cheng@arm.com>
19174 PR tree-optimization/69489
19175 * tree-if-conv.c (phi_convertible_by_degenerating_args): New.
19176 (if_convertible_phi_p): Call phi_convertible_by_degenerating_args.
19177 Revise dump message.
19178 (if_convertible_bb_p): Remove check on edge count of basic block's
19181 2016-04-20 Bin Cheng <bin.cheng@arm.com>
19183 PR tree-optimization/56625
19184 PR tree-optimization/69489
19185 * tree-data-ref.h (DR_INNERMOST): New macro.
19186 * tree-if-conv.c (innermost_loop_behavior_hash): New class for
19187 hashing struct innermost_loop_behavior.
19188 (ref_DR_map): Remove.
19189 (innermost_DR_map): New map.
19190 (baseref_DR_map): Revise comment.
19191 (hash_memrefs_baserefs_and_store_DRs_read_written_info): Store DR
19192 to innermost_DR_map accroding to its innermost loop behavior.
19193 (ifcvt_memrefs_wont_trap): Get DR from innermost_DR_map according
19194 to its innermost loop behavior.
19195 (if_convertible_loop_p_1): Remove intialization for ref_DR_map.
19196 Add initialization for innermost_DR_map. Record memory reference
19197 in DR_BASE_ADDRESS if the reference is compound one or it doesn't
19198 have innermost loop behavior.
19199 (if_convertible_loop_p): Remove release for ref_DR_map. Release
19202 2016-04-20 Uros Bizjak <ubizjak@gmail.com>
19204 * config/i386/i386.md (*lea<mode>_general_1): Rename from
19205 *lea_general_1. Use explicit SWI12 mode interator.
19206 (*lea<mode>_general_2): Rename from *lea_general_2.
19207 Use explicit SWI12 mode interator.
19208 (*lea<mode>_general_3): Rename from *lea_general_3.
19209 Use explicit SWI12 mode interator.
19210 (*lea<SWI12:mode>_general_4): Split from *lea_general_4.
19211 Use explicit SWI12 mode interator.
19212 (*lea<SWI48:mode>_general_4): Split from *lea_general_4.
19213 Use explicit SWI48 mode interator.
19215 2016-04-20 H.J. Lu <hongjiu.lu@intel.com>
19217 * config/i386/i386.c (ix86_avx256_split_vector_move_misalign):
19218 Short-cut unaligned load and store cases. Handle all integer
19220 (ix86_expand_vector_move_misalign): Short-cut unaligned load
19221 and store cases. Call ix86_avx256_split_vector_move_misalign
19222 directly without checking mode class.
19224 2016-04-20 Andrew Pinski <apinski@cavium.com>
19225 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19228 * config/aarch64/aarch64.md (sibcall): Force call
19229 address to be DImode for ILP32.
19230 (sibcall_value): Likewise.
19232 2016-04-20 H.J. Lu <hongjiu.lu@intel.com>
19234 * doc/invoke.texi: Replace -skip-rax-setup with -mskip-rax-setup.
19236 2016-04-20 Richard Biener <rguenther@suse.de>
19238 * gimple-match.h (maybe_build_generic_op): Adjust prototype.
19239 * gimple-match-head.c (maybe_build_generic_op): Pass all ops
19240 by reference, clear op1 and op2 when GENERICizing BIT_FIELD_REF.
19241 (maybe_push_res_to_seq): Adjust.
19242 * gimple-fold.c (maybe_build_generic_op): Likewise.
19244 2016-04-20 Marek Polacek <polacek@redhat.com>
19246 * tree-if-conv.c (is_false_predicate): For NULL_TREE return false
19249 2016-04-20 Ilya Enkovich <ilya.enkovich@intel.com>
19251 * config/i386/sse.md (vec_unpacks_lo_hi): Always
19252 use kmovw to support AVX512F target.
19254 2016-04-20 Bin Cheng <bin.cheng@arm.com>
19256 * tree-scalar-evolution.c (interpret_rhs_expr): Handle BIT_AND_EXPR.
19258 2016-04-20 Marek Polacek <polacek@redhat.com>
19260 PR tree-optimization/70725
19261 * tree-if-conv.c (is_false_predicate): New function.
19262 (predicate_mem_writes): Use it.
19264 2016-04-20 Richard Biener <rguenther@suse.de>
19266 PR tree-optimization/70726
19267 * tree-vect-stmts.c (vectorizable_shift): Do not use scalar
19268 shift amounts from a pattern stmt operand.
19270 2016-04-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
19273 * config/s390/s390.c (s390_restore_gprs_from_fprs): Pick the new
19274 stack_restore_from_fpr pattern when restoring r15.
19275 (s390_optimize_prologue): Strip away the memory barrier in the
19276 parallel when trying to get rid of restore insns.
19277 * config/s390/s390.md ("stack_restore_from_fpr"): New insn
19278 definition for loading the stack pointer from an FPR. Compared to
19279 the normal move insn this pattern includes a full memory barrier.
19281 2016-04-19 Jakub Jelinek <jakub@redhat.com>
19283 PR middle-end/70680
19284 * gimplify.c (gimplify_omp_for): Call omp_notice_variable for
19285 implicitly linear or lastprivate iterator on the outer context.
19287 2016-04-19 H.J. Lu <hongjiu.lu@intel.com>
19289 * config/i386/i386.c (ix86_legitimate_combined_insn): Remove
19291 * config/i386/i386.md (ssememalign): Removed.
19292 * config/i386/sse.md: Remove ssememalign attribute from patterns.
19294 2016-04-19 H.J. Lu <hongjiu.lu@intel.com>
19297 * config/i386/avx512bwintrin.h (_mm512_mask_loadu_epi16): Pass
19298 const short * to __builtin_ia32_loaddquhi512_mask.
19299 (_mm512_maskz_loadu_epi16): Likewise.
19300 (_mm512_mask_storeu_epi16): Pass short * to
19301 __builtin_ia32_storedquhi512_mask.
19302 (_mm512_mask_loadu_epi8): Pass const char * to
19303 __builtin_ia32_loaddquqi512_mask.
19304 (_mm512_maskz_loadu_epi8): Likewise.
19305 (_mm512_mask_storeu_epi8): Pass char * to
19306 __builtin_ia32_storedquqi512_mask.
19307 * config/i386/avx512fintrin.h (_mm512_loadu_pd): Pass
19308 const double * to __builtin_ia32_loadupd512_mask.
19309 (_mm512_mask_loadu_pd): Likewise.
19310 (_mm512_maskz_loadu_pd): Likewise.
19311 (_mm512_storeu_pd): Pass double * to
19312 __builtin_ia32_storeupd512_mask.
19313 (_mm512_mask_storeu_pd): Likewise.
19314 (_mm512_loadu_ps): Pass const float * to
19315 __builtin_ia32_loadups512_mask.
19316 (_mm512_mask_loadu_ps): Likewise.
19317 (_mm512_maskz_loadu_ps): Likewise.
19318 (_mm512_storeu_ps): Pass float * to
19319 __builtin_ia32_storeups512_mask.
19320 (_mm512_mask_storeu_ps): Likewise.
19321 (_mm512_mask_loadu_epi64): Pass const long long * to
19322 __builtin_ia32_loaddqudi512_mask.
19323 (_mm512_maskz_loadu_epi64): Likewise.
19324 (_mm512_mask_storeu_epi64): Pass long long *
19325 to __builtin_ia32_storedqudi512_mask.
19326 (_mm512_loadu_si512): Pass const int * to
19327 __builtin_ia32_loaddqusi512_mask.
19328 (_mm512_mask_loadu_epi32): Likewise.
19329 (_mm512_maskz_loadu_epi32): Likewise.
19330 (_mm512_storeu_si512): Pass int * to
19331 __builtin_ia32_storedqusi512_mask.
19332 (_mm512_mask_storeu_epi32): Likewise.
19333 * config/i386/avx512vlbwintrin.h (_mm256_mask_storeu_epi8): Pass
19334 char * to __builtin_ia32_storedquqi256_mask.
19335 (_mm_mask_storeu_epi8): Likewise.
19336 (_mm256_mask_loadu_epi16): Pass const short * to
19337 __builtin_ia32_loaddquhi256_mask.
19338 (_mm256_maskz_loadu_epi16): Likewise.
19339 (_mm_mask_loadu_epi16): Pass const short * to
19340 __builtin_ia32_loaddquhi128_mask.
19341 (_mm_maskz_loadu_epi16): Likewise.
19342 (_mm256_mask_loadu_epi8): Pass const char * to
19343 __builtin_ia32_loaddquqi256_mask.
19344 (_mm256_maskz_loadu_epi8): Likewise.
19345 (_mm_mask_loadu_epi8): Pass const char * to
19346 __builtin_ia32_loaddquqi128_mask.
19347 (_mm_maskz_loadu_epi8): Likewise.
19348 (_mm256_mask_storeu_epi16): Pass short * to.
19349 __builtin_ia32_storedquhi256_mask.
19350 (_mm_mask_storeu_epi16): Pass short * to.
19351 __builtin_ia32_storedquhi128_mask.
19352 * config/i386/avx512vlintrin.h (_mm256_mask_loadu_pd): Pass
19353 const double * to __builtin_ia32_loadupd256_mask.
19354 (_mm256_maskz_loadu_pd): Likewise.
19355 (_mm_mask_loadu_pd): Pass onst double * to
19356 __builtin_ia32_loadupd128_mask.
19357 (_mm_maskz_loadu_pd): Likewise.
19358 (_mm256_mask_storeu_pd): Pass double * to
19359 __builtin_ia32_storeupd256_mask.
19360 (_mm_mask_storeu_pd): Pass double * to
19361 __builtin_ia32_storeupd128_mask.
19362 (_mm256_mask_loadu_ps): Pass const float * to
19363 __builtin_ia32_loadups256_mask.
19364 (_mm256_maskz_loadu_ps): Likewise.
19365 (_mm_mask_loadu_ps): Pass const float * to
19366 __builtin_ia32_loadups128_mask.
19367 (_mm_maskz_loadu_ps): Likewise.
19368 (_mm256_mask_storeu_ps): Pass float * to
19369 __builtin_ia32_storeups256_mask.
19370 (_mm_mask_storeu_ps): ass float * to
19371 __builtin_ia32_storeups128_mask.
19372 (_mm256_mask_loadu_epi64): Pass const long long * to
19373 __builtin_ia32_loaddqudi256_mask.
19374 (_mm256_maskz_loadu_epi64): Likewise.
19375 (_mm_mask_loadu_epi64): Pass const long long * to
19376 __builtin_ia32_loaddqudi128_mask.
19377 (_mm_maskz_loadu_epi64): Likewise.
19378 (_mm256_mask_storeu_epi64): Pass long long * to
19379 __builtin_ia32_storedqudi256_mask.
19380 (_mm_mask_storeu_epi64): Pass long long * to
19381 __builtin_ia32_storedqudi128_mask.
19382 (_mm256_mask_loadu_epi32): Pass const int * to
19383 __builtin_ia32_loaddqusi256_mask.
19384 (_mm256_maskz_loadu_epi32): Likewise.
19385 (_mm_mask_loadu_epi32): Pass const int * to
19386 __builtin_ia32_loaddqusi128_mask.
19387 (_mm_maskz_loadu_epi32): Likewise.
19388 (_mm256_mask_storeu_epi32): Pass int * to
19389 __builtin_ia32_storedqusi256_mask.
19390 (_mm_mask_storeu_epi32): Pass int * to
19391 __builtin_ia32_storedqusi128_mask.
19392 * config/i386/i386-builtin-types.def (PCSHORT): New.
19393 (PINT64): Likewise.
19394 (V64QI_FTYPE_PCCHAR_V64QI_UDI): Likewise.
19395 (V32HI_FTYPE_PCSHORT_V32HI_USI): Likewise.
19396 (V32QI_FTYPE_PCCHAR_V32QI_USI): Likewise.
19397 (V16SF_FTYPE_PCFLOAT_V16SF_UHI): Likewise.
19398 (V8DF_FTYPE_PCDOUBLE_V8DF_UQI): Likewise.
19399 (V16SI_FTYPE_PCINT_V16SI_UHI): Likewise.
19400 (V16HI_FTYPE_PCSHORT_V16HI_UHI): Likewise.
19401 (V16QI_FTYPE_PCCHAR_V16QI_UHI): Likewise.
19402 (V8SF_FTYPE_PCFLOAT_V8SF_UQI): Likewise.
19403 (V8DI_FTYPE_PCINT64_V8DI_UQI): Likewise.
19404 (V8SI_FTYPE_PCINT_V8SI_UQI): Likewise.
19405 (V8HI_FTYPE_PCSHORT_V8HI_UQI): Likewise.
19406 (V4DF_FTYPE_PCDOUBLE_V4DF_UQI): Likewise.
19407 (V4SF_FTYPE_PCFLOAT_V4SF_UQI): Likewise.
19408 (V4DI_FTYPE_PCINT64_V4DI_UQI): Likewise.
19409 (V4SI_FTYPE_PCINT_V4SI_UQI): Likewise.
19410 (V2DF_FTYPE_PCDOUBLE_V2DF_UQI): Likewise.
19411 (V2DI_FTYPE_PCINT64_V2DI_UQI): Likewise.
19412 (VOID_FTYPE_PDOUBLE_V8DF_UQI): Likewise.
19413 (VOID_FTYPE_PDOUBLE_V4DF_UQI): Likewise.
19414 (VOID_FTYPE_PDOUBLE_V2DF_UQI): Likewise.
19415 (VOID_FTYPE_PFLOAT_V16SF_UHI): Likewise.
19416 (VOID_FTYPE_PFLOAT_V8SF_UQI): Likewise.
19417 (VOID_FTYPE_PFLOAT_V4SF_UQI): Likewise.
19418 (VOID_FTYPE_PINT64_V8DI_UQI): Likewise.
19419 (VOID_FTYPE_PINT64_V4DI_UQI): Likewise.
19420 (VOID_FTYPE_PINT64_V2DI_UQI): Likewise.
19421 (VOID_FTYPE_PINT_V16SI_UHI): Likewise.
19422 (VOID_FTYPE_PINT_V8SI_UHI): Likewise.
19423 (VOID_FTYPE_PINT_V4SI_UHI): Likewise.
19424 (VOID_FTYPE_PSHORT_V32HI_USI): Likewise.
19425 (VOID_FTYPE_PSHORT_V16HI_UHI): Likewise.
19426 (VOID_FTYPE_PSHORT_V8HI_UQI): Likewise.
19427 (VOID_FTYPE_PCHAR_V64QI_UDI): Likewise.
19428 (VOID_FTYPE_PCHAR_V32QI_USI): Likewise.
19429 (VOID_FTYPE_PCHAR_V16QI_UHI): Likewise.
19430 (V64QI_FTYPE_PCV64QI_V64QI_UDI): Removed.
19431 (V32HI_FTYPE_PCV32HI_V32HI_USI): Likewise.
19432 (V32QI_FTYPE_PCV32QI_V32QI_USI): Likewise.
19433 (V16HI_FTYPE_PCV16HI_V16HI_UHI): Likewise.
19434 (V16QI_FTYPE_PCV16QI_V16QI_UHI): Likewise.
19435 (V8HI_FTYPE_PCV8HI_V8HI_UQI): Likewise.
19436 (VOID_FTYPE_PV32HI_V32HI_USI): Likewise.
19437 (VOID_FTYPE_PV16HI_V16HI_UHI): Likewise.
19438 (VOID_FTYPE_PV8HI_V8HI_UQI): Likewise.
19439 (VOID_FTYPE_PV64QI_V64QI_UDI): Likewise.
19440 (VOID_FTYPE_PV32QI_V32QI_USI): Likewise.
19441 (VOID_FTYPE_PV16QI_V16QI_UHI): Likewise.
19442 * config/i386/i386.c (ix86_emit_save_reg_using_mov): Don't
19444 (ix86_emit_restore_sse_regs_using_mov): Don't use UNSPEC_LOADU.
19445 (ix86_avx256_split_vector_move_misalign): Don't use unaligned
19447 (ix86_expand_vector_move_misalign): Likewise.
19448 (bdesc_special_args): Use CODE_FOR_movvNXY_internal and pointer
19449 to scalar function prototype for unaligned load/store builtins.
19450 (ix86_expand_special_args_builtin): Updated.
19451 * config/i386/sse.md (UNSPEC_LOADU): Removed.
19452 (UNSPEC_STOREU): Likewise.
19453 (VI_ULOADSTORE_BW_AVX512VL): Likewise.
19454 (VI_ULOADSTORE_F_AVX512VL): Likewise.
19455 (ssescalarsize): Handle V4TI, V2TI and V1TI.
19456 (<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
19457 (*<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>): Likewise.
19458 (<sse>_storeu<ssemodesuffix><avxsizesuffix>): Likewise.
19459 (<avx512>_storeu<ssemodesuffix><avxsizesuffix>_mask): Likewise.
19460 (<sse2_avx_avx512f>_loaddqu<mode><mask_name>): Likewise.
19461 (*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"): Likewise.
19462 (sse2_avx_avx512f>_storedqu<mode>): Likewise.
19463 (<avx512>_storedqu<mode>_mask): Likewise.
19464 (*sse4_2_pcmpestr_unaligned): Likewise.
19465 (*sse4_2_pcmpistr_unaligned): Likewise.
19466 (*mov<mode>_internal): Renamed to ...
19467 (mov<mode>_internal): This. Remove check of AVX and IAMCU on
19468 misaligned operand. Replace vmovdqu64 with vmovdqu<ssescalarsize>.
19469 (movsd/movhpd to movupd peephole): Don't use UNSPEC_LOADU.
19470 (movlpd/movhpd to movupd peephole): Don't use UNSPEC_STOREU.
19472 2016-04-19 Richard Biener <rguenther@suse.de>
19474 PR tree-optimization/70171
19475 * tree-ssa-phiprop.c: Include stor-layout.h.
19476 (phiprop_insert_phi): Handle the aggregate copy case.
19477 (propagate_with_phi): Likewise.
19479 2016-04-19 Uros Bizjak <ubizjak@gmail.com>
19481 * config/i386/i386.c (ix86_decompose_address): Use lowpart_subreg
19482 instead of simplify_gen_subreg (... , 0).
19483 (ix86_delegitimize_address): Ditto.
19484 (ix86_split_divmod): Ditto.
19485 (ix86_split_copysign_const): Ditto.
19486 (ix86_split_copysign_var): Ditto.
19487 (ix86_expand_args_builtin): Ditto.
19488 (ix86_expand_round_builtin): Ditto.
19489 (ix86_expand_special_args_builtin): Ditto.
19490 * config/i386/i386.md (TARGET_USE_VECTOR_FP_CONVERTS splitters): Ditto.
19491 (TARGET_SSE_PARTIAL_REG_DEPENDENCY splitters and peephole2s): Ditto.
19492 (udivmodqi4): Ditto.
19493 (absneg splitters): Ditto.
19494 (*jcc_bt<mode>_1): Ditto.
19496 2016-04-19 Richard Biener <rguenther@suse.de>
19498 PR tree-optimization/70724
19499 * tree-ssa-sccvn.c (scc_vn_restore_ssa_info): Split SSA info
19500 restoring out from ...
19501 (free_scc_vn): ... here.
19502 * tree-ssa-sccvn.h (scc_vn_restore_ssa_info): Declare.
19503 * tres-ssa-pre.c (pass_pre::execute): Restore SSA info before
19505 (pass_fre::execute): Restore SSA info.
19507 2016-04-19 Richard Biener <rguenther@suse.de>
19509 * gimple-walk.h (struct walk_stmt_info): Add stmt member.
19510 * gimple-walk.c (walk_gimple_op): Initialize it.
19511 (walk_gimple_asm): Set wi->is_lhs before each callback invocation.
19512 * tree-inline.c (remap_gimple_op_r): Set SSA_NAME_DEF_STMT when
19513 remapping SSA names of defs.
19514 (copy_bb): Remove walk over all SSA defs and SSA_NAME_DEF_STMT
19517 2016-04-18 Vladimir Makarov <vmakarov@redhat.com>
19519 PR middle-end/70689
19520 * lra-constraints.c (equiv_substition_p): New.
19521 (process_alt_operands): Use it.
19522 (swap_operands): Swap it.
19523 (curr_insn_transform): Update it.
19525 2016-04-18 Michael Matz <matz@suse.de>
19527 * tree.h (TYPE_ALIGN, DECL_ALIGN): Return shifted amount.
19528 (SET_TYPE_ALIGN, SET_DECL_ALIGN): New.
19529 * tree-core.h (tree_type_common.align): Use bit-field.
19530 (tree_type_common.spare): New.
19531 (tree_decl_common.off_align): Make smaller.
19532 (tree_decl_common.align): Use bit-field.
19534 * expr.c (expand_expr_addr_expr_1): Use SET_TYPE_ALIGN.
19535 * omp-low.c (install_var_field): Use SET_DECL_ALIGN.
19536 (scan_sharing_clauses): Ditto.
19537 (finish_taskreg_scan): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
19538 (omp_finish_file): Ditto.
19539 * stor-layout.c (do_type_align): Use SET_DECL_ALIGN.
19540 (layout_decl): Ditto.
19541 (relayout_decl): Ditto.
19542 (finalize_record_size): Use SET_TYPE_ALIGN.
19543 (finalize_type_size): Ditto.
19544 (finish_builtin_struct): Ditto.
19545 (layout_type): Ditto.
19546 (initialize_sizetypes): Ditto.
19547 * targhooks.c (std_gimplify_va_arg_expr): Use SET_TYPE_ALIGN.
19548 * tree-nested.c (insert_field_into_struct): Use SET_TYPE_ALIGN.
19549 (lookup_field_for_decl): Use SET_DECL_ALIGN.
19550 (get_chain_field): Ditto.
19551 (get_trampoline_type): Ditto.
19552 (get_nl_goto_field): Ditto.
19553 * tree-streamer-in.c (unpack_ts_decl_common_value_fields): Use
19555 (unpack_ts_type_common_value_fields): Use SET_TYPE_ALIGN.
19556 * gimple-expr.c (copy_var_decl): Use SET_DECL_ALIGN.
19557 * tree.c (make_node_stat): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
19558 (build_qualified_type): Use SET_TYPE_ALIGN.
19559 (build_aligned_type, build_range_type_1): Ditto.
19560 (build_atomic_base): Ditto.
19561 (build_common_tree_nodes): Ditto.
19562 * cfgexpand.c (align_local_variable): Use SET_DECL_ALIGN.
19563 (expand_one_stack_var_at): Ditto.
19564 * coverage.c (build_var): Use SET_DECL_ALIGN.
19565 * except.c (init_eh): Ditto.
19566 * function.c (assign_parm_setup_block): Ditto.
19567 * symtab.c (increase_alignment_1): Ditto.
19568 * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Ditto.
19569 * tree-vect-stmts.c (ensure_base_align): Ditto.
19570 * varasm.c (align_variable): Ditto.
19571 (assemble_variable): Ditto.
19572 (build_constant_desc): Ditto.
19573 (output_constant_def_contents): Ditto.
19575 * config/arm/arm.c (arm_relayout_function): Use SET_DECL_ALIGN.
19576 * config/avr/avr.c (avr_adjust_type_node): Use SET_TYPE_ALIGN.
19577 * config/mips/mips.c (mips_std_gimplify_va_arg_expr): Ditto.
19578 * config/msp430/msp430.c (msp430_gimplify_va_arg_expr): Ditto.
19579 * config/spu/spu.c (spu_build_builtin_va_list): Use SET_DECL_ALIGN.
19581 2016-04-18 H.J. Lu <hongjiu.lu@intel.com>
19584 * config/i386/sse.md (sse2_loadlpd): Accept load from "xm" and
19585 replace %vmovsd with "%vmovq".
19586 (vec_concatv2df): Likewise.
19588 2016-04-18 Uros Bizjak <ubizjak@gmail.com>
19590 * config/i386/mmx.md (*vec_extractv2sf_0): Use gen_lowpart.
19591 (*vec_extractv2si_0): Ditto.
19592 * config/i386/sse.md (*vec_extractv4sf_0): Ditto.
19593 (zero_extended_scalar_load_operand splitters): Ditto.
19594 (vec_extract splitters): Ditto.
19595 (*vec_extractv4si_0_zext): Ditto.
19596 (avx_<castmode><avxsizesuffix>_<castmode>): Use gen_lowpart
19597 and lowpart_subreg.
19598 (avx512f_<castmode><avxsizesuffix>_<castmode>): Ditto.
19599 (avx512f_<castmode><avxsizesuffix>_256<castmode>): Ditto.
19600 (*sse4_1_extractps): Use lowpart_subreg.
19601 * config/i386/i386.md (x87 floatsplitter): Use gen_lowpart.
19603 2016-04-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
19605 * doc/install.texi (Specific, i?86-*-solaris2.10): Update gas and
19607 (Specific, *-*-solaris2*): Update Solaris 11 bundled gcc versions.
19608 Mention Solaris 11 packaging changes.
19609 Update gas and gld requirements.
19610 Remove reference to pre-Solaris 10 bug.
19611 (Specific, sparc-sun-solaris2*): Remove reference to pre-Solaris 10
19613 (Specific, sparc64-*-solaris2*): Remove reference to bootstrap
19616 2016-04-17 Jan Hubicka <jh@suse.cz>
19618 * tree-ssa-loop-ivopts.c (avg_loop_niter): Use also
19619 max_loop_iterations_int.
19621 2016-04-18 Richard Biener <rguenther@suse.de>
19623 PR tree-optimization/43434
19624 * tree-ssa-structalias.c (struct vls_data): New.
19625 (visit_loadstore): Handle all pointer-based accesses.
19626 (compute_dependence_clique): Compute a bitmap of restrict tags
19627 assigned bases and pass it to visit_loadstore.
19629 2016-04-18 Matthew Wahab <matthew.wahab@arm.com>
19632 * config/arm/bpabi.h (BE8_LINK_SPEC): Add entries for armv8+crc,
19633 armv8.1-a and armv8.1-a+crc.
19635 2016-04-18 Richard Biener <rguenther@suse.de>
19637 PR tree-optimization/70701
19638 * tree-ssa-sccvn.c (vn_reference_lookup_3): Resolve fully constant
19639 references after translating through a memcpy.
19641 2016-04-18 Richard Biener <rguenther@suse.de>
19643 * tree-ssa-pre.c (postorder, postorder_num): Make locals ...
19644 (compute_antic): ... here. For partial antic use regular
19645 postorder and scrap iteration.
19646 (compute_partial_antic_aux): Remove unused return value.
19647 (init_pre): Do not allocate postorder.
19648 (fini_pre): Do not free postorder.
19650 2016-04-18 Richard Biener <rguenther@suse.de>
19652 PR middle-end/37870
19653 * expmed.c (extract_bit_field_1): Remove broken case
19654 using a wider MODE_INT mode.
19656 2016-04-18 Segher Boessenkool <segher@kernel.crashing.org>
19658 * has-brig.c (lendian16): Don't try to use __builtin_bswap16
19659 unless compiling with at least GCC-4.8.
19661 2016-04-17 Jan Hubicka <jh@suse.cz>
19664 * graphite.c (graphite_finalize): Update call to
19665 tree_estimate_probability.
19666 * predict.h (tree_estimate_probability): Update prototype.
19668 2016-04-17 Jan Hubicka <jh@suse.cz>
19670 * predict.c (combine_predictions_for_bb): Add dry_run parmaeter.
19671 (tree_estimate_probability): Likewise.
19672 (pass_profile::execute): Update.
19673 (report_predictor_hitrates): New function.
19674 * profile.c (compute_branch_probabilities): Use it.
19675 * predict.h (report_predictor_hitrates): Declare.
19677 2016-04-17 Jan Hubicka <jh@suse.cz>
19680 * cgraph.h (cgraph_node::set_const_flag,
19681 cgraph_node::set_pure_flag): Update prototype to return bool;
19683 * cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases): Thunks
19684 of interposable symbol are interposable, too.
19685 (cgraph_set_const_flag_1): Rename to ...
19686 (set_const_flag_1): ... this one; change to self recursive function
19687 instead of call_for_symbol_thunks_and_aliases. Handle correctly
19688 clearnig the flag in all variants and also virtual thunks of const
19689 functions are pure; track if any change was done.
19690 (cgraph_node::set_const_flag): Update.
19691 (struct set_pure_flag_info): New struct.
19692 (cgraph_set_pure_flag_1): Rename to ...
19693 (set_pure_flag_1): ... this one; take set_pure_flag_info parameter
19694 rather than pointer encoded flags; track if any changes was done;
19695 handle correctly clearning flag and setting flag of aliases already
19697 (cgraph_node::set_pure_flag): Update.
19698 (cgraph_node::set_nothrow_flag): Handle correctly clearning the flag.
19700 2016-04-17 Tom de Vries <tom@codesourcery.com>
19703 * pretty-print.c (pp_write_text_as_dot_label_to_stream): Escape
19704 backslash in label.
19706 2016-04-17 Tom de Vries <tom@codesourcery.com>
19708 * pretty-print.c (pp_write_text_as_dot_label_to_stream): Classify chars
19709 '{}<> ' as escape-for-record.
19711 2016-04-17 Tom de Vries <tom@codesourcery.com>
19713 * pretty-print.c (pp_write_text_as_dot_label_to_stream): Simplify loop
19716 2016-04-17 Tom de Vries <tom@codesourcery.com>
19719 * tree-pass.h (class opt_pass): Remove graph_dump_initialized member.
19720 * dumpfile.h (struct dump_file_info): Add graph_dump_initialized field.
19721 * dumpfile.c (dump_files): Initialize graph_dump_initialized field.
19722 * passes.c (finish_optimization_passes): Only call
19723 finish_graph_dump_file if dfi->graph_dump_initialized.
19724 (execute_function_dump, pass_init_dump_file): Use
19725 dfi->graph_dump_initialized instead of pass->graph_dump_initialized.
19727 2016-04-17 Tom de Vries <tom@codesourcery.com>
19729 PR tree-optimization/70256
19730 * tree-ssa-structalias.c (dump_varinfo, debug_varinfo, dump_varmap)
19731 (debug_varmap): New function.
19733 2016-04-17 Tom de Vries <tom@codesourcery.com>
19736 * passes.c (pass_manager::register_pass): Propagate pflags.
19738 2016-04-17 Tom de Vries <tom@codesourcery.com>
19741 * pass_manager.h (TERMINATE_PASS_LIST): Add pass argument.
19742 * passes.c (pass_manager::pass_manager): Declare and init p_start in
19743 INSERT_PASSES_AFTER. Add pass parameter to TERMINATE_PASS_LIST, and
19744 check if it's equal to p_start.
19745 * passes.def: Add arguments to TERMINATE_PASS_LISTs.
19747 2016-04-15 Jan Hubicka <jh@suse.cz>
19750 * cgraph.c (cgraph_set_const_flag_1): Only set as pure if
19751 function does not bind to current def.
19752 * ipa-pure-const.c (worse_state): Add FROM and TO parameters;
19753 handle conservatively calls to functions that does not need to bind
19755 (check_call): Update call of worse_state.
19756 (ignore_edge_for_nothrow): Update.
19757 (ignore_edge_for_pure_const): Likewise.
19758 (propagate_pure_const): Update calls to worse_state.
19759 (skip_function_for_local_pure_const): Reformat comments.
19761 2016-04-15 Jan Hubicka <jh@suse.cz>
19764 * cgraph.c (cgraph_node::get_availability): Add REF parameter.
19765 (cgraph_node::function_symbol): Likewise.
19766 (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
19767 * cgraph.h (symtab_node::get_availabbility): Add REF parameter.
19768 (symtab_node::ultimate_alias_target): Add REF parameter.
19769 (symtab_node::binds_to_current_def_p): Declare.
19770 (symtab_node;:ultimate_alias_target_1): Add REF parameter.
19771 (cgraph_node::function_symbol): Likewise.
19772 (cgraph_node::function_or_virtual_thunk_symbol): Likewise.
19773 (cgraph_node::get_availability): Likewise.
19774 (cgraph_edge::binds_to_current_def_p): New inline function.
19775 (varpool_node::get_availability): Add REF parameter.
19776 (varpool_node::ultimate_alias_target): Likewise.
19777 * symtab.c (symtab_node::ultimate_alias_target_1): Likewise.
19778 (symtab_node::binds_to_current_def_p): Likewise.
19779 * varpool.c (varpool_node::get_availability): Likewise.
19781 2016-04-15 Kirill Yukhin <kirill.yukhin@intel.com>
19784 * config/i386/sse.md(define_insn "<avx512>_vec_dup<mode><mask_name>"):
19785 Fix mode size check.
19787 2016-04-15 Jakub Jelinek <jakub@redhat.com>
19789 * BASE-VER: Set to 7.0.0.
19791 2016-04-15 Alexander Monakov <amonakov@ispras.ru>
19793 * config/nvptx/nvptx.opt (moptimize): Add a period at end of help text.
19795 2016-04-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19797 * doc/invoke.texi (ARM Options): Add note on deprecation of pre-ARMv4T
19798 architecture revisions.
19800 2016-04-15 Bernd Schmidt <bschmidt@redhat.com>
19802 * config/i386/i386-protos.h (ix86_using_red_zone): Declare.
19803 * config/i386/i386.c (ix86_using_red_zone): No longer static.
19804 * config/i386/i386.md (stack decrement to push peepholes): Guard
19805 with !x86_using_red_zone ().
19807 2016-04-15 Jakub Jelinek <jakub@redhat.com>
19810 * tree-pretty-print.c (do_niy): Add FLAGS argument, pass it down
19811 to dump_generic_node.
19812 (NIY): Pass also flags to do_niy.
19814 2016-04-15 Thomas Schwinge <thomas@codesourcery.com>
19816 * omp-low.c (simd_clone_struct_alloc, simd_clone_struct_copy)
19817 (simd_clone_vector_of_formal_parm_types)
19818 (simd_clone_clauses_extract, simd_clone_compute_base_data_type)
19819 (simd_clone_mangle, simd_clone_create)
19820 (simd_clone_adjust_return_type, create_tmp_simd_array)
19821 (simd_clone_adjust_argument_types, simd_clone_init_simd_arrays)
19822 (struct modify_stmt_info, ipa_simd_modify_stmt_ops)
19823 (ipa_simd_modify_function_body, simd_clone_linear_addend)
19824 (simd_clone_adjust, expand_simd_clones, ipa_omp_simd_clone)
19825 (pass_data_omp_simd_clone, class pass_omp_simd_clone)
19826 (pass_omp_simd_clone::gate, make_pass_omp_simd_clone): Move into...
19827 * omp-simd-clone.c: ... this new file.
19828 (simd_clone_vector_of_formal_parm_types): Make it static.
19829 * Makefile.in (OBJS): Add omp-simd-clone.o.
19831 2016-04-15 Kirill Yukhin <kirill.yukhin@intel.com>
19834 * config/i386/sse.md: Use proper memory operand modifiers.
19837 2016-04-15 Richard Biener <rguenther@suse.de>
19838 Alan Modra <amodra@gmail.com>
19840 PR tree-optimization/70130
19841 * tree-vect-data-refs.c (vect_supportable_dr_alignment): Detect
19842 when alignment stays not the same and no not use the realign
19845 2016-04-14 Michael Meissner <meissner@linux.vnet.ibm.com>
19848 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Add
19849 direct move handlers for KFmode. Change TFmode handlers test from
19850 FLOAT128_IEEE_P to FLOAT128_VECTOR_P.
19852 2016-04-14 Jakub Jelinek <jakub@redhat.com>
19855 * ipa-utils.h (polymorphic_ctor_dtor_p): New prototype.
19856 * ipa-polymorphic-call.c (polymorphic_ctor_dtor_p): New function.
19857 (inlined_polymorphic_ctor_dtor_block_p): Use it.
19858 * tree-ssa-live.c (remove_unused_scope_block_p): When
19859 in_ctor_dtor_block, avoid discarding not just BLOCKs with
19860 BLOCK_ABSTRACT_ORIGIN being FUNCTION_DECL, but even when
19861 block_ultimate_origin is FUNCTION_DECL.
19862 (remove_unused_locals): If current_function_decl is
19863 polymorphic_ctor_dtor_p, pass initial true to
19864 remove_unused_scope_block_p' is_ctor_dtor_block.
19866 2016-04-14 Martin Sebor <msebor@redhat.com>
19871 * doc/extend.texi (Variable Length): Revert.
19873 2016-04-14 Marek Polacek <polacek@redhat.com>
19874 Jan Hubicka <hubicka@ucw.cz>
19877 * tree.c (verify_type): Disable the canonical type of main variant
19880 2016-04-14 Jason Merrill <jason@redhat.com>
19882 * cfgexpand.c, expr.c: Revert previous change.
19884 2016-04-14 Cesar Philippidis <cesar@codesourcery.com>
19886 PR middle-end/70643
19887 * omp-low.c (lower_oacc_reductions): Check for TREE_CONSTANT
19888 when building a mem ref for the incoming reduction variable.
19890 2016-04-14 Richard Biener <rguenther@suse.de>
19892 PR tree-optimization/70614
19893 * tree-scalar-evolution.c (analyze_evolution_in_loop): Terminate
19894 loop if the evolution dropped to chrec_dont_know.
19895 (interpret_condition_phi): Likewise.
19897 2016-04-14 Richard Biener <rguenther@suse.de>
19899 PR tree-optimization/70623
19900 * tree-ssa-pre.c (changed_blocks): Make global ...
19901 (compute_antic): ... local here. Move and fix worklist
19902 handling here. Do not clear EDGE_DFS_BACK or call mark_dfs_back_edges.
19903 (compute_antic_aux): Add dumping for MAX assumed succs. Remove
19904 worklist handling, dump when ANTIC_IN changed.
19905 (compute_partial_antic_aux): Remove worklist handling.
19906 (init_pre): Do not compute post dominators. Add a comment about
19907 the CFG order chosen.
19908 (fini_pre): Do not free post dominators.
19910 2016-04-13 Martin Sebor <msebor@redhat.com>
19915 * doc/extend.texi (Variable Length): Document C++ specifics.
19917 2016-04-13 Jakub Jelinek <jakub@redhat.com>
19920 * ipa-pure-const.c (pass_nothrow::execute): Call maybe_clean_eh_stmt
19921 on all recursive call stmts. Return TODO_cleanup_cfg if any dead
19922 eh edges have been purged.
19925 * tree-sra.c (create_access_replacement,
19926 get_replaced_param_substitute): Set DECL_NAMELESS on repl if it
19928 * tree-pretty-print.c (dump_fancy_name): New function.
19929 (dump_decl_name, dump_generic_node): Use it.
19931 2016-04-13 Jason Merrill <jason@redhat.com>
19933 * cfgexpand.c (pass_expand::execute): Handle attribute "abi warning".
19934 * expr.c (expand_expr_real_1): Likewise.
19936 2016-04-13 Ilya Enkovich <ilya.enkovich@intel.com>
19938 * config/i386/i386.md (kunpckhi): Swap operands.
19939 (kunpcksi): Likewise.
19940 (kunpckdi): Likewise.
19941 * config/i386/sse.md (vec_pack_trunc_qi): Likewise.
19942 (vec_pack_trunc_<mode>): Likewise.
19944 2016-04-13 Jakub Jelinek <jakub@redhat.com>
19947 * explow.c (convert_memory_address_addr_space_1): Formatting fix.
19949 PR middle-end/70633
19950 * gimplify.c (gimplify_init_constructor): Clear TREE_STATIC if
19951 gimplification turns some element into non-constant.
19954 * rtl.h (convert_memory_address_addr_space_1): New prototype.
19955 * explow.c (convert_memory_address_addr_space_1): No longer static,
19956 add NO_EMIT argument and don't call convert_modes if true, pass
19957 it down recursively, remove break after return.
19958 (convert_memory_address_addr_space): Adjust caller.
19959 * simplify-rtx.c (simplify_unary_operation_1): Call
19960 convert_memory_address_addr_space_1 instead of convert_memory_address,
19961 if it returns NULL, don't simplify.
19963 2016-04-12 Eric Botcazou <ebotcazou@adacore.com>
19966 * config/sparc/sparc.c (sparc_compute_frame_size): Add parentheses.
19968 2016-04-12 Jakub Jelinek <jakub@redhat.com>
19970 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
19971 Bump the upper SIMDLEN limits, so that if the return type or
19972 characteristic type if the return type is void can be passed in
19973 all available SSE2/AVX/AVX2/AVX512-F registers, the SIMDLEN is
19976 2016-04-12 Michael Meissner <meissner@linux.vnet.ibm.com>
19979 * config/rs6000/rs6000.md (ieee_128bit_vsx_neg<mode>2_internal):
19980 Do not use "=" constraint on an input constraint.
19981 (ieee_128bit_vsx_abs<mode>2_internal): Likewise.
19982 (ieee_128bit_vsx_nabs<mode>2_internal): Likewise.
19983 (ieee_128bit_vsx_nabs<mode>2): Correct splitter so that it
19984 generates (neg (abs ...)) instead of (abs ...).
19986 2016-04-12 Jakub Jelinek <jakub@redhat.com>
19988 PR rtl-optimization/70596
19989 * lra-spills.c (spill_pseudos): Don't delete debug insns, instead
19990 just invalidate LRA data and reset them. Adjust dump wording.
19992 2016-04-12 Martin Liska <mliska@suse.cz>
19995 2016-03-30 Jan Hubicka <hubicka@ucw.cz>
19997 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
19999 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
20000 max_loop_iterations_int.
20001 (tree_unswitch_outer_loop): Likewise.
20002 * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
20003 * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
20005 2016-04-12 Tom de Vries <tom@codesourcery.com>
20007 PR tree-optimization/68756
20008 * graphite-isl-ast-to-gimple.c (copy_cond_phi_args): Use new_expr
20009 instead of new_name.
20011 2016-04-12 Jakub Jelinek <jakub@redhat.com>
20013 PR tree-optimization/70602
20014 * tree-sra.c (generate_subtree_copies): Don't write anything into
20015 constant pool decls.
20017 * omp-low.c (lower_omp_target): Use GOMP_MAP_FIRSTPRIVATE_INT
20018 regardless whether there are depend clauses or not.
20020 2016-04-11 Michael Meissner <meissner@linux.vnet.ibm.com>
20023 * config/rs6000/rs6000.c (rs6000_opt_masks): Disable using the
20024 target attribute and pragma from changing the -mfloat128
20025 and -mfloat128-hardware options.
20027 * doc/extend.texi (Additional Floating Types): Document PowerPC
20028 __float128 restrictions.
20030 2016-04-11 James Greenhalgh <james.greenhalgh@arm.com>
20033 * config/aarch64/driver-aarch64.c
20034 (aarch64_get_extension_string_for_isa_flags): New.
20035 (arch_extension): Rename to...
20036 (aarch64_arch_extension): ...This.
20037 (ext_to_feat_string): Rename to...
20038 (aarch64_extensions): ...This.
20039 (aarch64_core_data): Keep track of architecture extension flags.
20040 (cpu_data): Rename to...
20041 (aarch64_cpu_data): ...This.
20042 (aarch64_arch_driver_info): Keep track of architecture extension
20044 (get_arch_name_from_id): Rename to...
20045 (get_arch_from_id): ...This, change return type.
20046 (host_detect_local_cpu): Update and reformat for renames, handle
20047 extensions through common infrastructure.
20049 2016-04-11 James Greenhalgh <james.greenhalgh@arm.com>
20052 * config/aarch64/aarch64-common.c (aarch64_option_extension): Keep
20053 track of a canonical flag name.
20054 (all_extensions): Likewise.
20055 (arch_to_arch_name): Also track extension flags enabled by the arch.
20056 (all_architectures): Likewise.
20057 (aarch64_parse_extension): Move to here.
20058 (aarch64_get_extension_string_for_isa_flags): Take a new argument,
20060 (aarch64_rewrite_selected_cpu): Update for above change.
20061 * config/aarch64/aarch64-option-extensions.def: Rework the way flags
20062 are handled, such that the single explicit value enabled by an
20063 extension is kept seperate from the implicit values it also enables.
20064 * config/aarch64/aarch64-protos.h (aarch64_parse_opt_result): Move
20066 (aarch64_parse_extension): New.
20067 * config/aarch64/aarch64.c (aarch64_parse_opt_result): Move from
20068 here to config/aarch64/aarch64-protos.h.
20069 (aarch64_parse_extension): Move from here to
20070 common/config/aarch64/aarch64-common.c.
20071 (aarch64_option_print): Update.
20072 (aarch64_declare_function_name): Likewise.
20073 (aarch64_start_file): Likewise.
20074 * config/aarch64/driver-aarch64.c (arch_extension): Keep track of
20075 the canonical flag for extensions.
20076 * config.gcc (aarch64*-*-*): Extend regex for capturing extension
20079 2016-04-11 James Greenhalgh <james.greenhalgh@arm.com>
20081 * config/aarch64/aarch64.h (AARCH64_FL_FOR_ARCH8_1): Also add
20084 2016-04-09 Tom de Vries <tom@codesourcery.com>
20086 PR tree-optimization/68953
20087 * graphite-sese-to-poly.c (pdr_add_memory_accesses): Order accesses from
20088 first to last subscript.
20090 2016-04-09 Jakub Jelinek <jakub@redhat.com>
20092 PR tree-optimization/70586
20093 * tree-ssa-ifcombine.c (bb_no_side_effects_p): Return false
20096 2016-04-08 Cesar Philippidis <cesar@codesourcery.com>
20100 PR tree-optimization/70373
20101 PR middle-end/70533
20102 PR middle-end/70534
20103 PR middle-end/70535
20104 * gimplify.c (gimplify_adjust_omp_clauses): Add or adjust data
20105 clauses for acc parallel reductions as necessary. Error on those
20107 * omp-low.c (scan_sharing_clauses): Don't install variables which
20108 are used in acc parallel reductions.
20109 (lower_rec_input_clauses): Remove dead code.
20110 (lower_oacc_reductions): Add support for reference reductions.
20111 (lower_reduction_clauses): Remove dead code.
20112 (lower_omp_target): Don't remap variables appearing in acc parallel
20114 * tree.h (OMP_CLAUSE_MAP_IN_REDUCTION): New macro.
20116 2016-04-08 Jakub Jelinek <jakub@redhat.com>
20118 PR middle-end/70593
20119 * tree-ssa-coalesce.c (build_ssa_conflict_graph): For stmt
20120 with multiple SSA_NAME defs, force the outputs other than first
20121 to be live before calling live_track_process_def on each output.
20123 PR rtl-optimization/70574
20124 * fwprop.c (forward_propagate_and_simplify): Don't add
20125 REG_EQUAL note if DF_REF_REG (use) is a paradoxical subreg.
20126 (try_fwprop_subst): Don't add REG_EQUAL note if there are any
20127 paradoxical subregs within *loc.
20129 2016-04-08 Thomas Schwinge <thomas@codesourcery.com>
20131 * config/arc/arc.h (LINK_COMMAND_SPEC): Use gt to ignore
20132 -ftree-parallelize-loops={0,1}.
20133 * config/darwin.h (LINK_COMMAND_SPEC_A): Likewise.
20134 * config/i386/mingw32.h (GOMP_SELF_SPECS): Likewise.
20135 * config/ia64/hpux.h (LIB_SPEC): Likewise.
20136 * config/pa/pa-hpux11.h (LIB_SPEC): Likewise.
20137 * config/pa/pa64-hpux.h (LIB_SPEC): Likewise.
20139 2016-04-08 Maxim Ostapenko <m.ostapenko@samsung.com>
20142 * asan.c (instrument_derefs): If we get unknown location, extract it
20143 with EXPR_LOCATION.
20144 (maybe_instrument_call): Instrument gimple_call's arguments if needed.
20146 2016-04-08 Tom de Vries <tom@codesourcery.com>
20148 * omp-low.c (lower_omp_target): Set TREE_NO_WARNING for oacc
20149 implicit firstprivate clause.
20151 2016-04-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20154 * config/arm/thumb2.md (tst + branch-> lsls + branch
20155 peephole below *orsi_not_shiftsi_si): Require that condition
20156 register is dead after the peephole.
20157 (second peephole after the above): Likewise.
20159 2016-04-08 Alan Modra <amodra@gmail.com>
20162 * builtins.c (fold_builtin_classify): For IBM extended precision,
20163 look at just the high-order double to test for NaN.
20164 (fold_builtin_interclass_mathfn): Similarly for Inf. For isnormal
20165 test just the high double for Inf but both doubles for subnormal
20168 2016-04-07 Jakub Jelinek <jakub@redhat.com>
20170 * cgraph.h (struct cgraph_simd_clone): Add mask_mode field.
20171 * omp-low.c (simd_clone_init_simd_arrays, simd_clone_adjust): Handle
20172 node->simdclone->mask_mode != VOIDmode masks.
20173 (simd_clone_adjust_argument_types): Likewise. Move sc var definition
20174 earlier, use it instead of node->simdclone.
20175 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
20176 Set clonei->mask_mode.
20178 2016-04-06 Patrick Palka <ppalka@gcc.gnu.org>
20181 * parser.c (cp_parser_iteration_statement): New parameter IF_P.
20182 Pass it through to cp_parser_already_scoped_statement.
20183 (cp_parser_already_scoped_statement): New parameter IF_P. Pass
20184 it through to cp_parser_statement.
20185 (cp_parser_statement): Pass IF_P through to
20186 cp_parser_iteration_statement.
20187 (cp_parser_pragma): Adjust call to
20188 cp_parser_iteration_statement.
20190 2016-04-06 Patrick Palka <ppalka@gcc.gnu.org>
20193 * gimplify.c (gimplify_omp_ordered): Add explicit braces to
20194 resolve a future -Wparentheses warning.
20195 * omp-low.c (scan_sharing_clauses): Likewise.
20196 * tree-parloops.c (eliminate_local_variables): Likewise.
20198 2016-04-06 Vladimir Makarov <vmakarov@redhat.com>
20200 PR rtl-optimization/70398
20201 * lra-constraints.c (process_address_1): Check zero scale and code
20202 for reloading with zero scale.
20204 2016-04-06 Uros Bizjak <ubizjak@gmail.com>
20206 * config/i386/sse.md (shuffletype): Add V32HI and V4TI modes.
20207 (ssescalarsize): Add V8SF, V4SF, V4DF and V2DF modes.
20209 2016-04-06 Jakub Jelinek <jakub@redhat.com>
20211 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
20212 Add support for AVX512F clones, include them by default for
20213 exported OpenMP declare simd functions. For AVX2 allow simdlen 32
20214 and use it if charasteric type is 8-bit, for AVX512F allow simdlen
20217 PR middle-end/70550
20218 * tree.h (OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT): Define.
20219 * gimplify.c (gimplify_adjust_omp_clauses_1): Set it for implicit
20220 firstprivate clauses.
20221 * omp-low.c (lower_send_clauses): Set TREE_NO_WARNING for
20222 OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT !by_ref vars in task contexts.
20223 (lower_omp_target): Set TREE_NO_WARNING for
20224 non-addressable possibly uninitialized vars which are copied into
20225 addressable temporaries or copied for GOMP_MAP_FIRSTPRIVATE_INT.
20227 2016-04-05 John David Anglin <danglin@gcc.gnu.org>
20229 * config/pa/predicates.md (integer_store_memory_operand): Accept
20230 REG+D operands with a large offset when reload_in_progress is true.
20231 (floating_point_store_memory_operand): Likewise.
20233 2016-04-05 Jakub Jelinek <jakub@redhat.com>
20236 * match.pd (nested int casts): Limit to GIMPLE.
20238 2016-04-05 Jan Hubicka <hubicka@ucw.cz>
20241 * ipa-devirt.c (maybe_record_node): Fix comment; use
20242 SANITIZE_UNREACHABLE instead of SANITIZE_UNDEFINED.
20244 2016-04-05 Jakub Jelinek <jakub@redhat.com>
20246 PR rtl-optimization/70542
20247 * ree.c (add_removable_extension): For VECTOR_MODE_P punt
20248 if there are any uses other than insn or debug insns.
20250 2016-04-05 Marc Glisse <marc.glisse@inria.fr>
20251 Jakub Jelinek <jakub@redhat.com>
20253 PR tree-optimization/70509
20254 * simplify-rtx.c (simplify_binary_operation_1) <case VEC_SELECT>:
20255 Shift HOST_WIDE_INT_1U instead of 1.
20257 2016-04-05 Zdenek Sojka <zsojka@seznam.cz>
20259 PR tree-optimization/70509
20260 * tree-ssa-forwprop.c (simplify_bitfield_ref): Use bitsize_int instead
20261 of the vector base type for index.
20263 2016-04-05 Uros Bizjak <ubizjak@gmail.com>
20266 * config/i386/sse.md (iptr): Add V64QI, V32HI, V16SI and V8DI modes.
20268 2016-04-05 Richard Biener <rguenther@suse.de>
20270 PR tree-optimization/70526
20271 * tree-sra.c (build_ref_for_offset): Use prev_base to
20272 extract the alias pointer type.
20274 2016-04-05 Richard Biener <rguenther@suse.de>
20276 * dse.c (struct store_info): Remove alias_set member.
20277 (struct read_info_type): Likewise.
20278 (clear_alias_group, clear_alias_mode_table, clear_alias_mode_holder,
20279 spill_deleted, clear_alias_set_lookup): Remove.
20280 (get_group_info): Remove dead base == NULL_RTX case.
20281 (dse_step0): Remove initialization of removed variables.
20282 (delete_dead_store_insn): Reomve alias set dumping.
20283 (free_read_records): Remove alias_set handling.
20284 (canon_address): Remove alias_set_out parameter.
20285 (record_store): Remove spill_alias_set, it's always zero.
20286 (check_mem_read_rtx): Likewise.
20287 (dse_step2): Rename from ...
20288 (dse_step2_nospill): ... this. Adjust.
20289 (scan_stores): Rename from ...
20290 (scan_stores_nospill): ... this.
20291 (scan_reads): Rename from ...
20292 (scan_reads_nospill): ... this.
20293 (scan_stores_spill, scan_reads_spill): Remove.
20294 (dse_step3_scan): Remove for_spills argument which is always false.
20295 (dse_step3): Likewise.
20296 (dse_step5): Rename from ...
20297 (dse_step5_nospill): ... this. Remove alias_set handling.
20298 (rest_of_handle_dse): Adjust.
20300 2016-04-05 Jakub Jelinek <jakub@redhat.com>
20303 * config/i386/sse.md (*andnot<mode>3): Simplify assertions.
20304 Use vpandn<ssemodesuffix> for V16SI/V8DImode, vpandnq for
20305 V32HI/V64QImode, don't use <mask_operand3_1>, fix up formatting.
20306 (*andnot<mode>3_mask): Remove insn with VI12_AVX512VL iterator.
20308 2016-04-05 Richard Biener <rguenther@suse.de>
20310 PR middle-end/70499
20311 * gimplify-me.c (gimple_regimplify_operands): Do not rewrite
20312 non-register type temporaries into SSA.
20314 2016-04-04 Jan Hubicka <hubicka@ucw.cz>
20317 * ipa-devirt.c (maybe_record_node): Do not optimize cxa_pure_virtual
20318 calls when sanitizing.
20319 (possible_polymorphic_call_target_p): Fix formatting.
20321 2016-04-04 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
20322 Jakub Jelinek <jakub@redhat.com>
20324 PR middle-end/70457
20325 * tree-inline.c (estimate_num_insn): Use gimple_call_builtin_p
20326 to ensure a call statement is compatible with a built-in's
20328 * tree-ssa-math-opts.c (pass_optimize_windening_mul::execute):
20331 2016-04-04 Richard Biener <rguenther@suse.de>
20333 PR rtl-optimization/70484
20334 * rtl.h (canon_output_dependence): Declare.
20335 * alias.c (canon_output_dependence): New function.
20336 * dse.c (record_store): Use canon_output_dependence rather
20337 than canon_true_dependence.
20339 2016-03-30 Jan Hubicka <hubicka@ucw.cz>
20342 * cgraph.h (symtab_node::copy_visibility_from): New function.
20343 * symtab.c (symtab_node::copy_visibility_from): New function.
20344 * ipa-visibility.c (optimize_weakref): New function.
20345 (function_and_variable_visibility): Use it.
20347 2016-04-04 Martin Liska <mliska@suse.cz>
20350 * hsa-gen.c (gen_hsa_insns_for_switch_stmt): Guard index
20351 value that is really in range handled by SBR instruction.
20352 * hsa-brig.c (emit_switch_insn): Do not emit unconditional jump.
20353 * hsa-dump.c (dump_hsa_insn_1): Do not dump default BB.
20354 * hsa.h (hsa_insn_sbr::m_default_bb): Remove field.
20356 2016-04-03 Oleg Endo <olegendo@gcc.gnu.org>
20360 * config/sh/sh.md (*addsi3): Allow pattern when reload_in_progress is
20361 set, but not for SP_REG operands.
20363 2016-04-02 Martin Sebor <msebor@redhat.com>
20366 * fold-const.c (maybe_nonzero_address): New function.
20367 (fold_comparison): Call it. Fold equality and relational
20368 expressions involving null pointers.
20369 (tree_single_nonzero_warnv_p): Call maybe_nonzero_address.
20371 2016-03-31 Evandro Menezes <e.menezes@samsung.com>
20373 Fix the predicate "aarch64_simd_reg_or_zero" to correctly validate
20374 the "Y" constraint (scalar FP 0.0 immediate).
20376 * config/aarch64/predicates.md (aarch64_simd_reg_or_zero):
20377 Add the "const_double" to the list of operand constraints.
20379 2016-04-01 Jakub Jelinek <jakub@redhat.com>
20381 PR rtl-optimization/70467
20382 * config/i386/i386.md (*add<dwi>3_doubleword, *sub<dwi>3_doubleword):
20383 If low word of the last operand is 0, just emit addition/subtraction
20386 2016-04-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
20389 * config/s390/s390.c (s390_expand_insv): Check for everything
20390 constant instead of just VOIDmode stuff.
20392 2016-04-01 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
20395 * config/arm/arm.h (ASM_APP_OFF): Handle TARGET_ARM and TARGET_THUMB.
20397 2016-04-01 Nathan Sidwell <nathan@acm.org>
20399 * tree.def (TRY_CATCH_EXPR): Correct documentation.
20401 2016-03-31 Vladimir Makarov <vmakarov@redhat.com>
20403 PR rtl-optimization/70461
20404 * ira-color.c (allocno_copy_cost_saving): Use allocno class if it
20407 2016-03-31 Martin Liska <mliska@suse.cz>
20410 * hsa-brig.c (hsa_op_immed::emit_to_buffer): Emit either
20411 a tree value or an immediate integer value to a buffer
20412 that is eventually copied to a BRIG section.
20413 (emit_immediate_operand): Call the function here.
20414 * hsa-dump.c (dump_hsa_immed): Remove checking assert.
20415 * hsa-gen.c (hsa_op_immed::hsa_op_immed): Remove initialization
20416 of class' fields that are removed.
20417 (hsa_op_immed::~hsa_op_immed): Remove deinitialization.
20418 * hsa.h (class hsa_op_immed): Remove m_brig_repr and
20419 m_brig_repr_size fields.
20421 2016-03-31 Martin Liska <mliska@suse.cz>
20424 * hsa-gen.c (hsa_function_representation::update_dominance): New
20426 (convert_addr_to_flat_segment): Likewise.
20427 (gen_hsa_memory_set): New alignment argument.
20428 (gen_hsa_ctor_assignment): Likewise.
20429 (gen_hsa_insns_for_single_assignment): Provide alignment
20430 to gen_hsa_ctor_assignment.
20431 (gen_hsa_insns_for_direct_call): Add new argument.
20432 (expand_lhs_of_string_op): New function.
20433 (expand_string_operation_builtin): Likewise.
20434 (expand_memory_copy): New function.
20435 (expand_memory_set): New function.
20436 (gen_hsa_insns_for_call): Use HOST_WIDE_INT.
20437 (convert_switch_statements): Change signature.
20438 (generate_hsa): Use a return value of the function.
20439 (pass_gen_hsail::execute): Do not call
20440 convert_switch_statements here.
20441 * hsa-regalloc.c (hsa_regalloc): Call update_dominance.
20442 * hsa.h (hsa_function_representation::m_modified_cfg): New flag.
20443 (hsa_function_representation::update_dominance): New function.
20445 2016-03-31 Martin Liska <mliska@suse.cz>
20448 * hsa-brig.c (emit_directive_variable): Emit alignment
20449 according to hsa_symbol::m_align.
20450 * hsa-dump.c (hsa_byte_alignment): Move the function to another file.
20451 (dump_hsa_symbol): Dump alignment of HSA symbols.
20452 * hsa-gen.c (get_symbol_for_decl): Set-up alignment of a symbol.
20453 (gen_hsa_addr_with_align): New function.
20454 (hsa_bitmemref_alignment): Use newly added function.
20455 (gen_hsa_insns_for_load): Likewise.
20456 (gen_hsa_insns_for_store): Likewise.
20457 (gen_hsa_memory_copy): New argument added.
20458 (gen_hsa_insns_for_single_assignment): Respect
20459 alignment for assignments processed via gen_hsa_memory_copy.
20460 (gen_hsa_insns_for_direct_call): Likewise.
20461 (gen_hsa_insns_for_return): Likewise.
20462 (gen_function_def_parameters): Set default alignment.
20463 * hsa.c (hsa_object_alignment): New function.
20464 (hsa_byte_alignment): Pasted function.
20465 * hsa.h (hsa_symbol::m_align): New field.
20467 2016-03-31 Bin Cheng <bin.cheng@arm.com>
20469 * tree-ssa-loop-ivopts.c (get_computation_cost_at): Initialize
20470 scratch field for goto case.
20472 2016-03-31 James Greenhalgh <james.greenhalgh@arm.com>
20474 * config/arm/linux-elf.h (ASM_OUTPUT_DEF): Delete.
20476 2016-03-31 Ilya Enkovich <enkovich.gnu@gmail.com>
20479 * config/i386/i386.c (scalar_chain::convert_op): Fix description.
20480 (scalar_chain::convert_insn): Call convert_op for reg
20481 moves to handle undefined registers.
20483 2016-03-31 Nathan Sidwell <nathan@acm.org>
20486 * varasm.c (output_constructor_regular_field): Flush bitfield earlier.
20487 Assert we don't want to move backwards.
20489 2016-03-31 Kirill Yukhin <kirill.yukhin@intel.com>
20492 * config/i386/sse.md (define_mode_attr shuffletype): Fix typo.
20494 2016-03-31 Jakub Jelinek <jakub@redhat.com>
20496 PR rtl-optimization/70460
20497 * ira.c (indirect_jump_optimize): Don't substitute LABEL_REF
20498 with operand from REG_LABEL_OPERAND, instead substitute
20499 SET_SRC or REG_EQUAL note content if it is a LABEL_REF.
20500 Don't do anything for REG_NON_LOCAL_GOTO jumps.
20502 2016-03-31 Martin Liska <mliska@suse.cz>
20504 * passes.c (execute_one_pass): Do not call
20505 todo_after for a discarded function.
20507 2016-03-31 Bin Cheng <bin.cheng@arm.com>
20509 * tree-ssa-loop-ivopts.c (struct comp_cost): New scrach field.
20510 (no_cost, infinite_cost): Initialize the new field.
20511 (get_computation_cost_at): Record setup cost.
20512 (determine_use_iv_cost_address): Skip cost computation for sub
20513 uses if we can estimate it without losing accuracy.
20515 2016-03-30 Jan Hubicka <hubicka@ucw.cz>
20517 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): We can't get realistic
20519 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Use also
20520 max_loop_iterations_int.
20521 (tree_unswitch_outer_loop): Likewise.
20522 * tree-ssa-loop-ivopts.c (avg_loop_niter): Likewise.
20523 * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
20525 2016-03-30 Richard Biener <rguenther@suse.de>
20527 PR middle-end/70450
20528 * fold-const.c (extract_muldiv_1): Fix thinko in wide_int::from usage.
20530 2016-03-30 Jakub Jelinek <jakub@redhat.com>
20533 * config/i386/i386.c (ix86_expand_vector_set): Fix up argument order
20534 in gen_blendm expander.
20536 2016-03-30 Nick Clifton <nickc@redhat.com>
20539 * config/arm/arm.c (arm_reload_out_hi): Add code to handle the
20540 case where we are already provided with an SImode SUBREG.
20542 2016-03-30 H.J. Lu <hongjiu.lu@intel.com>
20545 * config/i386/i386.c (ix86_expand_epilogue): Properly check
20546 conflict between DRAP register and __builtin_eh_return.
20548 2016-03-30 Michael Matz <matz@suse.de>
20549 Richard Biener <rguenther@suse.de>
20552 * ipa-polymorphic-call.c (struct type_change_info): Change
20553 speculative to an unsigned allowing to limit the work we do.
20554 (csftc_abort_walking_p): New inline function..
20555 (check_stmt_for_type_change): Limit the number of may-defs
20556 skipped for speculative devirtualization to
20557 max-speculative-devirt-maydefs.
20558 * params.def (max-speculative-devirt-maydefs): New param.
20559 * doc/invoke.texi (--param max-speculative-devirt-maydefs): Document.
20561 2016-03-30 Mike Stump <mrs@gcc.gnu.org>
20564 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use when profiling
20567 2016-03-30 Patrick Palka <ppalka@gcc.gnu.org>
20569 PR tree-optimization/59124
20570 * tree-vrp.c (register_edge_assert_for_2): For NAME != CST1
20571 where NAME = A +- CST2 add the assertion A != (CST1 -+ CST2).
20573 2016-03-29 Jeff Law <law@redhat.com>
20575 * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in comment.
20577 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
20579 * tree-ssa-loop-ivcanon.c (try_peel_loop): Change type of peel
20582 2016-03-29 Thomas Schwinge <thomas@codesourcery.com>
20584 * config/gnu.h (CPP_SPEC, LIB_SPEC): Don't override.
20585 * config/i386/gnu.h (STARTFILE_SPEC): Use gcrt1.o instead of
20586 gcrt0.o if linking dynamically.
20588 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
20591 * ipa-devirt.c (methods_equal_p): New function.
20592 (compare_virtual_tables): Use it.
20593 * cgraph.h (symbol_table::symbol_suffix_separator): Declare.
20594 * cgraphclones.c (clone_function_name_1): Use
20595 symbol_table::symbol_suffix_separator.
20596 * coverage.c (build_var): Likewise.
20597 * symtab.c (symbol_table::symbol_suffix_separator): New.
20599 2016-03-29 Jakub Jelinek <jakub@redhat.com>
20601 PR rtl-optimization/70429
20602 * combine.c (simplify_shift_const_1): For ASHIFTRT don't optimize
20603 (cst1 >> count) >> cst2 into (cst1 >> cst2) >> count if
20604 mode != result_mode.
20607 * tree-inline.c (remap_decls): Don't add_local_decl if cfun is null.
20609 PR tree-optimization/70405
20610 * ssa-iterators.h (num_imm_uses): Add missing braces.
20612 2016-03-29 Vladimir Makarov <vmakarov@redhat.com>
20614 PR rtl-optimization/68695
20615 * ira-color.c (allocno_copy_cost_saving): New.
20616 (improve_allocation): Use it.
20618 2016-03-29 Richard Henderson <rth@redhat.com>
20620 PR middle-end/70355
20621 * lower-subreg.c (simplify_subreg_concatn): Reject paradoxical subregs.
20623 2016-03-29 Richard Biener <rguenther@suse.de>
20625 PR middle-end/70424
20626 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Always
20627 use alignment returned by get_pointer_alignment_1 if it is
20628 bigger than BITS_PER_UNIT.
20629 * builtins.c (get_pointer_alignment_1): Do not return true
20630 for alignment extracted from SSA info.
20632 2016-03-28 James Bowman <james.bowman@ftdichip.com>
20634 * config/ft32/ft32.opt (mnodiv): New.
20635 * config/ft32/ft32.md (*divsi3, *modsi3): Qualify with TARGET_NODIV.
20636 * doc/invoke.texi (FT32 Options -mnodiv): New.
20638 2016-03-28 Kirill Yukhin <kirill.yukhin@intel.com>
20641 * config/i386/i386.md (define_split, andn): Fix modes.
20643 2016-03-26 Richard Biener <rguenther@suse.de>
20644 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
20647 * ipa-inline-transform.c (inline_call): Pass opts_for_fn (to->decl)
20649 TREE_OPTIMIZATION (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (to->decl))
20650 as 2nd argument to cl_optimization_restore().
20652 2016-03-25 Richard Henderson <rth@redhat.com>
20655 * config/aarch64/aarch64.c (aarch64_asm_output_pool_epilogue): New.
20656 * config/aarch64/aarch64-protos.h: Declare it.
20657 * config/aarch64/aarch64.h (ASM_OUTPUT_POOL_EPILOGUE): New.
20659 2016-03-25 Alan Modra <amodra@gmail.com>
20662 * config/rs6000/constraints.md (j): Simplify.
20663 * config/rs6000/predicates.md (easy_fp_constant): Exclude
20665 * config/rs6000/rs6000.md (zero_fp): New mode_attr.
20666 (mov<mode>_hardfloat, mov<mode>_hardfloat32, mov<mode>_hardfloat64,
20667 mov<mode>_64bit_dm, mov<mode>_32bit): Use zero_fp in place of j
20668 in all constraint alternatives.
20669 (movtd_64bit_nodm): Delete "j" constraint alternative.
20671 2016-03-24 Aldy Hernandez <aldyh@redhat.com>
20673 * tree-ssa-propagate.c: Enhance docs for
20674 SSA_PROP_NOT_INTERESTING.
20676 2016-03-24 Aldy Hernandez <aldyh@redhat.com>
20678 * doc/extend.texi: Fix typo in documentation to pure attribute.
20680 2016-03-24 John David Anglin <danglin@gcc.gnu.org>
20683 * config/pa/pa.md (bswapdi2): Use a scratch register.
20685 2016-03-24 Richard Henderson <rth@redhat.com>
20687 PR middle-end/69845
20688 * fold-const.c (extract_muldiv_1): Correct test for multiplication
20691 2016-03-24 Uros Bizjak <ubizjak@gmail.com>
20693 * config/i386/i386.md (*anddi3_doubleword): Generate AND insn
20694 using ix86_expand_binary_operator instead of gen_andsi3.
20696 2016-03-24 Richard Biener <rguenther@suse.de>
20698 PR tree-optimization/70396
20699 * tree-vect-stmts.c (vectorizable_comparison): Use
20700 get_vectype_for_scalar_type.
20702 2016-03-24 Richard Biener <rguenther@suse.de>
20704 PR middle-end/70370
20705 * gimplify.c (gimplify_asm_expr): Handle !allows_mem outputs
20706 with register bases.
20708 2016-03-24 Richard Biener <rguenther@suse.de>
20710 PR tree-optimization/70372
20711 * tree-ssa-reassoc.c (eliminate_plus_minus_pair): Use
20712 build_all_ones_cst to also handle vector types correctly.
20714 2016-03-23 Michael Meissner <meissner@linux.vnet.ibm.com>
20717 * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Do not set
20720 2016-03-23 Marek Polacek <polacek@redhat.com>
20723 * doc/invoke.texi: Document -Wignored-attributes.
20725 2016-03-23 Bin Cheng <bin.cheng@arm.com>
20727 PR tree-optimization/69042
20728 * params.def (PARAM_IV_CONSIDER_ALL_CANDIDATES_BOUND): Increase the
20729 parameter from 30 to 40.
20731 2016-03-23 Bin Cheng <bin.cheng@arm.com>
20733 PR tree-optimization/69042
20734 * tree-ssa-loop-ivopts.c (add_iv_candidate_for_use): Add IV cand
20735 for use with constant offset stripped in base.
20737 2016-03-23 Richard Biener <rguenther@suse.de>
20739 PR middle-end/70251
20740 * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Adjust
20741 mode compatibility check.
20742 (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
20744 2016-03-23 Jeff Law <law@redhat.com>
20746 PR tree-optimization/64058
20747 * tree-ssa-coalesce.c (struct coalesce_pair): Add new field
20749 (struct ssa_conflicts): Move up earlier in the file.
20750 (conflicts_, var_map_): New static variables.
20751 (initialize_conflict_count): New function to initialize the
20752 CONFLICT_COUNT field for each conflict pair.
20753 (compare_pairs): Lazily initialize the conflict count and use it
20754 as the first tie-breaker.
20755 (sort_coalesce_list): Add new arguments conflicts, map. Initialize
20756 and wipe conflicts_ and map_ around the call to qsort. Remove
20757 special case for 2 coalesce pairs.
20758 * bitmap.c (bitmap_count_unique_bits): New function.
20759 (bitmap_count_bits_in_word): New function, extracted from
20761 (bitmap_count_bits): Use bitmap_count_bits_in_word.
20762 * bitmap.h (bitmap_count_unique_bits): Declare it.
20764 2016-03-23 Ilya Enkovich <enkovich.gnu@gmail.com>
20767 * config/i386/sol2.h (ASM_OUTPUT_DEF_FROM_DECLS): Follow
20768 transparent alias chain for decl assembler name.
20769 * config/sol2.c (solaris_assemble_visibility): Likewise.
20771 2016-03-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20773 * config/arm/arm1020e.md (1020call_op): Reduce reservation
20775 (v10_fdivs): Likewise.
20776 (v10_fdivd): Likewise.
20778 2016-03-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20781 * config/arm/driver-arm.c (host_detect_local_cpu): Reorder exit logic
20782 to not call fclose twice on file.
20784 2016-03-23 Jakub Jelinek <jakub@redhat.com>
20786 PR tree-optimization/70354
20787 * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
20788 oprnd0 is wider than oprnd1 and there is a cast from the wider
20789 type to oprnd1, mask it with the mask of the narrower type.
20792 * config/i386/i386.md (*anddi3_doubleword, *<code>di3_doubleword):
20793 Optimize TARGET_STV splitters, if high or low word of last argument
20796 2016-03-22 Jeff Law <law@redhat.com>
20799 tree-ssa-threadbackward.c
20800 (fsm_find_control_statement_thread_paths): Correctly distinguish
20801 between old style jump threads vs FSM jump threads.
20803 2016-03-22 Ilya Enkovich <enkovich.gnu@gmail.com>
20806 * config/i386/i386.c (scalar_chain::convert_op): Support
20807 uninitialized register usage case.
20809 2016-03-22 Richard Biener <rguenther@suse.de>
20811 PR middle-end/70251
20812 * genmatch.c (gen_transform): Adjust last parameter to a three-state
20814 (capture::gen_transform): ... to change behavior when substituting
20815 a condition into cond or not-cond expr context.
20816 (dt_simplify::gen_1): Adjust.
20817 * gimple-match-head.c: Include gimplify.h for unshare_expr.
20818 * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Revert
20819 last change and instead change to
20820 A + (B vcmp C ? 1 : 0) -> A - (B vcmp C ? -1 : 0).
20821 (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
20823 2016-03-22 Anthony Green <green@moxielogic.com>
20825 * config/moxie/moxiebox.h (CC1_SPEC): Define. Fix endianness
20826 issue for moxiebox targets.
20827 (CC1PLUS_SPEC): Ditto.
20829 2016-03-22 Richard Biener <rguenther@suse.de>
20831 PR middle-end/70333
20832 * fold-const.c (extract_muldiv_1): Properly perform multiplication
20835 2016-03-22 Kirill Yukhin <kirill.yukhin@intel.com>
20837 * config/i386/i386.c (def_builtin): Remove duplicated functionality.
20839 2016-03-22 Kirill Yukhin <kirill.yukhin@intel.com>
20842 * config/i386/i386.c (def_builtin): Handle
20843 OPTION_MASK_ISA_AVX512VL to be and-ed with other
20845 (const struct builtin_description bdesc_special_args[]):
20846 Remove duplicate ISA bits.
20848 2016-03-22 Jakub Jelinek <jakub@redhat.com>
20851 * config/i386/i386.c (ix86_expand_vecop_qihi): Don't bother computing
20852 d.perm[i] for i >= d.nelt. If not full_interleave, compute d.perm[i]
20853 in a way that works also for AVX512BW.
20856 * config/i386/i386.md (cvtsd2ss splitter): Unpack in destination
20857 instead of source if operands[1] is xmm16 and above and
20858 !TARGET_AVX512VL. Use avx512f_vec_dupv16sf_1 instead of
20859 vec_interleave_lowv4sf if we need to unpack xmm16 and above.
20862 * gimplify.c (gimplify_modify_expr): Call gimple_set_no_warning
20863 on assign if (*from_p) is a comparison, set it to
20864 TREE_NO_WARNING (*from_p).
20866 2016-03-21 Jakub Jelinek <jakub@redhat.com>
20868 PR middle-end/70326
20869 * lra.c (restore_scratches): Ignore deleted insns.
20871 2016-03-21 Marc Glisse <marc.glisse@inria.fr>
20872 Jakub Jelinek <jakub@redhat.com>
20874 PR tree-optimization/70317
20875 * match.pd (cmp @0 @0): Pass @0 instead of TYPE_MODE (TREE_TYPE (@0))
20878 2016-03-21 Uros Bizjak <ubizjak@gmail.com>
20881 * config/i386/i386.md (movxi): Use ix86_expand_vector_move instead
20882 of ix86_expand_move.
20884 (movti): Use general_operand for operand 1 predicate.
20886 2016-03-21 Martin Liska <mliska@suse.cz>
20888 * hsa-dump.c (dump_hsa_insn_1): dump default branch of SBR
20890 (dump_hsa_symbol): Dump BRIG offset of hsa_symbols.
20892 2016-03-21 Martin Liska <mliska@suse.cz>
20895 * ipa-icf.c (sem_function::parse): Skip static
20896 constructors and destructors.
20898 2016-03-21 Jakub Jelinek <jakub@redhat.com>
20901 * config/rs6000/rs6000-c.c (rs6000_macro_to_expand): If IDENT is
20902 function-like macro, peek following token(s) if it is followed
20903 by CPP_OPEN_PAREN token with optional padding in between, and
20904 if not, don't treat it like a macro.
20906 2016-03-21 Thomas Schwinge <thomas@codesourcery.com>
20907 Alexander Monakov <amonakov@ispras.ru>
20909 * config/nvptx/nvptx.c (nvptx_option_override): Don't emit sorry
20910 for the stabs debug format.
20912 2016-03-21 Richard Biener <rguenther@suse.de>
20914 PR tree-optimization/70310
20915 * tree-vect-generic.c (expand_vector_condition): Fold the built
20918 2016-03-21 Kirill Yukhin <kirill.yukhin@intel.com>
20921 * config/i386/sse.md: (define_insn "*vec_dup<mode>"/AVX2):
20922 Block third alternative for AVX-512VL target,
20924 2016-03-21 Martin Liska <mliska@suse.cz>
20927 * hsa-brig.c (emit_function_directives): Mark unemitted
20928 global variables for emission.
20929 * hsa-gen.c (hsa_symbol::hsa_symbol): Initialize a new flag.
20930 (get_symbol_for_decl): Likewise.
20931 * hsa.h (struct hsa_symbol): New flag.
20933 2016-03-21 Richard Biener <rguenther@suse.de>
20935 PR tree-optimization/70288
20936 * tree-ssa-loop-ivcanon.c (tree_estimate_loop_size): Make sure
20937 we do not estimate unsimplified all-constant conditionals or
20938 switches as optimized away.
20940 2016-03-21 Andrey Belevantsev <abel@ispras.ru>
20942 PR rtl-optimization/69102
20943 * sched-deps.c (sched_analyze_insn): Do not set last_args_size field
20944 when we have a readonly dependency context.
20946 2016-03-18 Jeff Law <law@redhat.com>
20948 PR rtl-optimization/70263
20949 * ira.c (memref_used_between_p): Assert we found END in the insn chain.
20950 (update_equiv_regs): When trying to move a store to after the insn
20951 that sets the source of the store, make sure the store occurs after
20952 the insn that sets the source of the store. When successful note
20953 the REG_EQUIV note created in the dump file.
20955 2016-03-16 David Wohlferd <dw@LimeGreenSocks.com>
20956 Bernd Schmidt <bschmidt@redhat.com>
20958 * doc/extend.texi: Document more potential problems with basic asms.
20960 2016-03-18 Bernd Schmidt <bschmidt@redhat.com>
20962 PR rtl-optimization/70278
20963 * lra-constraints.c (split_reg): Handle the case where biggest_mode is
20966 2016-03-18 Jason Merrill <jason@redhat.com>
20968 * calls.c (load_register_parameters): Fix zero size sibcall logic.
20970 2016-03-18 Kirill Yukhin <kirill.yukhin@intel.com>
20972 * config/i386/sse.md: Use vpbroadcastq for broadcasting DF
20973 values to 128b regs.
20975 2016-03-18 Ilya Enkovich <enkovich.gnu@gmail.com>
20977 PR tree-optimization/70252
20978 * tree-vect-stmts.c (supportable_widening_operation): Check resulting
20979 boolean vector has a proper number of elements.
20980 (supportable_narrowing_operation): Likewise.
20982 2016-03-18 Tom de Vries <tom@codesourcery.com>
20985 * cgraph.c (cgraph_node::get_body): Set dump_file to NULL after save.
20987 2016-03-18 Jakub Jelinek <jakub@redhat.com>
20989 * reload1.c (emit_input_reload_insns): Use simplify_replace_rtx
20990 instead of replace_rtx for DEBUG_INSNs.
20992 2016-03-18 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
20994 * config/i386/znver1.md : Fix latencies of FP/SSE/AVX
20995 load type reservations.
20997 2016-03-17 John David Anglin <danglin@gcc.gnu.org>
21000 * config/pa/constraints.md: Revert 2015-02-13 change. Use
21001 define_constraint for "Q" and "T" constraints.
21003 2016-03-17 Evandro Menezes <e.menezes@samsung.com>
21005 Tweak the pipeline model for Exynos M1
21007 * config/aarch64/aarch64.c (exynosm1_tunings): Enable weak prefetching
21010 2016-03-17 David Malcolm <dmalcolm@redhat.com>
21013 * diagnostic-show-locus.c (compatible_locations_p): Handle the case
21014 where one or both locations aren't within a line_map.
21016 2016-03-17 H.J. Lu <hongjiu.lu@intel.com>
21019 * opts.c (finish_options): Don't set flag_pie to the default if
21020 -fpic, -fPIC, -fno-pic or -fno-PIC is used. Set flag_pic to 0
21023 2016-03-17 Joern Rennecke <joern.rennecke@embecosm.com>
21025 * config/i386/i386.md (*movv4qicc_insn+1..36): Pass
21026 true as ALL_REGS argument to replace_rtx.
21028 2016-03-17 Richard Biener <rguenther@suse.de>
21031 * dwarf2out.c (dwarf2out_early_finish): Process deferred_asm_name
21034 2016-03-17 Jakub Jelinek <jakub@redhat.com>
21037 * rtl.h (replace_rtx): Add ALL_REGS argument.
21038 * rtlanal.c (replace_rtx): Likewise. If true, use REGNO
21039 equality and assert mode is the same, instead of just rtx pointer
21041 * config/i386/i386.md (mov + arithmetics with load peephole): Pass
21042 true as ALL_REGS argument to replace_rtx.
21044 2016-03-17 Ilya Enkovich <enkovich.gnu@gmail.com>
21046 * match.pd (A + (B vcmp C ? 1 : 0) -> A - (B vcmp C)): Apply
21047 for boolean vector with vector mode only.
21048 (A - (B vcmp C ? 1 : 0) -> A + (B vcmp C)): Likewise.
21050 2016-03-17 Nick Clifton <nickc@redhat.com>
21053 * config/rx/rx.c (rx_print_integer): Print negative constants in
21056 2016-03-17 Jakub Jelinek <jakub@redhat.com>
21059 * rtlanal.c (replace_rtx): Revert 2016-03-16 change.
21061 2016-03-16 Richard Henderson <rth@redhat.com>
21062 Richard Biener <rguenth@suse.de>
21064 PR middle-end/70240
21065 PR middle-end/68215
21067 * gimplify.c (gimplify_expr) [VEC_COND_EXPR]: Gimplify the
21068 first operand as is_gimple_condexpr.
21070 PR middle-end/70240
21071 PR middle-end/68215
21073 2015-12-11 Eric Botcazou <ebotcazou@adacore.com>
21074 * tree-vect-generic.c (tree_vec_extract): Remove GSI parameter.
21075 Do not gimplify the result.
21076 (do_unop): Adjust call to tree_vec_extract.
21077 (do_binop): Likewise.
21078 (do_compare): Likewise.
21079 (do_plus_minus): Likewise.
21080 (do_negate): Likewise.
21081 (expand_vector_condition): Likewise.
21082 (do_cond): Likewise.
21084 2016-03-16 Richard Henderson <rth@redhat.com>
21087 * config/aarch64/aarch64.c (virt_or_elim_regno_p): New.
21088 (aarch64_classify_address): Use it.
21089 (aarch64_legitimize_address): Force all subexpressions of PLUS
21090 into registers. Simplify as (sfp+const)+reg or (reg+reg)+const.
21092 2016-03-16 Jakub Jelinek <jakub@redhat.com>
21093 Richard Biener <rguenth@suse.de>
21096 * rtlanal.c (replace_rtx): For REG, if from is a REG,
21097 return to even if only REGNO is equal, and assert
21100 2016-03-11 Jeff Law <law@redhat.com>
21102 PR rtl-optimization/70224
21103 * reorg.c (relax_delay_slots): Pass right argument to CROSSING_JUMP_P.
21105 2016-03-16 Richard Henderson <rth@redhat.com>
21107 PR middle-end/70199
21108 * function.h (struct function): Add has_forced_label_in_static.
21109 * gimplify.c (force_labels_r): Set it.
21110 * lto-streamer-in.c (input_struct_function_base): Read it.
21111 * lto-streamer-out.c (output_struct_function_base): Write it.
21112 * tree-inline.c (has_label_address_in_static_1): Remove.
21113 (copy_forbidden): Remove fndecl parameter; test
21114 has_forced_label_in_static.
21115 (inline_forbidden_p): Update call to copy_forbidden.
21116 (tree_versionable_function_p): Likewise.
21117 * ipa-chkp.c (chkp_instrumentable_p): Likewise.
21118 (chkp_versioning): Likewise.
21119 * tree-inline.h (copy_forbidden): Update decl.
21121 2016-03-16 Marek Polacek <polacek@redhat.com>
21124 * cgraphunit.c (cgraph_node::expand_thunk): Also build call to the
21125 function being thunked if the result type doesn't have fixed size.
21126 * gimplify.c (gimplify_modify_expr): Also set LHS if the result type
21127 doesn't have fixed size.
21129 2016-03-16 Bin Cheng <bin.cheng@arm.com>
21131 * tree-vect-loop.c (vect_analyze_loop_2): Fix wrong dump info by
21132 reporting malformed loop nest.
21134 2016-03-16 Tom de Vries <tom@codesourcery.com>
21137 * ipa-devirt.c (possible_polymorphic_call_targets): Move
21138 nodes.length () == 1 test to before first nodes[0] access.
21140 2016-03-16 Tom de Vries <tom@codesourcery.com>
21142 PR tree-optimization/68715
21143 * graphite-scop-detection.c (scop_detection::merge_sese): Add missing
21144 single_pred_p test.
21146 2016-03-16 Tom de Vries <tom@codesourcery.com>
21148 PR tree-optimization/68809
21149 * graphite-scop-detection.c (same_close_phi_node): Test if result types
21152 2016-03-16 Carlos O'Donell <carlos@redhat.com>
21153 Sandra Loosemore <sandra@codesourcery.com>
21155 * doc/extend.texi (Common Function Attributes): Describe ifunc impact
21156 on leaf attribute. Mention ELF interposition problems.
21158 2016-03-16 Alan Modra <amodra@gmail.com>
21160 PR rtl-optimization/69195
21161 PR rtl-optimization/47992
21162 * ira.c (indirect_jump_optimize): Ignore artificial defs.
21165 2016-03-15 Eric Botcazou <ebotcazou@adacore.com>
21168 * dwarf2out.c (flush_limbo_die_list): Really flush the limbo list.
21170 2016-03-15 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
21172 * config/avr/avr.md (rotl<mode>3): Set mode for operand 2.
21174 2016-03-15 Jakub Jelinek <jakub@redhat.com>
21176 PR rtl-optimization/70222
21177 * combine.c (simplify_shift_const_1): For A >> B >> C LSHIFTRT
21178 optimization if mode is different from result_mode, queue up masking
21179 of the result in outer_op. Formatting fix.
21181 PR middle-end/70239
21182 * tree-ssa-sccvn.c (VN_INFO_GET): Use safe_grow_cleared instead
21185 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
21187 PR rtl-optimization/69032
21188 * sel-sched-ir.c (get_seqno_by_preds): Include both insn and head when
21189 looping backwards over basic block insns.
21191 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
21194 * sel-sched-ir.c (merge_expr): Avoid changing the speculative pattern
21195 to non-speculative when propagating trap bits.
21197 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
21199 PR rtl-optimization/63384
21200 * sel-sched.c (invoke_aftermath_hooks): Do not decrease issue_more on
21201 DEBUG_INSN_P insns.
21203 2016-03-15 Andrey Belevantsev <abel@ispras.ru>
21206 * sched-deps.c (get_implicit_reg_pending_clobbers): New function,
21207 factored out from ...
21208 (sched_analyze_insn): ... here.
21209 * sched-int.h (get_implicit_reg_pending_clobbers): Declare it.
21210 * sel-sched-ir.c (setup_id_implicit_regs): New function, use
21211 get_implicit_reg_pending_clobbers in it.
21212 (setup_id_reg_sets): Use setup_id_implicit_regs.
21213 (deps_init_id): Ditto.
21215 2016-03-15 Tom de Vries <tom@codesourcery.com>
21218 * cgraph.c (cgraph_node::get_body): Save, reset and restore
21220 * passes.c (execute_one_ipa_transform_pass): Add missing argument to
21221 execute_function_dump.
21222 (execute_one_pass): Don't dump function if it will be dumped after ipa
21225 2016-03-15 Segher Boessenkool <segher@kernel.crashing.org>
21227 * genrecog.c (match_pattern_2): If pred is NULL don't call
21228 safe_predicate_mode on it.
21230 2016-03-14 Jakub Jelinek <jakub@redhat.com>
21232 PR middle-end/70219
21233 * lra-constraints.c (delete_move_and_clobber): Change assertion
21234 to also allow dregno == 0.
21236 2016-03-14 Richard Henderson <rth@redhat.com>
21239 * tree-ssa-reassoc.c (ovce_extract_ops, optimize_vec_cond_expr): New.
21240 (can_reassociate_p): Allow ANY_INTEGRAL_TYPE_P.
21241 (reassociate_bb): Use optimize_vec_cond_expr; avoid
21242 optimize_range_tests, attempt_builtin_copysign and attempt_builtin_powi
21245 2016-03-14 Bernd Schmidt <bschmidt@redhat.com>
21248 * lra-lives.c (process_bb_lives): Also update biggest mode for hard
21250 (lra_create_live_ranges_1): initialize hard register biggest_mode to
21252 * lra-constraints.c (split_reg): For hard regs, try to find the
21253 biggest single-register mode used in the function.
21255 2016-03-14 Richard Biener <rguenther@suse.de>
21257 PR tree-optimization/56365
21258 * tree-ssa-phiopt.c (minmax_replacement): Handle alternate
21259 constants to compare against.
21261 2016-03-14 Segher Boessenkool <segher@kernel.crashing.org>
21264 * config/rs6000/rs6000.md (*ctr<mode>_internal1, *ctr<mode>_internal2,
21265 *ctr<mode>_internal5, *ctr<mode>_internal6): Also allow "d" as output.
21266 (define_split for the GPR case): Use int_reg_operand instead of
21267 gpc_reg_operand for the output.
21269 2016-03-14 Tom de Vries <tom@codesourcery.com>
21271 PR tree-optimization/70045
21272 * graphite-isl-ast-to-gimple.c (graphite_create_new_loop_guard): Unshare
21273 create_empty_if_region_on_edge argument.
21275 2016-03-13 Eric Botcazou <ebotcazou@adacore.com>
21277 * config/arm/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Define.
21278 (STACK_CHECK_PROTECT): Likewise.
21279 * config/i386/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
21280 (STACK_CHECK_PROTECT): Likewise.
21281 * config/rs6000/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise
21282 (STACK_CHECK_PROTECT): Likewise.
21283 * config/rs6000/vxworksae.h (STACK_CHECK_PROTECT): Likewise.
21284 * config/sparc/vxworks.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
21285 (STACK_CHECK_PROTECT): Likewise.
21287 2016-03-12 Andrey Belevantsev <abel@ispras.ru>
21289 PR rtl-optimization/69307
21290 * sel-sched.c (choose_best_pseudo_reg): Properly check for hard
21291 registers in modes that span more than one register.
21293 2016-03-12 Vladimir Makarov <vmakarov@redhat.com>
21296 * lra-constraints.c (delete_move_and_clobber): New.
21297 (remove_inheritance_pseudos): Use it.
21299 2016-03-12 Eric Botcazou <ebotcazou@adacore.com>
21302 * calls.c (emit_library_call_value_1): Clear the ECF_NOTHROW flag if
21303 the libcall is LCT_THROW.
21304 * explow.c (probe_stack_range): Pass LCT_THROW to emit_library_call
21305 for the checking routine.
21307 2016-03-11 Michael Meissner <meissner@linux.vnet.ibm.com>
21310 * config/rs6000/rs6000.md (round32<mode>2_fprs): Do not do the
21311 optimization if we have direct move.
21312 (roundu32<mode>2_fprs): Likewise.
21314 2016-03-11 Bernd Schmidt <bschmidt@redhat.com>
21317 * lra-remat.c (operand_to_remat): Disallow hard regs in the value t
21319 (reg_overlap_for_remat_p): Renamed from input_regno_present_p.
21320 Arguments swapped. All callers changed. Take reg_renumber into
21321 account, and Calculate and compare register ranges for hard regs.
21323 2016-03-11 Jeff Law <law@redhat.com>
21325 PR tree-optimization/70190
21326 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
21327 Handle cases where we can not extract the taken edge, even though we
21328 found a constant value.
21330 PR tree-optimization/64058
21331 * tree-ssa-coalesce.c (struct coalesce_pair): Add new field INDEX.
21332 (num_coalesce_pairs): Move up earlier in file.
21333 (find_coalesce_pair): Initialize the INDEX field for each pair
21335 (compare_pairs): No longer sort on the elements in each pair.
21336 Instead break ties with the index of the coalesce pair.
21338 2016-03-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21341 * config/aarch64/aarch64-protos.h
21342 (aarch64_save_restore_target_globals): New prototype.
21343 * config/aarch64/aarch64-c.c (aarch64_pragma_target_parse):
21344 Call the above when popping pragma.
21345 * config/aarch64/aarch64.c (aarch64_save_restore_target_globals):
21347 (aarch64_set_current_function): Rewrite using the above.
21349 2016-03-11 Jakub Jelinek <jakub@redhat.com>
21351 PR tree-optimization/70177
21352 * gimple-expr.h (extract_ops_from_tree_1): Renamed to ...
21353 (extract_ops_from_tree): ... this. In the 2 argument
21354 overload remove _1 suffix.
21355 * gimple-expr.c (extract_ops_from_tree_1): Renamed to ...
21356 (extract_ops_from_tree): ... this.
21357 * gimple.c (gimple_build_assign, gimple_assign_set_rhs_from_tree):
21359 * tree-ssa-loop-niter.c (derive_constant_upper_bound): Likewise.
21360 * tree-ssa-forwprop.c (defcodefor_name): Call 3 operand
21361 extract_ops_from_tree instead of 2 operand one.
21363 2016-03-11 Alan Lawrence <alan.lawrence@arm.com>
21365 PR tree-optimization/70013
21366 * tree-sra.c (analyze_access_subtree): Also set grp_unscalarized_data
21367 for constant-pool entries.
21369 2016-03-11 Jakub Jelinek <jakub@redhat.com>
21371 PR rtl-optimization/70174
21372 * expmed.c (store_bit_field_using_insv): Use gen_lowpart_if_possible
21373 followed by gen_lowpart on force_reg instead of just gen_lowpart.
21375 PR tree-optimization/70169
21376 * tree-ssa-loop.c (gen_lsm_tmp_name): Handle FUNCTION_DECL and
21377 LABEL_DECL like VAR_DECL. Emit nothing instead of gcc_unreachable
21380 2016-03-11 Ilya Enkovich <enkovich.gnu@gmail.com>
21381 Jakub Jelinek <jakub@redhat.com>
21384 * config/i386/i386.c (scalar_chain::convert_reg): Skip uses
21385 of uninitialized values.
21387 2016-03-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
21389 * config/s390/s390.md ("trunctddd2"): Turn former define_insn into
21391 ("*trunctddd2"): New pattern definition.
21392 ("trunctdsd2"): Set prep_for_short_prec rounding mode for the
21395 2016-03-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
21397 * config/s390/s390.md (BFP_RND_*, DFP_RND_*): Add new constant
21398 definitions for BFP and DFP rounding modes.
21399 ("fixuns_truncdddi2", "fixuns_trunctddi2")
21400 ("fixuns_trunc<BFP:mode><GPR:mode>2", "fixuns_trunc<mode>si2")
21401 ("fix_trunc<DSF:mode><GPR:mode>2", "fix_trunc<mode>di2")
21402 ("fix_trunctf<mode>2"): Use the new constants instead of magic
21405 2016-03-11 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
21407 * config/s390/constraints.md: Adjust comment.
21408 ("Y"): Adjust comment. Rename s390_decompose_shift_count to
21409 s390_decompose_addrstyle_without_index.
21410 * config/s390/predicates.md (shift_count_or_setmem_operand):
21411 Rename to setmem_operand.
21412 * config/s390/s390-protos.h
21413 (s390_decompose_shift_count): Rename to
21414 s390_decompose_addrstyle_without_index.
21415 * config/s390/s390.c (s390_decompose_shift_count)
21416 (s390_mem_constraint, print_shift_count_operand)
21417 (print_operand_address, print_operand): Rename
21418 s390_decompose_shift_count to
21419 s390_decompose_addrstyle_without_index and rename
21420 print_shift_count_operand to print_addrstyle_operand troughout the
21422 * config/s390/s390.md ("setmem_long_<P:mode>", "*setmem_long")
21423 ("*setmem_long_and", "*setmem_long_31z", "*setmem_long_and_31z"):
21424 Rename shift_count_or_setmem_operand to setmem_operand.
21425 * config/s390/vx-builtins.md ("vec_insert<mode>")
21426 ("vec_promote<mode>"): Replace shift_count_or_setmem_operand with
21429 2016-03-10 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
21432 * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
21433 Handle overlapping retval and newval.
21435 2016-03-10 Nick Clifton <nickc@redhat.com>
21438 * config/aarch64/aarch64.c
21439 (aarch64_override_options_after_change_1): When forcing
21440 flag_omit_frame_pointer to be true, use a special value that can
21441 be detected if this function is called again, thus preventing
21442 flag_omit_leaf_frame_pointer from being forced to be false.
21444 2016-03-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21446 * common/config/aarch64/aarch64-common.c (aarch64_handle_option):
21447 Set x_flag_omit_leaf_frame_pointer when handling
21448 -momit-leaf-frame-pointer.
21450 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
21453 * cgraph.c (cgraph_node::dump): Dump split_part and
21454 indirect_call_target.
21455 * cgraph.h (cgraph_node): Add indirect_call_target flag.
21456 * ipa.c (has_addr_references_p): Cleanup.
21457 (is_indirect_call_target_p): New.
21458 (walk_polymorphic_call_targets): Do not mark virtuals that may be
21459 called indirectly as local.
21460 (symbol_table::remove_unreachable_nodes): Compute indirect_call_target.
21462 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
21465 * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
21466 on cxa_pure_virtual.
21468 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
21471 * tree.c (free_lang_data_in_decl): Clear visibility of TYPE_DECL.
21473 2016-03-10 Jan Hubicka <hubicka@ucw.cz>
21476 * tree.c (need_assembler_name_p): Only record main variant type names.
21478 2016-03-10 Christophe Lyon <christophe.lyon@linaro.org>
21481 * config/aarch64/aarch64.h (TARGET_FIX_ERR_A53_843419_DEFAULT):
21482 Always define to 0 or 1.
21483 (TARGET_FIX_ERR_A53_843419): New macro.
21484 * config/aarch64/aarch64-elf-raw.h
21485 (TARGET_FIX_ERR_A53_843419_DEFAULT): Update for above changes.
21486 * config/aarch64/aarch64-linux.h: Likewise.
21487 * config/aarch64/aarch64.c
21488 (aarch64_override_options_after_change_1): Do not default
21489 aarch64_nopcrelative_literal_loads to true if Cortex-A53 erratum
21491 (aarch64_attributes): Handle fix-cortex-a53-843419.
21492 (aarch64_can_inline_p): Likewise.
21493 * config/aarch64/aarch64.opt (aarch64_fix_a53_err843419): Save.
21495 2016-03-10 Alan Lawrence <alan.lawrence@arm.com>
21496 Jakub Jelinek <jakub@redhat.com>
21498 * common.opt (funconstrained-commons, flag_unconstrained_commons): New.
21499 * tree.c (array_at_struct_end_p): Do not limit to size of decl for
21500 DECL_COMMONS if flag_unconstrained_commons is set.
21501 * tree-dfa.c (get_ref_base_and_extent): Likewise.
21502 * doc/invoke.texi (Optimize Options): Add -funconstrained-commons.
21503 (funconstrained-commons): Document.
21505 2016-03-10 Christophe Lyon <christophe.lyon@linaro.org>
21507 * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add
21508 aarch64-fusion-pairs.def and aarch64-tuning-flags.def
21510 2016-03-10 Ilya Enkovich <enkovich.gnu@gmail.com>
21512 * tree-vect-stmts.c (vectorizable_mask_load_store): Check mask
21513 has a proper number of elements.
21515 2016-03-10 Alan Modra <amodra@gmail.com>
21517 PR rtl-optimization/69195
21518 PR rtl-optimization/47992
21519 * ira.c (recorded_label_ref): Delete.
21520 (update_equiv_regs): Return void.
21521 (indirect_jump_optimize): New function.
21522 (ira): Call indirect_jump_optimize and delete_trivially_dead_insns
21523 before regstat_compute_ri. Don't rebuild_jump_labels here.
21524 Delete update_regstat.
21526 2016-03-10 Richard Biener <rguenther@suse.de>
21528 PR tree-optimization/70128
21529 * tree-ssa-structalias.c (set_uids_in_ptset): Set
21530 vars_contains_nonlocal for any FUNCTION_DECL or LABEL_DECL.
21532 2016-03-09 Jakub Jelinek <jakub@redhat.com>
21534 PR tree-optimization/70152
21535 * tree-sra.c (replace_removed_params_ssa_names): Copy over
21536 SSA_NAME_OCCURS_IN_ABNORMAL_PHI from old_name to new_name.
21539 * config/i386/i386.md (truncdfsf2 splitter): Use gen_vec_concatv2df
21540 instead of gen_sse2_loadlpd.
21541 * config/i386/sse.md (*vec_concatv2df): Rename to...
21542 (vec_concatv2df): ... this.
21544 PR tree-optimization/70127
21545 * fold-const.c (operand_equal_p): Revert the 2015-10-28 change.
21547 2016-03-09 David Malcolm <dmalcolm@redhat.com>
21551 * diagnostic-show-locus.c (compatible_locations_p): New function.
21552 (layout::layout): Sanitize ranges using compatible_locations_p.
21554 2016-03-09 David Malcolm <dmalcolm@redhat.com>
21558 * diagnostic-show-locus.c (layout_range::layout_range): Replace
21559 location_range param with three const expanded_locations * and a
21561 (layout::layout): Replace call to
21562 rich_location::lazily_expand_location with get_expanded_location.
21563 Extract the range and perform location expansion here, passing
21564 the results to the layout_range ctor.
21565 * diagnostic.c (source_range::debug): Delete.
21566 * diagnostic.h (diagnostic_expand_location): Reimplement in terms
21567 of rich_location::get_expanded_location.
21568 * gcc-rich-location.c (get_range_for_expr): Delete.
21569 (gcc_rich_location::add_expr): Reimplement to avoid the
21570 rich_location::add_range overload that took a location_range,
21571 passing a location_t instead.
21573 2016-03-09 Richard Biener <rguenther@suse.de>
21574 Jakub Jelinek <jakub@redhat.com>
21576 PR tree-optimization/70138
21577 * tree-vect-loop-manip.c (vect_update_ivs_after_vectorizer):
21578 Also skip vect_double_reduction_def.
21580 2016-03-09 Jakub Jelinek <jakub@redhat.com>
21583 * config/i386/sse.md (*vec_extract<mode>): Use %0 instead of %k0
21584 if the operand is "m".
21586 2016-03-09 Nathan Sidwell <nathan@acm.org>
21588 * config/nvptx/nvptx.c (nvptx_option_override): Don't kill debug level.
21590 2016-03-09 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
21592 * config/i386/i386.c (processor_target_table): Fix cost table
21593 intialization order for znver1.
21595 2016-03-08 Jakub Jelinek <jakub@redhat.com>
21597 * ipa-polymorphic-call.c (walk_ssa_copies): Fix spelling
21598 - becuase -> because.
21599 * ipa-reference.c (ignore_module_statics): Likewise.
21600 * cgraph.c (cgraph_node::get_body): Likewise.
21601 * ipa-inline.c (early_inliner): Likewise.
21602 * ipa-devirt.c (types_same_for_odr): Likewise.
21603 * tree-streamer-out.c (pack_ts_type_common_value_fields): Likewise.
21604 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Likewise.
21606 2016-03-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21608 * tree-ssa-math-opts.c: Fix typo in comment.
21610 2016-03-08 Jakub Jelinek <jakub@redhat.com>
21613 * config/i386/i386.c (scalar_chain::make_vector_copies,
21614 scalar_chain::convert_reg): Call end_sequence in between
21615 get_insns and emit_conversion_insns rather than after both
21618 2016-03-07 Uros Bizjak <ubizjak@gmail.com>
21621 * config/i386/i386.h (machine_function): Add
21622 pc_thunk_call_expanded flag.
21623 (ix86_pc_thunk_call_expanded): New define.
21624 * config/i386/i386.md (set_got, set_got_labelled): New expanders.
21625 (*set_got): Rename insn pattern from set_got.
21626 (*set_got_labelled): Rename inst pattern from set_got_labelled.
21627 * config/i386/i386.c (ix86_compute_frame_layout): Use
21628 ix86_pc_thunk_call_expanded to prevent red-zone.
21630 2016-03-07 Martin Jambor <mjambor@suse.cz>
21632 * hsa.h (hsa_get_ctor_statements): Declare.
21633 (hsa_get_dtor_statements): Likewise.
21634 (hsa_get_kernel_dispatch_type): Likewise.
21635 * hsa.c (hsa_get_ctor_statements): New function.
21636 (hsa_get_dtor_statements): Likewise.
21637 (hsa_get_kernel_dispatch_type): Likewise.
21638 * hsa-brig.c (hsa_cdtor_statements): Removed.
21639 (hsa_output_libgomp_mapping): Use hsa_get_ctor_statements and
21640 hsa_get_dtor_statements.
21641 * hsa-gen.c (hsa_kernel_dispatch_type): Removed.
21642 (get_hsa_kernel_dispatch_offset): Use hsa_get_kernel_dispatch_type.
21644 2016-03-07 Andre Vieira <andre.simoesdiasvieira@arm.com>
21646 * config/arm/arm-cores.def (cortex-r8): New.
21647 * config/arm/arm-tables.opt (cortex-r8): Regenerate.
21648 * config/arm/arm-tune.md: Likewise.
21649 * doc/invoke.texi: Add cortex-r8 to list of cpu values.
21651 2016-03-07 Martin Sebor <msebor@redhat.com>
21653 PR rtl-optimization/19705
21654 * doc/invoke.texi (Options That Control Optimization): Clarify
21655 -fno-branch-count-reg.
21657 2016-02-26 Richard Biener <rguenther@suse.de>
21658 Jeff Law <law@redhat.com>
21660 PR tree-optimization/69740
21661 * cfghooks.c (remove_edge): Request loop fixups if we delete
21662 an edge that might turn an irreducible loop into a natural
21664 * cfgloop.h (check_verify_loop_structure): Clear LOOPS_NEED_FIXUP.
21665 Move after definition of loops_state_clear.
21667 2016-03-07 Bin Cheng <bin.cheng@arm.com>
21669 PR rtl-optimization/69052
21670 * rtlanal.c (commutative_operand_precedence): Set higher precedence
21673 2016-03-07 Tom de Vries <tom@codesourcery.com>
21675 PR tree-optimization/70116
21676 * tree-ssa-tail-merge.c (merge_stmts_p): New function, handling
21677 is_tm_ending stmts and ubsan/asan internal functions.
21678 (find_duplicate): Use it. Don't test is_tm_ending here.
21680 2016-03-07 Richard Biener <rguenther@suse.de>
21682 PR tree-optimization/70115
21683 * tree-ssa-loop-ivcanon.c (propagate_into_all_uses): Remove.
21684 (propagate_constants_for_unrolling): Use replace_uses_by.
21686 2016-03-07 Nathan Sidwell <nathan@codesourcery.com>
21688 PR middle-end/69916
21689 * omp-low.c (struct oacc_loop): Add ifns.
21690 (new_oacc_loop_raw): Initialize it.
21691 (finish_oacc_loop): Clear mask & flags if no ifns.
21692 (oacc_loop_discover_walk): Count IFN_GOACC_LOOP calls.
21693 (oacc_loop_xform_loop): Add ifns arg & adjust.
21694 (oacc_loop_process): Adjust oacc_loop_xform_loop call.
21696 2016-03-07 Richard Henderson <rth@redhat.com>
21699 * tree-outofssa.c (emit_partition_copy): Flush pending stack adjust.
21700 (insert_value_copy_on_edge): Likewise.
21702 2016-03-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21704 * config/arm/arm_neon.h: Show error if using with soft-float ABI.
21706 2016-03-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
21709 * config/i386/sol2.h (STACK_REALIGN_DEFAULT): Define.
21711 2016-03-05 Venkataramanan Kumar <Venkataramanan.kumar@amd.com>
21713 * config/i386/i386.c (znver1_cost): Fix Multiply cost.
21715 2016-03-05 Venkataramanan Kumar <Venkataramanan.kumar@amd.com>
21717 Fix sseimul type attribute.
21718 * config/i386/znver1.md
21719 (znver1_sseimul, znver1_sseimul_avx256, znver1_sseimul_load,
21720 znver1_sseimul_avx256_load) : Fix the type attribute.
21721 (znver1_sseimul_di, znver1_sseimul_load_di): Fix type attribute,
21722 pipe usage and latency.
21724 2016-03-05 Jakub Jelinek <jakub@redhat.com>
21727 * tree-inline.c (copy_tree_body_r): When cancelling ADDR_EXPR
21728 of INDIRECT_REF and ADDR_EXPR changed type, fold_convert it
21731 2016-03-04 Bernd Schmidt <bschmidt@redhat.com>
21734 * targhooks.c (default_vector_alignment): Limit to MAX_OFILE_ALIGNMENT.
21736 PR rtl-optimization/69941
21737 * postreload.c (reload_combine_recognize_pattern): Ensure all uses of
21738 the reg share its mode.
21740 2016-03-04 Jeff Law <law@redhat.com>
21742 PR tree-optimization/69196
21743 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
21744 If the both SSA_NAMEs are anonymous, then consider them unassociated
21745 and include the PHI in the statement count.
21747 2016-03-05 Tom de Vries <tom@codesourcery.com>
21749 * omp-low.c (check_omp_nesting_restrictions): Check for non-oacc
21750 construct in oacc routine. Check for oacc region in oacc routine.
21752 2016-03-04 Jakub Jelinek <jakub@redhat.com>
21755 * config/i386/i386.c (decide_alg): Add RECUR argument. Revert
21756 2016-02-22 changes, instead don't recurse if RECUR is already true.
21757 Don't change *dynamic_check if RECUR. Adjust recursive caller
21758 to pass true to the new argument.
21759 (ix86_expand_set_or_movmem): Adjust decide_alg caller.
21762 * config/i386/sse.md (vec_set_lo_<mode><mask_name>,
21763 <extract_type_2>_vinsert<shuffletype><extract_suf_2>_mask): Formatting
21765 (vec_set_hi_<mode><mask_name>): Likewise. Swap VEC_CONCAT operands.
21767 2016-03-04 Bernd Schmidt <bschmidt@redhat.com>
21769 PR rtl-optimization/57676
21770 * lra-assigns.c (lra_assign): Guard test for maximum iterations
21771 with flag_checking.
21773 2016-03-04 Ilya Enkovich <enkovich.gnu@gmail.com>
21775 * tree-vect-patterns.c (search_type_for_mask): Handle
21776 comparison of booleans.
21778 2016-03-04 Jakub Jelinek <jakub@redhat.com>
21780 * doc/extend.texi (__builtin_alloca, __builtin_alloca_with_align):
21784 * dwarf2out.c (prune_unused_types_walk_loc_descr): Handle
21785 all other ops that have dw_val_class_die_ref operands,
21786 and DW_OP_GNU_entry_value.
21788 2016-03-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21790 PR rtl-optimization/69904
21791 * config/arm/arm.c (arm_cannot_copy_insn_p):
21792 Return true for load-exclusive instructions.
21794 2016-03-03 Jakub Jelinek <jakub@redhat.com>
21797 * tree-vect-stmts.c (vect_mark_relevant): Remove USED_IN_PATTERN
21798 argument, if STMT_VINFO_IN_PATTERN_P (stmt_info), always mark
21799 the pattern no matter if it is used just by non-pattern, pattern
21801 (process_use, vect_mark_stmts_to_be_vectorized): Adjust callers.
21802 * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern): If
21803 oprnd1 def_stmt is in pattern, don't look through it.
21805 2016-03-03 Marek Polacek <polacek@redhat.com>
21807 PR middle-end/70050
21808 * match.pd (X % -Y): Add INTEGRAL_TYPE_P check.
21810 2016-03-03 Martin Liska <mliska@suse.cz>
21812 PR tree-optimization/70043
21813 * tree-vect-loop.c (optimize_mask_stores): Move iterator to
21814 previous statement if we see a debug statement.
21816 2016-03-03 Richard Biener <rguenther@suse.de>
21818 PR tree-optimization/55936
21819 * tree-vrp.c (compare_name_with_value): Add use_equiv_p
21820 parameter and guard unsafe equivalence use.
21821 (vrp_evaluate_conditional_warnv_with_ops): Always use
21822 safe equivalences but not via the quadratic compare_names
21825 2016-03-03 Michael Collison <michael.collison@linaro.org>
21828 * config/arm/arm.md (*subsi3_carryin_const): Change predicate
21829 for operand 1 to s_register_operand. Change predicate for operand
21830 2 to arm_not_immediate_operand.
21832 2016-03-02 H.J. Lu <hongjiu.lu@intel.com>
21834 * doc/tm.texi: Regenerated.
21836 2016-03-02 Richard Henderson <rth@redhat.com>
21839 * simplify-rtx.c (simplify_plus_minus): Allow reassoc without
21840 simplification when all args are positive non-fixed registers.
21842 2016-03-02 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
21844 * target.def (lra_p): Specify that new ports should use LRA.
21846 2016-03-02 Jakub Jelinek <jakub@redhat.com>
21849 * gimplify.c (gimplify_decl_expr): For decls with REFERENCE_TYPE, also
21850 gimplify_type_sizes the type they refer to.
21851 (omp_notice_variable): Handle reference vars to VLAs.
21852 * omp-low.c (lower_omp_target): Emit setup of OMP_CLAUSE_PRIVATE
21853 reference to VLA decls in the second pass instead of first pass.
21855 2016-03-02 Tom de Vries <tom@codesourcery.com>
21857 PR tree-optimization/68659
21858 * graphite-isl-ast-to-gimple.c (collect_all_ssa_names): Handle
21859 new_expr == NULL_TREE.
21860 (get_new_name): Handle ADDR_EXPR.
21862 2016-03-02 Bin Cheng <bin.cheng@arm.com>
21864 PR rtl-optimization/69052
21865 * loop-invariant.c (canonicalize_address): New function.
21866 (inv_can_prop_to_addr_use): Check validity of address expression
21867 which is canonicalized by above function.
21869 2016-03-02 Alan Modra <amodra@gmail.com>
21872 * ipa-icf.c (sem_variable::merge): Do not merge an alias with
21875 2016-03-02 Jakub Jelinek <jakub@redhat.com>
21878 * config/i386/i386.md (kmovw): Move m constraint to 2nd alternative.
21879 (*movhi_internal): Put mask moves from and to memory separately
21880 from moves from/to GPRs.
21882 2016-03-02 Richard Biener <rguenther@suse.de>
21884 * genmatch.c (dt_node::gen_kids): Fix match code-gen for embedded
21885 GENERIC expressions in GIMPLE.
21887 2016-03-02 Richard Biener <rguenther@suse.de>
21889 * config/i386/i386.c (type_natural_mode): Fix typo.
21891 2016-03-02 Nick Clifton <nickc@redhat.com>
21893 * config.gcc (mep-*-elf): Add newlib-stdint.h to tm_file.
21895 2016-03-02 Richard Biener <rguenther@suse.de>
21896 Uros Bizjak <ubizjak@gmail.com>
21899 * config/i386/i386.c (type_natural_mode): Handle XFmode vectors.
21901 2016-03-02 Richard Biener <rguenther@suse.de>
21903 PR middle-end/67278
21904 * tree-cfg.c (verify_expr): Adjust BIT_FIELD_REF case.
21906 2016-03-02 Marek Polacek <polacek@redhat.com>
21909 * gimplify.c (gimplify_va_arg_expr): Use expanded location for the
21910 "is promoted to" warning.
21912 2016-03-01 DJ Delorie <dj@redhat.com>
21914 * config.gcc: Deprecate mep-*.
21916 2016-03-01 Vladimir Makarov <vmakarov@redhat.com>
21918 PR middle-end/70025
21919 * lra-constraints.c (regno_val_use_in): New.
21920 (match_reload): Use it instead of regno_use_in.
21922 2016-03-01 Eric Botcazou <ebotcazou@adacore.com>
21924 PR rtl-optimization/70007
21925 * gcse.c (compute_ld_motion_mems): Tidy up and also invalidate memory
21926 references present in REG_EQUAL notes attached to non-SET patterns.
21928 2016-03-01 Jeff Law <law@redhat.com>
21930 PR tree-optimization/69196
21931 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
21932 Appropriately clamp the number of statements to copy when the
21933 thread path does not traverse a loop backedge.
21935 PR tree-optimization/69196
21936 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
21937 Do count some PHIs in the thread path against the insn count. Decrease
21938 final statement count by one as the control statement in the last
21939 block will get removed. Remove special cased code for handling PHIs
21942 2016-03-01 Uros Bizjak <ubizjak@gmail.com>
21945 * config/i386/i386.c (ix86_output_call_insn): Add -masm=intel
21946 asm dialect alternatives to explicit GOTPCREL calls.
21948 2016-03-01 Eric Botcazou <ebotcazou@adacore.com>
21951 * ira.c (do_reload): Issue warning for generic stack checking here...
21952 * reload1.c (reload): ...instead of here and streamline it.
21954 2016-03-01 Nick Clifton <nickc@redhat.com>
21956 * config.gcc (cr16-*-elf): Add newlib-stdint.h to tm_file.
21958 2016-03-01 Richard Biener <rguenther@suse.de>
21960 PR tree-optimization/69983
21961 * tree-chrec.c (eq_evolutions_p): Handle conversions, compare
21962 types and fall back to operand_equal_p.
21964 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
21967 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
21969 * config/s390/constraints.md ("jm8"): New constraint.
21970 * config/s390/predicates.md ("const_int_8bitset_operand"): New
21972 * config/s390/s390.md ("*setmem_long", "*setmem_long_and"): Merge
21974 ("*setmem_long<setmem_and>"): New pattern.
21975 ("*setmem_long_31z", "*setmem_long_and_31z"): Merge
21977 ("*setmem_long_31z<setmem_and>"): New pattern.
21978 * config/s390/subst.md ("setmem_31z_subst", "setmem_and_subst"):
21979 New substitution rules with the required attributes.
21982 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
21985 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
21987 * gensupport.c (process_substs_on_one_elem): Split loop to
21988 complete mark_operands_used_in_match_dup on all expressions in the
21990 (adjust_operands_numbers): Inline into process_substs_on_one_elem
21991 and remove function.
21993 2016-03-01 Richard Biener <rguenther@suse.de>
21995 PR middle-end/70022
21996 * fold-const.c (fold_indirect_ref_1): Fix range checking for
21997 vector BIT_FIELD_REF extract.
21999 2016-03-01 Richard Biener <rguenther@suse.de>
22001 PR tree-optimization/69994
22002 * tree-ssa-reassoc.c (ops_equal_values_p): Handle missing case.
22004 2016-03-01 Ilya Enkovich <enkovich.gnu@gmail.com>
22006 PR tree-optimization/69956
22007 * tree-vect-stmts.c (supportable_widening_operation): Support
22008 multi-step conversion of boolean vectors.
22009 (supportable_narrowing_operation): Likewise.
22011 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22013 * config/s390/s390.c (s390_decompose_address): Don't accept SImode
22016 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22018 * config/s390/subst.md (DSI_VI): New mode iterator.
22019 ("addr_style_op_subst"): Use DSI_VI instead of DSI.
22020 * config/s390/vector.md ("vec_set<mode>"): Move expander before
22021 the insn definition.
22022 ("*vec_set<mode>"): Change predicate and add alternative to
22023 support only either register or const_int operands as element
22025 ("*vec_set<mode>_plus"): New pattern to support reg + const_int
22027 ("vec_extract<mode>"): New expander.
22028 ("*vec_extract<mode>"): New insn definition supporting reg and
22029 const_int element selectors.
22030 ("*vec_extract<mode>_plus"): New insn definition supporting
22031 reg+const_int element selectors.
22032 ("rotl<mode>3", "ashl<mode>3", "ashr<mode>3"): Merge into the
22033 following expander+insn definition.
22034 ("<vec_shifts_name><mode>3"): New expander.
22035 ("*<vec_shifts_name><mode>3<addr_style_op>"): New insn definition.
22037 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22039 * config/s390/s390.md ("*tabort_1"): Change predicate to
22040 nonmemory_operand. Add a second alternative to cover
22041 register as well as const int operands.
22042 ("*tabort_1_plus"): New pattern definition.
22044 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22046 * config/s390/s390.md ("*ashrdi3_cc_31")
22047 ("*ashrdi3_cconly_31""*ashrdi3_cc_31_and")
22048 ("*ashrdi3_cconly_31_and", "*ashrdi3_31_and", "*ashrdi3_31"):
22049 Merge insn definitions into ...
22050 ("*ashrdi3_31<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
22051 New pattern definition.
22052 ("*ashr<mode>3_cc", "*ashr<mode>3_cconly", "ashr<mode>3", )
22053 ("*ashr<mode>3_cc_and", "*ashr<mode>3_cconly_and")
22054 ("*ashr<mode>3_and"): Merge insn definitions into ...
22055 ("*ashr<mode>3<addr_style_op_cc><masked_op_cc><setcc><cconly>"):
22056 New pattern definition.
22057 * config/s390/subst.md ("addr_style_op_cc_subst")
22058 ("masked_op_cc_subst", "setcc_subst", "cconly_subst"): New
22059 substitutions patterns plus attributes.
22060 Add ashiftrt to SUBST iterator.
22062 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22064 * config/s390/s390.md ("<shift><mode>3"): Change predicate of
22065 op2 to nonmemory_operand.
22066 ("*<shift>di3_31", "*<shift>di3_31_and"):
22067 Merge into single pattern definition ...
22068 ("*<shift>di3_31<addr_style_op><masked_op>"): New pattern.
22069 ("*<shift><mode>3", "*<shift><mode>3_and"): Merge into single
22070 pattern definition ...
22071 ("*<shift><mode>3<addr_style_op><masked_op>"): New pattern.
22072 * config/s390/subst.md: Add ashift and lshiftrt to SUBST
22075 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22077 * config/s390/predicates.md (const_int_6bitset_operand): New
22079 * config/s390/s390.md: Include subst.md.
22080 ("rotl<mode>3"): New expander.
22081 ("rotl<mode>3", "*rotl<mode>3_and"): Merge insn definitions into
22083 ("*rotl<mode>3<addr_style_op><masked_op>"): New insn definition.
22084 * config/s390/subst.md: New file.
22086 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22088 * config/s390/s390.md ("op_type", "atype", "length" attributes):
22089 Remove RRR type. It doesn't really exist.
22090 ("RRer", "f0", "v0", "vf", "vd", "op1", "Rf"): Remove mode
22092 ("BFP", "DFP", "nDSF", "nDFDI"): Add mode attributes.
22093 ("*cmp<mode>_ccs", "floatdi<mode>2", "add<mode>3")
22094 ("*add<mode>3_cc", "*add<mode>3_cconly", "sub<mode>3")
22095 ("*sub<mode>3_cc", "*sub<mode>3_cconly", "mul<mode>3")
22096 ("fma<mode>4", "fms<mode>4", "div<mode>3", "*neg<mode>2")
22097 ("*abs<mode>2", "*negabs<mode>2", "sqrt<mode>2"): Override
22098 `enabled' attribute.
22100 2016-03-01 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22102 * gensupport.c (process_substs_on_one_elem): Split loop to
22103 complete mark_operands_used_in_match_dup on all expressions in the
22105 (adjust_operands_numbers): Inline into process_substs_on_one_elem
22106 and remove function.
22108 2016-02-29 Eric Botcazou <ebotcazou@adacore.com>
22111 * config/sparc/sparc.c (NWORDS_UP): Rename to...
22112 (CEIL_NWORDS): ...this. Use CEIL macro.
22113 (compute_fp_layout): Adjust to above renaming.
22114 (function_arg_union_value): Likewise.
22115 (sparc_arg_partial_bytes): Likewise.
22116 (sparc_function_arg_advance): Likewise.
22118 2016-02-29 Jeff Law <law@redhat.com>
22120 PR tree-optimization/70005
22121 * tree-ssa-uncprop.c (associate_equivalences_with_edges): Handle case
22122 where an object with a boolean range is compared against a value
22125 PR tree-optimization/69999
22126 * gimple-ssa-split-paths.c (split_paths): When duplicating a block
22127 with an outgoing edge marked with EDGE_IRREDUCIBLE_LOOP, schedule
22130 2016-02-29 Richard Biener <rguenther@suse.de>
22132 PR tree-optimization/69994
22133 * tree-ssa-reassoc.c (gimple_nop_conversion_p): New function.
22134 (get_unary_op): Look through nop conversions.
22135 (ops_equal_values_p): New function, look for equality diregarding
22137 (eliminate_plus_minus_pair): Use ops_equal_values_p
22138 (repropagate_negates): Do not use get_unary_op here.
22140 2016-02-29 Martin Liska <mliska@suse.cz>
22142 * system.h: Poison ENABLE_CHECKING macro.
22144 2016-02-29 Martin Liska <mliska@suse.cz>
22146 * hsa-gen.c (gen_body_from_gimple): Dump only if TDF_DETAILS
22147 is presented in dump flags.
22148 * hsa-regalloc.c (linear_scan_regalloc): Likewise.
22149 (hsa_regalloc): Likewise.
22151 2016-02-19 Richard Biener <rguenther@suse.de>
22153 PR tree-optimization/69980
22154 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Update
22155 permutation of those we need to keep.
22157 2016-02-29 Eric Botcazou <ebotcazou@adacore.com>
22160 * config/sparc/sparc.c (ROUND_ADVANCE): Rename to...
22161 (NWORDS_UP): ...this
22162 (init_cumulative_args): Minor tweaks.
22163 (sparc_promote_function_mode): Likewise.
22164 (scan_record_type): Delete.
22165 (traverse_record_type): New function template.
22166 (classify_data_t): New structure type.
22167 (classify_registers): New inline function.
22168 (function_arg_slotno): In 64-bit mode, bail out early if FP slots are
22169 exhausted. Instantiate traverse_record_type on classify_registers and
22170 deal with the case of a structure passed in slot #15 with no FP field
22172 (assign_data_t): New structure type.
22173 (compute_int_layout): New static function.
22174 (compute_fp_layout): Likewise.
22175 (count_registers): New inline function.
22176 (assign_int_registers): New static function.
22177 (assign_fp_registers): Likewise.
22178 (assign_registers): New inline function.
22179 (function_arg_record_value_1): Delete.
22180 (function_arg_record_value_2): Likewise.
22181 (function_arg_record_value_3): Likewise.
22182 (function_arg_record_value): Adjust to above changes. Instantiate
22183 traverse_record_type on count_registers to first count the number of
22184 registers to be used and then on assign_registers to assign them.
22185 (function_arg_union_value): Adjust to above renaming.
22186 (sparc_function_arg_1); Minor tweaks. Remove commented out code.
22187 (sparc_arg_partial_bytes): Adjust to above renaming. Deal with the
22188 case of a structure passed in slot #15
22189 (sparc_function_arg_advance): Likewise.
22190 (function_arg_padding): Minor tweak.
22192 2016-02-29 Richard Biener <rguenther@suse.de>
22194 PR tree-optimization/69720
22195 * tree-vect-loop.c (get_initial_def_for_reduction): Avoid
22196 the adjustment_def path for possibly vectorized defs.
22197 (vect_create_epilog_for_reduction): Handle vectorized initial
22200 2016-02-28 Eric Botcazou <ebotcazou@adacore.com>
22202 * config/i386/cygming.h (STACK_REALIGN_DEFAULT): Define.
22204 2016-02-27 Jeff Law <law@redhat.com>
22207 2016-02-26 Richard Biener <rguenther@suse.de>
22208 Jeff Law <law@redhat.com>
22210 PR tree-optimization/69740
22211 * cfghooks.c (remove_edge): Request loop fixups if we delete
22212 an edge that might turn an irreducible loop into a natural
22215 2016-02-27 Jakub Jelinek <jakub@redhat.com>
22217 PR rtl-optimization/69896
22218 * tree-vect-generic.c (get_compute_type): Avoid single element
22221 2016-02-26 Evandro Menezes <e.menezes@samsung.com>
22223 Rename the AArch64 tuning option and related functions to enable the
22224 Newton series for the reciprocal square root to reflect its
22225 approximative characteristic.
22227 * config/aarch64/aarch64-protos.h (aarch64_emit_swrsqrt): Rename
22228 function to "aarch64_emit_approx_rsqrt".
22229 * config/aarch64/aarch64-tuning-flags.def: Rename tuning flag to
22230 AARCH64_EXTRA_TUNE_APPROX_RSQRT.
22231 * config/aarch64/aarch64.c (exynosm1_tunigs): Use new flag name.
22232 (xgene1_tunings): Likewise.
22233 (use_rsqrt_p): Likewise.
22234 (aarch64_emit_swrsqrt): Use new function name.
22235 * config/aarch64/aarch64-simd.md (aarch64_rsqrts_*): Likewise.
22236 * config/aarch64/aarch64.opt (mlow-precision-recip-sqrt): Reword the
22237 text explaining this option.
22238 * doc/invoke.texi (-mlow-precision-recip-sqrt): Likewise.
22240 2016-02-26 Jakub Jelinek <jakub@redhat.com>
22243 * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
22244 complain about -mallow-movmisalign without -mvsx if
22245 TARGET_ALLOW_MOVMISALIGN was not set explicitly.
22247 2016-02-26 Joel Sherrill <joel@rtems.org>
22249 * config.gcc: Add x86_64-*-rtems*.
22250 * config/i386/rtems-64.h: New file.
22252 2016-02-26 Joel Sherrill <joel@rtems.org>
22254 * config.gcc: Add aarch64-*-rtems*.
22255 * config/aarch64/rtems.h: New file.
22257 2016-02-26 Segher Boessenkool <segher@kernel.crashing.org>
22260 * config/rs6000/rs6000.c (rs6000_insn_for_shift_mask): Print rlwinm
22261 shift amount using %h. Add comment.
22263 2016-02-26 Richard Biener <rguenther@suse.de>
22264 Jeff Law <law@redhat.com>
22266 PR tree-optimization/69740
22267 * cfghooks.c (remove_edge): Request loop fixups if we delete
22268 an edge that might turn an irreducible loop into a natural
22271 2016-02-26 Martin Jambor <mjambor@suse.cz>
22273 PR middle-end/69920
22274 * tree-sra.c (sra_modify_assign): Do not remove loads of
22275 uninitialized aggregates to SSA_NAMEs.
22277 2016-02-26 Richard Henderson <rth@redhat.com>
22280 * config/s390/s390.md (risbg and risbgn splitters): Allocate new
22281 pseudo in case the target rtx matches the source of the left
22284 2016-02-26 Martin Jambor <mjambor@suse.cz>
22287 * hsa.h (hsa_type_packed_p): Declare.
22288 * hsa.c (hsa_type_packed_p): New function.
22289 * hsa-gen.c (mem_type_for_type): Use unsigned type for packed
22291 (gen_hsa_insns_for_store): Use hsa_type_packed_p.
22292 * hsa-brig.c (emit_basic_insn): Likewise.
22294 2016-02-26 Martin Jambor <mjambor@suse.cz>
22297 * hsa-gen.c (gen_hsa_phi_from_gimple_phi): Use proper hsa type for
22299 (gen_hsa_addr): Allow integer constants in TMR_INDEX2.
22301 2016-02-26 Martin Jambor <mjambor@suse.cz>
22303 * hsa.h (is_a_helper): New overload for hsa_op_immed for
22304 hsa_op_with_type operands.
22305 (hsa_unsigned_type_for_type): Declare.
22306 * hsa.c (hsa_unsigned_type_for_type): New function.
22307 * hsa-gen.c (gen_hsa_binary_operation): Use hsa_unsigned_type_for_type.
22308 (gen_hsa_insns_for_operation_assignment): Satisfy constrains of
22309 the finalizer. Do not emit extra move.
22311 2016-02-26 Martin Jambor <mjambor@suse.cz>
22313 * hsa-gen.c (gen_hsa_ternary_atomic_for_builtin): Fail in presence of
22314 atomic operations in private segment.
22316 2016-02-26 Martin Jambor <mjambor@suse.cz>
22318 * omp-low.c (grid_find_ungridifiable_statement): Store problematic
22319 statements to wi->info. Also disallow omp simd constructs.
22320 (grid_target_follows_gridifiable_pattern): Use wi.info to dump reason
22321 for not gridifying. Dump special string for omp_for.
22323 2016-02-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22326 * config/aarch64/aarch64.c (aarch64_set_current_function):
22327 Save/restore target globals when switching to
22328 target_option_default_node.
22330 2016-02-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22333 * config/aarch64/aarch64.c (aarch64_shift_truncation_mask):
22334 Return 0 if !SHIFT_COUNT_TRUNCATED.
22336 2016-02-26 Jakub Jelinek <jakub@redhat.com>
22337 Eric Botcazou <ebotcazou@adacore.com>
22339 PR rtl-optimization/69891
22340 * dse.c (scan_insn): If we can't figure out memset arguments
22341 or they are non-constant, call clear_rhs_from_active_local_stores.
22343 2016-02-26 Martin Liska <mliska@suse.cz>
22345 * doc/extend.texi: Mention clog10, clog10f an clog10l
22346 in Builtins section.
22348 2016-02-26 Martin Liska <mliska@suse.cz>
22350 * dwarf2out.c (new_loc_descr): Replace ENABLE_CHECKING with
22352 (resolve_args_picking_1): Likewise.
22353 * dwarf2out.h (struct GTY): Likewise.
22355 2016-02-26 Martin Liska <mliska@suse.cz>
22357 * hsa-gen.c (generate_hsa): Replace ENABLE_CHECKING macro
22358 with flag_checking.
22359 * hsa-regalloc.c (linear_scan_regalloc): Likewise.
22361 2016-02-26 Markus Trippelsdorf <markus@trippelsdorf.de>
22362 Martin Liska <mliska@suse.cz>
22364 * doc/install.texi: Mention --enable-valgrind-annotations.
22366 2016-02-26 Richard Biener <rguenther@suse.de>
22368 PR tree-optimization/69551
22369 * tree-ssa-structalias.c (get_constraint_for_ssa_var): When
22370 looking through aliases adjust DECL_PT_UID to refer to the
22371 ultimate alias target.
22373 2016-02-25 Martin Liska <mliska@suse.cz>
22375 PR middle-end/69919
22376 * alloc-pool.c (after_memory_report): New variable.
22377 * alloc-pool.h (base_pool_allocator ::release): Do not use
22378 the infrastructure if after_memory_report.
22379 * toplev.c (toplev::main): Mark after memory report.
22381 2016-02-25 Richard Biener <rguenther@suse.de>
22383 PR tree-optimization/48795
22384 * tree-vrp.c (check_array_ref): Use array_at_struct_end_p.
22386 2016-02-25 Ilya Verbin <ilya.verbin@intel.com>
22389 * config/gnu-user.h (CRTOFFLOADBEGIN): Define. Add crtoffloadbegin.o if
22390 offloading is enabled and -fopenacc or -fopenmp is specified.
22391 (CRTOFFLOADEND): Likewise.
22392 (GNU_USER_TARGET_STARTFILE_SPEC): Add CRTOFFLOADBEGIN.
22393 (GNU_USER_TARGET_ENDFILE_SPEC): Add CRTOFFLOADEND.
22394 * lto-wrapper.c (offloadbegin, offloadend): Remove static vars.
22395 (offload_objects_file_name): New static var.
22396 (tool_cleanup): Remove offload_objects_file_name file.
22397 (find_offloadbeginend): Replace with ...
22398 (find_crtoffloadtable): ... this.
22399 (run_gcc): Remove offload_argc and offload_argv.
22400 Get offload_objects_file_name from -foffload-objects=... option.
22401 Read names of object files with offload from this file, pass them to
22402 compile_images_for_offload_targets. Don't call find_offloadbeginend and
22403 don't pass offloadbegin and offloadend to the linker. Don't pass
22404 offload non-LTO files to the linker, because now they're not claimed.
22406 2016-02-25 Jan Hubicka <hubicka@ucw.cz>
22409 * ipa-devirt.c (possible_polymorphic_call_targets): Do not ICE
22410 on builtin_unreachable.
22412 2016-02-25 Jakub Jelinek <jakub@redhat.com>
22414 PR rtl-optimization/69896
22415 * regcprop.c: Include cfgrtl.h.
22416 (copyprop_hardreg_forward_1): If noop_p insn uses narrower
22417 than remembered mode, either delete it (if noop_move_p), or
22418 treat like copy_p but not noop_p instruction.
22420 2016-02-24 Jakub Jelinek <jakub@redhat.com>
22423 * dwarf2out.c (gen_variable_die): Work around buggy LTO
22424 - allow NULL decl for Fortran DW_TAG_common_block variables.
22426 2016-02-24 Jason Merrill <jason@redhat.com>
22428 * common.opt (flifetime-dse): Add -flifetime-dse=1.
22430 2016-02-24 Richard Biener <rguenther@suse.de>
22431 Jakub Jelinek <jakub@redhat.com>
22433 PR middle-end/69760
22434 * tree-scalar-evolution.c (interpret_rhs_expr): Re-write
22435 conditionally executed ops to well-defined overflow behavior.
22437 2016-02-24 Jakub Jelinek <jakub@redhat.com>
22439 PR middle-end/69915
22440 * tree.c (build_vector_from_ctor): Fix handling of VECTOR_CST
22443 2016-02-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22445 PR rtl-optimization/69886
22446 * gcse.c (can_assign_to_reg_without_clobbers_p): Accept mode
22447 argument. Use it when checking validity of set instructions.
22448 (want_to_gcse_p): Pass mode to can_assign_to_reg_without_clobbers_p.
22449 (compute_ld_motion_mems): Update can_assign_to_reg_without_clobbers_p
22451 * rtl.h (can_assign_to_reg_without_clobbers_p): Update prototype.
22452 * store-motion.c (find_moveable_store): Update
22453 can_assign_to_reg_without_clobbers_p callsite.
22455 2016-02-24 Richard Biener <rguenther@suse.de>
22457 PR middle-end/68963
22458 * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Fix
22460 (record_nonwrapping_iv): Do not fall back to the low/high bound
22461 for non-constant IV bases if the stmt is not always executed.
22463 2016-02-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22465 * config/arm/arm-cores.def (cortex-a32): New entry.
22466 * config/arm/arm-tables.opt: Regenerate.
22467 * config/arm/arm-tune.md: Regenerate.
22468 * config/arm/bpabi.h (BE8_LINK_SPEC): Add mcpu=cortex-a32.
22469 * config/arm/t-aprofile: Handle mcpu=cortex-a32.
22470 * doc/invoke.texi (ARM Options): Document cortex-a32 as value
22471 for -mcpu and -mtune.
22473 2016-02-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22476 * config/arm/arm.h (TARGET_HAVE_LPAE): Define.
22477 * config/arm/unspecs.md (VUNSPEC_LDRD_ATOMIC): New value.
22478 * config/arm/sync.md (arm_atomic_loaddi2_ldrd): New pattern.
22479 (atomic_loaddi_1): Delete.
22480 (atomic_loaddi): Rewrite expander using the above changes.
22482 2016-02-24 Jakub Jelinek <jakub@redhat.com>
22485 * params.def (PARAM_MAX_SSA_NAME_QUERY_DEPTH): Bump default from
22488 2016-02-24 Jakub Jelinek <jakub@redhat.com>
22489 Richard Biener <rguenth@suse.de>
22491 PR middle-end/69909
22492 * expr.c (expand_expr_real_1) <normal_inner_ref>: Avoid
22493 set_mem_attributes if tem is SSA_NAME which got expanded
22496 2016-02-24 Richard Biener <rguenther@suse.de>
22498 PR tree-optimization/69907
22499 * tree-vect-stmts.c (vectorizable_load): Check for gaps at the
22500 end of permutations for BB vectorization.
22502 2016-02-24 Christian Bruel <christian.bruel@st.com>
22504 * config/arm/arm-c.c (arm_option_override): Initialize
22505 target_option_current_node.
22506 * config/arm/arm.c (arm_pragma_target_parse): Replace
22507 build_target_option_node call by target_option_current_node.
22508 Set target_option_current_node.
22511 2016-02-23 David Edelsohn <dje.gcc@gmail.com>
22514 * config/rs6000/rs6000.md (zero_extendqi<mode>2_dot): Convert from
22515 define_insn_and_split to define_insn.
22516 (zero_extendqi<mode>2_dot2): Same.
22517 (extendqi<mode>2_dot): Same.
22518 (extendqi<mode>2_dot2): Same.
22520 2016-02-23 Evandro Menezes <e.menezes@samsung.com>
22522 * config/arm/exynos-m1.md: Change cost of STP, fix bypass for stores
22523 and add bypass for AES{D,E} and AESMC pairs.
22524 * config/aarch64/aarch64.c (exynosm1_tunings): Enable fusion of AES{D,E}
22527 2016-02-23 Evandro Menezes <e.menezes@samsung.com>
22529 * config/aarch64/aarch64.c (exynosm1_tunings): Enable the Newton
22530 series for reciprocal square root in Exynos M1.
22532 2016-02-23 Martin Sebor <msebor@redhat.com>
22535 * doc/extend.texi (Other Builtins): Document __builtin_alloca and
22536 __builtin_alloca_with_align.
22538 2016-02-23 Richard Henderson <rth@redhat.com>
22540 * config/i386/i386-c.c (ix86_target_macros): Remove __SEG_TLS.
22541 (ix86_register_pragmas): Remove __seg_tls.
22542 * config/i386/i386-protos.h (ADDR_SPACE_SEG_TLS): Remove.
22543 * config/i386/i386.c (ix86_print_operand_address_as): Don't handle it.
22544 (ix86_addr_space_subset_p, TARGET_ADDR_SPACE_SUBSET_P): Remove.
22545 (ix86_addr_space_convert, TARGET_ADDR_SPACE_CONVERT): Remove.
22546 (ix86_addr_space_debug, TARGET_ADDR_SPACE_DEBUG): Remove.
22547 * doc/extend.texi (__seg_tls): Remove item.
22549 2016-02-23 Richard Biener <rguenther@suse.de>
22551 * alloc-pool.h (struct allocation_object): Make id member
22552 conditional on CHECKING_P again.
22553 (get_instance): Adjust.
22554 (base_pool_allocator): Likewise.
22556 2016-02-23 Thomas Schwinge <thomas@codesourcery.com>
22558 * tree-parloops.c (create_parallel_loop, gen_parallel_loop)
22559 (parallelize_loops): In OpenACC kernels mode, set n_threads to
22561 (pass_parallelize_loops::gate): In OpenACC kernels mode, gate on
22563 * tree-ssa-loop.c (gate_oacc_kernels): Likewise.
22565 2016-02-23 Richard Biener <rguenther@suse.de>
22567 * mem-stats.h (struct mem_usage): Use PRIu64 for printing size_t.
22568 * bitmap.h (struct bitmap_usage): Likewise.
22569 (bitmap_move): Declare.
22570 * bitmap.c (register_overhead): Take size_t argument.
22571 (bitmap_move): New function.
22572 * df-problems.c (df_rd_transfer_function): Use bitmap_move
22573 to properly account overhead.
22574 * tree.c (free_node): Use tree_size.
22576 2016-02-23 Jakub Jelinek <jakub@redhat.com>
22579 * fold-const.c (fold_truth_not_expr): Propagate TREE_NO_WARNING
22580 when inverting comparison.
22583 * common.opt (Wunreachable-code): Add Warning flag.
22585 2016-02-23 Mark Wielaard <mjw@redhat.com>
22586 Jakub Jelinek <jakub@redhat.com>
22589 * cgraphunit.c (check_global_declaration): Check main_input_filename
22590 and DECL_SOURCE_FILE are not NULL.
22592 2016-02-23 Martin Jambor <mjambor@suse.cz>
22594 PR tree-optimization/69666
22595 * tree-sra.c (sra_modify_assign): Do not attempt to create
22596 default_def replacements for unscalarizable regions.
22598 2016-02-20 Mark Wielaard <mjw@redhat.com>
22601 * cgraphunit.c (check_global_declaration): Check level of
22602 warn_unused_const_variable and main_input_filename.
22603 * doc/invoke.texi (Warning Options): Add -Wunused-const-variable=.
22604 (-Wunused-variable): For C implies -Wunused-const-variable=1.
22605 (-Wunused-const-variable): Explain levels 1 and 2.
22607 2016-02-22 Jakub Jelinek <jakub@redhat.com>
22610 * config/i386/i386.c (decide_alg): Ensure we don't recurse with
22611 identical arguments. Formatting and spelling fixes.
22614 * doc/md.texi (ashl@var{m}3): Document that mode of operand 2 must
22619 * config/m68k/t-opts (OPTIONS_H_EXTRA): Add m68k-microarchs.def
22620 and m68k-devices.def.
22621 * config/c6x/t-c6x (OPTIONS_H_EXTRA): Add c6x-isas.def.
22622 * config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add aarch64-arches.def.
22624 2016-02-22 Cesar Philippidis <cesar@codesourcery.com>
22626 * config/nvptx/nvptx.c (nvptx_gen_shuffle): Add support for QImode
22627 and HImode registers.
22629 2016-02-22 Richard Biener <rguenther@suse.de>
22631 PR tree-optimization/69882
22632 * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Properly
22633 preserve permutations present because of gaps.
22634 (vect_supported_load_permutation_p): Always continue checking
22635 permutations after vect_attempt_slp_rearrange_stmts.
22637 2016-02-22 Bin Cheng <bin.cheng@arm.com>
22639 * tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump
22640 min_profitable_estimate, rather than min_profitable_iters.
22642 2016-02-22 Jakub Jelinek <jakub@redhat.com>
22645 * config/m68k/m68k.md (ashldi3, ashrdi3, lshrdi3): Use
22646 SImode for last match_operand.
22648 2016-02-22 Martin Liska <mliska@suse.cz>
22650 * hsa-gen.c (gen_hsa_clrsb): In case of zero value,
22651 return bitsize - 1 as the return value.
22653 2016-02-22 Oleg Endo <olegendo@gcc.gnu.org>
22657 * config/sh/sh.c (sh_lshrsi_clobbers_t_reg_p, sh_dynamicalize_shift_p):
22658 Handle negative shift counts.
22659 * config/sh/sh.md (ashlsi3, lshrsi3_n, lshrsi3_n_clobbers_t): Don't use
22660 force_reg on the shift constant.
22661 (lshrsi3): Likewise. Expand into lshrsi3_n* instead of lshrsi3_d.
22662 (lshrsi3_d): Handle negative shift counts.
22664 2016-02-22 Richard Biener <rguenther@suse.de>
22665 Tom de Vries <tom@codesourcery.com>
22667 * graph.c: Include dumpfile.h.
22668 (print_graph_cfg): Split into three overloads.
22669 * gdbhooks.py (class DotFn): Add and instantiate, adding command dot-fn.
22671 2016-02-22 Tom de Vries <tom@codesourcery.com>
22673 * gdbhooks.py (class DumpFn): Add and instantiate, adding command
22676 2016-02-22 Richard Biener <rguenther@suse.de>
22679 * ipa-inline-transform.c (inline_call): When not updating
22680 overall summaries adjust self size by the growth estimate.
22681 * ipa-inline.c (inline_to_all_callers_1): Add to the callers
22682 hash-set, do not update overall summaries here. Renamed from ...
22683 (inline_to_all_callers): ... this which is now wrapping the
22684 above and performing delayed overall summary update.
22685 (early_inline_small_functions): Delay updating of the overall
22688 2016-02-21 Markus Trippelsdorf <markus@trippelsdorf.de>
22690 * tree-chkp.c (chkp_mark_invalid_bounds_walker): Initialize
22693 2016-02-19 Jakub Jelinek <jakub@redhat.com>
22696 * gcc.c (LINK_COMMAND_SPEC, GOMP_SELF_SPECS): Use
22697 :%* in %:gt() argument.
22698 (greater_than_spec_func): Adjust for expecting only numbers,
22699 if there are more than two numbers, compare the last two.
22701 2016-02-19 Jonathan Wakely <jwakely@redhat.com>
22703 * doc/invoke.texi (C++ Dialect Options): Clarify interaction of
22704 -Wnarrowing with -std.
22706 2016-02-19 Jakub Jelinek <jakub@redhat.com>
22709 * expr.c (store_field): Don't use bit-field path if exp is
22710 COMPONENT_REF with TREE_ADDRESSABLE type, where TYPE_SIZE is
22711 different from bitsize, but DECL_SIZE of FIELD_DECL is bitsize
22712 and the assignment can be performed by bitwise copy. Formatting
22715 PR middle-end/69838
22716 * lra.c (lra_process_new_insns): If non-call exceptions are enabled,
22717 call copy_reg_eh_region_note_forward on before and/or after sequences
22718 and remove note from insn if it no longer can throw.
22721 * config/i386/sse.md (VI_512): Only include V64QImode and V32HImode
22722 if TARGET_AVX512BW.
22724 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22726 * config/s390/vector.md: Add missing commutative operand markers
22727 to the patterns which qualify for one.
22728 * config/s390/vx-builtins.md: Likewise.
22730 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22732 * config/s390/vector.md (VI, VI_QHS): Add single element vector
22733 types to mode iterators.
22734 (vec_double): ... and mode attribute.
22735 * config/s390/vx-builtins.md (non_vec_int): Likewise.
22737 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22739 * config/s390/vector.md ("<ti*>add<mode>3", "<ti*>sub<mode>3"):
22740 Change the predicate of op2 from nonimmediate to general and let
22741 reload fix it if necessary.
22743 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22745 * config/s390/vecintrin.h (vec_sub_u128): Define missing macro.
22747 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22749 * config/s390/s390.c (s390_expand_vcond): Use the compare operand
22752 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22754 * config/s390/s390-protos.h: Add s390_expand_vec_movstr prototype.
22755 * config/s390/s390.c (s390_expand_vec_movstr): New function.
22756 * config/s390/s390.md ("movstr<P:mode>"): Call
22757 s390_expand_vec_movstr.
22759 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22761 * config/s390/s390.md: Add missing output modifier for operand 1
22762 to print it as address properly.
22764 2016-02-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
22766 * config/s390/2827.md: Rename ooo_* insn attributes to zEC12_*.
22767 * config/s390/2964.md: New file.
22768 * config/s390/s390.c (s390_get_sched_attrmask): Use the right set
22769 of insn grouping attributes depending on the CPU level.
22770 (s390_get_unit_mask): New function.
22771 (s390_sched_score): Remove the OOO from the scheduling macros.
22772 Add loop to calculate a score for the instruction mix.
22773 (s390_sched_reorder): Likewise plus improve debug output.
22774 (s390_sched_variable_issue): Rename macros as above. Calculate
22775 the unit distances after actually scheduling an insn. Improve
22777 (s390_sched_init): Clear last_scheduled_unit_distance array.
22778 * config/s390/s390.md: Include 2964.md.
22780 2016-02-18 Jakub Jelinek <jakub@redhat.com>
22783 * config/i386/sse.md (*<floatsuffix>floatv2div2sf2_mask_1,
22784 *avx512vl_<code>v2div2qi2_mask_1, *avx512vl_<code><mode>v4qi2_mask_1,
22785 *avx512vl_<code><mode>v8qi2_mask_1, *avx512vl_<code><mode>v4hi2_mask_1,
22786 *avx512vl_<code>v2div2hi2_mask_1, *avx512vl_<code>v2div2si2_mask_1,
22787 *avx512f_<code>v8div16qi2_mask_1): New insns.
22789 2016-02-18 Michael Meissner <meissner@linux.vnet.ibm.com>
22792 * config/rs6000/predicates.md (fusion_gpr_addis): Revert
22795 * config/rs6000/rs6000.md (fusion_gpr_load_<mode>): Remove
22796 earlyclobber from target. Use wF constraint for fused memory
22798 (fusion_gpr_<P:mode>_<GPR_FUSION:mode>_load): Likewise.
22800 2016-02-18 Jakub Jelinek <jakub@redhat.com>
22801 Martin Liska <mliska@suse.cz>
22804 * cfgexpand.c (asan_sanitize_stack_p): New function.
22805 (partition_stack_vars): Use the function.
22806 (expand_stack_vars): Likewise.
22807 (defer_stack_allocation): Likewise.
22808 (expand_used_vars): Likewise.
22810 2016-02-18 Richard Biener <rguenther@suse.de>
22812 PR middle-end/69553
22813 * fold-const.c (operand_equal_p): Properly compare offsets for
22814 IMAGPART_EXPR and ARRAY_REF.
22816 2016-02-18 Nick Clifton <nickc@redhat.com>
22820 * config/arm/arm.c (arm_option_override_internal): Disable
22821 interworking if the target does not support thumb instructions.
22822 (arm_reload_in_hi): Handle the case where a register to register
22823 move needs reloading because there is no simple pattern to handle
22825 (arm_reload_out_hi): Likewise.
22827 2016-02-18 Richard Biener <rguenther@suse.de>
22829 PR middle-end/69854
22830 * match.pd: Don't use fold_binary or fold_unary for folding
22833 2016-02-17 Jakub Jelinek <jakub@redhat.com>
22836 * gimplify.c (gimplify_cond_expr): Call gimple_set_no_warning
22837 on the cond_stmt from TREE_NO_WARNING on COND_EXPR_COND.
22838 * gimple-ssa-nonnull-compare.c (do_warn_nonnull_compare): Don't
22839 warn on gimple_no_warning_p statements.
22841 2016-02-17 Jonathan Wakely <jwakely@redhat.com>
22843 * doc/extend.texi (C++ Attributes): Correct description of
22844 warn_unused type attribute.
22846 2016-02-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
22848 * config/rs6000/altivec.md (*altivec_lvxl_<mode>_internal): Output
22849 correct instruction.
22851 2016-02-17 Richard Biener <rguenther@suse.de>
22853 PR rtl-optimization/69609
22854 * bb-reorder.c (struct bbro_basic_block_data): Add priority member.
22855 (find_traces_1_round): When ending a trace update cached priority
22857 (bb_to_key): Use cached priority when available.
22858 (copy_bb): Initialize cached priority.
22859 (reorder_basic_blocks_software_trace_cache): Likewise.
22861 2016-02-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22864 * config/aarch64/predicates.md (aarch64_comparison_operator_mode):
22866 (aarch64_comparison_operator): Break overly long line into two.
22867 (aarch64_comparison_operation): Likewise.
22868 * config/aarch64/aarch64.md (cstorecc4): Use
22869 aarch64_comparison_operator_mode instead of
22870 aarch64_comparison_operator.
22871 (cstore<mode>4): Likewise.
22872 (aarch64_cstore<mode>): Likewise.
22873 (*cstoresi_insn_uxtw): Likewise.
22874 (cstore<mode>_neg): Likewise.
22875 (*cstoresi_neg_uxtw): Likewise.
22877 2016-02-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22880 * config/arm/predicates.md (arm_comparison_operator_mode):
22882 * config/arm/arm.md (*mov_scc): Use arm_comparison_operator_mode
22883 instead of arm_comparison_operator.
22884 (*mov_negscc): Likewise.
22885 (*mov_notscc): Likewise.
22886 * config/arm/thumb2.md (*thumb2_mov_scc): Likewise.
22887 (*thumb2_mov_negscc): Likewise.
22888 (*thumb2_mov_negscc_strict_it): Likewise.
22889 (*thumb2_mov_notscc): Likewise.
22890 (*thumb2_mov_notscc_strict_it): Likewise.
22892 2016-02-17 Wilco Dijkstra <wdijkstr@arm.com>
22894 * config/aarch64/aarch64.c (aarch64_internal_mov_immediate):
22895 Add missing return.
22897 2016-02-17 Eric Botcazou <ebotcazou@adacore.com>
22899 * config/visium/visium.c (machine_libfunc_index): New enum.
22900 (machine_libfuncs): New structure.
22901 (visium_libfuncs): New static variable.
22902 (TARGET_INIT_LIBFUNCS): Define to...
22903 (visium_init_libfuncs): ...this. New function.
22904 (expand_block_move_4): Use the appropriate libfunc.
22905 (expand_block_move_2): Likewise.
22906 (expand_block_move_1): Likewise.
22907 (expand_block_set_4): Likewise.
22908 (expand_block_set_2): Likewise.
22909 (expand_block_set_1): Likewise.
22910 (visium_trampoline_init): Likewise.
22912 2016-02-17 Nick Clifton <nickc@redhat.com>
22914 * config/msp430/msp430.c (msp430_mcu_data): Sync with data from
22915 TI's devices.csv file as of March 2016.
22917 2016-02-16 Kelvin Nilsen <kelvin@gcc.gnu.org>
22920 * opts-global.c (handle_common_deferred_options): Introduce and
22921 initialize two global variables to remember command-line options
22922 specifying a stack-limiting register.
22923 * opts.h: Add extern declarations of the two new global variables.
22924 * emit-rtl.c (init_emit_once): Initialize the stack_limit_rtx
22925 variable based on the values of the two new global variables.
22927 2016-02-16 Jakub Jelinek <jakub@redhat.com>
22930 * common.opt (Wnonnull-compare): New warning.
22931 * doc/invoke.texi (-Wnonnull): Remove text about comparison
22932 of arguments against NULL.
22933 (-Wnonnull-compare): Document.
22934 * Makefile.in (OBJS): Add gimple-ssa-nonnull-compare.o.
22935 * tree-pass.h (make_pass_warn_nonnull_compare): Declare.
22936 * passes.def (pass_warn_nonnull_compare): Add.
22937 * gimple-ssa-nonnull-compare.c: New file.
22939 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
22941 * config/aarch64/aarch64.c (cortexa57_tunings): Remove
22942 AARCH64_EXTRA_TUNE_RECIP_SQRT.
22944 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
22946 * config/aarch64/aarch64.c (use_rsqrt_p): Always use software
22947 reciprocal sqrt for -mlow-precision-recip-sqrt.
22949 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
22950 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
22952 * config/aarch64/aarch64.c (aarch64_expand_vector_init): Refactor,
22953 always use lane loads to construct non-constant vectors.
22955 2016-02-16 James Greenhalgh <james.greenhalgh@arm.com>
22957 * config/aarch64/aarch64.md
22958 (arch64_sqrdml<SQRDMLH_AS:rdma_as>h_lane<mode>): Fix register
22959 constraints for operand 3.
22960 (aarch64_sqrdml<SQRDMLH_AS:rdma_as>h_laneq<mode>): Likewise.
22962 2016-02-16 Jakub Jelinek <jakub@redhat.com>
22963 Richard Biener <rguenther@suse.de>
22965 PR tree-optimization/69820
22966 * tree-vect-patterns.c (type_conversion_p): Return false if
22967 *orig_type is unsigned single precision or boolean.
22968 (vect_recog_dot_prod_pattern, vect_recog_widen_mult_pattern):
22971 2016-02-16 Jakub Jelinek <jakub@redhat.com>
22973 PR rtl-optimization/69764
22974 PR rtl-optimization/69771
22975 * optabs.c (expand_binop): Ensure for shift optabs invalid CONST_INT
22976 op1 is valid for GET_MODE_INNER (mode) and force it into a reg.
22978 2016-02-16 Richard Biener <rguenther@suse.de>
22980 PR tree-optimization/69776
22981 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Get alias
22983 (indirect_refs_may_alias_p): Likewise.
22984 (refs_may_alias_p_1): Pass alias sets as from ao_ref.
22985 * tree-ssa-sccvn.c (vn_reference_lookup): Also adjust vr alias-set
22986 according to tbaa_p.
22987 * tree-ssa-dom.c (lookup_avail_expr): Add tbaa_p flag.
22988 (optimize_stmt): For redundant store discovery do not allow tbaa.
22990 2016-02-16 Bernd Schmidt <bschmidt@redhat.com>
22992 PR tree-optimization/69714
22993 * tree-ssa-math-opts.c (find_bswap_or_nop): Revert previous change.
22994 Return NULL if we have irrelevant high bytes on BIG_ENDIAN.
22996 2016-02-16 Claudiu Zissulescu <claziss@synopsys.com>
22998 * config/arc/arc-modes.def (CC_FPU, CC_FPU_UNEQ): New modes.
22999 * config/arc/arc-opts.h (FPU_SP, FPU_SF, FPU_SC, FPU_SD, FPU_DP)
23000 (FPU_DF, FPU_DC, FPU_DD, FXP_DP): Define.
23001 * config/arc/arc.c (arc_init): Check FPU options.
23002 (get_arc_condition_code): Handle new CC_FPU* modes.
23003 (arc_select_cc_mode): Likewise.
23004 (arc_conditional_register_usage): Allow 64 bit datum into even-odd
23005 register pair only. Allow access for ARCv2 accumulator.
23006 (gen_compare_reg): Whenever we have FPU support use FPU compare
23008 (arc_reorg): Don't generate brcc insns when FPU compare
23009 instructions are involved.
23010 * config/arc/arc.h (TARGET_DPFP): Add TARGET_FP_DPAX condition.
23011 (TARGET_OPTFPE): Add condition when ARC EM can use optimized
23012 floating point emulation.
23013 (ACC_REG_FIRST, ACC_REG_LAST, ACCL_REGNO, ACCH_REGNO): Define.
23014 (REVERSE_CONDITION): Add new CC_FPU* modes.
23015 (TARGET_FP_SP_BASE): Define.
23016 (TARGET_FP_DP_BASE): Likewise.
23017 (TARGET_FP_SP_FUSED): Likewise.
23018 (TARGET_FP_DP_FUSED): Likewise.
23019 (TARGET_FP_SP_CONV): Likewise.
23020 (TARGET_FP_DP_CONV): Likewise.
23021 (TARGET_FP_SP_SQRT): Likewise.
23022 (TARGET_FP_DP_SQRT): Likewise.
23023 (TARGET_FP_DP_AX): Likewise.
23024 * config/arc/arc.md (ARCV2_ACC): New constant.
23025 (type): New fpu type attribute.
23026 (SDF): Conditional iterator.
23027 (cstore<mode>, cbranch<mode>): Change expand condition.
23028 (addsf3, subsf3, mulsf3, adddf3, subdf3, muldf3): New expands,
23029 handles FPU/FPX cases as well.
23030 * config/arc/arc.opt (mfpu): New option.
23031 * config/arc/fpx.md (addsf3_fpx, subsf3_fpx, mulsf3_fpx):
23033 (adddf3, muldf3, subdf3): Removed.
23034 * config/arc/predicates.md (proper_comparison_operator): Recognize
23036 * config/arc/fpu.md: New file.
23037 * doc/invoke.texi (ARC Options): Document mfpu option.
23039 2016-02-16 Richard Biener <rguenther@suse.de>
23041 PR rtl-optimization/69291
23042 * ifcvt.c (noce_try_store_flag_constants): Re-instantiate
23043 noce_operand_ok check.
23045 2016-02-16 Tom de Vries <tom@codesourcery.com>
23048 * omp-low.c (simd_clone_create): Remove call to
23049 symtab->call_cgraph_insertion_hooks.
23051 2016-02-16 Jakub Jelinek <jakub@redhat.com>
23053 PR tree-optimization/69802
23054 * tree-ssa-reassoc.c (update_range_test): If op is
23055 SSA_NAME_IS_DEFAULT_DEF, give up unless tem is a positive
23056 op == 1 test of precision 1 integral op, otherwise handle
23057 that case as op itself. Fix up formatting.
23058 (optimize_range_tests_to_bit_test, optimize_range_tests): Fix
23061 2016-02-16 Richard Biener <rguenther@suse.de>
23063 PR tree-optimization/69586
23064 * tree-vrp.c (register_edge_assert_for_2): Handle all integral
23065 types for conversion sources.
23067 2016-02-16 Richard Biener <rguenther@suse.de>
23069 PR middle-end/69801
23070 * fold-const.c (operand_equal_p): For COND_EXPR zero operand
23071 mask OEP_ADDRESS_OF.
23073 2016-02-16 Alan Modra <amodra@gmail.com>
23076 * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Rewrite splitter.
23077 (p8_mtvsrd_df, p8_mtvsrd_sf): New.
23078 (p8_mtvsrd_1, p8_mtvsrd_2): Delete.
23080 (p8_mtvsrwz_1, p8_mtvsrwz_2): Delete.
23081 (p8_xxpermdi_<mode>): Take two DF inputs rather than one TF.
23082 (p8_fmrgow_<mode>): Likewise.
23083 (reload_vsx_from_gpr<mode>): Make clobber IF. Adjust for above
23085 (reload_fpr_from_gpr<mode>): Similarly. Use "d" for op0 constraint.
23086 (reload_vsx_from_gprsf): Use p8_mtvsrd_sf rather than attempting
23087 to use movdi_internal64. Remove op0_di.
23088 * config/rs6000/vsx.md (vsx_xscvspdpn_directmove): Make op1 SFmode.
23090 2016-02-15 Evandro Menezes <e.menezes@samsung.com>
23092 Add support for the FCCMP insn types
23094 * config/aarch64/aarch64.md (fccmp): Change insn type.
23095 (fccmpe): Likewise.
23096 * config/aarch64/thunderx.md (thunderx_fcmp): Add "fccmp{s,d}" types.
23097 * config/arm/cortex-a53.md (cortex_a53_fpalu): Likewise.
23098 * config/arm/cortex-a57.md (cortex_a57_fp_cmp): Likewise.
23099 * config/arm/xgene1.md (xgene1_fcmp): Likewise.
23100 * config/arm/exynos-m1.md (exynos_m1_fp_ccmp): New insn reservation.
23101 * config/arm/types.md (fccmps): Add new insn type.
23102 (fccmpd): Likewise.
23104 2016-02-15 Bernd Edlinger <bernd.edlinger@hotmail.de>
23106 * alias.c (get_alias_set): Fix a typo in comment.
23108 2016-02-15 Richard Biener <rguenther@suse.de>
23110 PR tree-optimization/69595
23111 * match.pd: Complete range test simplification to true.
23113 2016-02-15 Bernd Schmidt <bschmidt@redhat.com>
23115 PR rtl-optimization/69648
23116 * lra-constraints.c (update_ebb_live_info): Don't remove sets of
23117 pic_offset_table_rtx.
23119 PR rtl-optimization/69752
23120 * ira.c (update_equiv_regs): When looking for more than a single SET,
23121 also take other side effects into account.
23123 2016-02-15 Marcin Kościelnicki <koriakin@0x04.net>
23125 * config/s390/s390.c (s390_function_profiler): Add a new sequence
23126 for z900+ CPUs in 31-bit mode.
23128 2016-02-15 Marcin Kościelnicki <koriakin@0x04.net>
23130 * common/config/s390/s390-common.c (s390_supports_split_stack):
23132 (TARGET_SUPPORTS_SPLIT_STACK): New macro.
23133 * config/s390/s390-protos.h: Add s390_expand_split_stack_prologue.
23134 * config/s390/s390.c (struct machine_function): New field
23135 split_stack_varargs_pointer.
23136 (s390_register_info): Mark r12 as clobbered if it'll be used as temp
23137 in s390_emit_prologue.
23138 (s390_emit_prologue): Use r12 as temp if r1 is taken by split-stack
23140 (morestack_ref): New global.
23141 (SPLIT_STACK_AVAILABLE): New macro.
23142 (s390_expand_split_stack_prologue): New function.
23143 (s390_live_on_entry): New function.
23144 (s390_va_start): Use split-stack vararg pointer if appropriate.
23145 (s390_asm_file_end): Emit the split-stack note sections.
23146 (TARGET_EXTRA_LIVE_ON_ENTRY): New macro.
23147 * config/s390/s390.md (UNSPEC_STACK_CHECK): New unspec.
23148 (UNSPECV_SPLIT_STACK_CALL): New unspec.
23149 (UNSPECV_SPLIT_STACK_DATA): New unspec.
23150 (split_stack_prologue): New expand.
23151 (split_stack_space_check): New expand.
23152 (split_stack_data): New insn.
23153 (split_stack_call): New expand.
23154 (split_stack_call_*): New insn.
23155 (split_stack_cond_call): New expand.
23156 (split_stack_cond_call_*): New insn.
23158 2016-02-15 Richard Biener <rguenther@suse.de>
23160 PR tree-optimization/69783
23161 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
23162 Add trivially correct cases.
23164 2016-02-15 Tom de Vries <tom@codesourcery.com>
23167 * lto-cgraph.c (input_offload_tables): Add and handle bool parameter
23169 * lto-streamer.h (input_offload_tables): Add and handle bool parameter.
23171 2016-02-15 Richard Biener <rguenther@suse.de>
23173 PR tree-optimization/69776
23174 * tree-ssa-sccvn.h (vn_reference_lookup): Adjust prototype.
23175 * tree-ssa-sccvn.c (vn_reference_lookup): Add parameter to
23176 indicate whether we can use TBAA to disambiguate against stores.
23177 Use alias-set zero if not.
23178 (visit_reference_op_store): Do not use TBAA when looking up
23180 * tree-ssa-pre.c (compute_avail): Use TBAA here.
23181 (eliminate_dom_walker::before_dom_children): But not when looking
23182 up redundant stores.
23184 2016-02-14 John David Anglin <danglin@gcc.gnu.org>
23186 * config/pa/pa.md (absqi2, absghi2, bswaphi2, bswapsi2, bswapdi2): New.
23188 2016-02-14 Venkataramanan Kumar <venkataramanan.kumar@amd.com>
23190 * config/i386/znver1.md
23191 (znver1_pop, znver1_pop_mem,
23192 znver1_load_imov_double_store,
23193 znver1_load_imov_direct_store,
23194 znver1_load_imov_direct_load,
23195 znver1_load_imov_double_load): Add new.
23196 (znver1_insn, znver1_insn_load): Add icmov type.
23197 (znver1_sseavx_fma,
23198 znver1_sseavx_fma_load,
23200 znver1_avx256_fma_load): Fix pipe usage.
23202 2016-02-14 Alan Modra <amodra@gmail.com>
23205 * reload.c (find_reloads_address_1): For pre/post-inc/dec
23206 with an invalid hard reg, reload just the reg not the entire
23207 pre/post-inc/dec address expression.
23209 2016-02-13 Oleg Endo <olegendo@gcc.gnu.org>
23212 * config/sh/sh.md (sibcall_value_pcrel): Replace =&k scratch reg with
23213 fixed R1_REG scratch reg.
23214 (sibcall_value_pcrel_fdpic): Likewise.
23216 2016-02-13 Oleg Endo <olegendo@gcc.gnu.org>
23220 * config/sh/sh.md (*zero_extract_3): New insn_and_split pattern.
23222 2016-02-12 Walter Lee <walt@tilera.com>
23224 * config/tilepro/t-tilepro: Replace CC_FOR_BUILD with CXX_FOR_BUILD.
23225 * config/tilegx/t-tilegx: Likewise.
23227 2016-02-12 David Malcolm <dmalcolm@redhat.com>
23230 * diagnostic-show-locus.c (struct line_span): New struct.
23231 (layout::get_first_line): Delete.
23232 (layout::get_last_line): Delete.
23233 (layout::get_num_line_spans): New member function.
23234 (layout::get_line_span): Likewise.
23235 (layout::print_heading_for_line_span_index_p): Likewise.
23236 (layout::get_expanded_location): Likewise.
23237 (layout::calculate_line_spans): Likewise.
23238 (layout::m_first_line): Delete.
23239 (layout::m_last_line): Delete.
23240 (layout::m_line_spans): New field.
23241 (layout::layout): Update comment. Replace m_first_line and
23242 m_last_line with m_line_spans, replacing their initialization
23243 with a call to calculate_line_spans.
23244 (diagnostic_show_locus): When printing source lines and
23245 annotations, rather than looping over a single span
23246 of lines, instead loop over each line_span within
23247 the layout, with an inner loop over the lines within them.
23248 Call the context's start_span callback when changing line spans.
23249 * diagnostic.c (diagnostic_initialize): Initialize start_span.
23250 (diagnostic_build_prefix): Break out the building of the location
23251 part of the string into...
23252 (diagnostic_get_location_text): ...this new function, rewriting
23253 it from nested ternary expressions to a sequence of "if"
23255 (default_diagnostic_start_span_fn): New function.
23256 * diagnostic.h (diagnostic_start_span_fn): New typedef.
23257 (diagnostic_context::start_span): New field.
23258 (default_diagnostic_start_span_fn): New prototype.
23260 2016-02-12 David Malcolm <dmalcolm@redhat.com>
23263 * gcc.c (driver::finalize): Fix cleanup of "specs".
23265 2016-02-12 David Malcolm <dmalcolm@redhat.com>
23269 * gcc.c (driver::driver): Initialize m_option_suggestions.
23270 (driver::~driver): Clean up m_option_suggestions.
23271 (suggest_option): Convert to...
23272 (driver::suggest_option): ...this, and split out into
23273 driver::build_option_suggestions and find_closest_string.
23274 (driver::build_option_suggestions): New function, from
23275 first half of suggest_option. Special-case
23276 OPT_fsanitize_ and OPT_fsanitize_recover_, making use of
23277 the sanitizer_opts array. For options of enum types, add the
23278 various enum values to the candidate strings.
23279 (driver::handle_unrecognized_options): Remove "const".
23280 * gcc.h (driver::handle_unrecognized_options): Likewise.
23281 (driver::build_option_suggestions): New decl.
23282 (driver::suggest_option): New decl.
23283 (driver::m_option_suggestions): New field.
23284 * opts-common.c (add_misspelling_candidates): New function.
23285 * opts.c (sanitizer_opts): Remove decl of struct sanitizer_opts_s
23286 and make non-static.
23287 * opts.h (sanitizer_opts): New array decl.
23288 (add_misspelling_candidates): New function decl.
23289 * spellcheck.c (find_closest_string): New function.
23290 * spellcheck.h (find_closest_string): New function decl.
23292 2016-02-12 Jakub Jelinek <jakub@redhat.com>
23294 PR rtl-optimization/69764
23295 PR rtl-optimization/69771
23296 * optabs.c (expand_binop_directly): For shift_optab_p, force
23297 convert_modes with VOIDmode if xop1 has VOIDmode.
23299 2016-02-12 Ilya Enkovich <enkovich.gnu@gmail.com>
23302 * lto-streamer-out.c (lto_output): Use thunk.add_pointer_bounds_args
23303 to correctly determine instrumentation thunks.
23305 2016-02-12 Jakub Jelinek <jakub@redhat.com>
23308 * ipa-split.c (split_function): If split part returns TREE_ADDRESSABLE
23309 type by reference, force lhs on the call.
23312 * ipa-split.c (split_function): Don't compute/use main_part_return_p.
23313 Compute retval and retbnd early in all cases if split_part_return_p
23314 and return_bb is not EXIT. Remove all clobber stmts and reset
23315 all debug stmts that refer to SSA_NAMEs defined in split part,
23316 except if it is retval, in that case replace the old retval with the
23317 lhs of the call to the split part.
23319 2016-02-12 Kugan Vivekanandarajah <kuganv@linaro.org>
23322 2016-02-12 Kugan Vivekanandarajah <kuganv@linaro.org>
23324 PR middle-end/66726
23325 * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
23326 whose result is used in PHI.
23327 (maybe_optimize_range_tests): Likewise.
23328 (final_range_test_p): Likweise.
23330 2016-02-12 Kugan Vivekanandarajah <kuganv@linaro.org>
23332 PR middle-end/66726
23333 * tree-ssa-reassoc.c (optimize_range_tests): Handle tcc_compare stmt
23334 whose result is used in PHI.
23335 (maybe_optimize_range_tests): Likewise.
23336 (final_range_test_p): Likweise.
23338 2016-02-12 Jakub Jelinek <jakub@redhat.com>
23340 * cgraph.c: Spelling fixes - behaviour -> behavior and
23341 neighbour -> neighbor.
23342 * target.def: Likewise.
23343 * sel-sched.c: Likewise.
23344 * config/mips/mips.c: Likewise.
23345 * config/arc/arc.md: Likewise.
23346 * config/arm/cortex-a57.md: Likewise.
23347 * config/arm/arm.c: Likewise.
23348 * config/arm/neon.md: Likewise.
23349 * config/arm/arm-c.c: Likewise.
23350 * config/vms/vms-c.c: Likewise.
23351 * config/s390/s390.c: Likewise.
23352 * config/i386/znver1.md: Likewise.
23353 * config/i386/i386.c: Likewise.
23354 * config/ia64/hpux-unix2003.h: Likewise.
23355 * config/msp430/msp430.md: Likewise.
23356 * config/rx/rx.c: Likewise.
23357 * config/rx/rx.md: Likewise.
23358 * config/aarch64/aarch64-simd.md: Likewise.
23359 * config/aarch64/aarch64.c: Likewise.
23360 * config/nvptx/nvptx.c: Likewise.
23361 * config/bfin/bfin.c: Likewise.
23362 * config/cris/cris.opt: Likewise.
23363 * config/rs6000/rs6000.c: Likewise.
23364 * target.h: Likewise.
23365 * spellcheck.c: Likewise.
23366 * ira-build.c: Likewise.
23367 * tree-inline.c: Likewise.
23368 * builtins.c: Likewise.
23369 * lra-constraints.c: Likewise.
23370 * explow.c: Likewise.
23371 * hwint.h: Likewise.
23372 * targhooks.c: Likewise.
23373 * tree-vect-data-refs.c: Likewise.
23374 * expr.c: Likewise.
23375 * doc/tm.texi: Likewise.
23376 * doc/extend.texi: Likewise.
23377 * doc/install.texi: Likewise.
23378 * doc/md.texi: Likewise.
23379 * tree-ssa-tail-merge.c: Likewise.
23380 * sched-int.h: Likewise.
23381 * match.pd: Likewise.
23382 * sched-ebb.c: Likewise.
23383 * target.def (omit_struct_return_reg): Likewise.
23384 * gimple-ssa-isolate-paths.c: Likewise.
23385 (find_implicit_erroneous_behaviour): Renamed to...
23386 (find_implicit_erroneous_behavior): ... this.
23387 (find_explicit_erroneous_behaviour): Renamed to...
23388 (find_explicit_erroneous_behavior): ... this.
23389 (gimple_ssa_isolate_erroneous_paths): Adjust caller.
23391 2016-02-11 Segher Boessenkool <segher@kernel.crashing.org>
23393 PR rtl-optimization/64682
23394 PR rtl-optimization/69567
23395 PR rtl-optimization/69737
23396 * combine.c (distribute_notes) <REG_DEAD>: If the register is set
23397 in I2 as well, just lose it.
23399 2016-02-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23401 * config/aarch64/aarch64.c (aarch64_last_printed_arch_string):
23403 (aarch64_last_printed_tune_string): Likewise.
23404 (aarch64_declare_function_name): Only output .arch assembler
23405 directive if it will be different from the previously output
23406 directive. Same for .tune comment but only if -dA is set.
23407 (aarch64_start_file): New function.
23408 (TARGET_ASM_FILE_START): Define.
23410 2016-02-11 David Malcolm <dmalcolm@redhat.com>
23413 * Makefile.in (PLUGIN_HEADERS): Add params.list.
23415 2016-02-11 Jakub Jelinek <jakub@redhat.com>
23418 * tree-vect-slp.c (vect_schedule_slp_instance): Avoid
23419 -Wmaybe-uninitialized warning.
23421 2016-02-11 Oleg Endo <olegendo@gcc.gnu.org>
23424 * config/sh/sh.md (casesi_worker_0): Add T_REG use.
23426 2016-02-11 Richard Biener <rguenther@suse.de>
23428 PR rtl-optimization/69291
23429 * ifcvt.c (noce_try_store_flag_constants): Do not allow
23430 subexpressions affected by changing the result.
23432 2016-02-10 Vladimir Makarov <vmakarov@redhat.com>
23435 * lra-constraints.c (curr_insn_transform): Find in/out operands
23436 for secondary memory moves. Update dups.
23438 2016-02-10 Yuri Rumyantsev <ysrumyan@gmail.com>
23440 PR tree-optimization/69652
23441 * tree-vect-loop.c (optimize_mask_stores): Move declaration of STMT1
23442 to nested loop, did source re-formatting, skip debug statements,
23443 add check on statement with volatile operand, remove dead scalar
23446 2016-02-10 Jakub Jelinek <jakub@redhat.com>
23447 Patrick Palka <ppalka@gcc.gnu.org>
23451 * gimplify.c (gimplify_modify_expr): Set lhs even for noreturn
23452 calls if the return type is TREE_ADDRESSABLE.
23453 * cgraphunit.c (cgraph_node::expand_thunk): Likewise.
23454 * ipa-split.c (split_function): Fix doubled "we" in comment.
23455 Use void return type for the split part even if
23456 !split_point->split_part_set_retval.
23458 2016-02-10 Bin Cheng <bin.cheng@arm.com>
23460 PR tree-optimization/68021
23461 * tree-ssa-loop-ivopts.c (get_computation_aff): Set ratio to 1 if
23462 when computing the value of biv cand by itself.
23464 2016-02-10 Wilco Dijkstra <wdijkstr@arm.com>
23466 * config/aarch64/aarch64.c (cortexa53_tunings): Enable AES fusion.
23467 (cortexa57_tunings): Likewise.
23468 (cortexa72_tunings): Likewise.
23469 (arch_macro_fusion_pair_p): Add support for AES fusion.
23470 * config/aarch64/aarch64-fusion-pairs.def: Add AES_AESMC entry.
23471 * config/arm/aarch-common.c (aarch_crypto_can_dual_issue):
23472 Allow virtual registers before reload so early scheduling works.
23473 * config/arm/cortex-a57.md (cortex_a57_crypto_simple): Use
23474 correct latency and pipeline.
23475 (cortex_a57_crypto_complex): Likewise.
23476 (cortex_a57_crypto_xor): Likewise.
23477 (define_bypass): Add AES bypass.
23479 2016-02-10 Richard Biener <rguenther@suse.de>
23481 PR tree-optimization/69726
23482 * passes.def: Add DCE pass before late uninit.
23483 * match.pd: Add A ? B : (!A ? C : X) -> A ? B : C patterns to
23484 really fixup if-conversions job.
23486 2016-02-10 Wilco Dijkstra <wdijkstr@arm.com>
23488 * config/arm/arm.c (arm_cortex_a53_tune): Enable AES fusion.
23489 (arm_cortex_a57_tune): Likewise.
23490 (aarch_macro_fusion_pair_p): Add support for AES fusion.
23491 * config/arm/arm-protos.h (fuse_ops): Add FUSE_AES_AESMC.
23493 2016-02-10 Eric Botcazou <ebotcazou@adacore.com>
23495 * timevar.def (TV_PHASE_DBGINFO): Delete.
23496 (TV_PHASE_CHECK_DBGINFO): Likewise.
23497 * varpool.c (varpool_node::assemble_decl): Do not change timevar.
23499 2016-02-10 Richard Biener <rguenther@suse.de>
23501 PR tree-optimization/69719
23502 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
23503 Adjust previous fix by ensuring that dr_a1 is left of dr_a2.
23505 2016-02-09 Andrew Pinski <apinski@cavium.com>
23508 * optabs-tree.c (expand_vec_cond_expr_p): Don't early return if
23509 get_vcond_mask_icode returns false.
23511 2016-02-09 Michael Meissner <meissner@linux.vnet.ibm.com>
23514 * config/rs6000/predicates.md (fusion_gpr_addis): Prevent fusing
23515 an ADDIS that adds a pointer to a large constant that sets the
23516 upper16 bits with a load operation.
23518 2016-02-09 Charles Baylis <charles.baylis@linaro.org>
23521 * config/arm/arm.c (arm_evpc_neon_vzip): Allow for big endian lane
23523 * config/arm/arm_neon.h (vzipq_s8): Adjust shuffle patterns for big
23525 (vzipq_s16): Likewise.
23526 (vzipq_s32): Likewise.
23527 (vzipq_f32): Likewise.
23528 (vzipq_u8): Likewise.
23529 (vzipq_u16): Likewise.
23530 (vzipq_u32): Likewise.
23531 (vzipq_p8): Likewise.
23532 (vzipq_p16): Likewise.
23534 2016-02-09 Charles Baylis <charles.baylis@linaro.org>
23537 * config/arm/arm.c (neon_endian_lane_map): New function.
23538 (neon_vector_pair_endian_lane_map): New function.
23539 (arm_evpc_neon_vuzp): Allow for big endian lane order.
23540 * config/arm/arm_neon.h (vuzpq_s8): Adjust shuffle patterns for big
23542 (vuzpq_s16): Likewise.
23543 (vuzpq_s32): Likewise.
23544 (vuzpq_f32): Likewise.
23545 (vuzpq_u8): Likewise.
23546 (vuzpq_u16): Likewise.
23547 (vuzpq_u32): Likewise.
23548 (vuzpq_p8): Likewise.
23549 (vuzpq_p16): Likewise.
23551 2016-02-11 Alexandre Oliva <aoliva@redhat.com>
23554 * regstat.c (regstat_bb_compute_calls_crossed): Disregard
23557 2016-02-09 Uros Bizjak <ubizjak@gmail.com>
23559 * config/i386/i386.md (insv<mode>_1): Use gen_int_mode to
23560 truncate const_int operand 1 to QImode.
23562 2016-02-09 Eric Botcazou <ebotcazou@adacore.com>
23564 * gimple-ssa-backprop.c (optimize_phi): Do not replace an argument
23565 corresponding to an abnormal edge.
23567 2016-02-09 Tom de Vries <tom@codesourcery.com>
23569 PR tree-optimization/69599
23570 * tree-ssa-structalias.c (fndecl_maybe_in_other_partition): New
23572 (find_func_aliases_for_builtin_call, find_func_clobbers)
23573 (ipa_pta_execute): Handle case that foo and foo._0 are not in same lto
23576 2016-02-09 Richard Biener <rguenther@suse.de>
23578 PR tree-optimization/69715
23579 * tree-ssa.c (execute_update_addresses_taken): Mark non-decl
23580 LHS on calls as non-rewritable.
23582 2016-02-09 Tom de Vries <tom@codesourcery.com>
23585 * lto-wrapper.c (append_diag_options): New function.
23586 (compile_offload_image): Call append_diag_options.
23588 2016-02-08 Sandra Loosemore <sandra@codesourcery.com>
23591 * doc/extend.texi (Flag Output Operands): Correct sectioning.
23592 Minor copy-edit to fix verb tenses.
23594 2016-02-08 Jakub Jelinek <jakub@redhat.com>
23596 PR tree-optimization/69209
23597 * ipa-split.c (split_function): If split part is not
23598 returning retval, retval has gimple type but is not
23599 gimple value, force it into a SSA_NAME first.
23601 2016-02-08 Nicklas Bo Jensen <nbjensen@gmail.com>
23603 * doc/tree-ssa.texi (Preserving the virtual SSA form): Remove
23606 2016-02-08 Jason Merrill <jason@redhat.com>
23609 * convert.c (convert_to_integer_1): Check dofold on truncation
23611 (convert_to_pointer_maybe_fold, convert_to_real_maybe_fold)
23612 (convert_to_integer_maybe_fold, convert_to_complex_maybe_fold):
23613 Rename from *_nofold.
23614 * convert.h (convert_to_pointer_nofold, convert_to_integer_nofold)
23615 (convert_to_real_nofold, convert_to_complex_nofold): New inlines.
23617 2016-02-08 Bernd Schmidt <bschmidt@redhat.com>
23620 * tree.c (build_common_tree_nodes): Remove short_double argument.
23621 All callers changed.
23622 * tree.h (build_common_tree_nodes): Adjust declaration.
23623 * doc/invoke.texi (-fshort-double): Remove documentation.
23624 * config/mips/t-img-elf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
23625 MULTILIB_EXCEPTIONS): Remove -fshort-double variant.
23626 * lto-wrapper.c (merge_and_complain, append_compiler_options)
23627 (append_linker_options): Don't handle OPT_fshort_double.
23629 PR rtl-optimization/68730
23630 * lra-remat.c (insn_to_cand_activation): New static variable.
23631 (lra_remat): Allocate and free it.
23632 (create_cand): New arg activation. Initialize a field in
23633 insn_to_cand_activation if it is nonnull.
23634 (create_cands): Pass the activation insn to create_cand when making
23635 a candidate involving an output reload. Reorganize code a little.
23636 (do_remat): Keep track of active status of candidates in a separate
23639 2016-02-08 Richard Biener <rguenther@suse.de>
23641 PR tree-optimization/69719
23642 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
23643 Properly use absolute of the difference of the two offsets to
23644 compare or adjust the segment length.
23646 2016-02-08 Richard Biener <rguenther@suse.de>
23647 Jeff Law <law@redhat.com>
23650 * tree-ssanames.c (make_ssa_name_fn): Always use unqualified
23651 types for anonymous SSA names.
23653 2016-02-08 Richard Biener <rguenther@suse.de>
23655 PR rtl-optimization/69274
23656 * ira.c (ira_setup_alts): Do not change recog_data.operand order.
23658 2016-02-08 Jeff Law <law@redhat.com>
23660 PR tree-optimization/65917
23661 * tree-ssa-dom.c (record_temporary_equivalences): Record both
23662 equivalences from if (x == y) style conditionals.
23663 (loop_depth_of_name): Remove.
23664 (record_equality): Remove loop depth check.
23665 * tree-ssa-scopedtables.h (const_and_copies): Refine comments.
23666 (const_and_copies::record_const_or_copy_raw): New member function.
23667 * tree-ssa-scopedtables.c
23668 (const_and_copies::record_const_or_copy_raw): New, factored out of
23669 (const_and_copies::record_const_or_copy): Call new member function.
23671 2016-02-05 Jeff Law <law@redhat.com>
23673 PR tree-optimization/68541
23674 * gimple-ssa-split-paths.c: Include tree-cfg.h and params.h.
23675 (count_stmts_in_block): New function.
23676 (poor_ifcvt_candidate_code): Likewise.
23677 (is_feasible_trace): Add some heuristics to determine when path
23678 splitting is profitable.
23679 (find_block_to_duplicate_for_splitting_paths): Make sure the graph
23680 is a diamond with a single exit.
23682 2016-02-05 Martin Sebor <msebor@redhat.com>
23685 * doc/invoke.texi: Update -Wplacement-new to take an optional
23688 2016-02-06 Richard Henderson <rth@redhat.com>
23691 * tree.c (tree_nop_conversion_p): Do not strip casts into or
23692 out of non-standard address spaces.
23694 2016-02-05 Jakub Jelinek <jakub@redhat.com>
23696 PR rtl-optimization/69691
23697 * lra-eliminations.c (move_plus_up): Don't add the addend twice.
23699 2016-02-05 Pat Haugen <pthaugen@us.ibm.com>
23701 * config/rs6000/crypto.md (crypto_vpermxor_<mode>): Correct insn type.
23702 * config/rs6000/rs6000.md (mov<mode>_hardfloat): Likewise.
23703 (*ieee128_mfvsrd_64bit): Likewise.
23704 (*ieee128_mfvsrd_32bit): Likewise.
23706 2016-02-05 Ilya Enkovich <enkovich.gnu@gmail.com>
23710 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
23712 * cgraphunit.c (cgraph_node::reset): Clear thunk info and
23713 instrumented_version.
23715 2016-01-05 Jeremy Bennett <jeremy.bennett@embecosm.com>
23717 * doc/invoke.texi (Optimize Options): In table of --param options
23718 rename second occurrence of tracer-min-branch-ratio to
23719 tracer-min-branch-probability, rename
23720 tracer-min-branch-ratio-feedback to
23721 tracer-min-branch-probability-feedback and clarify description,
23722 rename sched-spec-state-edge-prob-cutoff to
23723 sched-state-edge-prob-cutoff, rename selsched-max-insns-to-rename
23724 to selsched-insns-to-rename, rename lto-minpartition to
23725 lto-min-partition, delete reorder-blocks-duplicate and
23726 reorder-blocks-duplicate-feedback.
23728 2016-02-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
23730 * config/s390/s390.c (s390_register_info_set_ranges): Remove
23733 2016-02-05 Dominik Vogt <vogt@linux.vnet.ibm.com>
23735 * doc/extend.texi: S/390: Correct some typos.
23737 2016-02-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
23739 * config/s390/s390.c (s390_emit_call): Add missing 64 bit check.
23741 2016-02-05 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
23744 * config/s390/s390.c (SAVE_SLOT_NONE, SAVE_SLOT_STACK): New defines.
23745 (s390_register_info_gprtofpr): Use new macros above.
23746 (s390_register_info_stdarg_fpr): Adjust max_fpr to better match
23748 (s390_register_info_stdarg_gpr): Adjust max_gpr to better match
23749 its name. Adjust restore and save gpr ranges.
23750 (s390_register_info_set_ranges): New function.
23751 (s390_register_info): Use new macros above. Call
23752 s390_register_info_set_ranges.
23753 (s390_optimize_register_info): Likewise.
23754 (s390_hard_regno_rename_ok): Use new macros.
23755 (s390_hard_regno_scratch_ok): Likewise.
23756 (s390_emit_epilogue): Likewise.
23757 (s390_can_use_return_insn): Likewise.
23758 (s390_optimize_prologue): Likewise.
23759 * config/s390/s390.md (GPR2_REGNUM, GPR6_REGNUM): New constants.
23761 2016-02-05 Jakub Jelinek <jakub@redhat.com>
23764 * config/i386/i386.c (convert_scalars_to_vector): Readd stack
23766 (ix86_option_override_internal): Disable TARGET_STV even for
23767 -m{incoming,preferred}-stack-boundary=3.
23769 2016-02-03 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
23771 * config.gcc: Mark deprecated rtems targets as obsolete.
23773 2016-02-04 Segher Boessenkool <segher@kernel.crashing.org>
23775 PR rtl-optimization/64682
23776 PR rtl-optimization/69567
23777 * combine.c (distribute_notes) <REG_DEAD>: Place the death note
23778 before I2 only if the register is both used and set in I2.
23780 2016-02-04 DJ Delorie <dj@redhat.com>
23782 * config/msp430/msp430.c (msp430_start_function): Add function type.
23784 2016-02-04 Jakub Jelinek <jakub@redhat.com>
23787 * tree-dfa.c (get_ref_base_and_extent): Remove unreachable code.
23789 2016-02-04 Uros Bizjak <ubizjak@gmail.com>
23791 PR rtl-optimization/69577
23793 2015-10-29 Richard Henderson <rth@redhat.com>
23797 * config/i386/i386.c (ix86_cannot_change_mode_class): Tighten
23798 sse check to the exact conditions of PR 67609.
23800 2016-02-04 Michael Meissner <meissner@linux.vnet.ibm.com>
23803 * config/rs6000/rs6000.md (mov<mode>_64bit_dm): Use 'd' constraint
23804 instead of 'ws', and 'wh' instead of 'wm' since TFmode/IFmode are
23805 not allowed into the traditional Altivec registers.
23806 (movtd_64bit_nodm): Likewise.
23807 (mov<mode>_32bit, FMOVE128_FPR iterator): Likewise.
23809 2016-02-04 David Malcolm <dmalcolm@redhat.com>
23811 * config/aarch64/cortex-a57-fma-steering.c
23812 (aarch64_register_fma_steering): Remove "static" from arguments
23815 2016-02-04 Wilco Dijkstra <wdijkstr@arm.com>
23818 * ccmp.c (expand_ccmp_expr_1): Avoid evaluating gs0/gs1
23819 twice when complex.
23821 2016-02-04 Mike Frysinger <vapier@gentoo.org>
23823 * doc/invoke.texi: Delete -mno-fma4.
23825 2016-02-04 Richard Sandiford <richard.sandiford@arm.com>
23827 PR rtl-optimization/69577
23828 * reginfo.c (record_subregs_of_mode): Add a partial_def parameter.
23829 (find_subregs_of_mode): Update accordingly. Iterate over partial
23832 2016-02-04 Alan Lawrence <alan.lawrence@arm.com>
23834 * config/arm/arm-protos.h (neon_reinterpret): Remove.
23835 * config/arm/arm.c (neon_reinterpret): Remove.
23836 * config/arm/arm_neon_builtins.def (vreinterpretv8qi, vreinterpretv4hi,
23837 vreinterpretv2si, vreinterpretv2sf, vreinterpretdi, vreinterpretv16qi,
23838 vreinterpretv8hi, vreinterpretv4si, vreinterpretv4sf, vreinterpretv2di,
23839 vreinterpretti): Remove.
23840 * config/arm/neon.md (neon_vreinterpretv8qi<mode>,
23841 neon_vreinterpretv4hi<mode>, neon_vreinterpretv2si<mode>,
23842 neon_vreinterpretv2sf<mode>, neon_vreinterpretdi<mode>,
23843 neon_vreinterpretti<mode>, neon_vreinterpretv16qi<mode>,
23844 neon_vreinterpretv8hi<mode>, neon_vreinterpretv4si<mode>,
23845 neon_vreinterpretv4sf<mode>, neon_vreinterpretv2di<mode>): Remove.
23846 * config/arm/arm_neon.h (vreinterpret_p8_p16, vreinterpret_p8_f32,
23847 vreinterpret_p8_p64, vreinterpret_p8_s64, vreinterpret_p8_u64,
23848 vreinterpret_p8_s8, vreinterpret_p8_s16, vreinterpret_p8_s32,
23849 vreinterpret_p8_u8, vreinterpret_p8_u16, vreinterpret_p8_u32,
23850 vreinterpret_p16_p8, vreinterpret_p16_f32, vreinterpret_p16_p64,
23851 vreinterpret_p16_s64, vreinterpret_p16_u64, vreinterpret_p16_s8,
23852 vreinterpret_p16_s16, vreinterpret_p16_s32, vreinterpret_p16_u8,
23853 vreinterpret_p16_u16, vreinterpret_p16_u32, vreinterpret_f32_p8,
23854 vreinterpret_f32_p16, vreinterpret_f32_p64, vreinterpret_f32_s64,
23855 vreinterpret_f32_u64, vreinterpret_f32_s8, vreinterpret_f32_s16,
23856 vreinterpret_f32_s32, vreinterpret_f32_u8, vreinterpret_f32_u16,
23857 vreinterpret_f32_u32, vreinterpret_p64_p8, vreinterpret_p64_p16,
23858 vreinterpret_p64_f32, vreinterpret_p64_s64, vreinterpret_p64_u64,
23859 vreinterpret_p64_s8, vreinterpret_p64_s16, vreinterpret_p64_s32,
23860 vreinterpret_p64_u8, vreinterpret_p64_u16, vreinterpret_p64_u32,
23861 vreinterpret_s64_p8, vreinterpret_s64_p16, vreinterpret_s64_f32,
23862 vreinterpret_s64_p64, vreinterpret_s64_u64, vreinterpret_s64_s8,
23863 vreinterpret_s64_s16, vreinterpret_s64_s32, vreinterpret_s64_u8,
23864 vreinterpret_s64_u16, vreinterpret_s64_u32, vreinterpret_u64_p8,
23865 vreinterpret_u64_p16, vreinterpret_u64_f32, vreinterpret_u64_p64,
23866 vreinterpret_u64_s64, vreinterpret_u64_s8, vreinterpret_u64_s16,
23867 vreinterpret_u64_s32, vreinterpret_u64_u8, vreinterpret_u64_u16,
23868 vreinterpret_u64_u32, vreinterpret_s8_p8, vreinterpret_s8_p16,
23869 vreinterpret_s8_f32, vreinterpret_s8_p64, vreinterpret_s8_s64,
23870 vreinterpret_s8_u64, vreinterpret_s8_s16, vreinterpret_s8_s32,
23871 vreinterpret_s8_u8, vreinterpret_s8_u16, vreinterpret_s8_u32,
23872 vreinterpret_s16_p8, vreinterpret_s16_p16, vreinterpret_s16_f32,
23873 vreinterpret_s16_p64, vreinterpret_s16_s64, vreinterpret_s16_u64,
23874 vreinterpret_s16_s8, vreinterpret_s16_s32, vreinterpret_s16_u8,
23875 vreinterpret_s16_u16, vreinterpret_s16_u32, vreinterpret_s32_p8,
23876 vreinterpret_s32_p16, vreinterpret_s32_f32, vreinterpret_s32_p64,
23877 vreinterpret_s32_s64, vreinterpret_s32_u64, vreinterpret_s32_s8,
23878 vreinterpret_s32_s16, vreinterpret_s32_u8, vreinterpret_s32_u16,
23879 vreinterpret_s32_u32, vreinterpret_u8_p8, vreinterpret_u8_p16,
23880 vreinterpret_u8_f32, vreinterpret_u8_p64, vreinterpret_u8_s64,
23881 vreinterpret_u8_u64, vreinterpret_u8_s8, vreinterpret_u8_s16,
23882 vreinterpret_u8_s32, vreinterpret_u8_u16, vreinterpret_u8_u32,
23883 vreinterpret_u16_p8, vreinterpret_u16_p16, vreinterpret_u16_f32,
23884 vreinterpret_u16_p64, vreinterpret_u16_s64, vreinterpret_u16_u64,
23885 vreinterpret_u16_s8, vreinterpret_u16_s16, vreinterpret_u16_s32,
23886 vreinterpret_u16_u8, vreinterpret_u16_u32, vreinterpret_u32_p8,
23887 vreinterpret_u32_p16, vreinterpret_u32_f32, vreinterpret_u32_p64,
23888 vreinterpret_u32_s64, vreinterpret_u32_u64, vreinterpret_u32_s8,
23889 vreinterpret_u32_s16, vreinterpret_u32_s32, vreinterpret_u32_u8,
23890 vreinterpret_u32_u16, vreinterpretq_p8_p16, vreinterpretq_p8_f32,
23891 vreinterpretq_p8_p64, vreinterpretq_p8_p128, vreinterpretq_p8_s64,
23892 vreinterpretq_p8_u64, vreinterpretq_p8_s8, vreinterpretq_p8_s16,
23893 vreinterpretq_p8_s32, vreinterpretq_p8_u8, vreinterpretq_p8_u16,
23894 vreinterpretq_p8_u32, vreinterpretq_p16_p8, vreinterpretq_p16_f32,
23895 vreinterpretq_p16_p64, vreinterpretq_p16_p128, vreinterpretq_p16_s64,
23896 vreinterpretq_p16_u64, vreinterpretq_p16_s8, vreinterpretq_p16_s16,
23897 vreinterpretq_p16_s32, vreinterpretq_p16_u8, vreinterpretq_p16_u16,
23898 vreinterpretq_p16_u32, vreinterpretq_f32_p8, vreinterpretq_f32_p16,
23899 vreinterpretq_f32_p64, vreinterpretq_f32_p128, vreinterpretq_f32_s64,
23900 vreinterpretq_f32_u64, vreinterpretq_f32_s8, vreinterpretq_f32_s16,
23901 vreinterpretq_f32_s32, vreinterpretq_f32_u8, vreinterpretq_f32_u16,
23902 vreinterpretq_f32_u32, vreinterpretq_p64_p8, vreinterpretq_p64_p16,
23903 vreinterpretq_p64_f32, vreinterpretq_p64_p128, vreinterpretq_p64_s64,
23904 vreinterpretq_p64_u64, vreinterpretq_p64_s8, vreinterpretq_p64_s16,
23905 vreinterpretq_p64_s32, vreinterpretq_p64_u8, vreinterpretq_p64_u16,
23906 vreinterpretq_p64_u32, vreinterpretq_p128_p8, vreinterpretq_p128_p16,
23907 vreinterpretq_p128_f32, vreinterpretq_p128_p64, vreinterpretq_p128_s64,
23908 vreinterpretq_p128_u64, vreinterpretq_p128_s8, vreinterpretq_p128_s16,
23909 vreinterpretq_p128_s32, vreinterpretq_p128_u8, vreinterpretq_p128_u16,
23910 vreinterpretq_p128_u32, vreinterpretq_s64_p8, vreinterpretq_s64_p16,
23911 vreinterpretq_s64_f32, vreinterpretq_s64_p64, vreinterpretq_s64_p128,
23912 vreinterpretq_s64_u64, vreinterpretq_s64_s8, vreinterpretq_s64_s16,
23913 vreinterpretq_s64_s32, vreinterpretq_s64_u8, vreinterpretq_s64_u16,
23914 vreinterpretq_s64_u32, vreinterpretq_u64_p8, vreinterpretq_u64_p16,
23915 vreinterpretq_u64_f32, vreinterpretq_u64_p64, vreinterpretq_u64_p128,
23916 vreinterpretq_u64_s64, vreinterpretq_u64_s8, vreinterpretq_u64_s16,
23917 vreinterpretq_u64_s32, vreinterpretq_u64_u8, vreinterpretq_u64_u16,
23918 vreinterpretq_u64_u32, vreinterpretq_s8_p8, vreinterpretq_s8_p16,
23919 vreinterpretq_s8_f32, vreinterpretq_s8_p64, vreinterpretq_s8_p128,
23920 vreinterpretq_s8_s64, vreinterpretq_s8_u64, vreinterpretq_s8_s16,
23921 vreinterpretq_s8_s32, vreinterpretq_s8_u8, vreinterpretq_s8_u16,
23922 vreinterpretq_s8_u32, vreinterpretq_s16_p8, vreinterpretq_s16_p16,
23923 vreinterpretq_s16_f32, vreinterpretq_s16_p64, vreinterpretq_s16_p128,
23924 vreinterpretq_s16_s64, vreinterpretq_s16_u64, vreinterpretq_s16_s8,
23925 vreinterpretq_s16_s32, vreinterpretq_s16_u8, vreinterpretq_s16_u16,
23926 vreinterpretq_s16_u32, vreinterpretq_s32_p8, vreinterpretq_s32_p16,
23927 vreinterpretq_s32_f16, vreinterpretq_s32_f32, vreinterpretq_s32_p64,
23928 vreinterpretq_s32_p128, vreinterpretq_s32_s64, vreinterpretq_s32_u64,
23929 vreinterpretq_s32_s8, vreinterpretq_s32_s16, vreinterpretq_s32_u8,
23930 vreinterpretq_s32_u16, vreinterpretq_s32_u32, vreinterpretq_u8_p8,
23931 vreinterpretq_u8_p16, vreinterpretq_u8_f32, vreinterpretq_u8_p64,
23932 vreinterpretq_u8_p128, vreinterpretq_u8_s64, vreinterpretq_u8_u64,
23933 vreinterpretq_u8_s8, vreinterpretq_u8_s16, vreinterpretq_u8_s32,
23934 vreinterpretq_u8_u16, vreinterpretq_u8_u32, vreinterpretq_u16_p8,
23935 vreinterpretq_u16_p16, vreinterpretq_u16_f32, vreinterpretq_u16_p64,
23936 vreinterpretq_u16_p128, vreinterpretq_u16_s64, vreinterpretq_u16_u64,
23937 vreinterpretq_u16_s8, vreinterpretq_u16_s16, vreinterpretq_u16_s32,
23938 vreinterpretq_u16_u8, vreinterpretq_u16_u32, vreinterpretq_u32_p8,
23939 vreinterpretq_u32_p16, vreinterpretq_u32_f32, vreinterpretq_u32_p64,
23940 vreinterpretq_u32_p128, vreinterpretq_u32_s64, vreinterpretq_u32_u64,
23941 vreinterpretq_u32_s8, vreinterpretq_u32_s16, vreinterpretq_u32_s32,
23942 vreinterpretq_u32_u8, vreinterpretq_u32_u16): Rewrite using casts.
23944 2016-02-04 Martin Liska <mliska@suse.cz>
23947 * asan.c (has_stmt_been_instrumented_p): Instrument gimple calls
23948 that are gimple_store_p.
23949 (maybe_instrument_call): Likewise.
23951 2016-02-04 Bin Cheng <bin.cheng@arm.com>
23953 * config/aarch64/aarch64.c (aarch64_legitimize_address): Force
23954 register scaling out of memory reference and comment why.
23956 2016-02-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23960 * cse.c (cse_insn): Pass NULL to fold_rtx when initially
23961 folding the source of a SET.
23963 2016-02-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23967 * config/arm/arm.c (arm_new_rtx_costs, MULT case): Properly extract
23968 the operands of the SIGN_EXTENDs from a SMUL[TB][TB] rtx.
23970 2016-02-04 Jim Wilson <jim.wilson@linaro.org>
23974 * config/arm/arm.h (PROMOTE_MODE): Don't set UNSIGNEDP for QImode and
23977 2016-02-04 Christian Bruel <christian.bruel@st.com>
23979 * config/arm/arm-c.c (arm_reset_previous_fndecl): Style fix and typo.
23980 * config/arm/arm.c (arm_set_current_function): Likewise.
23982 2016-02-04 Jakub Jelinek <jakub@redhat.com>
23983 Ilya Enkovich <enkovich.gnu@gmail.com>
23984 H.J. Lu <hongjiu.lu@intel.com>
23987 * config/i386/i386.c (convert_scalars_to_vector): Remove
23988 stack alignment fixes.
23989 (ix86_option_override_internal): Disable TARGET_STV if stack
23990 might not be aligned enough.
23991 (ix86_minimum_alignment): Assert that TARGET_STV is false.
23993 2016-02-04 Victoria Stepanyan <victoria.stepanyan@amd.com>
23995 * config/i386/x86-tune.def: Disable default prefetching
23998 2016-02-03 Michael Meissner <meissner@linux.vnet.ibm.com>
23999 Vladimir Makarov <vmakarov@redhat.com>
24002 * config/rs6000/rs6000.c (rs6000_legitimate_address_p): Fix thinko
24003 in validating fused toc addresses.
24005 2016-02-03 Jakub Jelinek <jakub@redhat.com>
24008 * diagnostic-show-locus.c (layout::get_state_at_point): Don't read
24009 range->m_caret fields if range->m_show_caret_p is false.
24012 * config/rs6000/rs6000.c (rs6000_expand_atomic_compare_and_swap):
24013 Force oldval into register if it does not satisfy reg_or_short_operand
24014 predicate. Fix up formatting.
24016 2016-02-03 Vladimir Makarov <vmakarov@redhat.com>
24017 Alexandre Oliva <aoliva@redhat.com>
24020 * lra-constraints.c (simplify_operand_subreg): Check additionally
24021 address validity after potential reloading.
24022 (process_address_1): Check insns validity. In case of failure do
24025 2016-02-03 Kirill Yukhin <kirill.yukhin@intel.com>
24028 * config/i386/sse.md (define_insn "avx512f_maskcmp<mode>3"):
24031 2016-02-02 Jakub Jelinek <jakub@redhat.com>
24033 * wide-int.cc (canonize_uhwi): New function.
24034 (wi::divmod_internal): Use it.
24036 2016-02-02 James Norris <jnorris@codesourcery.com>
24038 * gimplify.c (omp_notice_variable): Add usage check.
24040 2016-02-02 Alexander Monakov <amonakov@ispras.ru>
24042 * config/nvptx/nvptx.c (nvptx_print_operand): Treat LEU, GEU, LTU, GTU
24043 like LE, GE, LT, GT when emitting relational operator.
24045 2016-02-02 Wilco Dijkstra <wdijkstr@arm.com>
24047 * ira-costs.c (find_costs_and_classes): Add extra argument.
24048 * target.def (ira_change_pseudo_allocno_class): Add parameter.
24049 * targhooks.h (ira_change_pseudo_allocno_class): Likewise.
24050 * targhooks.c (ira_change_pseudo_allocno_class): Likewise.
24051 * config/aarch64/aarch64.c (aarch64_ira_change_pseudo_allocno_class)
24052 Add best_class parameter, and return it if not ALL_REGS.
24053 * config/mips/mips.c (mips_ira_change_pseudo_allocno_class):
24055 * doc/tm.texi (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS):
24056 Update target hook.
24058 2016-02-02 Wilco Dijkstra <wdijkstr@arm.com>
24060 * config/aarch64/aarch64.c
24061 (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS): New define.
24062 (aarch64_ira_change_pseudo_allocno_class): New function.
24064 2016-02-02 Uros Bizjak <ubizjak@gmail.com>
24067 * config/i386/i386.c (geode_cost): Increase cost of MMX and SSE moves.
24069 2016-02-02 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
24071 * config/avr/avr.c (avr_option_override): Set
24072 PARAM_ALLOW_STORE_DATA_RACES to 1.
24074 2016-02-02 Richard Biener <rguenther@suse.de>
24076 PR tree-optimization/69595
24077 * match.pd: Add range test simplifications to true/false.
24079 2016-02-02 Thomas Schwinge <thomas@codesourcery.com>
24081 * omp-builtins.def (BUILT_IN_GOACC_HOST_DATA): Remove.
24082 * omp-low.c (expand_omp_target): Use BUILT_IN_GOACC_DATA_START
24085 2016-02-02 Richard Biener <rguenther@suse.de>
24087 PR tree-optimization/69606
24088 * tree-ssa-math-opts.c (bswap_replace): Clear flow sensitive
24089 info on the result before moving a stmt.
24091 2016-02-02 Yuri Rumyantsev <ysrumyan@gmail.com>
24093 PR middle-end/68542
24094 * config/i386/i386.c (ix86_expand_branch): Add support for conditional
24095 branch with vector comparison.
24096 * config/i386/sse.md (VI48_AVX): New mode iterator.
24097 (define_expand "cbranch<mode>4): Add support for conditional branch
24098 with vector comparison.
24099 * tree-vect-loop.c (optimize_mask_stores): New function.
24100 * tree-vect-stmts.c (vectorizable_mask_load_store): Initialize
24101 has_mask_store field of vect_info.
24102 * tree-vectorizer.c (vectorize_loops): Invoke optimaze_mask_stores for
24103 vectorized loops having masked stores after vec_info destroy.
24104 * tree-vectorizer.h (loop_vec_info): Add new has_mask_store field and
24105 correspondent macros.
24106 (optimize_mask_stores): Add prototype.
24108 2016-02-02 Alan Modra <amodra@gmail.com>
24111 * config/rs6000/predicates.md (quad_int_reg_operand): Don't
24114 2016-02-02 Alan Modra <amodra@gmail.com>
24117 * config/rs6000/rs6000.c (need_toc_init): New var, set it
24118 whenever toc_label_name used.
24119 (rs6000_file_start): Don't set up toc section here,
24120 (rs6000_output_function_epilogue): do so here instead,
24121 (rs6000_xcoff_file_start): and here.
24122 * config/rs6000/rs6000.md (load_toc_aix_si): Set need_toc_init.
24123 (load_toc_aix_di): Likewise.
24125 2016-02-01 Jakub Jelinek <jakub@redhat.com>
24127 PR rtl-optimization/69592
24128 * rtlanal.c (nonzero_bits_binary_arith_p): New inline function.
24129 (cached_nonzero_bits): Use it instead of ARITHMETIC_P.
24130 (num_sign_bit_copies_binary_arith_p): New inline function.
24131 (cached_num_sign_bit_copies): Use it instead of ARITHMETIC_P.
24133 2016-02-01 Jeff Law <law@redhat.com>
24135 PR tree-optimization/69580
24136 * params.def (FSM_MAXIMUM_PHI_ARGUMENTS): New param.
24137 * tree-ssa-threadbackward.c
24138 (fsm_find_control_statement_thread_paths): Do not try to walk
24139 through large PHI nodes.
24141 2016-02-01 Jakub Jelinek <jakub@redhat.com>
24143 * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return false
24144 when count is incremented above limit, don't analyze further
24147 * omp-low.c (oacc_parse_default_dims): Avoid
24148 -Wsign-compare warning, make sure value fits into int
24149 rather than just unsigned int.
24151 2016-02-01 Bin Cheng <bin.cheng@arm.com>
24153 PR tree-optimization/67921
24154 * fold-const.c (split_tree): New parameters. Convert pointer
24155 type variable part to proper type before negating.
24156 (fold_binary_loc): Pass new arguments to split_tree.
24158 2016-02-01 Nathan Sidwell <nathan@codesourcery.com>
24160 * config/nvptx/nvptx.c (PTX_GANG_DEFAULT): New.
24161 (nvptx_goacc_validate_dims): Extend to handle global defaults.
24162 * target.def (OACC_VALIDATE_DIMS): Extend documentation.
24163 * doc/tm.texti: Rebuilt.
24164 * doc/invoke.texi (fopenacc-dim): Document.
24165 * lto-wrapper.c (merge_and_complain): Add OPT_fopenacc_dim_ case.
24166 (append_compiler_options): Likewise.
24167 * omp-low.c (oacc_default_dims, oacc_min_dims): New.
24168 (oacc_parse_default_dims): New.
24169 (oacc_validate_dims): Add USED arg. Select non-unity default when
24171 (oacc_loop_fixed_partitions): Return mask of used partitions.
24172 (oacc_loop_auto_partitions): Emit dump info.
24173 (oacc_loop_partition): Return mask of used partitions.
24174 (execute_oacc_device_lower): Parse default dimension arg. Adjust
24175 loop partitioning and validation calls.
24177 2016-02-01 Richard Biener <rguenther@suse.de>
24179 PR middle-end/69556
24180 * match.pd: Guard (C1/X)*C2 -> (C1*C2)/X with single_use.
24182 2016-02-01 Richard Biener <rguenther@suse.de>
24184 PR tree-optimization/69574
24185 * tree-chrec.c (hide_evolution_in_other_loops_than_loop): Instead
24186 of asserting return chrec_dont_know.
24188 2016-02-01 Martin Liska <mliska@suse.cz>
24190 * mem-stats-traits.h: Add copyright header.
24191 * mem-stats.h: Likewise.
24193 2016-02-01 Richard Biener <rguenther@suse.de>
24195 PR tree-optimization/69579
24196 * tree-ssa-loop-ivcanon.c (propagate_constants_for_unrolling):
24197 Do not propagate through abnormal PHI results.
24199 2016-02-01 Eric Botcazou <ebotcazou@adacore.com>
24201 * postreload.c (reload_cse_simplify): Remove dead code.
24203 2016-02-01 Jakub Jelinek <jakub@redhat.com>
24205 PR rtl-optimization/69570
24206 * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Return true only
24207 if there is more than one set, not if there is a single set.
24209 2016-02-01 Richard Henderson <rth@redhat.com>
24212 * combine.c (make_compound_operation): When looking through a
24213 subreg, make sure to re-extend to the width of the outer mode.
24215 2016-01-30 Jakub Jelinek <jakub@redhat.com>
24217 PR tree-optimization/69546
24218 * wide-int.cc (wi::divmod_internal): For unsigned division
24219 where both operands fit into uhwi, if o1 is 1 and o0 has
24220 msb set, if divident_prec is larger than bits per hwi,
24221 clear another quotient word and return 2 instead of 1.
24222 Similarly for remainder with msb in HWI set, if dividend_prec
24223 is larger than bits per hwi.
24225 2016-01-29 Martin Jambor <mjambor@suse.cz>
24227 * hsa-gen.c (get_memory_order_name): Mask with MEMMODEL_BASE_MASK.
24228 Use short lowercase names.
24229 (get_memory_order): Mask with MEMMODEL_BASE_MASK. Support
24230 MEMMODEL_CONSUME with acquire semantics and MEMMODEL_SEQ_CST with
24231 acq_rel one. Protect warning agains segfaults if
24232 get_memory_order_name returns NULL.
24233 (gen_hsa_ternary_atomic_for_builtin): Support with MEMMODEL_SEQ_CST
24234 with release semantics. Do not warn if get_memory_order already did.
24235 (gen_hsa_insns_for_call): Support with MEMMODEL_SEQ_CST with acquire
24236 semantics. Fix check for relaxed or acquire semantics. Do not warn
24237 if get_memory_order already did.
24239 2016-01-29 Sebastian Pop <s.pop@samsung.com>
24241 * doc/install.texi: Document that isl-0.16 is supported.
24243 2016-01-29 Vladimir Makarov <vmakarov@redhat.com>
24246 * config/i386/constraints.md (Bm): Describe as special memory
24248 * doc/md.texi (DEFINE_SPECIAL_MEMORY_CONSTRAINT): Describe it.
24249 * genoutput.c (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
24250 * genpreds.c (struct constraint_data): Add is_special_memory.
24251 (have_special_memory_constraints, special_memory_start): New
24253 (special_memory_end): Ditto.
24254 (add_constraint): Add new arg is_special_memory. Add code to
24255 process its true value. Update have_special_memory_constraints.
24256 (process_define_constraint): Pass the new arg.
24257 (process_define_register_constraint): Ditto.
24258 (choose_enum_order): Process special memory.
24259 (write_tm_preds_h): Generate enum const CT_SPECIAL_MEMORY and
24260 function insn_extra_special_memory_constraint.
24261 (main): Process DEFINE_SPECIAL_MEMORY_CONSTRAINT.
24262 * gensupport.c (process_rtx): Process
24263 DEFINE_SPECIAL_MEMORY_CONSTRAINT.
24264 * ira-costs.c (record_reg_classes): Process CT_SPECIAL_MEMORY.
24265 * ira-lives.c (single_reg_class): Use
24266 insn_extra_special_memory_constraint.
24267 * ira.c (ira_setup_alts): Process CT_SPECIAL_MEMORY.
24268 * lra-constraints.c (process_alt_operands): Ditto.
24269 (curr_insn_transform): Use insn_extra_special_memory_constraint.
24270 * recog.c (asm_operand_ok, preprocess_constraints): Process
24272 * reload.c (find_reloads): Ditto.
24273 * rtl.def (DEFINE_SPECIFAL_MEMORY_CONSTRAINT): New.
24274 * stmt.c (parse_input_constraint): Use
24275 insn_extra_special_memory_constraint.
24277 2016-01-29 H.J. Lu <hongjiu.lu@intel.com>
24280 * lra-splill.c (lra_final_code_change): Revert r229087 by
24281 removing all sub-registers.
24283 2016-01-29 Steve Ellcey <sellcey@imgtec.com>
24286 * config/mips/mips.c (mips_output_division): Check flag_delayed_branch.
24288 2016-01-29 Jakub Jelinek <jakub@redhat.com>
24291 * config/i386/i386.c (ix86_expand_vector_set) <case V4SImode>: For
24292 SSE1, copy target into the temporary reg first before recursing
24295 2016-01-29 H.J. Lu <hongjiu.lu@intel.com>
24297 * config/i386/sse.md (sse2_cvtps2pd<mask_name>): Replace vBm
24300 2016-01-29 Jonathan Wakely <jwakely@redhat.com>
24302 * ginclude/stdarg.h: Test __cplusplus instead of
24303 __GXX_EXPERIMENTAL_CXX0X__.
24305 2016-01-29 Richard Biener <rguenther@suse.de>
24307 PR tree-optimization/69547
24308 * tree-ssa-dce.c (mark_aliased_reaching_defs_necessary_1):
24309 Do not mark clobbers necessary.
24310 (mark_all_reaching_defs_necessary_1): Likewise.
24312 2016-01-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
24314 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Format
24315 declaration name with %qs and print it in both error messages.
24316 Also fix indentation.
24318 2016-01-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
24321 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Remove
24322 trailing blank line from error message.
24324 2016-01-29 Jonathan Wakely <jwakely@redhat.com>
24327 * ginclude/float.h: Also provide FLT_EVAL_METHOD and DECIMAL_DIG
24330 2016-01-29 Richard Biener <rguenther@suse.de>
24332 PR middle-end/69537
24333 * match.pd: Allow all integral types when simplifying a
24334 widening or sign-changing conversion.
24336 2016-01-28 Sebastian Pop <s.pop@samsung.com>
24338 * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Revert assert
24339 back to setting codegen_error to fail codegen.
24341 2016-01-28 Uros Bizjak <ubizjak@gmail.com>
24344 * config/i386/constraints.md (C): Only accept constant zero operand.
24345 (BC): New constraint.
24346 * config/i386/sse.md (*mov<mode>_internal): Use BC constraint
24347 instead of C constraint.
24348 * doc/md.texi (Machine Constraints): Update description
24351 2016-01-28 Steve Ellcey <sellcey@imgtec.com>
24354 * config/mips/mips.c (and_operands_ok): Add MIPS16 check.
24356 2016-01-28 Jakub Jelinek <jakub@redhat.com>
24358 PR middle-end/69542
24359 * lra-remat.c (calculate_local_reg_remat_bb_data): Only consider
24362 2016-01-28 Pat Haugen <pthaugen@us.ibm.com>
24364 * config/rs6000/rs6000.c (output_cbranch): Don't statically predict
24365 branches if using guessed profile.
24367 2016-01-28 H.J. Lu <hongjiu.lu@intel.com>
24369 * graphite-optimize-isl.c (optimize_isl): Fix dump.
24371 2016-01-28 Richard Henderson <rth@redhat.com>
24374 * config/aarch64/aarch64-modes.def (CC_Cmode): New
24375 * config/aarch64/aarch64-protos.h: Update.
24376 * config/aarch64/aarch64.c (aarch64_zero_extend_const_eq): New.
24377 (aarch64_select_cc_mode): Add check for use of CC_Cmode.
24378 (aarch64_get_condition_code_1): Handle CC_Cmode.
24379 * config/aarch64/aarch64.md (addti3): Use adddi3_compareC.
24380 (*add<mode>3_compareC_cconly_imm): New.
24381 (*add<mode>3_compareC_cconly): New.
24382 (*add<mode>3_compareC_imm): New.
24383 (add<mode>3_compareC): New.
24384 (add<mode>3_carryin, *addsi3_carryin_uxtw): Sort compare operand
24385 to be first. Use aarch64_carry_operation.
24386 (*add<mode>3_carryin_alt1, *addsi3_carryin_alt1_uxtw): Remove.
24387 (*add<mode>3_carryin_alt2, *addsi3_carryin_alt2_uxtw): Remove.
24388 (*add<mode>3_carryin_alt3, *addsi3_carryin_alt3_uxtw): Remove.
24389 (subti3): Use subdi3_compare1.
24390 (*sub<mode>3_compare0): Rename from sub<mode>3_compare0.
24391 (sub<mode>3_compare1): New.
24392 (*sub<mode>3_carryin0, *subsi3_carryin_uxtw): New.
24393 (*sub<mode>3_carryin): Use aarch64_borrow_operation.
24394 (*subsi3_carryin_uxtw): Likewise.
24395 (*ngc<mode>, *ngcsi_uxtw): Likewise.
24396 (*sub<mode>3_carryin_alt, *subsi3_carryin_alt_uxtw): New.
24397 * config/aarch64/iterators.md (DWI): New.
24398 * config/aarch64/predicates.md (aarch64_carry_operation): New.
24399 (aarch64_borrow_operation): New.
24401 2016-01-28 Abderrazek Zaafrani <a.zaafrani@samsung.com>
24403 * graphite-optimize-isl.c (optimize_isl): Print a different debug
24404 message when isl does not return a valid schedule.
24406 2016-01-28 Sebastian Pop <s.pop@samsung.com>
24408 * graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple):
24409 Remove comments from class declarations: they are already in the code
24412 2016-01-28 Sebastian Pop <s.pop@samsung.com>
24414 * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Call
24416 (ternary_op_to_tree): Same.
24417 (unary_op_to_tree): Same.
24418 (nary_op_to_tree): Same.
24419 (gcc_expression_from_isl_expr_op): Same.
24420 (gcc_expression_from_isl_expression): Same.
24421 (graphite_create_new_loop): Same.
24422 (graphite_create_new_loop_guard): Same.
24423 (build_iv_mapping): Same.
24424 (graphite_create_new_guard): Same.
24425 (translate_isl_ast_to_gimple::copy_loop_phi_nodes): Same.
24426 (translate_isl_ast_to_gimple::translate_pending_phi_nodes): Same.
24428 2016-01-28 Sebastian Pop <s.pop@samsung.com>
24430 * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Assert
24431 instead of setting codegen_error to fail codegen.
24433 2016-01-28 Jason Merrill <jason@redhat.com>
24435 * tree.h (BINFO_FLAG_0): Rename from BINFO_MARKED.
24437 2016-01-28 Wilco Dijkstra <wdijkstr@arm.com>
24439 * config/aarch64/aarch64.c (aarch64_if_then_else_costs):
24440 Remove CONST_INT_P check in CCMP cost calculation.
24442 2016-01-28 Wilco Dijkstra <wdijkstr@arm.com>
24444 * config/aarch64/aarch64.c (generic_vector_cost):
24445 Set vec_permute_cost.
24446 (cortexa57_vector_cost): Likewise.
24447 (exynosm1_vector_cost): Likewise.
24448 (xgene1_vector_cost): Likewise.
24449 (aarch64_builtin_vectorization_cost): Use vec_permute_cost.
24450 * config/aarch64/aarch64-protos.h (cpu_vector_cost):
24451 Add vec_permute_cost entry.
24453 2016-01-28 Wilco Dijkstra <wdijkstr@arm.com>
24455 * config/aarch64/aarch64.md (ccmp<mode>): Disassemble
24457 (add<mode>3_compare0): Likewise.
24458 (addsi3_compare0_uxtw): Likewise.
24459 (add<mode>3nr_compare0): Likewise.
24460 (compare_neg<mode>): Likewise.
24461 (<optab><mode>3): Likewise.
24463 2016-01-28 Ilya Enkovich <enkovich.gnu@gmail.com>
24465 * tree-vect-stmts.c (vectorizable_comparison): Add
24466 NULL check for vectype.
24468 2016-01-28 Richard Biener <rguenther@suse.de>
24470 PR tree-optimization/69466
24471 * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
24472 Account for PHIs we couldn't duplicate.
24474 2016-01-28 Martin Liska <mliska@suse.cz>
24477 * ggc-common.c (gt_pch_save): Use ENABLE_VALGRIND_ANNOTATIONS macro
24478 instead of ENABLE_VALGRIND_CHECKING.
24480 2016-01-27 Richard Henderson <rth@redhat.com>
24483 * lra-remat.c (subreg_regs): New.
24484 (dump_candidates_and_remat_bb_data): Dump it.
24485 (operand_to_remat): Reject if operand in subreg_regs.
24486 (set_bb_regs): Collect subreg_regs.
24487 (lra_remat): Init and free subreg_regs. Compute
24488 calculate_local_reg_remat_bb_data before create_cands.
24490 2016-01-27 H.J. Lu <hongjiu.lu@intel.com>
24493 * config/i386/i386.c (ix86_update_stack_boundary): Don't
24494 change stack_alignment_needed for __tls_get_addr call.
24496 2016-01-27 Segher Boessenkool <segher@kernel.crashing.org>
24498 * config/rs6000/rs6000.c (print_operand): Rollback 's' removal.
24500 2016-01-27 Jeff Law <law@redhat.com>
24502 PR tree-optimization/68398
24503 PR tree-optimization/69196
24504 * params.def (PARAM_FSM_SCALE_PATH_STMTS): New parameter.
24505 (PARAM_FSM_SCALE_PATH_BLOCKS): Likewise.
24506 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
24507 Only count PHIs in the last block in the path. The others will
24508 const/copy propagate away. Add heuristic to allow more irreducible
24509 subloops to be created when it is likely profitable to do so.
24511 * tree-ssa-threadbackward.c (fsm_find_control_statement_thread_paths):
24512 Fix typo in comment. Use gsi_after_labels and remove the GIMPLE_LABEL
24513 check from within the loop. Use gsi_next_nondebug rather than gsi_next.
24515 2016-01-27 Jakub Jelinek <jakub@redhat.com>
24518 * sanitizer.def: Add BEGIN_SANITIZER_BUILTINS and
24519 END_SANITIZER_BUILTINS markers using DEF_BUILTIN_STUB.
24520 * asan.c (DEF_BUILTIN_STUB): Temporarily define.
24521 * tree-streamer-in.c: Include asan.h.
24522 (streamer_get_builtin_tree): For builtins in sanitizer
24523 range call initialize_sanitizer_builtins and retry.
24525 2016-01-27 Ian Lance Taylor <iant@google.com>
24527 * common.opt (fkeep-gc-roots-live): New undocumented option.
24528 * tree-ssa-loop-ivopts.c (add_candidate_1): If
24529 -fkeep-gc-roots-live, skip pointers.
24530 (add_iv_candidate_for_biv): Handle add_candidate_1 returning
24533 2016-01-27 Uros Bizjak <ubizjak@gmail.com>
24536 * config/i386/i386.md (*zext<mode>_doubleword_and): New pattern.
24537 (*zext<mode>_doubleword): Disable for TARGET_ZERO_EXTEND_WITH_AND.
24539 2016-01-27 Thomas Klausner <wiz@NetBSD.org>
24542 * configure.ac: NetBSD provides SSP in its C library.
24543 * configure: Updated.
24545 2016-01-27 Richard Biener <rguenther@suse.de>
24547 PR tree-optimization/69166
24548 * tree-vect-loop.c (vect_is_simple_reduction): Always check
24549 reduction code for commutativity / associativity.
24551 2016-01-27 Martin Jambor <mjambor@suse.cz>
24553 PR tree-optimization/69355
24554 * tree-sra.c (analyze_access_subtree): Correct hole detection when
24555 total_scalarization fails.
24557 2016-01-27 David Edelsohn <dje.gcc@gmail.com>
24559 * config/rs6000/driver-rs6000.c (detect_processor_aix): Add
24562 2016-01-27 Christian Bruel <christian.bruel@st.com>
24565 * config/arm/arm-c.c (arm_pragma_target_parse): Add comments.
24566 Move arm_reset_previous_fndecl and set_target_option_current_node in
24567 the conditional part. Call save_restore_target_globals.
24568 * config/arm/arm.c (arm_set_current_function):
24569 Refactor to better support #pragma target and attribute mix.
24570 Call save_restore_target_globals.
24571 * config/arm/arm-protos.h (save_restore_target_globals): New function.
24573 2016-01-27 Martin Liska <mliska@suse.cz>
24575 * hsa.c (hsa_summary_t::link_functions): Create IPA_REF_ADDR
24576 reference for an HSA kernel and its host function.
24578 2016-01-27 Jakub Jelinek <jakub@redhat.com>
24580 PR tree-optimization/69399
24581 * wide-int.h (wi::lrshift): For larger precisions, only
24582 use fast path if shift is known to be < HOST_BITS_PER_WIDE_INT.
24584 2016-01-27 Claudiu Zissulescu <claziss@synopsys.com>
24586 * config/arc/predicates.md (proper_comparison_operator): Reject
24587 constant-constant comparison.
24589 2016-01-26 Tom de Vries <tom@codesourcery.com>
24591 PR tree-optimization/69110
24592 * tree-data-ref.c (initialize_data_dependence_relation): Handle
24593 DR_NUM_DIMENSIONS == 0.
24595 2016-01-26 Abderrazek Zaafrani <a.zaafrani@samsung.com>
24596 Sebastian Pop <s.pop@samsung.com>
24598 * graphite-isl-ast-to-gimple.c (ternary_op_to_tree): Handle
24599 isl_ast_op_cond and isl_ast_op_select.
24600 (gcc_expression_from_isl_expr_op): Same.
24602 2016-01-26 Jason Merrill <jason@redhat.com>
24605 * tree.c (recompute_constructor_flags): Split out from
24607 (verify_constructor_flags): New.
24608 * tree.h: Declare them.
24610 2016-01-26 Iain Buclaw <ibuclaw@gdcproject.org>
24612 PR rtl-optimization/69217
24613 * var-tracking.c (tracked_record_parameter_p): Don't segfault if there
24614 are no TYPE_FIELDS set for the record type.
24616 2016-01-26 Jakub Jelinek <jakub@redhat.com>
24619 * config/rs6000/rs6000.c (rs6000_option_override_internal): Initialize
24620 toc_label_name unconditionally.
24621 (rs6000_emit_load_toc_table): Call ggc_strdup on toc_label_name for
24622 SYMBOL_REF string. Use toc_label_name instead of constructing
24624 (rs6000_elf_declare_function_name): Use toc_label_name instead of
24625 constructing LCTOC1.
24627 2016-01-26 Martin Sebor <msebor@redhat.com>
24630 * doc/extend.texi (Common Type Attributes): Move text that talks about
24631 attribute packed from attribute aligned to the section discussing
24632 the former attribute for clarity.
24634 2016-01-26 Richard Henderson <rth@redhat.com>
24636 PR middle-end/60908
24637 * trans-mem.c (tm_region_init): Mark entry block as visited.
24639 2016-01-26 David Malcolm <dmalcolm@redhat.com>
24642 * diagnostic-show-locus.c (layout::print_source_line): Replace
24643 call to pp_newline with call to layout::print_newline.
24644 (layout::print_annotation_line): Likewise.
24645 (layout::move_to_column): Likewise.
24646 (layout::print_any_fixits): After printing any fixits, print a
24647 trailing newline, if necessary.
24648 (layout::print_newline): New method, resetting any colorization
24650 (diagnostic_show_locus): Move the pp_newline to before the
24651 early bailout. Remove dummy block enclosing the layout instance.
24652 * diagnostic.c (default_diagnostic_finalizer): Replace invocation
24653 of pp_newline_and_flush with pp_flush.
24654 (diagnostic_append_note): Delete use of pp_newline.
24655 (diagnostic_append_note_at_rich_loc): Delete.
24656 * diagnostic.h (diagnostic_append_note_at_rich_loc): Delete.
24657 * pretty-print.h (output_buffer_append_r): Reset buff->line_length
24658 when newline characters are added to the buffer.
24660 2016-01-26 Michael Matz <matz@suse.de>
24662 * configure.ac (ac_cv_std_swap_in_utility): New test.
24663 * system.h (<algorithm>): Check HAVE_SWAP_IN_UTILITY as well.
24664 * configure: Regenerate.
24665 * config.in: Regenerate.
24667 2016-01-26 Claudiu Zissulescu <claziss@synopsys.com>
24669 * config/arc/arc.md (cstoresi4): Force operand into register.
24670 (arcset<code>): Fix predicate.
24671 (arcsetltu): Likewise.
24672 (arcsetgeu): Likewise.
24673 (arcsethi): Likewise.
24674 (arcsetls): Likewise.
24676 2016-01-26 Jakub Jelinek <jakub@redhat.com>
24678 PR tree-optimization/69483
24679 * gimple-fold.c (canonicalize_constructor_val): Return NULL
24680 if base has error_mark_node type.
24682 2016-01-26 Christophe Lyon <christophe.lyon@linaro.org>
24685 * config/arm/arm.c (neon_valid_immediate): Handle FP16 vectors.
24686 * config/arm/arm_neon.h (__ARM_NUM_LANES, __arm_lane, arm_lanq):
24688 (vget_lane_f16): Handle big-endian.
24689 (vgetq_lane_f16): Likewise.
24690 (vset_lane_f16): Likewise.
24691 (vsetq_lane_f16): Likewise.
24692 * config/arm/iterators.md (VQXMOV): Add V8HF.
24693 (VDQ): Add V4HF and V8HF.
24694 (V_reg): Handle V4HF and V8HF.
24695 (Is_float_mode): Likewise.
24696 * config/arm/neon.md (movv4hf, movv8hf, neon_vdup_nv4hf,
24697 neon_vdup_nv8hf): New patterns.
24698 (vec_set<mode>_internal, vec_extract<mode>, neon_vld1_dup<mode>):
24699 Use VD_LANE iterator.
24700 (neon_vld1_dup<mode>): Use VQ2 iterator.
24702 2016-01-26 Nathan Sidwell <nathan@acm.org>
24704 * omp-low.h (oacc_fn_attrib_kernels_p): Declare.
24705 (set_oacc_fn_attrib): Add IS_KERNEL arg.
24706 * omp-low.c (set_oacc_fn_attrib): Add IS_KERNEL arg.
24707 (oacc_fn_attrib_kernels_p, oacc_fn_attrib_level): New.
24708 (expand_omp_target): Pass is_kernel to set_oacc_fn_attrib.
24709 (oacc_validate_dims): Add LEVEL arg, don't return level.
24710 (new_oacc_loop_routine): Use oacc_fn_attrib_level, not
24711 oacc_validate_dims.
24712 (execute_oacc_device_lower): Adjust, add more dump output.
24713 * tree-ssa-loop.c (gate_oacc_kernels): Use
24714 oacc_fn_attrib_kernels_p.
24715 * tree-parloops.c (create_parallel_loop): Adjust
24716 set_oacc_fn_attrib call.
24718 2016-01-26 Jakub Jelinek <jakub@redhat.com>
24721 * lto-wrapper.c (merge_and_complain): Handle -fcilkplus.
24722 (append_compiler_options): Handle -fcilkplus.
24723 (append_linker_options): Ignore -fno-{openmp,openacc,cilkplus}.
24725 2016-01-26 Nick Clifton <nickc@redhat.com>
24728 * config/i386/winnt.c (i386_pe_binds_local_p): If a function has
24729 been marked as DECL_ONE_ONLY but we do not the means to make it
24730 so, then do not allow it to bind locally.
24732 2016-01-26 Jakub Jelinek <jakub@redhat.com>
24735 * opts.h (parse_sanitizer_options): New prototype.
24736 * opts.c (sanitizer_opts): New array.
24737 (parse_sanitizer_options): New function.
24738 (common_handle_option): Use parse_sanitizer_options.
24740 2016-01-26 H.J. Lu <hongjiu.lu@intel.com>
24743 * config/i386/i386.c (ix86_compute_frame_layout): Move stack
24744 alignment adjustment to ...
24745 (ix86_update_stack_boundary): Here. Don't over-align stack for
24747 (ix86_finalize_stack_realign_flags): Use stack_alignment_needed
24748 if __tls_get_addr is called.
24750 2016-01-26 Christian Bruel <christian.bruel@st.com>
24752 * doc/sourcebuild.texi (arm_crypto_pragma_ok): Remove.
24754 2016-01-26 Eric Botcazou <ebotcazou@adacore.com>
24756 * config/ia64/ia64.c (ia64_expand_vecint_compare): Use gen_int_mode.
24758 2016-01-26 Richard Biener <rguenther@suse.de>
24760 PR middle-end/69467
24761 * match.pd: Guard X * CST CMP 0 pattern with single_use.
24763 2016-01-26 Richard Biener <rguenther@suse.de>
24765 PR tree-optimization/69452
24766 * tree-ssa-loop-im.c (move_computations_dom_walker): Remove.
24767 (move_computations_dom_walker::before_dom_children): Rename
24769 (move_computations_worker): This.
24770 (move_computations): Perform an RPO rather than a DOM walk.
24772 2016-01-26 Jakub Jelinek <jakub@redhat.com>
24775 * combine.c (combine_instructions): For REG_EQUAL note with
24776 SET_DEST being ZERO_EXTRACT, also temporarily set SET_DEST
24777 to the underlying register.
24778 * doc/rtl.texi (REG_EQUAL): Document the behavior of
24779 REG_EQUAL/REG_EQUIV notes if SET_DEST is ZERO_EXTRACT.
24781 2016-01-26 Roger Ferrer Ibáñez <rofirrim@gmail.com>
24784 * config/aarch64/aarch64-builtins.c
24785 (aarch64_init_simd_builtin_types): Do not set structural
24786 equality to __Poly{8,16,64,128}_t types.
24788 2016-01-26 Richard Sandiford <richard.sandiford@arm.com>
24790 PR tree-optimization/69400
24791 * wide-int.cc (wi_pack): Take the precision as argument and
24792 perform canonicalization here rather than in the callers.
24793 Use the main loop to handle all full-width HWIs. Add a
24794 zero HWI if in_len isn't a full result.
24795 (wi::divmod_internal): Update accordingly.
24796 (wi::mul_internal): Likewise. Simplify.
24798 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
24799 Sebastian Pop <s.pop@samsung.com>
24801 * graphite-poly.c (apply_poly_transforms): Simplify.
24802 (print_isl_set): Use more readable format: ISL_YAML_STYLE_BLOCK.
24803 (print_isl_map): Same.
24804 (print_isl_union_map): Same.
24805 (print_isl_schedule): New.
24806 (debug_isl_schedule): New.
24807 * graphite-dependences.c (scop_get_reads): Do not call
24808 isl_union_map_add_map that is undocumented isl functionality.
24809 (scop_get_must_writes): Same.
24810 (scop_get_may_writes): Same.
24811 (scop_get_original_schedule): Remove.
24812 (scop_get_dependences): Do not call isl_union_map_compute_flow that
24813 is deprecated in isl 0.15. Instead, use isl_union_access_* interface.
24814 (compute_deps): Remove.
24815 * graphite-isl-ast-to-gimple.c (print_schedule_ast): New.
24816 (debug_schedule_ast): New.
24817 (translate_isl_ast_to_gimple::scop_to_isl_ast): Call
24818 set_separate_option.
24819 (graphite_regenerate_ast_isl): Add dump.
24820 (translate_isl_ast_to_gimple::scop_to_isl_ast): Generate code
24821 from scop->transformed_schedule.
24822 (graphite_regenerate_ast_isl): Add more dump.
24823 * graphite-optimize-isl.c (optimize_isl): Set
24824 scop->transformed_schedule. Check whether schedules are equal.
24825 (apply_poly_transforms): Move here.
24826 * graphite-poly.c (apply_poly_transforms): ... from here.
24827 (free_poly_bb): Static.
24828 (free_scop): Static.
24829 (pbb_number_of_iterations_at_time): Remove.
24830 (print_isl_ast): New.
24831 (debug_isl_ast): New.
24832 (debug_scop_pbb): New.
24833 * graphite-scop-detection.c (print_edge): Move.
24834 (print_sese): Move.
24835 * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Remove.
24836 (build_scop_scattering): Remove.
24837 (create_pw_aff_from_tree): Assert instead of bailing out.
24838 (add_condition_to_pbb): Remove unused code, do not fail.
24839 (add_conditions_to_domain): Same.
24840 (add_conditions_to_constraints): Remove.
24841 (build_scop_context): New.
24842 (add_iter_domain_dimension): New.
24843 (build_iteration_domains): Initialize pbb->iterators.
24844 Call add_conditions_to_domain.
24847 (index_outermost_in_loop): New.
24848 (index_pbb_in_loop): New.
24849 (outermost_pbb_in): New.
24850 (add_in_sequence): New.
24851 (add_outer_projection): New.
24852 (outer_projection_mupa): New.
24853 (add_loop_schedule): New.
24854 (build_schedule_pbb): New.
24855 (build_schedule_loop): New.
24856 (embed_in_surrounding_loops): New.
24857 (build_schedule_loop_nest): New.
24858 (build_original_schedule): New.
24859 (build_poly_scop): Call build_original_schedule.
24860 * graphite.h: Declare print_isl_schedule and debug_isl_schedule.
24861 (free_poly_dr): Remove.
24862 (struct poly_bb): Add iterators. Remove schedule, transformed, saved.
24863 (free_poly_bb): Remove.
24864 (debug_loop_vec): Remove.
24865 (print_isl_ast): Declare.
24866 (debug_isl_ast): Declare.
24867 (scop_do_interchange): Remove.
24868 (scop_do_strip_mine): Remove.
24869 (scop_do_block): Remove.
24870 (flatten_all_loops): Remove.
24871 (optimize_isl): Remove.
24872 (pbb_number_of_iterations_at_time): Remove.
24873 (debug_scop_pbb): Declare.
24874 (print_schedule_ast): Declare.
24875 (debug_schedule_ast): Declare.
24876 (struct scop): Remove schedule. Add original_schedule,
24877 transformed_schedule.
24878 (free_gimple_poly_bb): Remove.
24879 (print_generated_program): Remove.
24880 (debug_generated_program): Remove.
24881 (unify_scattering_dimensions): Remove.
24882 * sese.c (print_edge): ... here.
24883 (print_sese): ... here.
24884 (debug_edge): ... here.
24885 (debug_sese): ... here.
24886 * sese.h (print_edge): Declare.
24887 (print_sese): Declare.
24888 (dump_edge): Declare.
24889 (dump_sese): Declare.
24891 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
24892 Sebastian Pop <s.pop@samsung.com>
24894 * Makefile.in: Set ISLVER in site.exp.
24896 2016-01-25 Jakub Jelinek <jakub@redhat.com>
24898 * omp-low.c (lower_omp_target) <case USE_DEVICE_PTR>: Set
24899 DECL_VALUE_EXPR of new_var even for the non-array case. Look
24900 through DECL_VALUE_EXPR for expansion.
24902 2016-01-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
24904 * config/mips/mips.c (mips_compute_frame_info): Skip re-computing
24905 the frame info after reload completed.
24907 2016-01-25 Jeff Law <law@redhat.com>
24909 PR tree-optimization/69196
24910 PR tree-optimization/68398
24911 * tree-ssa-threadupdate.h (enum bb_dom_status): Moved here from
24912 tree-ssa-threadupdate.c.
24913 (determine_bb_domination_status): Prototype
24914 * tree-ssa-threadupdate.c (enum bb_dom_status): Remove
24915 (determine_bb_domination_status): No longer static.
24916 (valid_jump_thread_path): Remove code to detect characteristics
24917 of the jump thread path not associated with correctness.
24918 * tree-ssa-threadbackward.c (fsm_find_control_statment_thread_paths):
24919 Correct test for thread path length. Count PHIs for real operands as
24920 statements that need to be copied. Do not count ASSERT_EXPRs.
24921 Look at all the blocks in the thread path. Compute and selectively
24922 filter thread paths based on threading through the latch, threading
24923 a multiway branch or crossing a multiway branch.
24925 2016-01-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
24927 * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): Add
24928 decl with __attribute__ ((unused)) annotation.
24930 2016-01-25 Ilya Enkovich <enkovich.gnu@gmail.com>
24933 * tree-vect-stmts.c (vectorizable_condition): Check vectype
24934 of operands is compatible with a statement vectype.
24936 2016-01-25 Eric Botcazou <ebotcazou@adacore.com>
24938 * doc/extend.texi (scalar_storage_order type attribute): Fix typo and
24939 improve wording for mixed storage order support.
24941 2016-01-25 Bilyan Borisov <bilyan.borisov@arm.com>
24943 * config/aarch64/arm_neon.h (vcvt_s64_f64): New intrinsic.
24944 (vcvt_u64_f64): Likewise.
24945 (vcvta_s64_f64): Likewise.
24946 (vcvta_u64_f64): Likewise.
24947 (vcvtm_s64_f64): Likewise.
24948 (vcvtm_u64_f64): Likewise.
24949 (vcvtn_s64_f64): Likewise.
24950 (vcvtn_u64_f64): Likewise.
24951 (vcvtp_s64_f64): Likewise.
24952 (vcvtp_u64_f64): Likewise.
24954 2016-01-25 Claudiu Zissulescu <claziss@synopsys.com>
24956 * config/arc/arc.c (TARGET_DWARF_REGISTER_SPAN): Define.
24957 (arc_init): Check validity mll64 option.
24958 (arc_save_restore): Use double load/store instruction.
24959 (arc_expand_movmem): Likewise.
24960 (arc_split_move): Don't split if we have double load/store
24961 instructions. Returns a boolean.
24962 (arc_process_double_reg_moves): Change function to return boolean
24963 instead of a sequence of instructions.
24964 (arc_dwarf_register_span): New function.
24965 * config/arc/arc-protos.h (arc_split_move): Change prototype.
24966 * config/arc/arc.h (TARGET_CPU_CPP_BUILTINS): Define __ARC_LL64__.
24967 * config/arc/arc.md (*movdi_insn): Emit ldd/std instructions.
24968 (*movdf_insn): Likewise.
24969 * config/arc/arc.opt (mll64): New option.
24970 * config/arc/predicates.md (even_register_operand): New predicate.
24971 * doc/invoke.texi (ARC Options): Add mll64 documentation.
24973 2016-01-25 Richard Biener <rguenther@suse.de>
24976 * dwarf2out.c (is_naming_typedef_decl): Not when DECL_NAMELESS.
24977 * tree-streamer-out.c (pack_ts_base_value_fields): Stream
24979 * tree-streamer-in.c (unpack_ts_base_value_fields): Likewise.
24981 2016-01-25 Richard Biener <rguenther@suse.de>
24983 PR tree-optimization/69376
24984 * tree-ssa-sccvn.h (struct vn_ssa_aux): Add range_info_anti_range_p
24986 (VN_INFO_ANTI_RANGE_P): New inline.
24987 (VN_INFO_RANGE_TYPE): Likewise.
24988 * tree-ssa-sccvn.c (set_ssa_val_to): Also record and copy
24989 SSA_NAME_ANTI_RANGE_P.
24990 (free_scc_vn): Restore SSA_NAME_ANTI_RANGE_P.
24991 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
24992 Properly query VN_INFO_RANGE_TYPE.
24994 2016-01-25 Nick Clifton <nickc@redhat.com>
24997 * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Remove definition.
24999 2016-01-23 Tom de Vries <tom@codesourcery.com>
25001 PR tree-optimization/69426
25002 * tree-parloops.c (eliminate_local_variables_stmt): Handle vdef of
25005 2016-01-23 Jakub Jelinek <jakub@redhat.com>
25007 * tree-ssanames.c (release_free_names_and_compact_live_names): Replace
25008 "the the" with "the" in the comments.
25009 * ipa-devirt.c (build_type_inheritance_graph,
25010 update_type_inheritance_graph): Likewise.
25011 * tree.c (build_function_type_list_1): Likewise.
25012 * cfgloopmanip.c (scale_loop_profile): Likewise.
25013 * tree-ssa-loop-ivopts.c (get_shiftadd_cost): Likewise.
25014 * gimple-ssa-split-paths.c
25015 (find_block_to_duplicate_for_splitting_paths): Likewise.
25016 * tree-sra.c (init_subtree_with_zero, clobber_subtree): Likewise.
25017 * expr.c (convert_move): Likewise.
25018 * var-tracking.c (vt_stack_adjustments): Likewise.
25019 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Likewise.
25020 * tree-vrp.c (test_for_singularity): Likewise.
25022 * tree-vect-stmts.c (vectorizable_condition): Build a VEC_COND_EXPR
25023 directly instead of building a temporary tree.
25026 * genrecog.c: Define INCLUDE_ALGORITHM before including system.h,
25027 remove <algorithm> include.
25029 2016-01-22 Jakub Jelinek <jakub@redhat.com>
25032 * config/i386/i386.c: Include dojump.h.
25033 (expand_small_movmem_or_setmem,
25034 expand_set_or_movmem_prologue_epilogue_by_misaligned_moves): Spelling
25036 (ix86_expand_set_or_movmem): Call do_pending_stack_adjust () early
25037 if dynamic_check != -1.
25039 2016-01-21 Jeff Law <law@redhat.com>
25041 PR middle-end/69347
25042 * tree-ssa-dom.c (back_propagate_equivalences): Factored out of
25043 record_temporary_equivalences. Rewritten to avoid unnecessary calls
25044 into dominated_by_p.
25045 (cprop_into_successor_phis): Avoid unnecessary tests.
25047 2016-01-22 Richard Henderson <rth@redhat.com>
25050 * config/aarch64/aarch64.md (UNSPEC_NZCV): New.
25051 (ccmp<mode>, fccmp<mode>, fccmpe<mode>): Use it.
25053 2016-01-22 Michael Matz <matz@suse.de>
25055 * system.h (string, algorithm): Include only conditionally.
25056 (new): Include always under C++.
25057 * bb-reorder.c (toplevel): Define INCLUDE_ALGORITHM.
25058 * final.c (toplevel): Ditto.
25059 * ipa-chkp.c (toplevel): Define INCLUDE_STRING.
25060 * genconditions.c (write_header): Make gencondmd.c define
25062 * mem-stats.h (mem_usage::print_dash_line): Don't use std::string.
25064 * config/aarch64/aarch64.c (toplevel): Define INCLUDE_STRING.
25065 * common/config/aarch64/aarch64-common.c (toplevel): Ditto.
25067 2016-01-22 Christian Bruel <christian.bruel@st.com>
25070 * expr.c (expand_expr_real_1): Reset DECL_MODE if VECTOR_TYPE_P changed.
25072 2016-01-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25075 * config/arm/thumb2.md (*thumb2_ior_scc_strict_it): Convert to
25076 define_insn_and_split. Ensure operands[1] and operands[0] do not
25077 get assigned the same register.
25079 2016-01-22 Kugan Vivekanandarajah <kuganv@linaro.org>
25081 * ipa-prop.c (ipa_set_jf_constant): Remove redundant unshare_expr.
25083 2016-01-22 Christian Bruel <christian.bruel@st.com>
25085 * config/arm/arm-c.c (arm_pragma_target_parse):
25086 Remove warn_builtin_macro_redefined overwrite.
25088 2016-01-22 Eric Botcazou <ebotcazou@adacore.com>
25090 * ipa-inline.c (can_inline_edge_p): Back out overzealous check on
25091 flag_non_call_exceptions compatibility.
25093 2016-01-22 Jakub Jelinek <jakub@redhat.com>
25096 * dwarf2out.c (add_child_die_after): New function.
25097 (dwarf_qual_info_t): New type.
25098 (dwarf_qual_info): New variable.
25099 (qualified_die_p): New function.
25100 (modified_type_die): For -fdebug-types-section, ensure
25101 canonical order of qualifiers. Put qualified DIEs adjacent
25102 to the corresponding non-qualified type DIE and search there
25103 for existing qualified DIEs.
25105 2016-01-22 Eric Botcazou <ebotcazou@adacore.com>
25107 * doc/extend.texi (scalar_storage_order type attribute): Document
25108 restriction on type punning and aliasing, and remove future tense.
25110 2016-01-21 Roman Zhuykov <zhroma@ispras.ru>
25113 * modulo-sched.c (optimize_sc): Allow branch-scheduling to add a new
25116 2016-01-21 Jeff Law <law@redhat.com>
25118 PR middle-end/69347
25119 * tree-ssa-dom.c (dom_opt_dom_walker::thread_across_edge): Avoid
25120 useless call to record_temporary_equivalences.
25121 * tree-ssa-threadbackward.c (find_jump_threads_backwards): Just
25122 allocate 10 slots in the bb_path vector and let it grow as needed.
25123 (fsm_find_control_statement_thread_paths): Similarly for the next_path
25126 2016-01-21 David Edelsohn <dje.gcc@gmail.com>
25128 * configure.ac (gcc_cv_as_powerpc_mfcrf, gcc_cv_as_machine_directive):
25130 * configure: Regenerate.
25132 2016-01-21 Pat Haugen <pthaugen@us.ibm.com>
25134 * config/rs6000/aix71.h (ASM_CPU_SPEC): Add entry for Power9.
25135 * config/rs6000/driver-rs6000.c (struct asm_names): Likewise.
25137 2016-01-21 Bernd Schmidt <bschmidt@redhat.com>
25139 PR middle-end/66178
25140 * expr.c (expand_expr_real_2) [PLUS_EXPR, MINUS_EXPR]: Don't
25141 drop EXPAND_INITIALIZER.
25142 * rtl.h (contains_symbolic_reference_p): Declare.
25143 * rtlanal.c (contains_symbolic_reference_p): New function.
25144 * simplify-rtx.c (simplify_binary_operation_1): Don't turn
25145 a subtraction into a NOT if symbolic constants are involved.
25147 2016-01-21 Anton Blanchard <anton@samba.org>
25148 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25151 * config/rs6000/linux64.h (TARGET_KEEP_LEAF_WHEN_PROFILED): New
25153 * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): New
25156 2016-01-21 Ajit Agarwal <ajitkum@xilinx.com>
25158 * config/microblaze/microblaze.c
25159 (get_branch_target): New.
25160 (insert_wic_for_ilb_runout): New.
25162 (microblaze_machine_dependent_reorg): New.
25163 (TARGET_MACHINE_DEPENDENT_REORG): Define macro.
25164 * config/microblaze/microblaze.md
25165 (UNSPEC_IPREFETCH): Define.
25166 (iprefetch): New pattern
25167 * config/microblaze/microblaze.opt
25168 (mxl-prefetch): New flag.
25170 2016-01-21 Ajit Agarwal <ajitkum@xilinx.com>
25172 * config/microblaze/microblaze.h
25173 (FIXED_REGISTERS): Update in macro.
25174 (CALL_USED_REGISTERS): Update in macro.
25176 2016-01-21 Yuri Rumyantsev <ysrumyan@gmail.com>
25178 PR rtl-optimization/68920
25179 * ifcvt.c (cond_move_process_if_block): Limit number of conditional
25182 2016-01-21 Vladimir Makarov <vmakarov@redhat.com>
25184 PR rtl-optimization/68990
25185 * lra-coalesce.c (lra_coalesce): Invalidate value for the result
25186 pseudo instead of inheritance ones.
25188 2016-01-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
25189 Nick Clifton <nickc@redhat.com>
25193 * config/mips/mips.c (mips_compute_frame_info): Initialise
25194 args_size and hard_frame_pointer_offset fields of the frame
25195 structure before calling mips_global_pointer.
25197 2016-01-21 David Edelsohn <dje.gcc@gmail.com>
25199 * configure.ac (gcc_cv_as_dwloc): Test support for debug frame section
25201 * configure: Regenerate.
25203 2016-01-21 Richard Biener <rguenther@suse.de>
25205 * graphite-optimize-isl.c (get_schedule_map): Fix typo.
25207 2016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
25209 * config/s390/s390.c (s390_asm_declare_function_size): Add code
25210 to actually emit the .size directive.
25212 2016-01-21 Stefan Sørensen <stefan.sorensen@spectralink.com>
25213 Jakub Jelinek <jakub@redhat.com>
25217 * config/arm/arm-builtins.c (arm_expand_neon_builtin): Increase
25218 args array size by one to avoid buffer overflow.
25220 2016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
25222 * config/s390/s390.md (pool_section_start): Use switch_to_section
25223 to select proper read-only data section instead of hardcoding
25225 (pool_section_end): Use switch_to_section to match the above.
25227 2016-01-21 Richard Biener <rguenther@suse.de>
25229 PR tree-optimization/69378
25230 * tree-ssa-sccvn.c (dominated_by_p_w_unex): New function.
25231 (set_ssa_val_to): Use it for dominance checks taking into
25232 account not executable edges.
25234 2016-01-21 Jakub Jelinek <jakub@redhat.com>
25237 * tree-dfa.c (get_ref_base_and_extent): Use GET_MODE_BITSIZE (mode)
25238 for bitsize instead of GET_MODE_PRECISION (mode).
25240 2016-01-20 Martin Sebor <msebor@redhat.com>
25243 * extend.texi (__sync Builtins): Clarify the semantics of
25244 __sync_fetch_and_OP built-ins on pointers.
25245 (__atomic Builtins): Same.
25247 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25248 Sebastian Pop <s.pop@samsung.com>
25250 * graphite-isl-ast-to-gimple.c (enum phi_node_kind): New.
25251 (class translate_isl_ast_to_gimple): Use phi_node_kind instead of bool.
25252 (is_valid_rename): Same.
25253 (translate_isl_ast_to_gimple::get_rename): Same.
25254 (translate_isl_ast_to_gimple::rename_all_uses): Same.
25255 (translate_isl_ast_to_gimple::rename_uses): Same.
25256 (get_new_name): Check for close_phi nodes.
25257 (copy_loop_phi_args): Use phi_node_kind.
25258 (translate_isl_ast_to_gimple::copy_loop_close_phi_args): Same.
25259 (translate_isl_ast_to_gimple::copy_cond_phi_args): Same.
25261 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25262 Sebastian Pop <s.pop@samsung.com>
25264 Revert commit r229783.
25265 * graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id):
25266 Remove use of parameter_rename_map.
25267 (copy_def): Remove.
25268 (copy_internal_parameters): Remove.
25269 (graphite_regenerate_ast_isl): Remove call to copy_internal_parameters.
25270 * sese.c (new_sese_info): Do not initialize parameter_rename_map.
25271 (free_sese_info): Do not free parameter_rename_map.
25272 (set_rename): Do not use parameter_rename_map.
25273 (rename_uses): Update call to set_rename.
25274 (graphite_copy_stmts_from_block): Do not use parameter_rename_map.
25275 * sese.h (parameter_rename_map_t): Remove.
25276 (struct sese_info_t): Remove field parameter_rename_map.
25278 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25279 Sebastian Pop <s.pop@samsung.com>
25281 * graphite-isl-ast-to-gimple.c: Fix comment.
25282 * graphite-scop-detection.c (defined_in_loop_p): New.
25283 (canonicalize_loop_closed_ssa): Do not add close phi nodes for SSA
25284 names defined in loop.
25286 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25287 Sebastian Pop <s.pop@samsung.com>
25289 * graphite-scop-detection.c (scop_detection::harmful_loop_in_region):
25290 Discard unstructured if-then-else regions.
25292 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25293 Sebastian Pop <s.pop@samsung.com>
25295 * graphite-sese-to-poly.c (set_scop_parameter_dim): Remove.
25296 (cleanup_loop_iter_dom): Remove.
25297 (build_loop_iteration_domains): Remove.
25298 (build_scop_context): Remove.
25299 (build_scop_iteration_domain): Remove.
25300 (add_loop_constraints): New.
25301 (build_iteration_domains): New.
25302 (build_poly_scop): Call build_iteration_domains.
25304 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25305 Sebastian Pop <s.pop@samsung.com>
25307 * graphite-scop-detection.c
25308 (scop_detection::harmful_loop_in_region): Free dom and loops.
25309 (scop_detection::loop_body_is_valid_scop): Free bbs.
25311 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25312 Sebastian Pop <s.pop@samsung.com>
25314 * graphite-scop-detection.c (record_loop_in_sese): New.
25315 (gather_bbs::before_dom_children): Call record_loop_in_sese.
25316 (build_scops): Remove call to build_sese_loop_nests.
25317 * sese.c (sese_record_loop): Remove.
25318 (build_sese_loop_nests): Remove.
25319 (new_sese_info): Remove region->loops.
25320 (free_sese_info): Same.
25321 * sese.h (sese_contains_loop): Same.
25322 (build_sese_loop_nests): Remove.
25323 (sese_contains_loop): Remove.
25325 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25326 Sebastian Pop <s.pop@samsung.com>
25328 * graphite-scop-detection.c (loop_is_valid_scop): Renamed
25329 loop_is_valid_in_scop.
25330 (scop_detection::harmful_stmt_in_region): Renamed
25331 harmful_loop_in_region.
25332 Call loop_is_valid_in_scop.
25334 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25335 Sebastian Pop <s.pop@samsung.com>
25337 * graphite-isl-ast-to-gimple.c (translate_isl_ast): Also handle
25340 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25341 Sebastian Pop <s.pop@samsung.com>
25343 * graphite-poly.c (new_poly_bb): Remove use of PBB_IS_REDUCTION.
25344 * graphite.h (struct poly_bb): Remove field is_reduction.
25345 (PBB_IS_REDUCTION): Remove.
25347 2016-01-21 Aditya Kumar <aditya.k7@samsung.com>
25348 Sebastian Pop <s.pop@samsung.com>
25350 * graphite-dependences.c (constrain_domain): Add call to isl_*_coalesce.
25351 (add_pdr_constraints): Same.
25352 (scop_get_reads): Same.
25353 (scop_get_must_writes): Same.
25354 (scop_get_may_writes): Same.
25355 (scop_get_original_schedule): Same.
25356 (extend_schedule): Same.
25357 (apply_schedule_on_deps): Same.
25358 (carries_deps): Same.
25359 (compute_deps): Same.
25360 (scop_get_dependences): Same.
25361 * graphite-isl-ast-to-gimple.c
25362 (translate_isl_ast_to_gimple::generate_isl_schedule): Same.
25363 * graphite-optimize-isl.c (get_schedule_for_band): Same.
25364 (get_schedule_for_band_list): Same.
25365 (get_schedule_map): Same.
25366 (apply_schedule_map_to_scop): Same.
25367 * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Same.
25368 (build_loop_iteration_domains): Same.
25369 (add_condition_to_pbb): Same.
25370 (add_param_constraints): Same.
25371 (pdr_add_memory_accesses): Same.
25372 (pdr_add_data_dimensions): Same.
25374 2016-01-20 Sandra Loosemore <sandra@codesourcery.com>
25376 * doc/invoke.texi (Instrumentation Options): Clarify -mmpx linking
25379 2016-01-20 Sandra Loosemore <sandra@codesourcery.com>
25381 * common.opt (feliminate-dwarf2-dups): Replace references to
25382 "DWARF 2" with just "DWARF".
25383 * config/ia64/ia64.opt (mdwarf2-asm): Likewise.
25384 * doc/extend.texi: Likewise.
25385 * doc/cpp.texi: Likewise.
25386 * doc/invoke.texi: Likewise.
25387 (Option Summary): Add -gdwarf to list of Debugging Options.
25388 (Debugging Options): Document -gdwarf.
25389 * doc/contrib.texi: Spell "DWARF" like that.
25391 2016-01-21 Jakub Jelinek <jakub@redhat.com>
25393 * omp-low.c (expand_omp_target): Avoid -Wmaybe-uninitialized
25394 warning. Fix up formatting.
25396 PR middle-end/67653
25397 * gimplify.c (gimplify_asm_expr): Warn if it is too late to
25398 attempt to mark memory input operand addressable and
25399 call prepare_gimple_addressable in that case. Don't adjust
25400 input_location for diagnostics, use error_at instead.
25402 2016-01-20 Peter Bergner <bergner@vnet.ibm.com>
25404 * config/rs6000/ppc-auxv.h: New file.
25405 * config/rs6000/rs6000-builtin.def (cpu_init): Add new builtin.
25406 (cpu_is): Likewise.
25407 (cpu_supports): Likewise.
25408 * config/rs6000/rs6000.c: include "ppc-auxv.h".
25409 (cpu_is_info): New variable.
25410 (cpu_supports_info): Likewise.
25411 (tcb_verification_symbol): Likewise.
25412 (cpu_builtin_p): Likewise.
25413 (cpu_expand_builtin): New function.
25414 (rs6000_expand_ternop_builtin): Add support for CPU builtin functions.
25415 (rs6000_init_builtins): Likewise.
25416 (rs6000_elf_file_end): Emit HWCAP in TCB verification symbol.
25417 * config/rs6000/rs6000.h (TLS_REGNUM): New define.
25418 * configure.ac (gcc_cv_libc_provides_hwcap_in_tcb): New test.
25419 * configure: Regenerate.
25420 * config.in: Likewise.
25421 * doc/extend.texi (PowerPC Built-in Functions): Document
25422 __builtin_cpu_init, __builtin_cpu_is and __builtin_cpu_supports.
25424 2016-01-20 David Edelsohn <dje.gcc@gmail.com>
25427 * config/rs6000/rs6000.c (rs6000_emit_swsqrt): Add vector sqrt
25429 * config/rs6000/vector.md (sqrt<mode>2): Call rs6000_emit_swsqrt
25432 2016-01-20 Richard Henderson <rth@redhat.com>
25438 * tree.c (tm_define_builtin): New.
25439 (find_tm_vector_type): New.
25440 (build_tm_vector_builtins): New.
25441 (build_common_builtin_nodes): Call it.
25443 2016-01-20 Christophe Lyon <christophe.lyon@linaro.org>
25445 * doc/sourcebuild.texi (arm_crypto_pragma_ok): Document new entry.
25446 (arm_fp_ok): Likewise.
25447 (arm_fp): Likewise.
25448 (arm_crypto): Likewise.
25450 2016-01-20 Ilya Enkovich <enkovich.gnu@gmail.com>
25451 Richard Biener <rguenther@suse.de>
25453 PR tree-optimization/69328
25454 * tree-vect-stmts.c (vect_is_simple_cond): Check compared
25455 vectors have same number of elements.
25456 (vectorizable_condition): Fix masked version recognition.
25458 2016-01-20 Richard Biener <rguenther@suse.de>
25460 PR tree-optimization/69345
25461 * tree-ssa-sccvn.h (VN_INFO_RANGE_INFO): New inline function.
25462 (VN_INFO_PTR_INFO): Likewise.
25463 * tree-ssa-sccvn.c (set_ssa_val_to): Avoid clearing points-to
25464 info when it is equal between non-dominating SSA names.
25465 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
25466 Make sure to look at original SSA infos.
25468 2016-01-20 Jeff Law <law@redhat.com>
25471 * config/m68k/predicates.md (pow2_m1_operand): New predicate
25473 (reg_or_pow2_m1_operand): Call pow2_m1_operand.
25474 (pc_or_label_operand): New predicate.
25475 * config/m68k/m68k.md: Add new peephole2 patterns for GTU/LEU
25476 tests for small integers that are 2^n - 1.
25478 2016-01-20 Jonathan Wakely <jwakely@redhat.com>
25480 * doc/invoke.texi (Options Summary): Add '.' after @xref.
25482 2016-01-19 Jeff Law <law@redhat.com>
25484 PR middle-end/69347
25485 * tree-ssa-threadbackwards.c
25486 (fsm_find_control_statement_thread_paths): Do not try to lookup
25487 FSM paths for SSA_NAMEs appearing in abnormal PHIs.
25489 2016-01-20 Kugan Vivekanandarajah <kuganv@linaro.org>
25491 * doc/lto.texi: Remove text that says only Gold has linker plugin
25494 2016-01-19 Eric Botcazou <ebotcazou@adacore.com>
25496 * dwarf2out.c (need_endianity_attribute_p): New inline predicate.
25497 (base_type_die): Add REVERSE parameter and attach DW_AT_endianity to
25498 the DIE accordingly.
25499 (modified_type_die): Add REVERSE parameter and pass it recursively,
25500 as well as to base_type_die. Adjust presence check accordingly.
25501 (base_type_for_mode): Adjust call to modified_type_die.
25502 (add_type_attribute): Add REVERSE parameter and pass it to
25504 (generic_parameter_die): Adjust call to add_type_attribute.
25505 (add_scalar_info): Likewise.
25506 (add_subscript_info): Likewise.
25507 (gen_array_type_die): Likewise.
25508 (gen_descr_array_type_die): Likewise.
25509 (gen_entry_point_die): Likewise.
25510 (gen_enumeration_type_die): Likewise.
25511 (gen_formal_parameter_die): Likewise.
25512 (gen_subprogram_die): Likewise.
25513 (gen_variable_die ): Likewise.
25514 (gen_const_die): Likewise.
25515 (gen_field_die): Likewise.
25516 (gen_pointer_type_die): Likewise.
25517 (gen_reference_type_die): Likewise.
25518 (gen_ptr_to_mbr_type_die): Likewise.
25519 (gen_inheritance_die): Likewise.
25520 (gen_subroutine_type_die): Likewise.
25521 (gen_typedef_die): Likewise.
25522 (force_type_die): Adjust call to modified_type_die.
25524 2016-01-19 Sandra Loosemore <sandra@codesourcery.com>
25526 * doc/standards.texi: Copy-editing for grammar, markup, and sentence
25527 flow throughout the file. Fix broken link to Objective-C 2.0
25529 * doc/invoke.texi: More copy-editing; fix numerous typos and spelling
25532 2016-01-19 Wilco Dijkstra <wdijkstr@arm.com>
25534 * ccmp.c (expand_ccmp_expr_1): Avoid spurious unused warnings.
25536 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
25539 * ipa-devirt.c (is_cxa_pure_virtual_p): New function.
25540 (maybe_record_node): Record cxa_pure_virtual as the only possible
25541 target if there are not ohter candidates.
25542 (possible_polymorphic_call_target_p): Accept cxa_pure_virtual.
25544 2016-01-19 Richard Biener <rguenther@suse.de>
25546 * hsa-gen.c (get_memory_order_name): Use MEMMODEL_ constants.
25547 (get_memory_order): Likewise.
25549 2016-01-19 Kirill Yukhin <kirill.yukhin@intel.com>
25551 * tree-vect-stmts.c (vectorizable_store): Check
25554 2016-01-19 David Malcolm <dmalcolm@redhat.com>
25557 * gcc.c (driver::decode_argv): Add call to
25558 init_opts_obstack before init_options_struct.
25559 * opts.c (init_opts_obstack): Remove idempotency.
25560 (init_options_struct): Replace call to init_opts_obstack
25561 with a gcc_assert to verify that it has already been called.
25562 * toplev.c (toplev::main): Add call to init_opts_obstack before
25563 calls to init_options_struct.
25564 (toplev::finalize): Move cleanup of opts_obstack next to
25565 cleanup of save_decoded_options, clearing the latter, and
25566 save_decoded_options_count.
25568 2016-01-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25571 * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): Set "conds"
25572 attribute to unconditional. Remove %? from output template.
25574 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
25575 Jiong Wang <jiong.wang@arm.com>
25577 * ccmp.c (expand_ccmp_expr_1): Cost the instruction sequences
25578 generated from different expand order.
25580 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
25582 * /config/aarch64/aarch64.c (aarch64_if_then_else_costs):
25583 Add support for CCMP costing.
25585 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
25587 * ccmp.c (ccmp_candidate_p): Remove integer-only restriction.
25588 * config/aarch64/aarch64.md (fccmp<mode>): New pattern.
25589 (fccmpe<mode>): Likewise.
25590 (fcmp): Rename to fcmp and globalize pattern.
25592 * config/aarch64/aarch64.c (aarch64_gen_ccmp_first): Add FP support.
25593 (aarch64_gen_ccmp_next): Add FP support.
25595 2015-01-19 Wilco Dijkstra <wdijkstr@arm.com>
25597 * target.def (gen_ccmp_first): Update documentation.
25598 (gen_ccmp_next): Likewise.
25599 * doc/tm.texi (gen_ccmp_first): Update documentation.
25600 (gen_ccmp_next): Likewise.
25601 * ccmp.c (expand_ccmp_expr): Extract cmp_code from return value of
25602 expand_ccmp_expr_1. Improve comments.
25603 * config/aarch64/aarch64.md (ccmp_and): Use if_then_else for ccmp.
25604 (ccmp_ior<mode>): Remove pattern.
25605 (cmp<mode>): Remove expand.
25606 (cmp): Globalize pattern.
25607 (cstorecc4): Use cc_register.
25608 (mov<mode>cc): Remove ccmp_cc_register check.
25609 * config/aarch64/aarch64.c (aarch64_get_condition_code_1):
25610 Simplify after removal of CC_DNE/* modes.
25611 (aarch64_ccmp_mode_to_code): Remove.
25612 (aarch64_print_operand): Remove 'K' case. Merge 'm' and 'M' cases.
25613 In 'k' case use integer as condition.
25614 (aarch64_nzcv_codes): Remove inverted cases.
25615 (aarch64_code_to_ccmode): Remove.
25616 (aarch64_gen_ccmp_first): Use cmp pattern directly. Return the correct
25617 comparison with CC register to be used in folowing CCMP/branch/CSEL.
25618 (aarch64_gen_ccmp_next): Use previous comparison and mode in CCMP
25619 pattern. Return the comparison with CC register. Invert conditions
25620 when bitcode is OR.
25621 * config/aarch64/aarch64-modes.def: Remove CC_DNE/* modes.
25622 * config/aarch64/predicates.md (ccmp_cc_register): Remove.
25624 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
25626 * cgraphunit.c (cgraph_node::reset): Clear thunk info and
25627 instrumented_version.
25629 2016-01-19 Richard Biener <rguenther@suse.de>
25631 PR tree-optimization/69336
25632 * tree-ssa-scopedtables.c (avail_expr_hash): Handle all
25633 handled components with get_ref_base_and_extent.
25634 (equal_mem_array_ref_p): Adjust.
25636 2016-01-19 Jakub Jelinek <jakub@redhat.com>
25639 * shrink-wrap.c: Include valtrack.h.
25640 (move_insn_for_shrink_wrap): Add DEBUG argument. If
25641 MAY_HAVE_DEBUG_INSNS, call dead_debug_add on DEBUG_INSNs
25642 in between insn and where it will be moved to. Call
25643 dead_debug_insert_temp.
25644 (prepare_shrink_wrap): Adjust caller. Call dead_debug_local_init
25645 first and dead_debug_local_finish at the end.
25646 For uses and defs bitmap, handle all regs in between REGNO and
25647 END_REGNO, not just the first one.
25649 2016-01-19 Richard Biener <rguenther@suse.de>
25651 PR tree-optimization/69352
25652 * tree-ssa-scopedtables.c (avail_expr_hash): Check for size == -1.
25653 (equal_mem_array_ref_p): Constrain size and max size properly.
25654 Compare the reverse flag.
25656 2016-01-19 Bernd Schmidt <bschmidt@redhat.com>
25658 * ira.c (ira): Update regstat data if we deleted insns.
25660 2016-01-19 Jakub Jelinek <jakub@redhat.com>
25662 PR rtl-optimization/68955
25663 PR rtl-optimization/64557
25664 * dse.c (record_store, check_mem_read_rtx): Don't call get_addr
25665 here. Fix up formatting.
25666 * alias.c (get_addr): Handle VALUE +/- CONST_SCALAR_INT_P.
25668 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
25671 * cgraphunit.c (cgraph_node::expand_thunk): When forcing gimple
25672 assume that the node has body.
25673 * cgraph.c (cgraph_node::get_untransformed_body): Use gimple_body_p
25676 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
25678 * lto-streamer-out.c (lto_output): Do not stream instrumentation
25681 2016-01-19 Jan Hubicka <hubicka@ucw.cz>
25683 * symtab.c (symtab_node::asm_name): Do not call printable name directly.
25684 (symtab_node::name): Report name as unnamed if DECL_NAME is not set.
25686 2016-01-19 Martin Jambor <mjambor@suse.cz>
25687 Martin Liska <mliska@suse.cz>
25688 Michael Matz <matz@suse.de>
25690 * Makefile.in (OBJS): Add new source files.
25691 (GTFILES): Add hsa.c.
25692 * common.opt (disable_hsa): New variable.
25693 (-Whsa): New warning.
25694 * config.in (ENABLE_HSA): New.
25695 * configure.ac: Treat hsa differently from other accelerators.
25696 (OFFLOAD_TARGETS): Define ENABLE_OFFLOADING according to
25697 $enable_offloading.
25698 (ENABLE_HSA): Define ENABLE_HSA according to $enable_hsa.
25699 * doc/install.texi (Configuration): Document --with-hsa-runtime,
25700 --with-hsa-runtime-include, --with-hsa-runtime-lib and
25701 --with-hsa-kmt-lib.
25702 * doc/invoke.texi (-Whsa): Document.
25703 (hsa-gen-debug-stores): Likewise.
25704 * lto-wrapper.c (compile_images_for_offload_targets): Do not attempt
25705 to invoke offload compiler for hsa acclerator.
25706 * opts.c (common_handle_option): Determine whether HSA offloading
25707 should be performed.
25708 * params.def (PARAM_HSA_GEN_DEBUG_STORES): New parameter.
25709 * builtin-types.def (BT_FN_VOID_UINT_PTR_INT_PTR): New.
25710 (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_INT_INT): Removed.
25711 (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_UINT_PTR_PTR): New.
25712 * gimple-low.c (lower_stmt): Also handle GIMPLE_OMP_GRID_BODY.
25713 * gimple-pretty-print.c (dump_gimple_omp_for): Also handle
25714 GF_OMP_FOR_KIND_GRID_LOOP.
25715 (dump_gimple_omp_block): Also handle GIMPLE_OMP_GRID_BODY.
25716 (pp_gimple_stmt_1): Likewise.
25717 * gimple-walk.c (walk_gimple_stmt): Likewise.
25718 * gimple.c (gimple_build_omp_grid_body): New function.
25719 (gimple_copy): Also handle GIMPLE_OMP_GRID_BODY.
25720 * gimple.def (GIMPLE_OMP_GRID_BODY): New.
25721 * gimple.h (enum gf_mask): Added GF_OMP_PARALLEL_GRID_PHONY,
25722 GF_OMP_FOR_KIND_GRID_LOOP, GF_OMP_FOR_GRID_PHONY and
25723 GF_OMP_TEAMS_GRID_PHONY.
25724 (gimple_statement_omp_single_layout): Updated comments.
25725 (gimple_build_omp_grid_body): New function.
25726 (gimple_has_substatements): Also handle GIMPLE_OMP_GRID_BODY.
25727 (gimple_omp_for_grid_phony): New function.
25728 (gimple_omp_for_set_grid_phony): Likewise.
25729 (gimple_omp_parallel_grid_phony): Likewise.
25730 (gimple_omp_parallel_set_grid_phony): Likewise.
25731 (gimple_omp_teams_grid_phony): Likewise.
25732 (gimple_omp_teams_set_grid_phony): Likewise.
25733 (gimple_return_set_retbnd): Also handle GIMPLE_OMP_GRID_BODY.
25734 * omp-builtins.def (BUILT_IN_GOMP_OFFLOAD_REGISTER): New.
25735 (BUILT_IN_GOMP_OFFLOAD_UNREGISTER): Likewise.
25736 (BUILT_IN_GOMP_TARGET): Updated type.
25737 * omp-low.c: Include symbol-summary.h, hsa.h and params.h.
25738 (adjust_for_condition): New function.
25739 (get_omp_for_step_from_incr): Likewise.
25740 (extract_omp_for_data): Moved parts to adjust_for_condition and
25741 get_omp_for_step_from_incr.
25742 (build_outer_var_ref): Handle GIMPLE_OMP_GRID_BODY.
25743 (fixup_child_record_type): Bail out if receiver_decl is NULL.
25744 (scan_sharing_clauses): Handle OMP_CLAUSE__GRIDDIM_.
25745 (scan_omp_parallel): Do not create child functions for phony
25747 (check_omp_nesting_restrictions): Handle GIMPLE_OMP_GRID_BODY.
25748 (scan_omp_1_op): Checking assert we are not remapping to
25749 ERROR_MARK. Also also handle GIMPLE_OMP_GRID_BODY.
25750 (parallel_needs_hsa_kernel_p): New function.
25751 (expand_parallel_call): Register apprpriate parallel child
25752 functions as HSA kernels.
25753 (grid_launch_attributes_trees): New type.
25754 (grid_attr_trees): New variable.
25755 (grid_create_kernel_launch_attr_types): New function.
25756 (grid_insert_store_range_dim): Likewise.
25757 (grid_get_kernel_launch_attributes): Likewise.
25758 (get_target_argument_identifier_1): Likewise.
25759 (get_target_argument_identifier): Likewise.
25760 (get_target_argument_value): Likewise.
25761 (push_target_argument_according_to_value): Likewise.
25762 (get_target_arguments): Likewise.
25763 (expand_omp_target): Call get_target_arguments instead of looking
25764 up for teams and thread limit.
25765 (grid_expand_omp_for_loop): New function.
25766 (grid_arg_decl_map): New type.
25767 (grid_remap_kernel_arg_accesses): New function.
25768 (grid_expand_target_kernel_body): New function.
25769 (expand_omp): Call it.
25770 (lower_omp_for): Do not emit phony constructs.
25771 (lower_omp_taskreg): Do not emit phony constructs but create for them
25772 a temporary variable receiver_decl.
25773 (lower_omp_taskreg): Do not emit phony constructs.
25774 (lower_omp_teams): Likewise.
25775 (lower_omp_grid_body): New function.
25776 (lower_omp_1): Call it.
25777 (grid_reg_assignment_to_local_var_p): New function.
25778 (grid_seq_only_contains_local_assignments): Likewise.
25779 (grid_find_single_omp_among_assignments_1): Likewise.
25780 (grid_find_single_omp_among_assignments): Likewise.
25781 (grid_find_ungridifiable_statement): Likewise.
25782 (grid_target_follows_gridifiable_pattern): Likewise.
25783 (grid_remap_prebody_decls): Likewise.
25784 (grid_copy_leading_local_assignments): Likewise.
25785 (grid_process_kernel_body_copy): Likewise.
25786 (grid_attempt_target_gridification): Likewise.
25787 (grid_gridify_all_targets_stmt): Likewise.
25788 (grid_gridify_all_targets): Likewise.
25789 (execute_lower_omp): Call grid_gridify_all_targets.
25790 (make_gimple_omp_edges): Handle GIMPLE_OMP_GRID_BODY.
25791 * tree-core.h (omp_clause_code): Added OMP_CLAUSE__GRIDDIM_.
25792 (tree_omp_clause): Added union field dimension.
25793 * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE__GRIDDIM_.
25794 * tree.c (omp_clause_num_ops): Added number of arguments of
25795 OMP_CLAUSE__GRIDDIM_.
25796 (omp_clause_code_name): Added name of OMP_CLAUSE__GRIDDIM_.
25797 (walk_tree_1): Handle OMP_CLAUSE__GRIDDIM_.
25798 * tree.h (OMP_CLAUSE_GRIDDIM_DIMENSION): New.
25799 (OMP_CLAUSE_SET_GRIDDIM_DIMENSION): Likewise.
25800 (OMP_CLAUSE_GRIDDIM_SIZE): Likewise.
25801 (OMP_CLAUSE_GRIDDIM_GROUP): Likewise.
25802 * passes.def: Schedule pass_ipa_hsa and pass_gen_hsail.
25803 * tree-pass.h (make_pass_gen_hsail): Declare.
25804 (make_pass_ipa_hsa): Likewise.
25805 * ipa-hsa.c: New file.
25806 * lto-section-in.c (lto_section_name): Add hsa section name.
25807 * lto-streamer.h (lto_section_type): Add hsa section.
25808 * timevar.def (TV_IPA_HSA): New.
25809 * hsa-brig-format.h: New file.
25810 * hsa-brig.c: New file.
25811 * hsa-dump.c: Likewise.
25812 * hsa-gen.c: Likewise.
25815 * toplev.c (compile_file): Call hsa_output_brig.
25816 * hsa-regalloc.c: New file.
25818 2016-01-18 Jeff Law <law@redhat.com>
25820 PR tree-optimization/69320
25821 * tree-ssa-dom.c (record_edge_info): For comparisons against a boolean
25822 ranged object, do nothing if the RHS constant is not [0..1].
25823 (optimize_stmt): Comparing a boolean ranged object against a
25824 constant outside [0..1] results in a compile-time constant.
25826 * tree-ssanames.c (ssa_name_has_boolean_range): Remove unnecessary
25829 2016-01-18 Sandra Loosemore <sandra@codesourcery.com>
25831 * doc/invoke.texi (Invoking GCC): Add new section to menu.
25832 (Option Summary): Update to reflect new section and moved options.
25833 (C++ Dialect Options): Move -fstats to new section.
25834 (Debugging Options): Move all dump, statistics, and other GCC
25835 developer options to new section. Rewrite section introduction
25836 and re-order remaining options to put the more basic ones first.
25837 (Optimization Options): Move -fira-verbose and -flto-report* to
25839 (Developer Options): New section incorporating moved options.
25840 * doc/cppopts.texi (-dM): Update cross-reference.
25842 2016-01-18 Richard Henderson <rth@redhat.com>
25845 * config/aarch64/aarch64.md (add<GPI>3): Move long immediate
25846 operands to pseudo only if CSE is expected. Split long immediate
25847 operands only after reload, and for the stack pointer.
25848 (*add<GPI>3_pluslong): Remove.
25849 (*addsi3_aarch64, *adddi3_aarch64): Merge into...
25850 (*add<GPI>3_aarch64): ... here. Add r/rk/Upl alternative.
25851 (*addsi3_aarch64_uxtw): Add r/rk/Upl alternative.
25852 (*add<GPI>3 peepholes): New.
25853 (*add<GPI>3 splitters): New.
25854 * config/aarch64/constraints.md (Upl): New.
25855 * config/aarch64/predicates.md (aarch64_pluslong_strict_immedate): New.
25857 2016-01-18 Richard Biener <rguenther@suse.de>
25859 PR tree-optimization/69297
25860 * tree-vect-slp.c (vect_bb_slp_scalar_cost): Count each scalar
25862 (vect_bb_vectorization_profitable_p): Clear visited flag again.
25864 2016-01-18 Yuri Rumyantsev <ysrumyan@gmail.com>
25866 PR middle-end/68542
25867 * fold-const.c (fold_binary_op_with_conditional_arg): Bail out for case
25868 of mixind vector and scalar types.
25869 (fold_relational_const): Add handling of vector
25870 comparison with boolean result.
25871 * tree-cfg.c (verify_gimple_comparison): Add argument CODE, allow
25872 comparison of vector operands with boolean result for EQ/NE only.
25873 (verify_gimple_assign_binary): Adjust call for verify_gimple_comparison.
25874 (verify_gimple_cond): Likewise.
25875 * tree-vrp.c (extract_code_and_val_from_cond_with_ops): Modify check on
25878 2016-01-18 Joseph Myers <joseph@codesourcery.com>
25880 * config/mips/mips.h (ISA_HAS_PAIRED_SINGLE): Require
25883 2016-01-18 Richard Biener <rguenther@suse.de>
25885 PR middle-end/69308
25886 * gimple.c (gimple_could_trap_p_1): Handle GIMPLE_COND.
25888 2016-01-18 Tom de Vries <tom@codesourcery.com>
25890 * passes.def: Add pass_parallelize_loops to pass_oacc_kernels.
25892 2016-01-18 Tom de Vries <tom@codesourcery.com>
25894 * omp-low.c (set_oacc_fn_attrib): Make extern.
25895 * omp-low.h (set_oacc_fn_attrib): Declare.
25896 * tree-parloops.c (struct reduction_info): Add reduc_addr field.
25897 (create_call_for_reduction_1): Handle case that reduc_addr is non-NULL.
25898 (create_parallel_loop, gen_parallel_loop, try_create_reduction_list):
25899 Add and handle function parameter oacc_kernels_p.
25900 (find_reduc_addr, get_omp_data_i_param): New function.
25901 (ref_conflicts_with_region, oacc_entry_exit_ok_1)
25902 (oacc_entry_exit_single_gang, oacc_entry_exit_ok): New function.
25903 (parallelize_loops): Add and handle function parameter oacc_kernels_p.
25904 Calculate dominance info. Skip loops that are not in a kernels region
25905 in oacc_kernels_p mode. Skip inner loops of parallelized loops.
25906 (pass_parallelize_loops::execute): Call parallelize_loops with
25907 oacc_kernels_p argument.
25908 (pass_parallelize_loops::clone, pass_parallelize_loops::set_pass_param):
25909 New member function.
25910 (pass_parallelize_loops::bool oacc_kernels_p): New member var.
25911 * passes.def: Add argument to pass_parallelize_loops instantation.
25913 2016-01-18 Tom de Vries <tom@codesourcery.com>
25915 * tree-parloops.c (pass_parallelize_loops::execute): Allow
25916 pass_parallelize_loops to be run outside the loop pipeline.
25918 2016-01-18 Alan Lawrence <alan.lawrence@arm.com>
25920 * tree-scalar-evolution.c (follow_copies_to_constant): New.
25921 (analyze_initial_condition, analyze_scalar_evolution_1): Call previous.
25923 2016-01-18 Alan Lawrence <alan.lawrence@arm.com>
25926 * tree-ssa-scopedtables.c (avail_expr_hash): Hash MEM_REF and ARRAY_REF
25927 using get_ref_base_and_extent.
25928 (equal_mem_array_ref_p): New.
25929 (hashable_expr_equal_p): Add call to previous.
25931 2016-01-18 Alan Lawrence <alan.lawrence@arm.com>
25934 * tree-sra.c (disqualified_constants, constant_decl_p): New.
25935 (sra_initialize): Allocate disqualified_constants.
25936 (sra_deinitialize): Free disqualified_constants.
25937 (disqualify_candidate): Update disqualified_constants when appropriate.
25938 (create_access): Scan for constant-pool entries as we go along.
25939 (scalarizable_type_p): Add check against type_contains_placeholder_p.
25940 (maybe_add_sra_candidate): Allow constant-pool entries.
25941 (load_assign_lhs_subreplacements): Bind debug for constant pool vars.
25942 (initialize_constant_pool_replacements): New.
25943 (sra_modify_assign): Avoid mangling assignments created by previous,
25944 and don't generate writes into constant pool.
25945 (sra_modify_function_body): Call initialize_constant_pool_replacements.
25947 2016-01-18 Ilya Enkovich <enkovich.gnu@gmail.com>
25949 * config/i386/i386.c (scalar_to_vector_candidate_p): Support
25950 andnot instruction.
25951 (scalar_chain::convert_op): Likewise.
25952 * config/i386/i386.md (*andndi3_doubleword): New.
25954 2016-01-18 Richard Biener <rguenther@suse.de>
25956 PR tree-optimization/69170
25957 * tree-vect-slp.c (vect_build_slp_tree): Verify we are not
25958 building a vector from scalar results of a pattern stmt.
25960 2016-01-18 Jakub Jelinek <jakub@redhat.com>
25962 * haifa-sched.c (autopref_multipass_init): Work around
25963 -Wmaybe-uninitialized warning.
25965 2016-01-18 Thomas Preud'homme <thomas.preudhomme@arm.com>
25967 * config/arm/arm.c (thumb1_reorg): Check that the comparison is
25968 against the constant 0.
25970 2016-01-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25972 PR tree-optimization/68799
25973 * gimple-ssa-strength-reduction.c (create_phi_basis): Directly
25974 look up phi candidates in the statement-candidate map.
25975 (phi_add_costs): Likewise.
25976 (record_phi_increments): Likewise.
25977 (phi_incr_cost): Likewise.
25978 (ncd_with_phi): Likewise.
25979 (all_phi_incrs_profitable): Likewise.
25981 2016-01-17 Jakub Jelinek <jakub@redhat.com>
25983 * omp-low.c (mark_loops_in_oacc_kernels_region): Work around
25984 -Wmaybe-uninitialized warning.
25986 2016-01-16 Sandra Loosemore <sandra@codesourcery.com>
25988 * doc/invoke.texi (Invoking GCC): Add new section to menu.
25989 (Option Summary): Update to reflect new section and moved options.
25990 (C++ Dialect Options): Move -fvtable-verify and related options.
25991 (Debugging Options): Move Sanitizer, Pointer Bounds Checker,
25992 and profiling-related options.
25993 (Optimization Options): Move profile generation options and
25994 -fstack-protector and related options.
25995 (Instrumentation Options): New section incorporating moved options.
25996 (Code Generation Options): Move -finstrument-functions and
25997 related options, -fstack-check, -fstack-limit*, and -fbounds-check.
25999 2016-01-16 Tom de Vries <tom@codesourcery.com>
26001 * passes.def: Move pass_expand_omp_ssa out of pass_parallelize_loops.
26003 2016-01-16 Tom de Vries <tom@codesourcery.com>
26005 * omp-low.c (expand_omp_atomic_fetch_op): Release defs of update stmt.
26007 2016-01-16 Richard Sandiford <richard.sandiford@arm.com>
26009 * hash-table.h (hash_table::empty): Turn into an inline wrapper
26010 that checks whether the table is already empty. Rename the
26011 original implementation to...
26012 (hash_table::empty_slot): ...this new private function.
26014 2016-01-15 David Malcolm <dmalcolm@redhat.com>
26016 PR diagnostic/68899
26017 * diagnostic-show-locus.c (layout::print_source_line): Move x
26018 offset of line until after call to
26019 get_line_width_without_trailing_whitespace.
26021 2016-01-15 Jeff Law <law@redhat.com>
26023 PR tree-optimization/69270
26024 * tree-ssanames.c (ssa_name_has_boolean_range): Moved here from
26025 tree-ssa-dom.c. Improve test for [0..1] ranve from VRP.
26026 * tree-ssa-dom.c (ssa_name_has_boolean_range): Remove.
26027 * tree-ssanames.h (ssa_name_has_boolean_range): Prototype.
26028 * tree-ssa-uncprop.c (associate_equivalences_with_edges): Use
26029 ssa_name_has_boolean_range and constant_boolean_node.
26031 2016-01-15 Vladimir Makarov <vmakarov@redhat.com>
26033 PR rtl-optimization/69030
26034 * lra-spills.c (remove_pseudos): Check nrefs and make the function
26036 (spill_pseudos): Delete debug insn for dead pseudo.
26037 (lra_spill): Initiate spill_hard_reg and slots memory separately.
26039 2016-01-15 Jiong Wang <jiong.wang@arm.com>
26041 * config/aarch64/aarch64-builtins.c (aarch64_types_unopus_qualifiers):
26043 (TYPES_UNOPUS): Likewise.
26044 * config/aarch64/aarch64-simd-builtins.def (lbtruncuv2sf): Correct
26045 builtin type, from UNOP to UNOPUS.
26046 (lbtruncuv4sf): Likewise.
26047 (lbtruncuv2df): Likewise.
26048 (lrounduv2sf): Likewise.
26049 (lrounduv4sf): Likewise.
26050 (lrounduv2df): Likewise.
26051 (lroundusf): Likewise.
26052 (lroundusf): Likewise.
26053 (lceiluv2sf): Likewise.
26054 (lceiluv4sf): Likewise.
26055 (lceiluv2df): Likewise.
26056 (lceilusf): Likewise.
26057 (lceiludf): Likewise.
26058 (lflooruv2sf): Likewise.
26059 (lflooruv4sf): Likewise.
26060 (lflooruv2df): Likewise.
26061 (lfloorusf): Likewise.
26062 (lfloorudf): Likewise.
26063 (lfrintnuv2sf): Likewise.
26064 (lfrintnuv4sf): Likewise.
26065 (lfrintnuv2df): Likewise.
26066 (lfrintnusf): Likewise.
26067 (lfrintnudf): Likewise.
26068 * config/aarch64/arm_neon.h (vcvt_u32_f32): Remove unncessary type
26070 (vcvtq_u32_f32): Likewise.
26071 (vcvtq_u64_f64): Likewise.
26072 (vcvta_u32_f32): Likewise.
26073 (vcvtaq_u32_f32): Likewise.
26074 (vcvtaq_u64_f64): Likewise.
26075 (vcvtm_u32_f32): Likewise.
26076 (vcvtmq_u32_f32): Likewise.
26077 (vcvtmq_u64_f64): Likewise.
26078 (vcvtn_u32_f32): Likwise.
26079 (vcvtnq_u32_f32): Likewise.
26080 (vcvtnq_u64_f64): Likewise.
26081 (vcvtp_u32_f32): Likewise.
26082 (vcvtpq_u32_f32): Likewise.
26083 (vcvtpq_u64_f64): Likewise.
26084 (vcvtmd_u64_f64): Likewise.
26085 (vcvtms_u32_f32): Likewise.
26086 (vcvtad_u64_f64): Likewise.
26087 (vcvtas_u32_f32): Likewise.
26088 (vcvtnd_u64_f64): Likewise.
26089 (vcvtns_u32_f32): Likewise.
26090 (vcvtpd_u64_f64): Likewise.
26091 (vcvtps_u32_f32): Likewise.
26093 2016-01-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26095 * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Handle
26096 CSEL of zero_extended registers.
26098 2016-01-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26100 * config/aarch64/aarch64.c (aarch64_rtx_costs, COMPARE case):
26101 Handle COMPARE of ZERO_EXTRACT against zero form of TST-immediate.
26103 2016-01-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26105 * config/aarch64/aarch64.c (aarch64_process_one_target_attr): Return
26106 false when argument string is not found in the attributes table
26109 2016-01-15 David Edelsohn <dje.gcc@gmail.com>
26112 * config/rs6000/rs6000.c (rs6000_emit_msub): Delete.
26113 (rs6000_emit_swsqrt): Convert to Goldschmidt's Algorithm
26114 * config/rs6000/rs6000.md (sqrt<mode>2): Limit swsqrt to high
26115 precision estimate.
26117 2016-01-15 Richard Biener <rguenther@suse.de>
26119 PR tree-optimization/66856
26120 * tree-vect-loop.c (vect_transform_loop): Free SLP instances here.
26121 * tree-vect-slp.c (vect_free_slp_tree): Decrement stmt reference count.
26122 (vect_create_new_slp_node): Increment stmt reference count.
26123 (vect_get_and_check_slp_defs): Make sure stmts are nor already in
26124 an SLP tree before swapping operands.
26125 (vect_build_slp_tree): Likewise.
26126 (destroy_bb_vec_info): Free stmt info after SLP instances.
26127 * tree-vect-stmts.c (new_stmt_vec_info): Initialize reference count.
26128 * tree-vectorizer.h (struct _stmt_vec_info): Add num_slp_uses field.
26129 (STMT_VINFO_NUM_SLP_USES): New macro.
26131 2016-01-15 Richard Biener <rguenther@suse.de>
26134 * dwarf2out.c (add_linkage_name_raw): New function split out from ...
26135 (add_linkage_name): ... here.
26136 (gen_typedef_die): Use add_linkage_name_raw instead of
26137 add_linkage_attr to delay DECL_ASSEMBLER_NAME computation
26140 2016-01-15 Cesar Philippidis <cesar@codesourcery.com>
26142 * gimplify.c (oacc_default_clause): Decode reference and pointer
26143 types for both kernels and parallel regions.
26145 2016-01-15 Richard Sandiford <richard.sandiford@arm.com>
26147 PR middle-end/69246
26148 * calls.c (emit_call_1): Force n_popped to zero for sibcalls.
26150 2016-01-15 Ilya Enkovich <enkovich.gnu@gmail.com>
26152 * config/i386/i386.c (scalar_chain::compute_convert_gain): Fix typo.
26153 (convert_scalars_to_vector): Likewise.
26155 2016-01-15 Jonathan Wakely <jwakely@redhat.com>
26157 * doc/extend.texi (Type Traits): Fix grammar.
26159 2016-01-15 Martin Jambor <mjambor@suse.cz>
26161 * tree-inline.c (remap_decl): Use existing dclarations if
26162 remapping a type and prevent_decl_creation_for_types.
26163 (replace_locals_stmt): Do an initial remapping of non-VLA typed
26164 decls first. Do real remapping with
26165 prevent_decl_creation_for_types set.
26166 * tree-inline.h (copy_body_data): New field
26167 prevent_decl_creation_for_types, moved remap_var_for_cilk to avoid
26170 2016-01-15 Dominik Vogt <vogt@linux.vnet.ibm.com>
26172 * config/s390/s390.opt (mmvcle): More verbose help text.
26174 2016-01-15 Dominik Vogt <vogt@linux.vnet.ibm.com>
26176 * config/s390/s390.opt: Add period to -mzvector option text.
26178 2016-01-15 Richard Biener <rguenther@suse.de>
26180 PR tree-optimization/68961
26181 * tree-vect-slp.c (vect_analyze_slp_cost_1): Consider cost
26182 of invariants in stores again.
26184 2016-01-15 Sebastian Huber <sebastian.huber@embedded-brains.de>
26186 * config/arm/t-rtems: Add cortex-m7/fpv5-d16 multilib.
26188 2016-01-15 Ilya Enkovich <enkovich.gnu@gmail.com>
26190 * config/i386/i386.c (ix86_expand_branch): Don't split
26191 DI mode xor instruction to SI mode.
26193 2016-01-15 Jan Hubicka <hubicka@ucw.cz>
26196 * ipa-icf.c (sem_function::merge): Virtual functions may become
26197 reachable even if they address is not taken and there are no
26200 2016-01-15 Jan Hubicka <hubicka@ucw.cz>
26202 * lto-streamer-out.c (subtract_estimated_size): New function.
26203 (get_symbol_initial_value): Use it.
26205 2016-01-15 Christian Bruel <christian.bruel@st.com>
26208 * config/arm/arm-builtins.c (ARM_BUILTIN_CRYPTO_BASE): New enum tag.
26209 (arm_init_neon_builtins_internal): Rename arm_init_neon_builtins,
26210 (arm_init_crypto_builtins_internal): Rename arm_init_crypto_builtins.
26211 use add_builtin_function_ext_scope instead of add_builtin_function.
26212 (neon_set_p, neon_crypto_set_p): Remove.
26213 (arm_init_builtins): Always call arm_init_neon_builtins and
26214 arm_init_crypto_builtins.
26215 (arm_expand_builtin): Check that builtins are allowed for the arch.
26216 * config/arm/arm-protos.h (arm_init_neon_builtins): Remove prototype.
26217 * config/arm/arm.c (arm_valid_target_attribute_tree): Remove
26218 arm_init_neon_builtins call.
26220 2016-01-15 Richard Biener <rguenther@suse.de>
26222 PR tree-optimization/69117
26223 * tree-ssa-sccvn.h (struct vn_ssa_aux): Add info member.
26224 * tree-ssa-sccvn.c (set_ssa_val_to): Save and adjust SSA name info
26225 of the leader conservatively.
26226 (free_scc_vn): Restore original SSA name infos.
26228 2016-01-14 Jeff Law <law@redhat.com>
26230 PR tree-optimization/69270
26231 * tree-ssa-dom.c (ssa_name_has_boolean_range): If the type has a
26232 single bit of precision, verify it's also unsigned.
26233 (record_edge_info): Use constant_boolean_node rather than fold_convert
26234 to convert boolean_true/boolean_false to the right type.
26236 2016-01-14 Richard Henderson <rth@redhat.com>
26239 * loop-doloop.c (record_reg_sets): New.
26240 (doloop_optimize): Reject the transform if the sequence
26241 clobbers registers live at the end of the loop block.
26242 (doloop_optimize_loops): Enable df_live if needed.
26244 2016-01-14 Michael Meissner <meissner@linux.vnet.ibm.com>
26246 * config/rs6000/rs6000-builtin.def: Revert 2016-01-13 change.
26247 * config/rs6000/rs6000.c: Likewise.
26248 * config/rs6000/rs6000.h: Likewise.
26249 * config/rs6000/rs6000.md: Likewise.
26250 * doc/extend.texi: Likewsie.
26252 2016-01-14 Jeff Law <law@redhat.com>
26254 * tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment
26257 2016-01-14 Richard Henderson <rth@redhat.com>
26261 * trans-mem.c (tm_log_emit_stmt): Fix unit size to bit size.
26262 * tree.c (build_tm_vector_builtins): Use builtin_decl_explicit_p
26263 instead of builtin_decl_declared_p to test for declaration.
26265 2016-01-14 Nicklas Bo Jensen <nbjensen@gmail.com>
26267 * doc/loop.texi (Loop Analysis and Representation): Document
26268 loop_depth function.
26270 2016-01-14 Tom de Vries <tom@codesourcery.com>
26272 PR tree-optimization/68773
26273 * omp-low.c (expand_omp_target): Don't set force_output.
26274 * varpool.c (varpool_node::get_create): Same.
26275 * lto-cgraph.c (input_offload_tables): Mark entries in offload_vars and
26276 offload_funcs with force_output.
26278 2016-01-14 Jakub Jelinek <jakub@redhat.com>
26281 * lra-eliminations.c (move_plus_up): Don't change anything if either
26282 the outer or inner subreg mode is not MODE_INT.
26283 * dwarf2out.c (mem_loc_descriptor): For SUBREG, if outer mode is
26284 integral <= DWARF2_ADDR_SIZE, convert to untyped afterwards.
26286 2016-01-14 Alan Lawrence <alan.lawrence@arm.com>
26288 * doc/md.texi (reduc_smin_@var{m}, reduc_smax_@var{m},
26289 reduc_umin_@var{m}, reduc_umax_@var{m}, reduc_splus_@var{m},
26290 reduc_uplus_@var{m}): Remove.
26291 * expr.c (expand_expr_real_2): Remove expansion path for
26292 reduc_[us](min|max|plus) optabs.
26293 * optabs-tree.c (scalar_reduc_to_vector): Remove.
26294 * optabs-tree.h (scalar_reduc_to_vector): Remove.
26295 * optabs.def (reduc_smax_optab, reduc_smin_optab, reduc_splus_optab,
26296 reduc_umax_optab, reduc_umin_optab, reduc_uplus_optab): Remove.
26297 * tree-vect-loop.c (vectorizable_reduction): Remove test for
26298 reduc_[us](min|max|plus) optabs.
26300 2016-01-14 Alan Lawrence <alan.lawrence@arm.com>
26302 * config/mips/mips-ps-3d.md (reduc_splus_v2sf): Remove.
26303 (reduc_plus_scal_v2sf): New.
26304 (reduc_smax_v2sf): Rename to...
26305 (reduc_smax_scal_v2sf): ...here, make result SFmode, add vec_extract.
26306 (reduc_smin_v2sf): Rename to...
26307 (reduc_smin_scal_v2sf): ...here, make result SFmode, add vec_extract.
26309 2016-01-14 Jan Hubicka <hubicka@ucw.cz>
26311 * alias.c (compare_base_symbol_refs): New function.
26312 (rtx_equal_for_memref_p, base_alias_check, memrefs_conflict_p): Use
26315 2016-01-14 Jakub Jelinek <jakub@redhat.com>
26317 PR middle-end/68146
26318 PR tree-optimization/69155
26319 * tree-complex.c: Include cfganal.h.
26320 (phis_to_revisit): New variable.
26321 (extract_component): Add phiarg_p argument. Assert that returned
26322 SSA_NAME has non-NULL SSA_NAME_DEF_STMT unless phiarg_p is true.
26323 (update_phi_components): Partly rewrite to use loop over real/imag
26324 components instead of code duplication. If extract_component returns
26325 SSA_NAME with NULL SSA_NAME_DEF_STMT, store SSA_NAME_VAR or
26326 create_tmp_reg into the PHI node instead, and mention the phi triplet
26327 in phis_to_revisit.
26328 (tree_lower_complex): Walk bbs in rpo order. Adjust phis recorded
26329 in phis_to_revisit at the end.
26331 2016-01-14 Richard Biener <rguenther@suse.de>
26333 PR tree-optimization/68060
26334 * tree-vect-loop.c (vect_is_simple_reduction): Check the
26335 outer loop reduction is only used in the inner loop before
26336 detecting a double reduction.
26338 2016-01-14 Jakub Jelinek <jakub@redhat.com>
26341 * combine.c (expand_field_assignment): Punt if compute_mode is
26342 unsupported scalar mode.
26344 2016-01-14 Richard Biener <rguenther@suse.de>
26346 PR tree-optimization/66856
26347 * tree-vect-slp.c (vect_build_slp_tree): Refactor to build
26348 SLP node only if it built successfully.
26349 (vect_analyze_slp_instance): Adjust.
26351 2016-01-14 Jeff Law <law@redhat.com>
26353 PR tree-optimization/69270
26354 * tree-ssa-dom.c (ssa_name_has_boolean_range): New function.
26355 (record_edge_info): Use it. Convert boolean_{true,false}_node
26356 to the type of op0.
26358 2016-01-13 Jan Hubicka <hubicka@ucw.cz>
26361 * ipa-polymorphic-call.c (inlined_polymorphic_ctor_dtor_block_p):
26362 use block_ultimate_origin
26363 (noncall-stmt_may_be_vtbl_ptr_store): Likewise.
26365 2016-01-13 Sandra Loosemore <sandra@codesourcery.com>
26367 * doc/invoke.texi (Submodel Options): Rename section to
26368 "Machine-Dependent Options" to better reflect its content.
26369 Rewrite introductory text to remove archaic CPU names.
26372 2016-01-13 Sandra Loosemore <sandra@codesourcery.com>
26374 * doc/invoke.texi (Code Gen Options): Move section up in file,
26375 before target-specific options. Update menu and option summary
26376 to reflect the new section ordering.
26378 2016-01-13 Jonathan Wakely <jwakely@redhat.com>
26380 * doc/invoke.texi (C Dialect Options): Adjust -std default for C++.
26381 (C++ Dialect Options): Add cross-reference to -std option.
26382 * doc/standards.texi (C++ Language): Document C++14 support.
26384 2016-01-13 Michael Meissner <meissner@linux.vnet.ibm.com>
26386 * config/rs6000/rs6000-builtin.def (BU_FLOAT128_2): Add support
26387 for pack/unpack functions for __ibm128.
26388 (PACK_IF): Likewise.
26389 (UNPACK_IF): Likewise.
26391 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
26392 support for __ibm128 pack/unpack functions.
26393 (rs6000_invalid_builtin): Likewise.
26394 (rs6000_init_builtins): Likewise.
26395 (rs6000_opt_masks): Likewise.
26397 * config/rs6000/rs6000.h (MASK_FLOAT128): Add short name.
26398 (RS6000_BTM_FLOAT128): Add support for __ibm128 pack/unpack
26400 (RS6000_BTM_COMMON): Likewise.
26402 * config/rs6000/rs6000.md (f128_vsx): New mode attribute.
26403 (unpack<mode>): Use FMOVE128_FPR iterator instead of FMOVE128, to
26404 disallow __builtin_{pack,unpack}_longdouble if long double is IEEE
26405 128-bit floating point. Add support for the double values to be
26406 in Altivec registers for TF/IF packing and unpacking, but restrict
26407 TD packing sub-fields to be FPR registers. Don't allow overlapped
26408 register support for packing. Allow pack inputs to be memory
26409 locations. Don't build generator functions for unpack<mode>_dm
26410 and unpack<mode>_nodm.
26411 (unpack<mode>_dm): Likewise.
26412 (unpack<mode>_nodm): Likewise.
26413 (pack<mode>): Likewise.
26415 * config/rs6000/rs6000-builtin.def (__builtin_pack_ibm128): Add
26416 built-in functions to pack/unpack explicit __ibm128 values.
26417 (__builtin_unpack_ibm128): Likewise.
26419 * doc/extend.texi (PowerPC Built-in Functions): Document
26420 __builtin_pack_ibm128 and __builtin_unpack_ibm128.
26422 2016-01-13 Bernd Schmidt <bschmidt@redhat.com>
26425 * c-common.c (check_function_nonnull): Remove unnecessary declaration.
26426 Add new arg loc and pass it down as context.
26427 (check_nonnull_arg): Don't mark ctx arg as unused. Use it as a pointer
26428 to the location to use for the warning.
26429 (check_function_arguments): New arg loc. All callers changed. Pass
26430 it to check_function_nonnull.
26431 * c-common.h (check_function_arguments): Adjust declaration.
26433 2016-01-13 Jakub Jelinek <jakub@redhat.com>
26435 PR tree-optimization/69156
26436 * gimple.c (validate_type): Removed.
26437 (gimple_builtin_call_types_compatible_p): Use
26438 useless_type_conversion_p instead of validate_type.
26439 * value-prof.c (gimple_stringop_fixed_value): Fold
26440 icall_size to correct type.
26442 2016-01-13 Jonathan Wakely <jwakely@redhat.com>
26444 * doc/extend.texi (__atomic Builtins): Clarify compare_exchange
26447 2016-01-13 Richard Henderson <rth@redhat.com>
26450 * target.def (builtin_tm_load, builtin_tm_store): Remove.
26451 * config/i386/i386.c (ix86_builtin_tm_load): Remove.
26452 (ix86_builtin_tm_store): Remove.
26453 (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
26454 (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
26455 * doc/tm.texi.in (TARGET_VECTORIZE_BUILTIN_TM_LOAD): Remove.
26456 (TARGET_VECTORIZE_BUILTIN_TM_STORE): Remove.
26457 * doc/tm.texi: Rebuild.
26459 * gtm-builtins.def (BUILT_IN_TM_MEMCPY_RNWT): New.
26460 (BUILT_IN_TM_MEMCPY_RTWN): New.
26461 * trans-mem.c (tm_log_emit_stmt): Rearrange code for better
26462 fallback from vector to integer helpers.
26463 (build_tm_load): Handle vector types directly, instead of
26465 (build_tm_store): Likewise.
26466 (expand_assign_tm): Prepare for register types not handled by
26467 the above. Copy them to memory and use memcpy.
26468 * tree.c (tm_define_builtin): New.
26469 (find_tm_vector_type): New.
26470 (build_tm_vector_builtins): New.
26471 (build_common_builtin_nodes): Call it.
26473 2016-01-13 Uros Bizjak <ubizjak@gmail.com>
26475 * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Return -1 for
26476 TARGET_SSE_MATH without TARGET_SSE2. Rewrite.
26478 2016-01-13 Tom de Vries <tom@codesourcery.com>
26480 PR tree-optimization/69169
26481 * tree-ssa-structalias.c (create_variable_info_for_1): Add and handle
26482 handled_struct_type param.
26483 (create_variable_info_for, intra_create_variable_infos): Call
26484 create_variable_info_for_1 with extra arg.
26486 2016-01-13 Yvan Roux <yvan.roux@linaro.org>
26488 * config/arm/arm-arches.def: Remove spurious whitespace in "armv8.1-a"
26489 and "armv8.1-a+crc" entries.
26491 2016-01-13 Alexander Fomin <alexander.fomin@intel.com>
26494 * config/i386/sse.md (define_expand "avx512pf_gatherpf<mode>sf"):
26495 Change first operand predicate from register_or_constm1_operand
26496 to register_operand.
26497 (define_expand "avx512pf_gatherpf<mode>df"): Likewise.
26498 (define_expand "avx512pf_scatterpf<mode>sf"): Likewise.
26499 (define_expand "avx512pf_scatterpf<mode>df"): Likewise.
26500 (define_insn "*avx512pf_gatherpf<mode>sf"): Remove.
26501 (define_insn "*avx512pf_gatherpf<mode>df"): Likewise.
26502 (define_insn "*avx512pf_scatterpf<mode>sf"): Likewise.
26503 (define_insn "*avx512pf_scatterpf<mode>df"): Likewise.
26504 * config/i386/i386.c (ix86_expand_builtin): Remove first operand
26505 comparison with constm1_rtx from vec_prefetch_gen part.
26507 2016-01-13 Richard Biener <rguenther@suse.de>
26509 PR tree-optimization/69013
26510 * tree-ssa-uninit.c (prune_uninit_phi_opnds_in_unrealizable_paths):
26511 Exchange assert for a test.
26513 2016-01-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
26516 * config/s390/s390.md (bswaphi splitter): Use simplify_gen_subreg.
26518 2016-01-13 Richard Biener <rguenther@suse.de>
26520 PR tree-optimization/69242
26521 * tree-ssa-sccvn.c (visit_reference_op_load): Replace bogus
26522 assert with a check.
26524 2016-01-13 Richard Biener <rguenther@suse.de>
26526 PR tree-optimization/69186
26527 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
26528 Properly guard vect_update_misalignment_for_peel call.
26530 2016-01-12 Jeff Law <law@redhat.com>
26532 PR tree-optimization/pr67755
26533 * tree-ssa-threadupdate.c (struct ssa_local_info_t): Add new field
26534 "need_profile_correction".
26535 (thread_block_1): Initialize new field to false by default. If we
26536 have multiple thread paths through a common joiner to different
26537 final targets, then set new field to true.
26538 (compute_path_counts): Only do count adjustment when it's really
26541 2016-01-12 Sandra Loosemore <sandra@codesourcery.com>
26543 * doc/invoke.texi (Spec Files): Move section down in file, past
26544 all command-line option descriptions.
26546 2016-01-12 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
26548 PR middle-end/54809
26549 * doc/gty.texi: Remove documentation of mark_hook.
26550 * gengtype.c (struct write_types_data): Remove code to support
26551 mark_hook attribute.
26552 (walk_type): Likewise.
26553 (write_func_for_structure): Likewise.
26555 2016-01-12 Sandra Loosemore <sandra@codesourcery.com>
26557 * doc/invoke.texi (Option Summary) Move -no-canonical-prefixes to
26558 Directory Options, and -specs= to Overall Options.
26559 (Overall Options): Adjust similarly. Reorder to group related
26560 options together. Make -specs= cross-reference the spec file details.
26561 (Directory Options): Adjust similarly.
26563 2016-01-12 Jeff Law <law@redhat.com>
26565 * tree-ssa-threadupdate.c: Various whitespace and typo fixes.
26567 2016-01-12 Olivier Hainque <hainque@adacore.com>
26569 * gcc.c (spec_undefvar_allowed): New global.
26570 (process_command): Set to true when running for --version or --help,
26572 (getenv_spec_function): When the variable is not defined, use the
26573 variable name as the variable value if we're allowed not to issue
26576 2016-01-12 Bin Cheng <bin.cheng@arm.com>
26578 PR tree-optimization/68911
26579 * tree-vrp.c (adjust_range_with_scev): Check overflow in range
26580 information computed for expression "init + nit * step".
26582 2016-01-12 Sandra Loosemore <sandra@codesourcery.com>
26584 * doc/invoke.texi (Invoking GCC): Copy-edit. Incorporate information
26585 about name of GCC executable. Remove deleted node from menu.
26586 (Directory Options) <-B>: Remove cross-reference to deleted node.
26587 (Target Options): Delete section.
26589 2016-01-12 Christian Bruel <christian.bruel@st.com>
26592 * config/arm/arm-c.c (arm_pragma_target_parse): Set NODE_CONDITIONAL
26593 for __ARM_NEON_FP, __ARM_FP, _ARM_FEATURE_LDREX.
26595 2016-01-12 Jakub Jelinek <jakub@redhat.com>
26598 * config/i386/i386.c (ix86_expand_special_args_builtin): Ensure
26599 aligned_mem is properly set for AVX512-VL floating point masked
26603 * ifcvt.c (cond_exec_process_if_block): When removing the last
26604 insn from then_bb, remove also any possible barriers that follow it.
26606 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
26610 * config/i386/iamcu.h (SIZE_TYPE): New macro.
26611 (PTRDIFF_TYPE): Likewise.
26612 (WCHAR_TYPE): Likewise.
26613 (WCHAR_TYPE_SIZE): Likewise.
26614 (STDINT_LONG32): Likewise.
26616 2016-01-12 Richard Biener <rguenther@suse.de>
26618 PR tree-optimization/69053
26619 * tree-vect-loop.c (get_initial_def_for_reduction): Properly
26620 convert initial value for cond reductions.
26622 2016-01-12 Richard Biener <rguenther@suse.de>
26624 PR tree-optimization/69007
26625 * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Move
26626 widen_sum after dot_prod and sad.
26628 2016-01-12 Richard Biener <rguenther@suse.de>
26630 PR tree-optimization/69168
26631 * tree-vect-loop.c (vect_analyze_loop_2): Reset both main and
26632 pattern stmt SLP type.
26633 * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Patterns may
26634 end up unused so cope with that case.
26636 2016-01-12 Richard Biener <rguenther@suse.de>
26638 PR tree-optimization/69157
26639 * tree-vect-stmts.c (vectorizable_mask_load_store): Check
26640 stmts def type only during analyze phase.
26641 (vectorizable_call): Likewise.
26642 (vectorizable_simd_clone_call): Likewise.
26643 (vectorizable_conversion): Likewise.
26644 (vectorizable_assignment): Likewise.
26645 (vectorizable_shift): Likewise.
26646 (vectorizable_operation): Likewise.
26647 (vectorizable_store): Likewise.
26648 (vectorizable_load): Likewise.
26650 2016-01-12 Richard Biener <rguenther@suse.de>
26652 PR tree-optimization/69174
26653 * tree-vect-stmts.c (vect_mark_relevant): Remove excessive vertical
26655 (vectorizable_load): Properly compute the number of loads needed
26656 for permuted strided SLP loads and do not spuriously assign
26657 to SLP_TREE_VEC_STMTS.
26659 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
26661 * config/i386/djgpp.h (PREFERRED_DEBUGGING_TYPE): Define to DWARF2
26662 (TARGET_ASM_OUTPUT_IDENT): Define to default_asm_output_ident_directive
26663 (MD_EXEC_PREFIX): Remove.
26664 (MD_STARTFILE_PREFIX) Removee.
26665 (FILE_NAME_ABSOLUTE_P): Remove.
26666 (CPP_SPEC): Do not read macros from sys/version.h.
26667 (LINK_COMMAND_SPEC): Remove.
26668 (LOCAL_INCLUDE_DIR): Remove.
26669 (TARGET_ASM_NAMED_SECTION): Define to i386_djgpp_asm_named_section
26670 (TARGET_OS_CPP_BUILTINS): Add DJGPP (non ISO only), __DJGPP, __DJGPP__, unix.
26671 (POST_LINK_SPEC): Define to invoke stubify after linker
26672 (LIBSTDCXX): Remove define
26673 (DBX_REGISTER_NUMBER): Define to svr4_dbx_register_map.
26674 (DEFAULT_PCC_STRUCT_RETURN): Define to 1.
26675 (SUBTARGET_OVERRIDE_OPTIONS): Remove warning about -mbnu2210.
26676 (SUBTARGET_OVERRIDE_OPTIONS): Ignore -fPIC and generate message.
26677 (SUBTARGET_OVERRIDE_OPTIONS): Default to DWARF2 debugging info.
26678 (IX86_MAYBE_NO_LIBGCC_TFMODE): Remove.
26679 (i386_djgpp_asm_named_section): Add propotype of new procedure
26681 * config/i386/xm-djgpp.h (NATIVE_SYSTEM_HEADER_DIR): Define.
26682 (MD_EXEC_PREFIX): Define (moved from config/i386/djgpp.h).
26683 (STANDARD_STARTFILE_PREFIX_1): Define (moved from MD_STARTFILE_PREFIX
26684 in config/i386/djgpp.h).
26685 (STANDARD_STARTFILE_PREFIX_2): Define identical to
26686 STANDARD_STARTFILE_PREFIX_1.
26687 (LOCAL_INCLUDE_DIR): Define (moved from config/i386/djgpp.h).
26688 (GCC_DRIVER_HOST_INITIALIZATION): Fix reporting fatal
26689 installation errors.
26690 (MAX_OFILE_ALIGNMENT): Define to 128.
26691 (HAVE_FTW_H): Undefine as DJGPP do not have nftw, but have ftw.h.
26693 * config/i386/djgpp.c: New file. Add implementation of
26694 i386_djgpp_asm_named_section.
26696 * config/i386/djgpp.opt: Remove obsolete option -mbnu210.
26698 * config/i386/t-djgpp: New file. Add djgpp.o to EXTRA_OBJS.
26699 Add rule for building djgpp.o.
26701 2016-01-11 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
26703 * config/rs6000/rs6000.c (v2df_reduction_p): New function.
26704 (rtx_is_swappable_p): Reductions are swappable.
26705 (insn_is_swappable_p): V2DF reductions are swappable.
26707 2016-01-11 John David Anglin <danglin@gcc.gnu.org>
26709 * config/pa/pa.c (pa_emit_move_sequence): Handle floating point
26710 reloads for other unsupported memory operands.
26712 2016-01-12 Kugan Vivekanandarajah <kuganv@linaro.org>
26713 Jim Wilson <jim.wilson@linaro.org>
26716 * config/arm/arm-builtins.c (arm_expand_neon_args): Call
26717 copy_to_mode_reg instead of force_reg.
26719 2016-01-11 H.J. Lu <hongjiu.lu@intel.com>
26722 * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Set to 2 only if
26723 TARGET_80387 is true.
26725 2016-01-11 Jakub Jelinek <jakub@redhat.com>
26728 * lra-eliminations.c (move_plus_up): Only move plus up
26729 if subreg of the constant can be simplified into constant
26730 and use the simplified subreg of the constant instead of
26731 the original constant.
26733 * fold-const.c (fold_convertible_p): Don't return true
26734 for conversion of VECTOR_TYPE to same sized integral type.
26735 (fold_convert_loc): Fix up formatting. Fold conversion of
26736 VECTOR_TYPE to same sized integral type using VIEW_CONVERT_EXPR
26737 instead of NOP_EXPR.
26739 PR tree-optimization/69214
26740 * tree-vrp.c (simplify_cond_using_ranges): Don't propagate
26741 innerop into a comparison if SSA_NAME_OCCURS_IN_ABNORMAL_PHI.
26744 PR tree-optimization/69207
26745 * tree-vect-slp.c (vect_get_constant_vectors): For
26746 VECTOR_BOOLEAN_TYPE_P, assert op has integral type instead of
26747 fold_convertible_p to vector_type's element type, and always
26748 use VCE for non-VECTOR_BOOLEAN_TYPE_P.
26750 2016-01-11 Richard Biener <rguenther@suse.de>
26752 PR tree-optimization/69173
26753 * tree-vect-loop.c (vect_fixup_scalar_cycles_with_patterns): Only
26754 fixup the cycle if all stmts are in a pattern.
26756 2016-01-11 Uros Bizjak <ubizjak@gmail.com>
26758 PR middle-end/68999
26759 * alias.c (base_alias_check): Move check for addresses with
26760 alignment ANDs before the call for compare_base_decls.
26761 (memrefs_conflict_p): Return -1 for different decls
26762 that went through alignment adjustments.
26764 2016-01-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26766 PR rtl-optimization/68796
26767 * config/aarch64/aarch64.md (*and<mode>_compare0): New pattern.
26768 * config/aarch64/aarch64.c (aarch64_select_cc_mode): Handle HImode
26769 and QImode comparisons against zero with CC_NZmode.
26770 * config/aarch64/iterators.md (short_mask): New mode_attr.
26772 2016-01-11 H.J. Lu <hongjiu.lu@intel.com>
26774 * config/i386/sse.md (<avx512>_load<mode>_mask): Remove snprintf.
26775 (<avx512>_store<mode>_mask): Likewise.
26777 2016-01-11 Bernd Schmidt <bschmidt@redhat.com>
26778 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26780 PR rtl-optimization/68841
26781 * ifcvt.c (struct noce_if_info): Add orig_x field.
26782 (bbs_ok_for_cmove_arith): Add to_rename parameter.
26783 Don't record conflicts on to_rename if it's present.
26784 Allow memory destinations in sets.
26785 (noce_try_cmove_arith): Call bbs_ok_for_cmove_arith even on simple
26786 blocks, passing orig_x to the checks.
26787 (noce_process_if_block): Set if_info->orig_x appropriately.
26789 2016-01-11 Tom de Vries <tom@codesourcery.com>
26791 PR tree-optimization/69069
26792 * tree-parloops.c (create_parallel_loop): Add missing phi args.
26794 2016-01-11 Yuri Rumyantsev <ysrumyan@gmail.com>
26796 PR rtl-optimization/68920
26797 * config/i386/i386.c (ix86_option_override_internal): Restrict number
26798 of conditional moves for RTL if-conversion to 1 for
26799 TARGET_ONE_IF_CONV_INSN.
26800 * config/i386/i386.h (TARGET_ONE_IF_CONV_INSN): New macros.
26801 * config/i386/x86-tune.def (X86_TUNE_ONE_IF_CONV_INSN): New macros.
26802 * params.def (PARAM_MAX_RTL_IF_CONVERSION_INSNS) : Introduce new
26803 parameter to restirct number of conditional moves for
26805 * doc/invoke.texi (max-rtl-if-conversion-insns): Document it.
26806 * ifcvt.c (bb_ok_for_noce_convert_multiple_sets): Limit number of
26809 2016-01-11 Alexandre Oliva <aoliva@redhat.com>
26812 * var-tracking.c (drop_overlapping_mem_locs): Operate on all
26813 onepart vars. Fix typo in comment. Fix reversed condition in
26815 (dataflow_set_remove_mem_locs): Operate on all onepart vars.
26818 * var-tracking.c (dump_onepart_variable_differences): New.
26819 (dataflow_set_different): If a detailed dump is requested,
26820 delay early returns and dump differences between onepart
26821 variables present before and after, and added variables.
26823 2016-01-11 Ilya Enkovich <enkovich.gnu@gmail.com>
26826 * expr.c (expand_expr_real_1): For boolean vector constants
26827 with a scalar mode use const_scalar_mask_from_tree.
26828 (const_scalar_mask_from_tree): New.
26829 * optabs.c (expand_vec_cond_mask_expr): Use mask mode
26830 assigned to a mask type to handle constants.
26832 2016-01-11 Martin Jambor <mjambor@suse.cz>
26835 * ipa-cp.c (estimate_local_effects): Do not clone for removal of
26836 useless parameters if we cannot change function signature.
26838 2016-01-11 Martin Jambor <mjambor@suse.cz>
26841 * cgraphclones.c (duplicate_thunk_for_node): Copy can_change_signature
26844 2016-01-11 Tom de Vries <tom@codesourcery.com>
26846 PR tree-optimization/69109
26847 * tree-parloops.c (try_transform_to_exit_first_loop_alt): Don't allow
26850 2016-01-11 Tom de Vries <tom@codesourcery.com>
26852 PR tree-optimization/69108
26853 * tree-parloops.c (gather_scalar_reductions): Handle case that outer phi
26854 res is not used in a phi.
26856 2016-01-11 Yury Gribov <y.gribov@samsung.com>
26859 * common.opt (frandom-seed): Fix parameter name.
26860 * doc/invoke.texi (frandom-seed): Ditto and describe parameter.
26862 2016-01-11 Tom de Vries <tom@codesourcery.com>
26864 PR tree-optimization/69058
26865 * tree-parloops.c (pass_parallelize_loops::execute): Return 0 if libgomp
26868 2016-01-11 Andrew Burgess <andrew.burgess@embecosm.com>
26870 * config/arc/arc.opt (mdiv-rem): Add period to the end.
26871 (mcode-density): Likewise.
26873 2016-01-10 Tom de Vries <tom@codesourcery.com>
26875 PR tree-optimization/69062
26876 * tree-parloops.c (loop_has_phi_with_address_arg): New function.
26877 (parallelize_loops): Don't paralelize loop that has phi with address
26880 2016-01-10 Tom de Vries <tom@codesourcery.com>
26882 PR tree-optimization/69039
26883 * tree-parloops.c (try_create_reduction_list): Only allow single exit
26886 2016-01-09 John David Anglin <danglin@gcc.gnu.org>
26888 PR middle-end/68743
26889 * match.pd: Require target has function_c99_misc before doing
26890 truncl(extend(x)) and trunc(extend(x)) -> extend(truncf(x)), etc.
26892 2016-01-09 Gerald Pfeifer <gerald@pfeifer.com>
26894 * configure.ac (isl_options_set_schedule_serialize_sccs): Also
26896 * configure: Regenerate.
26898 2016-01-09 Jakub Jelinek <jakub@redhat.com>
26900 PR middle-end/50865
26901 PR tree-optimization/69097
26902 * fold-const.h (expr_not_equal_to): New prototype.
26903 * fold-const.c: Include stringpool.h and tree-ssanames.h.
26904 (expr_not_equal_to): New function.
26905 * match.pd (X % -Y is the same as X % Y): Don't optimize
26906 unless X is known not to be equal to minimum or Y is known
26907 not to be equal to -1.
26908 * tree-vrp.c (simplify_div_or_mod_using_ranges): Add GSI argument.
26909 fold TRUNC_MOD_EXPR if the second argument is not a power of two.
26910 (simplify_stmt_using_ranges): Adjust caller.
26911 (vrp_finalize): Call set_value_range on SSA_NAMEs before calling
26912 substitute_and_fold.
26914 2016-01-09 Jan Hubicka <hubicka@ucw.cz>
26916 * ipa-icf.c (sem_item_optimizer::merge_classes): Do not ICE on VAR_DECL
26919 2016-01-08 Jakub Jelinek <jakub@redhat.com>
26921 PR tree-optimization/69167
26922 * gimple-fold.c (replace_stmt_with_simplification): Also punt if
26923 new SSA_NAME_OCCURS_IN_ABNORMAL_PHI SSA_NAMEs appear in operands of
26925 * gimple-match-head.c (maybe_push_res_to_seq): Likewise.
26927 2016-01-08 Alan Lawrence <alan.lawrence@arm.com>
26928 Richard Biener <rguenther@suse.de>
26930 PR tree-optimization/68707
26931 * tree-vect-slp.c (vect_analyze_slp_instance): Cancel permuted SLP
26932 instances that can be handled via vect_load_lanes.
26934 2016-01-08 Uros Bizjak <ubizjak@gmail.com>
26936 * symtab.c (symtab_node::equal_address_to): Return -1 instead of 2
26937 if we can't determine address equivalence.
26938 * alias.c (compare_base_decl): Update for changed return value of
26939 symtab_node::equal_address_to.
26941 2016-01-08 Jason Merrill <jason@redhat.com>
26945 * function.c (assign_temp): Guard against TREE_ADDRESSABLE types here.
26946 * expr.c (store_field): Not here.
26947 * tree-cfgcleanup.c (fixup_noreturn_call): Don't clear LHS of a
26948 call with TREE_ADDRESSABLE type.
26949 * tree-cfg.c (verify_gimple_call): Adjust.
26951 2016-01-08 Olivier Hainque <hainque@adacore.com>
26953 * config/vxworks.h (VXWORKS_LIBGCC_SPEC): Don't link shared RTPs with
26956 2016-01-08 Alan Lawrence <alan.lawrence@arm.com>
26958 * gcc.target/rs6000/paired.md (reduc_smax_v2sf): Rename to...
26959 (reduc_smax_scal_v2sf): ...here, make result SFmode, extract element.
26960 (reduc_smin_v2sf): Rename to...
26961 (reduc_smin_scal_v2sf): ...here, make result SFmode, extract element.
26962 (reduc_splus_v2sf): Rename to...
26963 (reduc_plus_scal_v2sf): ...here, make result SFmode, extract element.
26965 2016-01-08 Jakub Jelinek <jakub@redhat.com>
26967 PR tree-optimization/69162
26968 * gimplify.c (gimplify_va_arg_expr): Encode original type of
26969 valist argument in another argument.
26970 (gimplify_modify_expr): Adjust for the above change. Cleanup.
26971 * tree-stdarg.c (expand_ifn_va_arg_1): Use new 3rd argument
26972 to determine the va_list type, build a MEM_REF instead of
26973 build_fold_indirect_ref.
26975 PR tree-optimization/69172
26976 * gimple-fold.c (gimple_fold_builtin_memory_chk): Pass type to
26979 2016-01-08 Thomas Preud'homme <thomas.preudhomme@arm.com>
26981 PR tree-optimization/67781
26982 * tree-ssa-math-opts.c (find_bswap_or_nop): Zero out bytes in cmpxchg
26983 and cmpnop in two steps: first the ones not accessed in original
26984 gimple expression in a endian independent way and then the ones not
26985 accessed in the final result in an endian-specific way.
26987 2016-01-08 Jakub Jelinek <jakub@redhat.com>
26989 PR tree-optimization/69083
26990 * tree-vect-slp.c (vect_get_constant_vectors): For
26991 VECTOR_BOOLEAN_TYPE_P assert op is fold_convertible_p to vector_type's
26992 element type. If op is fold_convertible_p to vector_type's element
26993 type, use NOP_EXPR instead of VCE.
26995 2016-01-08 Segher Boessenkool <segher@kernel.crashing.org>
26997 PR rtl-optimization/67778
26998 PR rtl-optimization/68634
26999 PR rtl-optimization/68909
27000 * shrink-wrap.c (try_shrink_wrapping): Add comment. Don't pop
27001 block from the stack until done with it. Remove a superfluous
27002 bitmap set. Remove a superfluous bitmap test.
27004 2016-01-07 Martin Sebor <msebor@redhat.com>
27007 * doc/extend.texi (__atomic Builtins, __sync Builtins): Document
27008 constraint on the type of arguments.
27010 2016-01-07 Andreas Tobler <andreast@gcc.gnu.org>
27012 * config/arm/freebsd.h: Rename SUBTARGET_OVERRIDE_OPTIONS to
27013 SUBTARGET_OVERRIDE_INTERNAL_OPTIONS. Adjust to check
27014 unaligned_access on the gcc_options set.
27015 * config/arm/arm.c (arm_option_override_internal): Use
27016 SUBTARGET_OVERRIDE_INTERNAL_OPTIONS.
27018 2016-01-07 Uros Bizjak <ubizjak@gmail.com>
27021 * config/i386/i386.c (ix86_frame_pointer_required): Enable
27022 frame pointer for TARGET_64BIT_MS_ABI when stack is misaligned.
27024 2016-01-07 Uros Bizjak <ubizjak@gmail.com>
27027 2016-01-06 Uros Bizjak <ubizjak@gmail.com>
27030 * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
27031 depending on frame_pointer_needed before remaining integer and SSE
27032 registers are saved.
27034 2016-01-07 Sandra Loosemore <sandra@codesourcery.com>
27037 * doc/extend.texi (Nvidia PDX Function Attributes): New section.
27039 2016-01-07 H.J. Lu <hongjiu.lu@intel.com>
27042 * config/i386/sse.md (<sse>_sqrt<mode>2<mask_name><round_name>):
27043 Use the "xBm" constraint.
27044 (float<sseintvecmodelower><mode>2<mask_name><round_name):
27046 (sse_cvtsi2ss<round_name>): Use round_nimm_scalar_predicate.
27047 (sse_cvtsi2ssq<round_name>): Likewise.
27048 (sse_cvtss2si<round_name>): Likewise.
27049 (sse_cvtss2siq<round_name>): Likewise.
27050 (sse2_cvtsi2sdq<round_name>): Likewise.
27051 (sse2_cvtsd2si<round_name>): Likewise.
27052 (sse2_cvtsd2siq<round_name>): Likewise.
27053 * config/i386/subst.md (round_nimm_scalar_predicate): New
27056 2015-12-15 Bernd Schmidt <bschmidt@redhat.com>
27058 PR middle-end/67639
27059 * varasm.c (make_decl_rtl): Mark invalid register vars as
27062 PR rtl-optimization/66206
27063 * bt-load.c (find_btr_use): Change first arg to be a pointer to an rtx.
27064 All callers changed.
27066 2016-01-07 Jakub Jelinek <jakub@redhat.com>
27068 PR tree-optimization/69141
27069 * tree-ssa-pre.c: Include langhooks.h.
27070 (eliminate_dom_walker::before_dom_children): Use
27071 lang_hooks.decl_printable_name instead of
27072 cgraph_node::get ()->name ().
27074 PR middle-end/68960
27075 * gimple-expr.c (copy_var_decl): If var has DECL_USER_ALIGN set, copy
27076 it and DECL_ALIGN too.
27078 2016-01-06 Robert Suchanek <robert.suchanek@imgtec.com>
27080 * config/mips/mips-ftypes.def: Sort to lexicographical order.
27082 2016-01-06 Uros Bizjak <ubizjak@gmail.com>
27085 * config/i386/i386.c (ix86_expand_prologue): Declare fs.sp_valid
27086 depending on frame_pointer_needed before remaining integer and SSE
27087 registers are saved.
27089 2015-01-06 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
27091 * config/rs6000/vsx.md (*p9_vecload_<mode>): Replace VSX_M
27092 mode iterator with VSX_M2.
27093 (*p9_vecstore_<mode>): Likewise.
27094 (*vsx_le_permute_<mode>): Restrict to !TARGET_P9_VECTOR.
27095 (*vsx_le_perm_load_<mode> for VSX_LE_128): Likewise.
27096 (*vsx_le_perm_store_<mode> for VSX_LE_128): Likewise.
27097 (define_split for VSX_LE128 stores): Likewise.
27098 (define_peephole2 for TImode LE swaps): Likewise.
27099 (define_split for VSX_LE128 post-reload stores): Likewise.
27101 2016-01-06 Marek Polacek <polacek@redhat.com>
27104 * convert.c (convert_to_integer_1): Adjust call to
27105 ubsan_instrument_float_cast. Use NULL_TREE instead of NULL.
27106 * ubsan.c (ubsan_instrument_float_cast): Drop the ARG parameter. Use
27107 EXPR instead of ARG.
27108 * ubsan.h (ubsan_instrument_float_cast): Adjust declaration.
27110 2016-01-05 Sandra Loosemore <sandra@codesourcery.com>
27113 * doc/extend.texi (RL78 Variable Attributes): New section.
27115 2016-01-05 Marek Polacek <polacek@redhat.com>
27118 * builtins.c (get_memmodel): Use expansion point location rather than
27119 the input location. Call warning_at rather than warning.
27120 (expand_builtin_atomic_compare_exchange): Likewise.
27121 (expand_builtin_atomic_load): Likewise.
27122 (expand_builtin_atomic_store): Likewise.
27123 (expand_builtin_atomic_clear): Likewise.
27125 2016-01-05 H.J. Lu <hongjiu.lu@intel.com>
27128 * config/i386/i386.c (ix86_expand_vector_logical_operator):
27129 Replace nonimmediate_operand with vector_operand.
27130 * config/i386/predicates.md (vector_operand): New predicate.
27131 (general_vector_operand): Replace nonimmediate_operand with
27133 * config/i386/sse.md: Replace nonimmediate_operand with
27134 vector_operand and m constraint with Bm constraint on SSE
27135 patterns with 16-byte memory operand.
27136 * config/i386/subst.md (round_nimm_predicate): Replace
27137 nonimmediate_operand with vector_operand.
27138 (round_saeonly_nimm_predicate): Likewise.
27139 (round_saeonly_nimm_scalar_predicate): New.
27141 2016-01-05 H.J. Lu <hongjiu.lu@intel.com>
27144 * config/i386/constraints.md (Bm): New constraint.
27145 * config/i386/predicates.md (vector_memory_operand): New
27147 * config/i386/sse.md: Replace xm with xBm in plusminus and
27148 any_logic patterns.
27150 2016-01-05 Sandra Loosemore <sandra@codesourcery.com>
27153 * doc/extend.texi (V850 Function Attributes): New section.
27154 (V850 Variable Attributes): New section.
27156 2016-01-05 Sandra Loosemore <sandra@codesourcery.com>
27159 * doc/extend.texi (MicroBlaze Function Attributes): Document
27160 interrupt_handler and fast_interrupt attributes.
27162 2016-01-05 Sergei Trofimovich <siarheit@google.com>
27165 * config/ia64/ia64.c (ia64_expand_load_address): Use gprel64
27166 for local symbolic operands.
27167 * config/ia64/predicates.md (local_symbolic_operand64): New
27170 2016-01-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27172 PR rtl-optimization/68651
27173 * combine.c (combine_simplify_rtx): Canonicalize x + x into
27176 2016-01-05 Nathan Sidwell <nathan@acm.org>
27178 * alias.c (compare_base_decls): Use symtab_node::get.
27180 2016-01-05 Nick Clifton <nickc@redhat.com>
27183 * ira-costs.c (copy_cost): Initialise the t_icode field of the
27184 secondary_reload_info structure.
27187 * config/i386/cygming.h (MAKE_DECL_ONE_ONLY): Define to use weak
27188 decls if weak support is available.
27190 2016-01-04 Martin Sebor <msebor@redhat.com>
27192 * doc/invoke.texi (Warning Options): Document -Winvalid-memory-model.
27194 2016-01-04 Michael Meissner <meissner@linux.vnet.ibm.com>
27196 * config/rs6000/rs6000-cpus.def (ISA_3_0_MASKS_SERVER): Add
27197 OPTION_MASK_P9_DFORM.
27199 * config/rs6000/constraints.md (wo constraint): New constraint for
27202 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Add support
27204 (rs6000_init_hard_regno_mode_ok): Likewise.
27206 * config/rs6000/rs6000.h (r6000_reg_class_enum): Add support for
27209 * config/rs6000/altivec.md (altivec_vperm_<mode>): Clean up vperm
27210 expanders not to have constraints. Add support for ISA 3.0 xxperm
27211 instruction. Add support for fusing xxlor with xxperm.
27212 (altivec_vperm_<mode>_internal): Likewise.
27213 (altivec_vperm_v8hiv16qi): Likewise.
27214 (altivec_vperm_<mode>v16q): Likewise.
27215 (altivec_vperm_<mode>_uns): Likewise.
27216 (vperm_v8hiv4si): Likewise.
27217 (vperm_v16qiv8hi): Likewise.
27219 * doc/md.texi (RS/6000 constraints): Document wo constraint.
27221 2016-01-04 Jakub Jelinek <jakub@redhat.com>
27223 Update copyright years.
27225 * gcc.c (process_command): Update copyright notice dates.
27226 * gcov-dump.c (print_version): Ditto.
27227 * gcov.c (print_version): Ditto.
27228 * gcov-tool.c (print_version): Ditto.
27229 * gengtype.c (create_file): Ditto.
27230 * doc/cpp.texi: Bump @copying's copyright year.
27231 * doc/cppinternals.texi: Ditto.
27232 * doc/gcc.texi: Ditto.
27233 * doc/gccint.texi: Ditto.
27234 * doc/gcov.texi: Ditto.
27235 * doc/install.texi: Ditto.
27236 * doc/invoke.texi: Ditto.
27238 2016-01-04 Eric Botcazou <ebotcazou@adacore.com>
27240 * config/arm/arm.c (aapcs_vfp_allocate_return_reg): Treat all integer
27241 modes larger than TImode as TImode if NEON is not enabled.
27243 2016-01-04 Eric Botcazou <ebotcazou@adacore.com>
27246 * config/sparc/sparc.h (FUNCTION_ARG_REGNO_P): Return true in 64-bit
27247 mode for %f0-%f31 only if TARGET_FPU.
27249 2016-01-04 Eric Botcazou <ebotcazou@adacore.com>
27252 * config/sparc/sparc.c (scan_record_type): Take into account subfields
27253 to compute the PACKED_P predicate.
27254 (function_arg_record_value): Minor tweaks.
27256 2016-01-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
27258 * doc/install.texi (--with-multilib-list): Describe the meaning of the
27259 option for arm*-*-* targets.
27261 2016-01-03 Sandra Loosemore <sandra@codesourcery.com>
27263 * doc/extend.texi (Common Function Attributes): Move docs for
27264 MSP430-specific attributes to....
27265 (MSP430 Function Attributes): ...here. Delete the redundant
27266 entries and copy-edit the remaining text.
27267 (MSP430 Variable Attributes): Use uniform format for index
27268 entries and add a cross-reference to the corresponding function
27271 2016-01-03 Vladimír Čunát <vcunat@gmail.com>
27273 * doc/invoke.texi (RS/6000 and PowerPC Options): Fix
27275 (x86 Options): Likewise.
27277 2016-01-01 Sandra Loosemore <sandra@codesourcery.com>
27281 * extend.texi (Common Function Attributes) <no_stack_limit>: New.
27282 * invoke.texi (Code Gen Options) <-fno-stack-limit>: Add pointer
27283 to corresponding attribute.
27285 2016-01-01 Sandra Loosemore <sandra@codesourcery.com>
27287 * doc/extend.texi (Common Function Attributes) <noplt>: Move
27288 to correct alphabetization of table. Copy-edit and correct
27290 <stack_protect>: Likewise.
27291 <target_clones>: Likewise.
27293 * doc/invoke.texi (Optimize Options) <-fstack-protector-explicit>:
27294 Correct punctuation.
27295 (Code Gen Options) <-fno-plt>: Copy-edit.
27297 2016-01-01 Bernd Edlinger <bernd.edlinger@hotmail.de>
27300 * config/tilegx/tilegx.md (clzsi2): Don't create DI subregs of
27301 SI values. Explicitly convert SI to DI and vice-versa.
27303 2016-01-01 Jakub Jelinek <jakub@redhat.com>
27305 PR tree-optimization/69070
27306 * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Only test
27307 REAL_VALUE_ISSIGNALING_NAN on arg0 if arg0 is a REAL_CST.
27310 * ubsan.c (ubsan_instrument_float_cast): Call
27311 initialize_sanitizer_builtins.
27314 * ifcvt.c (find_cond_trap): Give up if returnjump_p (jump).
27316 Copyright (C) 2016 Free Software Foundation, Inc.
27318 Copying and distribution of this file, with or without modification,
27319 are permitted in any medium without royalty provided the copyright
27320 notice and this notice are preserved.