]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ChangeLog
PR middle-end/92153
[thirdparty/gcc.git] / gcc / ChangeLog
1 2019-10-18 Jakub Jelinek <jakub@redhat.com>
2
3 PR middle-end/92153
4 * ggc-page.c (release_pages): Read g->alloc_size before free rather
5 than after it.
6
7 2019-10-18 Andre Vieira <andre.simoesdiasvieira@arm.com>
8
9 * config/arm/t-multilib: Add rule to regenerate mutlilib header file
10 with any change to t-multilib, t-aprofile and t-rmprofile. Also add
11 new multilib variants and new mappings.
12
13 2019-10-18 Georg-Johann Lay <avr@gjlay.de>
14
15 PR target/86040
16 * config/avr/avr.c (avr_out_lpm): Do not shortcut-return.
17
18 2019-10-18 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
19 Richard Sandiford <richard.sandiford@arm.com>
20
21 PR target/86753
22 * tree-vectorizer.h (scalar_cond_masked_key): New struct,
23 and define hashmap traits for it.
24 (loop_vec_info::scalar_cond_masked_set): New member.
25 (vect_record_loop_mask): Adjust prototype.
26 * tree-vectorizer.c (scalar_cond_masked_key::get_cond_ops_from_tree):
27 Implement method.
28 * tree-vect-loop.c (vectorizable_reduction): Pass NULL as last arg to
29 vect_record_loop_mask.
30 (vectorizable_live_operation): Likewise.
31 (vect_record_loop_mask): New param scalar_mask. Add entry
32 cond, loop_mask to scalar_cond_masked_set if scalar_mask is non NULL.
33 * tree-vect-stmts.c (check_load_store_masking): New param scalar_mask.
34 Pass it as last arg to vect_record_loop_mask.
35 (vectorizable_call): Pass scalar_mask as last arg to
36 vect_record_loop_mask.
37 (vectorizable_store): Likewise.
38 (vectorizable_load): Likewise.
39 (vectorizable_condition): Check if another part of vectorized code
40 applies loop_mask to condition or to it's inverse, and if yes,
41 apply loop_mask to result of vector comparison.
42
43 2019-10-17 John David Anglin <danglin@gcc.gnu.org>
44
45 * config/pa/pa.c (pa_output_indirect_call): Fix typos in last change.
46
47 2019-10-18 Jakub Jelinek <jakub@redhat.com>
48
49 PR tree-optimization/92056
50 * tree-ssa-strlen.c (determine_min_objsize): Call init_object_sizes
51 before calling compute_builtin_object_size.
52
53 2019-10-17 Iain Sandoe <iain@sandoe.co.uk>
54
55 PR target/65342
56 * config/rs6000/darwin.md (movdi_low, movsi_low_st): Delete.
57 (movdi_low_st): Delete.
58 * config/rs6000/rs6000.c
59 (darwin_rs6000_legitimate_lo_sum_const_p): New.
60 (mem_operand_gpr): Validate Mach-O LO_SUM cases separately.
61 * config/rs6000/rs6000.md (movsi_low): Delete.
62
63 2019-10-17 Jason Merrill <jason@redhat.com>
64
65 * gimplify.h (get_initialized_tmp_var): Add default argument to
66 post_p.
67 * gimplify.c (gimplify_self_mod_expr, gimplify_omp_atomic): Remove
68 NULL post_p argument.
69 * targhooks (std_gimplify_va_arg_expr): Likewise.
70
71 2019-10-17 Richard Biener <rguenther@suse.de>
72
73 * tree-vectorizer.h (_stmt_vec_info::cond_reduc_code): Remove.
74 (STMT_VINFO_VEC_COND_REDUC_CODE): Likewise.
75 * tree-vectorizer.c (vec_info::new_stmt_vec_info): Do not
76 initialize STMT_VINFO_VEC_COND_REDUC_CODE.
77 * tree-vect-loop.c (vect_is_simple_reduction): Set
78 STMT_VINFO_REDUC_CODE.
79 (vectorizable_reduction): Remove dead and redundant code, use
80 STMT_VINFO_REDUC_CODE instead of STMT_VINFO_VEC_COND_REDUC_CODE.
81
82 2019-10-17 Georg-Johann Lay <avr@gjlay.de>
83
84 Fix breakage introduced by r276985.
85
86 * config/avr/avr.c (avr_option_override): Remove set of
87 PARAM_ALLOW_STORE_DATA_RACES.
88 * common/config/avr/avr-common.c (avr_option_optimization_table)
89 [OPT_LEVELS_ALL]: Turn on -fallow-store-data-races.
90
91 2019-10-17 H.J. Lu <hongjiu.lu@intel.com>
92
93 * config/i386/i386.h (processor_costs): Add clear_ratio.
94 (CLEAR_RATIO): Remove MIN and use ix86_cost->clear_ratio.
95 * config/i386/x86-tune-costs.h: Set clear_ratio to the minimum
96 of 6 and move_ratio in all cost models.
97
98 2019-10-17 Richard Biener <rguenther@suse.de>
99
100 * tree-vect-loop.c (check_reduction_path): Compute reduction
101 operation here.
102 (vect_is_simple_reduction): Remove special-case of single-stmt
103 reduction path detection.
104
105 2019-10-17 Richard Earnshaw <rearnsha@arm.com>
106
107 * config/arm/arm-cpus.in (marvel-pj4): Add +fp to the architecture.
108
109 2019-10-17 Yuliang Wang <yuliang.wang@arm.com>
110
111 * config/aarch64/aarch64-sve2.md (aarch64_sve2_eor3<mode>)
112 (aarch64_sve2_nor<mode>, aarch64_sve2_nand<mode>)
113 (aarch64_sve2_bsl<mode>, aarch64_sve2_nbsl<mode>)
114 (aarch64_sve2_bsl1n<mode>, aarch64_sve2_bsl2n<mode>):
115 New combine patterns.
116 * config/aarch64/iterators.md (BSL_DUP): New int iterator for the
117 above.
118 (bsl_1st, bsl_2nd, bsl_dup, bsl_mov): Attributes for the above.
119
120 2019-10-17 Aldy Hernandez <aldyh@redhat.com>
121
122 * tree-vrp.c (value_range_base::dump): Display +INF for both
123 pointers and integers when appropriate.
124
125 2019-10-17 Andre Vieira <andre.simoesdiasvieira@arm.com>
126
127 * tree-vect-loop.c (vect_analyze_loop_2): Use same condition to decide
128 when to use versioning threshold.
129
130 2019-10-17 Andre Vieira <andre.simoesdiasvieira@arm.com>
131
132 * tree-vect-loop.c (determine_peel_for_niter): New function contained
133 outlined code from ...
134 (vect_analyze_loop_2): ... here.
135
136 2019-10-17 Andre Vieira <andre.simoesdiasvieira@arm.com>
137
138 * tree-vect-loop.c (vect_transform_loop): Move code from here...
139 * tree-vect-loop-manip.c (vect_loop_versioning): ... to here.
140 * tree-vectorizer.h (vect_loop_versioning): Remove unused parameters.
141
142 2019-10-17 Richard Biener <rguenther@suse.de>
143
144 * tree-vect-loop.c (needs_fold_left_reduction_p): Export.
145 (vect_is_simple_reduction): Move all validity checks ...
146 (vectorizable_reduction): ... here. Compute whether we
147 need a fold-left reduction here.
148 * tree-vect-patterns.c (vect_reassociating_reduction_p): Merge
149 both overloads, check needs_fold_left_reduction_p directly.
150 * tree-vectorizer.h (needs_fold_left_reduction_p): Declare.
151
152 2019-10-17 Richard Biener <rguenther@suse.de>
153
154 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Fix
155 TARGET_MEM_REF creation.
156
157 2019-10-17 Richard Biener <rguenther@suse.de>
158
159 PR tree-optimization/92129
160 * tree-vect-loop.c (vectorizable_reduction): Also fail
161 on GIMPLE_SINGLE_RHS.
162
163 2019-10-17 Jakub Jelinek <jakub@redhat.com>
164
165 PR tree-optimization/92056
166 * tree-object-size.c (cond_expr_object_size): Return early if then_
167 processing resulted in unknown size.
168
169 PR tree-optimization/92115
170 * tree-ssa-ifcombine.c (ifcombine_ifandif): Force condition into
171 temporary if it could trap.
172
173 2019-10-17 Richard Biener <rguenther@suse.de>
174
175 PR debug/91887
176 * dwarf2out.c (gen_formal_parameter_die): Also try to match
177 context_die against a DW_TAG_GNU_formal_parameter_pack parent.
178
179 2019-10-16 Jakub Jelinek <jakub@redhat.com>
180
181 * tree-ssa-strlen.c (maybe_invalidate): Use
182 HOST_WIDE_INT_PRINT_UNSIGNED instead of "%zu".
183
184 2019-10-16 Andrew Burgess <andrew.burgess@embecosm.com>
185 Jim Wilson <jimw@sifive.com>
186
187 * config/riscv/riscv.h (REG_CLASS_CONTENTS): Add argument passing
188 regs to SIBCALL_REGS.
189 * config/riscv/riscv.c (riscv_regno_to_class): Change argument
190 passing regs to SIBCALL_REGS.
191
192 2019-10-16 Martin Sebor <msebor@redhat.com>
193
194 PR tree-optimization/83821
195 * tree-ssa-strlen.c (maybe_invalidate): Add argument. Consider
196 the length of a string when available.
197 (handle_builtin_memset) Add argument.
198 (handle_store, strlen_check_and_optimize_call): Same.
199 (check_and_optimize_stmt): Same. Pass it to callees.
200
201 2019-10-16 Martin Sebor <msebor@redhat.com>
202
203 PR tree-optimization/91996
204 * tree-ssa-strlen.c (maybe_warn_pointless_strcmp): Improve location
205 information.
206 (compare_nonzero_chars): Add an overload.
207 (count_nonzero_bytes): Add an argument. Call overload above.
208 Handle non-constant lengths in some range.
209 (handle_store): Add an argument.
210 (check_and_optimize_stmt): Pass an argument to handle_store.
211
212 2019-10-16 Richard Earnshaw <rearnsha@arm.com>
213
214 * config/arm/arm.c (neon_valid_immediate): Clear bytes before use.
215
216 2019-10-16 Mihailo Stojanovic <mistojanovic@wavecomp.com>
217
218 * config/mips/mips.c (mips_expand_builtin_insn): Force the
219 operands which correspond to the same input-output register to
220 have the same pseudo assigned to them.
221
222 2019-10-16 Ilya Leoshkevich <iii@linux.ibm.com>
223
224 * cfgrtl.c (find_partition_fixes): Remove bbs_in_cold_partition.
225
226 2019-10-16 Wilco Dijkstra <wdijkstr@arm.com>
227
228 * config/aarch64/aarch64.c (aarch64_classify_symbol):
229 Apply reasonable limit to symbol offsets.
230
231 2019-10-16 Richard Biener <rguenther@suse.de>
232
233 * tree-vect-loop.c (vect_valid_reduction_input_p): Remove.
234 (vect_is_simple_reduction): Delay checking to
235 vectorizable_reduction and relax the checking.
236 (vectorizable_reduction): Check we have a simple use. Check
237 for bogus condition reductions.
238 * tree-vect-stmts.c (vect_transform_stmt): Make sure we
239 are looking at the last stmt in a pattern sequence when
240 filling in backedge PHI values.
241
242 2019-10-16 Peter Bergner <bergner@linux.ibm.com>
243 Jiufu Guo <guojiufu@linux.ibm.com>
244
245 PR target/70010
246 * config/rs6000/rs6000.c (rs6000_can_inline_p): Prohibit inlining if
247 the callee explicitly disables some isa_flags the caller is using.
248
249 2019-10-16 Richard Sandiford <richard.sandiford@arm.com>
250
251 * function-abi.cc (expr_callee_abi): Assert for POINTER_TYPE_P.
252
253 2019-10-16 Richard Sandiford <richard.sandiford@arm.com>
254
255 * genmodes.c (mode_data::order): New field.
256 (blank_mode): Update accordingly.
257 (VECTOR_MODES_WITH_PREFIX): Add an order parameter.
258 (make_vector_modes): Likewise.
259 (VECTOR_MODES): Update use accordingly.
260 (cmp_modes): Sort by the new order field ahead of sorting by size.
261 * config/aarch64/aarch64-modes.def (VNx2QI, VN2xHI, VNx2SI)
262 (VNx4QI, VNx4HI, VNx8QI): New partial vector modes.
263 * config/aarch64/aarch64.c (VEC_PARTIAL): New flag value.
264 (aarch64_classify_vector_mode): Handle the new partial modes.
265 (aarch64_vl_bytes): New function.
266 (aarch64_hard_regno_nregs): Use it instead of BYTES_PER_SVE_VECTOR
267 when counting the number of registers in an SVE mode.
268 (aarch64_class_max_nregs): Likewise.
269 (aarch64_hard_regno_mode_ok): Don't allow partial vectors
270 in registers yet.
271 (aarch64_classify_address): Treat partial vectors analogously
272 to full vectors.
273 (aarch64_print_address_internal): Consolidate the printing of
274 MUL VL addresses, using aarch64_vl_bytes as the number of
275 bytes represented by "VL".
276 (aarch64_vector_mode_supported_p): Reject partial vector modes.
277
278 2019-10-16 Richard Sandiford <richard.sandiford@arm.com>
279
280 * config/aarch64/aarch64.c (aarch64_layout_frame): Use is_constant
281 rather than known_lt when choosing frame layouts.
282
283 2019-10-16 Richard Sandiford <richard.sandiford@arm.com>
284
285 * config/aarch64/aarch64.c (aarch64_layout_frame): Assert
286 that all the adjustments add up to the full frame size.
287 Use crtl->outgoing_args_size directly as the final adjustment
288 where appropriate.
289
290 2019-10-16 Richard Sandiford <richard.sandiford@arm.com>
291
292 * config/aarch64/aarch64.c (aarch64_layout_frame): Use a local
293 "frame" reference instead of always referring directly to
294 "cfun->machine->frame".
295
296 2019-10-16 Richard Biener <rguenther@suse.de>
297
298 PR tree-optimization/92119
299 * tree-vect-patterns.c (vect_recog_rotate_pattern): Guard
300 against missing bswap lhs.
301
302 2019-10-16 Richard Sandiford <richard.sandiford@arm.com>
303
304 PR middle-end/92033
305 * poly-int.h (constant_lower_bound_with_limit): New function.
306 (constant_upper_bound_with_limit): Likewise.
307 * doc/poly-int.texi: Document them.
308 * tree-vrp.c (value_range_base::set): Convert POLY_INT_CST bounds
309 into the worst-case INTEGER_CST bounds.
310
311 2019-10-16 Feng Xue <fxue@os.amperecomputing.com>
312
313 PR ipa/91088
314 * doc/invoke.texi (ipa-max-param-expr-ops): Document new option.
315 * params.def (PARAM_IPA_MAX_PARAM_EXPR_OPS): New.
316 * ipa-predicat.h (struct expr_eval_op): New struct.
317 (expr_eval_ops): New typedef.
318 (struct condition): Add type and param_ops fields, remove size field.
319 (add_condition): Replace size parameter with type parameter, add
320 param_ops parameter.
321 * ipa-predicat.c (expr_eval_ops_equal_p): New function.
322 (predicate::add_clause): Add comparisons on type and param_ops.
323 (dump_condition): Add debug dump for param_ops.
324 (remap_after_inlining): Adjust call arguments to add_condition.
325 (add_condition): Replace size parameter with type parameter, add
326 param_ops parameter. Unshare constant value used in conditions.
327 * ipa-fnsummary.c (evaluate_conditions_for_known_args): Fold
328 parameter expressions using param_ops.
329 (decompose_param_expr): New function.
330 (set_cond_stmt_execution_predicate): Use call to decompose_param_expr
331 to replace call to unmodified_parm_or_parm_agg_item.
332 (set_switch_stmt_execution_predicate): Likewise.
333 (will_be_nonconstant_expr_predicate): Likewise. Replace usage of size
334 with type.
335 (inline_read_section): Read param_ops from summary stream.
336 (ipa_fn_summary_write): Write param_ops to summary stream.
337
338 2019-10-15 Segher Boessenkool <segher@kernel.crashing.org>
339
340 PR rtl-optimization/92107
341 * genattrtab.c (write_attr_value) <do_operator>: Parenthesize the
342 expression written.
343
344 2019-10-15 Iain Sandoe <iain@sandoe.co.uk>
345
346 * config/darwin.c: Update description of fix and continue.
347
348 2019-10-15 Iain Sandoe <iain@sandoe.co.uk>
349
350 * config/darwin.c (darwin_binds_local_p): Update to call
351 default_binds_local_p_3 () directly. amend comments.
352
353 2019-10-15 Richard Biener <rguenther@suse.de>
354
355 * lto-streamer-out.c (lto_variably_modified_type_p): New.
356 (tree_is_indexable): Use it.
357 * tree-streamer-out.c (pack_ts_type_common_value_fields):
358 Stream variably_modified_type_p as TYPE_LANG_FLAG_0.
359 * tree-streamer-in.c (unpack_ts_type_common_value_fields): Likewise.
360
361 2019-10-15 Jozef Lawrynowicz <jozef.l@mittosystems.com>
362
363 * config/msp430/msp430.md (zero_extendqipsi2): New.
364 (zero_extendqisi2): Optimize case where src register and base dst
365 register are the same.
366 (zero_extendhipsi2): Don't use 430X insn for rYs->r case.
367 (zero_extendpsisi2): Optimize r->m case.
368 Add unnamed insn patterns to catch insns combine searches for when
369 optimizing pointer manipulation.
370
371 2019-10-15 Jozef Lawrynowicz <jozef.l@mittosystems.com>
372
373 * config/msp430/msp430.md: Group zero_extend* insns together.
374
375 2019-10-15 Jozef Lawrynowicz <jozef.l@mittosystems.com>
376
377 * config/msp430/constraints.md: Allow post_inc operand for "Ya"
378 constraint.
379 * config/msp430/msp430.c (msp430_legitimate_address_p): Handle
380 POST_INC.
381 (msp430_subreg): Likewise.
382 (msp430_split_addsi): Likewise.
383 (msp430_print_operand_addr): Likewise.
384 * config/msp430/msp430.h (HAVE_POST_INCREMENT): Define.
385 (USE_STORE_POST_INCREMENT): Define.
386 * config/msp430/msp430.md: Use the msp430_general_dst_operand or
387 msp430_general_dst_nonv_operand predicates for the lvalues of insns.
388 * config/msp430/predicates.md (msp430_nonpostinc_operand): New.
389 (msp430_general_dst_operand): New.
390 (msp430_general_dst_nonv_operand): New.
391 (msp430_nonsubreg_operand): Remove.
392 (msp430_nonsubreg_dst_operand): New.
393 (msp430_nonsubreg_or_imm_operand): Allow reg or mem operands in place
394 of defunct msp430_nonsubreg_operand.
395 (msp430_nonsubregnonpostinc_or_imm_operand): New.
396
397 2019-10-15 Richard Biener <rguenther@suse.de>
398
399 PR tree-optimization/91929
400 * tree-ssa-pre.c (pre_expr_d::loc): New member.
401 (get_or_alloc_expr_for_name): Initialize it.
402 (get_or_alloc_expr_for_constant): Likewise.
403 (phi_translate_1): Copy it.
404 (create_expression_by_pieces): Use the original location
405 of the expression for the inserted stmt.
406 (compute_avail): Record the location of the stmt for the
407 expressions created.
408
409 2019-10-15 Richard Sandiford <richard.sandiford@arm.com>
410
411 * tree-ssa-strlen.c (count_nonzero_bytes): Check tree_fits_uhwi_p
412 before using tree_to_uhwi.
413
414 2019-10-15 Ilya Leoshkevich <iii@linux.ibm.com>
415
416 * config/s390/s390.md: Run %a0:DI splitters only after reload.
417
418 2019-10-15 Richard Biener <rguenther@suse.de>
419
420 PR tree-optimization/92094
421 * tree-vect-loop.c (vectorizable_reduction): For nested cycles
422 do not adjust the reduction definition def type.
423 * tree-vect-stmts.c (vect_transform_stmt): Verify the scalar stmt
424 defines the latch argument of the PHI.
425
426 2019-10-15 Hongyu Wang <hongtao.wang@intel.com>
427
428 PR target/92035
429 * config/i386/avx512fintrin.h (_mm_mask_roundscale_ss,
430 _mm_maskz_roundscale_ss, _mm_maskz_roundscale_round_ss,
431 _mm_maskz_roundscale_round_ss, _mm_mask_roundscale_sd,
432 _mm_maskz_roundscale_sd, _mm_mask_roundscale_round_sd,
433 _mm_maskz_roundscale_round_sd): New intrinsics.
434 (_mm_roundscale_ss, _mm_roundscale_round_ss): Use
435 __builtin_ia32_rndscales?_mask_round builtins instead of
436 __builtin_ia32_rndscales?_round.
437 * config/i386/i386-builtin.def (__builtin_ia32_rndscaless_round,
438 __builtin_ia32_rndscalesd_round): Remove.
439 (__builtin_ia32_rndscaless_mask_round,
440 __builtin_ia32_rndscalesd_mask_round): New intrinsics.
441 * config/i386/sse.md
442 (avx512f_rndscale<mode><round_saeonly_name>): Renamed to ...
443 (avx512f_rndscale<mode><mask_scalar_name><round_saeonly_scalar_name>):
444 ... this, adjust and add subst atrributes to make it maskable.
445
446 2019-10-15 Richard Biener <rguenther@suse.de>
447
448 PR middle-end/92046
449 * common.opt (fallow-store-data-races): New.
450 * params.def (PARAM_ALLOW_STORE_DATA_RACES): Remove.
451 * params.h (ALLOW_STORE_DATA_RACES): Likewise.
452 * doc/invoke.texi (fallow-store-data-races): Document.
453 (--param allow-store-data-races): Remove docs.
454 * opts.c (default_options_table): Enable -fallow-store-data-races
455 at -Ofast.
456 (default_options_optimization): Do not enable --param
457 allow-store-data-races at -Ofast.
458 * tree-if-conv.c (ifcvt_memrefs_wont_trap): Use flag_store_data_races
459 instead of PARAM_ALLOW_STORE_DATA_RACES.
460 * tree-ssa-loop-im.c (execute_sm): Likewise.
461
462 2019-10-15 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
463
464 PR tree-optimization/92085
465 * tree-if-conv.c (ifcvt_local_dce): Call gsi_next in else clause,
466 instead of calling it unconditionally after
467 delete_dead_or_redundant_assignment and fix indentation.
468
469 2019-10-15 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
470
471 * config/arm/vfp.md (fma<SDF:mode>4): Enable DF only when
472 TARGET_VFP_DOUBLE.
473 (*fmsub<SDF:mode>4): Likewise.
474 *fnmsub<SDF:mode>4): Likewise.
475 (*fnmadd<SDF:mode>4): Likewise.
476
477 2019-10-14 Joel Hutton <Joel.Hutton@arm.com>
478
479 * doc/tree-ssa.texi: Update renamed macro name.
480
481 2019-10-14 Mihailo Stojanovic <mistojanovic@wavecomp.com>
482
483 * config/mips/mips.c (mips_cannot_force_const_mem): Reject
484 vector constants.
485
486 2019-10-14 Iain Sandoe <iain@sandoe.co.uk>
487
488 * config/darwin.c: Use unsigned ints for the picbase label
489 counters, initialise the vars explicitly.
490 (update_pic_label_number_if_needed): Move a variable declaration
491 to where it's needed.
492 (machopic_output_function_base_name): Use a more strict checking
493 assert, and and unsigned int for the picbase label counter.
494 (machopic_get_function_picbase): Likewise.
495
496 2019-10-14 Richard Biener <rguenther@suse.de>
497
498 PR middle-end/92046
499 * dse.c (scan_insn): Use param max_active_local_stores.
500 (dse_step1): Get PARAM_MAX_DSE_ACTIVE_LOCAL_STORES and adjust
501 based on optimization level.
502 * loop-invariant.c (move_loop_invariants): Adjust
503 LOOP_INVARIANT_MAX_BBS_IN_LOOP based on optimization level.
504 * opts.c (default_options_optimization): Do not adjust
505 PARAM_MAX_DSE_ACTIVE_LOCAL_STORES and
506 LOOP_INVARIANT_MAX_BBS_IN_LOOP here.
507
508 2019-10-14 Wilco Dijkstra <wdijkstr@arm.com>
509
510 * config/arm/arm.c (arm_legitimize_address): Remove Thumb-2 bailout.
511
512 2019-10-14 Wilco Dijkstra <wdijkstr@arm.com>
513
514 * config/arm/arm.c (arm_option_override): Don't override sched
515 pressure algorithm.
516
517 2019-10-14 Richard Biener <rguenther@suse.de>
518
519 PR tree-optimization/92069
520 * tree-vect-loop.c (vect_analyze_scalar_cycles_1): For nested
521 cycles do not set vect_nested_cycle on the latch definition.
522
523 2019-10-14 Richard Sandiford <richard.sandiford@arm.com>
524
525 * function-abi.h (expr_callee_abi): Declare.
526 * function-abi.cc (expr_callee_abi): New function.
527
528 2019-10-14 Aldy Hernandez <aldyh@redhat.com>
529
530 * tree-vrp.c (value_range_base::set): Normalize unsigned ~[0,0]
531 into [1,MAX].
532 * tree-vrp.h (value_range_base::nonzero_p): Adjust for unsigned
533 non-zero being represented as [1,MAX].
534
535 2019-10-14 Xiong Hu Luo <luoxhu@linux.ibm.com>
536
537 * tree-sra.c (dump_access): Add missing braces.
538
539 2019-10-13 Iain Sandoe <iain@sandoe.co.uk>
540
541 * config/darwin.c (machopic_indirection_name): Rework the
542 function to emit linker-visible symbols only for indirections
543 in the data section. Clean up the code and update comments.
544
545 2019-10-13 Iain Sandoe <iain@sandoe.co.uk>
546
547 * config/darwin.c (machopic_indirect_data_reference): Remove
548 redundant code.
549
550 2019-10-13 Nathan Sidwell <nathan@acm.org>
551
552 * gengtype-lex.l (CXX_KEYWORD): Add 'mutable'.
553
554 2019-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
555
556 * doc/sourcebuild.texi (Test Directives, Add Options): Remove
557 c99_runtime.
558
559 2019-10-12 Jan Hubicka <hubicka@ucw.cz>
560
561 * lto-streamer-out.c (collect_block_tree_leafs): Renumber statements
562 so non-virutal are before virutals.
563 (output_function): Avoid body modifications.
564
565 2019-10-12 John David Anglin <danglin@gcc.gnu.org>
566
567 * config/pa/pa.c (pa_output_call): Load descriptor address to register
568 %r22. Load function address before global pointer.
569 (pa_attr_length_indirect_call): Adjust length of inline versions of
570 $$dyncall.
571 (pa_output_indirect_call): Remove fast inline version of $$dyncall
572 before normal cases. Update inline $$dyncall sequences to preserve
573 function descriptor address in register %r22.
574 (TRAMPOLINE_CODE_SIZE): Adjust.
575 (pa_asm_trampoline_template): Revise 32-bit trampoline. Don't assume
576 register %r22 contains trampoline address.
577 (pa_trampoline_init): Adjust offsets.
578 (pa_trampoline_adjust_address): Likewise.
579 * config/pa/pa.h (TRAMPOLINE_SIZE): Adjust 32-bit size.
580
581 2019-10-12 Iain Sandoe <iain@sandoe.co.uk>
582
583 PR target/67183
584 * config/darwin.c (machopic_indirection): New field to flag
585 non-lazy-symbol-pointers in the data section.
586 (machopic_indirection_name): Compute if an indirection should
587 appear in the data section.
588 (machopic_output_data_section_indirection): New callback split
589 from machopic_output_indirection.
590 (machopic_output_stub_indirection): Likewise.
591 (machopic_output_indirection): Retain the code for non-lazy
592 symbol pointers in their regular section.
593 (machopic_finish): Use the new callbacks to order the indirection
594 output.
595
596 2019-10-12 Iain Sandoe <iain@sandoe.co.uk>
597
598 * config/darwin-protos.h (machopic_finish): Delete.
599 * config/darwin.c (machopic_finish): Make static.
600
601 2019-10-12 Iain Sandoe <iain@sandoe.co.uk>
602
603 * config/darwin.c (darwin_file_end): Only emit empty CTOR/DTOR
604 sections when building kernel extension code.
605
606 2019-10-12 Palmer Dabbelt <palmer@sifive.com>
607
608 * doc/extend.texi (Alternate Keywords): Change "-std=c11" to "a
609 later standard."
610
611 2019-10-12 John David Anglin <danglin@gcc.gnu.org>
612
613 * gcc/config/pa/pa.c (pa_option_override): Remove trailing comma
614 from warning.
615
616 2019-10-12 Jakub Jelinek <jakub@redhat.com>
617
618 PR middle-end/92063
619 * tree-eh.c (operation_could_trap_helper_p) <case COND_EXPR>
620 <case VEC_COND_EXPR>: Return false with *handled = false.
621 (tree_could_trap_p): For {,VEC_}COND_EXPR return false instead of
622 recursing on the first operand.
623 * fold-const.c (simple_operand_p_2): Use generic_expr_could_trap_p
624 instead of tree_could_trap_p.
625 * tree-ssa-sccvn.c (vn_nary_may_trap): Formatting fixes.
626
627 2019-10-11 Jim Wilson <jimw@sifive.com>
628
629 PR rtl-optimization/91860
630 * combine.c (subst): If new_rtx is a constant, also check for
631 SIGN_EXTEND when deciding whether to call simplify_unary_operation.
632
633 2019-10-11 Richard Sandiford <richard.sandiford@arm.com>
634
635 * expr.c (store_expr): Use rtx_to_poly_int64 rather than
636 INTVAL when calling store_bit_field.
637
638 2019-10-11 Wilco Dijkstra <wdijkstr@arm.com>
639
640 * config/arm/arm.h (HONOR_REG_ALLOC_ORDER): Set when optimizing for
641 size.
642
643 2019-10-11 Bernd Edlinger <bernd.edlinger@hotmail.de>
644
645 * tree-vect-loop.c (vect_analyze_loop_operations): Adjust call to
646 vectorizable_live_operation.
647 (vectorizable_live_operation): Adjust parameters.
648 * tree-vect-stmts.c (vect_init_vector,
649 vect_gen_widened_results_half): Fix typo in function comment.
650 (can_vectorize_live_stmts): Adjust function comment.
651 Adjust parameters. Adjust call to vectorizable_live_operation.
652 (vect_analyze_stmt): Adjust call to can_vectorize_live_stmts.
653 (vect_transform_stmt): Adjust function comment. Adjust call to
654 can_vectorize_live_stmts.
655 * tree-vectorizer.h (vectorizable_live_operation): Adjust parameters.
656
657 2019-10-11 Richard Biener <rguenther@suse.de>
658
659 PR tree-optimization/90883
660 PR tree-optimization/91091
661 * tree-ssa-sccvn.c (vn_reference_lookup_3): Use correct
662 alias-sets both for recording VN table entries and continuing
663 walking after translating through copies. Handle same-sized
664 reads from SSA names by returning the plain SSA name.
665 (eliminate_dom_walker::eliminate_stmt): Properly handle
666 non-size precision stores in redundant store elimination.
667
668 2019-10-11 Jan Hubicka <hubicka@ucw.cz>
669
670 * ggc-page.c (release_pages): Output statistics when !quiet_flag.
671 (ggc_collect): Dump later to not interfere with release_page dump.
672 (ggc_trim): New function.
673 * ggc-none.c (ggc_trim): New.
674 * ggc.h (ggc_trim): Declare.
675
676 2019-10-11 Richard Biener <rguenther@suse.de>
677
678 PR tree-optimization/92066
679 PR tree-optimization/92046
680 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
681 Fix bogus cost model check.
682
683 2019-10-11 Tobias Burnus <tobias@codesourcery.com>
684
685 * langhooks-def.h (LANG_HOOKS_OMP_IS_ALLOCATABLE_OR_PTR): Define.
686 (LANG_HOOKS_DECLS): Add it.
687 * langhooks.h (lang_hooks_for_decls): Add omp_is_allocatable_or_ptr;
688 update comment for omp_is_optional_argument.
689 * omp-general.c (omp_is_allocatable_or_ptr): New.
690 * omp-general.h (omp_is_allocatable_or_ptr): Declare.
691 * omp-low.c (scan_sharing_clauses, lower_omp_target): Handle
692 Fortran's optional arguments and allocatable/pointer scalars
693 with use_device_addr.
694
695 2019-10-11 Ilya Leoshkevich <iii@linux.ibm.com>
696
697 PR target/77918
698 * config/s390/2827.md: Add new opcodes.
699 * config/s390/2964.md: Likewise.
700 * config/s390/3906.md: Likewise.
701 * config/s390/8561.md: Likewise.
702 * config/s390/s390-builtins.def (s390_vfchesb): Use
703 the new vec_cmpgev4sf_quiet_nocc.
704 (s390_vfchedb): Use the new vec_cmpgev2df_quiet_nocc.
705 (s390_vfchsb): Use the new vec_cmpgtv4sf_quiet_nocc.
706 (s390_vfchdb): Use the new vec_cmpgtv2df_quiet_nocc.
707 (vec_cmplev4sf): Use the new vec_cmplev4sf_quiet_nocc.
708 (vec_cmplev2df): Use the new vec_cmplev2df_quiet_nocc.
709 (vec_cmpltv4sf): Use the new vec_cmpltv4sf_quiet_nocc.
710 (vec_cmpltv2df): Use the new vec_cmpltv2df_quiet_nocc.
711 * config/s390/s390-modes.def (CCSFPS): New mode.
712 * config/s390/s390.c (s390_match_ccmode_set): Support CCSFPS.
713 (s390_select_ccmode): Return CCSFPS for LT, LE, GT, GE and LTGT.
714 (s390_branch_condition_mask): Reuse CCS for CCSFPS.
715 (s390_expand_vec_compare): Use non-signaling patterns where
716 necessary.
717 (s390_reverse_condition): Support CCSFPS.
718 * config/s390/s390.md (*cmp<mode>_ccsfps): New pattern.
719 * config/s390/vector.md: (VFCMP_HW_OP): Remove.
720 (asm_fcmp_op): Likewise.
721 (*smaxv2df3_vx): Use pattern for quiet comparison.
722 (*sminv2df3_vx): Likewise.
723 (*vec_cmp<VFCMP_HW_OP:code><mode>_nocc): Remove.
724 (*vec_cmpeq<mode>_quiet_nocc): New pattern.
725 (vec_cmpgt<mode>_quiet_nocc): Likewise.
726 (vec_cmplt<mode>_quiet_nocc): New expander.
727 (vec_cmpge<mode>_quiet_nocc): New pattern.
728 (vec_cmple<mode>_quiet_nocc): New expander.
729 (*vec_cmpeq<mode>_signaling_nocc): New pattern.
730 (*vec_cmpgt<mode>_signaling_nocc): Likewise.
731 (*vec_cmpgt<mode>_signaling_finite_nocc): Likewise.
732 (*vec_cmpge<mode>_signaling_nocc): Likewise.
733 (*vec_cmpge<mode>_signaling_finite_nocc): Likewise.
734 (vec_cmpungt<mode>): New expander.
735 (vec_cmpunge<mode>): Likewise.
736 (vec_cmpuneq<mode>): Use quiet patterns.
737 (vec_cmpltgt<mode>): Allow only on z14+.
738 (vec_cmpordered<mode>): Use quiet patterns.
739 (vec_cmpunordered<mode>): Likewise.
740 (VEC_CMP_EXPAND): Add ungt and unge.
741
742 2019-10-11 Jan Hubicka <hubicka@ucw.cz>
743
744 * gimple-streamer-out.c (output_gimple_stmt): Add explicit function
745 parameter.
746 * lto-streamer-out.c: Include tree-dfa.h.
747 (output_cfg): Do not use cfun.
748 (lto_prepare_function_for_streaming): New.
749 (output_function): Do not push cfun; do not initialize loop optimizer.
750 * lto-streamer.h (lto_prepare_function_for_streaming): Declare.
751 * passes.c (ipa_write_summaries): Use it.
752 (ipa_write_optimization_summaries): Do not modify bodies.
753 * tree-dfa.c (renumber_gimple_stmt_uids): Add function parameter.
754 * tree.dfa.h (renumber_gimple_stmt_uids): Update prototype.
755 * tree-ssa-dse.c (pass_dse::execute): Update use of
756 renumber_gimple_stmt_uids.
757 * tree-ssa-math-opts.c (pass_optimize_widening_mul::execute): Likewise.
758
759 2019-10-11 Kewen Lin <linkw@gcc.gnu.org>
760
761 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Lower
762 vec_promote_demote cost to 1 for non-Power7 VSX architectures.
763
764 2019-10-10 Joseph Myers <joseph@codesourcery.com>
765
766 * ginclude/float.h [!__DEC32_MANT_DIG__]: Do not define DFP
767 macros.
768 [__STDC_WANT_IEC_60559_DFP_EXT__ || __STDC_VERSION__ > 201710L]:
769 Also define DFP macros for these conditions.
770 [!__STDC_WANT_DEC_FP__] (DEC32_SUBNORMAL_MIN, DEC64_SUBNORMAL_MIN,
771 DEC128_SUBNORMAL_MIN): Do not define.
772 [__STDC_WANT_IEC_60559_DFP_EXT__ || __STDC_VERSION__ > 201710L]
773 (DEC32_TRUE_MIN, DEC64_TRUE_MIN, DEC128_TRUE_MIN): New macros.
774
775 2019-10-10 Xiong Hu Luo <luoxhu@linux.ibm.com>
776 Sandra Loosemore <sandra@codesourcery.com>
777
778 PR middle-end/26241
779 * doc/lto.texi (IPA): Reference to the IPA passes.
780 * doc/passes.texi (Pass manager): Add node IPA passes and
781 description for each IPA pass.
782
783 2019-10-10 Jan Hubicka <hubicka@ucw.cz>
784
785 * ipa-reference.c: Do not include splay-tree.h
786 (reference_vars_to_consider): Turn to hash map.
787 (get_static_name, ipa_init, analyze_function, propagate,
788 stream_out_bitmap, ipa_reference_write_optimization_summary,
789 ipa_reference_write_optimization_summary): Update.
790
791 2019-10-10 Jan Hubicka <hubicka@ucw.cz>
792
793 * ipa-reference.c (propagate): Fix releasing of IPA summaries.
794
795 2019-10-10 Iain Sandoe <iain@sandoe.co.uk>
796
797 * config/darwin.c: Lookup Objective C metadata and force indirection
798 for IVAR refs.
799
800 2019-10-10 Michael Meissner <meissner@linux.ibm.com>
801
802 * config/rs6000/rs6000.c (quad_address_p): Add check for prefixed
803 addresses.
804 (mem_operand_gpr): Add check for prefixed addresses.
805 (mem_operand_ds_form): Add check for prefixed addresses.
806 (rs6000_legitimate_offset_address_p): If we support prefixed
807 addresses, check for a 34-bit offset instead of 16-bit.
808 (rs6000_legitimate_address_p): Add check for prefixed addresses.
809 Do not allow load/store with update if the address is prefixed.
810 (rs6000_mode_dependent_address): If we support prefixed
811 addresses, check for a 34-bit offset instead of 16-bit.
812
813 2019-10-10 Ilya Leoshkevich <iii@linux.ibm.com>
814
815 PR target/77918
816 * config/s390/vector.md (vcond_comparison_operator): New
817 predicate.
818 (vcond<V_HW:mode><V_HW2:mode>): Use vcond_comparison_operator.
819
820 2019-10-10 David Malcolm <dmalcolm@redhat.com>
821
822 PR 87488
823 * Makefile.in (CFLAGS-opts.o): Pass in DOCUMENTATION_ROOT_URL via
824 -D.
825 * configure.ac (--with-documentation-root-url): New option.
826 * configure: Regenerate.
827 * diagnostic-format-json.cc (json_end_diagnostic): If there is an
828 option URL, add it as a new string field of the diagnostic option.
829 * diagnostic.c (diagnostic_initialize): Initialize get_option_url.
830 (print_option_information): If get_option_url is non-NULL, call
831 it, and if the result is non-NULL, potentially emit an escape
832 sequence to markup the option text with the resulting URL.
833 * diagnostic.h (diagnostic_context::get_option_url): New callback.
834 * doc/invoke.texi (-fdiagnostics-format=): Add "option_url" to
835 example of JSON output.
836 * opts-diagnostic.h (get_option_url): New decl.
837 * opts.c (get_option_url): New function.
838 * toplev.c (general_init): Initialize the get_option_url callback.
839
840 2019-10-10 David Malcolm <dmalcolm@redhat.com>
841
842 PR 87488
843 * common.opt (fdiagnostics-urls=): New option.
844 (diagnostic-url.h): Add SourceInclude.
845 (diagnostic_url_rule): New enum.
846 * diagnostic-color.c: Include "diagnostic-url.h".
847 (diagnostic_urls_enabled_p): New function.
848 * diagnostic-url.h: New file.
849 * diagnostic.c: Include "diagnostic-url.h".
850 (diagnostic_urls_init): New function.
851 * diagnostic.h (diagnostic_urls_init): New decl.
852 * doc/invoke.texi (Diagnostic Message Formatting Options): Add
853 -fdiagnostics-urls to the list.
854 (-fdiagnostics-urls): New option.
855 * gcc.c (driver_handle_option): Handle OPT_fdiagnostics_urls_.
856 (driver::global_initializations): Call diagnostic_urls_init.
857 * opts-global.c (init_options_once): Likewise.
858 * opts.c (common_handle_option): Handle OPT_fdiagnostics_urls_.
859 * pretty-print.c (pretty_printer::pretty_printer): Initialize
860 show_urls.
861 (pp_begin_url): New function.
862 (pp_end_url): New function.
863 (selftest::test_urls): New selftest.
864 (selftest::pretty_print_c_tests): Call it.
865 * pretty-print.h (pretty_printer::show_urls): New field.
866 (pp_begin_url): New decl.
867 (pp_end_url): New decl.
868
869 2019-10-10 Uroš Bizjak <ubizjak@gmail.com>
870
871 PR target/92022
872 * config/alpha/alpha.c (alpha_handle_trap_shadows): Skip DEBUG_INSN.
873
874 2019-10-10 Oleg Endo <olegendo@gcc.gnu.org>
875
876 PR target/88630
877 * config/sh/sh.h (TARGET_FPU_SH4_300): New macro.
878 * config/sh/sh.c (sh_option_override): Enable fsca and fsrra insns
879 also for TARGET_FPU_SH4_300.
880 (sh_emit_mode_set): Check for TARGET_FPU_SH4_300 instead of
881 TARGET_SH4_300.
882 * config/sh/sh.md (toggle_pr): Add TARGET_FPU_SH4_300 condition.
883 (negsf2): Expand to either negsf2_fpscr or negsf2_no_fpscr.
884 (*negsf2_i): Split into ...
885 (negsf2_fpscr, negsf2_no_fpscr): ... these new patterns.
886 (abssf2): Expand to either abssf2_fpsc or abssf2_no_fpsc.
887 (**abssf2_i): Split into ...
888 (abssf2_fpscr, abssf2_no_fpscr): ... these new patterns.
889 (negdf2): Expand to either negdf2_fpscr or negdf2_no_fpscr.
890 (*negdf2_i): Split into ...
891 (negdf2_fpscr, negdf2_no_fpscr): ... these new patterns.
892 (absdf2): Expand to either absdf2_fpscr or absdf2_no_fpsc.
893 (**abssf2_i): Split into ...
894 (absdf2_fpscr, absdf2_no_fpscr): ... these new patterns.
895
896 2019-10-10 Richard Biener <rguenther@suse.de>
897
898 PR middle-end/92046
899 * opts.c (finish_options): Do not influence global --params
900 from options that are adjustable per function.
901 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
902 Apply --param adjustment based on active cost-model.
903 * tree-ssa-phiopt.c (cond_if_else_store_replacement): Disable
904 further store-sinking when vectorization or if-conversion
905 are not enabled.
906
907 2019-10-10 Jan Hubicka <hubicka@ucw.cz>
908
909 PR middle-end/92037
910 * cgraph.c (symbol_table_test::symbol_table_test): Use ggc_alloc
911 rather than ggc_alloc_cleared to alloc symbol table.
912 * toplev.c (general_init): Likewise.
913 * cgraph.h (symbol_table): Explicitly construct every field.
914
915 2019-10-10 Andreas Krebbel <krebbel@linux.ibm.com>
916
917 * common/config/s390/s390-common.c (PF_ARCH13): Rename to...
918 (PF_Z15): ... this.
919 * config.gcc: Add z15 as option for --with-arch and --with-tune
920 configure switches.
921 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Add
922 error reporting for unsupported builtins.
923 * config/s390/s390-opts.h (enum processor_type): Rename
924 PROCESSOR_8561_ARCH13 to PROCESSOR_8561_Z15.
925 * config/s390/8561.md: Rename arch13 to z15 throughout the file.
926 * config/s390/driver-native.c (s390_host_detect_local_cpu):
927 Likewise.
928 * config/s390/s390-builtins.def: Likewise.
929 * config/s390/s390.c (processor_table): Add z15 as option and keep arch13 as alternative.
930 (s390_expand_builtin): Add missing check for unsupported builtins.
931 (s390_canonicalize_comparison): Rename TARGET_ARCH13 to TARGET_Z15.
932 (s390_rtx_costs): Likewise.
933 (s390_get_sched_attrmask): Rename arch13 to z15.
934 (s390_get_unit_mask): Likewise.
935 (s390_is_fpd): Likewise.
936 (s390_is_fxd): Likewise.
937 * config/s390/s390.h (enum processor_flags): Likewise.
938 * config/s390/s390.md: Likewise.
939 * config/s390/vector.md: Likewise.
940 * config/s390/vx-builtins.md: Likewise.
941 * config/s390/s390.opt: Add z15 to processor_type value.
942
943 2019-10-10 Andreas Krebbel <krebbel@linux.ibm.com>
944
945 PR target/91035
946 * config/s390/s390-protos.h (s390_output_split_stack_data): Add
947 prototype.
948 * config/s390/s390.md (UNSPECV_SPLIT_STACK_DATA): Remove.
949 ("split_stack_data", "split_stack_call")
950 ("split_stack_call_<mode>", "split_stack_cond_call")
951 ("split_stack_cond_call_<mode>"): Remove.
952 ("@split_stack_call<mode>", "@split_stack_cond_call<mode>"): New
953 insn definition.
954 * config/s390/s390.c (s390_output_split_stack_data): New function.
955 (s390_expand_split_stack_prologue): Use the merged expander.
956
957 2019-10-09 Martin Sebor <msebor@redhat.com>
958
959 PR tree-optimization/90879
960 * builtins.c (check_access): Avoid using maxbound when null.
961 * calls.c (maybe_warn_nonstring_arg): Adjust to get_range_strlen change.
962 * doc/invoke.texi (-Wstring-compare): Document new warning option.
963 * gimple-fold.c (get_range_strlen_tree): Make setting maxbound
964 conditional.
965 (get_range_strlen): Overwrite initial maxbound when non-null.
966 * gimple-ssa-sprintf.c (get_string_length): Adjust to get_range_strlen
967 changes.
968 * tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Same.
969 (used_only_for_zero_equality): New function.
970 (handle_builtin_memcmp): Call it.
971 (determine_min_objsize): Return an integer instead of tree.
972 (get_len_or_size, strxcmp_eqz_result): New functions.
973 (maybe_warn_pointless_strcmp): New function.
974 (handle_builtin_string_cmp): Call it. Fold zero-equality of strcmp
975 between a longer string and a smaller array.
976 (get_range_strlen_dynamic): Overwrite initial maxbound when non-null.
977
978 2019-10-09 Iain Sandoe <iain@sandoe.co.uk>
979
980 * config/darwin.c (darwin_override_options): Make the check for
981 Objective-C ABI version more specific for 64bit code.
982
983 2019-10-09 Iain Sandoe <iain@sandoe.co.uk>
984
985 * config/darwin.c (machopic_indirect_data_reference): Set flag to
986 indicate that the new symbol is an indirection.
987 (machopic_indirect_call_target): Likewise.
988 * config/darwin.h (MACHO_SYMBOL_FLAG_INDIRECTION): New.
989 (MACHO_SYMBOL_INDIRECTION_P): New.
990 (MACHO_SYMBOL_FLAG_STATIC): Adjust bit number.
991
992 2019-10-08 Jason Merrill <jason@redhat.com>
993
994 * doc/invoke.texi: Document -fconcepts-ts.
995
996 2019-10-09 Richard Biener <rguenther@suse.de>
997
998 * tree-vect-loop.c (vect_is_simple_reduction): Simplify and
999 allow stmts other than GIMPLE_ASSIGN in nested cycles.
1000
1001 2019-10-08 Richard Biener <rguenther@suse.de>
1002
1003 * tree-vectorizer.h (_stmt_vec_info::reduc_vectype_in): New.
1004 (_stmt_vec_info::force_single_cycle): Likewise.
1005 (STMT_VINFO_FORCE_SINGLE_CYCLE): New.
1006 (STMT_VINFO_REDUC_VECTYPE_IN): Likewise.
1007 * tree-vect-loop.c (vectorizable_reduction): Set
1008 STMT_VINFO_REDUC_VECTYPE_IN and STMT_VINFO_FORCE_SINGLE_CYCLE.
1009 (vect_transform_reduction): Use them to remove redundant code.
1010 (vect_transform_cycle_phi): Likewise.
1011
1012 2019-10-08 Dmitrij Pochepko <dmitrij.pochepko@bell-sw.com>
1013
1014 PR tree-optimization/90836
1015 * gcc/match.pd (popcount): New pattern.
1016
1017 2019-10-08 Martin Sebor <msebor@redhat.com>
1018
1019 PR middle-end/92026
1020 PR middle-end/92014
1021 * tree-ssa-strlen.c (count_nonzero_bytes): Avoid recursing for MEM_REF
1022 again once nbytes has been set. Set the access size when not yet set.
1023
1024 2019-10-08 Iain Sandoe <iain@sandoe.co.uk>
1025
1026 * config/darwin.c (machopic_select_section): Remove dead code for
1027 old Objective-C section selection method, replace with unreachable.
1028
1029 2019-10-08 Iain Sandoe <iain@sandoe.co.uk>
1030
1031 * config/darwin.c (machopic_indirect_data_reference): Check for
1032 required indirections before making direct access to defined
1033 values.
1034 (machopic_output_indirection): Place the indirected pointes for
1035 required indirections into the non-lazy symbol pointers section.
1036 (darwin_encode_section_info):
1037 * config/darwin.h (MACHO_SYMBOL_FLAG_MUST_INDIRECT): New.
1038 (MACHO_SYMBOL_MUST_INDIRECT_P): New.
1039
1040 2019-10-08 Uroš Bizjak <ubizjak@gmail.com>
1041
1042 PR target/91994
1043 * config/i386/i386.c (x86_avx_u128_mode_needed): Use SSE_REG
1044 instead of ALL_SSE_REG to check if function call preserves some
1045 256-bit SSE registers.
1046
1047 2019-10-08 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
1048
1049 * config.gcc: Move -L usage from LINK_OS_EXTRA_SPEC32 and
1050 LINK_OS_EXTRA_SPEC64 to MD_STARTFILE_PREFIX and
1051 MD_STARTFILE_PREFIX_1 when using --with-advance-toolchain.
1052
1053 2019-10-08 Richard Biener <rguenther@suse.de>
1054
1055 * tree-vectorizer.h (_stmt_vec_info::v_reduc_type): Remove.
1056 (_stmt_vec_info::is_reduc_info): Add.
1057 (STMT_VINFO_VEC_REDUCTION_TYPE): Remove.
1058 (vectorizable_condition): Remove.
1059 (vectorizable_shift): Likewise.
1060 (vectorizable_reduction): Adjust.
1061 (info_for_reduction): New.
1062 * tree-vect-loop.c (vect_force_simple_reduction): Fold into...
1063 (vect_analyze_scalar_cycles_1): ... here.
1064 (vect_analyze_loop_operations): Adjust.
1065 (needs_fold_left_reduction_p): Simplify for single caller.
1066 (vect_is_simple_reduction): Likewise. Remove stmt restriction
1067 for nested cycles not part of double reductions.
1068 (vect_model_reduction_cost): Pass in the reduction type.
1069 (info_for_reduction): New function.
1070 (vect_create_epilog_for_reduction): Use it, access reduction
1071 meta off the stmt info it returns. Use STMT_VINFO_REDUC_TYPE
1072 instead of STMT_VINFO_VEC_REDUCTION_TYPE.
1073 (vectorize_fold_left_reduction): Remove pointless assert.
1074 (vectorizable_reduction): Analyze the full reduction when
1075 visiting the outermost PHI. Simplify. Use STMT_VINFO_REDUC_TYPE
1076 instead of STMT_VINFO_VEC_REDUCTION_TYPE. Direct reduction
1077 stmt code-generation to vectorizable_* in most cases. Verify
1078 code-generation only for cases handled by
1079 vect_transform_reductuon.
1080 (vect_transform_reduction): Use info_for_reduction to get at
1081 reduction meta. Simplify.
1082 (vect_transform_cycle_phi): Likewise.
1083 (vectorizable_live_operation): Likewise.
1084 * tree-vect-patterns.c (vect_reassociating_reduction_p): Look
1085 at the PHI node for STMT_VINFO_REDUC_TYPE.
1086 * tree-vect-slp.c (vect_schedule_slp_instance): Remove no
1087 longer necessary code.
1088 * tree-vect-stmts.c (vectorizable_shift): Make static again.
1089 (vectorizable_condition): Likewise. Get at reduction related
1090 info via info_for_reduction.
1091 (vect_analyze_stmt): Adjust.
1092 (vect_transform_stmt): Likewise.
1093 * tree-vectorizer.c (vec_info::new_stmt_vec_info): Initialize
1094 STMT_VINFO_REDUC_TYPE instead of STMT_VINFO_VEC_REDUCTION_TYPE.
1095
1096 2019-10-08 Joseph Myers <joseph@codesourcery.com>
1097
1098 * doc/invoke.texi (-ffp-int-builtin-inexact): Document
1099 -fno-fp-int-builtin-inexact default for C2X.
1100
1101 2019-10-07 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
1102 Richard Biener <rguenther@suse.de>
1103
1104 PR tree-optimization/91532
1105 * tree-if-conv.c: Include tree-ssa-dse.h.
1106 (ifcvt_local_dce): Change param from bb to loop,
1107 and call dse_classify_store.
1108 (tree_if_conversion): Pass loop instead of loop->header as arg
1109 to ifcvt_local_dce.
1110 * tree-ssa-dse.c: Include tree-ssa-dse.h.
1111 (delete_dead_or_redundant_assignment): Remove static qualifier from
1112 declaration, and add prototype in tree-ssa-dse.h.
1113 (dse_store_status): Move to tree-ssa-dse.h.
1114 (dse_classify_store): Remove static qualifier and add new tree param
1115 stop_at_vuse, and add prototype in tree-ssa-dse.h.
1116 * tree-ssa-dse.h: New header.
1117
1118 2019-10-07 Iain Sandoe <iain@sandoe.co.uk>
1119
1120 * config/darwin.c (machopic_output_indirection): Don't put
1121 hidden symbol indirections into the .data section, use the
1122 non-lazy symbol pointers section as normal.
1123 (darwin_encode_section_info): Record if a symbol is hidden.
1124 * config/darwin.h (MACHO_SYMBOL_FLAG_HIDDEN_VIS): New.
1125 (MACHO_SYMBOL_HIDDEN_VIS_P): New.
1126
1127 2019-10-07 Iain Sandoe <iain@sandoe.co.uk>
1128
1129 * config/darwin.c (machopic_symbol_defined_p): Use symbol flag
1130 predicates instead of accessing bits directly.
1131 (machopic_indirect_call_target): Likewise.
1132 (machopic_output_indirection): Likewise.
1133 (darwin_encode_section_info): Improve description. Use renamed
1134 symbol flags. Use predicate macros for variables and functions.
1135 * config/darwin.h:
1136 Rename MACHO_SYMBOL_VARIABLE to MACHO_SYMBOL_FLAG_VARIABLE.
1137 Rename MACHO_SYMBOL_DEFINED to MACHO_SYMBOL_FLAG_DEFINED.
1138 Rename MACHO_SYMBOL_STATIC to MACHO_SYMBOL_FLAG_STATIC.
1139 (MACHO_SYMBOL_VARIABLE_P): New.
1140 (MACHO_SYMBOL_DEFINED_P):New.
1141 (MACHO_SYMBOL_STATIC_P): New.
1142 * config/i386/darwin.h (MACHO_SYMBOL_FLAG_VARIABLE): Delete.
1143 (SYMBOL_FLAG_SUBT_DEP): New.
1144 * config/rs6000/darwin.h (SYMBOL_FLAG_SUBT_DEP): New.
1145
1146 2019-10-07 Jozef Lawrynowicz <jozef.l@mittosystems.com>
1147
1148 * config/msp430/msp430.c (msp430_file_end): s/msp_/msp430_/
1149 (msp430_expand_epilogue): Likewise.
1150 * config/msp430/predicates.md: Likewise.
1151 * config/msp430/msp430.md: Likewise.
1152 Replace blocks of 8 spaces with tabs.
1153
1154 2019-10-07 Jozef Lawrynowicz <jozef.l@mittosystems.com>
1155
1156 * config/msp430/msp430-protos.h (msp430_split_addsi): New prototype.
1157 * config/msp430/msp430.c (msp430_split_addsi): New.
1158 * config/msp430/msp430.md: Call msp430_split_addsi () instead of using
1159 a block of C code for splitting addsi.
1160
1161 2019-10-07 Uroš Bizjak <ubizjak@gmail.com>
1162
1163 * config/i386/i386-expand.c (ix86_expand_floorceildf_32,
1164 ix86_expand_rounddf_32): Reorder functions.
1165 * config/i386/i386-protos.h: Update.
1166
1167 2019-10-07 Jozef Lawrynowicz <jozef.l@mittosystems.com>
1168
1169 * config.in: Regenerate.
1170 * config/msp430/constraints.md: Fix docstring for "Ys" constraint.
1171 Add new "Yx" constraint.
1172 * config/msp430/driver-msp430.c (msp430_propagate_region_opt): New spec
1173 function.
1174 * config/msp430/msp430-protos.h (msp430_op_not_in_high_mem): New
1175 prototype.
1176 * config/msp430/msp430.c (msp430_option_override): Allow the lower
1177 code/data region to be selected in the small memory model.
1178 (msp430_section_attr): Don't warn if the "section" and "lower"
1179 attributes are used together.
1180 (msp430_handle_generic_attribute): Likewise.
1181 (msp430_var_in_low_mem): New function.
1182 (TARGET_ENCODE_SECTION_INFO): Define.
1183 (msp430_encode_section_info): New function.
1184 (gen_prefix): Return early in the small memory model.
1185 Require TARGET_USE_LOWER_REGION_PREFIX to be set before adding the
1186 ".lower" prefix if -m{code,data}-region=lower have been passed.
1187 (msp430_output_aligned_decl_common): Emit common symbols when
1188 -mdata-region=lower is passed unless TARGET_USE_LOWER_REGION_PREFIX is
1189 set.
1190 (TARGET_ASM_FILE_END): Define.
1191 (msp430_file_end): New function.
1192 (msp430_do_not_relax_short_jumps): Allow relaxation when
1193 function will be in the lower region.
1194 (msp430_op_not_in_high_mem): New function.
1195 (msp430_print_operand): Check "msp430_op_not_in_high_mem" for
1196 the 'X' operand selector.
1197 Clarify comment for 'x' operand selector.
1198 * config/msp430/msp430.h (LINK_SPEC): Propagate
1199 -m{code,data}-region to the linker via spec function
1200 msp430_propagate_region_opt.
1201 (msp430_propagate_region_opt): New prototype.
1202 (EXTRA_SPEC_FUNCTIONS): Add msp430_propagate_region_opt.
1203 (SYMBOL_FLAG_LOW_MEM): Define.
1204 * config/msp430/msp430.md (addsipsi3): Add missing "%X" operand
1205 selector.
1206 (zero_extendqihi2): Fix operand number used by "%X" selector.
1207 (zero_extendqisi2): Likewise.
1208 (zero_extendhisi2): Likewise.
1209 (movqi): Use "Yx" constraint in place of "%X" operand selector.
1210 (movhi): Likewise.
1211 (addqi3): Likewise.
1212 (addhi3): Likewise.
1213 (addsi3): Likewise.
1214 (addhi3_cy): Likewise.
1215 (addchi4_cy): Likewise.
1216 (subqi3): Likewise.
1217 (subhi3): Likewise.
1218 (subsi3): Likewise.
1219 (bic<mode>3): Likewise.
1220 (and<mode>3): Likewise.
1221 (ior<mode>3): Likewise.
1222 (xor<mode>3): Likewise.
1223 (slli_1): Add missing "%X" operand selector.
1224 (slll_1): Likewise.
1225 (slll_2): Likewise.
1226 (srai_1): Likewise.
1227 (sral_1): Likewise.
1228 (sral_2): Likewise.
1229 (srli_1): Likewise.
1230 (srll_1): Likewise.
1231 (cbranchqi4_real): Use "Yx" constraint in place of "%X" operand
1232 selector.
1233 (cbranchhi4_real): Likewise.
1234 (cbranchqi4_reversed): Likewise.
1235 (cbranchhi4_reversed): Likewise.
1236 (*bitbranch<mode>4): Likewise.
1237 (*bitbranch<mode>4_z): Remove unnecessary "%x" operand selector.
1238 * config/msp430/msp430.opt (mcode-region=): Set default to
1239 MSP430_REGION_LOWER. Improve docstring.
1240 (mdata-region=): Likewise.
1241 (muse-lower-region-prefix): New option.
1242 * config/msp430/t-msp430 (MULTILIB_OPTIONS): Add
1243 mdata-region=none multilib.
1244 (MULTILIB_MATCHES): Set mdata-region={upper,either} to match
1245 mdata-region=none multilib.
1246 MULTILIB_EXCEPTIONS: Remove.
1247 MULTILIB_REQUIRED: Define.
1248 * configure: Regenerate.
1249 * configure.ac: Define HAVE_AS_GNU_ATTRIBUTE and
1250 HAVE_AS_MSPABI_ATTRIBUTE if GAS version >= 2.33.50.
1251 * doc/extend.texi: Clarify comment for {upper,lower,either}
1252 function attributes.
1253 Add separate description for "lower" variable attribute.
1254
1255 2019-10-07 Ilya Leoshkevich <iii@linux.ibm.com>
1256
1257 PR target/77918
1258 * optabs-tree.c (vcond_icode_p): New function.
1259 (vcond_eq_icode_p): Likewise.
1260 (expand_vec_cond_expr_p): Use vcond_icode_p and
1261 vcond_eq_icode_p.
1262 * optabs.c (can_vcond_compare_p): New function.
1263 * optabs.h (can_vcond_compare_p): Likewise.
1264
1265 2019-10-07 Ilya Leoshkevich <iii@linux.ibm.com>
1266
1267 PR target/77918
1268 * gimple-expr.c (gimple_cond_get_ops_from_tree): Assert that the
1269 caller passes a non-trapping condition.
1270 (is_gimple_condexpr): Allow trapping conditions.
1271 (is_gimple_condexpr_1): New helper function.
1272 (is_gimple_condexpr_for_cond): New function, acts like old
1273 is_gimple_condexpr.
1274 * gimple-expr.h (is_gimple_condexpr_for_cond): New function.
1275 * gimple.c (gimple_could_trap_p_1): Handle COND_EXPR and
1276 VEC_COND_EXPR. Fix an issue with statements like i = (fp < 1.).
1277 * gimplify.c (gimplify_cond_expr): Use
1278 is_gimple_condexpr_for_cond.
1279 (gimplify_expr): Allow is_gimple_condexpr_for_cond.
1280 * tree-eh.c (operation_could_trap_p): Assert on COND_EXPR and
1281 VEC_COND_EXPR.
1282 (tree_could_trap_p): Handle COND_EXPR and VEC_COND_EXPR.
1283 * tree-ssa-forwprop.c (forward_propagate_into_gimple_cond): Use
1284 is_gimple_condexpr_for_cond, remove pointless tmp check
1285 (forward_propagate_into_cond): Remove pointless tmp check.
1286
1287 2019-10-07 Vladislav Ivanishin <vlad@ispras.ru>
1288
1289 * gimple-iterator.h (gsi_next_nonvirtual_phi): Change the semantics to
1290 match that of other gsi_next_* functions. Adjust the comment.
1291 (gsi_start_nonvirtual_phis): New function.
1292 * ipa-icf.c (sem_function::compare_phi_node): Update uses of
1293 gsi_next_nonvirtual_phi accordingly. (No functional change.)
1294
1295 2019-10-07 Vladislav Ivanishin <vlad@ispras.ru>
1296
1297 * doc/invoke.texi (-Wuninitialized): Don't mention the clobbered by
1298 setjmp situation here. Fix a verb's ending: "the exact variables or
1299 elements for which there are warnings depends" -> "... depend".
1300
1301 2019-10-07 Aldy Hernandez <aldyh@redhat.com>
1302
1303 * ipa-prop.c (ipa_vr::nonzero_p): Add TYPE_UNSIGNED check.
1304
1305 2019-10-07 Aldy Hernandez <aldyh@redhat.com>
1306
1307 * ipa-prop.c (ipa_vr::nonzero_p): New.
1308 (ipcp_update_vr): Use nonzero_p instead of open-coding check for
1309 non-zero range.
1310 * ipa-prop.h (class ipa_vr): Add nonzero_p.
1311 * tree-vrp.c (range_has_numeric_bounds_p): New.
1312 (range_int_cst_p): Use range_has_numeric_bounds_p.
1313 (get_range_op_handler): New.
1314 (supported_types_p): New.
1315 (defined_ranges_p): New.
1316 (drop_undefines_to_varying): New.
1317 (range_fold_binary_symbolics_p): New.
1318 (range_fold_unary_symbolics_p): New.
1319 (range_fold_unary_expr): Extract out into above functions.
1320 (range_fold_binary_expr): Same.
1321 (value_range_base::normalize_addresses): New.
1322 (value_range_base::normalize_symbolics): Normalize addresses.
1323 * tree-vrp.h (class value_range_base): Add normalize_addresses.
1324
1325 2019-10-07 Aldy Hernandez <aldyh@redhat.com>
1326
1327 * tree-vrp.c (value_range_base::singleton_p): Use
1328 value_range_base::num_pairs instead of vrp_val_is* to check
1329 if a range has one sub-range.
1330
1331 2019-10-07 Richard Sandiford <richard.sandiford@arm.com>
1332
1333 * ira-lives.c (check_and_make_def_conflict): Handle cases in which
1334 DEF is not a true earlyclobber but is tied to a specific input
1335 operand, and so is effectively earlyclobber wrt inputs that have
1336 different values.
1337 (make_early_clobber_and_input_conflicts): Pass this case to the above.
1338
1339 2019-10-07 Richard Sandiford <richard.sandiford@arm.com>
1340
1341 * machmode.h (opt_mode): Mark constructors with CONSTEXPR.
1342 (pod_mode): Mark operators likewise.
1343 (scalar_int_mode): Mark non-default constructors and
1344 operators with CONSTEXPR.
1345 (scalar_float_mode, scalar_mode, complex_mode): Likewise.
1346 (fixed_size_mode): Likewise.
1347
1348 2019-10-07 Richard Sandiford <richard.sandiford@arm.com>
1349
1350 PR target/91994
1351 * config/i386/sse.md (avx_vzeroupper): Turn into a define_expand
1352 and wrap the unspec_volatile in a parallel.
1353 (*avx_vzeroupper): New define_insn. Use a match_parallel around
1354 the unspec_volatile.
1355 * config/i386/predicates.md (vzeroupper_pattern): Expect the
1356 unspec_volatile to be wrapped in a parallel.
1357 * config/i386/i386-features.c (ix86_add_reg_usage_to_vzeroupper)
1358 (ix86_add_reg_usage_to_vzerouppers): New functions.
1359 (rest_of_handle_insert_vzeroupper): Use them to add register
1360 usage information to the vzeroupper instructions.
1361
1362 2019-10-07 Richard Biener <rguenther@suse.de>
1363
1364 PR tree-optimization/91975
1365 * tree-ssa-loop-ivcanon.c (constant_after_peeling): Consistently
1366 handle invariants.
1367
1368 2019-10-06 Richard Sandiford <richard.sandiford@arm.com>
1369
1370 * var-tracking.c (dataflow_set_clear_at_call): Hoist temporary
1371 function result outside of EXECUTE_IF_SET_IN_HARD_REG_SET.
1372
1373 2019-10-06 Iain Sandoe <iain@sandoe.co.uk>
1374
1375 * config/darwin.c (darwin_override_options): Adjust objective-c
1376 ABI version error messages to avoid punctuation and contracted
1377 negations.
1378
1379 2019-10-05 Jan Hubicka <hubicka@ucw.cz>
1380
1381 * ipa-inline.c: Fix type; compute size rather than self_size
1382 for size of caller function.
1383
1384 2019-10-05 Iain Sandoe <iain@sandoe.co.uk>
1385
1386 PR target/59888
1387 * config/darwin.c (darwin_rodata_section): Add relocation flag,
1388 choose const_data section for constants with relocations.
1389 (machopic_select_section): Pass relocation flag to
1390 darwin_rodata_section ().
1391
1392 2019-10-05 Jakub Jelinek <jakub@redhat.com>
1393
1394 PR tree-optimization/91734
1395 * generic-match-head.c: Include fold-const-call.h.
1396 * match.pd (sqrt(x) cmp c): Check the boundary value and
1397 in case inexact computation of c*c affects comparison of the boundary,
1398 turn LT_EXPR into LE_EXPR, GE_EXPR into GT_EXPR, LE_EXPR into LT_EXPR
1399 or GT_EXPR into GE_EXPR. Punt for sqrt comparisons against NaN and
1400 for -frounding-math. For c2, try the next smaller or larger floating
1401 point constant depending on comparison code and if it has the same
1402 sqrt as c2, use it instead of c2.
1403
1404 2019-10-04 Martin Sebor <msebor@redhat.com>
1405
1406 PR middle-end/91977
1407 * tree-ssa-strlen.c (count_nonzero_bytes): Handle assignments with
1408 MEM_REF right operand. Avoid failing for MEM_REF assignments from
1409 uninitialized objects.
1410
1411 2019-10-04 Martin Sebor <msebor@redhat.com>
1412
1413 * builtins.c (compute_objsize): Add an argument.
1414 * tree-object-size.c (addr_object_size): Same.
1415 (compute_builtin_object_size): Same.
1416 * tree-object-size.h (compute_builtin_object): Same.
1417
1418 2019-10-04 Jan Hubicka <hubicka@ucw.cz>
1419
1420 * ipa-inline.c (inline_insns_single, inline_insns_auto): Fix typo.
1421
1422 2019-10-04 Rafael Tsuha <rafael.tsuha@usp.br>
1423
1424 * match.pd (sinh (x) / cosh (x)): New simplification rule.
1425
1426 2019-10-04 Martin Jambor <mjambor@suse.cz>
1427
1428 * tree-ssa-forwprop.c (simplify_builtin_call): Set gimple call
1429 fntype when switching to calling memcpy instead of memset.
1430
1431 2019-10-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
1432
1433 * hash-table.h (hash_table::empty_slow): Don't assign
1434 size_t values to int variables.
1435
1436 2019-10-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
1437
1438 * expr.c (convert_mode_scalar): Remove shadowing local var.
1439 (emit_block_move): Rename local vars.
1440 (block_move_libcall_safe_for_call_parm): Remove shadowing local var.
1441 (emit_push_insn): Rename local vars.
1442 (expand_assignment): Fix wrong mode in assign_stack_temp. Remove
1443 shadowing local vars.
1444 (store_constructor): Remove shadowing local vars. Rename local var.
1445 (store_field, expand_cond_expr_using_cmove,
1446 expand_expr_real_2): Remove shadowing local vars.
1447 (expand_expr_real_1,
1448 do_store_flag): Remove shadowing local vars. Rename local vars.
1449
1450 2019-10-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
1451
1452 * cgraph.h (FOR_EACH_ALIAS): Avoid shadowing the loop variable.
1453
1454 2019-10-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
1455
1456 * genmatch.c (commutate): Rename local var.
1457 (lower_cond): Reuse local var.
1458 (dt_node::gen, dt_node::gen_kids, dt_node::gen_kids_1,
1459 dt_operand::gen, dt_operand::gen_gimple_expr,
1460 dt_simplify::gen): Add a param. Rename generated vars.
1461 (decision_tree::insert_operand,
1462 (capture_info::walk_match, capture_info::walk_result,
1463 capture_info::walk_c_expr): Rename local vars.
1464 (expr::gen_transform): Rename generated vars.
1465 Use snprintf. Rename local vars.
1466 (capture::gen_transform, dt_operand::get_name,
1467 dt_operand::gen_opname): Rename generated vars.
1468 (write_predicate): Adjust call to gen_kids.
1469 (parser::get_internal_capture_id): Rename generated vars.
1470 (parser::parse_expr): Rename local vars.
1471 (parser::parse_if): Remove local var.
1472 (parser::parse_pattern, add_operator): Rename local vars.
1473
1474 2019-10-04 Joseph Myers <joseph@codesourcery.com>
1475
1476 * builtins.def (DEF_C2X_BUILTIN): New macro.
1477 (exp10, exp10f, exp10l, fabsd32, fabsd64, fabsd128, nand32)
1478 (nand64, nand128, roundeven, roundevenf, roundevenl, strdup)
1479 (strndup): Use DEF_C2X_BUILTIN.
1480 * coretypes.h (enum function_class): Add function_c2x_misc.
1481
1482 2019-10-04 Maya Rashish <coypu@sdf.org>
1483
1484 * ira-color.c (update_costs_from_allocno): Call
1485 ira_init_register_move_cost_if_necessary.
1486
1487 2019-10-04 Jeff Law <law@redhat.com>
1488
1489 * config/h8300/h8300.md (cpymemsi): Disable.
1490 (movmd, movmd_internal_<mode>, movstr, movsd):
1491 (movstr, movsd, stpcpy_internal_<mode>: Likewise.
1492 (movmd splitter, movsd splitter): Likewise.
1493
1494 * range-op.cc (range_tests): Avoid two tests when ints and
1495 shorts are the same size.
1496
1497 2019-10-04 Richard Biener <rguenther@suse.de>
1498
1499 PR lto/91968
1500 * tree.c (find_decls_types_r): Do not remove LABEL_DECLs from
1501 BLOCK_VARS.
1502
1503 2019-10-04 Richard Biener <rguenther@suse.de>
1504
1505 PR tree-optimization/91982
1506 * tree-vect-loop.c (vectorizable_live_operation): Also guard
1507 against EXTRACT_LAST_REDUCTION.
1508 * tree-vect-stmts.c (vect_transform_stmt): Likewise.
1509
1510 2019-10-04 Aldy Hernandez <aldyh@redhat.com>
1511
1512 * range-op.o (value_range_from_overflowed_bounds): Rename from
1513 adjust_overflow_bound.
1514 (value_range_with_overflow): Rename from
1515 create_range_with_overflow.
1516 (create_possibly_reversed_range): Adjusted for above renames.
1517 (operator_*::wi_fold): Same.
1518 (cross_product_operator::wi_cross_productor): Same.
1519
1520 2019-10-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
1521
1522 * doc/invoke.texi (-Wshadow=global, -Wshadow=local,
1523 -Wshadow=compatible-local): Fix description.
1524 Add an example where -Wshadow=compatible-local does not
1525 warn.
1526
1527 2019-10-03 John David Anglin <danglin@gcc.gnu.org>
1528
1529 * config/pa/pa.h (MAX_PCREL17F_OFFSET): Adjust.
1530
1531 * config/pa/pa.c (pa_output_call): Remove 64-bit sibcall sequence.
1532 (pa_attr_length_call): Adjust length for 64-bit plabel sequence.
1533
1534 2019-10-03 Aaron Sawdey <acsawdey@linux.ibm.com>
1535
1536 * expr.c (emit_block_move_hints): Slightly cleaner fix to
1537 can_move_by_pieces issue.
1538
1539 2019-10-03 Iain Sandoe <iain@sandoe.co.uk>
1540
1541 PR target/87243
1542 * config/darwin-driver.c (maybe_get_sysroot_from_sdkroot): New.
1543 (darwin_driver_init): Use the sysroot provided by SDKROOT when that
1544 is available and the user has not set one on the command line.
1545
1546 2019-10-03 Dragan Mladjenovic <dmladjenovic@wavecomp.com>
1547
1548 PR target/91769
1549 * config/mips/mips.c (mips_split_move): Use reg_overlap_mentioned_p
1550 instead of REGNO equality check on addr.reg.
1551
1552 2019-10-03 Jan Hubicka <hubicka@ucw.cz>
1553
1554 * params.def (PARAM_INLINE_HEURISTICS_HINT_PERCENT,
1555 PARAM_INLINE_HEURISTICS_HINT_PERCENT_O2): New.
1556 * doc/invoke.texi (inline-heuristics-hint-percent,
1557 inline-heuristics-hint-percent-O2): Document.
1558 * tree-inline.c (inline_insns_single, inline_insns_auto): Add new
1559 hint attribute.
1560 (can_inline_edge_by_limits_p): Use it.
1561
1562 2019-10-03 Richard Sandiford <richard.sandiford@arm.com>
1563
1564 * config/arm/arm.c (arm_print_value): Use real_to_decimal
1565 to print CONST_DOUBLEs.
1566
1567 2019-10-03 Andrea Corallo <andrea.corallo@arm.com>
1568
1569 * ipa-cp.c (ipa_cp_c_finalize): Release ipcp_transformation_sum.
1570 * ipa-prop.c (ipcp_free_transformation_sum): New function.
1571 * ipa-prop.h (ipcp_free_transformation_sum): Add declaration.
1572
1573 2019-10-03 Aldy Hernandez <aldyh@redhat.com>
1574
1575 * Makefile.in (OBJS): Add range.o and range-op.o.
1576 Remove wide-int-range.o.
1577 * function-tests.c (test_ranges): New.
1578 (function_tests_c_tests): Call test_ranges.
1579 * ipa-cp.c (ipa_vr_operation_and_type_effects): Call
1580 range_fold_unary_expr instead of extract_range_from_unary_expr.
1581 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Same.
1582 * range-op.cc: New file.
1583 * range-op.h: New file.
1584 * range.cc: New file.
1585 * range.h: New file.
1586 * selftest.h (range_tests): New prototype.
1587 * ssa.h: Include range.h.
1588 * tree-vrp.c (value_range_base::value_range_base): New
1589 constructors.
1590 (value_range_base::singleton_p): Do not call
1591 ranges_from_anti_range until sure we will need to.
1592 (value_range_base::type): Rename gcc_assert to
1593 gcc_checking_assert.
1594 (vrp_val_is_max): New argument.
1595 (vrp_val_is_min): Same.
1596 (wide_int_range_set_zero_nonzero_bits): Move from
1597 wide-int-range.cc.
1598 (extract_range_into_wide_ints): Remove.
1599 (extract_range_from_multiplicative_op): Remove.
1600 (extract_range_from_pointer_plus_expr): Abstract POINTER_PLUS code
1601 from extract_range_from_binary_expr.
1602 (extract_range_from_plus_minus_expr): Abstract PLUS/MINUS code
1603 from extract_range_from_binary_expr.
1604 (extract_range_from_binary_expr): Remove.
1605 (normalize_for_range_ops): New.
1606 (range_fold_binary_expr): New.
1607 (range_fold_unary_expr): New.
1608 (value_range_base::num_pairs): New.
1609 (value_range_base::lower_bound): New.
1610 (value_range_base::upper_bound): New.
1611 (value_range_base::upper_bound): New.
1612 (value_range_base::contains_p): New.
1613 (value_range_base::invert): New.
1614 (value_range_base::union_): New.
1615 (value_range_base::intersect): New.
1616 (range_compatible_p): New.
1617 (value_range_base::operator==): New.
1618 (determine_value_range_1): Call range_fold_*expr instead of
1619 extract_range_from_*expr.
1620 * tree-vrp.h (class value_range_base): Add new constructors.
1621 Add methods for union_, intersect, operator==, contains_p,
1622 num_pairs, lower_bound, upper_bound, invert.
1623 (vrp_val_is_min): Add handle_pointers argument.
1624 (vrp_val_is_max): Same.
1625 (extract_range_from_unary_expr): Remove.
1626 (extract_range_from_binary_expr): Remove.
1627 (range_fold_unary_expr): New.
1628 (range_fold_binary_expr): New.
1629 * vr-values.c (vr_values::extract_range_from_binary_expr): Call
1630 range_fold_binary_expr instead of extract_range_from_binary_expr.
1631 (vr_values::extract_range_basic): Same.
1632 (vr_values::extract_range_from_unary_expr): Call
1633 range_fold_unary_expr instead of extract_range_from_unary_expr.
1634 * wide-int-range.cc: Remove.
1635 * wide-int-range.h: Remove.
1636
1637 2019-10-02 Michael Meissner <meissner@linux.ibm.com>
1638
1639 * config/rs6000/rs6000.c (mem_operand_gpr): Use
1640 SIGNED_16BIT_OFFSET_EXTRA_P macro.
1641 (mem_operand_ds_form): Use SIGNED_16BIT_OFFSET_EXTRA_P macro.
1642 (rs6000_mode_dependent_address): Use SIGNED_16BIT_OFFSET_EXTRA_P
1643 macro.
1644
1645 2019-10-02 Joseph Myers <joseph@codesourcery.com>
1646
1647 * ginclude/stdint-gcc.h [__STDC_WANT_IEC_60559_BFP_EXT__]: Change
1648 condition on WIDTH macros to [__STDC_WANT_IEC_60559_BFP_EXT__ ||
1649 (__STDC_VERSION__ && __STDC_VERSION__ > 201710L)].
1650 * glimits.h: Likewise.
1651
1652 2019-10-03 Jakub Jelinek <jakub@redhat.com>
1653
1654 PR rtl-optimization/91976
1655 * expr.c (emit_block_move_hints): Don't call can_move_by_pieces if
1656 size is not CONST_INT_P, set pieces_ok to false in that case. Simplify
1657 CONST_INT_P (size) && pieces_ok to pieces_ok. Formatting fix.
1658
1659 2019-10-02 Martin Sebor <msebor@redhat.com>
1660
1661 PR tree-optimization/80936
1662 * builtins.def (bcmp, bcopy, bzero): Declare nonnull.
1663
1664 2019-10-02 Richard Sandiford <richard.sandiford@arm.com>
1665
1666 * cgraph.c (cgraph_node::rtl_info): Use SET_HARD_REG_SET
1667 instead of reg_class_contents[ALL_REGS].
1668
1669 2019-09-30 Jason Merrill <jason@redhat.com>
1670
1671 Add some hash_map_safe_* functions like vec_safe_*.
1672 * hash-map.h (default_hash_map_size): New variable.
1673 (create_ggc): Use it as default argument.
1674 (hash_map_maybe_create, hash_map_safe_get)
1675 (hash_map_safe_get_or_insert, hash_map_safe_put): New fns.
1676
1677 2019-10-02 Jan Hubicka <hubicka@ucw.cz>
1678
1679 * cif-code.def (MAX_INLINE_INSNS_SINGLE_O2_LIMIT,
1680 MAX_INLINE_INSNS_AUTO_O2_LIMIT): New.
1681 * ipa-inline.c (inline_insns_single, inline_insns_auto): New functions.
1682 (can_inline_edge_by_limits_p): Use it.
1683 (big_speedup_p): Use PARAM_INLINE_MIN_SPEEDUP_O2.
1684 (want_inline_small_function_p): Use O2 bounds.
1685 (edge_badness): LIkewise.
1686 * opts.c (default_options): Add OPT_finline_functions.
1687 * params.def (PARAM_INLINE_MIN_SPEEDUP_O2,
1688 PARAM_MAX_INLINE_INSNS_SINGLE_O2, PARAM_MAX_INLINE_INSNS_AUTO_O2):
1689 New parameters.
1690 * doc/invoke.texi (-finline-functions): Update documentation.
1691 (max-inline-insns-single-O2, max-inline-insns-auto-O2,
1692 inline-min-speedup-O2): Document.
1693 (early-inlining-insns-O2): Simplify docs.
1694
1695 2019-10-02 Alexander Monakov <amonakov@ispras.ru>
1696
1697 PR rtl-optimization/87047
1698 * ifcvt.c (average_cost): New static function. Use it...
1699 (noce_process_if_block): ... here.
1700
1701 2019-10-02 Aaron Sawdey <acsawdey@linux.ibm.com>
1702
1703 * config/rs6000/rs6000-protos.h (expand_block_move): Change prototype.
1704 * config/rs6000/rs6000-string.c (expand_block_move): Add
1705 might_overlap parm.
1706 * config/rs6000/rs6000.md (movmemsi): Add new pattern.
1707 (cpymemsi): Add might_overlap parm to expand_block_move() call.
1708
1709 2019-10-02 Aaron Sawdey <acsawdey@linux.ibm.com>
1710
1711 * builtins.c (expand_builtin_memory_copy_args): Add might_overlap parm.
1712 (expand_builtin_memcpy): Use might_overlap parm.
1713 (expand_builtin_mempcpy_args): Use might_overlap parm.
1714 (expand_builtin_memmove): Call expand_builtin_memory_copy_args.
1715 (expand_builtin_memory_copy_args): Add might_overlap parm.
1716 * expr.c (emit_block_move_via_cpymem): Rename to
1717 emit_block_move_via_pattern, add might_overlap parm, use cpymem
1718 or movmem optab as appropriate.
1719 (emit_block_move_hints): Add might_overlap parm, do the right
1720 thing for might_overlap==true.
1721 * expr.h (emit_block_move_hints): Update prototype.
1722
1723 2019-10-02 Eric Botcazou <ebotcazou@adacore.com>
1724
1725 * tree-eh.h (unsplit_eh_edges): Declare.
1726 * tree-eh.c (maybe_remove_unreachable_handlers): Detect more cases.
1727 (unsplit_eh_edges): New function wrapping unsplit_all_eh.
1728 * gimple-ssa-store-merging.c: Include cfganal.h cfgcleanup.h except.h.
1729 (struct store_immediate_info): Add lp_nr field.
1730 (store_immediate_info::store_immediate_info): Add NR2 parameter and
1731 initialize lp_nr with it.
1732 (struct merged_store_group): Add lp_nr and only_constants fields.
1733 (merged_store_group::merged_store_group): Initialize them.
1734 (merged_store_group::can_be_merged_into): Deal with them.
1735 (pass_store_merging): Rename terminate_and_release_chain into
1736 terminate_and_process_chain.
1737 (pass_store_merging::terminate_and_process_all_chains): Adjust to above
1738 renaming and remove useless assertions.
1739 (pass_store_merging::terminate_all_aliasing_chains): Small tweak.
1740 (stmts_may_clobber_ref_p): Be prepared for different basic blocks.
1741 (imm_store_chain_info::coalesce_immediate_stores): Use only_constants
1742 instead of always recomputing it and compare lp_nr.
1743 (imm_store_chain_info::output_merged_store): If the group is in an
1744 active EH region, register new stores if they can throw. Moreover,
1745 if the insertion has created new basic blocks, adjust the PHI nodes
1746 of the post landing pad.
1747 (imm_store_chain_info::output_merged_stores): If the original stores
1748 are in an active EH region, deregister them.
1749 (lhs_valid_for_store_merging_p): Prettify.
1750 (adjust_bit_pos): New function extracted from...
1751 (mem_valid_for_store_merging): ...here. Use it for the base address
1752 and also for the offset if it is the addition of a constant.
1753 (lp_nr_for_store): New function.
1754 (pass_store_merging::process_store): Change return type to bool.
1755 Call lp_nr_for_store to initialize the store info. Propagate the
1756 return status of various called functions to the return value.
1757 (store_valid_for_store_merging_p): New predicate.
1758 (enum basic_block_status): New enumeration.
1759 (get_status_for_store_merging): New function.
1760 (pass_store_merging::execute): If the function can throw and catch
1761 non-call exceptions, unsplit the EH edges on entry and clean up the
1762 CFG on exit if something changed. Call get_status_for_store_merging
1763 for every basic block and keep the chains open across basic blocks
1764 when possible. Terminate and process open chains at the end, if any.
1765
1766 2019-10-02 Richard Sandiford <richard.sandiford@arm.com>
1767
1768 * reginfo.c (globalize_reg): Fix shadowed variable in
1769 function_abis walk.
1770
1771 2019-10-02 Martin Jambor <mjambor@suse.cz>
1772
1773 * cgraph.c (symbol_table::create_edge): New parameter cloning_p,
1774 do not compute some stuff when set.
1775 (cgraph_node::create_edge): Likewise.
1776 (cgraph_node::create_indirect_edge): Renamed last parameter to
1777 coning_p and flipped its meaning, don't even calculate
1778 inline_failed when set.
1779 * cgraph.h (cgraph_node::create_edge): Add new parameter.
1780 (symbol_table::::create_edge): Likewise.
1781 (cgraph_node::create_indirect_edge): Rename last parameter, flip
1782 the default value.
1783 * cgraphclones.c (cgraph_edge::clone): Pass true cloning_p to all
1784 call graph edge creating functions.
1785
1786 2019-10-01 Jan Hubicka <hubicka@ucw.cz>
1787
1788 PR c++/91222
1789 * ipa-devirt.c (warn_types_mismatch): Fix conditional on anonymous
1790 namespace types.
1791
1792 2019-10-02 Shahab Vahedi <shahab@synopsys.com>
1793
1794 * config/arc/arc.h (ASM_SPEC): Pass -mcode-density.
1795
1796 2019-10-02 Richard Biener <rguenther@suse.de>
1797
1798 * tree-vectorizer.h (vect_transform_reduction): Declare.
1799 * tree-vect-stmts.c (vect_transform_stmt): Use it.
1800 * tree-vect-loop.c (vectorizable_reduction): Split out reduction
1801 stmt transform to ...
1802 (vect_transform_reduction): ... this.
1803
1804 2019-10-02 Tobias Burnus <tobias@codesourcery.com>
1805
1806 * omp-low.c (lower_omp_target): Dereference optional argument
1807 to work with the right pointer.
1808
1809 2019-10-02 Kwok Cheung Yeung <kcy@codesourcery.com>
1810
1811 * langhooks-def.h (LANG_HOOKS_OMP_IS_OPTIONAL_ARGUMENT): Default to
1812 false.
1813 (LANG_HOOKS_DECLS): Add LANG_HOOKS_OMP_IS_OPTIONAL_ARGUMENT.
1814 * langhooks.h (omp_is_optional_argument): New hook.
1815 * omp-general.c (omp_is_optional_argument): New.
1816 * omp-general.h (omp_is_optional_argument): New declaration.
1817 * omp-low.c (lower_omp_target): Create temporary for received value
1818 and take the address for new_var if the original variable was a
1819 DECL_BY_REFERENCE. Use size of referenced object when a
1820 pass-by-reference optional argument used as argument to firstprivate.
1821
1822 2019-10-02 Jakub Jelinek <jakub@redhat.com>
1823
1824 PR tree-optimization/91940
1825 * tree-vect-patterns.c: Include tree-vector-builder.h and
1826 vec-perm-indices.h.
1827 (vect_recog_rotate_pattern): Also handle __builtin_bswap16, either by
1828 unpromoting the argument back to uint16_t, or by converting into a
1829 rotate, or into shifts plus ior.
1830
1831 2019-10-02 Richard Biener <rguenther@suse.de>
1832
1833 * tree-vectorizer.h (stmt_vec_info_type::cycle_phi_info_type):
1834 New.
1835 (vect_transform_cycle_phi): Declare.
1836 * tree-vect-stmts.c (vect_transform_stmt): Call
1837 vect_transform_cycle_phi.
1838 * tree-vect-loop.c (vectorizable_reduction): Split out
1839 PHI transformation stage to ...
1840 (vect_transform_cycle_phi): ... here.
1841
1842 2019-10-02 Richard Sandiford <richard.sandiford@arm.com>
1843
1844 PR middle-end/91957
1845 * lra-lives.c (make_hard_regno_dead): Don't record conflicts for
1846 eliminable registers.
1847 (make_hard_regno_live): Likewise, and don't make them live.
1848
1849 2019-10-01 David Malcolm <dmalcolm@redhat.com>
1850
1851 * diagnostic-show-locus.c (layout::print_gap_in_line_numbering):
1852 Call pp_emit_prefix.
1853 (layout::print_source_line): Likewise.
1854 (layout::start_annotation_line): Likewise.
1855 (diagnostic_show_locus): Remove call to temporarily clear the
1856 prefix.
1857 (selftest::test_one_liner_fixit_remove): Add test coverage for the
1858 interaction of pp_set_prefix with rulers and fix-it hints.
1859 * diagnostic.c (default_diagnostic_finalizer): Temporarily clear
1860 prefix when calling diagnostic_show_locus, rather than destroying
1861 it afterwards.
1862 (print_parseable_fixits): Temporarily clear prefix.
1863 * pretty-print.c (pp_format): Save and restore line_length, rather
1864 than assuming it is zero.
1865 (pp_output_formatted_text): Remove assertion that line_length is
1866 zero.
1867
1868 2019-10-01 Jan Hubicka <hubicka@ucw.cz>
1869
1870 * tree-ssa-alias.c (nonoverlapping_component_refs_since_match_p):
1871 Rename to ...
1872 (nonoverlapping_refs_since_match_p): ... this; handle also
1873 ARRAY_REFs.
1874 (alias_stats): Update stats.
1875 (dump_alias_stats): Likewise.
1876 (cheap_array_ref_low_bound): New function.
1877 (aliasing_matching_component_refs_p): Add partial_overlap
1878 argument;
1879 pass it to nonoverlapping_refs_since_match_p.
1880 (aliasing_component_refs_walk): Update call of
1881 aliasing_matching_component_refs_p
1882 (nonoverlapping_array_refs_p): New function.
1883 (decl_refs_may_alias_p, indirect_ref_may_alias_decl_p,
1884 indirect_refs_may_alias_p): Update calls of
1885 nonoverlapping_refs_since_match_p.
1886
1887 2019-10-01 Maya Rashish <coypu@sdf.org>
1888
1889 PR target/85401
1890 * ira-color.c (allocno_copy_cost_saving): Call
1891 ira_init_register_move_cost_if_necessary.
1892
1893 2019-10-01 Maciej W. Rozycki <macro@wdc.com>
1894
1895 * Makefile.in (gnat_install_lib): New variable.
1896 * configure.ac: Substitute it.
1897 * configure: Regenerate.
1898
1899 2019-10-01 Jan Hubicka <hubicka@ucw.cz>
1900
1901 PR lto/91222
1902 * ipa-devirt.c (warn_types_mismatch): Do not ICE when anonymous type
1903 is matched with non-C++ type
1904
1905 2019-10-01 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
1906
1907 * tree-if-conv.c (tree_if_conversion): Move call to ifcvt_local_dce
1908 after local CSE.
1909
1910 2019-10-01 Jan Hubicka <hubicka@ucw.cz>
1911
1912 * doc/invoke.texi (early-inlining-insns-O2): Document.
1913 (early-inlining-insns): Update.
1914 * params.def (early-inlining-insns-O2): New bound.
1915 (early-inlining-insns): Update docs.
1916 * ipa-inline.c (want_early_inline_function_p): Use new bound.
1917
1918 2019-10-01 Oleg Endo <olegendo@gcc.gnu.org>
1919
1920 PR target/88562
1921 * config/sh/sh.c (sh_extending_set_of_reg::use_as_extended_reg): Use
1922 sh_check_add_incdec_notes to preserve REG_INC notes when replacing
1923 a memory access insn.
1924
1925 2019-10-01 Bill Schmidt <wschmidt@linux.ibm.com>
1926
1927 * config/rs6000/rs6000-p8swap.c (rtx_is_swappable_p): Don't swap
1928 vpmsumd.
1929
1930 2019-10-01 Ilya Leoshkevich <iii@linux.ibm.com>
1931
1932 PR target/77918
1933 * config/s390/s390.c (s390_expand_vec_compare): Use
1934 gen_vec_cmpordered and gen_vec_cmpunordered.
1935 * config/s390/vector.md (vec_cmpuneq, vec_cmpltgt, vec_ordered,
1936 vec_unordered): Delete.
1937 (vec_ordered<mode>): Rename to vec_cmpordered<mode>.
1938 (vec_unordered<mode>): Rename to vec_cmpunordered<mode>.
1939 (VEC_CMP_EXPAND): New iterator for the generic dispatcher.
1940 (vec_cmp<code>): Generic dispatcher.
1941
1942 2019-10-01 Ilya Leoshkevich <iii@linux.ibm.com>
1943
1944 PR target/77918
1945 * config/s390/vector.md (V_HW): Add V1TI in order to make
1946 vcond$a$b generate vcondv1tiv1tf.
1947
1948 2019-10-01 Richard Sandiford <richard.sandiford@arm.com>
1949
1950 PR rtl-optimization/91948
1951 * ira-build.c (ira_create_allocno): Initialize
1952 ALLOCNO_CROSSED_CALLS_ABIS.
1953 * ira-color.c (allocno_reload_assign): Pass hard_regno rather
1954 than regno to ira_need_caller_save_p.
1955
1956 2019-10-01 Alexandre Oliva <oliva@adacore.com>
1957
1958 * config/i386/i386-options.c
1959 (ix86_recompute_optlev_based_flags): New, moved out of...
1960 (ix86_option_override_internal): ... this. Call it.
1961 (ix86_override_options_after_change): Call it here too.
1962
1963 PR debug/91507
1964 * dwarf2out.c (override_type_for_decl_p): New.
1965 (gen_variable_die): Use it.
1966
1967 2019-10-01 Richard Biener <rguenther@suse.de>
1968
1969 * tree-vect-loop.c (vectorizable_reduction): Move variables
1970 to where they are used.
1971
1972 2019-10-01 Segher Boessenkool <segher@kernel.crashing.org>
1973
1974 * regrename.c (hide_operands): Use pc_rtx instead of cc0_rtx.
1975 (build_def_use): Use PC instead of CC0 in a comment.
1976
1977 2019-10-01 Richard Sandiford <richard.sandiford@arm.com>
1978
1979 * rtl.def (CLOBBER_HIGH): Delete.
1980 * doc/rtl.texi (clobber_high): Remove documentation.
1981 * rtl.h (SET_DEST): Remove CLOBBER_HIGH from the list of codes.
1982 (reg_is_clobbered_by_clobber_high): Delete.
1983 (gen_hard_reg_clobber_high): Likewise.
1984 * alias.c (record_set): Remove CLOBBER_HIGH handling.
1985 * cfgexpand.c (expand_gimple_stmt): Likewise.
1986 * combine-stack-adj.c (single_set_for_csa): Likewise.
1987 * combine.c (find_single_use_1, set_nonzero_bits_and_sign_copies)
1988 (can_combine_p, is_parallel_of_n_reg_sets, try_combine)
1989 (record_dead_and_set_regs_1, reg_dead_at_p_1): Likewise.
1990 * cse.c (invalidate_reg): Remove clobber_high parameter.
1991 (invalidate): Update call accordingly.
1992 (canonicalize_insn): Remove CLOBBER_HIGH handling.
1993 (invalidate_from_clobbers, invalidate_from_sets_and_clobbers)
1994 (count_reg_usage, insn_live_p): Likewise.
1995 * cselib.h (cselib_invalidate_rtx): Remove sett argument.
1996 * cselib.c (cselib_invalidate_regno, cselib_invalidate_rtx): Likewise.
1997 (cselib_invalidate_rtx_note_stores): Update call accordingly.
1998 (cselib_expand_value_rtx_1): Remove CLOBBER_HIGH handling.
1999 (cselib_invalidate_regno, cselib_process_insn): Likewise.
2000 * dce.c (deletable_insn_p, mark_nonreg_stores_1): Likewise.
2001 (mark_nonreg_stores_2): Likewise.
2002 * df-scan.c (df_find_hard_reg_defs, df_uses_record): Likewise.
2003 (df_get_call_refs): Likewise.
2004 * dwarf2out.c (mem_loc_descriptor): Likewise.
2005 * emit-rtl.c (verify_rtx_sharing): Likewise.
2006 (copy_insn_1, copy_rtx_if_shared_1): Likewise.
2007 (hard_reg_clobbers_high, gen_hard_reg_clobber_high): Delete.
2008 * genconfig.c (walk_insn_part): Remove CLOBBER_HIGH handling.
2009 * genemit.c (gen_exp, gen_insn): Likewise.
2010 * genrecog.c (validate_pattern, remove_clobbers): Likewise.
2011 * haifa-sched.c (haifa_classify_rtx): Likewise.
2012 * ira-build.c (create_insn_allocnos): Likewise.
2013 * ira-costs.c (scan_one_insn): Likewise.
2014 * ira.c (equiv_init_movable_p, memref_referenced_p): Likewise.
2015 (rtx_moveable_p, interesting_dest_for_shprep): Likewise.
2016 * jump.c (mark_jump_label_1): Likewise.
2017 * lra-int.h (lra_insn_reg::clobber_high): Delete.
2018 * lra-eliminations.c (lra_eliminate_regs_1): Remove CLOBBER_HIGH
2019 handling.
2020 (mark_not_eliminable): Likewise.
2021 * lra-lives.c (process_bb_lives): Likewise.
2022 * lra.c (new_insn_reg): Remove clobber_high parameter.
2023 (collect_non_operand_hard_regs): Likewise. Update call to new
2024 insn_reg. Remove CLOBBER_HIGH handling.
2025 (lra_set_insn_recog_data): Remove CLOBBER_HIGH handling. Update call
2026 to collect_non_operand_hard_regs.
2027 (add_regs_to_insn_regno_info): Remove CLOBBER_HIGH handling.
2028 Update call to new_insn_reg.
2029 (lra_update_insn_regno_info): Remove CLOBBER_HIGH handling.
2030 * postreload.c (reload_cse_simplify, reload_combine_note_use)
2031 (move2add_note_store): Likewise.
2032 * print-rtl.c (print_pattern): Likewise.
2033 * recog.c (store_data_bypass_p_1, store_data_bypass_p): Likewise.
2034 (if_test_bypass_p): Likewise.
2035 * regcprop.c (kill_clobbered_value, kill_set_value): Likewise.
2036 * reginfo.c (reg_scan_mark_refs): Likewise.
2037 * reload1.c (maybe_fix_stack_asms, eliminate_regs_1): Likewise.
2038 (elimination_effects, mark_not_eliminable, scan_paradoxical_subregs)
2039 (forget_old_reloads_1): Likewise.
2040 * reorg.c (find_end_label, try_merge_delay_insns, redundant_insn)
2041 (own_thread_p, fill_simple_delay_slots, fill_slots_from_thread)
2042 (dbr_schedule): Likewise.
2043 * resource.c (update_live_status, mark_referenced_resources)
2044 (mark_set_resources): Likewise.
2045 * rtl.c (copy_rtx): Likewise.
2046 * rtlanal.c (reg_referenced_p, set_of_1, single_set_2, noop_move_p)
2047 (note_pattern_stores): Likewise.
2048 (reg_is_clobbered_by_clobber_high): Delete.
2049 * sched-deps.c (sched_analyze_reg, sched_analyze_insn): Remove
2050 CLOBBER_HIGH handling.
2051
2052 2019-10-01 Richard Sandiford <richard.sandiford@arm.com>
2053
2054 PR target/91452
2055 * config/aarch64/aarch64.h (ARM_PCS_TLSDESC): New arm_pcs.
2056 * config/aarch64/aarch64-protos.h (aarch64_tlsdesc_abi_id): Declare.
2057 * config/aarch64/aarch64.c (aarch64_hard_regno_call_part_clobbered):
2058 Handle ARM_PCS_TLSDESC.
2059 (aarch64_tlsdesc_abi_id): New function.
2060 * config/aarch64/aarch64.md (tlsdesc_small_sve_<mode>): Use a call
2061 rtx instead of a list of clobbers and clobber_highs.
2062 (tlsdesc_small_<mode>): Update accordingly.
2063
2064 2019-10-01 Richard Sandiford <richard.sandiford@arm.com>
2065
2066 * config/aarch64/aarch64-protos.h (aarch64_expand_call): Take an
2067 extra callee_abi argument.
2068 * config/aarch64/aarch64.c (aarch64_expand_call): Likewise.
2069 Insert a CALLEE_ABI unspec into the call pattern as the second
2070 element in the PARALLEL.
2071 (aarch64_simd_call_p): Delete.
2072 (aarch64_insn_callee_abi): Get the arm_pcs of the callee from
2073 the new CALLEE_ABI element of the PARALLEL.
2074 (aarch64_init_cumulative_args): Get the arm_pcs of the callee
2075 from the function type, if given.
2076 (aarch64_function_arg_advance): Handle ARM_PCS_SIMD.
2077 (aarch64_function_arg): Likewise. Return the arm_pcs of the callee
2078 when passed the function_arg_info end marker.
2079 (aarch64_output_mi_thunk): Pass the arm_pcs of the callee as the
2080 final argument of gen_sibcall.
2081 * config/aarch64/aarch64.md (UNSPEC_CALLEE_ABI): New unspec.
2082 (call): Make operand 2 a const_int_operand and pass it to expand_call.
2083 Wrap it in an UNSPEC_CALLEE_ABI unspec for the dummy define_expand
2084 pattern.
2085 (call_value): Likewise operand 3.
2086 (sibcall): Likewise operand 2. Place the unspec before rather than
2087 after the return.
2088 (sibcall_value): Likewise operand 3.
2089 (*call_insn, *call_value_insn): Include an UNSPEC_CALLEE_ABI.
2090 (tlsgd_small_<mode>, *tlsgd_small_<mode>): Likewise.
2091 (*sibcall_insn, *sibcall_value_insn): Likewise. Remove empty
2092 constraint strings.
2093 (untyped_call): Pass const0_rtx as the callee ABI to gen_call.
2094
2095 2019-10-01 Richard Sandiford <richard.sandiford@arm.com>
2096
2097 * regs.h (HARD_REGNO_CALLER_SAVE_MODE): Update call to
2098 choose_hard_reg_mode.
2099 * config/sparc/sparc.h (HARD_REGNO_CALLER_SAVE_MODE): Likewise.
2100
2101 2019-10-01 Segher Boessenkool <segher@kernel.crashing.org>
2102
2103 * doc/md.texi (vec_pack_trunc_@var{m}): Fix typo.
2104 (vec_pack_sfix_trunc_@var{m}, vec_pack_ufix_trunc_@var{m}): Ditto.
2105 (vec_packs_float_@var{m}, vec_packu_float_@var{m}): Ditto.
2106
2107 2019-09-30 David Malcolm <dmalcolm@redhat.com>
2108
2109 * diagnostic-show-locus.c (line_label::line_label): Initialize
2110 m_has_vbar.
2111 (line_label::comparator): Reverse the sort order by m_state_idx,
2112 so that when the list is walked backwards the labels appear in
2113 order of insertion into the rich_location.
2114 (line_label::m_has_vbar): New field.
2115 (layout::print_any_labels): When dealing with multiple labels at
2116 the same line and column, only print vertical bars for the one
2117 with the highest label_line.
2118 (selftest::test_one_liner_labels): Update test for multiple labels
2119 to expect the labels to be in the order of insertion into the
2120 rich_location. Add a test for many such labels, where the column
2121 numbers are out-of-order relative to the insertion order.
2122
2123 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2124
2125 * config/i386/i386.h (ix86_frame::expensive_p): New field.
2126 (ix86_frame::expensive_count): Likewise.
2127 * config/i386/i386.c (ix86_compute_frame_layout): Make the choice
2128 of use_fast_prologue_epilogue robust against incidental changes
2129 in function size.
2130
2131 2019-09-30 Ilya Leoshkevich <iii@linux.ibm.com>
2132
2133 PR target/77918
2134 * config/s390/vector.md (vec_unordered<mode>): Call
2135 gen_vec_ordered<mode>.
2136
2137 2019-09-30 Yuliang Wang <yuliang.wang@arm.com>
2138
2139 * config/aarch64/aarch64-sve.md (sdiv_pow2<mode>3):
2140 New pattern for ASRD.
2141 * config/aarch64/iterators.md (UNSPEC_ASRD): New unspec.
2142 * internal-fn.def (IFN_DIV_POW2): New internal function.
2143 * optabs.def (sdiv_pow2_optab): New optab.
2144 * tree-vect-patterns.c (vect_recog_divmod_pattern):
2145 Modify pattern to support new operation.
2146 * doc/md.texi (sdiv_pow2$var{m3}): Documentation for the above.
2147 * doc/sourcebuild.texi (vect_sdiv_pow2_si):
2148 Document new target selector.
2149
2150 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2151
2152 * config/aarch64/aarch64.c (aarch64_layout_frame): Use crtl->abi
2153 to test whether we're compiling a vector PCS function and to test
2154 whether the function needs to save a particular register.
2155 Remove the vector PCS handling of df_set_regs_ever_live.
2156 (aarch64_components_for_bb): Use crtl->abi to test whether
2157 the function needs to save a particular register.
2158 (aarch64_process_components): Use crtl->abi to test whether
2159 we're compiling a vector PCS function.
2160 (aarch64_expand_prologue, aarch64_expand_epilogue): Likewise.
2161 (aarch64_epilogue_uses): Remove handling of vector PCS functions.
2162
2163 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2164
2165 * config/aarch64/aarch64-protos.h (aarch64_use_simple_return_insn_p):
2166 Delete.
2167 * config/aarch64/aarch64.c (aarch64_components_for_bb): Check
2168 whether the block calls a function that clobbers more registers
2169 than the current function is allowed to.
2170 (aarch64_use_simple_return_insn_p): Delete.
2171 * config/aarch64/aarch64.md (simple_return): Remove condition.
2172
2173 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2174
2175 * function-abi.h (function_abi_aggregator): New class.
2176 * function-abi.cc (function_abi_aggregator::caller_save_regs): New
2177 function.
2178 * ira.c (update_equiv_regs_prescan): New function. Call
2179 set_paradoxical_subreg here rather than...
2180 (update_equiv_regs): ...here.
2181 (ira): Call update_equiv_regs_prescan.
2182
2183 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2184
2185 * hard-reg-set.h (regs_invalidated_by_call): Only define if
2186 IN_TARGET_CODE.
2187 (call_used_or_fixed_regs): Likewise.
2188 (call_used_or_fixed_reg_p): Likewise.
2189 * reginfo.c (regs_invalidated_by_call): New macro.
2190
2191 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2192
2193 * shrink-wrap.c: Include function-abi.h.
2194 (requires_stack_frame_p): Use crtl->abi to test whether the
2195 current function can use a register without saving it first.
2196
2197 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2198
2199 * sel-sched-ir.h (_def::crosses_call): Replace with...
2200 (_def::crossed_call_abis): ..this new field.
2201 (def_list_add): Take a mask of ABIs instead of a crosses_call
2202 boolean.
2203 * sel-sched-ir.c (def_list_add): Likewise. Update initialization
2204 of _def accordingly.
2205 * sel-sched.c: Include function-abi.h.
2206 (hard_regs_data::regs_for_call_clobbered): Delete.
2207 (reg_rename::crosses_call): Replace with...
2208 (reg_rename::crossed_call_abis): ...this new field.
2209 (fur_static_params::crosses_call): Replace with...
2210 (fur_static_params::crossed_call_abis): ...this new field.
2211 (init_regs_for_mode): Don't initialize sel_hrd.regs_for_call_clobbered.
2212 (init_hard_regs_data): Use crtl->abi to test which registers the
2213 current function would need to save before it uses them.
2214 (mark_unavailable_hard_regs): Update handling of call-clobbered
2215 registers, using call_clobbers_in_region to find out which registers
2216 might be call-clobbered (but without taking -fipa-ra into account
2217 for now). Remove separate handling of partially call-clobbered
2218 registers.
2219 (verify_target_availability): Use crossed_call_abis instead of
2220 crosses_call.
2221 (get_spec_check_type_for_insn, find_used_regs): Likewise.
2222 (fur_orig_expr_found, fur_on_enter, fur_orig_expr_not_found): Likewise.
2223
2224 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2225
2226 * sched-deps.c (deps_analyze_insn): Use the ABI of the target
2227 function to test whether a register is fully or partly clobbered.
2228
2229 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2230
2231 * rtlanal.c: Include function-abi.h.
2232 (reg_set_p): Use insn_callee_abi to get the ABI of the called
2233 function and clobbers_reg_p to test whether the register
2234 is call-clobbered.
2235 (find_all_hard_reg_sets): When implicit is true, use insn_callee_abi
2236 to get the ABI of the called function and full_reg_clobbers to
2237 get the set of fully call-clobbered registers. Warn about the
2238 pitfalls of using this mode.
2239
2240 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2241
2242 * reload.c: Include function-abi.h.
2243 (find_equiv_reg): Use clobbers_reg_p to test whether either
2244 of the equivalent registers is clobbered by a call.
2245 * reload1.c: Include function-abi.h.
2246 (reg_reloaded_call_part_clobbered): Delete.
2247 (reload): Use crtl->abi to test which registers would need
2248 saving in the prologue before use.
2249 (find_reg): Likewise.
2250 (emit_reload_insns): Remove code for reg_reloaded_call_part_clobbered.
2251 (reload_as_needed): Likewise. Use full_and_partial_reg_clobbers
2252 instead of call_used_or_fixed_regs | reg_reloaded_call_part_clobbered.
2253
2254 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2255
2256 * regrename.h (du_head::call_clobber_mask): New field.
2257 (du_head::need_caller_save_reg): Replace with...
2258 (du_head::call_abis): ...this new field.
2259 * regrename.c: Include function-abi.h.
2260 (call_clobbered_in_chain_p): New function.
2261 (check_new_reg_p): Use crtl->abi when deciding whether a register
2262 is free for use after RA. Use call_clobbered_in_chain_p to test
2263 whether a candidate register would be clobbered by a call.
2264 (find_rename_reg): Don't add call-clobber conflicts here.
2265 (rename_chains): Check call_abis instead of need_caller_save_reg.
2266 (merge_chains): Update for changes to du_head.
2267 (build_def_use): Use insn_callee_abi to get the ABI of the call insn
2268 target. Record the ABI identifier in call_abis and the set of
2269 fully or partially clobbered registers in call_clobber_mask.
2270 Add fully-clobbered registers to hard_conflicts here rather
2271 than in find_rename_reg.
2272 * config/aarch64/cortex-a57-fma-steering.c: Include function-abi.h.
2273 (rename_single_chain): Check call_abis instead of need_caller_save_reg.
2274 * config/aarch64/falkor-tag-collision-avoidance.c: Include
2275 function-abi.h.
2276 * config/c6x/c6x.c: Likewise.
2277
2278 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2279
2280 * regcprop.c (copyprop_hardreg_forward_1): Use the recorded
2281 mode of the register when deciding whether it is no longer
2282 available after a call.
2283
2284 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2285
2286 * recog.c: Include function-abi.h.
2287 (peep2_find_free_register): Use crtl->abi when deciding whether
2288 a register is free for use after RA.
2289
2290 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2291
2292 * postreload-gcse.c: Include regs.h and function-abi.h.
2293 (record_opr_changes): Use insn_callee_abi to get the ABI of the
2294 call insn target. Conservatively assume that partially-clobbered
2295 registers are altered.
2296
2297 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2298
2299 * postreload.c (reload_combine_recognize_pattern): Use crtl->abi
2300 when deciding whether a register is free for use after RA.
2301 (reload_combine): Remove unnecessary use of fixed_reg_set.
2302 (reload_cse_move2add): Use insn_callee_abi to get the ABI of the
2303 call insn target. Use reg_mode when testing whether a register
2304 is no longer available.
2305
2306 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2307
2308 * target.def (return_call_with_max_clobbers): Delete.
2309 * doc/tm.texi.in (TARGET_RETURN_CALL_WITH_MAX_CLOBBERS): Delete.
2310 * doc/tm.texi: Regenerate.
2311 * config/aarch64/aarch64.c (aarch64_return_call_with_max_clobbers)
2312 (TARGET_RETURN_CALL_WITH_MAX_CLOBBERS): Delete.
2313 * lra-int.h (lra_reg::actual_call_used_reg_set): Delete.
2314 (lra_reg::call_insn): Delete.
2315 * lra.c: Include function-abi.h.
2316 (initialize_lra_reg_info_element): Don't initialize the fields above.
2317 (lra): Use crtl->abi to test whether the current function needs to
2318 save a register in the prologue. Remove special pre-inheritance
2319 lra_create_live_ranges pass for flag_ipa_ra.
2320 * lra-assigns.c: Include function-abi.h
2321 (find_hard_regno_for_1): Use crtl->abi to test whether the current
2322 function needs to save a register in the prologue.
2323 (lra_assign): Assert that registers aren't allocated to a
2324 conflicting register, rather than checking only for overlaps
2325 with call_used_or_fixed_regs. Do this even for flag_ipa_ra,
2326 and for registers that are not live across a call.
2327 * lra-constraints.c (last_call_for_abi): New variable.
2328 (full_and_partial_call_clobbers): Likewise.
2329 (setup_next_usage_insn): Remove the register from
2330 full_and_partial_call_clobbers.
2331 (need_for_call_save_p): Use call_clobbered_in_region_p to test
2332 whether the register needs a caller save.
2333 (need_for_split_p): Use full_and_partial_reg_clobbers instead
2334 of call_used_or_fixed_regs.
2335 (inherit_in_ebb): Initialize and maintain last_call_for_abi and
2336 full_and_partial_call_clobbers.
2337 * lra-lives.c (check_pseudos_live_through_calls): Replace
2338 last_call_used_reg_set and call_insn arguments with an abi argument.
2339 Remove handling of lra_reg::call_insn. Use function_abi::mode_clobbers
2340 as the set of conflicting registers.
2341 (calls_have_same_clobbers_p): Delete.
2342 (process_bb_lives): Track the ABI of the last call instead of an
2343 insn/HARD_REG_SET pair. Update calls to
2344 check_pseudos_live_through_calls. Use eh_edge_abi to calculate
2345 the set of registers that could be clobbered by an EH edge.
2346 Include partially-clobbered as well as fully-clobbered registers.
2347 (lra_create_live_ranges_1): Don't initialize lra_reg::call_insn.
2348 * lra-remat.c: Include function-abi.h.
2349 (call_used_regs_arr_len, call_used_regs_arr): Delete.
2350 (set_bb_regs): Use insn_callee_abi to get the set of call-clobbered
2351 registers and bitmap_view to combine them into dead_regs.
2352 (call_used_input_regno_present_p): Take a function_abi argument
2353 and use it to test whether a register is call-clobbered.
2354 (calculate_gen_cands): Use insn_callee_abi to get the ABI of the
2355 call insn target. Update tje call to call_used_input_regno_present_p.
2356 (do_remat): Likewise.
2357 (lra_remat): Remove the initialization of call_used_regs_arr_len
2358 and call_used_regs_arr.
2359
2360 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2361
2362 * loop-iv.c: Include regs.h and function-abi.h.
2363 (simplify_using_initial_values): Use insn_callee_abi to get the
2364 ABI of the call insn target. Conservatively assume that
2365 partially-clobbered registers are altered.
2366
2367 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2368
2369 * function-abi.h (call_clobbers_in_region): Declare.
2370 (call_clobbered_in_region_p): New function.
2371 * function-abi.cc (call_clobbers_in_region): Likewise.
2372 * ira-int.h: Include function-abi.h.
2373 (ira_allocno::crossed_calls_abis): New field.
2374 (ALLOCNO_CROSSED_CALLS_ABIS): New macro.
2375 (ira_need_caller_save_regs): New function.
2376 (ira_need_caller_save_p): Likewise.
2377 * ira.c (setup_reg_renumber): Use ira_need_caller_save_p instead
2378 of call_used_or_fixed_regs.
2379 (do_reload): Use crtl->abi to test whether the current function
2380 needs to save a register in the prologue. Count registers that
2381 need to be saved rather than registers that don't.
2382 * ira-build.c (create_cap_allocno): Copy ALLOCNO_CROSSED_CALLS_ABIS.
2383 Remove unnecessary | from ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
2384 (propagate_allocno_info): Merge ALLOCNO_CROSSED_CALLS_ABIS too.
2385 (propagate_some_info_from_allocno): Likewise.
2386 (copy_info_to_removed_store_destinations): Likewise.
2387 (ira_flattening): Say that ALLOCNO_CROSSED_CALLS_ABIS and
2388 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS are handled conservatively.
2389 (ira_build): Use ira_need_caller_save_regs instead of
2390 call_used_or_fixed_regs.
2391 * ira-color.c (calculate_saved_nregs): Use crtl->abi to test
2392 whether the current function would need to save a register
2393 before using it.
2394 (calculate_spill_cost): Likewise.
2395 (allocno_reload_assign): Use ira_need_caller_save_regs and
2396 ira_need_caller_save_p instead of call_used_or_fixed_regs.
2397 * ira-conflicts.c (ira_build_conflicts): Use
2398 ira_need_caller_save_regs rather than call_used_or_fixed_regs
2399 as the set of call-clobbered registers. Remove the
2400 call_used_or_fixed_regs mask from the calculation of
2401 temp_hard_reg_set and mask its use instead. Remove special
2402 handling of partially-clobbered registers.
2403 * ira-costs.c (ira_tune_allocno_costs): Use ira_need_caller_save_p.
2404 * ira-lives.c (process_bb_node_lives): Use mode_clobbers to
2405 calculate the set of conflicting registers for calls that
2406 can throw. Record the ABIs of calls in ALLOCNO_CROSSED_CALLS_ABIS.
2407 Use full_and_partial_reg_clobbers rather than full_reg_clobbers
2408 for the calculation of ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
2409 Use eh_edge_abi to calculate the set of registers that could
2410 be clobbered by an EH edge. Include partially-clobbered as
2411 well as fully-clobbered registers.
2412
2413 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2414
2415 * haifa-sched.c: Include function-abi.h.
2416 (alloc_global_sched_pressure_data): Use crtl->abi to check whether
2417 the function would need to save a register before using it.
2418
2419 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2420
2421 * gcse.c: Include function-abi.h.
2422 (compute_hash_table_work): Use insn_callee_abi to get the ABI of
2423 the call insn target. Invalidate partially call-clobbered
2424 registers as well as fully call-clobbered ones.
2425
2426 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2427
2428 * function.c (aggregate_value_p): Work out which ABI the
2429 function is using before testing which registers are at least
2430 partly preserved by a call.
2431
2432 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2433
2434 * early-remat.c: Include regs.h and function-abi.h.
2435 (early_remat::maybe_add_candidate): Don't check for call-clobbered
2436 registers here.
2437 (early_remat::restrict_remat_for_unavail_regs): New function.
2438 (early_remat::restrict_remat_for_call): Likewise.
2439 (early_remat::process_block): Before calling emit_remat_insns
2440 for a previous call in the block, invalidate any candidates
2441 that would clobber call-preserved registers.
2442 (early_remat::emit_remat_insns_for_block): Likewise for the
2443 final call in a block. Do the same thing for live-in registers
2444 when calling emit_remat_insns at the head of a block.
2445
2446 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2447
2448 * df-scan.c (df_get_entry_block_def_set): Use crtl->abi to test
2449 whether the current function needs to save at least part of a
2450 register before using it.
2451 (df_get_exit_block_use_set): Likewise for epilogue restores.
2452
2453 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2454
2455 * df-problems.c: Include regs.h and function-abi.h.
2456 (df_rd_problem_data): Rename sparse_invalidated_by_call to
2457 sparse_invalidated_by_eh and dense_invalidated_by_call to
2458 dense_invalidated_by_eh.
2459 (df_print_bb_index): Update accordingly.
2460 (df_rd_alloc, df_rd_start_dump, df_rd_confluence_n): Likewise.
2461 (df_lr_confluence_n): Use eh_edge_abi to get the set of registers
2462 that are clobbered by an EH edge. Clobber partially-clobbered
2463 registers as well as fully-clobbered ones.
2464 (df_md_confluence_n): Likewise.
2465 (df_rd_local_compute): Likewise. Update for changes to
2466 df_rd_problem_data.
2467 * df-scan.c (df_scan_start_dump): Use eh_edge_abi to get the set
2468 of registers that are clobbered by an EH edge. Includde partially-
2469 clobbered registers as well as fully-clobbered ones.
2470
2471 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2472
2473 * cselib.c (cselib_process_insn): If we know what mode a
2474 register was set in, check whether it is clobbered in that
2475 mode by a call. Only fall back to reg_raw_mode if that fails.
2476
2477 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2478
2479 * cse.c: Include regs.h and function-abi.h.
2480 (invalidate_for_call): Take the call insn as an argument.
2481 Use insn_callee_abi to get the ABI of the call and invalidate
2482 partially clobbered registers as well as fully clobbered ones.
2483 (cse_insn): Update call accordingly.
2484
2485 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2486
2487 * combine.c: Include function-abi.h.
2488 (record_dead_and_set_regs): Use insn_callee_abi to get the ABI
2489 of the target of call insns. Invalidate partially-clobbered
2490 registers as well as fully-clobbered ones.
2491
2492 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2493
2494 * cfgloopanal.c: Include regs.h and function-abi.h.
2495 (init_set_costs): Use default_function_abi to test whether
2496 a general register is call-clobbered.
2497
2498 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2499
2500 * cfgcleanup.c (old_insns_match_p): Compare the ABIs of calls
2501 instead of the call-clobbered sets.
2502
2503 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2504
2505 * caller-save.c (setup_save_areas): Remove redundant |s of
2506 fixed_reg_set.
2507 (save_call_clobbered_regs): Likewise. Use the call ABI rather
2508 than call_used_or_fixed_regs to decide whether a REG_RETURNED
2509 value is useful.
2510
2511 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2512
2513 * rtl.h (predefined_function_abi): Declare.
2514 (choose_hard_reg_mode): Take a pointer to a predefined_function_abi
2515 instead of a boolean call_save flag.
2516 * config/gcn/gcn.c (gcn_hard_regno_caller_save_mode): Update call
2517 accordingly.
2518 * config/i386/i386.h (HARD_REGNO_CALLER_SAVE_MODE): Likewise.
2519 * config/ia64/ia64.h (HARD_REGNO_CALLER_SAVE_MODE): Likewise.
2520 * config/mips/mips.c (mips_hard_regno_caller_save_mode): Likewise.
2521 * config/msp430/msp430.h (HARD_REGNO_CALLER_SAVE_MODE): Likewise.
2522 * config/rs6000/rs6000.h (HARD_REGNO_CALLER_SAVE_MODE): Likewise.
2523 * config/sh/sh.c (sh_hard_regno_caller_save_mode): Likewise.
2524 * reginfo.c (init_reg_modes_target): Likewise.
2525 (choose_hard_reg_mode): Take a pointer to a predefined_function_abi
2526 instead of a boolean call_save flag.
2527 * targhooks.c: Include function-abi.h.
2528 (default_dwarf_frame_reg_mode): Update call to choose_hard_reg_mode,
2529 using eh_edge_abi to choose the mode.
2530
2531 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2532
2533 * target.def (hard_regno_call_part_clobbered): Take an ABI
2534 identifier instead of an rtx_insn.
2535 * doc/tm.texi: Regenerate.
2536 * hooks.h (hook_bool_insn_uint_mode_false): Delete.
2537 (hook_bool_uint_uint_mode_false): New function.
2538 * hooks.c (hook_bool_insn_uint_mode_false): Delete.
2539 (hook_bool_uint_uint_mode_false): New function.
2540 * config/aarch64/aarch64.c (aarch64_hard_regno_call_part_clobbered):
2541 Take an ABI identifier instead of an rtx_insn.
2542 * config/avr/avr.c (avr_hard_regno_call_part_clobbered): Likewise.
2543 * config/i386/i386.c (ix86_hard_regno_call_part_clobbered): Likewise.
2544 * config/mips/mips.c (mips_hard_regno_call_part_clobbered): Likewise.
2545 * config/pru/pru.c (pru_hard_regno_call_part_clobbered): Likewise.
2546 * config/rs6000/rs6000.c (rs6000_hard_regno_call_part_clobbered):
2547 Likewise.
2548 * config/s390/s390.c (s390_hard_regno_call_part_clobbered): Likewise.
2549 * cselib.c: Include function-abi.h.
2550 (cselib_process_insn): Update call to
2551 targetm.hard_regno_call_part_clobbered, using insn_callee_abi
2552 to get the appropriate ABI identifier.
2553 * function-abi.cc (predefined_function_abi::initialize): Update call
2554 to targetm.hard_regno_call_part_clobbered.
2555 * ira-conflicts.c (ira_build_conflicts): Likewise.
2556 * ira-costs.c (ira_tune_allocno_costs): Likewise.
2557 * lra-constraints.c: Include function-abi.h.
2558 (need_for_call_save_p): Update call to
2559 targetm.hard_regno_call_part_clobbered, using insn_callee_abi
2560 to get the appropriate ABI identifier.
2561 * lra-lives.c (check_pseudos_live_through_calls): Likewise.
2562 * regcprop.c (copyprop_hardreg_forward_1): Update call
2563 to targetm.hard_regno_call_part_clobbered.
2564 * reginfo.c (choose_hard_reg_mode): Likewise.
2565 * regrename.c (check_new_reg_p): Likewise.
2566 * reload.c (find_equiv_reg): Likewise.
2567 * reload1.c (emit_reload_insns): Likewise.
2568 * sched-deps.c: Include function-abi.h.
2569 (deps_analyze_insn): Update call to
2570 targetm.hard_regno_call_part_clobbered, using insn_callee_abi
2571 to get the appropriate ABI identifier.
2572 * sel-sched.c (init_regs_for_mode, mark_unavailable_hard_regs): Update
2573 call to targetm.hard_regno_call_part_clobbered.
2574 * targhooks.c (default_dwarf_frame_reg_mode): Likewise.
2575
2576 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2577
2578 * config/i386/i386.c: Include function-abi.h.
2579 (ix86_avx_u128_mode_needed): Treat function calls as AVX_U128_ANY
2580 if they preserve some 256-bit or 512-bit SSE registers.
2581
2582 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2583
2584 * target.def (insn_callee_abi): New hook.
2585 (remove_extra_call_preserved_regs): Delete.
2586 * doc/tm.texi.in (TARGET_INSN_CALLEE_ABI): New macro.
2587 (TARGET_REMOVE_EXTRA_CALL_PRESERVED_REGS): Delete.
2588 * doc/tm.texi: Regenerate.
2589 * targhooks.h (default_remove_extra_call_preserved_regs): Delete.
2590 * targhooks.c (default_remove_extra_call_preserved_regs): Delete.
2591 * config/aarch64/aarch64.c (aarch64_simd_call_p): Constify the
2592 insn argument.
2593 (aarch64_remove_extra_call_preserved_regs): Delete.
2594 (aarch64_insn_callee_abi): New function.
2595 (TARGET_REMOVE_EXTRA_CALL_PRESERVED_REGS): Delete.
2596 (TARGET_INSN_CALLEE_ABI): New macro.
2597 * rtl.h (get_call_fndecl): Declare.
2598 (cgraph_rtl_info): Fix formatting. Tweak comment for
2599 function_used_regs. Remove function_used_regs_valid.
2600 * rtlanal.c (get_call_fndecl): Moved from final.c
2601 * function-abi.h (insn_callee_abi): Declare.
2602 (target_function_abi_info): Mention insn_callee_abi.
2603 * function-abi.cc (fndecl_abi): Handle flag_ipa_ra in a similar
2604 way to get_call_reg_set_usage did.
2605 (insn_callee_abi): New function.
2606 * regs.h (get_call_reg_set_usage): Delete.
2607 * final.c: Include function-abi.h.
2608 (collect_fn_hard_reg_usage): Add fixed and stack registers to
2609 function_used_regs before the main loop rather than afterwards.
2610 Use insn_callee_abi instead of get_call_reg_set_usage. Exit early
2611 if function_used_regs ends up not being useful.
2612 (get_call_fndecl): Move to rtlanal.c
2613 (get_call_cgraph_rtl_info, get_call_reg_set_usage): Delete.
2614 * caller-save.c: Include function-abi.h.
2615 (setup_save_areas, save_call_clobbered_regs): Use insn_callee_abi
2616 instead of get_call_reg_set_usage.
2617 * cfgcleanup.c: Include function-abi.h.
2618 (old_insns_match_p): Use insn_callee_abi instead of
2619 get_call_reg_set_usage.
2620 * cgraph.h (cgraph_node::rtl_info): Take a const_tree instead of
2621 a tree.
2622 * cgraph.c (cgraph_node::rtl_info): Likewise. Initialize
2623 function_used_regs.
2624 * df-scan.c: Include function-abi.h.
2625 (df_get_call_refs): Use insn_callee_abi instead of
2626 get_call_reg_set_usage.
2627 * ira-lives.c: Include function-abi.h.
2628 (process_bb_node_lives): Use insn_callee_abi instead of
2629 get_call_reg_set_usage.
2630 * lra-lives.c: Include function-abi.h.
2631 (process_bb_lives): Use insn_callee_abi instead of
2632 get_call_reg_set_usage.
2633 * postreload.c: Include function-abi.h.
2634 (reload_combine): Use insn_callee_abi instead of
2635 get_call_reg_set_usage.
2636 * regcprop.c: Include function-abi.h.
2637 (copyprop_hardreg_forward_1): Use insn_callee_abi instead of
2638 get_call_reg_set_usage.
2639 * resource.c: Include function-abi.h.
2640 (mark_set_resources, mark_target_live_regs): Use insn_callee_abi
2641 instead of get_call_reg_set_usage.
2642 * var-tracking.c: Include function-abi.h.
2643 (dataflow_set_clear_at_call): Use insn_callee_abi instead of
2644 get_call_reg_set_usage.
2645
2646 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2647
2648 * target.def (fntype_abi): New target hook.
2649 * doc/tm.texi.in (TARGET_FNTYPE_ABI): Likewise.
2650 * doc/tm.texi: Regenerate.
2651 * target.h (predefined_function_abi): Declare.
2652 * function-abi.cc (fntype_abi): Call targetm.calls.fntype_abi,
2653 if defined.
2654 * config/aarch64/aarch64.h (ARM_PCS_SIMD): New arm_pcs value.
2655 * config/aarch64/aarch64.c: Include function-abi.h.
2656 (aarch64_simd_abi, aarch64_fntype_abi): New functions.
2657 (TARGET_FNTYPE_ABI): Define.
2658
2659 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2660
2661 * Makefile.in (OBJS): Add function-abi.o.
2662 (GTFILES): Add function-abi.h.
2663 * function-abi.cc: New file.
2664 * function-abi.h: Likewise.
2665 * emit-rtl.h (rtl_data::abi): New field.
2666 * function.c: Include function-abi.h.
2667 (prepare_function_start): Initialize crtl->abi.
2668 * read-rtl-function.c: Include regs.h and function-abi.h.
2669 (read_rtl_function_body): Initialize crtl->abi.
2670 (read_rtl_function_body_from_file_range): Likewise.
2671 * reginfo.c: Include function-abi.h.
2672 (init_reg_sets_1): Initialize default_function_abi.
2673 (globalize_reg): Call add_full_reg_clobber for each predefined ABI
2674 when making a register global.
2675 * target-globals.h (this_target_function_abi_info): Declare.
2676 (target_globals::function_abi_info): New field.
2677 (restore_target_globals): Copy it.
2678 * target-globals.c: Include function-abi.h.
2679 (default_target_globals): Initialize the function_abi_info field.
2680 (target_globals): Allocate it.
2681 (save_target_globals): Free it.
2682
2683 2019-09-30 Nick Clifton <nickc@redhat.com>
2684
2685 PR target/85978
2686 * config/frv/frv.c (frv_register_move_cost): Add break statements
2687 to avoid falling through to the wrong cases. Tidy code.
2688
2689 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
2690
2691 * config/aarch64/aarch64.c (aarch64_hard_regno_call_part_clobbered):
2692 For multi-registers modes, test how big each register part is.
2693
2694 2019-09-30 Nick Clifton <nickc@redhat.com>
2695
2696 PR target/59205
2697 * config/iq2000/iq2000.c (iq2000_select_section): Delete.
2698 (TARGET_ASM_SELECT_SECTION): Remove definition.
2699 (TARGET_HAVE_SWITCHABLE_BSS_SECTIONS): Allow definition.
2700
2701 2019-09-30 Ilya Leoshkevich <iii@linux.ibm.com>
2702
2703 * emit-rtl.c (init_raw_REG): New function.
2704 (gen_raw_REG): Use init_raw_REG.
2705 * gengenrtl.c (gendef): Emit init_* functions and alloca_*
2706 macros.
2707 * rtl.c (rtx_alloc_stat_v): Use rtx_init.
2708 * rtl.h (rtx_init): New function.
2709 (rtx_alloca): New function.
2710 (init_raw_REG): New function.
2711 (alloca_raw_REG): New macro.
2712
2713 2019-09-30 Michael Meissner <meissner@linux.ibm.com>
2714
2715 * config/rs6000/predicates.md (pcrel_address): Delete predicate.
2716 (pcrel_local_address): Replace pcrel_address predicate, use the
2717 new function address_to_insn_form.
2718 (pcrel_external_address): Replace with new implementation using
2719 address_to_insn_form..
2720 (prefixed_mem_operand): Delete predicate which is now unused.
2721 (pcrel_external_mem_operand): Delete predicate which is now
2722 unused.
2723 * config/rs6000/rs6000-protos.h (enum insn_form): New
2724 enumeration.
2725 (enum non_prefixed_form): New enumeration.
2726 (address_to_insn_form): New declaration.
2727 (prefixed_load_p): New declaration.
2728 (prefixed_store_p): New declaration.
2729 (prefixed_paddi_p): New declaration.
2730 (rs6000_asm_output_opcode): New declaration.
2731 (rs6000_final_prescan_insn): Move declaration and update calling
2732 signature.
2733 (address_is_prefixed): New helper inline function.
2734 * config/rs6000/rs6000.c(print_operand_address): Check for either
2735 PC-relative local symbols or PC-relative external symbols.
2736 (rs6000_emit_move): Support loading PC-relative addresses.
2737 (mode_supports_prefixed_address_p): Delete, no longer used.
2738 (rs6000_prefixed_address_mode_p): Delete, no longer used.
2739 (address_to_insn_form): New function to decode an address format.
2740 (reg_to_non_prefixed): New function to identify what the
2741 non-prefixed memory instruction format is for a register.
2742 (prefixed_load_p): New function to identify prefixed loads.
2743 (prefixed_store_p): New function to identify prefixed stores.
2744 (prefixed_paddi_p): New function to identify prefixed load
2745 immediates.
2746 (next_insn_prefixed_p): New static state variable.
2747 (rs6000_final_prescan_insn): New function to determine if an insn
2748 uses a prefixed instruction.
2749 (rs6000_asm_output_opcode): New function to emit 'p' in front of a
2750 prefixed instruction.
2751 * config/rs6000/rs6000.h (FINAL_PRESCAN_INSN): New target hook.
2752 (ASM_OUTPUT_OPCODE): New target hook.
2753 * config/rs6000/rs6000.md (prefixed): New insn attribute for
2754 prefixed instructions.
2755 (prefixed_length): New insn attribute for the size of prefixed
2756 instructions.
2757 (non_prefixed_length): New insn attribute for the size of
2758 non-prefixed instructions.
2759 (pcrel_local_addr): New insn to load up a local PC-relative
2760 address.
2761 (pcrel_extern_addr): New insn to load up an external PC-relative
2762 address.
2763 (mov<mode>_64bit_dm): Split the alternatives for loading 0.0 to a
2764 GPR and loading a 128-bit floating point type to a GPR.
2765
2766 2019-09-30 Richard Biener <rguenther@suse.de>
2767
2768 * gimple.c (gimple_get_lhs): For PHIs return the result.
2769 * tree-vectorizer.h (vectorizable_live_operation): Also get the
2770 SLP instance as argument.
2771 * tree-vect-loop.c (vect_analyze_loop_operations): Also handle
2772 double-reduction PHIs with vectorizable_lc_phi.
2773 (vect_analyze_loop_operations): Adjust.
2774 (vect_create_epilog_for_reduction): Remove all code not dealing
2775 with reduction LC PHI or epilogue generation.
2776 (vectorizable_live_operation): Call vect_create_epilog_for_reduction
2777 for live stmts of reductions.
2778 * tree-vect-stmts.c (vectorizable_condition): When !for_reduction
2779 do not handle defs that are not vect_internal_def.
2780 (can_vectorize_live_stmts): Adjust.
2781 (vect_analyze_stmt): When the vectorized stmt defined a value
2782 used on backedges adjust the backedge uses of vectorized PHIs.
2783
2784 2019-09-30 Martin Jambor <mjambor@suse.cz>
2785
2786 PR ipa/91853
2787 * tree-inline.c (force_value_to_type): New function.
2788 (setup_one_parameter): Use force_value_to_type to convert type.
2789 * tree-inline.c (force_value_to_type): Declare.
2790 * ipa-param-manipulation.c (ipa_param_adjustments::modify_call): Deal
2791 with register type mismatches.
2792
2793 2019-09-30 Andreas Tobler <andreast@gcc.gnu.org>
2794
2795 * config.gcc: Use the secure-plt on FreeBSD 13 and upwards for
2796 32-bit PowerPC.
2797 Define TARGET_FREEBSD32_SECURE_PLT for 64-bit PowerPC.
2798 * config/rs6000/t-freebsd64: Make use of the above define and build
2799 the 32-bit libraries with secure-plt.
2800
2801 2019-09-30 Jakub Jelinek <jakub@redhat.com>
2802
2803 PR target/91931
2804 * config/i386/i386-expand.c (ix86_expand_adjust_ufix_to_sfix_si): Use
2805 gen_int_mode instead of GEN_INT.
2806
2807 2019-09-29 Iain Sandoe <iain@sandoe.co.uk>
2808
2809 * config/darwin.c (gen_macho_low): Amend to include the mode
2810 argument.
2811 (machopic_indirect_data_reference): Amend gen_macho_low call
2812 to include mode argument
2813 * config/rs6000/rs6000.c (emit_move): Likewise. Amend a comment.
2814 * config/rs6000/darwin.md (@macho_low_<mode>): New, replaces
2815 the macho_high expander and two define_insn entries.
2816
2817 2019-09-29 Jakub Jelinek <jakub@redhat.com>
2818
2819 PR bootstrap/90543
2820 * optc-save-gen.awk: Fix up printing string option differences.
2821
2822 2019-09-29 Kewen Lin <linkw@gcc.gnu.org>
2823
2824 * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): Lower
2825 vec_perm cost to 1 for non-Power7 VSX architectures.
2826
2827 2019-09-29 Kewen Lin <linkw@gcc.gnu.org>
2828
2829 * config/rs6000/vsx.md (vec_pack[su]_float_v2di): New define_expand.
2830 (vec_unpack_[su]fix_trunc_hi_v4sf): Likewise.
2831 (vec_unpack_[su]fix_trunc_lo_v4sf): Likewise.
2832
2833 2019-09-28 Iain Sandoe <iain@sandoe.co.uk>
2834
2835 * config/darwin.c (gen_macho_high): Amend to include the mode
2836 argument.
2837 (machopic_indirect_data_reference): Amend gen_macho_high call
2838 to include mode argument.
2839 (machopic_legitimize_pic_address): Likewise.
2840 * config/rs6000/rs6000.c (rs6000_legitimize_address):
2841 * config/rs6000/darwin.md (@macho_high_<mode>): New, replaces
2842 the macho_high expander and two define_insn entries.
2843
2844 2019-09-28 Oleg Endo <olegendo@gcc.gnu.org>
2845
2846 PR target/86805
2847 * config/sh/sh.c (TARGET_HAVE_SPECULATION_SAFE_VALUE): Define.
2848
2849 2019-09-28 Oleg Endo <olegendo@gcc.gnu.org>
2850
2851 PR target/80672
2852 * config/sh/sh.c (parse_validate_atomic_model_option): Use
2853 std::string::compare instead of std::string::find.
2854
2855 2019-09-27 Maciej W. Rozycki <macro@wdc.com>
2856
2857 * configure: Regenerate.
2858
2859 2019-09-27 Jakub Jelinek <jakub@redhat.com>
2860
2861 PR middle-end/91920
2862 * gimplify.c (omp_default_clause): Predetermine DECL_IN_CONSTANT_POOL
2863 variables as shared.
2864
2865 2019-09-27 Iain Sandoe <iain@sandoe.co.uk>
2866
2867 * config/rs6000/darwin.md (@macho_correct_pic_<mode>): New,
2868 replaces the expander and two define_insn entries.
2869 (@reload_macho_picbase_<mode>): Update gen_macho_correct_pic
2870 call.
2871 * config/rs6000/rs6000.md (builtin_setjmp_receiver): Likewise.
2872
2873 2019-09-27 David Malcolm <dmalcolm@redhat.com>
2874
2875 * fibonacci_heap.h (fibonacci_heap::empty): Make const.
2876 (fibonacci_heap::nodes): Likewise.
2877 (fibonacci_heap::min_key): Likewise.
2878 (fibonacci_heap::min): Likewise.
2879
2880 2019-09-27 David Malcolm <dmalcolm@redhat.com>
2881
2882 * cgraph.c (cgraph_node::get_fun): Make const.
2883 * cgraph.h (cgraph_node::get_fun): Likewise.
2884
2885 2019-09-27 Jakub Jelinek <jakub@redhat.com>
2886
2887 PR target/91919
2888 * config/arm/arm.md (<US>mlal): Remove SE wrappers around operands
2889 of SImode MULT.
2890
2891 2019-09-27 Richard Biener <rguenther@suse.de>
2892
2893 * tree-vectorizer.h (_stmt_vec_info::reduc_fn): New.
2894 (STMT_VINFO_REDUC_FN): Likewise.
2895 * tree-vectorizer.c (vec_info::new_stmt_vec_info): Initialize
2896 STMT_VINFO_REDUC_FN.
2897 * tree-vect-loop.c (vect_is_simple_reduction): Fix STMT_VINFO_REDUC_IDX
2898 for condition reductions.
2899 (vect_create_epilog_for_reduction): Compute all required state
2900 from the stmt to be vectorized.
2901 (vectorizable_reduction): Simplify vect_create_epilog_for_reduction
2902 invocation and remove then dead code. For single def-use chains
2903 record only a single vector stmt.
2904
2905 2019-09-27 Richard Sandiford <richard.sandiford@arm.com>
2906
2907 * config/aarch64/aarch64-protos.h (aarch64_builtin_class): New enum.
2908 (AARCH64_BUILTIN_SHIFT, AARCH64_BUILTIN_CLASS): New constants.
2909 (aarch64_gimple_fold_builtin, aarch64_mangle_builtin_type)
2910 (aarch64_fold_builtin, aarch64_init_builtins, aarch64_expand_builtin):
2911 (aarch64_builtin_decl, aarch64_builtin_rsqrt): Delete.
2912 (aarch64_general_mangle_builtin_type, aarch64_general_init_builtins):
2913 (aarch64_general_fold_builtin, aarch64_general_gimple_fold_builtin):
2914 (aarch64_general_expand_builtin, aarch64_general_builtin_decl):
2915 (aarch64_general_builtin_rsqrt): Declare.
2916 * config/aarch64/aarch64-builtins.c (aarch64_general_add_builtin):
2917 New function.
2918 (aarch64_mangle_builtin_type): Rename to...
2919 (aarch64_general_mangle_builtin_type): ...this.
2920 (aarch64_init_fcmla_laneq_builtins, aarch64_init_simd_builtins)
2921 (aarch64_init_crc32_builtins, aarch64_init_builtin_rsqrt)
2922 (aarch64_init_pauth_hint_builtins, aarch64_init_tme_builtins): Use
2923 aarch64_general_add_builtin instead of add_builtin_function.
2924 (aarch64_init_builtins): Rename to...
2925 (aarch64_general_init_builtins): ...this. Use
2926 aarch64_general_add_builtin instead of add_builtin_function.
2927 (aarch64_builtin_decl): Rename to...
2928 (aarch64_general_builtin_decl): ...this and remove the unused
2929 arguments.
2930 (aarch64_expand_builtin): Rename to...
2931 (aarch64_general_expand_builtin): ...this and remove the unused
2932 arguments.
2933 (aarch64_builtin_rsqrt): Rename to...
2934 (aarch64_general_builtin_rsqrt): ...this.
2935 (aarch64_fold_builtin): Rename to...
2936 (aarch64_general_fold_builtin): ...this. Take the function subcode
2937 and return type as arguments. Remove the "ignored" argument.
2938 (aarch64_gimple_fold_builtin): Rename to...
2939 (aarch64_general_gimple_fold_builtin): ...this. Take the function
2940 subcode and gcall as arguments, and return the new function call.
2941 * config/aarch64/aarch64.c (aarch64_init_builtins)
2942 (aarch64_fold_builtin, aarch64_gimple_fold_builtin)
2943 (aarch64_expand_builtin, aarch64_builtin_decl): New functions.
2944 (aarch64_builtin_reciprocal): Call aarch64_general_builtin_rsqrt
2945 instead of aarch64_builtin_rsqrt.
2946 (aarch64_mangle_type): Call aarch64_general_mangle_builtin_type
2947 instead of aarch64_mangle_builtin_type.
2948
2949 2019-09-27 Richard Sandiford <richard.sandiford@arm.com>
2950
2951 * target.def (check_builtin_call): New target hook.
2952 * doc/tm.texi.in (TARGET_CHECK_BUILTIN_CALL): New @hook.
2953 * doc/tm.texi: Regenerate.
2954
2955 2019-09-27 Richard Sandiford <richard.sandiford@arm.com>
2956
2957 PR tree-optimization/91909
2958 * tree-vect-loop.c (vect_create_epilog_for_reduction): Take a
2959 reduc_index parameter. When handling COND_REDUCTION, make sure
2960 that the reduction phi operand is in the correct arm of the
2961 VEC_COND_EXPR.
2962 (vectorizable_reduction): Pass reduc_index to the above.
2963
2964 2019-09-27 Yuliang Wang <yuliang.wang@arm.com>
2965
2966 * config/aarch64/aarch64-sve2.md (aarch64_sve2_sra<mode>):
2967 New combine pattern.
2968
2969 2019-09-26 Max Filippov <jcmvbkbc@gmail.com>
2970
2971 * config/xtensa/xtensa.c (hwloop_optimize): Insert zero overhead
2972 loop instruction into new basic block before the loop when basic
2973 block that precedes the loop is empty.
2974
2975 2019-09-26 Jakub Jelinek <jakub@redhat.com>
2976
2977 * function.c (gimplify_parameters): Use build_clobber function.
2978 * tree-ssa.c (execute_update_addresses_taken): Likewise.
2979 * tree-inline.c (expand_call_inline): Likewise.
2980 * tree-sra.c (clobber_subtree): Likewise.
2981 * tree-ssa-ccp.c (insert_clobber_before_stack_restore): Likewise.
2982 * omp-low.c (lower_rec_simd_input_clauses, lower_rec_input_clauses,
2983 lower_omp_single, lower_depend_clauses, lower_omp_taskreg,
2984 lower_omp_target): Likewise.
2985 * omp-expand.c (expand_omp_for_generic): Likewise.
2986 * omp-offload.c (ompdevlow_adjust_simt_enter): Likewise.
2987
2988 2019-09-26 Will Schmidt <will_schmidt@vnet.ibm.com>
2989
2990 * config/rs6000/rs6000-builtin.def: (LVSL, LVSR, LVEBX, LVEHX,
2991 LVEWX, LVXL, LVXL_V2DF, LVXL_V2DI, LVXL_V4SF, LVXL_V4SI, LVXL_V8HI,
2992 LVXL_V16QI, LVX, LVX_V1TI, LVX_V2DF, LVX_V2DI, LVX_V4SF, LVX_V4SI,
2993 LVX_V8HI, LVX_V16QI, LVLX, LVLXL, LVRX, LVRXL, LXSDX, LXVD2X_V1TI,
2994 LXVD2X_V2DF, LXVD2X_V2DI, LXVDSX, LXVW4X_V4SF, LXVW4X_V4SI,
2995 LXVW4X_V8HI, LXVW4X_V16QI, LD_ELEMREV_V1TI, LD_ELEMREV_V2DF,
2996 LD_ELEMREV_V2DI, LD_ELEMREV_V4SF, LD_ELEMREV_V4SI, LD_ELEMREV_V8HI,
2997 LD_ELEMREV_V16QI): Use the PURE attribute.
2998
2999 2019-09-26 Iain Sandoe <iain@sandoe.co.uk>
3000
3001 * config/rs6000/darwin.md: Replace the expanders for
3002 load_macho_picbase and reload_macho_picbase with use of '@'
3003 and <mode> in their respective define_insns.
3004 (nonlocal_goto_receiver): Pass Pmode to gen_reload_macho_picbase.
3005 * config/rs6000/rs6000-logue.c (rs6000_emit_prologue): Pass
3006 Pmode to gen_load_macho_picbase.
3007 * config/rs6000/rs6000.md: Likewise.
3008
3009 2019-09-25 Richard Biener <rguenther@suse.de>
3010
3011 PR tree-optimization/91896
3012 * tree-vect-loop.c (vectorizable_reduction): The single
3013 def-use cycle optimization cannot apply when there's more
3014 than one pattern stmt involved.
3015
3016 2019-09-26 Richard Biener <rguenther@suse.de>
3017
3018 * tree-vect-loop.c (vect_analyze_loop_operations): Analyze
3019 loop-closed PHIs that are vect_internal_def.
3020 (vect_create_epilog_for_reduction): Exit early for nested cycles.
3021 Simplify.
3022 (vectorizable_lc_phi): New.
3023 * tree-vect-stmts.c (vect_analyze_stmt): Call vectorize_lc_phi.
3024 (vect_transform_stmt): Likewise.
3025 * tree-vectorizer.h (stmt_vec_info_type): Add lc_phi_info_type.
3026 (vectorizable_lc_phi): Declare.
3027
3028 2019-09-26 Richard Biener <rguenther@suse.de>
3029
3030 * tree-vect-loop.c (vect_analyze_loop_operations): Also call
3031 vectorizable_reduction for vect_double_reduction_def.
3032 (vect_transform_loop): Likewise.
3033 (vect_create_epilog_for_reduction): Move double-reduction
3034 PHI creation and preheader argument setting of PHIs ...
3035 (vectorizable_reduction): ... here. Also process
3036 vect_double_reduction_def PHIs, creating the vectorized
3037 PHI nodes, remembering the scalar adjustment computed for
3038 the epilogue in STMT_VINFO_REDUC_EPILOGUE_ADJUSTMENT.
3039 Remember the original reduction code in STMT_VINFO_REDUC_CODE.
3040 * tree-vectorizer.c (vec_info::new_stmt_vec_info):
3041 Initialize STMT_VINFO_REDUC_CODE.
3042 * tree-vectorizer.h (_stmt_vec_info::reduc_epilogue_adjustment): New.
3043 (_stmt_vec_info::reduc_code): Likewise.
3044 (STMT_VINFO_REDUC_EPILOGUE_ADJUSTMENT): Likewise.
3045 (STMT_VINFO_REDUC_CODE): Likewise.
3046
3047 2019-09-26 Matt Turner <mattst88@gmail.com>
3048
3049 PR driver/69471
3050 * config/aarch64/aarch64.opt (march=): Add Negative(march=).
3051 (mtune=): Add Negative(mtune=).
3052 (mcpu=): Add Negative(mcpu=).
3053 * config/arm/arm.opt: Likewise.
3054
3055 2019-09-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3056
3057 * config/arm/arm.md (arm_<simd32_op>): New define_insn.
3058 * config/arm/arm_acle.h (__smlald, __smlaldx, __smlsld, __smlsldx):
3059 Define.
3060 * config/arm/arm_acle.h: Define builtins for the above.
3061 * config/arm/iterators.md (SIMD32_DIMODE): New int_iterator.
3062 (simd32_op): Handle the above.
3063 * config/arm/unspecs.md: Define unspecs for the above.
3064
3065 2019-09-26 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3066
3067 * config/arm/arm.md (arm_<simd32_op>): New define_insn.
3068 (arm_<sup>xtb16): Likewise.
3069 (arm_usada8): Likewise.
3070 * config/arm/arm_acle.h (__qadd8, __qsub8, __shadd8, __shsub8,
3071 __uhadd8, __uhsub8, __uqadd8, __uqsub8, __qadd16, __qasx, __qsax,
3072 __qsub16, __shadd16, __shasx, __shsax, __shsub16, __uhadd16, __uhasx,
3073 __uhsax, __uhsub16, __uqadd16, __uqasx, __uqsax, __uqsub16, __sxtab16,
3074 __sxtb16, __uxtab16, __uxtb16): Define.
3075 * config/arm/arm_acle_builtins.def: Define builtins for the above.
3076 * config/arm/unspecs.md: Define unspecs for the above.
3077 * config/arm/iterators.md (SIMD32_NOGE_BINOP): New int_iterator.
3078 (USXTB16): Likewise.
3079 (simd32_op): New int_attribute.
3080 (sup): Handle UNSPEC_SXTB16, UNSPEC_UXTB16.
3081 * doc/sourcebuild.exp (arm_simd32_ok): Document.
3082
3083 2019-09-26 Martin Jambor <mjambor@suse.cz>
3084
3085 * ipa-sra.c (verify_splitting_accesses): Fix quoting in a call to
3086 internal_error.
3087
3088 2019-09-26 Martin Jambor <mjambor@suse.cz>
3089
3090 * ipa-sra.c (process_scan_results): Fix continue condition.
3091
3092 2019-09-26 Martin Liska <mliska@suse.cz>
3093
3094 PR tree-optimization/91885
3095 * tree-vectorizer.c (try_vectorize_loop_1): Add
3096 TODO_update_ssa_only_virtuals similarly to what slp pass does.
3097
3098 2019-09-26 Richard Sandiford <richard.sandiford@arm.com>
3099
3100 * config/aarch64/aarch64.c (aarch64_rtx_costs): Use
3101 aarch64_plus_immediate rather than aarch64_uimm12_shift
3102 to test for valid PLUS immediates.
3103
3104 2019-09-25 Martin Jambor <mjambor@suse.cz>
3105
3106 * tree-sra.c (no_accesses_p): Remove.
3107 (no_accesses_representant): Likewise.
3108
3109 2019-09-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3110
3111 * config/aarch64/arm_neon.h (vaba_s8): Use __ in identifiers
3112 consistenly.
3113 (vaba_s16): Likewise.
3114 (vaba_s32): Likewise.
3115 (vaba_u8): Likewise.
3116 (vaba_u16): Likewise.
3117 (vaba_u32): Likewise.
3118 (vabal_high_s8): Likewise.
3119 (vabal_high_s16): Likewise.
3120 (vabal_high_s32): Likewise.
3121 (vabal_high_u8): Likewise.
3122 (vabal_high_u16): Likewise.
3123 (vabal_high_u32): Likewise.
3124 (vabal_s8): Likewise.
3125 (vabal_s16): Likewise.
3126 (vabal_s32): Likewise.
3127 (vabal_u8): Likewise.
3128 (vabal_u16): Likewise.
3129 (vabal_u32): Likewise.
3130 (vabaq_s8): Likewise.
3131 (vabaq_s16): Likewise.
3132 (vabaq_s32): Likewise.
3133 (vabaq_u8): Likewise.
3134 (vabaq_u16): Likewise.
3135 (vabaq_u32): Likewise.
3136 (vabd_s8): Likewise.
3137 (vabd_s16): Likewise.
3138 (vabd_s32): Likewise.
3139 (vabd_u8): Likewise.
3140 (vabd_u16): Likewise.
3141 (vabd_u32): Likewise.
3142 (vabdl_high_s8): Likewise.
3143 (vabdl_high_s16): Likewise.
3144 (vabdl_high_s32): Likewise.
3145 (vabdl_high_u8): Likewise.
3146 (vabdl_high_u16): Likewise.
3147 (vabdl_high_u32): Likewise.
3148 (vabdl_s8): Likewise.
3149 (vabdl_s16): Likewise.
3150 (vabdl_s32): Likewise.
3151 (vabdl_u8): Likewise.
3152 (vabdl_u16): Likewise.
3153 (vabdl_u32): Likewise.
3154 (vabdq_s8): Likewise.
3155 (vabdq_s16): Likewise.
3156 (vabdq_s32): Likewise.
3157 (vabdq_u8): Likewise.
3158 (vabdq_u16): Likewise.
3159 (vabdq_u32): Likewise.
3160 (vaddlv_s8): Likewise.
3161 (vaddlv_s16): Likewise.
3162 (vaddlv_u8): Likewise.
3163 (vaddlv_u16): Likewise.
3164 (vaddlvq_s8): Likewise.
3165 (vaddlvq_s16): Likewise.
3166 (vaddlvq_s32): Likewise.
3167 (vaddlvq_u8): Likewise.
3168 (vaddlvq_u16): Likewise.
3169 (vaddlvq_u32): Likewise.
3170 (vcvtx_f32_f64): Likewise.
3171 (vcvtx_high_f32_f64): Likewise.
3172 (vcvtxd_f32_f64): Likewise.
3173 (vmla_n_f32): Likewise.
3174 (vmla_n_s16): Likewise.
3175 (vmla_n_s32): Likewise.
3176 (vmla_n_u16): Likewise.
3177 (vmla_n_u32): Likewise.
3178 (vmla_s8): Likewise.
3179 (vmla_s16): Likewise.
3180 (vmla_s32): Likewise.
3181 (vmla_u8): Likewise.
3182 (vmla_u16): Likewise.
3183 (vmla_u32): Likewise.
3184 (vmlal_high_n_s16): Likewise.
3185 (vmlal_high_n_s32): Likewise.
3186 (vmlal_high_n_u16): Likewise.
3187 (vmlal_high_n_u32): Likewise.
3188 (vmlal_high_s8): Likewise.
3189 (vmlal_high_s16): Likewise.
3190 (vmlal_high_s32): Likewise.
3191 (vmlal_high_u8): Likewise.
3192 (vmlal_high_u16): Likewise.
3193 (vmlal_high_u32): Likewise.
3194 (vmlal_n_s16): Likewise.
3195 (vmlal_n_s32): Likewise.
3196 (vmlal_n_u16): Likewise.
3197 (vmlal_n_u32): Likewise.
3198 (vmlal_s8): Likewise.
3199 (vmlal_s16): Likewise.
3200 (vmlal_s32): Likewise.
3201 (vmlal_u8): Likewise.
3202 (vmlal_u16): Likewise.
3203 (vmlal_u32): Likewise.
3204 (vmlaq_n_f32): Likewise.
3205 (vmlaq_n_s16): Likewise.
3206 (vmlaq_n_s32): Likewise.
3207 (vmlaq_n_u16): Likewise.
3208 (vmlaq_n_u32): Likewise.
3209 (vmlaq_s8): Likewise.
3210 (vmlaq_s16): Likewise.
3211 (vmlaq_s32): Likewise.
3212 (vmlaq_u8): Likewise.
3213 (vmlaq_u16): Likewise.
3214 (vmlaq_u32): Likewise.
3215 (vmls_n_f32): Likewise.
3216 (vmls_n_s16): Likewise.
3217 (vmls_n_s32): Likewise.
3218 (vmls_n_u16): Likewise.
3219 (vmls_n_u32): Likewise.
3220 (vmls_s8): Likewise.
3221 (vmls_s16): Likewise.
3222 (vmls_s32): Likewise.
3223 (vmls_u8): Likewise.
3224 (vmls_u16): Likewise.
3225 (vmls_u32): Likewise.
3226 (vmlsl_high_n_s16): Likewise.
3227 (vmlsl_high_n_s32): Likewise.
3228 (vmlsl_high_n_u16): Likewise.
3229 (vmlsl_high_n_u32): Likewise.
3230 (vmlsl_high_s8): Likewise.
3231 (vmlsl_high_s16): Likewise.
3232 (vmlsl_high_s32): Likewise.
3233 (vmlsl_high_u8): Likewise.
3234 (vmlsl_high_u16): Likewise.
3235 (vmlsl_high_u32): Likewise.
3236 (vmlsl_n_s16): Likewise.
3237 (vmlsl_n_s32): Likewise.
3238 (vmlsl_n_u16): Likewise.
3239 (vmlsl_n_u32): Likewise.
3240 (vmlsl_s8): Likewise.
3241 (vmlsl_s16): Likewise.
3242 (vmlsl_s32): Likewise.
3243 (vmlsl_u8): Likewise.
3244 (vmlsl_u16): Likewise.
3245 (vmlsl_u32): Likewise.
3246 (vmlsq_n_f32): Likewise.
3247 (vmlsq_n_s16): Likewise.
3248 (vmlsq_n_s32): Likewise.
3249 (vmlsq_n_u16): Likewise.
3250 (vmlsq_n_u32): Likewise.
3251 (vmlsq_s8): Likewise.
3252 (vmlsq_s16): Likewise.
3253 (vmlsq_s32): Likewise.
3254 (vmlsq_u8): Likewise.
3255 (vmlsq_u16): Likewise.
3256 (vmlsq_u32): Likewise.
3257 (vmovl_high_s8): Likewise.
3258 (vmovl_high_s16): Likewise.
3259 (vmovl_high_s32): Likewise.
3260 (vmovl_high_u8): Likewise.
3261 (vmovl_high_u16): Likewise.
3262 (vmovl_high_u32): Likewise.
3263 (vmovl_s8): Likewise.
3264 (vmovl_s16): Likewise.
3265 (vmovl_s32): Likewise.
3266 (vmovl_u8): Likewise.
3267 (vmovl_u16): Likewise.
3268 (vmovl_u32): Likewise.
3269 (vmovn_high_s16): Likewise.
3270 (vmovn_high_s32): Likewise.
3271 (vmovn_high_s64): Likewise.
3272 (vmovn_high_u16): Likewise.
3273 (vmovn_high_u32): Likewise.
3274 (vmovn_high_u64): Likewise.
3275 (vmovn_s16): Likewise.
3276 (vmovn_s32): Likewise.
3277 (vmovn_s64): Likewise.
3278 (vmovn_u16): Likewise.
3279 (vmovn_u32): Likewise.
3280 (vmovn_u64): Likewise.
3281 (vmull_high_n_s16): Likewise.
3282 (vmull_high_n_s32): Likewise.
3283 (vmull_high_n_u16): Likewise.
3284 (vmull_high_n_u32): Likewise.
3285 (vmull_high_p8): Likewise.
3286 (vmull_high_s8): Likewise.
3287 (vmull_high_s16): Likewise.
3288 (vmull_high_s32): Likewise.
3289 (vmull_high_u8): Likewise.
3290 (vmull_high_u16): Likewise.
3291 (vmull_high_u32): Likewise.
3292 (vmull_n_s16): Likewise.
3293 (vmull_n_s32): Likewise.
3294 (vmull_n_u16): Likewise.
3295 (vmull_n_u32): Likewise.
3296 (vmull_p8): Likewise.
3297 (vmull_s8): Likewise.
3298 (vmull_s16): Likewise.
3299 (vmull_s32): Likewise.
3300 (vmull_u8): Likewise.
3301 (vmull_u16): Likewise.
3302 (vmull_u32): Likewise.
3303 (vpadal_s8): Likewise.
3304 (vpadal_s16): Likewise.
3305 (vpadal_s32): Likewise.
3306 (vpadal_u8): Likewise.
3307 (vpadal_u16): Likewise.
3308 (vpadal_u32): Likewise.
3309 (vpadalq_s8): Likewise.
3310 (vpadalq_s16): Likewise.
3311 (vpadalq_s32): Likewise.
3312 (vpadalq_u8): Likewise.
3313 (vpadalq_u16): Likewise.
3314 (vpadalq_u32): Likewise.
3315 (vpaddl_s8): Likewise.
3316 (vpaddl_s16): Likewise.
3317 (vpaddl_s32): Likewise.
3318 (vpaddl_u8): Likewise.
3319 (vpaddl_u16): Likewise.
3320 (vpaddl_u32): Likewise.
3321 (vpaddlq_s8): Likewise.
3322 (vpaddlq_s16): Likewise.
3323 (vpaddlq_s32): Likewise.
3324 (vpaddlq_u8): Likewise.
3325 (vpaddlq_u16): Likewise.
3326 (vpaddlq_u32): Likewise.
3327 (vpaddq_s8): Likewise.
3328 (vpaddq_s16): Likewise.
3329 (vpaddq_s32): Likewise.
3330 (vpaddq_s64): Likewise.
3331 (vpaddq_u8): Likewise.
3332 (vpaddq_u16): Likewise.
3333 (vpaddq_u32): Likewise.
3334 (vpaddq_u64): Likewise.
3335 (vqdmulh_n_s16): Likewise.
3336 (vqdmulh_n_s32): Likewise.
3337 (vqdmulhq_n_s16): Likewise.
3338 (vqdmulhq_n_s32): Likewise.
3339 (vqmovn_high_s16): Likewise.
3340 (vqmovn_high_s32): Likewise.
3341 (vqmovn_high_s64): Likewise.
3342 (vqmovn_high_u16): Likewise.
3343 (vqmovn_high_u32): Likewise.
3344 (vqmovn_high_u64): Likewise.
3345 (vqmovun_high_s16): Likewise.
3346 (vqmovun_high_s32): Likewise.
3347 (vqmovun_high_s64): Likewise.
3348 (vqrdmulh_n_s16): Likewise.
3349 (vqrdmulh_n_s32): Likewise.
3350 (vqrdmulhq_n_s16): Likewise.
3351 (vqrdmulhq_n_s32): Likewise.
3352 (vrsqrte_u32): Likewise.
3353 (vrsqrteq_u32): Likewise.
3354 (vtst_p8): Likewise.
3355 (vtst_p16): Likewise.
3356 (vtst_p64): Likewise.
3357 (vtstq_p8): Likewise.
3358 (vtstq_p16): Likewise.
3359 (vtstq_p64): Likewise.
3360 (vaddlv_s32): Likewise.
3361 (vaddlv_u32): Likewise.
3362 (vqtbl1_p8): Likewise.
3363 (vqtbl1_s8): Likewise.
3364 (vqtbl1_u8): Likewise.
3365 (vqtbl1q_p8): Likewise.
3366 (vqtbl1q_s8): Likewise.
3367 (vqtbl1q_u8): Likewise.
3368 (vqtbx1_s8): Likewise.
3369 (vqtbx1_u8): Likewise.
3370 (vqtbx1_p8): Likewise.
3371 (vqtbx1q_s8): Likewise.
3372 (vqtbx1q_u8): Likewise.
3373 (vqtbx1q_p8): Likewise.
3374 (vtbl1_s8): Likewise.
3375 (vtbl1_u8): Likewise.
3376 (vtbl1_p8): Likewise.
3377 (vtbl2_s8): Likewise.
3378 (vtbl2_u8): Likewise.
3379 (vtbl2_p8): Likewise.
3380 (vtbl3_s8): Likewise.
3381 (vtbl3_u8): Likewise.
3382 (vtbl3_p8): Likewise.
3383 (vtbl4_s8): Likewise.
3384 (vtbl4_u8): Likewise.
3385 (vtbl4_p8): Likewise.
3386 (vtbx2_s8): Likewise.
3387 (vtbx2_u8): Likewise.
3388 (vtbx2_p8): Likewise.
3389 (vld1_f32): Likewise.
3390 (vld1_f64): Likewise.
3391 (vld1_p8): Likewise.
3392 (vld1_p16): Likewise.
3393 (vld1_p64): Likewise.
3394 (vld1_s8): Likewise.
3395 (vld1_s16): Likewise.
3396 (vld1_s32): Likewise.
3397 (vld1_s64): Likewise.
3398 (vld1_u8): Likewise.
3399 (vld1_u16): Likewise.
3400 (vld1_u32): Likewise.
3401 (vld1_u64): Likewise.
3402 (vld1q_f32): Likewise.
3403 (vld1q_f64): Likewise.
3404 (vld1q_p8): Likewise.
3405 (vld1q_p16): Likewise.
3406 (vld1q_p64): Likewise.
3407 (vld1q_s8): Likewise.
3408 (vld1q_s16): Likewise.
3409 (vld1q_s32): Likewise.
3410 (vld1q_s64): Likewise.
3411 (vld1q_u8): Likewise.
3412 (vld1q_u16): Likewise.
3413 (vld1q_u32): Likewise.
3414 (vld1q_u64): Likewise.
3415 (vpmax_s8): Likewise.
3416 (vpmax_s16): Likewise.
3417 (vpmax_s32): Likewise.
3418 (vpmax_u8): Likewise.
3419 (vpmax_u16): Likewise.
3420 (vpmax_u32): Likewise.
3421 (vpmaxq_s8): Likewise.
3422 (vpmaxq_s16): Likewise.
3423 (vpmaxq_s32): Likewise.
3424 (vpmaxq_u8): Likewise.
3425 (vpmaxq_u16): Likewise.
3426 (vpmaxq_u32): Likewise.
3427 (vpmax_f32): Likewise.
3428 (vpmaxq_f32): Likewise.
3429 (vpmaxq_f64): Likewise.
3430 (vpmaxqd_f64): Likewise.
3431 (vpmaxs_f32): Likewise.
3432 (vpmaxnm_f32): Likewise.
3433 (vpmaxnmq_f32): Likewise.
3434 (vpmaxnmq_f64): Likewise.
3435 (vpmaxnmqd_f64): Likewise.
3436 (vpmaxnms_f32): Likewise.
3437 (vpmin_s8): Likewise.
3438 (vpmin_s16): Likewise.
3439 (vpmin_s32): Likewise.
3440 (vpmin_u8): Likewise.
3441 (vpmin_u16): Likewise.
3442 (vpmin_u32): Likewise.
3443 (vpminq_s8): Likewise.
3444 (vpminq_s16): Likewise.
3445 (vpminq_s32): Likewise.
3446 (vpminq_u8): Likewise.
3447 (vpminq_u16): Likewise.
3448 (vpminq_u32): Likewise.
3449 (vpmin_f32): Likewise.
3450 (vpminq_f32): Likewise.
3451 (vpminq_f64): Likewise.
3452 (vpminqd_f64): Likewise.
3453 (vpmins_f32): Likewise.
3454 (vpminnm_f32): Likewise.
3455 (vpminnmq_f32): Likewise.
3456 (vpminnmq_f64): Likewise.
3457 (vpminnmqd_f64): Likewise.
3458 (vpminnms_f32): Likewise.
3459 (vmla_f32): Likewise.
3460 (vmlaq_f32): Likewise.
3461 (vmlaq_f64): Likewise.
3462 (vmls_f32): Likewise.
3463 (vmlsq_f32): Likewise.
3464 (vmlsq_f64): Likewise.
3465 (vqtbl2_s8): Likewise.
3466 (vqtbl2_u8): Likewise.
3467 (vqtbl2_p8): Likewise.
3468 (vqtbl2q_s8): Likewise.
3469 (vqtbl2q_u8): Likewise.
3470 (vqtbl2q_p8): Likewise.
3471 (vqtbl3_s8): Likewise.
3472 (vqtbl3_u8): Likewise.
3473 (vqtbl3_p8): Likewise.
3474 (vqtbl3q_s8): Likewise.
3475 (vqtbl3q_u8): Likewise.
3476 (vqtbl3q_p8): Likewise.
3477 (vqtbl4_s8): Likewise.
3478 (vqtbl4_u8): Likewise.
3479 (vqtbl4_p8): Likewise.
3480 (vqtbl4q_s8): Likewise.
3481 (vqtbl4q_u8): Likewise.
3482 (vqtbl4q_p8): Likewise.
3483 (vqtbx2_s8): Likewise.
3484 (vqtbx2_u8): Likewise.
3485 (vqtbx2_p8): Likewise.
3486 (vqtbx2q_s8): Likewise.
3487 (vqtbx2q_u8): Likewise.
3488 (vqtbx2q_p8): Likewise.
3489 (vqtbx3_s8): Likewise.
3490 (vqtbx3_u8): Likewise.
3491 (vqtbx3_p8): Likewise.
3492 (vqtbx3q_s8): Likewise.
3493 (vqtbx3q_u8): Likewise.
3494 (vqtbx3q_p8): Likewise.
3495 (vqtbx4_s8): Likewise.
3496 (vqtbx4_u8): Likewise.
3497 (vqtbx4_p8): Likewise.
3498 (vqtbx4q_s8): Likewise.
3499 (vqtbx4q_u8): Likewise.
3500 (vqtbx4q_p8): Likewise.
3501 (vrev16_p8): Likewise.
3502 (vrev16_s8): Likewise.
3503 (vrev16_u8): Likewise.
3504 (vrev16q_p8): Likewise.
3505 (vrev16q_s8): Likewise.
3506 (vrev16q_u8): Likewise.
3507 (vrev32_p8): Likewise.
3508 (vrev32_p16): Likewise.
3509 (vrev32_s8): Likewise.
3510 (vrev32_s16): Likewise.
3511 (vrev32_u8): Likewise.
3512 (vrev32_u16): Likewise.
3513 (vrev32q_p8): Likewise.
3514 (vrev32q_p16): Likewise.
3515 (vrev32q_s8): Likewise.
3516 (vrev32q_s16): Likewise.
3517 (vrev32q_u8): Likewise.
3518 (vrev32q_u16): Likewise.
3519 (vrev64_f32): Likewise.
3520 (vrev64_p8): Likewise.
3521 (vrev64_p16): Likewise.
3522 (vrev64_s8): Likewise.
3523 (vrev64_s16): Likewise.
3524 (vrev64_s32): Likewise.
3525 (vrev64_u8): Likewise.
3526 (vrev64_u16): Likewise.
3527 (vrev64_u32): Likewise.
3528 (vrev64q_f32): Likewise.
3529 (vrev64q_p8): Likewise.
3530 (vrev64q_p16): Likewise.
3531 (vrev64q_s8): Likewise.
3532 (vrev64q_s16): Likewise.
3533 (vrev64q_s32): Likewise.
3534 (vrev64q_u8): Likewise.
3535 (vrev64q_u16): Likewise.
3536 (vrev64q_u32): Likewise.
3537 (vsha1cq_u32): Likewise.
3538 (vsha1mq_u32): Likewise.
3539 (vsha1pq_u32): Likewise.
3540 (vsha1h_u32): Likewise.
3541 (vsha1su0q_u32): Likewise.
3542 (vsha1su1q_u32): Likewise.
3543 (vsha256hq_u32): Likewise.
3544 (vsha256h2q_u32): Likewise.
3545 (vsha256su0q_u32): Likewise.
3546 (vsha256su1q_u32): Likewise.
3547 (vmull_p64): Likewise.
3548 (vmull_high_p64): Likewise.
3549 (vsqrt_f32): Likewise.
3550 (vsqrtq_f32): Likewise.
3551 (vsqrt_f64): Likewise.
3552 (vsqrtq_f64): Likewise.
3553 (vst1_f32): Likewise.
3554 (vst1_f64): Likewise.
3555 (vst1_p8): Likewise.
3556 (vst1_p16): Likewise.
3557 (vst1_p64): Likewise.
3558 (vst1_s8): Likewise.
3559 (vst1_s16): Likewise.
3560 (vst1_s32): Likewise.
3561 (vst1_s64): Likewise.
3562 (vst1_u8): Likewise.
3563 (vst1_u16): Likewise.
3564 (vst1_u32): Likewise.
3565 (vst1_u64): Likewise.
3566 (vst1q_f32): Likewise.
3567 (vst1q_f64): Likewise.
3568 (vst1q_p8): Likewise.
3569 (vst1q_p16): Likewise.
3570 (vst1q_p64): Likewise.
3571 (vst1q_s8): Likewise.
3572 (vst1q_s16): Likewise.
3573 (vst1q_s32): Likewise.
3574 (vst1q_s64): Likewise.
3575 (vst1q_u8): Likewise.
3576 (vst1q_u16): Likewise.
3577 (vst1q_u32): Likewise.
3578 (vst1q_u64): Likewise.
3579 (vst1_s64_x2): Likewise.
3580 (vst1_u64_x2): Likewise.
3581 (vst1_f64_x2): Likewise.
3582 (vst1_s8_x2): Likewise.
3583 (vst1_p8_x2): Likewise.
3584 (vst1_s16_x2): Likewise.
3585 (vst1_p16_x2): Likewise.
3586 (vst1_s32_x2): Likewise.
3587 (vst1_u8_x2): Likewise.
3588 (vst1_u16_x2): Likewise.
3589 (vst1_u32_x2): Likewise.
3590 (vst1_f16_x2): Likewise.
3591 (vst1_f32_x2): Likewise.
3592 (vst1_p64_x2): Likewise.
3593 (vst1q_s8_x2): Likewise.
3594 (vst1q_p8_x2): Likewise.
3595 (vst1q_s16_x2): Likewise.
3596 (vst1q_p16_x2): Likewise.
3597 (vst1q_s32_x2): Likewise.
3598 (vst1q_s64_x2): Likewise.
3599 (vst1q_u8_x2): Likewise.
3600 (vst1q_u16_x2): Likewise.
3601 (vst1q_u32_x2): Likewise.
3602 (vst1q_u64_x2): Likewise.
3603 (vst1q_f16_x2): Likewise.
3604 (vst1q_f32_x2): Likewise.
3605 (vst1q_f64_x2): Likewise.
3606 (vst1q_p64_x2): Likewise.
3607 (vst1_s64_x3): Likewise.
3608 (vst1_u64_x3): Likewise.
3609 (vst1_f64_x3): Likewise.
3610 (vst1_s8_x3): Likewise.
3611 (vst1_p8_x3): Likewise.
3612 (vst1_s16_x3): Likewise.
3613 (vst1_p16_x3): Likewise.
3614 (vst1_s32_x3): Likewise.
3615 (vst1_u8_x3): Likewise.
3616 (vst1_u16_x3): Likewise.
3617 (vst1_u32_x3): Likewise.
3618 (vst1_f16_x3): Likewise.
3619 (vst1_f32_x3): Likewise.
3620 (vst1_p64_x3): Likewise.
3621 (vst1q_s8_x3): Likewise.
3622 (vst1q_p8_x3): Likewise.
3623 (vst1q_s16_x3): Likewise.
3624 (vst1q_p16_x3): Likewise.
3625 (vst1q_s32_x3): Likewise.
3626 (vst1q_s64_x3): Likewise.
3627 (vst1q_u8_x3): Likewise.
3628 (vst1q_u16_x3): Likewise.
3629 (vst1q_u32_x3): Likewise.
3630 (vst1q_u64_x3): Likewise.
3631 (vst1q_f16_x3): Likewise.
3632 (vst1q_f32_x3): Likewise.
3633 (vst1q_f64_x3): Likewise.
3634 (vst1q_p64_x3): Likewise.
3635 (vst2_s64): Likewise.
3636 (vst2_u64): Likewise.
3637 (vst2_f64): Likewise.
3638 (vst2_s8): Likewise.
3639 (vst2_p8): Likewise.
3640 (vst2_s16): Likewise.
3641 (vst2_p16): Likewise.
3642 (vst2_s32): Likewise.
3643 (vst2_u8): Likewise.
3644 (vst2_u16): Likewise.
3645 (vst2_u32): Likewise.
3646 (vst2_f16): Likewise.
3647 (vst2_f32): Likewise.
3648 (vst2_p64): Likewise.
3649 (vst2q_s8): Likewise.
3650 (vst2q_p8): Likewise.
3651 (vst2q_s16): Likewise.
3652 (vst2q_p16): Likewise.
3653 (vst2q_s32): Likewise.
3654 (vst2q_s64): Likewise.
3655 (vst2q_u8): Likewise.
3656 (vst2q_u16): Likewise.
3657 (vst2q_u32): Likewise.
3658 (vst2q_u64): Likewise.
3659 (vst2q_f16): Likewise.
3660 (vst2q_f32): Likewise.
3661 (vst2q_f64): Likewise.
3662 (vst2q_p64): Likewise.
3663 (vst3_s64): Likewise.
3664 (vst3_u64): Likewise.
3665 (vst3_f64): Likewise.
3666 (vst3_s8): Likewise.
3667 (vst3_p8): Likewise.
3668 (vst3_s16): Likewise.
3669 (vst3_p16): Likewise.
3670 (vst3_s32): Likewise.
3671 (vst3_u8): Likewise.
3672 (vst3_u16): Likewise.
3673 (vst3_u32): Likewise.
3674 (vst3_f16): Likewise.
3675 (vst3_f32): Likewise.
3676 (vst3_p64): Likewise.
3677 (vst3q_s8): Likewise.
3678 (vst3q_p8): Likewise.
3679 (vst3q_s16): Likewise.
3680 (vst3q_p16): Likewise.
3681 (vst3q_s32): Likewise.
3682 (vst3q_s64): Likewise.
3683 (vst3q_u8): Likewise.
3684 (vst3q_u16): Likewise.
3685 (vst3q_u32): Likewise.
3686 (vst3q_u64): Likewise.
3687 (vst3q_f16): Likewise.
3688 (vst3q_f32): Likewise.
3689 (vst3q_f64): Likewise.
3690 (vst3q_p64): Likewise.
3691 (vst4_s64): Likewise.
3692 (vst4_u64): Likewise.
3693 (vst4_f64): Likewise.
3694 (vst4_s8): Likewise.
3695 (vst4_p8): Likewise.
3696 (vst4_s16): Likewise.
3697 (vst4_p16): Likewise.
3698 (vst4_s32): Likewise.
3699 (vst4_u8): Likewise.
3700 (vst4_u16): Likewise.
3701 (vst4_u32): Likewise.
3702 (vst4_f16): Likewise.
3703 (vst4_f32): Likewise.
3704 (vst4_p64): Likewise.
3705 (vst4q_s8): Likewise.
3706 (vst4q_p8): Likewise.
3707 (vst4q_s16): Likewise.
3708 (vst4q_p16): Likewise.
3709 (vst4q_s32): Likewise.
3710 (vst4q_s64): Likewise.
3711 (vst4q_u8): Likewise.
3712 (vst4q_u16): Likewise.
3713 (vst4q_u32): Likewise.
3714 (vst4q_u64): Likewise.
3715 (vst4q_f16): Likewise.
3716 (vst4q_f32): Likewise.
3717 (vst4q_f64): Likewise.
3718 (vst4q_p64): Likewise.
3719 (vtbx4_s8): Likewise.
3720 (vtbx4_u8): Likewise.
3721 (vtbx4_p8): Likewise.
3722 (vtrn_f32): Likewise.
3723 (vtrn_p8): Likewise.
3724 (vtrn_p16): Likewise.
3725 (vtrn_s8): Likewise.
3726 (vtrn_s16): Likewise.
3727 (vtrn_s32): Likewise.
3728 (vtrn_u8): Likewise.
3729 (vtrn_u16): Likewise.
3730 (vtrn_u32): Likewise.
3731 (vtrnq_f32): Likewise.
3732 (vtrnq_p8): Likewise.
3733 (vtrnq_p16): Likewise.
3734 (vtrnq_s8): Likewise.
3735 (vtrnq_s16): Likewise.
3736 (vtrnq_s32): Likewise.
3737 (vtrnq_u8): Likewise.
3738 (vtrnq_u16): Likewise.
3739 (vtrnq_u32): Likewise.
3740 (vrsqrte_f16): Likewise.
3741 (vrsqrteq_f16): Likewise.
3742 (vsqrt_f16): Likewise.
3743 (vsqrtq_f16): Likewise.
3744 (vabd_f16): Likewise.
3745 (vabdq_f16): Likewise.
3746 (vpadd_f16): Likewise.
3747 (vpaddq_f16): Likewise.
3748 (vpmax_f16): Likewise.
3749 (vpmaxq_f16): Likewise.
3750 (vpmaxnm_f16): Likewise.
3751 (vpmaxnmq_f16): Likewise.
3752 (vpmin_f16): Likewise.
3753 (vpminq_f16): Likewise.
3754 (vpminnm_f16): Likewise.
3755 (vpminnmq_f16): Likewise.
3756 (vrsqrts_f16): Likewise.
3757 (vrsqrtsq_f16): Likewise.
3758
3759 2019-09-25 Richard Biener <rguenther@suse.de>
3760
3761 PR tree-optimization/91896
3762 * tree-vect-loop.c (vectorizable_reduction): The single
3763 def-use cycle optimization cannot apply when there's more
3764 than one pattern stmt involved.
3765
3766 2019-09-24 Iain Sandoe <iain@sandoe.co.uk>
3767
3768 * config/rs6000/rs6000.md (load_macho_picbase_<mode>): New, using
3769 the 'P' mode iterator, replacing the (removed) SI and DI variants.
3770 (reload_macho_picbase_<mode>): Likewise.
3771
3772 2019-09-24 Iain Sandoe <iain@sandoe.co.uk>
3773
3774 * config/rs6000/rs6000.md: Move darwin.md include until
3775 after the definition of the mode iterators.
3776
3777 2019-09-23 Martin Sebor <msebor@redhat.com>
3778
3779 PR tree-optimization/91570
3780 * tree-ssa-strlen.c (get_range_strlen_dynamic): Handle null and
3781 non-constant minlen, maxlen and maxbound.
3782
3783 2019-09-24 Richard Biener <rguenther@suse.de>
3784
3785 * tree-vectorizer.h (_stmt_vec_info::const_cond_reduc_code):
3786 Rename to...
3787 (_stmt_vec_info::cond_reduc_code): ... this.
3788 (_stmt_vec_info::induc_cond_initial_val): Add.
3789 (STMT_VINFO_VEC_CONST_COND_REDUC_CODE): Rename to...
3790 (STMT_VINFO_VEC_COND_REDUC_CODE): ... this.
3791 (STMT_VINFO_VEC_INDUC_COND_INITIAL_VAL): Add.
3792 * tree-vectorizer.c (vec_info::new_stmt_vec_info): Adjust.
3793 * tree-vect-loop.c (get_initial_def_for_reduction): Pass in
3794 the reduction code.
3795 (vect_create_epilog_for_reduction): Drop special
3796 induction condition reduction params, pass in reduction code
3797 and simplify.
3798 (vectorizable_reduction): Perform condition reduction kind
3799 selection only at analysis time. Adjust passing on state.
3800
3801 2019-09-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3802
3803 * config/aarch64/aarch64.md (mov<mode>): Don't call
3804 aarch64_split_dimode_const_store on volatile MEM.
3805
3806 2019-09-24 Stamatis Markianos-Wright <stam.markianos-wright@arm.com>
3807
3808 * config/aarch64/aarch64-option-extensions.def (fp16fml):
3809 Update hwcap string for fp16fml.
3810
3811 2019-09-24 Jakub Jelinek <jakub@redhat.com>
3812
3813 PR middle-end/91866
3814 * match.pd (((T)(A)) + CST -> (T)(A + CST)): Formatting fix.
3815 (((T)(A + CST1)) + CST2 -> (T)(A) + (T)CST1 + CST2): New optimization.
3816
3817 2019-09-24 Martin Liska <mliska@suse.cz>
3818
3819 * cfgexpand.c (gimple_assign_rhs_to_tree): Use switch statement
3820 instead of if-elseif-elseif-...
3821 * gimple-expr.c (extract_ops_from_tree): Likewise.
3822 * gimple.c (get_gimple_rhs_num_ops): Likewise.
3823 * tree-ssa-forwprop.c (rhs_to_tree): Likewise.
3824
3825 2019-09-24 Martin Jambor <mjambor@suse.cz>
3826
3827 PR ipa/91831
3828 * ipa-param-manipulation.c (carry_over_param): Make a method of
3829 ipa_param_body_adjustments, remove now unnecessary argument. Also copy
3830 in case of a context mismatch.
3831 (ipa_param_body_adjustments::common_initialization): Adjust call to
3832 carry_over_param.
3833 * ipa-param-manipulation.h (class ipa_param_body_adjustments): Add
3834 private method carry_over_param.
3835
3836 2019-09-24 Martin Jambor <mjambor@suse.cz>
3837
3838 PR ipa/91832
3839 * ipa-sra.c (scan_expr_access): Check that offset is non-negative.
3840
3841 2019-09-24 Richard Biener <rguenther@suse.de>
3842
3843 * tree-ssa-sccvn.c (vn_reference_lookup_3): Valueize MEM_REF
3844 base.
3845
3846 2019-09-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
3847
3848 * config/arm/t-arm (arm-builtins.o): Add dependency on
3849 arm_acle_builtins.def.
3850
3851 2019-09-23 Richard Sandiford <richard.sandiford@arm.com>
3852
3853 PR target/91823
3854 * config/rs6000/altivec.md (altivec_copysign_v4sf3): Generate
3855 canonical CONST_INTs. Use gen_rtvec.
3856
3857 2019-09-23 Richard Biener <rguenther@suse.de>
3858
3859 * tree-vect-loop.c (get_initial_def_for_reduction): Simplify,
3860 avoid adjusting by + 0 or * 1.
3861 (vect_create_epilog_for_reduction): Get reduction code only
3862 when necessary. Deal with adjustment_def only when necessary.
3863
3864 2019-09-23 Richard Sandiford <richard.sandiford@arm.com>
3865
3866 * config/aarch64/atomics.md (aarch64_store_exclusive_pair): Fix
3867 memmodel index.
3868
3869 2019-09-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3870
3871 PR ipa/91835
3872 * lto-section-in.c (lto_section_name): Use "ipa_sra" instead of
3873 "ipa-sra".
3874
3875 2019-09-22 Iain Sandoe <iain@sandoe.co.uk>
3876
3877 * config/rs6000/rs6000.c (machopic_output_stub): Remove dead
3878 code. Merge code blocks with common conditionals. Use declared
3879 macro instead of a magic number for PIC level.
3880
3881 2019-09-21 Martin Sebor <msebor@redhat.com>
3882
3883 PR middle-end/91830
3884 * gcc/gimple-ssa-warn-restrict.c (builtin_memref::set_base_and_offset):
3885 Simplify computation of the offset of the referenced subobject.
3886
3887 2019-09-21 Iain Sandoe <iain@sandoe.co.uk>
3888
3889 * config/darwin.c (machopic_legitimize_pic_address): Check
3890 for lra not reload.
3891
3892 2019-09-21 Richard Sandiford <richard.sandiford@arm.com>
3893
3894 * ira-conflicts.c (can_use_same_reg_p): New function.
3895 (process_reg_shuffles): Take an insn parameter. Ignore cases
3896 in which input operand op_num could seemingly never be allocated
3897 to the same register as the destination.
3898 (add_insn_allocno_copies): Update call to process_reg_shuffles.
3899
3900 2019-09-21 Richard Sandiford <richard.sandiford@arm.com>
3901
3902 * simplify-rtx.c (neg_const_int): Replace with...
3903 (neg_poly_int_rtx): ...this new function.
3904 (simplify_binary_operation_1): Extend (minus x C) -> (plus X -C)
3905 to all CONST_SCALAR_INTs and to CONST_POLY_INT.
3906 (simplify_plus_minus): Likewise for constant terms here.
3907
3908 2019-09-20 Jonas Pfeil <jonas.pfeil@uli-ulm.de>
3909
3910 * config/microblaze/microblaze.h (ASM_OUTPUT_SKIP): Use
3911 HOST_WIDE_PRINT_UNSIGNED.
3912
3913 2019-09-20 John David Anglin <danglin@gcc.gnu.org>
3914
3915 * config/pa/pa.c (pa_trampoline_init): Remove spurious extended
3916 character.
3917
3918 2019-09-20 Maya Rashish <coypu@sdf.org>
3919
3920 PR target/86811
3921 * config/vax/vax.c (TARGET_HAVE_SPECULATION_SAFE_VALUE):
3922 Define to speculation_safe_value_not_needed.
3923
3924 2019-09-20 Richard Biener <rguenther@suse.de>
3925 Uros Bizjak <ubizjak@gmail.com>
3926
3927 PR target/91814
3928 * config/i386/i386-features.c (gen_gpr_to_xmm_move_src): Revert
3929 previous change.
3930 (general_scalar_chain::convert_op): Force not suitable memory
3931 operands to a register.
3932
3933 2019-09-20 Richard Biener <rguenther@suse.de>
3934
3935 PR tree-optimization/91821
3936 * tree-vect-loop.c (check_reduction_path): Check we can compute
3937 reduc_idx.
3938 (vect_is_simple_reduction): Set STMT_VINFO_REDUC_IDX.
3939 * tree-vect-patterns.c (vect_reassociating_reduction_p): Return
3940 operands in canonical order.
3941 * tree-vectorizer.c (vec_info::new_stmt_vec_info): Initialize
3942 STMT_VINFO_REDUC_IDX.
3943 * tree-vectorizer.h (_stmt_vec_info::reduc_idx): New.
3944 (STMT_VINFO_REDUC_IDX): Likewise.
3945
3946 2019-09-20 Eric Botcazou <ebotcazou@adacore.com>
3947
3948 PR target/91269
3949 * config/sparc/sparc.h (HARD_REGNO_CALLER_SAVE_MODE): Define.
3950
3951 2019-09-20 Richard Biener <rguenther@suse.de>
3952
3953 PR tree-optimization/91822
3954 * tree-vectorizer.h (vectorizable_condition): Restore for_reduction
3955 parameter.
3956 * tree-vect-loop.c (vectorizable_reduction): Adjust asserts
3957 for reduc_index in nested cycles, adjust vectorizable_condition
3958 calls.
3959 * tree-vect-stmts.c (vectorizable_condition): Restore for_reduction
3960 parameter.
3961 (vect_analyze_stmt): Adjust.
3962 (vect_transform_stmt): Likewise.
3963
3964 2019-09-20 Richard Biener <rguenther@suse.de>
3965
3966 PR target/91767
3967 * config/i386/i386-features.c (general_scalar_chain::convert_registers):
3968 Ensure there's a sequence point between allocating the new register
3969 and passing a reference to a reg via regno_reg_rtx.
3970
3971 2019-09-20 Martin Jambor <mjambor@suse.cz>
3972
3973 * coretypes.h (cgraph_edge): Declare.
3974 * ipa-param-manipulation.c: Rewrite.
3975 * ipa-param-manipulation.h: Likewise.
3976 * Makefile.in (GTFILES): Added ipa-param-manipulation.h and ipa-sra.c.
3977 (OBJS): Added ipa-sra.o.
3978 * cgraph.h (ipa_replace_map): Removed fields old_tree, replace_p
3979 and ref_p, added fields param_adjustments and performed_splits.
3980 (struct cgraph_clone_info): Remove ags_to_skip and
3981 combined_args_to_skip, new field param_adjustments.
3982 (cgraph_node::create_clone): Changed parameters to use
3983 ipa_param_adjustments.
3984 (cgraph_node::create_virtual_clone): Likewise.
3985 (cgraph_node::create_virtual_clone_with_body): Likewise.
3986 (tree_function_versioning): Likewise.
3987 (cgraph_build_function_type_skip_args): Removed.
3988 * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Convert to
3989 using ipa_param_adjustments.
3990 (clone_of_p): Likewise.
3991 * cgraphclones.c (cgraph_build_function_type_skip_args): Removed.
3992 (build_function_decl_skip_args): Likewise.
3993 (duplicate_thunk_for_node): Adjust parameters using
3994 ipa_param_body_adjustments, copy param_adjustments instead of
3995 args_to_skip.
3996 (cgraph_node::create_clone): Convert to using ipa_param_adjustments.
3997 (cgraph_node::create_virtual_clone): Likewise.
3998 (cgraph_node::create_version_clone_with_body): Likewise.
3999 (cgraph_materialize_clone): Likewise.
4000 (symbol_table::materialize_all_clones): Likewise.
4001 * ipa-fnsummary.c (ipa_fn_summary_t::duplicate): Simplify
4002 ipa_replace_map check.
4003 * ipa-cp.c (get_replacement_map): Do not initialize removed fields.
4004 (initialize_node_lattices): Make aware that some parameters might have
4005 already been removed.
4006 (want_remove_some_param_p): New function.
4007 (create_specialized_node): Convert to using ipa_param_adjustments and
4008 deal with possibly pre-existing adjustments.
4009 * lto-cgraph.c (output_cgraph_opt_summary_p): Likewise.
4010 (output_node_opt_summary): Do not stream removed fields. Stream
4011 parameter adjustments instead of argumetns to skip.
4012 (input_node_opt_summary): Likewise.
4013 (input_node_opt_summary): Likewise.
4014 * lto-section-in.c (lto_section_name): Added ipa-sra section.
4015 * lto-streamer.h (lto_section_type): Likewise.
4016 * tree-inline.h (copy_body_data): New fields killed_new_ssa_names and
4017 param_body_adjs.
4018 (copy_decl_to_var): Declare.
4019 * tree-inline.c (update_clone_info): Do not remap old_tree.
4020 (remap_gimple_stmt): Use ipa_param_body_adjustments to modify gimple
4021 statements, walk all extra generated statements and remap their
4022 operands.
4023 (redirect_all_calls): Add killed SSA names to a hash set.
4024 (remap_ssa_name): Do not remap killed SSA names.
4025 (copy_arguments_for_versioning): Renames to copy_arguments_nochange,
4026 half of functionality moved to ipa_param_body_adjustments.
4027 (copy_decl_to_var): Make exported.
4028 (copy_body): Destroy killed_new_ssa_names hash set.
4029 (expand_call_inline): Remap performed splits.
4030 (update_clone_info): Likewise.
4031 (tree_function_versioning): Simplify tree_map processing. Updated to
4032 accept ipa_param_adjustments and use ipa_param_body_adjustments.
4033 * omp-simd-clone.c (simd_clone_vector_of_formal_parm_types): Adjust
4034 for the new interface.
4035 (simd_clone_clauses_extract): Likewise, make args an auto_vec.
4036 (simd_clone_compute_base_data_type): Likewise.
4037 (simd_clone_init_simd_arrays): Adjust for the new interface.
4038 (simd_clone_adjust_argument_types): Likewise.
4039 (struct modify_stmt_info): Likewise.
4040 (ipa_simd_modify_stmt_ops): Likewise.
4041 (ipa_simd_modify_function_body): Likewise.
4042 (simd_clone_adjust): Likewise.
4043 * tree-sra.c: Removed IPA-SRA. Include tree-sra.h.
4044 (type_internals_preclude_sra_p): Make public.
4045 * tree-sra.h: New file.
4046 * ipa-inline-transform.c (save_inline_function_body): Update to
4047 refelct new tree_function_versioning signature.
4048 * ipa-prop.c (adjust_agg_replacement_values): Use a helper from
4049 ipa_param_adjustments to get current parameter indices.
4050 (ipcp_modif_dom_walker::before_dom_children): Likewise.
4051 (ipcp_update_bits): Likewise.
4052 (ipcp_update_vr): Likewise.
4053 * ipa-split.c (split_function): Convert to using ipa_param_adjustments.
4054 * ipa-sra.c: New file.
4055 * multiple_target.c (create_target_clone): Update to reflet new type
4056 of create_version_clone_with_body.
4057 * trans-mem.c (ipa_tm_create_version): Update to reflect new type of
4058 tree_function_versioning.
4059 (modify_function): Update to reflect new type of
4060 tree_function_versioning.
4061 * params.def (PARAM_IPA_SRA_MAX_REPLACEMENTS): New.
4062 * passes.def: Remove old IPA-SRA and add new one.
4063 * tree-pass.h (make_pass_early_ipa_sra): Remove declaration.
4064 (make_pass_ipa_sra): Declare.
4065 * dbgcnt.def: Remove eipa_sra. Added ipa_sra_params and
4066 ipa_sra_retvalues.
4067 * doc/invoke.texi (ipa-sra-max-replacements): New.
4068
4069 2019-09-19 Martin Sebor <msebor@redhat.com>
4070
4071 PR middle-end/91631
4072 * builtins.c (component_size): Correct trailing array computation,
4073 rename to component_ref_size and move...
4074 (compute_objsize): Adjust.
4075 * gimple-ssa-warn-restrict.c (builtin_memref::refsize): New member.
4076 (builtin_access::strict): Do not consider memmove.
4077 (builtin_access::write_off): New function.
4078 (builtin_memref::builtin_memref): Initialize refsize.
4079 (builtin_memref::set_base_and_offset): Adjust refoff and compute
4080 refsize.
4081 (builtin_memref::offset_out_of_bounds): Use ooboff input values.
4082 Handle refsize.
4083 (builtin_access::builtin_access): Initialize dstoff to destination
4084 refeence offset here instead of in maybe_diag_overlap. Adjust
4085 referencess even to unrelated objects. Adjust sizrange of bounded
4086 string functions to reflect bound. For strcat, adjust destination
4087 sizrange by that of source.
4088 (builtin_access::strcat_overlap): Adjust offsets and sizes
4089 to reflect the increase in destination sizrange above.
4090 (builtin_access::overlap): Do not set dstoff here but instead
4091 in builtin_access::builtin_access.
4092 (check_bounds_or_overlap): Use builtin_access::write_off.
4093 (maybe_diag_access_bounds): Add argument. Add informational notes.
4094 (dump_builtin_memref, dump_builtin_access): New functions.
4095 * tree.c (component_ref_size): ...to here.
4096 * tree.h (component_ref_size): Declare.
4097 * tree-ssa-strlen (handle_builtin_strcat): Include the terminating
4098 nul in the size of the source string.
4099
4100 2019-09-19 Lewis Hyatt <lhyatt@gmail.com>
4101
4102 PR c/67224
4103 * doc/cpp.texi: Document support for extended characters in
4104 identifiers.
4105 * doc/cppopts.texi: Likewise.
4106
4107 2019-09-19 Richard Biener <rguenther@suse.de>
4108
4109 * tree-vect-loop.c (vect_is_slp_reduction): Remove.
4110 (check_reduction_path): New overload having the path as result.
4111 (vect_is_simple_reduction): From the detected reduction
4112 path build a SLP reduction chain if possible.
4113
4114 2019-09-19 Richard Biener <rguenther@suse.de>
4115
4116 PR target/91814
4117 * config/i386/i386-features.c (gen_gpr_to_xmm_move_src):
4118 Force operand to a register if it isn't nonimmediate_operand.
4119
4120 2019-09-19 Wilco Dijkstra <wdijkstr@arm.com>
4121
4122 * config/arm/arm.md (<logical_op>di3): Use <optab> and <CODE>.
4123 * config/arm/iterators.md (optab): Add and, ior, xor entries.
4124 (logical_op): Remove code attribute.
4125 (logical_OP): Likewise.
4126
4127 2019-09-19 Martin Liska <mliska@suse.cz>
4128
4129 * ipa-icf.c (sort_congruence_class_groups_by_decl_uid):
4130 Use proper casting.
4131
4132 2019-09-19 Richard Henderson <richard.henderson@linaro.org>
4133
4134 * config/aarch64/aarch64.c (aarch64_print_operand): Allow integer
4135 registers with %R.
4136
4137 * config/aarch64/aarch64.c (aarch64_gen_compare_reg): Add support
4138 for NE comparison of TImode values.
4139 (aarch64_emit_load_exclusive): Add support for TImode.
4140 (aarch64_emit_store_exclusive): Likewise.
4141 (aarch64_split_compare_and_swap): Disable strong_zero_p for TImode.
4142 * config/aarch64/atomics.md (@atomic_compare_and_swap<ALLI_TI>):
4143 Change iterator from ALLI to ALLI_TI.
4144 (@atomic_compare_and_swap<JUST_TI>): New.
4145 (@atomic_compare_and_swap<JUST_TI>_lse): New.
4146 (aarch64_load_exclusive_pair): New.
4147 (aarch64_store_exclusive_pair): New.
4148 * config/aarch64/iterators.md (JUST_TI): New.
4149
4150 * config/aarch64/aarch64 (aarch64_split_compare_and_swap): Disable
4151 strong_zero_p for aarch64_track_speculation; unify some code paths;
4152 use aarch64_gen_compare_reg instead of open-coding.
4153
4154 * config/aarch64/aarch64.opt (-moutline-atomics): New.
4155 * config/aarch64/aarch64.c (aarch64_atomic_ool_func): New.
4156 (aarch64_ool_cas_names, aarch64_ool_swp_names): New.
4157 (aarch64_ool_ldadd_names, aarch64_ool_ldset_names): New.
4158 (aarch64_ool_ldclr_names, aarch64_ool_ldeor_names): New.
4159 (aarch64_expand_compare_and_swap): Honor TARGET_OUTLINE_ATOMICS.
4160 * config/aarch64/atomics.md (atomic_exchange<ALLI>): Likewise.
4161 (atomic_<atomic_op><ALLI>): Likewise.
4162 (atomic_fetch_<atomic_op><ALLI>): Likewise.
4163 (atomic_<atomic_op>_fetch<ALLI>): Likewise.
4164 * doc/invoke.texi: Document -moutline-atomics.
4165
4166 2019-09-19 Feng Xue <fxue@os.amperecomputing.com>
4167
4168 * ipa-fnsummary.c (set_cond_stmt_execution_predicate): Do not compute
4169 trivial predicate for condition branch.
4170 (set_switch_stmt_execution_predicate): Do not compute trivial predicate
4171 for switch case.
4172 (compute_bb_predicates): Update predicate based on post-dominating
4173 relationship.
4174 (analyze_function_body): Calculate post-dominating information.
4175
4176 2019-09-19 Richard Sandiford <richard.sandiford@arm.com>
4177
4178 * tree-vectorizer.h (vectorizable_condition): Take an int
4179 reduction index instead of a boolean flag.
4180 * tree-vect-stmts.c (vectorizable_condition): Likewise.
4181 Swap the "then" and "else" values for EXTRACT_LAST_REDUCTION
4182 reductions if the reduction accumulator is the "then" rather
4183 than the "else" value.
4184 (vect_analyze_stmt): Update call accordingly.
4185 (vect_transform_stmt): Likewise.
4186 * tree-vect-loop.c (vectorizable_reduction): Likewise,
4187 asserting that the index is > 0.
4188
4189 2019-09-19 Martin Liska <mliska@suse.cz>
4190
4191 * ipa-icf.c (sort_sem_items_by_decl_uid): Simplify comparator.
4192 (sort_congruence_classes_by_decl_uid): Likewise.
4193 (sort_congruence_class_groups_by_decl_uid): Use std::pair for
4194 easier sorting.
4195 (sem_item_optimizer::merge_classes): Likewise.
4196
4197 2019-09-19 Richard Biener <rguenther@suse.de>
4198
4199 PR tree-optimization/91812
4200 * tree-ssa-phiprop.c (propagate_with_phi): Do not replace
4201 volatile loads.
4202
4203 2019-09-19 Richard Sandiford <richard.sandiford@arm.com>
4204
4205 * defaults.h (TARGET_UNIT): New macro.
4206 (target_unit): New type.
4207 * rtl.h (native_encode_rtx, native_decode_rtx)
4208 (native_decode_vector_rtx, subreg_size_lsb): Declare.
4209 (subreg_lsb_1): Turn into an inline wrapper around subreg_size_lsb.
4210 * rtlanal.c (subreg_lsb_1): Delete.
4211 (subreg_size_lsb): New function.
4212 * simplify-rtx.c: Include rtx-vector-builder.h
4213 (simplify_immed_subreg): Delete.
4214 (native_encode_rtx, native_decode_vector_rtx, native_decode_rtx)
4215 (simplify_const_vector_byte_offset, simplify_const_vector_subreg): New
4216 functions.
4217 (simplify_subreg): Use them.
4218 (test_vector_subregs_modes, test_vector_subregs_repeating)
4219 (test_vector_subregs_fore_back, test_vector_subregs_stepped)
4220 (test_vector_subregs): New functions.
4221 (test_vector_ops): Call test_vector_subregs for integer vector
4222 modes with at least 2 elements.
4223
4224 2019-09-19 Richard Biener <rguenther@suse.de>
4225
4226 * tree-parloops.c (parloops_is_slp_reduction): Do not set
4227 LOOP_VINFO_OPERANDS_SWAPPED.
4228 (parloops_is_simple_reduction): Likewise.
4229 * tree-vect-loop.c (_loop_vec_info::_loop_vec_info): Do not
4230 initialize operands_swapped.
4231 (_loop_vec_info::~_loop_vec_info): Do not re-canonicalize stmts.
4232 (vect_is_slp_reduction): Do not swap operands.
4233 * tree-vectorizer.h (_loop_vec_info::operands_swapped): Remove.
4234 (LOOP_VINFO_OPERANDS_SWAPPED): Likewise.
4235
4236 2019-09-19 Hongtao Liu <hongtao.liu@intel.com>
4237
4238 PR target/87007
4239 * config/i386.md (*floatuns<SWI48:mode><MODEF:mode>2_avx512):
4240 Add avx_partial_xmm_update.
4241
4242 2019-09-18 Jim Wilson <jimw@sifive.com>
4243
4244 PR target/91683
4245 * config/riscv/riscv-protos.h (riscv_split_symbol): New bool parameter.
4246 (riscv_move_integer): Likewise.
4247 * config/riscv/riscv.c (riscv_split_integer): Pass FALSE for new
4248 riscv_move_integer arg.
4249 (riscv_legitimize_move): Likewise.
4250 (riscv_force_temporary): New parameter in_splitter. Don't call
4251 force_reg if true.
4252 (riscv_unspec_offset_high): Pass FALSE for new riscv_force_temporary
4253 arg.
4254 (riscv_add_offset): Likewise.
4255 (riscv_split_symbol): New parameter in_splitter. Pass to
4256 riscv_force_temporary.
4257 (riscv_legitimize_address): Pass FALSE for new riscv_split_symbol
4258 arg.
4259 (riscv_move_integer): New parameter in_splitter. New local
4260 can_create_psuedo. Don't call riscv_split_integer or force_reg when
4261 in_splitter TRUE.
4262 (riscv_legitimize_const_move): Pass FALSE for new riscv_move_integer,
4263 riscv_split_symbol, and riscv_force_temporary args.
4264 * config/riscv/riscv.md (low<mode>+1): Pass TRUE for new
4265 riscv_move_integer arg.
4266 (low<mode>+2): Pass TRUE for new riscv_split_symbol arg.
4267
4268 2019-09-18 H.J. Lu <hongjiu.lu@intel.com>
4269
4270 PR target/90878
4271 * config/i386/x86-tune-costs.h (skylake_cost): Restore SImode
4272 hard register store cost to 6.
4273
4274 2019-09-18 H.J. Lu <hongjiu.lu@intel.com>
4275
4276 PR target/91446
4277 * config/i386/x86-tune-costs.h (skylake_cost): Increase SImode
4278 pseudo register store cost from 3 to 6 to make it the same as
4279 QImode and HImode.
4280
4281 2019-09-18 Wilco Dijkstra <wdijkstr@arm.com>
4282
4283 PR target/91738
4284 * config/arm/arm.md (<logical_op>di3): Expand explicitly.
4285 (one_cmpldi2): Likewise.
4286 * config/arm/arm.c (const_ok_for_dimode_op): Return true if one
4287 of the constant parts is simple.
4288 * config/arm/iterators.md (LOGICAL): Add new code iterator.
4289 (logical_op): Add new code attribute.
4290 (logical_OP): Likewise.
4291 * config/arm/predicates.md (arm_anddi_operand): Add predicate.
4292 (arm_iordi_operand): Add predicate.
4293 (arm_xordi_operand): Add predicate.
4294
4295 2019-09-18 Wilco Dijkstra <wdijkstr@arm.com>
4296
4297 * config/arm/arm.md (maddsidi4): Remove expander.
4298 (mulsidi3adddi): Remove pattern.
4299 (mulsidi3adddi_v6): Likewise.
4300 (mulsidi3_nov6): Likewise.
4301 (mulsidi3_v6): Likewise.
4302 (umulsidi3): Remove expander.
4303 (umulsidi3_nov6): Remove pattern.
4304 (umulsidi3_v6): Likewise.
4305 (umulsidi3adddi): Likewise.
4306 (umulsidi3adddi_v6): Likewise.
4307 (<Us>mulsidi3): Add combined expander.
4308 (<Us>maddsidi4): Likewise.
4309 (<US>mull): Add combined umull and smull pattern.
4310 (<US>mlal): Likewise.
4311 * config/arm/iterators.md (Us): Add new iterator.
4312
4313 2019-09-18 Richard Biener <rguenther@suse.de>
4314
4315 * tree-vect-loop.c (vect_is_simple_reduction): Remove operand
4316 swapping.
4317 (vectorize_fold_left_reduction): Remove assert.
4318 (vectorizable_reduction): Also expect COND_EXPR non-reduction
4319 operand in position 2. Remove assert.
4320
4321 2019-09-18 Wilco Dijkstra <wdijkstr@arm.com>
4322
4323 * config/arm/arm.md (smulsi3_highpart): Use <US> and <SE> iterators.
4324 (smulsi3_highpart_nov6): Remove pattern.
4325 (smulsi3_highpart_v6): Likewise.
4326 (umulsi3_highpart): Likewise.
4327 (umulsi3_highpart_nov6): Likewise.
4328 (umulsi3_highpart_v6): Likewise.
4329 (<US>mull_high): Add new combined multiply pattern.
4330
4331 2019-09-18 Wilco Dijkstra <wdijkstr@arm.com>
4332
4333 * config/arm/arm.md (arm_mulsi3): Remove pattern.
4334 (arm_mulsi3_v6): Likewise.
4335 (mulsi3addsi_v6): Likewise.
4336 (mulsi3subsi): Likewise.
4337 (mul): Add new multiply pattern.
4338 (mla): Likewise.
4339 (mls): Likewise.
4340
4341 2019-09-18 Richard Biener <rguenther@suse.de>
4342
4343 * tree-parloops.c (report_ploop_op): Copy from report_vect_op.
4344 (parloops_valid_reduction_input_p): Copy from
4345 valid_reduction_input_p.
4346 (parloops_is_slp_reduction): Copy from vect_is_slp_reduction.
4347 (parloops_needs_fold_left_reduction_p): Copy from
4348 needs_fold_left_reduction_p.
4349 (parloops_is_simple_reduction): Copy from
4350 vect_is_simple_reduction.
4351 (parloops_force_simple_reduction): Copy from
4352 vect_force_simple_reduction.
4353 (gather_scalar_reductions): Adjust.
4354 * tree-vect-loop.c (vect_force_simple_reduction): Make static.
4355 * tree-vectorizer.h (vect_force_simple_reduction): Remove.
4356
4357 2019-09-18 Richard Biener <rguenther@suse.de>
4358
4359 * tree-vectorizer.h (get_initial_def_for_reduction): Remove.
4360 * tree-vect-loop.c (get_initial_def_for_reduction): Make
4361 static.
4362 (vect_create_epilog_for_reduction): Remove dead code.
4363
4364 2019-09-18 Richard Sandiford <richard.sandiford@arm.com>
4365
4366 * varasm.c (assemble_real): Generate canonical const_ints.
4367
4368 2019-09-18 Richard Biener <rguenther@suse.de>
4369
4370 PR lto/91763
4371 * lto-streamer-in.c (input_eh_regions): Move EH init to
4372 lto_materialize_function.
4373 * tree-streamer-in.c (lto_input_ts_function_decl_tree_pointers):
4374 Likewise.
4375
4376 2019-09-18 Richard Sandiford <richard.sandiford@arm.com>
4377
4378 * tree-ssa-ccp.c (get_value_for_expr): Check whether CONSTANTs
4379 are INTEGER_CSTs.
4380
4381 2019-09-18 Richard Sandiford <richard.sandiford@arm.com>
4382
4383 * gimplify.c (gimplify_decl_expr): Use poly_int_tree_p instead
4384 of checking specifically for INTEGER_CST.
4385
4386 2019-09-18 Richard Sandiford <richard.sandiford@arm.com>
4387
4388 * stor-layout.c (compute_record_mode): Operate on poly_uint64
4389 sizes instead of uhwi sizes.
4390
4391 2019-09-18 Richard Sandiford <richard.sandiford@arm.com>
4392
4393 * dwarf2out.c (loc_list_from_tree_1): Handle POLY_INT_CST.
4394 (add_const_value_attribute): Handle CONST_POLY_INT.
4395
4396 2019-09-18 Martin Liska <mliska@suse.cz>
4397
4398 * dbgcnt.def (store_merging): New counter.
4399 * gimple-ssa-store-merging.c (imm_store_chain_info::output_merged_stores):
4400 Use it in store merging.
4401
4402 2019-09-17 Richard Sandiford <richard.sandiford@arm.com>
4403
4404 * config/aarch64/aarch64.c (aarch64_sched_variable_issue): New
4405 function.
4406 (TARGET_SCHED_VARIABLE_ISSUE): New macro.
4407 * config/arm/arm.c (arm_sched_variable_issue): New function.
4408 (TARGET_SCHED_VARIABLE_ISSUE): New macro.
4409
4410 2019-09-17 Richard Sandiford <richard.sandiford@arm.com>
4411
4412 * config/arm/types.md (no_reservation): New reservation.
4413 * config/aarch64/falkor.md (falkor_other_0_nothing): Don't handle
4414 no_insn here.
4415 * config/aarch64/saphira.md (saphira_other_0_nothing): Likewise.
4416 * config/aarch64/thunderx2t99.md (thunderx2t99_nothing): Likewise.
4417 * config/aarch64/tsv110.md (tsv110_alu): Likewise.
4418 * config/arm/arm1020e.md (1020alu_op): Likewise.
4419 * config/arm/arm1026ejs.md (alu_op): Likewise.
4420 * config/arm/arm1136jfs.md (11_alu_op): Likewise.
4421 * config/arm/arm926ejs.md (9_alu_op): Likewise.
4422 * config/arm/cortex-a15.md (cortex_a15_alu): Likewise.
4423 * config/arm/cortex-a17.md (cortex_a17_alu): Likewise.
4424 * config/arm/cortex-a5.md (cortex_a5_alu): Likewise.
4425 * config/arm/cortex-a53.md (cortex_a53_alu): Likewise.
4426 * config/arm/cortex-a57.md (cortex_a57_alu): Likewise.
4427 * config/arm/cortex-a7.md (cortex_a7_alu_shift): Likewise.
4428 * config/arm/cortex-a8.md (cortex_a8_alu): Likewise.
4429 * config/arm/cortex-a9.md (cortex_a9_dp): Likewise.
4430 * config/arm/cortex-m4.md (cortex_m4_alu): Likewise.
4431 * config/arm/cortex-m7.md (cortex_m7_alu_simple): Likewise.
4432 * config/arm/cortex-r4.md (cortex_r4_alu_shift_reg): Likewise.
4433 * config/arm/fa526.md (526_alu_op): Likewise.
4434 * config/arm/fa606te.md (606te_alu_op): Likewise.
4435 * config/arm/fa626te.md (626te_alu_op): Likewise.
4436 * config/arm/fa726te.md (726te_alu_op): Likewise.
4437 * config/arm/xgene1.md (xgene1_nop): Likewise.
4438
4439 2019-09-17 Richard Sandiford <richard.sandiford@arm.com>
4440
4441 * config/arm/thumb1.md (*thumb1_tablejump): Change type from
4442 "no_insn" to "branch".
4443
4444 2019-09-17 Richard Sandiford <richard.sandiford@arm.com>
4445
4446 * array-traits.h (array_traits<T[N]>::size): Remove parameter name.
4447
4448 2019-09-17 Richard Biener <rguenther@suse.de>
4449
4450 PR debug/91772
4451 * dwarf2out.c (dwarf2out_late_global_decl): If early dwarf
4452 was missing generate locations only once.
4453
4454 2019-09-17 Feng Xue <fxue@os.amperecomputing.com>
4455
4456 PR ipa/91089
4457 * doc/invoke.texi (ipa-max-switch-predicate-bounds): Document new
4458 option.
4459 * params.def (PARAM_IPA_MAX_SWITCH_PREDICATE_BOUNDS): New.
4460 * ipa-fnsummary.c (set_switch_stmt_execution_predicate): Add predicate
4461 for switch default case using range analysis information.
4462
4463 2019-09-17 Christophe Lyon <christophe.lyon@linaro.org>
4464
4465 PR target/91749
4466 * config/arm/arm.c (arm_valid_target_attribute_rec): Make sure the
4467 mode attributed is supported by FDPIC.
4468
4469 2019-09-17 Richard Biener <rguenther@suse.de>
4470
4471 PR tree-optimization/91790
4472 * tree-vect-stmts.c (vectorizable_load): For BB vectorization
4473 use the correct DR for setting up realignment.
4474
4475 2019-09-16 Uroš Bizjak <ubizjak@gmail.com>
4476
4477 PR target/91719
4478 * config/i386/i386.h (TARGET_USE_XCHG_FOR_ATOMIC_STORE): New macro.
4479 * config/i386/x86-tune.def (X86_TUNE_USE_XCHG_FOR_ATOMIC_STORE): New.
4480 * config/i386/sync.md (atomic_store<mode>): emit XCHG for
4481 TARGET_USE_XCHG_FOR_ATOMIC_STORE.
4482
4483 2019-09-16 Jason Merrill <jason@redhat.com>
4484
4485 * Makefile.in (build/genmatch.o): Depend on $(CPPLIB_H).
4486
4487 2019-09-16 Martin Liska <mliska@suse.cz>
4488
4489 * gimple-fold.c (or_comparisons_1): Remove rules moved
4490 to ...
4491 * match.pd: ... here.
4492
4493 2019-09-16 Martin Liska <mliska@suse.cz>
4494
4495 * gimple-fold.c (or_comparisons_1): Remove rules
4496 moved to ...
4497 * match.pd: ... here.
4498
4499 2019-09-16 Martin Liska <mliska@suse.cz>
4500
4501 * genmatch.c (dt_node::append_simplify): Do not print
4502 warning when we have duplicate patterns belonging
4503 to a same simplify rule.
4504 * gimple-fold.c (and_comparisons_1): Remove matching moved to match.pd.
4505 (maybe_fold_comparisons_from_match_pd): Handle
4506 tcc_comparison as a results.
4507 * match.pd: Handle (X == CST1) && (X OP2 CST2) conditions.
4508
4509 2019-09-16 Li Jia He <helijia@linux.ibm.com>
4510 Qi Feng <ffengqi@linux.ibm.com>
4511
4512 PR middle-end/88784
4513 * match.pd (x > y && x != XXX_MIN): Optimize into 'x > y'.
4514 (x > y && x == XXX_MIN): Optimize into 'false'.
4515 (x <= y && x == XXX_MIN): Optimize into 'x == XXX_MIN'.
4516 (x < y && x != XXX_MAX): Optimize into 'x < y'.
4517 (x < y && x == XXX_MAX): Optimize into 'false'.
4518 (x >= y && x == XXX_MAX): Optimize into 'x == XXX_MAX'.
4519 (x > y || x != XXX_MIN): Optimize into 'x != XXX_MIN'.
4520 (x <= y || x != XXX_MIN): Optimize into 'true'.
4521 (x <= y || x == XXX_MIN): Optimize into 'x <= y'.
4522 (x < y || x != XXX_MAX): Optimize into 'x != XXX_MAX'.
4523 (x >= y || x != XXX_MAX): Optimize into 'true'.
4524 (x >= y || x == XXX_MAX): Optimize into 'x >= y'.
4525
4526 2019-09-16 Li Jia He <helijia@linux.ibm.com>
4527 Martin Liska <mliska@suse.cz>
4528
4529 * gimple-fold.c (and_comparisons_1): Add type as first
4530 argument.
4531 (and_var_with_comparison): Likewise.
4532 (and_var_with_comparison_1): Likewise.
4533 (or_comparisons_1): Likewise.
4534 (or_var_with_comparison): Likewise.
4535 (or_var_with_comparison_1): Likewise.
4536 (maybe_fold_and_comparisons): Call maybe_fold_comparisons_from_match_pd.
4537 (maybe_fold_or_comparisons): Likewise.
4538 (maybe_fold_comparisons_from_match_pd): New.
4539 * gimple-fold.h (maybe_fold_and_comparisons): Add type argument.
4540 (maybe_fold_or_comparisons): Likewise.
4541 * gimple.c (gimple_size): Make it public and add num_ops argument.
4542 (gimple_init): New function.
4543 (gimple_alloc): Call gimple_init.
4544 * gimple.h (gimple_size): New.
4545 (gimple_init): Likewise.
4546 * tree-if-conv.c (fold_or_predicates): Pass type.
4547 * tree-ssa-ifcombine.c (ifcombine_ifandif): Likewise.
4548 * tree-ssa-reassoc.c (eliminate_redundant_comparison): Likewise.
4549 (optimize_vec_cond_expr): Likewise.
4550 (ovce_extract_ops): Return type of conditional expression.
4551 * tree-ssanames.c (init_ssa_name_imm_use): New.
4552 (make_ssa_name_fn): Use init_ssa_name_imm_use.
4553 * tree-ssanames.h (init_ssa_name_imm_use): New.
4554
4555 2019-09-16 Richard Biener <rguenther@suse.de>
4556
4557 PR tree-optimization/91756
4558 PR tree-optimization/87132
4559 * tree-ssa-alias.h (enum translate_flags): New.
4560 (get_continuation_for_phi): Use it instead of simple bool flag.
4561 (walk_non_aliased_vuses): Likewise.
4562 * tree-ssa-alias.c (maybe_skip_until): Adjust.
4563 (get_continuation_for_phi): When looking across backedges only
4564 disallow valueization.
4565 (walk_non_aliased_vuses): Adjust.
4566 * tree-ssa-sccvn.c (vn_reference_lookup_3): Avoid valueization
4567 if requested.
4568
4569 2019-09-14 Kewen Lin <linkw@gcc.gnu.org>
4570
4571 PR middle-end/80791
4572 * config/rs6000/rs6000.c (TARGET_HAVE_COUNT_REG_DECR_P): New macro.
4573 (TARGET_DOLOOP_COST_FOR_GENERIC): Likewise.
4574 (TARGET_DOLOOP_COST_FOR_ADDRESS): Likewise.
4575 * target.def (have_count_reg_decr_p): New hook.
4576 (doloop_cost_for_generic): Likewise.
4577 (doloop_cost_for_address): Likewise.
4578 * doc/tm.texi.in (TARGET_HAVE_COUNT_REG_DECR_P): Likewise.
4579 (TARGET_DOLOOP_COST_FOR_GENERIC): Likewise.
4580 (TARGET_DOLOOP_COST_FOR_ADDRESS): Likewise.
4581 * doc/tm.texi: Regenerate.
4582 * tree-ssa-loop-ivopts.c (comp_cost::operator+=): Consider infinite cost
4583 addend.
4584 (record_group): Init doloop_p.
4585 (add_candidate_1): Add optional argument doloop, change the handlings
4586 accordingly.
4587 (add_candidate): Likewise.
4588 (generic_predict_doloop_p): Update attribute.
4589 (force_expr_to_var_cost): Add costing for expressions COND_EXPR/LT_EXPR/
4590 LE_EXPR/GT_EXPR/GE_EXPR/EQ_EXPR/NE_EXPR/UNORDERED_EXPR/ORDERED_EXPR/
4591 UNLT_EXPR/UNLE_EXPR/UNGT_EXPR/UNGE_EXPR/UNEQ_EXPR/LTGT_EXPR/MAX_EXPR/
4592 MIN_EXPR.
4593 (get_computation_cost): Update for doloop IV cand extra cost.
4594 (determine_group_iv_cost_cond): Update for doloop IV cand.
4595 (determine_iv_cost): Likewise.
4596 (ivopts_estimate_reg_pressure): Likewise.
4597 (may_eliminate_iv): Update handlings for doloop IV cand.
4598 (add_iv_candidate_for_doloop): New function.
4599 (find_iv_candidates): Call function add_iv_candidate_for_doloop.
4600 (iv_ca_set_no_cp): Update for doloop IV cand.
4601 (iv_ca_set_cp): Likewise.
4602 (iv_ca_dump): Dump register cost.
4603 (find_doloop_use): New function.
4604 (analyze_and_mark_doloop_use): Likewise.
4605 (tree_ssa_iv_optimize_loop): Call function analyze_and_mark_doloop_use.
4606
4607 2019-09-13 Bernd Edlinger <bernd.edlinger@hotmail.de>
4608
4609 PR middle-end/91708
4610 * cse.c (cse_insn): Do not replace anything with a
4611 MEM.
4612
4613 2019-09-13 Ian Lance Taylor <iant@golang.org>
4614
4615 * doc/invoke.texi (Optimize Options): Fix typo.
4616
4617 2019-09-12 Uroš Bizjak <ubizjak@gmail.com>
4618
4619 PR tree-optimization/89386
4620 * config/i386/sse.md (smulhrs<mode>3): New expander.
4621 (smulhrsv4hi3): Ditto.
4622
4623 2019-09-12 Richard Biener <rguenther@suse.de>
4624
4625 PR tree-optimization/91750
4626 * tree-vect-loop.c (vectorizable_induction): Compute IV increments
4627 in the type of the evolution.
4628
4629 2019-09-12 Yuliang Wang <yuliang.wang@arm.com>
4630
4631 PR tree-optimization/89386
4632 * config/aarch64/aarch64-sve2.md (<su>mull<bt><Vwide>)
4633 (<r>shrnb<mode>, <r>shrnt<mode>): New SVE2 patterns.
4634 (<su>mulh<r>s<mode>3): New pattern for MULHRS.
4635 * config/aarch64/iterators.md (UNSPEC_SMULLB, UNSPEC_SMULLT)
4636 (UNSPEC_UMULLB, UNSPEC_UMULLT, UNSPEC_SHRNB, UNSPEC_SHRNT)
4637 (UNSPEC_RSHRNB, UNSPEC_RSHRNT, UNSPEC_SMULHS, UNSPEC_SMULHRS)
4638 UNSPEC_UMULHS, UNSPEC_UMULHRS): New unspecs.
4639 (MULLBT, SHRNB, SHRNT, MULHRS): New int iterators.
4640 (su, r): Handle the unspecs above.
4641 (bt): New int attribute.
4642 * internal-fn.def (IFN_MULHS, IFN_MULHRS): New internal functions.
4643 * internal-fn.c (first_commutative_argument): Commutativity info for
4644 above.
4645 * optabs.def (smulhs_optab, smulhrs_optab, umulhs_optab)
4646 (umulhrs_optab): New optabs.
4647 * doc/md.texi (smulhs$var{m3}, umulhs$var{m3})
4648 (smulhrs$var{m3}, umulhrs$var{m3}): Documentation for the above.
4649 * tree-vect-patterns.c (vect_recog_mulhs_pattern): New pattern
4650 function.
4651 (vect_vect_recog_func_ptrs): Add it.
4652
4653 2019-09-11 Michael Meissner <meissner@linux.ibm.com>
4654
4655 * config/rs6000/predicates.md (non_add_cint_operand): Simplify the
4656 code.
4657
4658 2019-09-11 Nathan Sidwell <nathan@acm.org>
4659
4660 * tree.h (MARK_TS_TYPE_NON_COMMON): New.
4661 * tree.c (tree_node_structure_for_code): Reformat and alphabetize.
4662
4663 2019-09-11 Richard Biener <rguenther@suse.de>
4664
4665 * lto-opts.c (lto_write_options): Stream -g when debug is enabled.
4666 * lto-wrapper.c (merge_and_complain): Pick up -g.
4667 (append_compiler_options): Likewise.
4668 (run_gcc): Re-instantiate handling -g0 at link-time.
4669 * doc/invoke.texi (flto): Document debug info generation.
4670
4671 2019-09-11 Richard Biener <rguenther@suse.de>
4672
4673 PR tree-optimization/90387
4674 * vr-values.c (vr_values::extract_range_basic): After inlining
4675 simplify non-constant __builtin_constant_p to false.
4676
4677 2019-09-11 Eric Botcazou <ebotcazou@adacore.com>
4678
4679 PR rtl-optimization/89795
4680 * rtlanal.c (nonzero_bits1) <SUBREG>: Do not propagate results from
4681 inner REGs to paradoxical SUBREGs if WORD_REGISTER_OPERATIONS is set.
4682
4683 2019-09-11 Jakub Jelinek <jakub@redhat.com>
4684
4685 PR tree-optimization/91723
4686 * tree-vect-stmts.c (vectorizable_call): Use types_compatible_p check
4687 instead of pointer equality when checking if argument vectypes are
4688 the same.
4689
4690 PR middle-end/91725
4691 * match.pd ((A / (1 << B)) -> (A >> B)): Call tree_nonzero_bits instead
4692 of get_nonzero_bits, only call it for integral types.
4693
4694 2019-09-11 Richard Biener <rguenther@suse.de>
4695
4696 Revert
4697 2019-09-09 Barnaby Wilks <barnaby.wilks@arm.com>
4698
4699 * match.pd: Add flag_unsafe_math_optimizations check
4700 before deciding on the widest type in a binary math operation.
4701
4702 2019-09-10 Richard Sandiford <richard.sandiford@arm.com>
4703
4704 * doc/tm.texi.in: Document that exactly one of CALL_USED_REGISTERS
4705 and CALL_REALLY_USED_REGISTERS must be defined, and that
4706 CALL_REALLY_USED_REGISTERS is preferred.
4707 * doc/tm.texi: Regenerate.
4708 * hard-reg-set.h (target_hard_regs::x_call_really_used_regs): Delete.
4709 (call_really_used_regs): Likewise.
4710 * reginfo.c: Raise an #error if both CALL_USED_REGISTERS and
4711 CALL_REALLY_USED_REGISTERS are defined.
4712 (initial_call_used_regs): Use CALL_REALLY_USED_REGISTERS as the
4713 initial value if defined.
4714 (initial_call_really_used_regs): Delete.
4715 (saved_call_really_used_regs): Likewise.
4716 (CALL_REALLY_USED_REGNO_P): Likewise.
4717 (init_reg_sets): Remove handling of call_really_used_regs.
4718 (save_register_info, restore_register_info, globalize_reg): Likewise.
4719 (init_reg_sets_1): Likewise. Use call_used_regs instead of
4720 CALL_REALLY_USED_REGNO_P. Don't set call_used_regs for registers
4721 outside operand_reg_set.
4722 (fix_register): Don't change call_used_regs if
4723 CALL_REALLY_USED_REGISTERS is defined.
4724 * config/csky/csky.h (CALL_USED_REGISTERS): Delete.
4725 * config/csky/csky.c (get_csky_live_regs): Use call_used_regs
4726 instead of call_really_used_regs.
4727 (csky_conditional_register_usage): Remove the old handling of
4728 call_used_regs and change the handling of call_really_used_regs
4729 to use call_used_regs instead.
4730 * config/ia64/ia64.h (CALL_USED_REGISTERS): Delete.
4731 * config/ia64/ia64.c (fix_range): Don't set call_used_regs when
4732 making a register fixed.
4733 * config/m32r/m32r.h (CALL_USED_REGISTERS): Delete.
4734 * config/m32r/m32r.c (MUST_SAVE_REGISTER): Use call_used_regs
4735 instead of call_really_used_regs.
4736 (m32r_conditional_register_usage): Don't set call_used_regs when
4737 making a register fixed.
4738 * config/mips/mips.h (CALL_USED_REGISTERS): Delete.
4739 * config/mips/mips.c (mips_global_pointer): Use call_used_regs
4740 instead of call_really_used_regs.
4741 (mips_interrupt_extra_call_saved_reg_p): Likewise.
4742 (mips_cfun_call_saved_reg_p): Likewise.
4743 (mips_swap_registers): Remove the old handling of call_used_regs
4744 and change the handling of call_really_used_regs to use call_used_regs
4745 instead.
4746 (mips_conditional_register_usage): Likewise.
4747 * config/mn10300/mn10300.h (CALL_USED_REGISTERS): Delete.
4748 * config/mn10300/mn10300.c (fp_regs_to_save): Use call_used_regs
4749 instead of call_really_used_regs.
4750 (mn10300_get_live_callee_saved_regs): Likewise.
4751 (mn10300_expand_prologue, mn10300_expand_epilogue): Likewise.
4752 (mn10300_conditional_register_usage): Don't set call_used_regs when
4753 making a register fixed.
4754 * config/rs6000/rs6000.h (CALL_USED_REGISTERS): Delete.
4755 * config/rs6000/rs6000.c (rs6000_conditional_register_usage):
4756 Remove the old handling of call_used_regs and change the handling
4757 of call_really_used_regs to use call_used_regs instead.
4758 * config/s390/s390.h (CALL_USED_REGISTERS): Delete.
4759 * config/s390/s390.c (s390_regs_ever_clobbered): Use call_used_regs
4760 instead of call_really_used_regs.
4761 (s390_register_info_gprtofpr, s390_register_info): Likewise.
4762 (s390_hard_regno_rename_ok, s390_hard_regno_scratch_ok): Likewise.
4763 (s390_emit_prologue, s300_set_up_by_prologue): Likewise.
4764 (s390_can_use_return_insn, s390_optimize_prologue): Likewise.
4765 (s390_conditional_register_usage): Remove the old handling of
4766 call_used_regs and change the handling of call_really_used_regs
4767 to use call_used_regs instead.
4768 * config/sh/sh.h (CALL_USED_REGISTERS): Delete.
4769 * config/sh/sh.c (output_stack_adjust, calc_live_regs): Likewise.
4770 (sh_fix_range, reg_unused_after): Likewise.
4771 (sh_conditional_register_usage): Remove the old handling of
4772 call_used_regs and change the handling of call_really_used_regs
4773 to use call_used_regs instead.
4774 * config/sparc/sparc.h (CALL_USED_REGISTERS): Delete.
4775 * config/sparc/sparc.c (sparc_conditional_register_usage): Don't set
4776 call_used_regs when making a register fixed.
4777 * config/tilegx/tilegx.h (CALL_USED_REGISTERS): Delete.
4778 * config/tilegx/tilegx.c (tilegx_conditional_register_usage): Don't set
4779 call_used_regs when making a register fixed.
4780 * config/tilepro/tilepro.h (CALL_USED_REGISTERS): Delete.
4781 * config/tilepro/tilepro.c (tilepro_conditional_register_usage): Don't
4782 set call_used_regs when making a register fixed.
4783 * config/visium/visium.h (CALL_USED_REGISTERS): Delete.
4784 * config/visium/visium.c (visium_conditional_register_usage): Remove
4785 the old handling of call_used_regs and change the handling of
4786 call_really_used_regs to use call_used_regs instead.
4787
4788 2019-09-10 Richard Sandiford <richard.sandiford@arm.com>
4789
4790 * hard-reg-set.h (call_used_regs): Only define if IN_TARGET_CODE.
4791 (call_used_or_fixed_reg_p): Expand definition of call_used_regs.
4792 * reginfo.c (call_used_regs): New macro.
4793
4794 2019-09-10 Richard Sandiford <richard.sandiford@arm.com>
4795
4796 * config/alpha/alpha.c (alpha_compute_frame_layout): Remove redundant
4797 fixed_regs test.
4798 * config/bpf/bpf.c (bpf_compute_frame_layout, bpf_expand_prologue)
4799 (bpf_expand_epilogue): Likewise.
4800 * config/c6x/c6x.c (c6x_save_reg): Likewise.
4801 * config/ft32/ft32.c (ft32_expand_prologue): Likewise.
4802 (ft32_expand_epilogue): Likewise.
4803 * config/i386/i386.c (ix86_save_reg): Likewise.
4804 * config/moxie/moxie.c (moxie_expand_prologue): Likewise.
4805 (moxie_expand_epilogue): Likewise.
4806 * config/tilegx/tilegx.c (need_to_save_reg): Likewise.
4807 * config/tilepro/tilepro.c (need_to_save_reg): Likewise.
4808 * config/xtensa/xtensa.c (xtensa_call_save_reg): Likewise.
4809
4810 2019-09-10 Richard Sandiford <richard.sandiford@arm.com>
4811
4812 * hard-reg-set.h (call_used_or_fixed_reg_p): New macro.
4813 * cfgloopanal.c (init_set_costs): Use call_used_or_fixed_reg_p
4814 instead of testing call_used_regs directly.
4815 * config/aarch64/aarch64.c (aarch64_layout_frame): Likewise.
4816 (aarch64_components_for_bb): Likewise.
4817 * config/alpha/alpha.c (alpha_compute_frame_layout): Likewise.
4818 * config/arc/arc.c (arc_must_save_register): Likewise.
4819 (arc_epilogue_uses): Likewise.
4820 * config/arm/arm.c (arm_option_override, use_return_insn): Likewise.
4821 (legitimize_pic_address, callee_saved_reg_p): Likewise.
4822 (arm_compute_save_reg0_reg12_mask): Likewise.
4823 (arm_compute_save_core_reg_mask): Likewise.
4824 (arm_get_vfp_saved_size, arm_compute_frame_layout): Likewise.
4825 (arm_save_coproc_regs, thumb1_extra_regs_pushed): Likewise.
4826 (cmse_nonsecure_entry_clear_before_return): Likewise.
4827 (thumb1_expand_epilogue, arm_expand_epilogue_apcs_frame): Likewise.
4828 (arm_expand_epilogue): Likewise.
4829 * config/avr/avr.c (avr_regs_to_save, sequent_regs_live): Likewise.
4830 (avr_function_arg_advance, avr_find_unused_d_reg): Likewise.
4831 (_reg_unused_after): Likewise.
4832 * config/bfin/bfin.c (must_save_p, expand_prologue_reg_save): Likewise.
4833 (expand_epilogue_reg_restore, n_regs_saved_by_prologue): Likewise.
4834 (add_to_reg, hwloop_optimize): Likewise.
4835 * config/bpf/bpf.c (bpf_compute_frame_layout, bpf_expand_prologue)
4836 (bpf_expand_epilogue): Likewise.
4837 * config/c6x/c6x.c (c6x_save_reg, c6x_regno_reg_class): Likewise.
4838 * config/cr16/cr16.c (cr16_compute_save_regs): Likewise.
4839 * config/cris/cris.c (cris_reg_saved_in_regsave_area): Likewise.
4840 * config/epiphany/epiphany.c (epiphany_init_reg_tables): Likewise.
4841 (epiphany_compute_function_type, MUST_SAVE_REGISTER): Likewise.
4842 (epiphany_output_mi_thunk, epiphany_start_function): Likewise.
4843 * config/fr30/fr30.c (fr30_num_arg_regs): Likewise.
4844 * config/frv/frv.c (frv_stack_info): Likewise.
4845 * config/ft32/ft32.c (ft32_compute_frame): Likewise.
4846 (ft32_expand_prologue, ft32_expand_epilogue): Likewise.
4847 * config/gcn/gcn.c (gcn_compute_frame_offsets): Likewise.
4848 (move_callee_saved_registers): Likewise.
4849 * config/h8300/h8300.c (byte_reg): Likewise.
4850 * config/i386/i386-options.c (ix86_set_current_function): Likewise.
4851 * config/i386/i386.c (ix86_save_reg, ix86_expand_prologue): Likewise.
4852 (ix86_expand_epilogue, x86_order_regs_for_local_alloc): Likewise.
4853 * config/i386/predicates.md (sibcall_memory_operand): Likewise.
4854 * config/ia64/ia64.c (emit_safe_across_calls, find_gr_spill): Likewise.
4855 (next_scratch_gr_reg, ia64_compute_frame_size): Likewise.
4856 * config/iq2000/iq2000.h (MUST_SAVE_REGISTER): Likewise.
4857 * config/lm32/lm32.c (lm32_compute_frame_size): Likewise.
4858 * config/m32c/m32c.c (need_to_save): Likewise.
4859 * config/m68k/m68k.c (m68k_save_reg): Likewise.
4860 * config/mcore/mcore.c (calc_live_regs): Likewise.
4861 * config/microblaze/microblaze.c (microblaze_must_save_register):
4862 Likewise.
4863 * config/mmix/mmix.c (mmix_local_regno): Likewise.
4864 (mmix_initial_elimination_offset, mmix_reorg): Likewise.
4865 (mmix_use_simple_return, mmix_expand_prologue): Likewise.
4866 (mmix_expand_epilogue): Likewise.
4867 * config/moxie/moxie.c (moxie_compute_frame): Likewise.
4868 (moxie_expand_prologue, moxie_expand_epilogue): Likewise.
4869 * config/msp430/msp430.c (msp430_preserve_reg_p): Likewise.
4870 * config/nds32/nds32.h (nds32_16bit_address_type): Likewise.
4871 (NDS32_REQUIRED_CALLEE_SAVED_P): Likewise.
4872 * config/nios2/nios2.c (prologue_saved_reg_p): Likewise.
4873 * config/or1k/or1k.c (callee_saved_regno_p): Likewise.
4874 * config/pa/pa.c (pa_expand_prologue, pa_expand_epilogue): Likewise.
4875 * config/pdp11/pdp11.c (pdp11_saved_regno): Likewise.
4876 * config/pru/pru.c (prologue_saved_reg_p): Likewise.
4877 * config/riscv/riscv.c (riscv_save_reg_p): Likewise.
4878 (riscv_epilogue_uses, riscv_hard_regno_mode_ok): Likewise.
4879 * config/rl78/rl78.c (need_to_save): Likewise.
4880 * config/rs6000/rs6000-logue.c (save_reg_p): Likewise.
4881 (rs6000_stack_info, generate_set_vrsave): Likewise.
4882 (rs6000_emit_prologue, rs6000_emit_epilogue): Likewise.
4883 * config/rs6000/rs6000.c (rs6000_debug_reg_print): Likewise.
4884 * config/rx/rx.c (rx_get_stack_layout): Likewise.
4885 * config/s390/s390.c (s390_call_saved_register_used): Likewise.
4886 * config/sh/sh.c (calc_live_regs, sh_output_mi_thunk): Likewise.
4887 * config/sparc/sparc.c (save_global_or_fp_reg_p): Likewise.
4888 (save_local_or_in_reg_p): Likewise.
4889 * config/stormy16/stormy16.c (REG_NEEDS_SAVE): Likewise.
4890 (xstormy16_epilogue_uses): Likewise.
4891 * config/tilegx/tilegx.c (need_to_save_reg): Likewise.
4892 * config/tilepro/tilepro.c (need_to_save_reg): Likewise.
4893 * config/v850/v850.c (compute_register_save_size): Likewise.
4894 * config/vax/vax.c (vax_expand_prologue): Likewise.
4895 * config/visium/visium.c (visium_save_reg_p): Likewise.
4896 * config/xtensa/xtensa.c (xtensa_call_save_reg): Likewise.
4897 * cselib.c (cselib_process_insn): Likewise.
4898 * df-scan.c (df_get_entry_block_def_set): Likewise.
4899 * function.c (aggregate_value_p): Likewise.
4900 * haifa-sched.c (alloc_global_sched_pressure_data): Likewise.
4901 * ira-lives.c (process_bb_node_lives): Likewise.
4902 * ira.c (do_reload): Likewise.
4903 * lra-lives.c (process_bb_lives): Likewise.
4904 * lra-remat.c (lra_remat): Likewise.
4905 * lra.c (lra): Likewise.
4906 * postreload.c (reload_combine_recognize_pattern): Likewise.
4907 (reload_cse_move2add): Likewise.
4908 * recog.c (peep2_find_free_register): Likewise.
4909 * regrename.c (check_new_reg_p): Likewise.
4910 * reload.c (find_equiv_reg): Likewise.
4911 * reload1.c (reload, find_reg): Likewise.
4912 * sel-sched.c (init_hard_regs_data): Likewise.
4913
4914 2019-09-10 Richard Sandiford <richard.sandiford@arm.com>
4915
4916 * config/frv/frv.c (frv_ifcvt_modify_tests): Use
4917 regs_invalidated_by_call & ~fixed_reg_set instead of
4918 call_used_or_fixed_regs & ~fixed_reg_set.
4919 * config/sh/sh.c (output_stack_adjust): Likewise.
4920
4921 2019-09-10 Richard Sandiford <richard.sandiford@arm.com>
4922
4923 * hard-reg-set.h (target_hard_regs::x_call_used_reg_set): Delete.
4924 (call_used_reg_set): Delete.
4925 (call_used_or_fixed_regs): New macro.
4926 * reginfo.c (init_reg_sets_1, globalize_reg): Remove initialization
4927 of call_used_reg_set.
4928 * caller-save.c (setup_save_areas): Use call_used_or_fixed_regs
4929 instead of call_used_regs.
4930 (save_call_clobbered_regs): Likewise.
4931 * cfgcleanup.c (old_insns_match_p): Likewise.
4932 * config/c6x/c6x.c (c6x_call_saved_register_used): Likewise.
4933 * config/epiphany/epiphany.c (epiphany_conditional_register_usage):
4934 Likewise.
4935 * config/frv/frv.c (frv_ifcvt_modify_tests): Likewise.
4936 * config/sh/sh.c (output_stack_adjust): Likewise.
4937 * final.c (collect_fn_hard_reg_usage): Likewise.
4938 * ira-build.c (ira_build): Likewise.
4939 * ira-color.c (calculate_saved_nregs): Likewise.
4940 (allocno_reload_assign, calculate_spill_cost): Likewise.
4941 * ira-conflicts.c (ira_build_conflicts): Likewise.
4942 * ira-costs.c (ira_tune_allocno_costs): Likewise.
4943 * ira-lives.c (process_bb_node_lives): Likewise.
4944 * ira.c (setup_reg_renumber): Likewise.
4945 * lra-assigns.c (find_hard_regno_for_1, lra_assign): Likewise.
4946 * lra-constraints.c (need_for_call_save_p): Likewise.
4947 (need_for_split_p, inherit_in_ebb): Likewise.
4948 * lra-lives.c (process_bb_lives): Likewise.
4949 * lra-remat.c (call_used_input_regno_present_p): Likewise.
4950 * postreload.c (reload_combine): Likewise.
4951 * regrename.c (find_rename_reg): Likewise.
4952 * reload1.c (reload_as_needed): Likewise.
4953 * rtlanal.c (find_all_hard_reg_sets): Likewise.
4954 * sel-sched.c (mark_unavailable_hard_regs): Likewise.
4955 * shrink-wrap.c (requires_stack_frame_p): Likewise.
4956
4957 2019-09-10 Richard Sandiford <richard.sandiford@arm.com>
4958
4959 * hard-reg-set.h (target_hard_regs::x_no_caller_save_reg_set): Delete.
4960 (no_caller_save_reg_set): Delete.
4961 * caller-save.c (init_caller_save): Don't initialize it.
4962 * ira-conflicts.c (ira_build_conflicts): Calculate
4963 no_caller_save_reg_set locally from call_used_reg_set and savable_regs.
4964
4965 2019-09-10 Richard Sandiford <richard.sandiford@arm.com>
4966
4967 * hard-reg-set.h (target_hard_regs::x_call_fixed_reg_set): Delete.
4968 (target_hard_regs::x_savable_regs): New field.
4969 (call_fixed_reg_set): Delete.
4970 (savable_regs): New macro,
4971 * reginfo.c (globalize_reg): Don't set call_fixed_reg_set.
4972 (init_reg_sets_1): Likewise. Initialize savable_regs.
4973 * caller-save.c (init_caller_save): Invoke HARD_REGNO_CALLER_SAVE_MODE
4974 for all registers. Set savable_regs instead of call_fixed_reg_set.
4975 (setup_save_areas, save_call_clobbered_regs): Replace uses of
4976 ~call_fixed_reg_set with ~fixed_reg_set & savable_regs.
4977 * config/sh/sh.c (output_stack_adjust): Likewise.
4978
4979 2019-09-10 Richard Sandiford <richard.sandiford@arm.com>
4980
4981 * config/c6x/c6x-protos.h (c6x_set_return_address): Declare.
4982 * config/c6x/c6x.h (REGNO_REG_CLASS): Move implementation to
4983 * config/c6x/c6x.c (c6x_regno_reg_class): ...this new function.
4984
4985 2019-09-10 Richard Sandiford <richard.sandiford@arm.com>
4986
4987 * rtl.h (get_call_rtx_from): Take a const rtx_insn * instead of an rtx.
4988 * rtlanal.c (get_call_rtx_from): Likewise.
4989 * dwarf2out.c (dwarf2out_var_location): Pass the insn rather
4990 than the pattern to get_call_rtx_from.
4991 * config/i386/i386-expand.h (ix86_notrack_prefixed_insn_p): Take
4992 an rtx_insn * instead of an rtx.
4993 * config/i386/i386-expand.c (ix86_notrack_prefixed_insn_p): Likewise.
4994
4995 2019-09-10 Martin Liska <mliska@suse.cz>
4996
4997 * common.opt: Use newly added WarnRemoved.
4998 * config/aarch64/aarch64.opt: Likewise.
4999 * config/arm/arm.opt: Likewise.
5000 * config/i386/i386.opt: Likewise.
5001 * config/ia64/ia64.opt: Likewise.
5002 * config/rs6000/rs6000.opt: Likewise.
5003 * doc/options.texi: Document WarnRemoved properly.
5004 * dwarf2out.c (gen_producer_string): Handle renamed
5005 OPT_SPECIAL_warn_removed.
5006 * lto-opts.c (lto_write_options): Likewise.
5007 * lto-wrapper.c (merge_and_complain): Likewise.
5008 * opts-common.c (decode_cmdline_option): Likewise.
5009 (prune_options): Likewise.
5010 (read_cmdline_option): Likewise.
5011 (control_warning_option): Likewise.
5012 * opts.c (print_filtered_help): Likewise.
5013 * optc-gen.awk: Parse for WarnRemoved and make usage
5014 of Deprecated an error.
5015 * opth-gen.awk: Generate new OPT_SPECIAL_warn_removed.
5016
5017 2019-09-10 Arnaud Charlet <charlet@adacore.com>
5018
5019 * doc/install.texi: Fix syntax for html generation.
5020
5021 2019-09-10 Jakub Jelinek <jakub@redhat.com>
5022
5023 PR middle-end/91680
5024 * match.pd ((A / (1 << B)) -> (A >> B)): Allow widening cast from
5025 the shift type to type.
5026
5027 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5028
5029 * config/arm/arm.md (stack_protect_combined_set_insn): Handle
5030 FDPIC mode.
5031 (stack_protect_combined_test_insn): Likewise.
5032
5033 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5034 Mickaël Guêné <mickael.guene@st.com>
5035
5036 * config/arm/arm.c (arm_load_tp): Add FDPIC support.
5037 * config/arm/arm.md (FDPIC_REGNUM): New constant.
5038 (load_tp_soft_fdpic): New pattern.
5039 (load_tp_soft): Disable in FDPIC mode.
5040
5041 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5042 Mickaël Guêné <mickael.guene@st.com>
5043
5044 * config/arm/arm.c (tls_reloc): Add TLS_GD32_FDPIC,
5045 TLS_LDM32_FDPIC and TLS_IE32_FDPIC.
5046 (arm_call_tls_get_addr): Add FDPIC support.
5047 (legitimize_tls_address): Likewise.
5048 (arm_emit_tls_decoration): Likewise.
5049
5050 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5051 Mickaël Guêné <mickael.guene@st.com>
5052
5053 * config/arm/arm.c (arm_asm_trampoline_template): Add FDPIC
5054 support.
5055 (arm_trampoline_init): Likewise.
5056 (arm_trampoline_adjust_address): Likewise.
5057 * config/arm/arm.h (TRAMPOLINE_SIZE): Likewise.
5058
5059 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5060 Mickaël Guêné <mickael.guene@st.com>
5061
5062 * config/arm/arm.c (arm_fdpic_local_funcdesc_p): New function.
5063 (legitimize_pic_address): Enforce binding rules on function
5064 pointers in FDPIC mode.
5065 (arm_assemble_integer): Likewise.
5066
5067 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5068 Mickaël Guêné <mickael.guene@st.com>
5069
5070 * config/arm/arm.h (PIC_REGISTER_MAY_NEED_SAVING): New helper.
5071 * config/arm/arm.c (arm_compute_save_reg0_reg12_mask): Handle
5072 FDPIC.
5073
5074 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5075 Mickaël Guêné <mickael.guene@st.com>
5076
5077 * ginclude/unwind-arm-common.h (unwinder_cache): Add reserved5
5078 field.
5079
5080 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5081 Mickaël Guêné <mickael.guene@st.com>
5082
5083 * config/arm/arm-c.c (__FDPIC__): Define new pre-processor macro
5084 in FDPIC mode.
5085 * config/arm/arm-protos.h (arm_load_function_descriptor): Declare
5086 new function.
5087 * config/arm/arm.c (arm_option_override): Define pic register to
5088 FDPIC_REGNUM.
5089 (arm_function_ok_for_sibcall): Disable sibcall optimization if we
5090 have no decl or go through PLT.
5091 (calculate_pic_address_constant): New function.
5092 (legitimize_pic_address): Call calculate_pic_address_constant.
5093 (arm_load_pic_register): Handle TARGET_FDPIC.
5094 (arm_is_segment_info_known): New function.
5095 (arm_pic_static_addr): Add support for FDPIC.
5096 (arm_load_function_descriptor): New function.
5097 (arm_emit_call_insn): Add support for FDPIC.
5098 (arm_assemble_integer): Add support for FDPIC.
5099 * config/arm/arm.h (PIC_OFFSET_TABLE_REG_CALL_CLOBBERED):
5100 Define. (FDPIC_REGNUM): New define.
5101 * config/arm/arm.md (call): Add support for FDPIC.
5102 (call_value): Likewise.
5103 (restore_pic_register_after_call): New pattern.
5104 (untyped_call): Disable if FDPIC.
5105 (untyped_return): Likewise.
5106 * config/arm/unspecs.md (UNSPEC_PIC_RESTORE): New.
5107
5108 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5109 Mickaël Guêné <mickael.guene@st.com>
5110
5111 * config.gcc: Handle arm*-*-uclinuxfdpiceabi.
5112 * config/arm/bpabi.h (TARGET_FDPIC_ASM_SPEC): New.
5113 (SUBTARGET_EXTRA_ASM_SPEC): Use TARGET_FDPIC_ASM_SPEC.
5114 * config/arm/linux-eabi.h (FDPIC_CC1_SPEC): New.
5115 (CC1_SPEC): Use FDPIC_CC1_SPEC.
5116 (MUSL_DYNAMIC_LINKER): Add -fdpic suffix when needed.
5117 * config/arm/uclinuxfdpiceabi.h: New file.
5118
5119 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5120
5121 * config.gcc: Handle *-*-uclinuxfdpiceabi.
5122
5123 2019-09-10 Christophe Lyon <christophe.lyon@st.com>
5124 Mickaël Guêné <mickael.guene@st.com>
5125
5126 * config/arm/arm.opt: Add -mfdpic option.
5127 * doc/invoke.texi: Add documentation for -mfdpic.
5128
5129 2019-09-09 Bernd Edlinger <bernd.edlinger@hotmail.de>
5130
5131 * expmed.c (extract_bit_field): Update function comment
5132 regarding alt_rtl.
5133 * expr.c (expand_expr_real): Update function comment
5134 regarding alt_rtl.
5135 (expand_misaligned_mem_ref): New helper function.
5136 (expand_expr_real_2): Use expand_misaligned_mem_ref.
5137 Remove duplicate assignment to "base" at case MEM_REF.
5138 Remove a shadowed variable "unsignedp" at case VCE.
5139
5140 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5141
5142 * regset.h (regs_invalidated_by_call_regset): Delete.
5143 (fixed_reg_set_regset): Likewise.
5144 * reginfo.c (regs_invalidated_by_call_regset): Likewise.
5145 (fixed_reg_set_regset, persistent_obstack): Likewise.
5146 (init_reg_sets_1, globalize_reg): Update accordingly.
5147 * df.h (df_print_regset, df_print_word_regset): Take a const_bitmap
5148 instead of a bitmap.
5149 * df-core.c (df_print_regset, df_print_word_regset): Likewise.
5150 * df-problems.c (df_rd_local_compute): Use regs_invalidated_by_call
5151 instead of regs_invalidated_by_call_regset.
5152 (df_lr_confluence_n, df_md_confluence_n): Likewise.
5153 * df-scan.c (df_scan_start_dump): Likewise.
5154 * dse.c (copy_fixed_regs): Likewise.
5155 * config/sh/sh.c (sh_find_equiv_gbr_addr): Likewise.
5156
5157 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5158
5159 * array-traits.h: New file.
5160 * coretypes.h (array_traits, bitmap_view): New types.
5161 * bitmap.h: Include "array-traits.h"
5162 (bitmap_bit_p): Take a const_bitmap instead of a bitmap.
5163 (base_bitmap_view, bitmap_view): New classes.
5164 * bitmap.c (bitmap_bit_p): Take a const_bitmap instead of a bitmap.
5165 * hard-reg-set.h: Include array-traits.h.
5166 (array_traits<HARD_REG_SET>): New struct.
5167 * regset.h (IOR_REG_SET_HRS): New macro.
5168 * loop-iv.c (simplify_using_initial_values): Use IOR_REG_SET_HRS
5169 rather than iterating over each hard register.
5170 * sched-deps.c (sched_analyze_insn): Likewise.
5171 * sel-sched-ir.c (setup_id_implicit_regs): Likewise.
5172
5173 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5174
5175 * ira-int.h (ior_hard_reg_conflicts): Take a const_hard_reg_set
5176 instead of a HARD_REG_SET *.
5177 * ira-build.c (ior_hard_reg_conflicts): Likewise.
5178 (ira_build): Update call accordingly.
5179 * ira-emit.c (add_range_and_copies_from_move_list): Likewise.
5180
5181 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5182
5183 * hard-reg-set.h (HARD_REG_SET::operator==): New function.
5184 (HARD_REG_SET::operator!=): Likewise.
5185 (hard_reg_set_equal_p): Delete.
5186 * cfgcleanup.c (old_insns_match_p): Use == instead of
5187 hard_reg_set_equal_p and != instead of !hard_reg_set_equal_p.
5188 * ira-color.c (allocno_hard_regs_hasher::equal): Likewise.
5189 (add_allocno_hard_regs_to_forest): Likewise.
5190 (setup_allocno_available_regs_num): Likewise.
5191 * ira.c (setup_pressure_classes): Likewise.
5192 (setup_allocno_and_important_classes): Likewise.
5193 (setup_reg_class_relations): Likewise.
5194 * lra-lives.c (process_bb_lives): Likewise.
5195 * reg-stack.c (change_stack, convert_regs_1): Likewise.
5196
5197 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5198
5199 * hard-reg-set.h (IOR_COMPL_HARD_REG_SET): Delete.
5200 * config/aarch64/cortex-a57-fma-steering.c (rename_single_chain):
5201 Use "|~" instead of IOR_COMPL_HARD_REG_SET.
5202 * config/aarch64/falkor-tag-collision-avoidance.c (init_unavailable):
5203 Likewise.
5204 * ira-build.c (ira_create_object, ira_set_allocno_class): Likewise.
5205 * ira.c (setup_reg_renumber): Likewise.
5206 * lra-assigns.c (find_hard_regno_for_1): Likewise.
5207 * regrename.c (regrename_find_superclass): Likewise.
5208 * reload1.c (find_reg): Likewise.
5209
5210 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5211
5212 * hard-reg-set.h (AND_COMPL_HARD_REG_SET): Delete.
5213 * caller-save.c (setup_save_areas): Use "&~" instead of
5214 AND_COMPL_HARD_REG_SET.
5215 (save_call_clobbered_regs): Likewise.
5216 * config/epiphany/epiphany.c (epiphany_conditional_register_usage):
5217 Likewise.
5218 * config/frv/frv.c (frv_ifcvt_modify_tests): Likewise.
5219 * config/gcn/gcn.c (gcn_md_reorg): Likewise.
5220 * config/i386/i386.c (ix86_conditional_register_usage): Likewise.
5221 * config/mips/mips.c (mips_class_max_nregs): Likewise.
5222 (mips_conditional_register_usage): Likewise.
5223 * config/sh/sh.c (output_stack_adjust): Likewise.
5224 * ira-color.c (form_allocno_hard_regs_nodes_forest): Likewise.
5225 (setup_profitable_hard_regs): Likewise.
5226 (get_conflict_and_start_profitable_regs): Likewise.
5227 * ira-conflicts.c (print_allocno_conflicts): Likewise.
5228 (ira_build_conflicts): Likewise.
5229 * ira-costs.c (restrict_cost_classes): Likewise.
5230 (setup_regno_cost_classes_by_aclass): Likewise.
5231 * ira-lives.c (process_bb_node_lives): Likewise.
5232 * ira.c (setup_class_hard_regs, setup_reg_subclasses): Likewise.
5233 (setup_class_subset_and_memory_move_costs, setup_pressure_classes)
5234 (setup_allocno_and_important_classes, setup_class_translate_array)
5235 (setup_reg_class_relations, setup_prohibited_class_mode_regs):
5236 Likewise.
5237 * lra-assigns.c (find_hard_regno_for_1): Likewise.
5238 * lra-constraints.c (prohibited_class_reg_set_mode_p): Likewise.
5239 (process_alt_operands, inherit_in_ebb): Likewise.
5240 * lra-eliminations.c (update_reg_eliminate): Likewise.
5241 * lra-lives.c (process_bb_lives): Likewise.
5242 * reload1.c (update_eliminables_and_spill, reload_as_needed): Likewise.
5243 * resource.c (find_dead_or_set_registers): Likewise.
5244 (mark_target_live_regs): Likewise.
5245 * sched-deps.c (get_implicit_reg_pending_clobbers): Likewise.
5246 * sel-sched.c (mark_unavailable_hard_regs): Likewise.
5247 (implicit_clobber_conflict_p): Likewise.
5248 * shrink-wrap.c (requires_stack_frame_p): Likewise.
5249 (try_shrink_wrapping): Likewise.
5250
5251 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5252
5253 * hard-reg-set.h (HARD_REG_SET::operator|): New function.
5254 (HARD_REG_SET::operator|=): Likewise.
5255 (IOR_HARD_REG_SET): Delete.
5256 * config/gcn/gcn.c (gcn_md_reorg): Use "|" instead of
5257 IOR_HARD_REG_SET.
5258 * config/m32c/m32c.c (m32c_register_move_cost): Likewise.
5259 * config/s390/s390.c (s390_adjust_loop_scan_osc): Likewise.
5260 * final.c (collect_fn_hard_reg_usage): Likewise.
5261 * hw-doloop.c (scan_loop, optimize_loop): Likewise.
5262 * ira-build.c (merge_hard_reg_conflicts): Likewise.
5263 (ior_hard_reg_conflicts, create_cap_allocno, propagate_allocno_info)
5264 (propagate_some_info_from_allocno): Likewise.
5265 (copy_info_to_removed_store_destinations): Likewise.
5266 * ira-color.c (add_allocno_hard_regs_to_forest, assign_hard_reg)
5267 (allocno_reload_assign, ira_reassign_pseudos): Likewise.
5268 (fast_allocation): Likewise.
5269 * ira-conflicts.c (ira_build_conflicts): Likewise.
5270 * ira-lives.c (make_object_dead, process_single_reg_class_operands)
5271 (process_bb_node_lives): Likewise.
5272 * ira.c (setup_pressure_classes, setup_reg_class_relations): Likewise.
5273 * lra-assigns.c (find_hard_regno_for_1): Likewise.
5274 (setup_live_pseudos_and_spill_after_risky_transforms): Likewise.
5275 * lra-constraints.c (process_alt_operands, inherit_in_ebb): Likewise.
5276 * lra-eliminations.c (spill_pseudos, update_reg_eliminate): Likewise.
5277 * lra-lives.c (mark_pseudo_dead, check_pseudos_live_through_calls)
5278 (process_bb_lives): Likewise.
5279 * lra-spills.c (assign_spill_hard_regs): Likewise.
5280 * postreload.c (reload_combine): Likewise.
5281 * reginfo.c (init_reg_sets_1): Likewise.
5282 * regrename.c (merge_overlapping_regs, find_rename_reg)
5283 (merge_chains): Likewise.
5284 * reload1.c (maybe_fix_stack_asms, order_regs_for_reload, find_reg)
5285 (find_reload_regs, finish_spills, choose_reload_regs_init)
5286 (emit_reload_insns): Likewise.
5287 * reorg.c (redundant_insn): Likewise.
5288 * resource.c (find_dead_or_set_registers, mark_set_resources)
5289 (mark_target_live_regs): Likewise.
5290 * rtlanal.c (find_all_hard_reg_sets): Likewise.
5291 * sched-deps.c (sched_analyze_insn): Likewise.
5292 * sel-sched.c (mark_unavailable_hard_regs): Likewise.
5293 (find_best_reg_for_expr): Likewise.
5294 * shrink-wrap.c (try_shrink_wrapping): Likewise.
5295
5296 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5297
5298 * hard-reg-set.h (HARD_REG_SET::operator&): New function.
5299 (HARD_REG_SET::operator&): Likewise.
5300 (AND_HARD_REG_SET): Delete.
5301 * caller-save.c (setup_save_areas): Use "&" instead of
5302 AND_HARD_REG_SET.
5303 (save_call_clobbered_regs): Likewise.
5304 * config/gcn/gcn.c (gcn_md_reorg): Likewise.
5305 * config/m32c/m32c.c (reduce_class): Likewise.
5306 * config/rs6000/rs6000.c (rs6000_register_move_cost): Likewise.
5307 * final.c (get_call_reg_set_usage): Likewise.
5308 * ira-color.c (add_allocno_hard_regs_to_forest): Likewise.
5309 (setup_left_conflict_sizes_p): Likewise.
5310 * ira-conflicts.c (print_allocno_conflicts): Likewise.
5311 (ira_build_conflicts): Likewise.
5312 * ira-costs.c (restrict_cost_classes): Likewise.
5313 * ira.c (setup_stack_reg_pressure_class, setup_class_translate_array)
5314 (setup_reg_class_relations): Likewise.
5315 * reginfo.c (init_reg_sets_1, record_subregs_of_mode): Likewise.
5316 * reload1.c (maybe_fix_stack_asms, finish_spills): Likewise.
5317 * resource.c (find_dead_or_set_registers): Likewise.
5318 * sel-sched.c (mark_unavailable_hard_regs): Likewise.
5319
5320 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5321
5322 * hard-reg-set.h (HARD_REG_SET::operator~): New function.
5323 (COMPL_HARD_REG_SET): Delete.
5324 * config/c6x/c6x.c (c6x_call_saved_register_used): Use ~ instead
5325 of COMPL_HARD_REG_SET.
5326 (try_rename_operands): Likewise.
5327 * config/sh/sh.c (push_regs): Likewise.
5328 * lra-assigns.c (find_hard_regno_for_1): Likewise.
5329 * lra-constraints.c (contains_reg_p): Likewise.
5330 * reload1.c (finish_spills, choose_reload_regs_init): Likewise.
5331
5332 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5333
5334 * hard-reg-set.h (COPY_HARD_REG_SET): Delete.
5335 * caller-save.c (save_call_clobbered_regs): Use assignment instead
5336 of COPY_HARD_REG_SET.
5337 * config/epiphany/epiphany.c (epiphany_compute_frame_size): Likewise.
5338 (epiphany_conditional_register_usage): Likewise.
5339 * config/frv/frv.c (frv_ifcvt_modify_tests): Likewise.
5340 * config/gcn/gcn.c (gcn_md_reorg): Likewise.
5341 * config/ia64/ia64.c (ia64_compute_frame_size): Likewise.
5342 * config/m32c/m32c.c (m32c_register_move_cost): Likewise.
5343 * config/m68k/m68k.c (m68k_conditional_register_usage): Likewise.
5344 * config/mips/mips.c (mips_class_max_nregs): Likewise.
5345 * config/pdp11/pdp11.c (pdp11_conditional_register_usage): Likewise.
5346 * config/rs6000/rs6000.c (rs6000_register_move_cost): Likewise.
5347 * config/sh/sh.c (output_stack_adjust): Likewise.
5348 * final.c (collect_fn_hard_reg_usage): Likewise.
5349 (get_call_reg_set_usage): Likewise.
5350 * ira-build.c (ira_create_object, remove_low_level_allocnos)
5351 (ira_flattening): Likewise.
5352 * ira-color.c (add_allocno_hard_regs, add_allocno_hard_regs_to_forest)
5353 (setup_left_conflict_sizes_p, setup_profitable_hard_regs)
5354 (get_conflict_and_start_profitable_regs, allocno_reload_assign)
5355 (ira_reassign_pseudos): Likewise.
5356 * ira-conflicts.c (print_allocno_conflicts): Likewise.
5357 (ira_build_conflicts): Likewise.
5358 * ira-costs.c (restrict_cost_classes): Likewise.
5359 (setup_regno_cost_classes_by_aclass): Likewise.
5360 * ira.c (setup_class_hard_regs, setup_alloc_regs): Likewise.
5361 (setup_reg_subclasses, setup_class_subset_and_memory_move_costs)
5362 (setup_stack_reg_pressure_class, setup_pressure_classes)
5363 (setup_allocno_and_important_classes, setup_class_translate_array)
5364 (setup_reg_class_relations, setup_prohibited_class_mode_regs)
5365 (ira_setup_eliminable_regset): Likewise.
5366 * lra-assigns.c (find_hard_regno_for_1): Likewise.
5367 (setup_live_pseudos_and_spill_after_risky_transforms): Likewise.
5368 * lra-constraints.c (prohibited_class_reg_set_mode_p): Likewise.
5369 (process_alt_operands, inherit_in_ebb): Likewise.
5370 * lra-lives.c (process_bb_lives): Likewise.
5371 * lra-spills.c (assign_spill_hard_regs): Likewise.
5372 * lra.c (lra): Likewise.
5373 * mode-switching.c (new_seginfo): Likewise.
5374 * postreload.c (reload_combine): Likewise.
5375 * reg-stack.c (straighten_stack): Likewise.
5376 * reginfo.c (save_register_info, restore_register_info): Likewise.
5377 (init_reg_sets_1, record_subregs_of_mode): Likewise
5378 * regrename.c (create_new_chain, rename_chains): Likewise.
5379 * reload1.c (order_regs_for_reload, find_reg): Likewise.
5380 (find_reload_regs): Likewise.
5381 * resource.c (find_dead_or_set_registers): Likewise.
5382 (mark_target_live_regs): Likewise.
5383 * sel-sched.c (mark_unavailable_hard_regs): Likewise.
5384
5385 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5386
5387 * rtl.h (CALL_INSN_FUNCTION_USAGE): Document what SETs mean.
5388 (note_pattern_stores): Declare.
5389 (note_stores): Take an rtx_insn *.
5390 * rtlanal.c (set_of): Use note_pattern_stores instead of note_stores.
5391 (find_all_hard_reg_sets): Pass the insn rather than its pattern to
5392 note_stores. Remove explicit handling of CALL_INSN_FUNCTION_USAGE.
5393 (note_stores): Take an rtx_insn * as argument and process
5394 CALL_INSN_FUNCTION_USAGE. Rename old function to...
5395 (note_pattern_stores): ...this.
5396 (find_first_parameter_load): Pass the insn rather than
5397 its pattern to note_stores.
5398 * alias.c (memory_modified_in_insn_p, init_alias_analysis): Likewise.
5399 * caller-save.c (setup_save_areas, save_call_clobbered_regs)
5400 (insert_one_insn): Likewise.
5401 * combine.c (combine_instructions): Likewise.
5402 (likely_spilled_retval_p): Likewise.
5403 (try_combine): Use note_pattern_stores instead of note_stores.
5404 (record_dead_and_set_regs): Pass the insn rather than its pattern
5405 to note_stores.
5406 (reg_dead_at_p): Likewise.
5407 * config/bfin/bfin.c (workaround_speculation): Likewise.
5408 * config/c6x/c6x.c (maybe_clobber_cond): Likewise. Take an rtx_insn *
5409 rather than an rtx.
5410 * config/frv/frv.c (frv_registers_update): Use note_pattern_stores
5411 instead of note_stores.
5412 (frv_optimize_membar_local): Pass the insn rather than its pattern
5413 to note_stores.
5414 * config/gcn/gcn.c (gcn_md_reorg): Likewise.
5415 * config/i386/i386.c (ix86_avx_u128_mode_after): Likewise.
5416 * config/mips/mips.c (vr4130_true_reg_dependence_p): Likewise.
5417 (r10k_needs_protection_p, mips_sim_issue_insn): Likewise.
5418 (mips_reorg_process_insns): Likewise.
5419 * config/s390/s390.c (s390_regs_ever_clobbered): Likewise.
5420 * config/sh/sh.c (flow_dependent_p): Likewise. Take rtx_insn *s
5421 rather than rtxes.
5422 * cse.c (delete_trivially_dead_insns): Pass the insn rather than
5423 its pattern to note_stores.
5424 * cselib.c (cselib_record_sets): Use note_pattern_stores instead
5425 of note_stores.
5426 * dce.c (mark_nonreg_stores): Remove the "body" parameter and pass
5427 the insn to note_stores.
5428 (prescan_insns_for_dce): Update call accordingly.
5429 * ddg.c (mem_write_insn_p): Pass the insn rather than its pattern
5430 to note_stores.
5431 * df-problems.c (can_move_insns_across): Likewise.
5432 * dse.c (emit_inc_dec_insn_before, replace_read): Likewise.
5433 * function.c (assign_parm_setup_reg): Likewise.
5434 * gcse-common.c (record_last_mem_set_info_common): Likewise.
5435 * gcse.c (load_killed_in_block_p, compute_hash_table_work): Likewise.
5436 (single_set_gcse): Likewise.
5437 * ira.c (validate_equiv_mem): Likewise.
5438 (update_equiv_regs): Use note_pattern_stores rather than note_stores
5439 for no_equiv.
5440 * loop-doloop.c (doloop_optimize): Pass the insn rather than its
5441 pattern to note_stores.
5442 * loop-invariant.c (calculate_loop_reg_pressure): Likewise.
5443 * loop-iv.c (simplify_using_initial_values): Likewise.
5444 * mode-switching.c (optimize_mode_switching): Likewise.
5445 * optabs.c (emit_libcall_block_1): Likewise.
5446 (expand_atomic_compare_and_swap): Likewise.
5447 * postreload-gcse.c (load_killed_in_block_p): Likewise.
5448 (record_opr_changes): Likewise. Remove explicit handling of
5449 CALL_INSN_FUNCTION_USAGE.
5450 * postreload.c (reload_combine, reload_cse_move2add): Likewise.
5451 * regcprop.c (kill_clobbered_values): Likewise.
5452 (copyprop_hardreg_forward_1): Pass the insn rather than its pattern
5453 to note_stores.
5454 * regrename.c (build_def_use): Likewise.
5455 * reload1.c (reload): Use note_pattern_stores instead of note_stores
5456 for mark_not_eliminable.
5457 (reload_as_needed): Pass the insn rather than its pattern
5458 to note_stores.
5459 (emit_output_reload_insns): Likewise.
5460 * resource.c (mark_target_live_regs): Likewise.
5461 * sched-deps.c (init_insn_reg_pressure_info): Likewise.
5462 * sched-rgn.c (sets_likely_spilled): Use note_pattern_stores
5463 instead of note_stores.
5464 * shrink-wrap.c (try_shrink_wrapping): Pass the insn rather than
5465 its pattern to note_stores.
5466 * stack-ptr-mod.c (pass_stack_ptr_mod::execute): Likewise.
5467 * var-tracking.c (adjust_insn, add_with_sets): Likewise.
5468
5469 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5470
5471 * hard-reg-set.h (HARD_REG_SET): Define using a typedef rather
5472 than a #define. Use a structure rather than an array as the
5473 fallback definition. Remove special cases for low array sizes.
5474 (const_hard_reg_set): New typedef.
5475 (hard_reg_set_subset_p): Use it instead of "const HARD_REG_SET".
5476 (hard_reg_set_equal_p, hard_reg_set_intersect_p): Likewise.
5477 (hard_reg_set_empty_p): Likewise.
5478 (SET_HARD_REG_BIT): Use a function rather than a macro to
5479 handle the case in which HARD_REG_SET is a structure.
5480 (CLEAR_HARD_REG_BIT, TEST_HARD_REG_BIT, CLEAR_HARD_REG_SET)
5481 (SET_HARD_REG_SET, COPY_HARD_REG_SET, COMPL_HARD_REG_SET)
5482 (AND_HARD_REG_SET, AND_COMPL_HARD_REG_SET, IOR_HARD_REG_SET)
5483 (IOR_COMPL_HARD_REG_SET): Likewise.
5484 (hard_reg_set_iterator::pset): Constify the pointer target.
5485 (hard_reg_set_iter_init): Take a const_hard_reg_set instead
5486 of a "const HARD_REG_SET". Update the handling of non-integer
5487 HARD_REG_SETs.
5488 * recog.h: Test HARD_CONST instead of CLEAR_HARD_REG_SET.
5489 * reload.h: Likewise.
5490 * rtl.h (choose_hard_reg_mode): Remove unnecessary line break.
5491 * regs.h (in_hard_reg_set_p): Take a const_hard_reg_set instead
5492 of a "const HARD_REG_SET".
5493 (overlaps_hard_reg_set_p, range_overlaps_hard_reg_set_p): Likewise.
5494 (range_in_hard_reg_set_p): Likewise.
5495 * ira-costs.c (restrict_cost_classes): Likewise.
5496 * shrink-wrap.c (move_insn_for_shrink_wrap): Likewise.
5497 * config/epiphany/resolve-sw-modes.c (pass_resolve_sw_modes::execute):
5498 Pass a NO_REGS HARD_REG_SET rather than NULL to emit_set_fp_mode.
5499 * config/ia64/ia64.c (rws_insn): In the CHECKING_P version,
5500 use unsigned HOST_WIDEST_FAST_INT rather than HARD_REG_ELT_TYPE.
5501 (rws_insn_set, rws_insn_test): In the CHECKING_P version,
5502 take an unsigned int and open-code the HARD_REG_SET operations.
5503
5504 2019-09-09 Richard Sandiford <richard.sandiford@arm.com>
5505
5506 * Makefile.in (OBJS): Remove bt-load.o.
5507 * doc/invoke.texi (fbranch-target-load-optimize): Delete.
5508 (fbranch-target-load-optimize2, fbtr-bb-exclusive): Likewise.
5509 * common.opt (fbranch-target-load-optimize): Mark as Ignore and
5510 document that the option no longer does anything.
5511 (fbranch-target-load-optimize2, fbtr-bb-exclusive): Likewise.
5512 * target.def (branch_target_register_class): Delete.
5513 (branch_target_register_callee_saved): Likewise.
5514 * doc/tm.texi.in (TARGET_BRANCH_TARGET_REGISTER_CLASS): Likewise.
5515 (TARGET_BRANCH_TARGET_REGISTER_CALLEE_SAVED): Likewise.
5516 * doc/tm.texi: Regenerate.
5517 * tree-pass.h (make_pass_branch_target_load_optimize1): Delete.
5518 (make_pass_branch_target_load_optimize2): Likewise.
5519 * passes.def (pass_branch_target_load_optimize1): Likewise.
5520 (pass_branch_target_load_optimize2): Likewise.
5521 * targhooks.h (default_branch_target_register_class): Likewise.
5522 * targhooks.c (default_branch_target_register_class): Likewise.
5523 * opt-suggestions.c (test_completion_valid_options): Remove
5524 -fbtr-bb-exclusive from the list of test options.
5525 * bt-load.c: Remove.
5526
5527 2019-09-09 Barnaby Wilks <barnaby.wilks@arm.com>
5528
5529 * match.pd: Add flag_unsafe_math_optimizations check
5530 before deciding on the widest type in a binary math operation.
5531
5532 2019-09-09 Martin Liska <mliska@suse.cz>
5533
5534 * config/i386/i386.opt: Update comment of removed
5535 options that are preserved only for backward
5536 compatibility.
5537
5538 2019-09-09 Jakub Jelinek <jakub@redhat.com>
5539
5540 PR target/87853
5541 * config/i386/emmintrin.h (_mm_cmpeq_epi8): Use casts to __v16qi
5542 instead of __v16qs.
5543
5544 PR target/91704
5545 * config/i386/avxintrin.h (__v32qs): New typedef.
5546 * config/i386/avx2intrin.h (_mm256_cmpgt_epi8): Use casts to __v32qs
5547 instead of __v32qi.
5548
5549 2019-09-09 Jose E. Marchesi <jose.marchesi@oracle.com>
5550
5551 * doc/invoke.texi (Option Summary): Cover eBPF.
5552 (eBPF Options): New section.
5553 * doc/extend.texi (BPF Built-in Functions): Likewise.
5554 (BPF Kernel Helpers): Likewise.
5555
5556 2019-09-09 Jose E. Marchesi <jose.marchesi@oracle.com>
5557
5558 * config.gcc: Support for bpf-*-* targets.
5559 * common/config/bpf/bpf-common.c: New file.
5560 * config/bpf/t-bpf: Likewise.
5561 * config/bpf/predicates.md: Likewise.
5562 * config/bpf/constraints.md: Likewise.
5563 * config/bpf/bpf.opt: Likewise.
5564 * config/bpf/bpf.md: Likewise.
5565 * config/bpf/bpf.h: Likewise.
5566 * config/bpf/bpf.c: Likewise.
5567 * config/bpf/bpf-protos.h: Likewise.
5568 * config/bpf/bpf-opts.h: Likewise.
5569 * config/bpf/bpf-helpers.h: Likewise.
5570 * config/bpf/bpf-helpers.def: Likewise.
5571
5572 2019-09-09 Jose E. Marchesi <jose.marchesi@oracle.com>
5573
5574 * doc/sourcebuild.texi (Effective-Target Keywords): Document
5575 indirect_calls.
5576
5577 2019-09-09 Jose E. Marchesi <jose.marchesi@oracle.com>
5578
5579 * opt-functions.awk (integer_range_info): Make sure values are in
5580 numeric context before operating with them.
5581
5582 2019-09-08 Segher Boessenkool <segher@kernel.crashing.org>
5583
5584 * genemit.c (gen_split): Print the filename and line number where the
5585 splitter (or peephole2) was defined, to the dump file.
5586
5587 2019-09-07 Jakub Jelinek <jakub@redhat.com>
5588
5589 PR tree-optimization/91665
5590 * tree-vect-loop.c (vectorizable_reduction): Punt if base has type
5591 incompatible with the type of PHI result.
5592
5593 2019-09-07 Bernd Edlinger <bernd.edlinger@hotmail.de>
5594
5595 PR target/91684
5596 * config/arm/arm.c (arm_block_set_aligned_non_vect): Use
5597 gen_unaligned_storedi for 4-byte aligned addresses.
5598
5599 2019-09-06 Jim Wilson <jimw@sifive.com>
5600
5601 * config/riscv/riscv.c (riscv_option_override): Revert 2019-08-30
5602 change.
5603
5604 2019-09-06 Segher Boessenkool <segher@kernel.crashing.org>
5605
5606 * config/rs6000/rs6000.md (unspec): Delete UNSPEC_MV_CR_OV.
5607
5608 2019-09-06 Segher Boessenkool <segher@kernel.crashing.org>
5609
5610 * config/rs6000/rs6000.c (rs6000_rtx_costs) <case UNSPEC>: Delete.
5611 * config/rs6000/rs6000.md (unspec): Delete UNSPEC_FRSP.
5612
5613 2019-09-06 Uroš Bizjak <ubizjak@gmail.com>
5614
5615 PR target/91654
5616 * config/i386/x86-tune-costs.h (skylake_cost): Raise the
5617 cost of SSE->integer and integer->SSE moves from 2 to 6.
5618 (core_cost): Ditto.
5619
5620 2019-09-06 Jakub Jelinek <jakub@redhat.com>
5621
5622 * function.c (assign_parm_find_data_types): Use RECORD_OR_UNION_TYPE_P
5623 before testing TYPE_TRANSPARENT_AGGR.
5624 * calls.c (initialize_argument_information, load_register_parameters):
5625 Likewise.
5626
5627 2019-09-06 Richard Earnshaw <rearnsha@arm.com>
5628
5629 * config/arm/arm.md (cmp_and): Add short-it variant for thumb2 with
5630 high regs.
5631 (cmp_ior): Likewise.
5632
5633 2019-09-06 Martin Liska <mliska@suse.cz>
5634
5635 * doc/match-and-simplify.texi: Separate tuples with ;.
5636
5637 2019-09-06 Martin Liska <mliska@suse.cz>
5638
5639 PR c++/91125
5640 * Makefile.in: Remove tlink.o.
5641 * collect2.c (do_link): New function isolated
5642 from do_tlink.
5643 (main): Use.
5644 * collect2.h (do_tlink): Remove declaration of do_tlink.
5645 * doc/extend.texi: Remove documentation of -frepo.
5646 * doc/invoke.texi: Likewise.
5647 * doc/sourcebuild.texi: Remove cleanup-repo-files.
5648 * tlink.c: Remove.
5649
5650 2019-09-05 Jakub Jelinek <jakub@redhat.com>
5651 Jim Wilson <jimw@sifive.com>
5652
5653 PR target/91635
5654 * config/riscv/riscv.md (zero_extendsidi2, zero_extendhi<GPR:mode>2,
5655 extend<SHORT:mode><SUPERQI:mode>2): Don't split if
5656 paradoxical_subreg_p (operands[0]).
5657 (*lshrsi3_zero_extend_3+1, *lshrsi3_zero_extend_3+2): Add clobber and
5658 use as intermediate value.
5659
5660 2019-09-05 Andrew Stubbs <ams@codesourcery.com>
5661
5662 * config/gcn/gcn.md (*movti_insn): Set delayeduse for global_store.
5663 (sync_compare_and_swap<mode>_insn): Likewise.
5664
5665 2019-09-05 Bernd Edlinger <bernd.edlinger@hotmail.de>
5666
5667 PR middle-end/91615
5668 * expr.c (expand_expr_real_1): Handle misaligned TARGET_MEM_REF
5669 without movmisalign optab.
5670
5671 2019-09-05 Jakub Jelinek <jakub@redhat.com>
5672
5673 PR middle-end/91001
5674 PR middle-end/91105
5675 PR middle-end/91106
5676 * calls.c (load_register_parameters): For TYPE_TRANSPARENT_AGGR
5677 types, use type of their first field instead of type of
5678 args[i].tree_value.
5679
5680 2019-09-05 Richard Biener <rguenther@suse.de>
5681
5682 PR rtl-optimization/91656
5683 * postreload-gcse.c (record_last_mem_set_info): Revert addition
5684 of early out.
5685
5686 2019-09-05 Richard Biener <rguenther@suse.de>
5687
5688 PR middle-end/90501
5689 * tree-inline.c (declare_return_variable): Mark the return
5690 slot as addressable after building an address of it.
5691
5692 2019-09-05 Arnaud Charlet <charlet@adacore.com>
5693
5694 * doc/install.texi: Update and clarify requirements to build GNAT.
5695
5696 2019-09-05 Richard Sandiford <richard.sandiford@arm.com>
5697
5698 PR middle-end/91577
5699 * cfgexpand.c (discover_nonconstant_array_refs): Force the source
5700 of an IFN_LOAD_LANES call and the destination of an IFN_STORE_LANES
5701 call to be in memory.
5702 (pass_expand::execute): Call discover_nonconstant_array_refs before
5703 setting currently_expanding_to_rtl.
5704
5705 2019-09-04 Caroline Tice <cmtice@google.com>
5706
5707 * opts.c (finish_options): Disallow -fvtable-verify and -flto to be
5708 specified together.
5709
5710 2019-09-04 Marek Polacek <polacek@redhat.com>
5711
5712 * doc/invoke.texi: Remove -fdeduce-init-list documentation.
5713
5714 2019-09-04 Uroš Bizjak <ubizjak@gmail.com>
5715
5716 PR target/32413
5717 * config/i386/i386.c (inline_secondary_memory_needed): Return true
5718 for QI and HImode moves between SSE and general registers.
5719
5720 2019-09-04 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
5721
5722 PR c/78736
5723 * doc/invoke.texi: Document -Wenum-conversion.
5724
5725 2019-09-04 Richard Biener <rguenther@suse.de>
5726
5727 PR rtl-optimization/36262
5728 * postreload-gcse.c: Include intl.h and gcse.h.
5729 (insert_expr_in_table): Insert at the head of cur_expr->avail_occr
5730 to avoid linear list walk.
5731 (record_last_mem_set_info): Gate off if not computing transparentness.
5732 (get_bb_avail_insn): If transparentness isn't computed give up
5733 early.
5734 (gcse_after_reload_main): Skip compute_transp and extended PRE
5735 if gcse_or_cprop_is_too_expensive says so.
5736
5737 2019-09-03 Jozef Lawrynowicz <jozef.l@mittosystems.com>
5738
5739 * config/msp430/msp430.c (msp430_init_sections): Remove handling of the
5740 noinit section.
5741 (msp430_select_section): Handle decls with the "noinit" attribute with
5742 default_elf_select_section.
5743 Handle SECCAT_RODATA_MERGE_* section types with
5744 default_elf_select_section.
5745 Add comments about handling of unsupported section types.
5746 (msp430_section_type_flags): Remove handling of the noinit section.
5747
5748 2019-09-03 Jozef Lawrynowicz <jozef.l@mittosystems.com>
5749
5750 * config/msp430/msp430.c (msp430_attr): Remove warnings about
5751 conflicting msp430-specific attributes.
5752 (msp430_section_attr): Likewise.
5753 Add warnings about conflicts with generic "noinit" and "section"
5754 attributes.
5755 Fix grammar in -mlarge error message.
5756 (msp430_data_attr): Rename to msp430_persist_attr.
5757 Add warnings about conflicts with generic "noinit" and "section"
5758 attributes.
5759 Add warning for when variable is not initialized.
5760 Chain conditionals which prevent the attribute being added.
5761 (ATTR_EXCL): New helper.
5762 (attr_reent_exclusions): New exclusion table.
5763 (attr_naked_exclusions): Likewise.
5764 (attr_crit_exclusions): Likewise.
5765 (attr_lower_exclusions): Likewise.
5766 (attr_upper_exclusions): Likewise.
5767 (attr_either_exclusions): Likewise.
5768 (attr_persist_exclusions): Likewise.
5769 (msp430_attribute_table): Update with exclusion rules.
5770 (msp430_output_aligned_decl_common): Don't output common symbol if decl
5771 has a section.
5772
5773 2019-09-03 Jozef Lawrynowicz <jozef.l@mittosystems.com>
5774
5775 * config/msp430/msp430.c (TARGET_HANDLE_GENERIC_ATTRIBUTE): Define.
5776 (msp430_handle_generic_attribute): New function.
5777 * doc/tm.texi: Regenerate.
5778 * doc/tm.texi.in: Add TARGET_HANDLE_GENERIC_ATTRIBUTE.
5779 * hooks.c (hook_tree_treeptr_tree_tree_int_boolptr_null): New.
5780 * hooks.h (hook_tree_treeptr_tree_tree_int_boolptr_null): New.
5781 * target.def: Define new hook TARGET_HANDLE_GENERIC_ATTRIBUTE.
5782
5783 2019-09-03 Kamlesh Kumar <kamleshbhalui@gmail.com>
5784
5785 PR tree-optimization/91504
5786 * match.pd: Add ((~a & b) ^a) --> (a | b).
5787
5788 2019-09-03 Jakub Jelinek <jakub@redhat.com>
5789
5790 PR target/91604
5791 * config/i386/i386-expand.c (split_double_mode): If there is more than
5792 one MEM operand and they are rtx_equal_p, reuse lo_half/hi_half from
5793 already split matching MEM operand instead of calling adjust_address
5794 again.
5795
5796 2019-09-03 Ulrich Weigand <uweigand@de.ibm.com>
5797
5798 * config.gcc: Obsolete spu target. Remove references to spu.
5799 * configure.ac: Remove references to spu.
5800 * configure: Regenerate.
5801 * config/spu/: Remove directory.
5802 * common/config/spu/: Remove directory.
5803
5804 * doc/extend.texi: Remove references to spu.
5805 * doc/invoke.texi: Likewise.
5806 * doc/md.texi: Likewise.
5807 * doc/sourcebuild.texi: Likewise.
5808
5809 2019-09-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
5810
5811 PR middle-end/91603
5812 PR middle-end/91612
5813 PR middle-end/91613
5814 * expr.c (expand_expr_real_1): Handle unaligned decl_rtl
5815 and SSA_NAME referring to CONSTANT_P correctly.
5816
5817 2019-09-03 Richard Biener <rguenther@suse.de>
5818
5819 * tree-ssa-sccvn.h (vn_nary_op_lookup): Remove.
5820 (vn_nary_op_insert): Likewise.
5821 * tree-ssa-sccvn.c (init_vn_nary_op_from_op): Remove.
5822 (vn_nary_op_lookup): Likewise.
5823 (vn_nary_op_insert): Likewise.
5824
5825 2019-09-03 Ilya Leoshkevich <iii@linux.ibm.com>
5826
5827 * config/s390/s390.c (s390_canonicalize_comparison): Use XEXP
5828 (*op0, 1) instead of XEXP (*op1, 0).
5829
5830 2019-09-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5831
5832 * config/aarch64/aarch64.md (UNSPEC_FJCVTZS): Define.
5833 (aarch64_fjcvtzs): New define_insn.
5834 * config/aarch64/aarch64.h (TARGET_JSCVT): Define.
5835 * config/aarch64/aarch64-builtins.c (aarch64_builtins):
5836 Add AARCH64_JSCVT.
5837 (aarch64_init_builtins): Initialize __builtin_aarch64_jcvtzs.
5838 (aarch64_expand_builtin): Handle AARCH64_JSCVT.
5839 * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins): Define
5840 __ARM_FEATURE_JCVT where appropriate.
5841 * config/aarch64/arm_acle.h (__jcvt): Define.
5842
5843 2019-09-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5844
5845 * config/aarch64/aarch64.md ("unspec"): Add UNSPEC_FRINT32Z,
5846 UNSPEC_FRINT32X, UNSPEC_FRINT64Z, UNSPEC_FRINT64X.
5847 (aarch64_<frintnzs_op><mode>): New define_insn.
5848 * config/aarch64/aarch64.h (TARGET_FRINT): Define.
5849 * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins): Define
5850 __ARM_FEATURE_FRINT when appropriate.
5851 * config/aarch64/aarch64-simd-builtins.def: Add builtins for frint32z,
5852 frint32x, frint64z, frint64x.
5853 * config/aarch64/arm_acle.h (__rint32zf, __rint32z, __rint64zf,
5854 __rint64z, __rint32xf, __rint32x, __rint64xf, __rint64x): Define.
5855 * config/aarch64/arm_neon.h (vrnd32z_f32, vrnd32zq_f32, vrnd32z_f64,
5856 vrnd32zq_f64, vrnd32x_f32, vrnd32xq_f32, vrnd32x_f64, vrnd32xq_f64,
5857 vrnd64z_f32, vrnd64zq_f32, vrnd64z_f64, vrnd64zq_f64, vrnd64x_f32,
5858 vrnd64xq_f32, vrnd64x_f64, vrnd64xq_f64): Define.
5859 * config/aarch64/iterators.md (VSFDF): Define.
5860 (FRINTNZX): Likewise.
5861 (frintnzs_op): Likewise.
5862
5863 2019-09-03 Dennis Zhang <dennis.zhang@arm.com>
5864
5865 * config/aarch64/aarch64-cores.def (AARCH64_CORE): New entries
5866 for Cortex-A77, Cortex-A76AE, Cortex-A65, Cortex-A65AE, and
5867 Cortex-A34.
5868 * config/aarch64/aarch64-tune.md: Regenerated.
5869 * doc/invoke.texi: Document the new processors.
5870
5871 2019-09-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
5872
5873 * config/aarch64/aarch64-option-extensions.def (sb): Add feature
5874 string.
5875 (ssbs): Likewise.
5876 (sve2): Likewise.
5877 (sve2-sm4): Likewise.
5878 (sveaes): Likewise.
5879 (svesha3): Likewise.
5880 (svebitperm): Likewise.
5881
5882 2019-09-03 Jakub Jelinek <jakub@redhat.com>
5883 Richard Biener <rguenther@suse.de>
5884
5885 PR tree-optimization/91597
5886 * tree-vrp.c (extract_range_from_binary_expr): Remove unsafe
5887 BIT_AND_EXPR optimization for pointers, even if both operand
5888 ranges don't include NULL, the result can be NULL.
5889
5890 2019-09-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
5891
5892 PR middle-end/91605
5893 * expr.c (addr_expr_of_non_mem_decl_p_1): Refactor into...
5894 (non_mem_decl_p): ...this.
5895 (mem_ref_refers_to_non_mem_p): Handle DECL_P as well as MEM_REF.
5896 (expand_assignment): Call mem_ref_referes_to_non_mem_p
5897 unconditionally as before.
5898
5899 2019-09-02 Eric Botcazou <ebotcazou@adacore.com>
5900
5901 PR target/91323
5902 * doc/generic.texi (LTGT_EXPR): Merge with other comparison operators.
5903 * rtl.def (LTGT): Likewise. Add note about floating-point exceptions.
5904 * tree.def (LTGT_EXPR): Likewise.
5905 * config/sparc/sparc.c (select_cc_mode): Return CCFPEmode for LTGT.
5906
5907 2019-09-02 Jakub Jelinek <jakub@redhat.com>
5908
5909 PR go/91617
5910 * fold-const.c (range_check_type): For enumeral and boolean
5911 type, pass 1 to type_for_size langhook instead of
5912 TYPE_UNSIGNED (etype). Return unsigned_type_for result whenever
5913 etype isn't TYPE_UNSIGNED INTEGER_TYPE.
5914 (build_range_check): Don't call unsigned_type_for for pointer types.
5915 * match.pd (X / C1 op C2): Don't call unsigned_type_for on
5916 range_check_type result.
5917
5918 2019-09-02 Eric Botcazou <ebotcazou@adacore.com>
5919
5920 * gimple-ssa-strength-reduction.c (valid_mem_ref_cand_p): New function.
5921 (replace_ref): Do not replace a chain of only two candidates which are
5922 valid memory references.
5923
5924 2019-09-02 Martin Liska <mliska@suse.cz>
5925
5926 * tree-switch-conversion.c (jump_table_cluster::find_jump_tables):
5927 Bail out when we'll end up with the same number of clusters as
5928 at the beginning.
5929 (bit_test_cluster::find_bit_tests): Likewise for bit tests.
5930 (jump_table_cluster::can_be_handled): Remove the guard
5931 as it's already handled in ::is_enabled. Allocate output
5932 after early bail out.
5933
5934 2019-09-02 Martin Liska <mliska@suse.cz>
5935
5936 PR gcov-profile/91601
5937 * gcov.c (path_contains_zero_cycle_arc): Rename to ...
5938 (path_contains_zero_or_negative_cycle_arc): ... this and handle
5939 also negative edges.
5940 (circuit): Handle also negative edges as they can happen
5941 in some situations.
5942
5943 2019-09-01 Eric Botcazou <ebotcazou@adacore.com>
5944
5945 PR target/91472
5946 * config/sparc/sparc.c (sparc_cannot_force_const_mem): Return true
5947 during LRA/reload in PIC mode if the PIC register hasn't been used yet.
5948 (sparc_pic_register_p): Test reload_in_progress for consistency's sake.
5949
5950 2019-09-01 Jakub Jelinek <jakub@redhat.com>
5951
5952 PR middle-end/91623
5953 * optabs.c (expand_vec_cond_expr): If op0 is a VECTOR_CST and only
5954 EQ_EXPR/NE_EXPR is supported, verify that op0 only contains
5955 zeros or negative elements and use NE_EXPR instead of LT_EXPR against
5956 zero vector.
5957
5958 PR lto/91572
5959 * tree.c (find_decls_types_in_node): Also walk TREE_PURPOSE of
5960 GIMPLE_ASM TREE_LIST operands.
5961
5962 2019-08-31 Gerald Pfeifer <gerald@pfeifer.com>
5963
5964 * doc/generic.texi (Unary and Binary Expressions): Mark up
5965 an instance of TYPE_MIN.
5966
5967 2019-08-31 Stafford Horne <shorne@gmail.com>
5968
5969 * config/or1k/constraints.md (t): New constraint.
5970 * config/or1k/or1k.h (GOT_REGS): New register class.
5971 * config/or1k/or1k.md (set_got_tmp, set_got): Use t contraint.
5972
5973 2019-08-30 Jim Wilson <jimw@sifive.com>
5974
5975 * config/riscv/riscv.c (riscv_option_override): If -msave-restore
5976 and -fpic and -mplt then disable -msave-restore and warn.
5977
5978 2019-08-30 Martin Sebor <msebor@redhat.com>
5979
5980 PR middle-end/91599
5981 * tree-ssa-strlen.c (handle_store): Use a fallback location if
5982 the statement doesn't have one.
5983 * gimple-pretty-print.c (percent_G_format): Same.
5984
5985 PR middle-end/91584
5986 * tree-vrp.c (vrp_prop::check_mem_ref): Normalize type domain bounds
5987 before using them to validate MEM_REF offset.
5988
5989 2019-08-30 Marek Polacek <polacek@redhat.com>
5990
5991 * doc/invoke.texi (-Wvolatile): Use @code for volatile.
5992
5993 2019-08-30 Bernd Edlinger <bernd.edlinger@hotmail.de>
5994
5995 * config/arm/arm.md (unaligned_loaddi,
5996 unaligned_storedi): New unspec insn patterns.
5997 * config/arm/neon.md (unaligned_storev8qi): Likewise.
5998 * config/arm/arm.c (gen_cpymem_ldrd_strd): Use unaligned_loaddi
5999 and unaligned_storedi for 4-byte aligned memory.
6000 (arm_block_set_aligned_vect): Use unaligned_storev8qi for
6001 4-byte aligned memory.
6002
6003 2019-08-30 Martin Jambor <mjambor@suse.cz>
6004
6005 tree-optimization/91579
6006 * tree-tailcall.c (tailr_arg_needs_copy): New variable.
6007 (find_tail_calls): Allocate tailr_arg_needs_copy and set its bits as
6008 appropriate.
6009 (arg_needs_copy_p): Removed.
6010 (eliminate_tail_call): Test tailr_arg_needs_copy instead of calling
6011 arg_needs_copy_p.
6012 (tree_optimize_tail_calls_1): Likewise. Free tailr_arg_needs_copy.
6013
6014 2019-08-29 Uroš Bizjak <ubizjak@gmail.com>
6015
6016 * config/i386/i386-features.c
6017 (general_scalar_chain::compute_convert_gain):
6018 Correct cost for double-word shifts.
6019 (general_scalar_to_vector_candidate_p): Reject count operands
6020 greater or equal to mode bitsize.
6021
6022 2019-08-29 Uroš Bizjak <ubizjak@gmail.com>
6023
6024 * config/i386/i386.c (inline_secondary_memory_needed): Return true
6025 for moves between SSE and non-general registers and between
6026 mask and non-general registers.
6027 (ix86_register_move_cost): Remove stalled comment.
6028
6029 2019-08-29 Richard Biener <rguenther@suse.de>
6030
6031 * config/i386/i386-features.c (general_scalar_chain::convert_insn):
6032 Guard debug work with MAY_HAVE_DEBUG_BIND_INSNS.
6033
6034 2019-08-29 Richard Biener <rguenther@suse.de>
6035
6036 PR bootstrap/91580
6037 * config/i386/i386-features.c (general_scalar_chain::convert_insn):
6038 Do not emit scalar copies for debug-insns, instead replace
6039 their uses with the reg copy used in the chain or reset them
6040 if there is a reaching definition outside of the chain as well.
6041
6042 2019-08-29 Jakub Jelinek <jakub@redhat.com>
6043
6044 PR target/91560
6045 * config/i386/i386-expand.c (expand_vec_perm_movs,
6046 expand_vec_perm_blend, expand_vec_perm_vpermil,
6047 expand_vec_perm_pshufb, expand_vec_perm_1,
6048 expand_vec_perm_pshuflw_pshufhw, expand_vec_perm_palignr,
6049 expand_vec_perm_interleave2, expand_vec_perm_vpermq_perm_1,
6050 expand_vec_perm_vperm2f128, expand_vec_perm_interleave3,
6051 expand_vec_perm_vperm2f128_vblend, expand_vec_perm_2vperm2f128_vshuf,
6052 expand_vec_perm_even_odd, expand_vec_perm_broadcast): Adjust function
6053 comments - replace ix86_expand_vec_perm_builtin_1 with
6054 ix86_expand_vec_perm_const_1.
6055 (expand_vec_perm2_vperm2f128_vblend): New function.
6056 (ix86_expand_vec_perm_const_1): New forward declaration. Call
6057 expand_vec_perm2_vperm2f128_vblend as last resort.
6058 (canonicalize_perm): Formatting fix.
6059
6060 PR tree-optimization/91351
6061 * tree-cfg.c (generate_range_test): Use range_check_type instead of
6062 unsigned_type_for.
6063 * tree-cfgcleanup.c (convert_single_case_switch): Punt if
6064 range_check_type returns NULL.
6065 * tree-switch-conversion.c (switch_conversion::build_one_array):
6066 Use range_check_type instead of unsigned_type_for, don't perform
6067 linear opt if it returns NULL.
6068 (bit_test_cluster::find_bit_tests): Formatting fix.
6069 (bit_test_cluster::emit): Use range_check_type instead of
6070 unsigned_type_for.
6071 (switch_decision_tree::try_switch_expansion): Punt if range_check_type
6072 returns NULL.
6073
6074 2019-08-29 Richard Biener <rguenther@suse.de>
6075
6076 PR tree-optimization/91568
6077 * tree-vectorizer.h (_slp_tree::max_nunits): Add.
6078 (vect_update_max_nunits): Add overload for poly_uint64.
6079 * tree-vect-slp.c (vect_create_new_slp_node): Initialize it.
6080 (vect_build_slp_tree): Record max_nunits into the subtree
6081 and merge it upwards.
6082 (vect_print_slp_tree): Print max_nunits.
6083
6084 2019-08-28 Marek Polacek <polacek@redhat.com>
6085
6086 Implement P1152R4: Deprecating some uses of volatile.
6087 PR c++/91361
6088 * doc/invoke.texi: Document -Wvolatile.
6089
6090 2019-08-28 Marek Polacek <polacek@redhat.com>
6091
6092 PR c++/91360 - Implement C++20 P1143R2: constinit.
6093 * doc/invoke.texi: Document -Wc++20-compat.
6094
6095 2019-08-28 Martin Sebor <msebor@redhat.com>
6096
6097 PR tree-optimization/91457
6098 * builtins.c (component_size): New function.
6099 (compute_objsize): Add argument. Handle ARRAY_REF and COMPONENT_REF.
6100 * builtins.h (compute_objsize): Add argument.
6101 * tree-ssa-strlen.c (handle_store): Handle no-warning bit.
6102 * tree-vrp.c (vrp_prop::check_array_ref): Return warning result.
6103 (vrp_prop::check_mem_ref): Same.
6104 (vrp_prop::search_for_addr_array): Set no-warning bit.
6105 (check_array_bounds): Same.
6106
6107 2019-08-28 Martin Sebor <msebor@redhat.com>
6108
6109 PR driver/80545
6110 * opts-common.c (option_enabled): Correct checking for language
6111 options.
6112
6113 2019-08-28 Uroš Bizjak <ubizjak@gmail.com>
6114
6115 * config/i386/i386.c (ix86_register_move_cost): Do not
6116 limit the cost of moves to/from XMM register to minimum 8.
6117
6118 2019-08-28 Martin Jambor <mjambor@suse.cz>
6119
6120 PR ipa/91468
6121 * ipa-cp.c (merge_agg_lats_step): Removed redundant test, made a
6122 checking assert a normal assert to test it really is redundant.
6123 * ipa-prop.c (compute_complex_assign_jump_func): Removed
6124 redundant test.
6125 (update_jump_functions_after_inlining): Removed combining unary
6126 arithmetic operations with an ancestor jump function.
6127 (ipcp_modif_dom_walker::before_dom_children): Fix wrong use of rhs
6128 instead of t.
6129
6130 2019-08-28 Richard Biener <rguenther@suse.de>
6131
6132 * config/i386/i386-features.c (convert_scalars_to_vector): Do not
6133 add the MD problem.
6134
6135 2019-08-28 Bernd Edlinger <bernd.edlinger@hotmail.de>
6136 Richard Biener <rguenther@suse.de>
6137
6138 * expr.c (expand_assignment): Handle misaligned DECLs.
6139 (expand_expr_real_1): Handle FUNCTION_DECL as unaligned.
6140 * function.c (assign_parm_adjust_stack_rtl): Check movmisalign optab
6141 too.
6142 (assign_parm_setup_stack): Allocate properly aligned stack slots.
6143 * varasm.c (build_constant_desc): Align constants of misaligned types.
6144 * config/arm/predicates.md (aligned_operand): New predicate.
6145 * config/arm/arm.md (movdi, movsi, movhi, movhf, movsf, movdf): Use
6146 aligned_operand to check restrictions on memory addresses.
6147 * config/arm/neon.md (movti, mov<VSTRUCT>, mov<VH>): Likewise.
6148 * config/arm/vec-common.md (mov<VALL>): Likewise.
6149
6150 2019-08-28 Jakub Jelinek <jakub@redhat.com>
6151
6152 PR libgomp/91530
6153 * config/i386/sse.md (vec_shl_<mode>, vec_shr_<mode>): Use
6154 V_128 iterator instead of VI_128.
6155
6156 2019-08-28 Martin Liska <mliska@suse.cz>
6157
6158 PR tree-optimization/90970
6159 * builtins.c (check_access): Remove assignment to maxread
6160 as it hasn't been used since when it was introduced in r255755.
6161
6162 2019-08-27 Martin Sebor <msebor@redhat.com>
6163
6164 PR tree-optimization/91567
6165 * gimple-ssa-sprintf.c (get_string_length): Handle more forms of lengths
6166 of unknown strings.
6167 * vr-values.c (vr_values::extract_range_basic): Set strlen upper bound
6168 to PTRDIFF_MAX - 2.
6169
6170 2019-08-27 Jeff Law <law@redhat.com>
6171
6172 * tree-ssa-strlen.c (printf_strlen_execute): Initialize
6173 the loop optimizer and SCEV before sizing ssa_ver_to_stridx.
6174
6175 2019-08-27 Uroš Bizjak <ubizjak@gmail.com>
6176
6177 PR target/91528
6178 * config/i386/i386-features.c (convert_scalars_to_vector):
6179 Update crtl->stack_realign_needed, crtl->stack_realign_tried and
6180 crtl->stack_realign_processed. Update crtl->drap_reg by calling
6181 targetm.calls.get_drap_rtx. If drap_rtx is non-null then
6182 Update crtl->args.internal_arg_pointer and call fixup_tail_calls.
6183
6184 2019-08-27 Richard Biener <rguenther@suse.de>
6185
6186 * config/i386/i386-features.h
6187 (general_scalar_chain::~general_scalar_chain): Add.
6188 (general_scalar_chain::insns_conv): New bitmap.
6189 (general_scalar_chain::n_sse_to_integer): New.
6190 (general_scalar_chain::n_integer_to_sse): Likewise.
6191 (general_scalar_chain::make_vector_copies): Adjust signature.
6192 * config/i386/i386-features.c
6193 (general_scalar_chain::general_scalar_chain): Outline,
6194 initialize new members.
6195 (general_scalar_chain::~general_scalar_chain): New.
6196 (general_scalar_chain::mark_dual_mode_def): Record insns
6197 we need to insert conversions at and count them.
6198 (general_scalar_chain::compute_convert_gain): Account
6199 for conversion instructions at chain boundary.
6200 (general_scalar_chain::make_vector_copies): Generate a single
6201 copy for a def by a specific insn.
6202 (general_scalar_chain::convert_registers): First populate
6203 defs_map, then make copies at out-of chain insns.
6204
6205 2019-08-27 Richard Earnshaw <rearnsha@arm.com>
6206
6207 * config/arm/arm.md (stack_protect_set_insn): Add security-related
6208 comment.
6209 * config/aarch64/aarch64.md (stack_protect_set_<mode>): Likewise.
6210
6211 2019-08-27 Martin Liska <mliska@suse.cz>
6212
6213 * cgraph.c (cgraph_node::remove): Remove dead assignment before
6214 loop.
6215 * config/i386/i386-features.c (scalar_chain::emit_conversion_insns):
6216 Enclose in anonymous namespace.
6217 * config/i386/x86-tune-costs.h (struct processor_costs): Wrap
6218 hard_register initialization in braces.
6219 * tree-vrp.h (value_range_base::supports_type_p): Return false
6220 for function with boolean return type.
6221
6222 2019-08-26 Uroš Bizjak <ubizjak@gmail.com>
6223
6224 * config/i386/i386.c (emit_i387_cw_initialization)
6225 <case I387_CW_ROUNDEVEN>: Fix masking operand value.
6226
6227 2019-08-26 Martin Sebor <msebor@redhat.com>
6228
6229 PR c++/83431
6230 * gimple-ssa-sprintf.c (pass_data_sprintf_length): Remove object.
6231 (sprintf_dom_walker): Remove class.
6232 (get_int_range): Make argument const.
6233 (directive::fmtfunc, directive::set_precision): Same.
6234 (format_none): Same.
6235 (build_intmax_type_nodes): Same.
6236 (adjust_range_for_overflow): Same.
6237 (format_floating): Same.
6238 (format_character): Same.
6239 (format_string): Same.
6240 (format_plain): Same.
6241 (get_int_range): Cast away constness.
6242 (format_integer): Same.
6243 (get_string_length): Call get_range_strlen_dynamic. Handle
6244 null lendata.maxbound.
6245 (should_warn_p): Adjust argument scope qualifier.
6246 (maybe_warn): Same.
6247 (format_directive): Same.
6248 (parse_directive): Same.
6249 (is_call_safe): Same.
6250 (try_substitute_return_value): Same.
6251 (sprintf_dom_walker::handle_printf_call): Rename...
6252 (handle_printf_call): ...to this. Initialize target to host charmap
6253 here instead of in pass_sprintf_length::execute.
6254 (struct call_info): Make global.
6255 (sprintf_dom_walker::compute_format_length): Make global.
6256 (sprintf_dom_walker::handle_gimple_call): Same.
6257 * passes.def (pass_sprintf_length): Replace with pass_strlen.
6258 * print-rtl.c (print_pattern): Reduce the number of spaces to
6259 avoid -Wformat-truncation.
6260 * tree-pass.h (make_pass_warn_printf): New function.
6261 * tree-ssa-strlen.c (strlen_optimize): New variable.
6262 (get_string_length): Add comments.
6263 (get_range_strlen_dynamic): New function.
6264 (check_and_optimize_call): New function.
6265 (handle_integral_assign): New function.
6266 (strlen_check_and_optimize_stmt): Factor code out into
6267 strlen_check_and_optimize_call and handle_integral_assign.
6268 (strlen_dom_walker::evrp): New member.
6269 (strlen_dom_walker::before_dom_children): Use evrp member.
6270 (strlen_dom_walker::after_dom_children): Use evrp member.
6271 (printf_strlen_execute): New function.
6272 (pass_strlen::gate): Update to handle printf calls.
6273 (dump_strlen_info): New function.
6274 (pass_data_warn_printf): New variable.
6275 (pass_warn_printf): New class.
6276 * tree-ssa-strlen.h (get_range_strlen_dynamic): Declare.
6277 (handle_printf_call): Same.
6278 * tree-vrp.c (value_range_base::type): Adjust assertion.
6279 * vr-values.c (vr_values::update_value_range): Use type of the first
6280 argument rather than the second.
6281
6282 2019-08-26 Richard Biener <rguenther@suse.de>
6283
6284 * config/i386/i386-features.c (general_remove_non_convertible_regs):
6285 Remove.
6286 (convert_scalars_to_vector): Do not call it.
6287
6288 2019-08-26 Tejas Joshi <tejasjoshi9673@gmail.com>
6289 Uros Bizjak <ubizjak@gmail.com>
6290
6291 * builtins.c (mathfn_built_in_2): Change CASE_MATHFN to
6292 CASE_MATHFN_FLOATN for roundeven.
6293 * config/i386/i386.c (ix86_i387_mode_needed): Add case
6294 I387_ROUNDEVEN.
6295 (ix86_mode_needed): Likewise.
6296 (ix86_mode_after): Likewise.
6297 (ix86_mode_entry): Likewise.
6298 (ix86_mode_exit): Likewise.
6299 (ix86_emit_mode_set): Likewise.
6300 (emit_i387_cw_initialization): Add case I387_CW_ROUNDEVEN.
6301 * config/i386/i386.h (ix86_stack_slot): Add SLOT_CW_ROUNDEVEN.
6302 (ix86_entity): Add I387_ROUNDEVEN.
6303 (NUM_MODES_FOR_MODE_SWITCHING): Add I387_CW_ANY.
6304 * config/i386/i386.md: Define UNSPEC_FRNDINT_ROUNDEVEN.
6305 (define_int_iterator): Likewise.
6306 (define_int_attr): Likewise for rounding_insn, rounding and ROUNDING.
6307 (define_constant): Define ROUND_ROUNDEVEN mode.
6308 (define_attr): Add roundeven mode for i387_cw.
6309 (<rouding_insn><mode>2): Add condition for ROUND_ROUNDEVEN.
6310 * internal-fn.def (ROUNDEVEN): New builtin function.
6311 * optabs.def (roundeven_optab): New optab.
6312
6313 2019-08-26 Tejas Joshi <tejasjoshi9673@gmail.com>
6314
6315 * builtins.c (mathfn_built_in_2): Added CASE_MATHFN_FLOATN
6316 for ROUNDEVEN.
6317 * builtins.def: Added function definitions for roundeven function
6318 variants.
6319 * fold-const-call.c (fold_const_call_ss): Added case for roundeven
6320 function call. Adjust condition for floor, ceil, trunc and round.
6321 * fold-const.c (negate_mathfn_p): Added case for roundeven function.
6322 (tree_call_nonnegative_warnv_p): Added case for roundeven function.
6323 (integer_valued_real_call_p): Added case for roundeven function.
6324 * real.c (is_even): New function. Returns true if real number is even,
6325 otherwise returns false.
6326 (is_halfway_below): New function. Returns true if real number is
6327 halfway between two integers, else return false.
6328 (real_roundeven): New function. Round real number to nearest integer,
6329 rounding halfway cases towards even.
6330 * real.h (real_value): Added descriptive comments. Added function
6331 declaration for roundeven function.
6332 * doc/extend.texi (Other Builtins): List roundeven variants among
6333 functions which can be handled as builtins.
6334
6335 2019-08-26 Richard Biener <rguenther@suse.de>
6336
6337 PR target/91522
6338 PR target/91527
6339 * config/i386/i386-features.h (general_scalar_chain::defs_map):
6340 New member.
6341 (general_scalar_chain::replace_with_subreg): Remove.
6342 (general_scalar_chain::replace_with_subreg_in_insn): Likewise.
6343 (general_scalar_chain::convert_reg): Adjust signature.
6344 * config/i386/i386-features.c (scalar_chain::add_insn): Do not
6345 iterate over all defs of a reg.
6346 (general_scalar_chain::replace_with_subreg): Remove.
6347 (general_scalar_chain::replace_with_subreg_in_insn): Likewise.
6348 (general_scalar_chain::make_vector_copies): Populate defs_map,
6349 place copy only after defs that are used as vectors in the chain.
6350 (general_scalar_chain::convert_reg): Emit a copy for a specific
6351 def in a specific instruction.
6352 (general_scalar_chain::convert_op): All reg uses are converted here.
6353 (general_scalar_chain::convert_insn): Emit copies for scalar
6354 uses of defs here. Replace uses with the copies we created.
6355 Replace and convert the def. Adjust REG_DEAD notes, remove
6356 REG_EQUIV/EQUAL notes.
6357 (general_scalar_chain::convert_registers): Only handle copies
6358 into the chain here.
6359
6360 2019-08-26 Robin Dapp <rdapp@linux.ibm.com>
6361
6362 * match.pd: Add (T)(A) + CST -> (T)(A + CST).
6363
6364 2019-08-26 Robin Dapp <rdapp@linux.ibm.com>
6365
6366 * gimple-loop-versioning.cc (loop_versioning::record_address_fragment):
6367 Add nop_convert case.
6368 * tree-ssa-propagate.c (substitute_and_fold_dom_walker::before_dom_children):
6369 Fold all statements if requested.
6370 * tree-ssa-propagate.h (class substitute_and_fold_engine):
6371 Allow to fold all statements.
6372 * tree-vrp.c (class vrp_folder):
6373 Let substitute_and_fold_engine fold all statements.
6374
6375 2019-08-26 Richard Biener <rguenther@suse.de>
6376
6377 PR tree-optimization/91526
6378 * passes.def: Note that after late FRE we do TODO_update_address_taken.
6379 * tree-ssa-sccvn.c (pass_fre::execute): In late mode schedule
6380 TODO_update_address_taken.
6381
6382 2019-08-26 Gerald Pfeifer <gerald@pfeifer.com>
6383
6384 * config/i386/gmm_malloc.h: Only use <errno.h> and errno if
6385 __STDC_HOSTED__.
6386
6387 2019-08-23 Mihailo Stojanovic <mistojanovic@wavecomp.com>
6388
6389 * config/mips/mips.md (mips_get_fcsr, *mips_get_fcsr): Use SI
6390 machine mode for unspec_volatile operand.
6391
6392 2019-08-23 Wilco Dijkstra <wdijkstr@arm.com>
6393
6394 * gcc/doc/invoke.texi (mneon-for-64bits): Deprecate option.
6395 * gcc/config/arm/arm.opt (mneon-for-64bits): Deprecate option.
6396 * gcc/config/arm/arm.h (TARGET_PREFER_NEON_64BITS): Remove.
6397 (prefer_neon_for_64bits): Remove.
6398 * gcc/config/arm/arm.c (prefer_neon_for_64bits): Remove.
6399 (tune_params): Remove PREF_NEON_64_FALSE uses.
6400 (arm_option_override): Remove prefer_neon selection code.
6401 (arm_print_tune_info): Remove prefer_neon_for_64bits.
6402 * gcc/config/arm/arm-protos.h (tune_params): Remove
6403 prefer_neon_for_64bits.
6404 (prefer_neon_for_64bits): Remove.
6405
6406 2019-08-23 Iain Sandoe <iain@sandoe.co.uk>
6407
6408 PR pch/61250
6409 * ggc-page.c (ggc_pch_read): Read the ggc_pch_ondisk structure
6410 and issue any diagnostics needed before collecting the pre-PCH
6411 state.
6412
6413 2019-08-23 Jakub Jelinek <jakub@redhat.com>
6414
6415 PR middle-end/91283
6416 * common.opt (fexcess-precision=): Add Optimization flag. Use
6417 flag_excess_precision variable instead of
6418 flag_excess_precision_cmdline.
6419 * flags.h (class target_flag_state): Remove x_flag_excess_precision
6420 member.
6421 (flag_excess_precision): Don't define.
6422 * langhooks.c (lhd_post_options): Set flag_excess_precision instead of
6423 flag_excess_precision_cmdline. Remove comment.
6424 * opts.c (set_fast_math_flags): Use frontend_set_flag_excess_precision
6425 and x_flag_excess_precision instead of
6426 frontend_set_flag_excess_precision_cmdline and
6427 x_flag_excess_precision_cmdline.
6428 (fast_math_flags_set_p): Use x_flag_excess_precision instead of
6429 x_flag_excess_precision_cmdline.
6430 * toplev.c (init_excess_precision): Remove.
6431 (lang_dependent_init_target): Don't call it.
6432
6433 2019-08-23 Martin Liska <mliska@suse.cz>
6434
6435 * lto-wrapper.c (run_gcc): When setting jobserver
6436 set also parallel to 1. This was done so before r273908.
6437
6438 2019-08-23 Dennis Zhang <dennis.zhang@arm.com>
6439
6440 * config/arm/arm-cpus.in (cortex-m35p): New entry.
6441 (cortex-a76ae): Likewise.
6442 (cortex-a77): Likewise
6443 * config/arm/arm-tables.opt: Regenerate.
6444 * config/arm/arm-tune.md: Likewise.
6445 * doc/invoke.texi (ARM Options): Document cortex-m35p, cortx-a76ae,
6446 cortex-a77 CPU options.
6447
6448 2019-08-23 Martin Liska <mliska@suse.cz>
6449
6450 * profile.c (instrument_values): Do not set
6451 0 as last argument.
6452 * tree-profile.c (gimple_gen_interval_profiler): Remove
6453 last argument.
6454 (gimple_gen_pow2_profiler): Likewise.
6455 (gimple_gen_topn_values_profiler): Likewise.
6456 (gimple_gen_ic_profiler): Likewise.
6457 (gimple_gen_time_profiler): Likewise.
6458 (gimple_gen_average_profiler): Likewise.
6459 (gimple_gen_ior_profiler): Likewise.
6460 * value-prof.c (dump_histogram_value): Use default
6461 in switch statement instead of HIST_TYPE_MAX.
6462 (stream_in_histogram_value): Likewise.
6463 (gimple_duplicate_stmt_histograms): Do not
6464 use NULL for implicitly set arguments.
6465 (gimple_divmod_values_to_profile): Do not use
6466 reserve+quick_push.
6467 (gimple_indirect_call_to_profile): Likewise.
6468 (gimple_find_values_to_profile): Use implicit
6469 function call arguments.
6470 * value-prof.h (gimple_alloc_histogram_value):
6471 Set default values.
6472 (gimple_gen_interval_profiler): Remove last argument.
6473 (gimple_gen_pow2_profiler): Likewise.
6474 (gimple_gen_topn_values_profiler): Likewise.
6475 (gimple_gen_ic_profiler): Likewise.
6476 (gimple_gen_time_profiler): Likewise.
6477 (gimple_gen_average_profiler): Likewise.
6478 (gimple_gen_ior_profiler): Likewise.
6479
6480 2019-08-22 Martin Sebor <msebor@redhat.com>
6481
6482 PR middle-end/91490
6483 * builtins.c (c_strlen): Rename argument and introduce new local.
6484 Set no-warning bit on original argument.
6485 * expr.c (string_constant): Pass argument type to fold_ctor_reference.
6486 Fold empty and zero constructors into empty strings.
6487 * gimple-fold.c (fold_nonarray_ctor_reference): Return a STRING_CST
6488 for missing initializers.
6489 * tree.c (build_string_literal): Handle optional argument.
6490 * tree.h (build_string_literal): Add defaulted argument.
6491 * gimple-ssa-warn-restrict.c (maybe_diag_access_bounds): Check
6492 no-warning bit on original expression.
6493
6494 2019-08-22 Segher Boessenkool <segher@kernel.crashing.org>
6495
6496 PR target/91481
6497 * config/rs6000/rs6000.md (unspec): Delete UNSPEC_DARN, UNSPEC_DARN_32,
6498 and UNSPEC_DARN_RAW.
6499 (unspecv): New enumerator values UNSPECV_DARN, UNSPECV_DARN_32, and
6500 UNSPECV_DARN_RAW.
6501 (darn_32): Use an unspec_volatile, and UNSPECV_DARN_32.
6502 (darn_raw): Use an unspec_volatile, and UNSPECV_DARN_RAW.
6503 (darn): Use an unspec_volatile, and UNSPECV_DARN.
6504
6505 2019-08-22 Segher Boessenkool <segher@kernel.crashing.org>
6506
6507 * config/rs6000/altivec.md (unspec): Delete UNSPEC_DARN, UNSPEC_DARN_32,
6508 UNSPEC_DARN_RAW, UNSPEC_CMPRB, UNSPEC_CMPRB2, UNSPEC_CMPEQB; move to...
6509 * config/rs6000/rs6000.md (unspec): ... here.
6510 * config/rs6000/altivec.md (darn_32, darn_raw, darn, cmprb,
6511 *cmprb_internal, setb_signed, setb_unsigned, cmprb2, *cmprb2_internal,
6512 cmpeqb, *cmpeqb_internal): Delete, move to...
6513 * config/rs6000/rs6000.md (darn_32, darn_raw, darn, cmprb,
6514 *cmprb_internal, setb_signed, setb_unsigned, cmprb2, *cmprb2_internal,
6515 cmpeqb, *cmpeqb_internal): ... here.
6516
6517 2019-08-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
6518
6519 * config/arm/arm_acle.h: Use arch=armv8-a+crc+simd pragma for CRC32
6520 intrinsics if __ARM_FP.
6521 Use __ARM_FEATURE_CRC32 ifdef guard.
6522
6523 2019-08-22 Wilco Dijkstra <wdijkstr@arm.com>
6524
6525 * config/arm/arm.md (neon_for_64bits): Remove.
6526 (avoid_neon_for_64bits): Remove.
6527 (arm_adddi3): Always split early.
6528 (arm_subdi3): Always split early.
6529 (negdi2): Remove Neon expansion.
6530 (split zero_extend): Split before reload.
6531 (split sign_extend): Split before reload.
6532
6533 2019-08-22 Wilco Dijkstra <wdijkstr@arm.com>
6534
6535 * config/arm/iterators.md (qhs_extenddi_cstr): Update.
6536 (qhs_extenddi_cstr): Likewise.
6537 * config/arm/arm.md (ashldi3): Always expand early.
6538 (ashlsi3): Likewise.
6539 (ashrsi3): Likewise.
6540 (zero_extend<mode>di2): Remove Neon variants.
6541 (extend<mode>di2): Likewise.
6542 * config/arm/neon.md (ashldi3_neon_noclobber): Remove.
6543 (signed_shift_di3_neon): Likewise.
6544 (unsigned_shift_di3_neon): Likewise.
6545 (ashrdi3_neon_imm_noclobber): Likewise.
6546 (lshrdi3_neon_imm_noclobber): Likewise.
6547 (<shift>di3_neon): Likewise.
6548 (split extend): Remove DI extend split patterns.
6549
6550 2019-08-22 Wilco Dijkstra <wdijkstr@arm.com>
6551
6552 * config/arm/arm.md (split and/eor/ior): Remove Neon check.
6553 (split not): Add DImode not splitter.
6554 (anddi3): Remove pattern.
6555 (anddi3_insn): Likewise.
6556 (anddi_zesidi_di): Likewise.
6557 (anddi_sesdi_di): Likewise.
6558 (anddi_notdi_di): Likewise.
6559 (anddi_notzesidi_di): Likewise.
6560 (anddi_notsesidi_di): Likewise.
6561 (iordi3): Likewise.
6562 (iordi3_insn): Likewise.
6563 (iordi_zesidi_di): Likewise.
6564 (iordi_sesidi_di): Likewise.
6565 (xordi3): Likewise.
6566 (xordi3_insn): Likewise.
6567 (xordi_sesidi_di): Likewise.
6568 (xordi_zesidi_di): Likewise.
6569 (one_cmpldi2): Likewise.
6570 (one_cmpldi2_insn): Likewise.
6571 * config/arm/constraints.md: Remove De, Df, Dg constraints.
6572 * config/arm/iwmmxt.md (iwmmxt_iordi3): Remove general register
6573 alternative.
6574 (iwmmxt_xordi3): Likewise.
6575 (iwmmxt_anddi3): Likewise.
6576 * config/arm/neon.md (orndi3_neon): Remove pattern.
6577 (anddi_notdi_di): Likewise.
6578 * config/arm/predicates.md (arm_anddi_operand_neon): Remove.
6579 (arm_iordi_operand_neon): Likewise.
6580 (arm_xordi_operand_neon): Likewise.
6581 * config/arm/thumb2.md(iordi_notdi_di): Remove pattern.
6582 (iordi_notzesidi_di): Likewise.
6583 (iordi_notdi_zesidi): Likewise.
6584 (iordi_notsesidi_di): Likewise.
6585
6586 2019-08-22 Richard Earnshaw <rearnsha@arm.com>
6587
6588 * config/arm/arm.md (iorsi3_compare0): Add alternative for 16-bit thumb
6589 insn.
6590 (iorsi3_compare0_scratch): Likewise.
6591
6592 2019-08-22 Sylvia Taylor <sylvia.taylor@arm.com>
6593
6594 * config/aarch64/aarch64-simd-builtins.def:
6595 (ld1x4): New.
6596 (st1x4): Likewise.
6597 * config/aarch64/aarch64-simd.md:
6598 (aarch64_ld1x4<VALLDIF:mode>): New pattern.
6599 (aarch64_st1x4<VALLDIF:mode>): Likewise.
6600 (aarch64_ld1_x4_<mode>): Likewise.
6601 (aarch64_st1_x4_<mode>): Likewise.
6602 * config/aarch64/arm_neon.h:
6603 (vld1_s8_x4): New function.
6604 (vld1q_s8_x4): Likewise.
6605 (vld1_s16_x4): Likewise.
6606 (vld1q_s16_x4): Likewise.
6607 (vld1_s32_x4): Likewise.
6608 (vld1q_s32_x4): Likewise.
6609 (vld1_u8_x4): Likewise.
6610 (vld1q_u8_x4): Likewise.
6611 (vld1_u16_x4): Likewise.
6612 (vld1q_u16_x4): Likewise.
6613 (vld1_u32_x4): Likewise.
6614 (vld1q_u32_x4): Likewise.
6615 (vld1_f16_x4): Likewise.
6616 (vld1q_f16_x4): Likewise.
6617 (vld1_f32_x4): Likewise.
6618 (vld1q_f32_x4): Likewise.
6619 (vld1_p8_x4): Likewise.
6620 (vld1q_p8_x4): Likewise.
6621 (vld1_p16_x4): Likewise.
6622 (vld1q_p16_x4): Likewise.
6623 (vld1_s64_x4): Likewise.
6624 (vld1_u64_x4): Likewise.
6625 (vld1_p64_x4): Likewise.
6626 (vld1q_s64_x4): Likewise.
6627 (vld1q_u64_x4): Likewise.
6628 (vld1q_p64_x4): Likewise.
6629 (vld1_f64_x4): Likewise.
6630 (vld1q_f64_x4): Likewise.
6631 (vst1_s8_x4): Likewise.
6632 (vst1q_s8_x4): Likewise.
6633 (vst1_s16_x4): Likewise.
6634 (vst1q_s16_x4): Likewise.
6635 (vst1_s32_x4): Likewise.
6636 (vst1q_s32_x4): Likewise.
6637 (vst1_u8_x4): Likewise.
6638 (vst1q_u8_x4): Likewise.
6639 (vst1_u16_x4): Likewise.
6640 (vst1q_u16_x4): Likewise.
6641 (vst1_u32_x4): Likewise.
6642 (vst1q_u32_x4): Likewise.
6643 (vst1_f16_x4): Likewise.
6644 (vst1q_f16_x4): Likewise.
6645 (vst1_f32_x4): Likewise.
6646 (vst1q_f32_x4): Likewise.
6647 (vst1_p8_x4): Likewise.
6648 (vst1q_p8_x4): Likewise.
6649 (vst1_p16_x4): Likewise.
6650 (vst1q_p16_x4): Likewise.
6651 (vst1_s64_x4): Likewise.
6652 (vst1_u64_x4): Likewise.
6653 (vst1_p64_x4): Likewise.
6654 (vst1q_s64_x4): Likewise.
6655 (vst1q_u64_x4): Likewise.
6656 (vst1q_p64_x4): Likewise.
6657 (vst1_f64_x4): Likewise.
6658 (vst1q_f64_x4): Likewise.
6659
6660 2019-08-22 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
6661
6662 * config/aarch64/aarch64-sve.md (vcond_mask): Add "@".
6663
6664 2019-08-22 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
6665 Richard Sandiford <richard.sandiford@arm.com>
6666
6667 PR target/88839
6668 * config/aarch64/aarch64.c (aarch64_evpc_sel): New function.
6669 (aarch64_expand_vec_perm_const_1): Call aarch64_evpc_sel.
6670
6671 2019-08-21 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
6672
6673 PR target/90724
6674 * config/aarch64/aarch64.c (aarch64_gen_compare_reg_maybe_ze): Force y
6675 in reg if it fails aarch64_plus_operand predicate.
6676
6677 2019-08-21 Richard Biener <rguenther@suse.de>
6678
6679 PR tree-optimization/91482
6680 * tree-ssa-ccp.c (ccp_folder::fold_stmt): Remove useless
6681 BUILT_IN_ASSUME_ALIGNED calls.
6682
6683 2019-08-21 Richard Biener <rguenther@suse.de>
6684
6685 PR target/91498
6686 PR target/91503
6687 * config/i386/i386-features.c
6688 (general_scalar_chain::make_vector_copies): Copy stack temporary
6689 rtx when using it multiple times.
6690 (general_scalar_chain::convert_reg): Likewise.
6691
6692 2019-08-20 Bernd Edlinger <bernd.edlinger@hotmail.de>
6693
6694 * function.c (assign_parm_find_stack_rtl): Use known_eq instead of ==.
6695
6696 2019-08-20 Matthew Beliveau <mbelivea@redhat.com>
6697
6698 * tree-ssa-dse.c (dse_optimize_redundant_stores): Improved check to
6699 catch more redundant zero initialization cases.
6700 (dse_dom_walker::dse_optimize_stmt): Likewise.
6701
6702 2019-08-20 Richard Biener <rguenther@suse.de>
6703
6704 PR lto/91307
6705 * ipa.c (cgraph_build_static_cdtor_1): Use names not recognizable
6706 by collect2 when targetm.have_ctors_dtors which avoids dragging
6707 in temporary filenames from LTO input objects.
6708
6709 2019-08-20 Richard Biener <rguenther@suse.de>
6710
6711 PR tree-optimization/37242
6712 * tree-ssa-sccvn.c (visit_nary_op): Also CSE (T)(a + b)
6713 to (T)a + (T)b if we know that a + b does not overflow.
6714
6715 2019-08-20 Eric Botcazou <ebotcazou@adacore.com>
6716
6717 PR rtl-optimization/91347
6718 * dse.c (scan_insn): Call add_wild_read for non-const/memset tail calls
6719 before reload if HARD_FRAME_POINTER_IS_ARG_POINTER.
6720
6721 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
6722
6723 * calls.h (function_arg_info): Add a pass_by_reference field,
6724 defaulting to false.
6725 * calls.c (apply_pass_by_reference_rules): Set pass_by_reference
6726 when applying pass-by-reference semantics.
6727 (initialize_argument_information): Likewise.
6728 (emit_library_call_value_1): Likewise.
6729 * function.c (assign_parm_data_one): Remove passed_pointer field.
6730 (assign_parm_find_data_types): Don't set it.
6731 (assign_parm_find_stack_rtl, assign_parm_adjust_stack_rtl)
6732 (assign_parm_setup_reg, assign_parms, gimplify_parameters): Use
6733 arg.pass_by_reference instead of passed_pointer.
6734
6735 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
6736
6737 * calls.c (emit_library_call_value_1): Merge arg and orig_arg
6738 into a single function_arg_info, updating its fields when we
6739 apply pass-by-reference and promotion semantics. Use the
6740 function_arg_info to track the mode rather than keeping it in
6741 a separate local variable.
6742 (initialize_argument_information): Likewise. Base the final
6743 arg_to_skip on this new function_arg_info rather than creating
6744 a new one from scratch.
6745
6746 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
6747
6748 * function.c (assign_parm_data_one): Replace passed_type,
6749 promoted_mode and named_arg with a function_arg_info field.
6750 (assign_parm_find_data_types): Remove local variables and
6751 assign directly to "data". Make data->passed_mode shadow
6752 data->arg.mode until promotion, then assign the promoted
6753 mode to data->arg.mode.
6754 (assign_parms_setup_varargs, assign_parm_find_entry_rtl)
6755 (assign_parm_find_stack_rtl, assign_parm_adjust_entry_rtl)
6756 (assign_parm_remove_parallels, assign_parm_setup_block_p)
6757 (assign_parm_setup_block, assign_parm_setup_reg)
6758 (assign_parm_setup_stack, assign_parms, gimplify_parameters): Use
6759 arg.mode instead of promoted_mode, arg.type instead of passed_type
6760 and arg.named instead of named_arg. Use data->arg for
6761 function_arg_info structures that had the field values passed_type,
6762 promoted_mode and named_arg. Base other function_arg_infos on
6763 data->arg, changing the necessary properties.
6764
6765 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
6766
6767 * calls.h (apply_pass_by_reference_rules): Declare.
6768 * calls.c (apply_pass_by_reference_rules): New function.
6769 * config/c6x/c6x.c (c6x_call_saved_register_used): Use it.
6770 * config/rs6000/rs6000-call.c (rs6000_parm_needs_stack): Likewise.
6771 * config/s390/s390.c (s390_call_saved_register_used): Likewise.
6772 * function.c (assign_parm_find_data_types): Likewise.
6773 * var-tracking.c (prepare_call_arguments): Likewise.
6774
6775 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
6776
6777 * target.def (must_pass_in_stack): Take a function_arg_info instead
6778 of a mode and a type.
6779 * doc/tm.texi: Regenerate.
6780 * calls.h (must_pass_in_stack_var_size): Take a function_arg_info
6781 instead of a mode and a type.
6782 (must_pass_in_stack_var_size_or_pad): Likewise.
6783 * calls.c (must_pass_in_stack_var_size): Likewise.
6784 (must_pass_in_stack_var_size_or_pad): Likewise.
6785 (initialize_argument_information): Update call to
6786 targetm.calls.must_pass_in_stack.
6787 (must_pass_va_arg_on_stack): Likewise.
6788 * function.c (assign_parm_find_entry_rtl): Likewise.
6789 * targhooks.c (hook_pass_by_reference_must_pass_in_stack): Likewise.
6790 * config/alpha/alpha.c (alpha_function_arg): Likewise.
6791 (alpha_function_arg_advance): Likewise.
6792 * config/cr16/cr16.c (cr16_function_arg): Likewise.
6793 (cr16_function_arg_advance): Likewise.
6794 * config/cris/cris.c (cris_pass_by_reference): Likewise.
6795 (cris_arg_partial_bytes): Likewise.
6796 * config/iq2000/iq2000.c (iq2000_pass_by_reference): Likewise.
6797 * config/lm32/lm32.c (lm32_function_arg): Likewise.
6798 * config/mcore/mcore.c (mcore_num_arg_regs): Likewise.
6799 (mcore_function_arg, mcore_arg_partial_bytes): Likewise.
6800 * config/mips/mips.c (mips_pass_by_reference): Likewise.
6801 * config/mmix/mmix.c (mmix_function_arg_advance): Likewise.
6802 (mmix_function_arg_1, mmix_pass_by_reference): Likewise.
6803 * config/sh/sh.c (sh_pass_by_reference): Likewise.
6804 * config/stormy16/stormy16.c (xstormy16_function_arg): Likewise.
6805 * config/xtensa/xtensa.c (xtensa_function_arg_advance): Likewise.
6806 * config/arm/arm.c (arm_must_pass_in_stack): Take a function_arg_info
6807 instead of a mode and a type.
6808 * config/fr30/fr30.c (fr30_must_pass_in_stack): Likewise.
6809 (fr30_num_arg_regs): Likewise.
6810 (fr30_setup_incoming_varargs): Update calls accordingly.
6811 (fr30_arg_partial_bytes, fr30_function_arg): Likewise.
6812 (fr30_function_arg_advance): Likewise.
6813 * config/frv/frv.c (frv_must_pass_in_stack): Take a function_arg_info
6814 instead of a mode and a type.
6815 * config/gcn/gcn.c (num_arg_regs): Likewise.
6816 (gcn_function_arg, gcn_function_arg_advance): Update calls to
6817 num_arg_regs and targetm.calls.must_pass_in_stack.
6818 (gcn_arg_partial_bytes): Likewise.
6819 * config/i386/i386.c (ix86_must_pass_in_stack): Take a
6820 function_arg_info instead of a mode and a type.
6821 (classify_argument): Update call accordingly.
6822 * config/nds32/nds32.c (nds32_must_pass_in_stack): Take a
6823 function_arg_info instead of a mode and a type.
6824 * config/rs6000/rs6000-internal.h (rs6000_must_pass_in_stack):
6825 Likewise.
6826 * config/rs6000/rs6000-call.c (rs6000_must_pass_in_stack): Likewise.
6827 (rs6000_parm_needs_stack): Update call accordingly.
6828 (setup_incoming_varargs): Likewise.
6829
6830 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
6831
6832 * target.def (callee_copies): Take a function_arg_info instead
6833 of a mode, type and named flag.
6834 * doc/tm.texi: Regenerate.
6835 * targhooks.h (hook_callee_copies_named): Take a function_arg_info
6836 instead of a mode, type and named flag.
6837 (hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false): Delete.
6838 (hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true): Likewise.
6839 (hook_bool_CUMULATIVE_ARGS_arg_info_true): New function.
6840 * targhooks.c (hook_callee_copies_named): Take a function_arg_info
6841 instead of a mode, type and named flag.
6842 (hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false): Delete.
6843 (hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true): Likewise.
6844 (hook_bool_CUMULATIVE_ARGS_arg_info_true): New function.
6845 * calls.h (reference_callee_copied): Take a function_arg_info
6846 instead of a mode, type and named flag.
6847 * calls.c (reference_callee_copied): Likewise.
6848 (initialize_argument_information): Update call accordingly.
6849 (emit_library_call_value_1): Likewise.
6850 * function.c (gimplify_parameters): Likewise.
6851 * config/aarch64/aarch64.c (TARGET_CALLEE_COPIES): Define to
6852 hook_bool_CUMULATIVE_ARGS_arg_info_false instead of
6853 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false.
6854 * config/c6x/c6x.c (c6x_callee_copies): Delete.
6855 (TARGET_CALLEE_COPIES): Define to
6856 hook_bool_CUMULATIVE_ARGS_arg_info_true instead.
6857 * config/epiphany/epiphany.c (TARGET_CALLEE_COPIES): Define to
6858 hook_bool_CUMULATIVE_ARGS_arg_info_true instead of
6859 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true.
6860 * config/mips/mips.c (mips_callee_copies): Take a function_arg_info
6861 instead of a mode, type and named flag.
6862 * config/mmix/mmix.c (TARGET_CALLEE_COPIES): Define to
6863 hook_bool_CUMULATIVE_ARGS_arg_info_true instead of
6864 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true.
6865 * config/mn10300/mn10300.c (TARGET_CALLEE_COPIES): Likewise.
6866 * config/msp430/msp430.c (msp430_callee_copies): Delete.
6867 (TARGET_CALLEE_COPIES): Define to
6868 hook_bool_CUMULATIVE_ARGS_arg_info_true instead.
6869 * config/pa/pa.c (pa_callee_copies): Take a function_arg_info
6870 instead of a mode, type and named flag.
6871 * config/sh/sh.c (sh_callee_copies): Likewise.
6872 * config/v850/v850.c (TARGET_CALLEE_COPIES): Define to
6873 hook_bool_CUMULATIVE_ARGS_arg_info_true instead of
6874 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true.
6875
6876 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
6877
6878 * target.def (function_arg_advance): Take a function_arg_info instead
6879 of a mode, type and named flag.
6880 * doc/tm.texi: Regenerate.
6881 * targhooks.h (default_function_arg_advance): Take a function_arg_info
6882 instead of a mode, type and named flag.
6883 * targhooks.c (default_function_arg_advance): Likewise.
6884 * calls.c (initialize_argument_information): Update call to
6885 targetm.calls.function_arg_advance.
6886 (emit_library_call_value_1): Likewise.
6887 * dse.c (get_call_args): Likewise.
6888 * expr.c (block_move_libcall_safe_for_call_parm): Likewise.
6889 * function.c (assign_parms, gimplify_parameters): Likewise.
6890 * var-tracking.c (prepare_call_arguments): Likewise.
6891 * config/aarch64/aarch64.c (aarch64_function_arg_advance): Take a
6892 function_arg_info instead of a mode, type and named flag.
6893 (aarch64_setup_incoming_varargs): Update call accordingly.
6894 * config/alpha/alpha.c (alpha_function_arg_advance): Take a
6895 function_arg_info instead of a mode, type and named flag.
6896 (alpha_setup_incoming_varargs): Update call accordingly.
6897 * config/arc/arc.c (arc_function_arg_advance): Take a
6898 function_arg_info instead of a mode, type and named flag.
6899 (arc_setup_incoming_varargs): Update call accordingly.
6900 * config/arm/arm.c (arm_function_arg_advance): Take a
6901 function_arg_info instead of a mode, type and named flag.
6902 (cmse_func_args_or_return_in_stack): Update call accordingly.
6903 (arm_function_ok_for_sibcall): Likewise.
6904 (cmse_nonsecure_call_clear_caller_saved): Likewise.
6905 * config/avr/avr.c (avr_function_arg_advance): Take a
6906 function_arg_info instead of a mode, type and named flag.
6907 * config/bfin/bfin.c (bfin_function_arg_advance): Likewise.
6908 * config/c6x/c6x.c (c6x_function_arg_advance): Likewise.
6909 (c6x_call_saved_register_used): Update call accordingly.
6910 * config/cr16/cr16.c (cr16_function_arg_advance): Take a
6911 function_arg_info instead of a mode, type and named flag.
6912 * config/cris/cris.c (cris_function_arg_advance): Likewise.
6913 * config/csky/csky.c (csky_function_arg_advance): Likewise.
6914 (csky_setup_incoming_varargs): Update call accordingly.
6915 * config/epiphany/epiphany.c (epiphany_function_arg_advance): Take a
6916 function_arg_info instead of a mode, type and named flag.
6917 * config/fr30/fr30.c (fr30_function_arg_advance): Likewise.
6918 * config/frv/frv.c (frv_function_arg_advance): Likewise.
6919 * config/ft32/ft32.c (ft32_function_arg_advance): Likewise.
6920 * config/gcn/gcn.c (gcn_function_arg_advance): Likewise.
6921 * config/h8300/h8300.c (h8300_function_arg_advance): Likewise.
6922 * config/i386/i386.c (ix86_function_arg_advance): Likewise.
6923 (ix86_setup_incoming_varargs): Update call accordingly.
6924 * config/ia64/ia64.c (ia64_function_arg_advance): Take a
6925 function_arg_info instead of a mode, type and named flag.
6926 (ia64_setup_incoming_varargs): Update call accordingly.
6927 * config/iq2000/iq2000.c (iq2000_function_arg_advance): Take a
6928 function_arg_info instead of a mode, type and named flag.
6929 (iq2000_expand_prologue): Update call accordingly.
6930 * config/lm32/lm32.c (lm32_function_arg_advance): Take a
6931 function_arg_info instead of a mode, type and named flag.
6932 * config/m32c/m32c.c (m32c_function_arg_advance): Likewise.
6933 * config/m32r/m32r.c (m32r_function_arg_advance): Likewise.
6934 * config/m68k/m68k.c (m68k_function_arg_advance): Likewise.
6935 * config/mcore/mcore.c (mcore_function_arg_advance): Likewise.
6936 * config/microblaze/microblaze.c (microblaze_function_arg_advance):
6937 Likewise.
6938 (microblaze_expand_prologue): Update call accordingly.
6939 * config/mips/mips.c (mips_function_arg_advance): Take a
6940 function_arg_info instead of a mode, type and named flag.
6941 (mips_setup_incoming_varargs): Update call accordingly.
6942 (mips_output_args_xfer): Likewise.
6943 * config/mmix/mmix.c (mmix_function_arg_advance): Take a
6944 function_arg_info instead of a mode, type and named flag.
6945 * config/mn10300/mn10300.c (mn10300_function_arg_advance): Likewise.
6946 * config/moxie/moxie.c (moxie_function_arg_advance): Likewise.
6947 * config/msp430/msp430.c (msp430_function_arg_advance): Likewise.
6948 * config/nds32/nds32.c (nds32_function_arg_advance): Likewise.
6949 * config/nios2/nios2.c (nios2_function_arg_advance): Likewise.
6950 (nios2_setup_incoming_varargs): Update call accordingly.
6951 * config/nvptx/nvptx.c (nvptx_function_arg_advance): Take a
6952 function_arg_info instead of a mode, type and named flag.
6953 * config/or1k/or1k.c (or1k_function_arg_advance): Likewise.
6954 * config/pa/pa.c (pa_function_arg_advance): Likewise.
6955 * config/pdp11/pdp11.c (pdp11_function_arg_advance): Likewise.
6956 * config/pru/pru.c (pru_function_arg_advance): Likewise.
6957 * config/riscv/riscv.c (riscv_function_arg_advance): Likewise.
6958 (riscv_setup_incoming_varargs): Update call accordingly.
6959 * config/rl78/rl78.c (rl78_function_arg_advance): Take a
6960 function_arg_info instead of a mode, type and named flag.
6961 * config/rs6000/rs6000-internal.h (rs6000_function_arg_advance):
6962 Likewise.
6963 * config/rs6000/rs6000-call.c (rs6000_function_arg_advance): Likewise.
6964 (rs6000_parm_needs_stack): Update call accordingly.
6965 * config/rx/rx.c (rx_function_arg_advance): Take a function_arg_info
6966 instead of a mode, type and named flag.
6967 * config/s390/s390.c (s390_function_arg_advance): Likewise.
6968 (s390_call_saved_register_used): Update call accordingly.
6969 * config/sh/sh.c (sh_function_arg_advance): Take a function_arg_info
6970 instead of a mode, type and named flag.
6971 (sh_output_mi_thunk): Update call accordingly.
6972 * config/sparc/sparc.c (sparc_function_arg_advance): Take a
6973 function_arg_info instead of a mode, type and named flag.
6974 * config/spu/spu.c (spu_function_arg_advance): Likewise.
6975 (spu_setup_incoming_varargs): Update call accordingly.
6976 * config/stormy16/stormy16.c (xstormy16_function_arg_advance): Take a
6977 function_arg_info instead of a mode, type and named flag.
6978 * config/tilegx/tilegx.c (tilegx_function_arg_advance): Likewise.
6979 (tilegx_setup_incoming_varargs): Update call accordingly.
6980 * config/tilepro/tilepro.c (tilepro_function_arg_advance): Take a
6981 function_arg_info instead of a mode, type and named flag.
6982 (tilegx_setup_incoming_varargs): Update call accordingly.
6983 * config/v850/v850.c (v850_function_arg_advance): Take a
6984 function_arg_info instead of a mode, type and named flag.
6985 * config/vax/vax.c (vax_function_arg_advance): Likewise.
6986 * config/visium/visium.c (visium_function_arg_advance): Likewise.
6987 (visium_setup_incoming_varargs): Update call accordingly.
6988 * config/xtensa/xtensa.c (xtensa_function_arg_advance): Take a
6989 function_arg_info instead of a mode, type and named flag.
6990
6991 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
6992
6993 * target.def (function_arg, function_incoming_arg): Take a
6994 function_arg_info instead of a mode, tree and named flag.
6995 * doc/tm.texi: Regenerate.
6996 * targhooks.h (default_function_arg): Take a function_arg_info
6997 instead of a mode, tree and named flag.
6998 (default_function_incoming_arg): Likewise.
6999 * targhooks.c (default_function_arg): Likewise.
7000 (default_function_incoming_arg): Likewise.
7001 * calls.h (function_arg_info::end_marker_p): New function.
7002 (function_arg_info::end_marker): Likewise.
7003 * calls.c (prepare_call_address, initialize_argument_information)
7004 (expand_call, emit_library_call_value_1): Update calls to
7005 targetm.calls.function_arg and targetm.calls.function_incoming_arg.
7006 * dse.c: Include calls.h.
7007 (get_call_args): Update call to targetm.calls.function_arg.
7008 * expr.c (block_move_libcall_safe_for_call_parm): Likewise.
7009 * var-tracking.c (prepare_call_arguments): Likewise.
7010 * function.c (assign_parm_find_entry_rtl): Update call to
7011 targetm.calls.function_incoming_arg.
7012 * config/aarch64/aarch64.c (aarch64_function_arg): Take a
7013 function_arg_info instead of a mode, tree and named flag.
7014 * config/alpha/alpha.c (alpha_function_arg): Likewise.
7015 * config/arc/arc.c (arc_function_arg): Likewise.
7016 * config/arm/arm.c (arm_function_arg): Likewise.
7017 (cmse_func_args_or_return_in_stack): Update call accordingly.
7018 (arm_function_ok_for_sibcall): Likewise.
7019 (cmse_nonsecure_call_clear_caller_saved): Likewise.
7020 * config/avr/avr.c (avr_function_arg): Take a function_arg_info
7021 instead of a mode, tree and named flag.
7022 * config/bfin/bfin.c (bfin_function_arg): Likewise.
7023 * config/c6x/c6x.c (c6x_function_arg): Likewise.
7024 (c6x_call_saved_register_used): Update call accordingly.
7025 * config/cr16/cr16.c (cr16_function_arg): Take a function_arg_info
7026 instead of a mode, tree and named flag.
7027 * config/cris/cris.c (cris_function_arg, cris_function_incoming_arg)
7028 (cris_function_arg_1): Likewise.
7029 * config/csky/csky.c (csky_function_arg): Likewise.
7030 * config/epiphany/epiphany.c (epiphany_function_arg): Likewise.
7031 * config/fr30/fr30.c (fr30_function_arg): Likewise.
7032 * config/frv/frv.c (frv_function_arg, frv_function_incoming_arg)
7033 (frv_function_arg_1): Likewise.
7034 * config/ft32/ft32.c (ft32_function_arg): Likewise.
7035 * config/gcn/gcn.c (gcn_function_arg): Likewise.
7036 * config/h8300/h8300.c (h8300_function_arg): Likewise.
7037 * config/i386/i386.c (ix86_function_arg): Likewise.
7038 * config/ia64/ia64.c (ia64_function_arg, ia64_function_incoming_arg)
7039 (ia64_function_arg_1): Likewise.
7040 * config/iq2000/iq2000.c (iq2000_function_arg): Likewise.
7041 (iq2000_expand_prologue, iq2000_pass_by_reference): Update call
7042 accordingly.
7043 * config/lm32/lm32.c (lm32_function_arg): Take a function_arg_info
7044 instead of a mode, tree and named flag.
7045 * config/m32c/m32c.c (m32c_function_arg): Likewise.
7046 * config/m32r/m32r.c (m32r_function_arg): Likewise.
7047 * config/m68k/m68k.c (m68k_function_arg): Likewise.
7048 * config/mcore/mcore.c (mcore_function_arg): Likewise.
7049 * config/microblaze/microblaze.c (microblaze_function_arg): Likewise.
7050 (microblaze_expand_prologue): Update call accordingly.
7051 * config/mips/mips.c (mips_function_arg): Take a function_arg_info
7052 instead of a mode, tree and named flag.
7053 * config/mmix/mmix.c (mmix_function_incoming_arg, mmix_function_arg)
7054 (mmix_function_arg_1): Likewise.
7055 * config/mn10300/mn10300.c (mn10300_function_arg): Likewise.
7056 * config/moxie/moxie.c (moxie_function_arg): Likewise.
7057 * config/msp430/msp430.c (msp430_function_arg): Likewise.
7058 * config/nds32/nds32.c (nds32_function_arg): Likewise.
7059 * config/nios2/nios2.c (nios2_function_arg): Likewise.
7060 * config/nvptx/nvptx.c (nvptx_function_arg): Likewise.
7061 (nvptx_function_incoming_arg): Likewise.
7062 * config/or1k/or1k.c (or1k_function_arg): Likewise.
7063 * config/pa/pa.c (pa_function_arg): Likewise.
7064 * config/pdp11/pdp11.c (pdp11_function_arg): Likewise.
7065 * config/pru/pru.c (pru_function_arg): Likewise.
7066 * config/riscv/riscv.c (riscv_function_arg): Likewise.
7067 * config/rl78/rl78.c (rl78_function_arg): Likewise.
7068 * config/rs6000/rs6000-internal.h (rs6000_function_arg): Likewise.
7069 * config/rs6000/rs6000-call.c (rs6000_function_arg): Likewise.
7070 (rs6000_parm_needs_stack): Update call accordingly.
7071 * config/rx/rx.c (rx_function_arg): Take a function_arg_info
7072 instead of a mode, tree and named flag.
7073 * config/s390/s390.c (s390_function_arg): Likewise.
7074 (s390_call_saved_register_used): Update call accordingly.
7075 * config/sh/sh.c (sh_function_arg): Take a function_arg_info
7076 instead of a mode, tree and named flag.
7077 (sh_output_mi_thunk): Update call accordingly.
7078 * config/sparc/sparc.c (sparc_function_arg_1, sparc_function_arg)
7079 (sparc_function_incoming_arg): Take a function_arg_info instead of
7080 a mode, tree and named flag.
7081 * config/spu/spu.c (spu_function_arg): Likewise.
7082 * config/stormy16/stormy16.c (xstormy16_function_arg): Likewise.
7083 * config/tilegx/tilegx.c (tilegx_function_arg): Likewise.
7084 * config/tilepro/tilepro.c (tilepro_function_arg): Likewise.
7085 * config/v850/v850.c (v850_function_arg): Likewise.
7086 * config/vax/vax.c (vax_function_arg): Likewise.
7087 * config/visium/visium.c (visium_function_arg): Likewise.
7088 * config/xtensa/xtensa.c (xtensa_function_arg_1, xtensa_function_arg)
7089 (xtensa_function_incoming_arg): Likewise.
7090
7091 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
7092
7093 * target.def (setup_incoming_varargs): Take a function_arg_info
7094 instead of a mode and tree.
7095 * doc/tm.texi: Regenerate.
7096 * targhooks.h (default_setup_incoming_varargs): Take a
7097 function_arg_info instead of a mode and tree.
7098 * targhooks.c (default_setup_incoming_varargs): Likewise.
7099 * config/aarch64/aarch64.c (aarch64_setup_incoming_varargs): Likewise.
7100 * config/alpha/alpha.c (alpha_setup_incoming_varargs): Likewise.
7101 * config/arc/arc.c (arc_setup_incoming_varargs): Likewise.
7102 * config/arm/arm.c (arm_setup_incoming_varargs): Likewise.
7103 * config/bfin/bfin.c (setup_incoming_varargs): Likewise.
7104 * config/cris/cris.c (cris_setup_incoming_varargs): Likewise.
7105 * config/csky/csky.c (csky_setup_incoming_varargs): Likewise.
7106 * config/epiphany/epiphany.c (epiphany_setup_incoming_varargs):
7107 Likewise.
7108 * config/fr30/fr30.c (fr30_setup_incoming_varargs): Likewise.
7109 * config/frv/frv.c (frv_setup_incoming_varargs): Likewise.
7110 * config/ft32/ft32.c (ft32_setup_incoming_varargs): Likewise.
7111 * config/i386/i386.c (ix86_setup_incoming_varargs): Likewise.
7112 * config/ia64/ia64.c (ia64_setup_incoming_varargs): Likewise.
7113 * config/iq2000/iq2000.c (iq2000_setup_incoming_varargs): Likewise.
7114 * config/lm32/lm32.c (lm32_setup_incoming_varargs): Likewise.
7115 * config/m32r/m32r.c (m32r_setup_incoming_varargs): Likewise.
7116 * config/mcore/mcore.c (mcore_setup_incoming_varargs): Likewise.
7117 * config/mips/mips.c (mips_setup_incoming_varargs): Likewise.
7118 * config/mmix/mmix.c (mmix_setup_incoming_varargs): Likewise.
7119 * config/moxie/moxie.c (moxie_setup_incoming_varargs): Likewise.
7120 * config/nds32/nds32.c (nds32_setup_incoming_varargs): Likewise.
7121 * config/nios2/nios2.c (nios2_setup_incoming_varargs): Likewise.
7122 * config/riscv/riscv.c (riscv_setup_incoming_varargs): Likewise.
7123 * config/rs6000/rs6000-internal.h (setup_incoming_varargs): Likewise.
7124 * config/rs6000/rs6000-call.c (setup_incoming_varargs): Likewise.
7125 * config/sh/sh.c (sh_setup_incoming_varargs): Likewise.
7126 * config/spu/spu.c (spu_setup_incoming_varargs): Likewise.
7127 * config/tilegx/tilegx.c (tilegx_setup_incoming_varargs): Likewise.
7128 * config/tilepro/tilepro.c (tilepro_setup_incoming_varargs): Likewise.
7129 * config/visium/visium.c (visium_setup_incoming_varargs): Likewise.
7130 * function.c (assign_parms_setup_varargs): Update call to
7131 targetm.calls.setup_incoming_varargs.
7132
7133 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
7134
7135 * target.def (pass_by_reference): Take a function_arg_info instead
7136 of a mode, type and named flag.
7137 * doc/tm.texi: Regenerate.
7138 * targhooks.h (hook_pass_by_reference_must_pass_in_stack): Update
7139 accordingly.
7140 (hook_bool_CUMULATIVE_ARGS_arg_info_false): Declare.
7141 * targhooks.c (hook_pass_by_reference_must_pass_in_stack): Take a
7142 function_arg_info instead of a mode, type and named flag.
7143 (hook_bool_CUMULATIVE_ARGS_arg_info_false): New function.
7144 * calls.h (pass_by_reference): Take a function_arg_info instead of a
7145 mode, type and named flag.
7146 * calls.c (pass_by_reference): Likewise.
7147 (pass_va_arg_by_reference): Update call accordingly.
7148 (initialize_argument_information): Likewise.
7149 (emit_library_call_value_1): Likewise.
7150 * function.c (assign_parm_find_data_types): Likewise.
7151 * var-tracking.c (prepare_call_arguments): Likewise.
7152 * stor-layout.c: Include calls.h.
7153 (compute_record_mode): Update call to targetm.calls.pass_by_reference.
7154 * config/aarch64/aarch64.c (aarch64_pass_by_reference): Take a
7155 function_arg_info instead of a mode, type and named flag.
7156 * config/alpha/alpha.c (alpha_pass_by_reference): Likewise.
7157 * config/arc/arc.c (arc_pass_by_reference): Likewise.
7158 * config/arm/arm.c (arm_pass_by_reference): Likewise.
7159 * config/bfin/bfin.c (bfin_pass_by_reference): Likewise.
7160 * config/c6x/c6x.c (c6x_pass_by_reference): Likewise.
7161 (c6x_call_saved_register_used): Update call to pass_by_reference.
7162 * config/cris/cris.c (cris_pass_by_reference): Take a
7163 function_arg_info instead of a mode, type and named flag.
7164 * config/epiphany/epiphany.c (epiphany_pass_by_reference): Take a
7165 function_arg_info instead of a mode, type and named flag.
7166 (epiphany_arg_partial_bytes): Update call accordingly.
7167 * config/ft32/ft32.c (ft32_pass_by_reference): Take a
7168 function_arg_info instead of a mode, type and named flag.
7169 (ft32_arg_partial_bytes): Update call accordingly.
7170 * config/i386/i386.c (ix86_pass_by_reference): Take a
7171 function_arg_info instead of a mode, type and named flag.
7172 * config/iq2000/iq2000.c (iq2000_pass_by_reference): Likewise.
7173 * config/m32c/m32c.c (m32c_pass_by_reference): Likewise.
7174 * config/m32r/m32r.c (m32r_pass_by_reference): Likewise.
7175 (m32r_return_in_memory): Update call accordingly.
7176 * config/mips/mips.c (mips_pass_by_reference): Take a
7177 function_arg_info instead of a mode, type and named flag.
7178 * config/mmix/mmix.c (mmix_pass_by_reference): Likewise.
7179 * config/mn10300/mn10300.c (mn10300_pass_by_reference): Likewise.
7180 * config/moxie/moxie.c (moxie_pass_by_reference): Likewise.
7181 (moxie_arg_partial_bytes): Update call accordingly.
7182 * config/msp430/msp430.c (msp430_pass_by_reference): Take a
7183 function_arg_info instead of a mode, type and named flag.
7184 * config/nvptx/nvptx.c (nvptx_pass_by_reference): Likewise.
7185 * config/or1k/or1k.c (or1k_pass_by_reference): Likewise.
7186 * config/pa/pa.c (pa_pass_by_reference): Likewise.
7187 * config/riscv/riscv.c (riscv_pass_by_reference): Likewise.
7188 (riscv_return_in_memory): Update call accordingly.
7189 * config/rs6000/rs6000-internal.h (rs6000_pass_by_reference): Take a
7190 function_arg_info instead of a mode, type and named flag.
7191 * config/rs6000/rs6000-call.c (rs6000_pass_by_reference): Likewise.
7192 (rs6000_parm_needs_stack): Update call to pass_by_reference.
7193 * config/s390/s390.c (s390_pass_by_reference): Take a
7194 function_arg_info instead of a mode, type and named flag.
7195 (s390_call_saved_register_used): Update call accordingly.
7196 * config/sh/sh.c (sh_pass_by_reference): Take a function_arg_info
7197 instead of a mode, type and named flag.
7198 * config/sparc/sparc.c (sparc_pass_by_reference): Likewise.
7199 * config/spu/spu.c (spu_pass_by_reference): Likewise.
7200 * config/tilegx/tilegx.c (tilegx_pass_by_reference): Likewise.
7201 * config/tilepro/tilepro.c (tilepro_pass_by_reference): Likewise.
7202 * config/v850/v850.c (v850_pass_by_reference): Likewise.
7203 * config/visium/visium.c (visium_pass_by_reference): Likewise.
7204
7205 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
7206
7207 * target.def (arg_partial_bytes): Take a function_arg_info instead
7208 of a mode, type and named flag.
7209 * doc/tm.texi: Regenerate.
7210 * target.h (function_arg_info): Declare.
7211 * calls.h (function_arg_info): New class.
7212 * targhooks.h (hook_int_CUMULATIVE_ARGS_mode_tree_bool_0): Delete.
7213 (hook_int_CUMULATIVE_ARGS_arg_info_0): Declare.
7214 * targhooks.c (hook_int_CUMULATIVE_ARGS_mode_tree_bool_0): Delete.
7215 (hook_int_CUMULATIVE_ARGS_arg_info_0): New function.
7216 * calls.c (initialize_argument_information): Update call to
7217 targetm.calls.partial_bytes.
7218 (emit_library_call_value_1): Likewise.
7219 * expr.c (block_move_libcall_safe_for_call_parm): Likewise.
7220 * function.c (assign_parm_find_entry_rtl): Likewise.
7221 * config/alpha/alpha.c (alpha_arg_partial_bytes): Take a
7222 function_arg_info instead of a mode, type and named flag.
7223 * config/arc/arc.c (arc_arg_partial_bytes): Likewise.
7224 * config/arm/arm.c (arm_arg_partial_bytes): Likewise.
7225 (cmse_func_args_or_return_in_stack): Update accordingly.
7226 * config/bfin/bfin.c (bfin_arg_partial_bytes): Take a
7227 function_arg_info instead of a mode, type and named flag.
7228 * config/cris/cris.c (cris_arg_partial_bytes): Likewise.
7229 * config/csky/csky.c (csky_arg_partial_bytes): Likewise.
7230 * config/epiphany/epiphany.c (epiphany_arg_partial_bytes): Likewise.
7231 * config/fr30/fr30.c: Include calls.h.
7232 (fr30_arg_partial_bytes): Take a function_arg_info instead of a mode,
7233 type and named flag.
7234 * config/frv/frv.c: Include calls.h.
7235 (frv_arg_partial_bytes): Take a function_arg_info instead of a mode,
7236 type and named flag.
7237 * config/ft32/ft32.c (ft32_arg_partial_bytes): Likewise.
7238 * config/gcn/gcn.c (gcn_arg_partial_bytes): Likewise.
7239 * config/ia64/ia64.c (ia64_arg_partial_bytes): Likewise.
7240 * config/iq2000/iq2000.c (iq2000_arg_partial_bytes): Likewise.
7241 * config/m32r/m32r.c (m32r_arg_partial_bytes): Likewise.
7242 * config/mcore/mcore.c (mcore_arg_partial_bytes): Likewise.
7243 * config/microblaze/microblaze.c (function_arg_partial_bytes):
7244 Likewise.
7245 * config/mips/mips.c (mips_arg_partial_bytes): Likewise.
7246 * config/mn10300/mn10300.c (mn10300_arg_partial_bytes): Likewise.
7247 * config/moxie/moxie.c (moxie_arg_partial_bytes): Likewise.
7248 * config/msp430/msp430.c (msp430_arg_partial_bytes): Likewise.
7249 * config/nds32/nds32.c (nds32_arg_partial_bytes): Likewise.
7250 * config/nios2/nios2.c (nios2_arg_partial_bytes): Likewise.
7251 * config/pa/pa.c (pa_arg_partial_bytes): Likewise.
7252 * config/pru/pru.c (pru_arg_partial_bytes): Likewise.
7253 * config/riscv/riscv.c (riscv_arg_partial_bytes): Likewise.
7254 * config/rs6000/rs6000-internal.h (rs6000_arg_partial_bytes): Likewise.
7255 * config/rs6000/rs6000-call.c (rs6000_arg_partial_bytes): Likewise.
7256 (rs6000_parm_needs_stack): Update call accordingly.
7257 * config/sh/sh.c (sh_arg_partial_bytes): Take a
7258 function_arg_info instead of a mode, type and named flag.
7259 * config/sparc/sparc.c (sparc_arg_partial_bytes): Likewise.
7260 * config/v850/v850.c (v850_arg_partial_bytes): Likewise.
7261
7262 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
7263
7264 * calls.h (must_pass_va_arg_in_stack): Declare.
7265 * calls.c (must_pass_va_arg_in_stack): New function.
7266 * config/alpha/alpha.c (alpha_gimplify_va_arg_1): Use it.
7267 * config/sh/sh.c (sh_gimplify_va_arg_expr): Likewise.
7268 * config/stormy16/stormy16.c (xstormy16_gimplify_va_arg_expr):
7269 Likewise.
7270 * config/xtensa/xtensa.c (xtensa_gimplify_va_arg_expr): Likewise.
7271
7272 2019-08-20 Richard Sandiford <richard.sandiford@arm.com>
7273
7274 * calls.h (pass_va_arg_by_reference): Declare.
7275 * calls.c (pass_va_arg_by_reference): New function.
7276 * config/aarch64/aarch64.c (aarch64_gimplify_va_arg_expr): Use it.
7277 * config/alpha/alpha.c (alpha_gimplify_va_arg): Likewise.
7278 * config/gcn/gcn.c (gcn_gimplify_va_arg_expr): Likewise.
7279 * config/i386/i386.c (ix86_gimplify_va_arg): Likewise.
7280 * config/ia64/ia64.c (ia64_gimplify_va_arg): Likewise.
7281 * config/mips/mips.c (mips_std_gimplify_va_arg_expr): Likewise.
7282 (mips_gimplify_va_arg_expr): Likewise.
7283 * config/msp430/msp430.c (msp430_gimplify_va_arg_expr): Likewise.
7284 * config/pa/pa.c (hppa_gimplify_va_arg_expr): Likewise.
7285 * config/rs6000/rs6000-call.c (rs6000_gimplify_va_arg): Likewise.
7286 * config/s390/s390.c (s390_gimplify_va_arg): Likewise.
7287 * config/sparc/sparc.c (sparc_gimplify_va_arg): Likewise.
7288 * config/spu/spu.c (spu_gimplify_va_arg_expr): Likewise.
7289 * config/tilegx/tilegx.c (tilegx_gimplify_va_arg_expr): Likewise.
7290 * config/tilepro/tilepro.c (tilepro_gimplify_va_arg_expr): Likewise.
7291 * config/visium/visium.c (visium_gimplify_va_arg): Likewise.
7292 * config/xtensa/xtensa.c (xtensa_gimplify_va_arg_expr): Likewise.
7293 * targhooks.c (std_gimplify_va_arg_expr): Likewise.
7294
7295 2019-08-20 Richard Biener <rguenther@suse.de>
7296
7297 PR target/91498
7298 * config/i386/i386-features.c (general_scalar_chain::convert_op):
7299 Use (vec_merge (vec_duplicate..)) style vector from scalar move.
7300 (convert_scalars_to_vector): Add timode_p parameter and use it
7301 to guard TImode-only operation.
7302 (pass_stv::gate): Adjust so STV runs twice for TARGET_64BIT.
7303 (pass_stv::execute): Pass down timode_p.
7304
7305 2019-08-20 Lili Cui <lili.cui@intel.com>
7306
7307 * common/config/i386/i386-common.c
7308 (processor_names): Add tigerlake and cooperlake.
7309 (processor_alias_table): Add tigerlake and cooperlake.
7310 * config.gcc: Add -march=tigerlake and cooperlake.
7311 * config/i386/driver-i386.c
7312 (host_detect_local_cpu): Detect tigerlake and cooperlake.
7313 Add "has_avx" to classify processor.
7314 * config/i386/i386-builtins.c (processor_model) :
7315 Add M_INTEL_COREI7_TIGERLAKE and M_INTEL_COREI7_COOPERLAKE.
7316 (arch_names_table): Add tigerlake and cooperlake.
7317 (get_builtin_code_for_version) : Handle PROCESSOR_TIGERLAKE
7318 and PROCESSOR_COOPERLAKE.
7319 * config/i386/i386-c.c
7320 (ix86_target_macros_internal): Handle tigerlake and cooperlake.
7321 * config/i386/i386-options.c
7322 (m_TIGERLAKE) : Define.
7323 (m_COOPERLAKE) : Ditto.
7324 (m_CORE_AVX512): Ditto.
7325 (processor_cost_table): Add cascadelake.
7326 (ix86_option_override_internal): Hadle PTA_MOVDIRI, PTA_MOVDIR64B.
7327 * config/i386/i386.h
7328 (ix86_size_cost) : Define TARGET_TIGERLAKE and TARGET_COOPERLAKE.
7329 (processor_type) : Add PROCESSOR_TIGERLAKE and PROCESSOR_COOPERLAKE.
7330 (PTA_MOVDIRI): Ditto.
7331 (PTA_MOVDIR64B): Ditto.
7332 (PTA_COOPERLAKE) : Ditto.
7333 (PTA_TIGERLAKE) : Ditto.
7334 (processor_type) : Add PROCESSOR_TIGERLAKE and PROCESSOR_COOPERLAKE.
7335 * doc/extend.texi: Add tigerlake and cooperlake.
7336 * doc/invoke.texi: Add tigerlake and cooperlake.
7337
7338 2019-08-20 Gerald Pfeifer <gerald@pfeifer.com>
7339
7340 * doc/install.texi (Specific, alpha): Remove note to use
7341 binutils 2.11.2 or later.
7342
7343 2019-08-20 Bernd Edlinger <bernd.edlinger@hotmail.de>
7344
7345 PR middle-end/89544
7346 * function.c (assign_parm_find_stack_rtl): Use larger alignment
7347 when possible.
7348
7349 2019-08-19 Joel Hutton <Joel.Hutton@arm.com>
7350
7351 * config/aarch64/aarch64-protos.h (aarch64_fpconst_pow2_recip): New prototype
7352 * config/aarch64/aarch64.c (aarch64_fpconst_pow2_recip): New function
7353 * config/aarch64/aarch64.md (*aarch64_<su_optab>cvtf<fcvt_target><GPF:mode>2_mult): New pattern
7354 (*aarch64_<su_optab>cvtf<fcvt_iesize><GPF:mode>2_mult): New pattern
7355 * config/aarch64/constraints.md (Dt): New constraint
7356 * config/aarch64/predicates.md (aarch64_fpconst_pow2_recip): New predicate
7357
7358 2019-08-19 Richard Biener <rguenther@suse.de>
7359
7360 PR tree-optimization/91403
7361 * tree-scalar-evolution.c (follow_ssa_edge_binary): Inline
7362 cases we can handle with tail-recursion...
7363 (follow_ssa_edge_expr): ... here. Do so.
7364
7365 2019-08-19 Kito Cheng <kito.cheng@sifive.com>
7366
7367 PR target/91441
7368 * toplev.c (process_options): Check TARGET_ASAN_SHADOW_OFFSET is
7369 implemented for -fsanitize=kernel-address, and merge check logic
7370 with -fsanitize=address.
7371
7372 2019-08-18 Iain Sandoe <iain@sandoe.co.uk>
7373
7374 * config/rs6000/darwin.h (TARGET_OS_CPP_BUILTINS): Add asserts
7375 for cpu and machine. Factor 64/32b builtins.
7376
7377 2019-08-18 Gerald Pfeifer <gerald@pfeifer.com>
7378
7379 * doc/install.texi (Specific, bfin): blackfin.uclinux.org is
7380 gone, point to sourceforge.net.
7381
7382 2019-08-17 Gerald Pfeifer <gerald@pfeifer.com>
7383
7384 * doc/ux.texi (User Experience Guidelines): Update reference.
7385
7386 2019-08-17 Gerald Pfeifer <gerald@pfeifer.com>
7387
7388 * doc/include/gpl_v3.texi (Copying): Adjust the link to "Why
7389 not LGPL".
7390
7391 2019-08-16 Eric Botcazou <ebotcazou@adacore.com>
7392
7393 * tree-sra.c (build_reconstructed_reference): Return NULL_TREE instead
7394 of NULL. Add guard for broken VIEW_CONVERT_EXPRs.
7395
7396 2019-08-16 Martin Sebor <msebor@redhat.com>
7397
7398 * tree.def (TYPE_SIZE): Clarify.
7399 * tree.h (TYPE_SIZE, TYPE_SIZE_UNIT, DECL_SIZE): Add comments.
7400
7401 2019-08-16 Bernd Edlinger <bernd.edlinger@hotmail.de>
7402
7403 PR tree-optimization/91109
7404 * lra-int.h (lra_need_for_scratch_reg_p): Declare.
7405 * lra.c (lra): Use lra_need_for_scratch_reg_p.
7406 * lra-spills.c (lra_need_for_scratch_reg_p): New function.
7407
7408 2019-08-16 Uroš Bizjak <ubizjak@gmail.com>
7409
7410 * config/i386/mmx.md (mmxdoublemode): New mode attribute.
7411 (mmx_uavg<mode>3): Macroize expaner from mmx_uavgv8qi3 and
7412 mmx_uavgv4hi3 using MMXMODE12 mode iterator.
7413 (uavg<mode>3_ceil): New expander.
7414 * config/i386/sse.md (uavg<mode>3_ceil): Use ssedoublemode
7415 mode iterator when creating CONST1_RTX.
7416 (<sse2_avx2>_uavg<mode>3<mask_name>): Ditto.
7417 (*<sse2_avx2>_uavg<mode>3<mask_name>): Use ssedoublemode
7418 mode iterator for const1_operand predicate.
7419
7420 2019-08-16 Richard Biener <rguenther@suse.de>
7421
7422 * tree-scalar-evolution.c (follow_ssa_edge_expr): Declare.
7423 (follow_ssa_edge_binary): Call follow_ssa_edge_expr instead of
7424 follow_ssa_edge.
7425 (follow_ssa_edge_in_condition_phi_branch): Likewise.
7426 (analyze_evolution_in_loop): Likewise.
7427 (follow_ssa_edge, follow_ssa_edge_in_rhs): Inline into ...
7428 (follow_ssa_edge_expr): ... here. Refactor code.
7429
7430 2019-08-16 Richard Biener <rguenther@suse.de>
7431
7432 PR target/91469
7433 * config/i386/i386-features.c
7434 (general_scalar_chain::replace_with_subreg): Stop at memory operands.
7435
7436 2019-08-16 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
7437
7438 PR other/91255
7439 * gensupport.c (has_subst_attribute): Error out on set_attr_alternative
7440 only if subst_name matches curr_attr string.
7441
7442 2019-08-16 Richard Biener <rguenther@suse.de>
7443
7444 * tree-ssa-forwprop.c (simplify_builtin_call): Do not remove
7445 stmt at gsi_p, instead replace it with a NOP removed later.
7446 (pass_forwprop::execute): Fully propagate lattice, DCE stmts
7447 that became dead because of that.
7448
7449 2019-08-16 Aldy Hernandez <aldyh@redhat.com>
7450
7451 * gimple-ssa-evrp-analyze.c (record_ranges_from_phis): Skip PHIs
7452 for which we can't represent a range.
7453 * ipa-cp.c (ipcp_vr_lattice::set_to_bottom): Pass type to
7454 set_varying.
7455 * tree-ssa-threadedge.c (record_temporary_equivalences_from_phis):
7456 Set VR_UNDEFINED if type is not supported.
7457 * tree-ssanames.c (get_range_info): Pass type to set_varying.
7458 * tree-vrp.c (value_range_base::check): Assert that a varying has
7459 min/max set.
7460 (value_range_base::equal_p): Early bail for undefines.
7461 (value_range_base::set_varying): Accept a type.
7462 (value_range::set_varying): Same.
7463 (value_range_base::type): VARYING can have a type, while UNDEFINE
7464 is typeless.
7465 (value_range_base::dump): Print type for VARYING nodes.
7466 (value_range_base::set): Add type to VARYING.
7467 (extract_range_from_multiplicative_op): Pass type to set_varying.
7468 (extract_range_from_binary_expr): Same.
7469 (value_range_base::intersect_helper): Same.
7470 (value_range_base::union_helper): Same.
7471 (value_range_base::normalize_symbolics): Same.
7472 (determine_value_range_1): Same.
7473 * tree-vrp.h (class value_range_base): Add type to set_varying.
7474 Add prototype for dump(void).
7475 Add prototype for supports_type_p.
7476 (class value_range): Add type to set_varying.
7477 Add prototype for dump(void).
7478 * vr-values.c (set_value_range_to_truthvalue): Pass type to
7479 set_varying.
7480 (vr_values::get_lattice_entry): Set varying even if propagation
7481 finished.
7482 Pass type to set_varying.
7483 (vr_values::get_value_range): Remove vr_const_varying.
7484 Reallocate the lattice if needed.
7485 (vr_values::update_value_range): Pass type to set_varying.
7486 (vr_values::extract_range_for_var_from_comparison_expr): Same.
7487 (vr_values::extract_range_from_binary_expr): Same.
7488 (vr_values::extract_range_from_unary_expr): Same.
7489 (vr_values::extract_range_from_cond_expr): Same.
7490 (vr_values::check_for_binary_op_overflow): Same.
7491 (vr_values::extract_range_basic): Same.
7492 (vr_values::extract_range_from_assignment): Same.
7493 (vr_values::vr_values): Increase size of num_vr_values.
7494 (vr_values::extract_range_from_phi_node): Pass type to
7495 set_varying.
7496
7497 2019-08-15 H.J. Lu <hongjiu.lu@intel.com>
7498
7499 PR target/90878
7500 * config/i386/i386.c (inline_memory_move_cost): Use hard_register
7501 for costs of hard register moves.
7502 (ix86_register_move_cost): Likewise.
7503 * config/i386/i386.h (processor_costs): Move costs of hard
7504 register moves to hard_register. Add int_load, int_store,
7505 xmm_move, ymm_move, zmm_move, sse_to_integer, integer_to_sse,
7506 sse_load, sse_store, sse_unaligned_load and sse_unaligned_store
7507 for costs of RTL expressions.
7508 * config/i386/x86-tune-costs.h: Move costs of hard register
7509 moves to hard_register. Duplicate int_load, int_store,
7510 xmm_move, ymm_move, zmm_move, sse_to_integer, integer_to_sse,
7511 sse_load, sse_store for costs of RTL expressions.
7512
7513 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7514
7515 * target.def (setup_incoming_vararg_bounds): Remove.
7516 * doc/tm.texi.in (TARGET_SETUP_INCOMING_VARARG_BOUNDS): Remove.
7517 * doc/tm.texi: Regenerate.
7518 * targhooks.c (default_setup_incoming_vararg_bounds): Delete.
7519 * targhooks.h (default_setup_incoming_vararg_bounds): Likewise.
7520 * config/i386/i386.c (ix86_setup_incoming_vararg_bounds): Likewise.
7521 (TARGET_SETUP_INCOMING_VARARG_BOUNDS): Likewise.
7522
7523 2019-08-15 Jozef Lawrynowicz <jozef.l@mittosystems.com>
7524
7525 MSP430: Fix lines over 80 characters long in
7526 config/msp430/*.{c,h} files
7527
7528 * config/msp430/driver-msp430.c (msp430_select_cpu): Fix format
7529 specifier in string.
7530 (msp430_select_hwmult_lib): Split line more than 80 characters long.
7531 * config/msp430/msp430-devices.c (msp430_extract_mcu_data): Remove
7532 redundant old comment.
7533 * config/msp430/msp430-protos.h (msp430_output_aligned_decl_common):
7534 Split line more than 80 characters long.
7535 * config/msp430/msp430.c (msp430_option_override): Likewise.
7536 (msp430_return_in_memory): Likewise.
7537 (msp430_gimplify_va_arg_expr): Likewise.
7538 (TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P): Likewise.
7539 (msp430_legitimate_constant): Likewise.
7540 (TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS): Likewise.
7541 (msp430_attr): Likewise.
7542 (msp430_data_attr): Likewise.
7543 (msp430_start_function): Likewise.
7544 (gen_prefix): Likewise.
7545 (msp430_init_sections): Likewise.
7546 (msp430_select_section): Likewise.
7547 (msp430_function_section): Likewise.
7548 (msp430_unique_section): Likewise.
7549 (msp430_output_aligned_decl_common): Likewise.
7550 (msp430_do_not_relax_short_jumps): Likewise.
7551 (msp430_init_builtins): Likewise.
7552 (msp430_expand_delay_cycles): Likewise.
7553 (msp430_expand_prologue): Likewise.
7554 (msp430_expand_epilogue): Likewise.
7555 (msp430_expand_helper): Likewise.
7556 (msp430_split_movsi): Likewise.
7557 (msp430_print_operand): Likewise.
7558 (msp430_return_addr_rtx): Likewise.
7559 (msp430x_extendhisi): Likewise.
7560 * config/msp430/msp430.h (STARTFILE_SPEC): Likewise.
7561 (ASM_SPEC): Likewise.
7562 Remove very obvious comments.
7563 (LIB_SPEC): Split line more than 80 characters long.
7564 (EH_RETURN_HANDLER_RTX): Likewise.
7565 (HARD_REGNO_CALLER_SAVE_MODE): Likewise.
7566
7567 2019-08-15 Jozef Lawrynowicz <jozef.l@mittosystems.com>
7568
7569 MSP430: Fix whitespace errors and incorrect indentation in
7570 config/msp430/*.{c,h} files
7571
7572 * config/msp430/driver-msp430.c (msp430_select_cpu): Fix indentation.
7573 (msp430_select_hwmult_lib): Likewise.
7574 * config/msp430/msp430-devices.c (parse_devices_csv_1): Likewise.
7575 (msp430_extract_mcu_data): Likewise.
7576 (struct t_msp430_mcu_data): Likewise.
7577 * config/msp430/msp430.c (struct machine_function): Remove whitespace
7578 before left square bracket.
7579 (msp430_option_override): Fix indentation.
7580 (msp430_hard_regno_nregs_with_padding): Likewise.
7581 (msp430_initial_elimination_offset): Likewise.
7582 (msp430_special_register_convention_p): Remove whitespace before left
7583 square bracket and after exclamation mark.
7584 (msp430_evaluate_arg): Likewise.
7585 (msp430_callee_copies): Fix indentation.
7586 (msp430_gimplify_va_arg_expr): Likewise.
7587 (msp430_function_arg_advance): Remove whitespace before left square
7588 bracket.
7589 (reg_ok_for_addr): Likewise.
7590 (msp430_preserve_reg_p): Likewise.
7591 (msp430_compute_frame_info): Likewise.
7592 (msp430_asm_output_addr_const_extra): Add space between function name
7593 and open parenthesis.
7594 (has_section_name): Fix indentation.
7595 (msp430_attr): Remove trailing whitespace.
7596 (msp430_section_attr): Likewise.
7597 (msp430_data_attr): Likewise.
7598 (struct msp430_attribute_table): Fix comment and whitespace.
7599 (msp430_start_function): Remove whitespace before left square bracket.
7600 Add space between function name and open parenthesis.
7601 (msp430_select_section): Remove trailing whitespace.
7602 (msp430_section_type_flags): Remove trailing whitespace.
7603 (msp430_unique_section): Remove space before closing parenthesis.
7604 (msp430_output_aligned_decl_common): Change 8 spaces to a tab.
7605 (msp430_builtins): Remove whitespace before left square bracket.
7606 (msp430_init_builtins): Fix indentation.
7607 (msp430_expand_prologue): Remove whitespace before left square bracket.
7608 Remove space before closing parenthesis.
7609 (msp430_expand_epilogue): Remove whitespace before left square bracket.
7610 (msp430_split_movsi): Remove space before closing parenthesis.
7611 (helper_function_name_mappings): Fix indentation.
7612 (msp430_use_f5_series_hwmult): Fix whitespace.
7613 (use_32bit_hwmult): Likewise.
7614 (msp430_no_hwmult): Likewise.
7615 (msp430_output_labelref): Remove whitespace before left square bracket.
7616 (msp430_print_operand_raw): Likewise.
7617 (msp430_print_operand_addr): Likewise.
7618 (msp430_print_operand): Add two spaces after '.' in comment.
7619 Fix trailing whitespace.
7620 (msp430x_extendhisi): Fix indentation.
7621 * config/msp430/msp430.h (TARGET_CPU_CPP_BUILTINS): Change 8 spaces to
7622 tab.
7623 (PC_REGNUM): Likewise.
7624 (STACK_POINTER_REGNUM): Likewise.
7625 (CC_REGNUM): Likewise.
7626
7627 2019-08-15 Richard Biener <rguenther@suse.de>
7628
7629 PR target/91454
7630 * config/i386/i386-features.c (gen_gpr_to_xmm_move_src): New
7631 helper.
7632 (general_scalar_chain::make_vector_copies): Use it.
7633
7634 2019-08-15 Bernd Edlinger <bernd.edlinger@hotmail.de>
7635
7636 * function.c (assign_parm_setup_reg): Handle misaligned stack arguments.
7637
7638 2019-08-15 Martin Liska <mliska@suse.cz>
7639
7640 * tree-ssa-dce.c (propagate_necessity): We can't reach now
7641 operators with no arguments.
7642 (eliminate_unnecessary_stmts): Likewise here.
7643
7644 2019-08-15 Uroš Bizjak <ubizjak@gmail.com>
7645
7646 * config/i386/i386-features.c (general_scalar_chain::convert_insn)
7647 <case COMPARE>: Revert 2019-08-14 change.
7648 (convertible_comparison_p): Revert 2019-08-14 change. Return false
7649 for (TARGET_64BIT || mode != DImode).
7650
7651 2019-08-15 Aldy Hernandez <aldyh@redhat.com>
7652
7653 * tree-vrp.c (value_range_base::set): Merge in code from
7654 value_range_base::set_and_canonicalize.
7655 Enforce canonicalization at set time.
7656 Normalize [MIN, MAX] into VARYING and ~[MIN, MAX] into UNDEFINED.
7657 (value_range_base::set_undefined): Inline call to set().
7658 (value_range_base::set_varying): Same.
7659 (value_range_base::singleton_p): Handle VR_ANTI_RANGEs.
7660 (vrp_val_max): New argument handle_pointers.
7661 (vrp_val_min): Same.
7662 (ranges_from_anti_range): Same.
7663 (extract_range_into_wide_ints): Use tree argument instead of sign
7664 and precision.
7665 (extract_range_from_multiplicative_op): Take in tree type instead
7666 of precision and sign. Adapt function for canonicalized ranges.
7667 (extract_range_from_binary_expr): Pass type to
7668 extract_range_from_multiplicative_op.
7669 Adapt for canonicalized ranges.
7670 (extract_range_from_unary_expr): Same.
7671 (value_range_base::intersect_helper): Adjust for canonicalized
7672 ranges.
7673 (value_range_base::union_helper): Same.
7674 (value_range_base::normalize_symbolics): New.
7675 * tree-vrp.h (class value_range_base): Remove
7676 set_and_canonicalize.
7677 New prototype for normalize_symbolics.
7678 (class value_range): Remove set_and_canonicalize.
7679 (vrp_val_min): Adjust prototype.
7680 (vrp_val_max): Same.
7681 * vr-values.c
7682 (vr_values::extract_range_for_var_from_comparison_expr): Call set
7683 instead of set_and_canonicalize.
7684
7685 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7686
7687 PR middle-end/91444
7688 * tree-vect-stmts.c (vectorizable_call): Check that the function
7689 is a BUILT_IN_MD function before passing it to
7690 targetm.vectorize.builtin_md_vectorized_function.
7691
7692 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7693
7694 * config/aarch64/aarch64-protos.h (aarch64_sve_mode_p): Declare.
7695 * config/aarch64/aarch64.c (aarch64_sve_mode_p): New function.
7696 (aarch64_select_early_remat_modes): Use it.
7697
7698 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7699
7700 * config/aarch64/aarch64.c (aarch64_simd_vector_alignment): Return
7701 16 for SVE predicates even if they are fixed-length.
7702
7703 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7704
7705 * config/aarch64/aarch64-sve.md (and<PRED_ALL:mode>3): Make the
7706 operand order match the MOV /Z alias.
7707
7708 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7709
7710 * config/aarch64/aarch64.c (aarch64_output_sve_cnt_immediate): Take
7711 the vector pattern as an aarch64_svpattern argument. Update the
7712 overloaded caller accordingly.
7713 (aarch64_output_sve_scalar_inc_dec): Update call accordingly.
7714 (aarch64_output_sve_vector_inc_dec): Likewise.
7715
7716 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7717
7718 * config/aarch64/aarch64.c (aarch64_add_offset): In the fallback
7719 multiplication case, try to compute VG * (lowest set bit) directly
7720 rather than always basing the multiplication on VG. Use
7721 expand_mult for the multiplication if we can.
7722
7723 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7724
7725 * config/aarch64/aarch64-protos.h
7726 (aarch64_sve_scalar_inc_dec_immediate_p): Declare.
7727 (aarch64_sve_inc_dec_immediate_p): Rename to...
7728 (aarch64_sve_vector_inc_dec_immediate_p): ...this.
7729 (aarch64_output_sve_addvl_addpl): Take a single rtx argument.
7730 (aarch64_output_sve_scalar_inc_dec): Declare.
7731 (aarch64_output_sve_inc_dec_immediate): Rename to...
7732 (aarch64_output_sve_vector_inc_dec): ...this.
7733 * config/aarch64/aarch64.c (aarch64_sve_scalar_inc_dec_immediate_p)
7734 (aarch64_output_sve_scalar_inc_dec): New functions.
7735 (aarch64_output_sve_addvl_addpl): Remove the base and offset
7736 arguments. Only handle true ADDVL and ADDPL instructions;
7737 don't emit an INC or DEC.
7738 (aarch64_sve_inc_dec_immediate_p): Rename to...
7739 (aarch64_sve_vector_inc_dec_immediate_p): ...this.
7740 (aarch64_output_sve_inc_dec_immediate): Rename to...
7741 (aarch64_output_sve_vector_inc_dec): ...this. Update call to
7742 aarch64_sve_vector_inc_dec_immediate_p.
7743 * config/aarch64/predicates.md (aarch64_sve_scalar_inc_dec_immediate)
7744 (aarch64_sve_plus_immediate): New predicates.
7745 (aarch64_pluslong_operand): Accept aarch64_sve_plus_immediate
7746 rather than aarch64_sve_addvl_addpl_immediate.
7747 (aarch64_sve_inc_dec_immediate): Rename to...
7748 (aarch64_sve_vector_inc_dec_immediate): ...this. Update call to
7749 aarch64_sve_vector_inc_dec_immediate_p.
7750 (aarch64_sve_add_operand): Update accordingly.
7751 * config/aarch64/constraints.md (Uai): New constraint.
7752 (vsi): Update call to aarch64_sve_vector_inc_dec_immediate_p.
7753 * config/aarch64/aarch64.md (add<GPI:mode>3): Don't force the second
7754 operand into a register if it satisfies aarch64_sve_plus_immediate.
7755 (*add<GPI:mode>3_aarch64, *add<GPI:mode>3_poly_1): Add an alternative
7756 for Uai. Update calls to aarch64_output_sve_addvl_addpl.
7757 * config/aarch64/aarch64-sve.md (add<mode>3): Call
7758 aarch64_output_sve_vector_inc_dec instead of
7759 aarch64_output_sve_inc_dec_immediate.
7760
7761 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7762
7763 * config/aarch64/iterators.md (UNSPEC_REVB, UNSPEC_REVH)
7764 (UNSPEC_REVW): New constants.
7765 (elem_bits): New mode attribute.
7766 (SVE_INT_UNARY): New int iterator.
7767 (optab): Handle UNSPEC_REV[BHW].
7768 (sve_int_op): New int attribute.
7769 (min_elem_bits): Handle VNx16QI and the predicate modes.
7770 * config/aarch64/aarch64-sve.md (*aarch64_sve_rev64<mode>)
7771 (*aarch64_sve_rev32<mode>, *aarch64_sve_rev16vnx16qi): Delete.
7772 (@aarch64_pred_<SVE_INT_UNARY:optab><SVE_I:mode>): New pattern.
7773 * config/aarch64/aarch64.c (aarch64_sve_data_mode): New function.
7774 (aarch64_sve_int_mode, aarch64_sve_rev_unspec): Likewise.
7775 (aarch64_split_sve_subreg_move): Use UNSPEC_REV[BHW] instead of
7776 unspecs based on the total width of the reversed data.
7777 (aarch64_evpc_rev_local): Likewise (for SVE only). Use a
7778 reinterpret followed by a subreg on big-endian targets.
7779
7780 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7781 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
7782
7783 * config/aarch64/aarch64-sve.md
7784 (*cond_<SVE_COND_FP_TERNARY:optab><SVE_F:mode>_any): Add /z
7785 alternatives in which one of the inputs is in the same register
7786 as the output.
7787
7788 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7789
7790 * config/aarch64/aarch64-sve.md (*vec_extract<mode><Vel>_ext)
7791 (*aarch64_sve_ext<mode>): Add MOVPRFX alternatives.
7792
7793 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7794
7795 * config/aarch64/aarch64-sve.md (*sub<SVE_F:mode>3): Remove immediate
7796 FADD and FSUB alternatives. Add a MOVPRFX alternative for FSUBR.
7797
7798 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7799 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
7800
7801 * config/aarch64/aarch64-sve.md (add<SVE_I:mode>3, sub<SVE_I:mode>3)
7802 (<LOGICAL:optab><SVE_I:mode>3, *add<SVE_F:mode>3, *mul<SVE_F:mode>3)
7803 (*fabd<SVE_F:mode>3): Add more MOVPRFX alternatives.
7804
7805 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7806 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
7807
7808 * config/aarch64/aarch64-sve.md (*v<ASHIFT:optab><SVE_I:mode>3):
7809 Add an alternative that uses reversed shifts.
7810
7811 2019-08-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
7812
7813 * config/aarch64/aarch64-cores.def (cortex-a76): Use neoversen1 tuning
7814 struct.
7815
7816 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7817
7818 * config/aarch64/aarch64-sve.md (aarch64_<su>abd<mode>_3): Add
7819 a commutativity marker.
7820
7821 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7822 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
7823
7824 * config/aarch64/aarch64-protos.h (aarch64_prepare_sve_int_fma)
7825 (aarch64_prepare_sve_cond_int_fma): Declare.
7826 * config/aarch64/aarch64.c (aarch64_convert_mult_to_shift)
7827 (aarch64_prepare_sve_int_fma): New functions.
7828 (aarch64_prepare_sve_cond_int_fma): Likewise.
7829 * config/aarch64/aarch64-sve.md
7830 (cond_<SVE_INT_BINARY:optab><SVE_I:mode>): Add a "@" marker.
7831 (fma<SVE_I:mode>4, cond_fma<SVE_I:mode>, *cond_fma<SVE_I:mode>_2)
7832 (*cond_fma<SVE_I:mode>_4, *cond_fma<SVE_I:mode>_any, fnma<SVE_I:mode>4)
7833 (cond_fnma<SVE_I:mode>, *cond_fnma<SVE_I:mode>_2)
7834 (*cond_fnma<SVE_I:mode>_4, *cond_fnma<SVE_I:mode>_any): New patterns.
7835 (*madd<mode>): Rename to...
7836 (*fma<mode>4): ...this.
7837 (*msub<mode>): Rename to...
7838 (*fnma<mode>4): ...this.
7839
7840 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7841 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
7842
7843 * config/aarch64/aarch64.c (aarch64_print_vector_float_operand):
7844 Print 2.0 naturally.
7845 (aarch64_sve_float_mul_immediate_p): Return true for 2.0.
7846 * config/aarch64/predicates.md
7847 (aarch64_sve_float_negated_arith_immediate): New predicate,
7848 renamed from aarch64_sve_float_arith_with_sub_immediate.
7849 (aarch64_sve_float_arith_with_sub_immediate): Test for both
7850 positive and negative constants.
7851 (aarch64_sve_float_arith_with_sub_operand): Redefine as a register
7852 or an aarch64_sve_float_arith_with_sub_immediate.
7853 * config/aarch64/constraints.md (vsN): Use
7854 aarch64_sve_float_negated_arith_immediate.
7855 * config/aarch64/iterators.md (SVE_COND_FP_BINARY_I1): New int
7856 iterator.
7857 (sve_pred_fp_rhs2_immediate): New int attribute.
7858 * config/aarch64/aarch64-sve.md
7859 (cond_<SVE_COND_FP_BINARY:optab><SVE_F:mode>): Use
7860 sve_pred_fp_rhs1_operand and sve_pred_fp_rhs2_operand.
7861 (*cond_<SVE_COND_FP_BINARY_I1:optab><SVE_F:mode>_2_const)
7862 (*cond_<SVE_COND_FP_BINARY_I1:optab><SVE_F:mode>_any_const)
7863 (*cond_add<SVE_F:mode>_2_const, *cond_add<SVE_F:mode>_any_const)
7864 (*cond_sub<mode>_3_const, *cond_sub<mode>_any_const): New patterns.
7865
7866 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7867 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
7868
7869 * config/aarch64/aarch64-sve.md (*aarch64_cond_abd<SVE_F:mode>_2)
7870 (*aarch64_cond_abd<SVE_F:mode>_3)
7871 (*aarch64_cond_abd<SVE_F:mode>_any): New patterns.
7872
7873 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7874 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
7875
7876 * config/aarch64/aarch64-sve.md (*aarch64_cond_<su>abd<mode>_2)
7877 (*aarch64_cond_<su>abd<mode>_any): New patterns.
7878
7879 2019-08-15 Richard Sandiford <richard.sandiford@arm.com>
7880 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
7881
7882 * internal-fn.def (IFN_COND_SHL, IFN_COND_SHR): New internal functions.
7883 * internal-fn.c (FOR_EACH_CODE_MAPPING): Handle shifts.
7884 * match.pd (UNCOND_BINARY, COND_BINARY): Likewise.
7885 * optabs.def (cond_ashl_optab, cond_ashr_optab, cond_lshr_optab): New
7886 optabs.
7887 * optabs.h (create_convert_operand_from): Expand comment.
7888 * optabs.c (maybe_legitimize_operand): Allow implicit broadcasts
7889 when mapping scalar rtxes to vector operands.
7890 * config/aarch64/iterators.md (SVE_INT_BINARY): Add ashift,
7891 ashiftrt and lshiftrt.
7892 (sve_int_op, sve_int_op_rev, sve_pred_int_rhs2_operand): Handle them.
7893 * config/aarch64/aarch64-sve.md (*cond_<optab><mode>_2_const)
7894 (*cond_<optab><mode>_any_const): New patterns.
7895
7896 2019-08-15 Martin Liska <mliska@suse.cz>
7897
7898 PR ipa/91438
7899 * cgraph.c (cgraph_node::remove): When setting
7900 n->origin = NULL for all nested functions, reset
7901 also next_nested.
7902
7903 2019-08-15 Martin Liska <mliska@suse.cz>
7904
7905 * cgraph.c (cgraph_node::verify_node): Verify origin, nested
7906 and next_nested.
7907
7908 2019-08-15 Martin Liska <mliska@suse.cz>
7909
7910 PR ipa/91404
7911 * passes.c (order): Remove.
7912 (uid_hash_t): Likewise).
7913 (remove_cgraph_node_from_order): Remove from set
7914 of pointers (cgraph_node *).
7915 (insert_cgraph_node_to_order): New.
7916 (duplicate_cgraph_node_to_order): New.
7917 (do_per_function_toporder): Register all 3 cgraph hooks.
7918 Skip removed_nodes now as we know about all of them.
7919
7920 2019-08-14 Uroš Bizjak <ubizjak@gmail.com>
7921
7922 * config/i386/i386-expand.c (ix86_expand_vector_init_one_nonzero)
7923 <case E_V8QImode>: Use vector_set path for
7924 TARGET_MMX_WITH_SSE && TARGET_SSE4_1.
7925 (ix86_expand_vector_init_one_var) <case E_V8QImode>:
7926 Do not widen for TARGET_MMX_WITH_SSE && TARGET_SSE4_1.
7927
7928 2019-08-14 Bernd Edlinger <bernd.edlinger@hotmail.de>
7929
7930 * builtins.c (expand_builtin_init_descriptor): Set memory alignment.
7931
7932 2019-08-14 Martin Sebor <msebor@redhat.com>
7933
7934 PR tree-optimization/91294
7935 * tree-ssa-strlen.c (handle_store): Avoid treating lower bound of
7936 source length as exact.
7937
7938 2019-08-14 Christophe Lyon <christophe.lyon@linaro.org>
7939
7940 * doc/extend.texi: Add "noinit" attribute documentation.
7941 * doc/sourcebuild.texi: Add noinit effective target documentation.
7942 * varasm.c (default_section_type_flags): Add support for "noinit"
7943 section.
7944 (default_elf_select_section): Add support for "noinit" attribute.
7945 * config/msp430/msp430.c (msp430_attribute_table): Remove
7946 "noinit" entry.
7947
7948 2019-08-14 Richard Biener <rguenther@suse.de>
7949 Uroš Bizjak <ubizjak@gmail.com>
7950
7951 PR target/91154
7952 * config/i386/i386-features.h (scalar_chain::scalar_chain): Add
7953 mode arguments.
7954 (scalar_chain::smode): New member.
7955 (scalar_chain::vmode): Likewise.
7956 (dimode_scalar_chain): Rename to...
7957 (general_scalar_chain): ... this.
7958 (general_scalar_chain::general_scalar_chain): Take mode arguments.
7959 (timode_scalar_chain::timode_scalar_chain): Initialize scalar_chain
7960 base with TImode and V1TImode.
7961 * config/i386/i386-features.c (scalar_chain::scalar_chain): Adjust.
7962 (general_scalar_chain::vector_const_cost): Adjust for SImode
7963 chains.
7964 (general_scalar_chain::compute_convert_gain): Likewise. Add
7965 {S,U}{MIN,MAX} support.
7966 (general_scalar_chain::replace_with_subreg): Use vmode/smode.
7967 (general_scalar_chain::make_vector_copies): Likewise. Handle
7968 non-DImode chains appropriately.
7969 (general_scalar_chain::convert_reg): Likewise.
7970 (general_scalar_chain::convert_op): Likewise.
7971 (general_scalar_chain::convert_insn): Likewise. Add
7972 fatal_insn_not_found if the result is not recognized.
7973 (convertible_comparison_p): Pass in the scalar mode and use that.
7974 (general_scalar_to_vector_candidate_p): Likewise. Rename from
7975 dimode_scalar_to_vector_candidate_p. Add {S,U}{MIN,MAX} support.
7976 (scalar_to_vector_candidate_p): Remove by inlining into single
7977 caller.
7978 (general_remove_non_convertible_regs): Rename from
7979 dimode_remove_non_convertible_regs.
7980 (remove_non_convertible_regs): Remove by inlining into single caller.
7981 (convert_scalars_to_vector): Handle SImode and DImode chains
7982 in addition to TImode chains.
7983 * config/i386/i386.md (<maxmin><MAXMIN_IMODE>3): New expander.
7984 (*<maxmin><MAXMIN_IMODE>3_1): New insn-and-split.
7985 (*<maxmin>di3_doubleword): Likewise.
7986
7987 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
7988 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
7989
7990 * config/aarch64/aarch64-sve.md (*cond_bic<mode>_2)
7991 (*cond_bic<mode>_any): New patterns.
7992
7993 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
7994
7995 * config/aarch64/aarch64.c (aarch64_print_operand): Allow %e to
7996 take the equivalent mask, as well as a bit count.
7997 * config/aarch64/predicates.md (aarch64_sve_uxtb_immediate)
7998 (aarch64_sve_uxth_immediate, aarch64_sve_uxt_immediate)
7999 (aarch64_sve_pred_and_operand): New predicates.
8000 * config/aarch64/iterators.md (sve_pred_int_rhs2_operand): New
8001 code attribute.
8002 * config/aarch64/aarch64-sve.md
8003 (cond_<SVE_INT_BINARY:optab><SVE_I:mode>): Use it.
8004 (*cond_uxt<mode>_2, *cond_uxt<mode>_any): New patterns.
8005
8006 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8007
8008 * config/aarch64/aarch64-sve.md
8009 (*cond_<SVE_COND_FCVTI:optab>_nontrunc<SVE_F:mode><SVE_HSDI:mode>)
8010 (*cond_<SVE_COND_ICVTF:optab>_nonextend<SVE_HSDI:mode><SVE_F:mode>):
8011 New patterns.
8012
8013 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8014 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
8015
8016 * config/aarch64/aarch64-sve.md
8017 (*cond_<SVE_COND_FP_UNARY:optab><SVE_F:mode>_2): New pattern.
8018 (*cond_<SVE_COND_FP_UNARY:optab><SVE_F:mode>_any): Likewise.
8019
8020 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8021 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
8022
8023 * config/aarch64/aarch64-sve.md
8024 (*cond_<SVE_INT_UNARY:optab><SVE_I:mode>_2): New pattern.
8025 (*cond_<SVE_INT_UNARY:optab><SVE_I:mode>_any): Likewise.
8026
8027 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8028
8029 * config/aarch64/iterators.md (SVE_COND_FP_ABS_CMP): New iterator.
8030 * config/aarch64/aarch64-sve.md (*aarch64_pred_fac<cmp_op><mode>):
8031 New pattern.
8032
8033 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8034 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
8035
8036 * config/aarch64/aarch64-sve.md (*aarch64_sel_dup<mode>): New pattern.
8037
8038 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8039 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
8040
8041 * config/aarch64/aarch64.c (aarch64_bit_representation): New function.
8042 (aarch64_print_vector_float_operand): Also handle 8-bit floats.
8043 (aarch64_print_operand): Add support for %I.
8044 (aarch64_sve_dup_immediate_p): Handle scalars as well as vectors.
8045 Bitcast floating-point constants to the corresponding integer constant.
8046 (aarch64_float_const_representable_p): Handle vectors as well
8047 as scalars.
8048 (aarch64_expand_sve_vcond): Make sure that the operands are valid
8049 for the new vcond_mask_<mode><vpred> expander.
8050 * config/aarch64/predicates.md (aarch64_sve_dup_immediate): Also
8051 test aarch64_float_const_representable_p.
8052 (aarch64_sve_reg_or_dup_imm): New predicate.
8053 * config/aarch64/aarch64-sve.md (vec_extract<vpred><Vel>): Use
8054 gen_vcond_mask_<mode><vpred> instead of
8055 gen_aarch64_sve_dup<mode>_const.
8056 (vcond_mask_<mode><vpred>): Turn into a define_expand that
8057 accepts aarch64_sve_reg_or_dup_imm and aarch64_simd_reg_or_zero
8058 for operands 1 and 2 respectively. Force operand 2 into a
8059 register if operand 1 is a register. Fold old define_insn...
8060 (aarch64_sve_dup<mode>_const): ...and this define_insn...
8061 (*vcond_mask_<mode><vpred>): ...into this new pattern. Handle
8062 floating-point constants that can be moved as integers. Add
8063 alternatives for MOV /M and FMOV /M.
8064 (vcond<mode><v_int_equiv>, vcondu<mode><v_int_equiv>)
8065 (vcond<mode><v_fp_equiv>): Accept nonmemory_operand for operands
8066 1 and 2 respectively.
8067 * config/aarch64/constraints.md (Ufc): Handle vectors as well
8068 as scalars.
8069 (vss): New constraint.
8070
8071 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8072
8073 * config/aarch64/predicates.md (aarch64_sve_float_maxmin_immediate)
8074 (aarch64_sve_float_maxmin_operand): New predicates.
8075 * config/aarch64/constraints.md (vsB): New constraint.
8076 (vsM): Fix typo.
8077 * config/aarch64/iterators.md (sve_pred_fp_rhs2_operand): Use
8078 aarch64_sve_float_maxmin_operand for UNSPEC_COND_FMAXNM and
8079 UNSPEC_COND_FMINNM.
8080 * config/aarch64/aarch64-sve.md (<maxmin_uns><SVE_F:mode>3):
8081 Use aarch64_sve_float_maxmin_operand for operand 2.
8082 (*<SVE_COND_FP_MAXMIN_PUBLIC:optab><SVE_F:mode>3): Likewise.
8083 Add alternatives for the constant forms.
8084
8085 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8086
8087 * config/aarch64/constraints.md (vsb): New constraint.
8088 (vsm): Generalize description.
8089 * config/aarch64/iterators.md (SVE_INT_BINARY_IMM): New code
8090 iterator.
8091 (sve_imm_con): Handle smax, smin, umax and umin.
8092 (sve_imm_prefix): New code attribute.
8093 * config/aarch64/predicates.md (aarch64_sve_vsb_immediate)
8094 (aarch64_sve_vsb_operand): New predicates.
8095 (aarch64_sve_mul_immediate): Rename to...
8096 (aarch64_sve_vsm_immediate): ...this.
8097 (aarch64_sve_mul_operand): Rename to...
8098 (aarch64_sve_vsm_operand): ...this.
8099 * config/aarch64/aarch64-sve.md (mul<mode>3): Generalize to...
8100 (<SVE_INT_BINARY_IMM:optab><SVE_I:mode>3): ...this.
8101 (*mul<mode>3, *post_ra_mul<mode>3): Generalize to...
8102 (*<SVE_INT_BINARY_IMM:optab><SVE_I:mode>3)
8103 (*post_ra_<SVE_INT_BINARY_IMM:optab><SVE_I:mode>3): ...these and
8104 add movprfx support for the immediate alternatives.
8105 (<su><maxmin><mode>3, *<su><maxmin><mode>3): Delete in favor
8106 of the above.
8107 (*<SVE_INT_BINARY_SD:optab><SVE_SDI:mode>3): Fix incorrect predicate
8108 for operand 3.
8109
8110 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8111
8112 * config/aarch64/predicates.md (aarch64_simd_imm_one): New predicate.
8113 * config/aarch64/aarch64-sve.md (*cnot<mode>): New pattern.
8114 (*cond_cnot<mode>_2, *cond_cnot<mode>_any): Likewise.
8115
8116 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8117
8118 * config/aarch64/iterators.md (SVE_INT_UNARY): Add clrsb and clz.
8119 (optab, sve_int_op): Handle them.
8120 * config/aarch64/aarch64-sve.md: Expand comment.
8121
8122 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8123
8124 * config/aarch64/predicates.md (const_1_to_3_operand): New predicate.
8125 * config/aarch64/aarch64-sve.md (*aarch64_adr_uxtw)
8126 (*aarch64_adr<mode>_shift, *aarch64_adr_shift_uxtw): New patterns.
8127
8128 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8129
8130 * config/aarch64/aarch64.c (aarch64_expand_sve_const_pred_eor)
8131 (aarch64_expand_sve_const_pred_trn): New functions.
8132 (aarch64_expand_sve_const_pred_1): Add a recurse_p parameter and
8133 use the above functions when the parameter is true.
8134 (aarch64_expand_sve_const_pred): Update call accordingly.
8135 * config/aarch64/aarch64-sve.md (*aarch64_sve_<perm_insn><mode>):
8136 Rename to...
8137 (@aarch64_sve_<perm_insn><mode>): ...this.
8138
8139 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8140
8141 * config/aarch64/aarch64-protos.h (aarch64_sve_same_pred_for_ptest_p):
8142 Declare.
8143 * config/aarch64/aarch64.c (aarch64_sve_same_pred_for_ptest_p)
8144 (aarch64_sve_emit_int_cmp): New functions.
8145 (aarch64_convert_sve_data_to_pred): Use aarch64_sve_emit_int_cmp.
8146 (aarch64_sve_cmp_operand_p, aarch64_emit_sve_ptrue_op_cc): Delete.
8147 (aarch64_expand_sve_vec_cmp_int): Use aarch64_sve_emit_int_cmp.
8148 * config/aarch64/aarch64.md (UNSPEC_MERGE_PTRUE): Delete.
8149 (UNSPEC_PRED_Z): New unspec.
8150 (set_clobber_cc_nzc): Delete.
8151 * config/aarch64/aarch64-sve.md: Add a block comment about
8152 UNSPEC_PRED_Z.
8153 (*cmp<SVE_INT_CMP:cmp_op><mode>): Rename to...
8154 (@aarch64_pred_cmp<SVE_INT_CMP:cmp_op><mode>): ...this, replacing
8155 the old pattern with that name. Use UNSPEC_PRED_Z instead of
8156 UNSPEC_MERGE_PTRUE.
8157 (*cmp<SVE_INT_CMP:cmp_op><mode>_cc): Use UNSPEC_PRED_Z instead of
8158 UNSPEC_MERGE_PTRUE. Use aarch64_sve_same_pred_for_ptest_p to
8159 check for compatible predicates.
8160 (*cmp<cmp_op><SVE_INT_CMP:mode>_ptest): Likewise.
8161 (*cmp<cmp_op><mode>_and): Match a known-ptrue UNSPEC_PRED_Z instead
8162 of UNSPEC_MERGE_PTRUE. Split into the new form of predicated
8163 comparisons above.
8164
8165 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8166
8167 * config/aarch64/aarch64.md (UNSPEC_PRED_X): New unspec.
8168 * config/aarch64/aarch64-sve.md: Add a section describing it.
8169 (@aarch64_pred_mov<mode>, @aarch64_pred_mov<mode>)
8170 (<SVE_INT_UNARY:optab><mode>2, *<SVE_INT_UNARY:optab><mode>2)
8171 (aarch64_<su>abd<mode>_3, mul<SVE_I:mode>3, *mul<SVE_I:mode>3)
8172 (<su>mul<mode>3_highpart, *<su>mul<mode>3_highpart)
8173 (<SVE_INT_BINARY:optab><mode>3, *<SVE_INT_BINARY:optab><mode>3)
8174 (*bic<mode>3, v<ASHIFT:optab><mode>3, *v<ASHIFT:optab><mode>3)
8175 (<su><maxmin><mode>3, *<su><maxmin><mode>3, *madd<SVE_I:mode>)
8176 (*msub<SVE_I:mode>3, *aarch64_sve_rev64<mode>)
8177 (*aarch64_sve_rev32<mode>, *aarch64_sve_rev16vnx16qi): Use
8178 UNSPEC_PRED_X instead of UNSPEC_MERGE_PTRUE.
8179 * config/aarch64/aarch64-sve2.md (<u>avg<mode>3_floor)
8180 (<u>avg<mode>3_ceil, *<sur>h<addsub><mode>): Likewise.
8181 * config/aarch64/aarch64.c (aarch64_split_sve_subreg_move)
8182 (aarch64_evpc_rev_local): Update accordingly.
8183
8184 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8185
8186 * config/aarch64/iterators.md (VNx4SI_ONLY, VNx2DF_ONLY): New mode
8187 iterators.
8188 (SVE_BHSI, SVE_SDI): Tweak comment.
8189 (SVE_HSDI): Likewise. Fix definition.
8190 (SVE_SDF): New mode iterator.
8191 (elem_bits): New mode attribute.
8192 (SVE_COND_FCVT): New int iterator.
8193 * config/aarch64/aarch64-sve.md
8194 (*<SVE_COND_ICVTF:optab>v16hsf<SVE_HSDI:mode>2)
8195 (*<SVE_COND_ICVTF:optab>vnx4sf<SVE_SDI:mode>2)
8196 (*<SVE_COND_ICVTF:optab>vnx2df<SVE_SDI:mode>2): Merge into...
8197 (*aarch64_sve_<SVE_COND_ICVTF:optab>_nontrunc<SVE_F:mode><SVE_HSDI:mode>)
8198 (*aarch64_sve_<SVE_COND_ICVTF:optab>_trunc<VNx2DF_ONLY:mode><VNx4SI_ONLY:mode>):
8199 ...these new patterns.
8200 (*<SVE_COND_FCVTI:optab><SVE_HSDI:mode>vnx8hf2)
8201 (*<SVE_COND_FCVTI:optab><SVE_SDI:mode>vnx4sf2)
8202 (aarch64_sve_<SVE_COND_FCVTI:optab><SVE_SDI:mode>vnx2df2):
8203 Merge into...
8204 (*aarch64_sve_<SVE_COND_FCVTI:optab>_nonextend<SVE_HSDI:mode><SVE_F:mode>)
8205 (aarch64_sve_<SVE_COND_FCVTI:optab>_extend<VNx4SI_ONLY:mode><VNx2DF_ONLY:mode>):
8206 ...these new patterns.
8207 (vec_unpack<su_optab>_float_<perm_hilo>_vnx4si): Update accordingly.
8208 (*trunc<Vwide><SVE_SDF:mode>2): Replace with...
8209 (*aarch64_sve_<SVE_COND_FCVT:optab>_trunc<SVE_SDF:mode><SVE_HSF:mode>):
8210 ...this new pattern.
8211 (aarch64_sve_extend<SVE_HSDF:mode><Vwide>2): Replace with...
8212 (aarch64_sve_<SVE_COND_FCVT:optab>_nontrunc<SVE_HSF:mode><SVE_SDF:mode>):
8213 ...this new pattern.
8214 (vec_unpacks_<perm_hilo>_<mode>): Update accordingly.
8215
8216 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8217
8218 * config/aarch64/aarch64.md (UNSPEC_FLOAT_CONVERT): Delete.
8219 * config/aarch64/iterators.md (UNSPEC_COND_FCVT, UNSPEC_COND_FCVTZS)
8220 (UNSPEC_COND_FCVTZU, UNSPEC_COND_SCVTF, UNSPEC_COND_UCVTF): New
8221 unspecs.
8222 (optab, su): Handle them.
8223 (SVE_COND_FCVTI, SVE_COND_ICVTF): New int iterators.
8224 * config/aarch64/aarch64-sve.md
8225 (<fix_trunc_optab><SVE_F:mode><v_int_equiv>2): Replace with...
8226 (<SVE_COND_FCVTI:optab><SVE_F:mode><v_int_equiv>2): ...this.
8227 (*<fix_trunc_optab>v16hsf<:SVE_HSDImode>2): Replace with...
8228 (*<SVE_COND_FCVTI:optab>v16hsf<SVE_F:mode>2): ...this.
8229 (*<fix_trunc_optab>vnx4sf<SVE_SDI:mode>2): Replace with...
8230 (*<SVE_COND_FCVTI:optab>vnx4sf<SVE_SDI:mode>2): ...this.
8231 (*<fix_trunc_optab>vnx2df<SVE_SDI:mode>2): Replace with...
8232 (*<SVE_COND_FCVTI:optab>vnx2df<SVE_SDI:mode>2): ...this.
8233 (vec_pack_<su>fix_trunc_vnx2df): Use SVE_COND_FCVTI instead of
8234 FIXUORS.
8235 (<FLOATUORS:optab><v_int_equiv><SVE_F:mode>2): Replace with...
8236 (<SVE_COND_ICVTF:optab><v_int_equiv><SVE_F:mode>2): ...this.
8237 (*<FLOATUORS:optab><SVE_HSDI:mode>vnx8hf2): Replace with...
8238 (*<SVE_COND_ICVTF:optab><SVE_HSDI:mode>vnx8hf2): ...this.
8239 (*<FLOATUORS:optab><SVE_SDI:mode>vnx4sf2): Replace with...
8240 (*<SVE_COND_ICVTF:optab><SVE_SDI:mode>vnx4sf2): ...this.
8241 (aarch64_sve_<FLOATUORS:optab><SVE_SDI:mode>vnx2df2): Replace with...
8242 (aarch64_sve_<SVE_COND_ICVTF:optab><SVE_SDI:mode>vnx2df2): ...this.
8243 (vec_unpack<su_optab>_float_<perm_hilo>_vnx4si): Pass a GP strictness
8244 operand to aarch64_sve_<SVE_COND_ICVTF:optab><SVE_SDI:mode>vnx2df2.
8245 (vec_pack_trunc_<SVE_HSF:Vwide>, *trunc<Vwide><SVE_HSF:mode>2)
8246 (aarch64_sve_extend<mode><Vwide>2): Use UNSPEC_COND_FCVT instead
8247 of UNSPEC_FLOAT_CONVERT.
8248 (vec_unpacks_<perm_hilo>_<mode>): Pass a GP strictness operand to
8249 aarch64_sve_extend<mode><Vwide>2.
8250
8251 2019-08-14 Richard Biener <rguenther@suse.de>
8252
8253 PR target/91154
8254 * config/i386/i386-features.c
8255 (dimode_scalar_chain::compute_convert_gain): Compute and dump
8256 individual instruction gain. Fix reg-reg copy GRP cost. Use
8257 ix86_cost->sse_op for vector instruction costs.
8258
8259 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8260
8261 * config/aarch64/iterators.md (UNSPEC_COND_FCMUO): New unspec.
8262 (cmp_op): Handle it.
8263 (SVE_COND_FP_CMP): Rename to...
8264 (SVE_COND_FP_CMP_I0): ...this.
8265 (SVE_FP_CMP): Remove.
8266 * config/aarch64/aarch64-sve.md
8267 (*fcm<SVE_FP_CMP:cmp_op><SVE_F:mode>): Replace with...
8268 (*fcm<SVE_COND_FP_CMP_I0:cmp_op><SVE_F:mode>): ...this new pattern,
8269 using unspecs to represent the comparison.
8270 (*fcmuo<SVE_F:mode>): Use UNSPEC_COND_FCMUO.
8271 (*fcm<cmp_op><mode>_and_combine, *fcmuo<mode>_and_combine): Update
8272 accordingly.
8273 * config/aarch64/aarch64.c (aarch64_emit_sve_ptrue_op): Delete.
8274 (aarch64_unspec_cond_code): Move after integer code. Handle
8275 UNORDERED.
8276 (aarch64_emit_sve_predicated_cond): Replace with...
8277 (aarch64_emit_sve_fp_cond): ...this new function.
8278 (aarch64_emit_sve_or_conds): Replace with...
8279 (aarch64_emit_sve_or_fp_conds): ...this new function.
8280 (aarch64_emit_sve_inverted_cond): Replace with...
8281 (aarch64_emit_sve_invert_fp_cond): ...this new function.
8282 (aarch64_expand_sve_vec_cmp_float): Update accordingly.
8283
8284 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8285
8286 * config/aarch64/iterators.md (SVE_HSD): New mode iterator.
8287 (V_FP_EQUIV, v_fp_equiv): Handle VNx8HI and VNx8HF.
8288 * config/aarch64/aarch64-sve.md (vcond<mode><v_fp_equiv>): Use
8289 SVE_HSD instead of SVE_SD.
8290
8291 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8292 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
8293
8294 * config/aarch64/iterators.md (SVE_COND_FP_BINARY_REG): New int
8295 iterator.
8296 (sve_pred_fp_rhs1_operand, sve_pred_fp_rhs1_operand): New int
8297 attributes.
8298 * config/aarch64/aarch64-sve.md (add<SVE_F:mode>3, sub<SVE_F:mode>3)
8299 (mul<SVE_F:mode>3, div<SVE_F:mode>3)
8300 (<SVE_COND_FP_MAXMIN_PUBLIC:optab><SVE_F:mode>3): Merge into...
8301 (<SVE_COND_FP_BINARY:optab><SVE_F:mode>3): ...this new expander.
8302 (*div<SVE_F:mode>3): Generalize to...
8303 (*<SVE_COND_FP_BINARY:optab><SVE_F:mode>3): ...this.
8304
8305 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8306 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
8307
8308 * config/aarch64/aarch64.md (SVE_RELAXED_GP, SVE_STRICT_GP): New
8309 constants.
8310 * config/aarch64/predicates.md (aarch64_sve_gp_strictness): New
8311 predicate.
8312 * config/aarch64/aarch64-protos.h (aarch64_sve_pred_dominates_p):
8313 Declare.
8314 * config/aarch64/aarch64.c (aarch64_sve_pred_dominates_p): New
8315 function.
8316 * config/aarch64/aarch64-sve.md: Add a block comment about the
8317 handling of predicated FP operations.
8318 (<SVE_COND_FP_UNARY:optab><SVE_F:mode>2, add<SVE_F:mode>3)
8319 (sub<SVE_F:mode>3, mul<SVE_F:mode>3, div<SVE_F:mode>3)
8320 (<SVE_COND_FP_MAXMIN_PUBLIC:optab><SVE_F:mode>3)
8321 (<SVE_COND_FP_MAXMIN_PUBLIC:maxmin_uns><SVE_F:mode>3)
8322 (<SVE_COND_FP_TERNARY:optab><SVE_F:mode>4): Add an SVE_RELAXED_GP
8323 operand.
8324 (cond_<SVE_COND_FP_BINARY:optab><SVE_F:mode>)
8325 (cond_<SVE_COND_FP_TERNARY:optab><SVE_F:mode>): Add an SVE_STRICT_GP
8326 operand.
8327 (*<SVE_COND_FP_UNARY:optab><SVE_F:mode>2)
8328 (*cond_<SVE_COND_FP_BINARY:optab><SVE_F:mode>_2)
8329 (*cond_<SVE_COND_FP_BINARY:optab><SVE_F:mode>_3)
8330 (*cond_<SVE_COND_FP_BINARY:optab><SVE_F:mode>_any)
8331 (*fabd<SVE_F:mode>3, *div<SVE_F:mode>3)
8332 (*<SVE_COND_FP_MAXMIN_PUBLIC:optab><SVE_F:mode>3)
8333 (*<SVE_COND_FP_TERNARY:optab><SVE_F:mode>4)
8334 (*cond_<SVE_COND_FP_TERNARY:optab><SVE_F:mode>_2)
8335 (*cond_<SVE_COND_FP_TERNARY:optab><SVE_F:mode>_4)
8336 (*cond_<SVE_COND_FP_TERNARY:optab><SVE_F:mode>_any): Match the
8337 strictness operands. Use aarch64_sve_pred_dominates_p to check
8338 whether the predicate on the conditional operation is suitable
8339 for merging. Split patterns into the canonical equal-predicate form.
8340 (*add<SVE_F:mode>3, *sub<SVE_F:mode>3, *mul<SVE_F:mode>3): Likewise.
8341 Restrict the unpredicated alternatives to SVE_RELAXED_GP.
8342
8343 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8344 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
8345
8346 * config/aarch64/aarch64-sve.md (add<mode>3, *add<mode>3)
8347 (sub<mode>3, *sub<mode>3, *fabd<mode>3, mul<mode>3, *mul<mode>3)
8348 (div<mode>3, *div<mode>3): Use SVE_COND_FP_* unspecs instead of
8349 rtx codes.
8350 (cond_<optab><mode>, *cond_<optab><mode>_2, *cond_<optab><mode>_3)
8351 (*cond_<optab><mode>_any): Add the predicate to the SVE_COND_FP_*
8352 unspecs.
8353
8354 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8355 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
8356
8357 * config/aarch64/aarch64-sve.md (bic<mode>3): Rename to...
8358 (*bic<SVE_I:mode>3): ...this. Match the form that an SVE inverse
8359 actually has, rather than relying on REG_EQUAL notes.
8360 Make the insn operand order match the SVE operand order.
8361 (*<nlogical><PRED_ALL:mode>3): Make the insn operand order match
8362 the SVE operand order.
8363
8364 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8365
8366 * config/aarch64/aarch64.c (aarch64_target_reg): New function.
8367 (aarch64_emit_set_immediate): Likewise.
8368 (aarch64_ptrue_reg): Build a VNx16BI constant and then bitcast it.
8369 (aarch64_pfalse_reg): Likewise.
8370 (aarch64_convert_sve_data_to_pred): New function.
8371 (aarch64_sve_move_pred_via_while): Take an optional target register
8372 and the required register mode.
8373 (aarch64_expand_sve_const_pred_1): New function.
8374 (aarch64_expand_sve_const_pred): Likewise.
8375 (aarch64_expand_mov_immediate): Build an all-true predicate
8376 if the significant bits of the immediate are all true. Use
8377 aarch64_expand_sve_const_pred for all compile-time predicate constants.
8378 (aarch64_mov_operand_p): Force predicate constants to be VNx16BI
8379 before register allocation.
8380 * config/aarch64/aarch64-sve.md (*vec_duplicate<mode>_reg): Use
8381 a VNx16BI PTRUE when splitting the memory alternative.
8382 (vec_duplicate<mode>): Update accordingly.
8383 (*pred_cmp<cmp_op><mode>): Rename to...
8384 (@aarch64_pred_cmp<cmp_op><mode>): ...this.
8385
8386 2019-08-14 Richard Sandiford <richard.sandiford@arm.com>
8387
8388 * config/aarch64/aarch64-protos.h (aarch64_ptrue_all): Declare.
8389 * config/aarch64/aarch64.c (aarch64_ptrue_all): New function.
8390 * config/aarch64/aarch64.md (UNSPEC_PTEST_PTRUE): Delete.
8391 (UNSPEC_PTEST): New unspec.
8392 (SVE_MAYBE_NOT_PTRUE, SVE_KNOWN_PTRUE): New constants.
8393 * config/aarch64/iterators.md (data_bytes): New mode attribute.
8394 * config/aarch64/predicates.md (aarch64_sve_ptrue_flag): New predicate.
8395 * config/aarch64/aarch64-sve.md: Add a new section describing the
8396 handling of UNSPEC_PTEST.
8397 (pred_<LOGICAL:optab><PRED_ALL:mode>3): Rename to...
8398 (@aarch64_pred_<LOGICAL:optab><PRED_ALL:mode>_z): ...this.
8399 (ptest_ptrue<mode>): Replace with...
8400 (aarch64_ptest<mode>): ...this new pattern.
8401 (cbranch<mode>4): Update after above changes.
8402 (*<LOGICAL:optab><PRED_ALL:mode>3_cc): Use UNSPEC_PTEST instead of
8403 UNSPEC_PTEST_PTRUE.
8404 (*cmp<SVE_INT_CMP:cmp_op><SVE_I:mode>_cc): Likewise.
8405 (*cmp<SVE_INT_CMP:cmp_op><SVE_I:mode>_ptest): Likewise.
8406 (*while_ult<GPI:mode><PRED_ALL:mode>_cc): Likewise.
8407
8408 2019-08-14 Xiong Hu Luo <luoxhu@linux.ibm.com>
8409
8410 PR lto/91287
8411 * builtins.c (builtin_with_linkage_p): New function.
8412 * builtins.h (builtin_with_linkage_p): New function.
8413 * symtab.c (write_symbol): Remove redundant assert.
8414 * lto-streamer-out.c (symtab_node::output_to_lto_symbol_table_p):
8415 Remove FIXME and use builtin_with_linkage_p.
8416
8417 2019-08-13 Richard Sandiford <richard.sandiford@arm.com>
8418
8419 PR middle-end/91421
8420 * tree-core.h (function_decl::function_code): Change type to
8421 unsigned int.
8422 * tree.h (DECL_FUNCTION_CODE): Rename old definition to...
8423 (DECL_UNCHECKED_FUNCTION_CODE): ...this.
8424 (DECL_BUILT_IN_CLASS): Make an rvalue macro only.
8425 (DECL_FUNCTION_CODE): New function. Assert that the built-in class
8426 is BUILT_IN_NORMAL.
8427 (DECL_MD_FUNCTION_CODE, DECL_FE_FUNCTION_CODE): New functions.
8428 (set_decl_built_in_function, copy_decl_built_in_function): Likewise.
8429 (fndecl_built_in_p): Change the type of the "name" argument to
8430 unsigned int.
8431 * builtins.c (expand_builtin): Move DECL_FUNCTION_CODE use
8432 after check for DECL_BUILT_IN_CLASS.
8433 * cgraphclones.c (build_function_decl_skip_args): Use
8434 set_decl_built_in_function.
8435 * ipa-param-manipulation.c (ipa_modify_formal_parameters): Likewise.
8436 * ipa-split.c (split_function): Likewise.
8437 * langhooks.c (add_builtin_function_common): Likewise.
8438 * omp-simd-clone.c (simd_clone_create): Likewise.
8439 * tree-streamer-in.c (unpack_ts_function_decl_value_fields): Likewise.
8440 * config/darwin.c (darwin_init_cfstring_builtins): Likewise.
8441 (darwin_fold_builtin): Use DECL_MD_FUNCTION_CODE instead of
8442 DECL_FUNCTION_CODE.
8443 * fold-const.c (operand_equal_p): Compare DECL_UNCHECKED_FUNCTION_CODE
8444 instead of DECL_FUNCTION_CODE.
8445 * lto-streamer-out.c (hash_tree): Use DECL_UNCHECKED_FUNCTION_CODE
8446 instead of DECL_FUNCTION_CODE.
8447 * tree-streamer-out.c (pack_ts_function_decl_value_fields): Likewise.
8448 * print-tree.c (print_node): Use DECL_MD_FUNCTION_CODE when
8449 printing DECL_BUILT_IN_MD. Handle DECL_BUILT_IN_FRONTEND.
8450 * config/aarch64/aarch64-builtins.c (aarch64_expand_builtin)
8451 (aarch64_fold_builtin, aarch64_gimple_fold_builtin): Use
8452 DECL_MD_FUNCTION_CODE instead of DECL_FUNCTION_CODE.
8453 * config/aarch64/aarch64.c (aarch64_builtin_reciprocal): Likewise.
8454 * config/alpha/alpha.c (alpha_expand_builtin, alpha_fold_builtin):
8455 (alpha_gimple_fold_builtin): Likewise.
8456 * config/arc/arc.c (arc_expand_builtin): Likewise.
8457 * config/arm/arm-builtins.c (arm_expand_builtin): Likewise.
8458 * config/avr/avr-c.c (avr_resolve_overloaded_builtin): Likewise.
8459 * config/avr/avr.c (avr_expand_builtin, avr_fold_builtin): Likewise.
8460 * config/bfin/bfin.c (bfin_expand_builtin): Likewise.
8461 * config/c6x/c6x.c (c6x_expand_builtin): Likewise.
8462 * config/frv/frv.c (frv_expand_builtin): Likewise.
8463 * config/gcn/gcn.c (gcn_expand_builtin_1): Likewise.
8464 (gcn_expand_builtin): Likewise.
8465 * config/i386/i386-builtins.c (ix86_builtin_reciprocal): Likewise.
8466 (fold_builtin_cpu): Likewise.
8467 * config/i386/i386-expand.c (ix86_expand_builtin): Likewise.
8468 * config/i386/i386.c (ix86_fold_builtin): Likewise.
8469 (ix86_gimple_fold_builtin): Likewise.
8470 * config/ia64/ia64.c (ia64_fold_builtin): Likewise.
8471 (ia64_expand_builtin): Likewise.
8472 * config/iq2000/iq2000.c (iq2000_expand_builtin): Likewise.
8473 * config/mips/mips.c (mips_expand_builtin): Likewise.
8474 * config/msp430/msp430.c (msp430_expand_builtin): Likewise.
8475 * config/nds32/nds32-intrinsic.c (nds32_expand_builtin_impl): Likewise.
8476 * config/nios2/nios2.c (nios2_expand_builtin): Likewise.
8477 * config/nvptx/nvptx.c (nvptx_expand_builtin): Likewise.
8478 * config/pa/pa.c (pa_expand_builtin): Likewise.
8479 * config/pru/pru.c (pru_expand_builtin): Likewise.
8480 * config/riscv/riscv-builtins.c (riscv_expand_builtin): Likewise.
8481 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
8482 Likewise.
8483 * config/rs6000/rs6000-call.c (htm_expand_builtin): Likewise.
8484 (altivec_expand_dst_builtin, altivec_expand_builtin): Likewise.
8485 (rs6000_gimple_fold_builtin, rs6000_expand_builtin): Likewise.
8486 * config/rs6000/rs6000.c (rs6000_builtin_md_vectorized_function)
8487 (rs6000_builtin_reciprocal): Likewise.
8488 * config/rx/rx.c (rx_expand_builtin): Likewise.
8489 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Likewise.
8490 * config/s390/s390.c (s390_expand_builtin): Likewise.
8491 * config/sh/sh.c (sh_expand_builtin): Likewise.
8492 * config/sparc/sparc.c (sparc_expand_builtin): Likewise.
8493 (sparc_fold_builtin): Likewise.
8494 * config/spu/spu-c.c (spu_resolve_overloaded_builtin): Likewise.
8495 * config/spu/spu.c (spu_expand_builtin): Likewise.
8496 * config/stormy16/stormy16.c (xstormy16_expand_builtin): Likewise.
8497 * config/tilegx/tilegx.c (tilegx_expand_builtin): Likewise.
8498 * config/tilepro/tilepro.c (tilepro_expand_builtin): Likewise.
8499 * config/xtensa/xtensa.c (xtensa_fold_builtin): Likewise.
8500 (xtensa_expand_builtin): Likewise.
8501
8502 2019-08-13 Richard Sandiford <richard.sandiford@arm.com>
8503
8504 PR middle-end/91421
8505 * attribs.c (decl_attributes): Check the DECL_BUILT_IN_CLASS
8506 before the DECL_FUNCTION_CODE.
8507 * calls.c (maybe_warn_alloc_args_overflow): Use fndecl_built_in_p
8508 to check for a BUILT_IN_ALLOCA call.
8509 * ipa-cp.c (ipa_get_indirect_edge_target_1): Likewise for
8510 BUILT_IN_UNREACHABLE. Don't check for a FUNCTION_TYPE.
8511 * ipa-devirt.c (possible_polymorphic_call_target_p): Likewise.
8512 * ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
8513 * gimple-ssa-isolate-paths.c (is_addr_local): Check specifically
8514 for BUILT_IN_NORMAL functions.
8515 * trans-mem.c (expand_block_edges): Use gimple_call_builtin_p to
8516 test for BUILT_IN_TM_ABORT.
8517 * tree-ssa-ccp.c (optimize_stack_restore): Use fndecl_built_in_p
8518 to check for a BUILT_IN_STACK_RESTORE call.
8519 (optimize_stdarg_builtin): Remove redundant check for GIMPLE_CALL.
8520 * tree-ssa-threadedge.c
8521 (record_temporary_equivalences_from_stmts_at_dest): Check for a
8522 BUILT_IN_NORMAL decl before checking its DECL_FUNCTION_CODE.
8523 * tree-vect-patterns.c (vect_recog_pow_pattern): Use a positive
8524 test for a BUILT_IN_NORMAL call instead of a negative test for
8525 an internal function call.
8526
8527 2019-08-13 Richard Sandiford <richard.sandiford@arm.com>
8528
8529 * tree.h (build_vector_a_then_b): Declare.
8530 * tree.c (build_vector_a_then_b): New function.
8531 * fold-const-call.c (fold_while_ult): Likewise.
8532 (fold_const_call): Use it to handle IFN_WHILE_ULT.
8533 * config/aarch64/aarch64-protos.h (AARCH64_FOR_SVPATTERN): New macro.
8534 (aarch64_svpattern): New enum.
8535 * config/aarch64/aarch64-sve.md (mov<PRED_ALL:mode>): Pass
8536 constants through aarch64_expand_mov_immediate.
8537 (*aarch64_sve_mov<PRED_ALL:mode>): Use aarch64_mov_operand rather
8538 than general_operand as the predicate for operand 1.
8539 (while_ult<GPI:mode><PRED_ALL:mode>): Add a '@' marker.
8540 * config/aarch64/aarch64.c (simd_immediate_info::PTRUE): New
8541 insn_type.
8542 (simd_immediate_info::simd_immediate_info): New overload that
8543 takes a scalar_int_mode and an svpattern.
8544 (simd_immediate_info::u): Add a "pattern" field.
8545 (svpattern_token): New function.
8546 (aarch64_get_sve_pred_bits, aarch64_widest_sve_pred_elt_size)
8547 (aarch64_partial_ptrue_length, aarch64_svpattern_for_vl)
8548 (aarch64_sve_move_pred_via_while): New functions.
8549 (aarch64_expand_mov_immediate): Try using
8550 aarch64_sve_move_pred_via_while for predicates that contain N ones
8551 followed by M zeros but that do not correspond to a VLnnn pattern.
8552 (aarch64_sve_pred_valid_immediate): New function.
8553 (aarch64_simd_valid_immediate): Use it instead of dealing directly
8554 with PTRUE and PFALSE.
8555 (aarch64_output_sve_mov_immediate): Handle new simd_immediate_info
8556 forms.
8557
8558 2019-08-13 Iain Sandoe <iain@sandoe.co.uk>
8559
8560 * config/darwin.c (machopic_indirect_call_target): Rename symbol stub
8561 flag.
8562 (darwin_override_options): Likewise.
8563 * config/darwin.h: Likewise.
8564 * config/darwin.opt: Likewise.
8565 * config/i386/i386.c (output_pic_addr_const): Likewise.
8566 * config/rs6000/darwin.h: Likewise.
8567 * config/rs6000/rs6000.c (rs6000_call_darwin_1): Likewise.
8568 * config/i386/darwin.h (TARGET_MACHO_PICSYM_STUBS): Rename to ...
8569 ... this TARGET_MACHO_SYMBOL_STUBS.
8570 (FUNCTION_PROFILER):Likewise.
8571 * config/i386/i386.h: Likewise.
8572
8573 2019-08-13 Uroš Bizjak <ubizjak@gmail.com>
8574
8575 * config/i386/i386-expand.c (ix86_expand_vector_extract)
8576 <case E_V2SImode>: Use vec_extr path for
8577 TARGET_MMX_WITH_SSE && TARGET_SSE4_1.
8578 <case E_V8QImode>: Ditto.
8579 * config/i386/mmx.md (*mmx_pextrw_zext): Rename from mmx_pextrw.
8580 Use SWI48 mode iterator. Use %k to output operand 0.
8581 (*mmx_pextrw): New insn pattern.
8582 (*mmx_pextrb): Ditto.
8583 (*mmx_pextrb_zext): Ditto.
8584
8585 2019-08-13 Jonathan Wakely <jwakely@redhat.com>
8586
8587 * target.def (libc_has_function, libc_has_fast_function): Improve
8588 documentation strings.
8589 * doc/tm.texi: Regenerate.
8590
8591 2019-08-13 Caroline Tice <cmtice@google.com>
8592
8593 PR other/91396
8594 * config/gnu-user.h (GNU_USER_TARGET_ENDFILE_SPEC): Only add the
8595 vtv_end.o or vtv_end_preinit.o files if !static.
8596
8597 2019-08-13 Olivier Hainque <hainque@adacore.com>
8598
8599 * rtl.h (tablejump_casesi_pattern): Move declaration to proper spot.
8600
8601 2019-08-13 Olivier Hainque <hainque@adacore.com>
8602
8603 * rtlanal.c (tablejump_casesi_pattern): New function, to
8604 determine if a tablejump insn is a casesi dispatcher. Extracted
8605 from patch_jump_insn.
8606 * rtl.h (tablejump_casesi_pattern): Declare.
8607 * cfgrtl.c (patch_jump_insn): Use it.
8608 * dwarf2cfi.c (create_trace_edges): Use it.
8609
8610 2019-08-13 Wilco Dijkstra <wdijkstr@arm.com>
8611
8612 PR target/81800
8613 * gcc/config/aarch64/aarch64.md (lrint): Disable lrint pattern if GPF
8614 operand is larger than a long int.
8615
8616 2019-08-13 Richard Sandiford <richard.sandiford@arm.com>
8617
8618 * machmode.h (opt_mode::else_mode): New function.
8619 (opt_mode::else_blk): Use it.
8620 * config/aarch64/aarch64-protos.h (aarch64_vq_mode): Declare.
8621 (aarch64_full_sve_mode, aarch64_sve_ld1rq_operand_p): Likewise.
8622 (aarch64_gen_stepped_int_parallel): Likewise.
8623 (aarch64_stepped_int_parallel_p): Likewise.
8624 (aarch64_expand_mov_immediate): Remove the optional gen_vec_duplicate
8625 argument.
8626 * config/aarch64/aarch64.c
8627 (aarch64_expand_sve_widened_duplicate): Delete.
8628 (aarch64_expand_sve_dupq, aarch64_expand_sve_ld1rq): New functions.
8629 (aarch64_expand_sve_const_vector): Rewrite to handle more cases.
8630 (aarch64_expand_mov_immediate): Remove the optional gen_vec_duplicate
8631 argument. Use early returns in the !CONST_INT_P handling.
8632 Pass all SVE data vectors to aarch64_expand_sve_const_vector rather
8633 than handling some inline.
8634 (aarch64_full_sve_mode, aarch64_vq_mode): New functions, split out
8635 from...
8636 (aarch64_simd_container_mode): ...here.
8637 (aarch64_gen_stepped_int_parallel, aarch64_stepped_int_parallel_p)
8638 (aarch64_sve_ld1rq_operand_p): New functions.
8639 * config/aarch64/predicates.md (descending_int_parallel)
8640 (aarch64_sve_ld1rq_operand): New predicates.
8641 * config/aarch64/constraints.md (UtQ): New constraint.
8642 * config/aarch64/aarch64.md (UNSPEC_REINTERPRET): New unspec.
8643 * config/aarch64/aarch64-sve.md (mov<SVE_ALL:mode>): Remove the
8644 gen_vec_duplicate from call to aarch64_expand_mov_immediate.
8645 (@aarch64_sve_reinterpret<mode>): New expander.
8646 (*aarch64_sve_reinterpret<mode>): New pattern.
8647 (@aarch64_vec_duplicate_vq<mode>_le): New pattern.
8648 (@aarch64_vec_duplicate_vq<mode>_be): Likewise.
8649 (*sve_ld1rq<Vesize>): Replace with...
8650 (@aarch64_sve_ld1rq<mode>): ...this new pattern.
8651
8652 2019-08-13 Wilco Dijkstra <wdijkstr@arm.com>
8653
8654 * config/aarch64/aarch64.c (generic_tunings): Set function alignment to
8655 16:12.
8656
8657 2019-08-13 Jozef Lawrynowicz <jozef.l@mittosystems.com>
8658
8659 * config/msp430/driver-msp430.c (msp430_set_driver_var): New.
8660 * config/msp430/msp430-devices.c (canonicalize_path_dirsep): New.
8661 (msp430_check_path_for_devices): New.
8662 (parse_devices_csv_1): New.
8663 (parse_devices_csv): New.
8664 (msp430_extract_mcu_data): Try to find devices.csv and search for the
8665 MCU data in devices.csv before using the hard-coded data.
8666 Warn if devices.csv isn't found and the MCU wasn't found in the
8667 hard-coded data either.
8668 * config/msp430/msp430.h (DRIVER_SELF_SPECS): Call
8669 msp430_set_driver_var for -mno-warn-devices-csv and -mdevices-csv-loc.
8670 Search for devices.csv on -I and -L paths.
8671 (EXTRA_SPEC_FUNCTIONS): Add msp430_check_path_for_devices and
8672 msp430_set_driver_var.
8673 * config/msp430/msp430.opt: Add -mwarn-devices-csv and
8674 -mdevices-csv-loc=.
8675 * doc/invoke.texi (-mmcu): Document that -I and -L paths are
8676 searched for devices.csv.
8677 (mwarn-devices-csv): Document option.
8678
8679 2019-08-13 Richard Sandiford <richard.sandiford@arm.com>
8680
8681 * config/aarch64/aarch64-protos.h (aarch64_output_ptrue): Delete.
8682 * config/aarch64/aarch64-sve.md (*aarch64_sve_mov<PRED_ALL:mode>):
8683 Use a single Dn alternative instead of separate Dz and Dm
8684 alternatives. Use aarch64_output_sve_move_immediate.
8685 * config/aarch64/aarch64.c (aarch64_sve_element_int_mode): New
8686 function.
8687 (aarch64_simd_valid_immediate): Fill in the simd_immediate_info
8688 for predicates too.
8689 (aarch64_output_sve_mov_immediate): Handle predicate modes.
8690 (aarch64_output_ptrue): Delete.
8691
8692 2019-08-13 Richard Sandiford <richard.sandiford@arm.com>
8693
8694 * config/aarch64/aarch64.c (simd_immediate_info::insn_type): Add
8695 INDEX.
8696 (simd_immediate_info::value, simd_immediate_info::step)
8697 (simd_immediate_info::modifier, simd_immediate_info::shift): Replace
8698 with...
8699 (simd_immediate_info::u): ...this new union.
8700 (simd_immediate_info::simd_immediate_info): Update accordingly.
8701 (aarch64_output_simd_mov_immediate): Likewise.
8702 (aarch64_output_sve_mov_immediate): Likewise.
8703
8704 2019-08-13 Jozef Lawrynowicz <jozef.l@mittosystems.com>
8705
8706 * config.gcc (msp430*-*-*): Add msp430-devices.o to extra_objs and
8707 extra_gcc_objs.
8708 * config/msp430/driver-msp430.c: Remove msp430_mcu_data.
8709 (msp430_select_cpu): New spec function.
8710 (msp430_select_hwmult_lib): Use msp430_extract_mcu_data to extract
8711 MCU data.
8712 * config/msp430/msp430-devices.c: New file.
8713 * config/msp430/msp430-devices.h: New file.
8714 * config/msp430/msp430.c: Remove msp430_mcu_data.
8715 (msp430_option_override): Use msp430_extract_mcu_data to extract
8716 MCU data.
8717 (msp430_use_f5_series_hwmult): Likewise.
8718 (use_32bit_hwmult): Likewise.
8719 (msp430_no_hwmult): Likewise.
8720 * config/msp430/msp430.h (ASM_SPEC): Don't pass -mmcu to the
8721 assembler.
8722 (DRIVER_SELF_SPECS): Call msp430_select_cpu if -mmcu is used without
8723 and -mcpu option.
8724 (EXTRA_SPEC_FUNCTIONS): Add msp430_select_cpu.
8725 * config/msp430/t-msp430: Add rule to build msp430-devices.o.
8726 Remove hard-coded MCU multilib data.
8727
8728 2019-08-13 Richard Sandiford <richard.sandiford@arm.com>
8729
8730 * config/aarch64/aarch64.c (aarch64_classify_vector_mode): Switch
8731 based on the mode instead of testing properties of it.
8732
8733 2019-08-13 Richard Sandiford <richard.sandiford@arm.com>
8734
8735 * doc/md.texi: Document the x and y constraints for AArch64.
8736 * config/aarch64/aarch64.h (FP_LO8_REGNUM_P): New macro.
8737 (FP_LO8_REGS): New reg_class.
8738 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Add an entry for FP_LO8_REGS.
8739 * config/aarch64/aarch64.c (aarch64_hard_regno_nregs)
8740 (aarch64_regno_regclass, aarch64_class_max_nregs): Handle FP_LO8_REGS.
8741 * config/aarch64/predicates.md (aarch64_simd_register): Use
8742 FP_REGNUM_P instead of checking the classes manually.
8743 * config/aarch64/constraints.md (y): New constraint.
8744
8745 2019-08-13 Richard Sandiford <richard.sandiford@arm.com>
8746
8747 * config/aarch64/iterators.md (perm_insn): Include the "1"/"2" suffix.
8748 (perm_hilo): Remove UNSPEC_ZIP*, UNSEPC_TRN* and UNSPEC_UZP*.
8749 * config/aarch64/aarch64-simd.md
8750 (aarch64_<PERMUTE:perm_insn><PERMUTE:perm_hilo><mode>): Rename to..
8751 (aarch64_<PERMUTE:perm_insn><mode>): ...this and remove perm_hilo
8752 from the asm template.
8753 * config/aarch64/aarch64-sve.md
8754 (aarch64_<perm_insn><perm_hilo><PRED_ALL:mode>): Rename to..
8755 (aarch64_<perm_insn><PRED_ALL:mode>): ...this and remove perm_hilo
8756 from the asm template.
8757 (aarch64_<perm_insn><perm_hilo><SVE_ALL:mode>): Rename to..
8758 (aarch64_<perm_insn><SVE_ALL:mode>): ...this and remove perm_hilo
8759 from the asm template.
8760 * config/aarch64/aarch64-simd-builtins.def: Update comment.
8761
8762 2019-08-13 Martin Liska <mliska@suse.cz>
8763
8764 * value-prof.c (gimple_ic_transform): Add new line.
8765 Print details with MSG_NOTE.
8766
8767 2019-08-13 Martin Liska <mliska@suse.cz>
8768
8769 * doc/invoke.texi: Document automatic detection of jobserver.
8770 * lto-wrapper.c (run_gcc): Detect jobserver always.
8771
8772 2019-08-13 Uroš Bizjak <ubizjak@gmail.com>
8773
8774 * config/i386/i386-expand.c (ix86_expand_vector_set)
8775 <case E_V2SImode>: Use vec_merge path for
8776 TARGET_MMX_WITH_SSE && TARGET_SSE4_1.
8777 <case E_V8QImode>: Ditto.
8778 * config/i386/mmx.md (*mmx_pinsrd): New insn pattern.
8779 (*mmx_pinsrb): Ditto.
8780
8781 2019-08-12 Jakub Jelinek <jakub@redhat.com>
8782
8783 PR target/83250
8784 PR target/91340
8785 * config/i386/avxintrin.h (_mm256_zextpd128_pd256,
8786 _mm256_zextps128_ps256, _mm256_zextsi128_si256): New intrinsics.
8787 * config/i386/avx512fintrin.h (_mm512_zextpd128_pd512,
8788 _mm512_zextps128_ps512, _mm512_zextsi128_si512, _mm512_zextpd256_pd512,
8789 _mm512_zextps256_ps512, _mm512_zextsi256_si512): Likewise.
8790
8791 2019-08-12 Richard Biener <rguenther@suse.de>
8792
8793 PR lto/91375
8794 * tree.c (free_lang_data_in_type): Do not free TYPE_BINFO dependent on
8795 flag_devirtualize.
8796
8797 2019-08-12 Richard Biener <rguenther@suse.de>
8798
8799 PR driver/91130
8800 * lto-wrapper.c (get_options_from_collect_gcc_options): Remove
8801 lang_mask option, always use CL_DRIVER.
8802 (get_options_from_collect_gcc_options): Adjust.
8803 (find_and_merge_options): Likewise.
8804 (run_gcc): Likewise.
8805
8806 2019-08-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
8807
8808 * ipa-predicate.c (add_condition): Restore inverted test.
8809
8810 2019-08-10 Jakub Jelinek <jakub@redhat.com>
8811
8812 * tree-core.h (enum omp_clause_code): Add OMP_CLAUSE_DEVICE_TYPE.
8813 (enum omp_clause_device_type_kind): New enum.
8814 (struct tree_omp_clause): Add subcode.device_type_kind.
8815 * tree.h (OMP_CLAUSE_DEVICE_TYPE_KIND): Define.
8816 * tree.c (omp_clause_num_ops, omp_clause_code_name): Add entries
8817 for device_type clause.
8818 (walk_tree_1): Handle OMP_CLAUSE_DEVICE_TYPE.
8819 * tree-pretty-print.c (dump_omp_clause): Likewise.
8820
8821 PR target/91408
8822 * config/i386/mmx.md (usadv8qi): Use register_operand instead of
8823 vector_operand.
8824
8825 2019-08-09 Vladimir Makarov <vmakarov@redhat.com>
8826
8827 * reload1.c (finish_spills): Do not check ira_conflicts_p when
8828 handling spilled pseudos.
8829
8830 2019-08-09 Richard Earnshaw <rearnsha@arm.com>
8831
8832 PR target/91386
8833 * config/aarch64/aarch64.c (aarch64_gen_adjusted_ldpstp): Use copy_rtx
8834 to preserve the contents of the original insns.
8835
8836 2019-08-09 Richard Earnshaw <rearnsha@arm.com>
8837
8838 * config/arm/arm.md (addsi3_compare_op1): Add 16-bit thumb-2 variants.
8839 (addsi3_compare_op2): Likewise.
8840
8841 2019-08-09 Martin Liska <mliska@suse.cz>
8842
8843 * alias.c (alias_ptr_types_compatible_p): Strengten
8844 type comparison in LTO mode.
8845
8846 2019-08-09 Richard Sandiford <richard.sandiford@arm.com>
8847
8848 PR middle-end/90313
8849 * tree-tailcall.c (find_tail_calls): Reject calls that might
8850 read from an escaped RESULT_DECL.
8851
8852 2019-08-09 Martin Liska <mliska@suse.cz>
8853
8854 * doc/invoke.texi: Document the option value.
8855 * lto-wrapper.c (run_gcc): Set auto_parallel
8856 only with -flto=auto.
8857
8858 2019-08-09 Martin Liska <mliska@suse.cz>
8859
8860 * opts.c (common_handle_option): Error for an invalid argument
8861 to -flto=.
8862
8863 2019-08-09 Martin Liska <mliska@suse.cz>
8864
8865 * ipa-icf.c (sem_function::merge): Define AUTO_DUMP_SCOPE and
8866 use dump_printf to report optimization.
8867 (sem_variable::merge): Likwise.
8868 (sem_item_optimizer::merge_classes): Use dump_printf to report
8869 ICF hits.
8870
8871 2019-08-09 Martin Liska <mliska@suse.cz>
8872
8873 * value-prof.c (gimple_divmod_fixed_value_transform):
8874 Use dump_printf_loc.
8875 (gimple_mod_pow2_value_transform): Likewise.
8876 (gimple_mod_subtract_transform): Likewise.
8877 (init_node_map): Likewise.
8878 (gimple_ic_transform): Likewise.
8879 (gimple_stringops_transform): Likewise.
8880
8881 2019-08-08 Mihailo Stojanovic <mistojanovic@wavecomp.com>
8882
8883 * doc/extend.texi: Add const qualifier to ld intrinsics.
8884
8885 2019-08-08 Segher Boessenkool <segher@kernel.crashing.org>
8886
8887 * config/rs6000/dfp.md (D64_D128): Rename to ...
8888 (DDTD): ... this, throughout.
8889 (dfp_suffix): Rename to ...
8890 (q): ... this, throughout.
8891
8892 2019-08-08 Segher Boessenkool <segher@kernel.crashing.org>
8893
8894 * config/rs6000/dfp.md (D64_D128): Move earlier in the file.
8895 (dfp_suffix): Ditto.
8896 (adddd3, addtd3): Merge to ...
8897 (add<mode>3 for D64_D128): ... this.
8898 (subdd3, subtd3): Merge to ...
8899 (sub<mode>3 for D64_D128): ... this.
8900 (muldd3, multd3): Merge to ...
8901 (mul<mode>3 for D64_D128): ... this.
8902 (divdd3, divtd3): Merge to ...
8903 (div<mode>3 for D64_D128): ... this.
8904 (*cmpdd_internal1, *cmptd_internal1): Merge to ...
8905 (*cmp<mode>_internal1 for D64_D128): ... this.
8906 (ftruncdd2, ftrunctd2): Merge to ...
8907 (ftrunc<mode>2 for D64_D128): ... this.
8908 (fixdddi2, fixtddi2): Merge to ...
8909 (fix<mode>di2 for D64_D128): ... this.
8910
8911 2019-08-08 Jim Wilson <jimw@sifive.com>
8912
8913 PR target/91229
8914 * config/riscv/riscv.c (riscv_flatten_aggregate_field): New arg
8915 ignore_zero_width_bit_field_p. Skip zero size bitfields when true.
8916 Pass into recursive call.
8917 (riscv_flatten_aggregate_argument): New arg. Pass to
8918 riscv_flatten_aggregate_field.
8919 (riscv_pass_aggregate_in_fpr_pair_p): New local warned. Call
8920 riscv_flatten_aggregate_argument twice, with false and true as last
8921 arg. Process result twice. Compare results and warn if different.
8922 (riscv_pass_aggregate_in_fpr_and_gpr_p): Likewise.
8923
8924 2019-08-08 Martin Liska <mliska@suse.cz>
8925
8926 PR bootstrap/91352
8927 * gcc.c (driver::detect_jobserver): Use is_valid_fd.
8928 * lto-wrapper.c (jobserver_active_p): Likewise.
8929
8930 2019-08-08 Martin Liska <mliska@suse.cz>
8931
8932 * cgraphclones.c (set_new_clone_decl_and_node_flags): Drop
8933 IS_OPERATOR_NEW and IS_OPERATOR_DELETE.
8934 (create_version_clone_with_body): Likewise.
8935
8936 2019-08-08 Jakub Jelinek <jakub@redhat.com>
8937
8938 * gimplify.c (omp_add_variable): Use GOVD_PRIVATE | GOVD_EXPLICIT
8939 for VLA helper variables on target data even if not GOVD_FIRSTPRIVATE.
8940 (gimplify_scan_omp_clauses): For OMP_CLAUSE_USE_DEVICE_* use just
8941 GOVD_EXPLICIT flags.
8942 (gimplify_omp_workshare): For OMP_TARGET_DATA move all
8943 OMP_CLAUSE_USE_DEVICE_* clauses to the end of clauses chain.
8944 * omp-low.c (scan_sharing_clauses): For OMP_CLAUSE_USE_DEVICE_*
8945 call install_var_field with mask 11 instead of 3.
8946 (lower_omp_target): For OMP_CLAUSE_USE_DEVICE_* use pass
8947 (splay_tree_key) &DECL_UID (var) to build_sender_ref instead of var.
8948
8949 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
8950
8951 * config/aarch64/constraints.md (Z): Handle floating-point zeros too.
8952 * config/aarch64/predicates.md (aarch64_reg_or_zero): Likewise.
8953
8954 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
8955
8956 * config/aarch64/aarch64-sve.md (vec_shl_insert_<mode>): Add
8957 MOVPRFX alternatives. Make the GPR alternatives more expensive
8958 than the FPR ones.
8959
8960 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
8961
8962 * config/aarch64/aarch64-sve.md (fold_extract_last_<mode>):
8963 Disparage the GPR alternative relative to the FPR one.
8964 Fix handling of 8-bit and 16-bit FPR values.
8965
8966 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
8967
8968 * config/aarch64/iterators.md (BITWISEV): Delete.
8969 (SVE_INT_REDUCTION, SVE_FP_REDUCTION): New int iterators.
8970 (optab): Handle UNSPEC_UMAXV, UNSPEC_UMINV, UNSPEC_SMAXV,
8971 UNSPEC_SMINV, UNSPEC_FADDV, UNSPEC_FMAXNMV, UNSPEC_FMAXV,
8972 UNSPEC_FMINNMV, UNSPEC_FMINV.
8973 (bit_reduc_op): Delete.
8974 (sve_int_op): New int attribute.
8975 (sve_fp_op): Handle UNSPEC_FADDV, UNSPEC_FMAXNMV, UNSPEC_FMAXV,
8976 UNSPEC_FMINNMV, UNSPEC_FMINV.
8977 * config/aarch64/aarch64-sve.md
8978 (reduc_<MAXMINV:maxmin_uns>_scal_<SVE_I:mode>)
8979 (*reduc_<MAXMINV:maxmin_uns>_scal_<SVE_I:mode>)
8980 (reduc_<BITWISEV:optab>_scal_<SVE_I:mode>)
8981 (*reduc_<BITWISEV:optab>_scal_<SVE_I:mode>): Merge into...
8982 (reduc_<SVE_INT_REDUCTION:optab>_scal_<SVE_I:mode>)
8983 (*reduc_<SVE_INT_REDUCTION:optab>_scal_<SVE_I:mode>): ...these
8984 new patterns.
8985 (reduc_plus_scal_<SVE_F:mode>, *reduc_plus_scal_<SVE_I:mode>)
8986 (reduc_<FMAXMINV:optab>_scal_<SVE_F:mode>)
8987 (*reduc_<FMAXMINV:optab>_scal_<SVE_F:mode>): Merge into...
8988 (reduc_<SVE_FP_REDUCTION:optab>_scal_<SVE_F:mode>)
8989 (*reduc_<SVE_FP_REDUCTION:optab>_scal_<SVE_F:mode>): ...these
8990 new patterns.
8991
8992 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
8993
8994 * config/aarch64/aarch64-sve.md (fma<mode>4, *fma<mode>4)
8995 (fnma<mode>4, *fnma<mode>4, fnms<mode>4, *fnms<mode>4)
8996 (fms<mode>4, *fms<mode>4): Replace with...
8997 (<SVE_COND_FP_TERNARY:optab><SVE_F:mode>4)
8998 (*<SVE_COND_FP_TERNARY:optab><SVE_F:mode>4): ...these new patterns.
8999 Use unspecs instead of rtx codes.
9000 (cond_<optab><mode>, *cond_<optab><mode>_2, *cond_<optab><mode>_4)
9001 (*cond_<optab><mode>_any): Add the predicate to SVE_COND_FP_TERNARY.
9002
9003 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
9004
9005 * config/aarch64/iterators.md (SVE_COND_FP_MAXMIN_PUBLIC): New
9006 int iterator.
9007 (maxmin_uns_op): Handle UNSPEC_COND_FMAXNM and UNSPEC_COND_FMINNM.
9008 * config/aarch64/aarch64-sve.md
9009 (<FMAXMIN:su><FMAXMIN:maxmin><SVE_F:mode>3): Rename to...
9010 (<SVE_COND_FP_MAXMIN_PUBLIC:optab><SVE_F:mode>3): ...this and
9011 use a single unspec for the rhs.
9012 (*<su><maxmin><mode>3): Delete.
9013 (<maxmin_uns><SVE_F:mode>3): Use a single unspec for the rhs.
9014
9015 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
9016
9017 * config/aarch64/iterators.md (UNSPEC_COND_FABS, UNSPEC_COND_FNEG)
9018 (UNSPEC_COND_FRINTA, UNSPEC_COND_FRINTI, UNSPEC_COND_FRINTM)
9019 (UNSPEC_COND_FRINTN, UNSPEC_COND_FRINTP, UNSPEC_COND_FRINTX)
9020 (UNSPEC_COND_FRINTZ, UNSPEC_COND_FSQRT): New unspecs.
9021 (optab, sve_fp_op): Handle them.
9022 (SVE_FP_UNARY): Delete.
9023 (optab): Remove sqrt entry.
9024 (sve_fp_op): Remove neg, abs and sqrt entries.
9025 (SVE_COND_FP_UNARY): New int iterator.
9026 * config/aarch64/aarch64-sve.md (<frint_pattern><mode>2)
9027 (*<frint_pattern><mode>2): Delete.
9028 (<SVE_FP_UNARY:optab><SVE_F:mode>2): Replace with...
9029 (<SVE_COND_FP_UNARY:optab><SVE_F:mode>2): ...this.
9030 (*<SVE_FP_UNARY:optab><SVE_F:mode>2): Replace with...
9031 (*<SVE_COND_FP_UNARY:optab><SVE_F:mode>2): ...this.
9032
9033 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
9034
9035 * config/aarch64/aarch64-sve.md (*pred_fold_left_plus_<mode>): Delete.
9036
9037 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
9038
9039 * config/aarch64/iterators.md (UNSPEC_COND_ADD): Rename to...
9040 (UNSPEC_COND_FADD): ...this.
9041 (UNSPEC_COND_SUB): Rename to...
9042 (UNSPEC_COND_FSUB): ...this.
9043 (UNSPEC_COND_MUL): Rename to...
9044 (UNSPEC_COND_FMUL): ...this.
9045 (UNSPEC_COND_DIV): Rename to...
9046 (UNSPEC_COND_FDIV): ...this.
9047 (UNSPEC_COND_MAX): Rename to...
9048 (UNSPEC_COND_FMAXNM): ...this.
9049 (UNSPEC_COND_MIN): Rename to...
9050 (UNSPEC_COND_FMINNM): ...this.
9051 (UNSPEC_COND_LT): Rename to...
9052 (UNSPEC_COND_FCMLT): ...this.
9053 (UNSPEC_COND_LE): Rename to...
9054 (UNSPEC_COND_FCMLE): ...this.
9055 (UNSPEC_COND_EQ): Rename to...
9056 (UNSPEC_COND_FCMEQ): ...this.
9057 (UNSPEC_COND_NE): Rename to...
9058 (UNSPEC_COND_FCMNE): ...this.
9059 (UNSPEC_COND_GE): Rename to...
9060 (UNSPEC_COND_FCMGE): ...this.
9061 (UNSPEC_COND_GT): Rename to...
9062 (UNSPEC_COND_FCMGT): ...this.
9063 (SVE_COND_FP_BINARY, SVE_COND_FP_CMP, optab, cmp_op, sve_fp_op)
9064 (sve_fp_op_rev): Update accordingly.
9065 * config/aarch64/aarch64.c (aarch64_unspec_cond_code): Likewise.
9066
9067 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
9068
9069 * config/aarch64/aarch64-sve.md: Reorganize contents and add
9070 banner comments.
9071 * config/aarch64/check-sve-md.awk: New file.
9072 * config/aarch64/t-aarch64 (s-check-sve-md): New rule.
9073 (insn-conditions.md): Depend on it.
9074
9075 2019-08-07 Uroš Bizjak <ubizjak@gmail.com>
9076
9077 PR target/91385
9078 * config/i386/sse.md (*negsi2_1_zext): Simplify insn pattern.
9079 (*negsi2_cmpz_zext): Ditto.
9080
9081 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
9082
9083 * config/aarch64/iterators.md (commutative): Remove.
9084
9085 2019-08-07 Richard Earnshaw <rearnsha@arm.com>
9086
9087 PR driver/91130
9088 * lto-wrapper.c (find_and_merge_options): Use CL_DRIVER when
9089 processing COLLECT_GCC_OPTIONS.
9090 (run_gcc): Likewise.
9091
9092 2019-08-07 Bernd Edlinger <bernd.edlinger@hotmail.de>
9093
9094 PR tree-optimization/91109
9095 * lra-remat.c (update_scratch_ops): Remove assignment of the
9096 hard register.
9097
9098 2019-08-07 Richard Sandiford <richard.sandiford@arm.com>
9099
9100 * data-streamer.h (streamer_write_poly_uint64): Declare.
9101 (streamer_read_poly_uint64): Likewise.
9102 * data-streamer-in.c (streamer_read_poly_uint64): New function.
9103 * data-streamer-out.c (streamer_write_poly_uint64): Likewise.
9104 * ipa-predicate.h (condition::size): Turn into a poly_int64.
9105 (add_condition): Take a poly_int64 size.
9106 * ipa-predicate.c (add_condition): Likewise.
9107 * ipa-prop.h (ipa_load_from_parm_agg): Take a poly_int64 size pointer.
9108 * ipa-prop.c (ipa_load_from_parm_agg): Likewise.
9109 (ipcp_modif_dom_walker::before_dom_children): Update accordingly.
9110 * ipa-fnsummary.c (evaluate_conditions_for_known_args): Handle
9111 condition::size as a poly_int64.
9112 (unmodified_parm_1): Take a poly_int64 size pointer.
9113 (unmodified_parm): Likewise.
9114 (unmodified_parm_or_parm_agg_item): Likewise.
9115 (set_cond_stmt_execution_predicate): Update accordingly.
9116 (set_switch_stmt_execution_predicate): Likewise.
9117 (will_be_nonconstant_expr_predicate): Likewise.
9118 (will_be_nonconstant_predicate): Likewise.
9119 (inline_read_section): Stream condition::size as a poly_int.
9120 (ipa_fn_summary_write): Likewise.
9121
9122 2019-08-07 Martin Liska <mliska@suse.cz>
9123
9124 * fold-const.c (twoval_comparison_p): Replace int
9125 with bool as a return type.
9126 (simple_operand_p): Likewise.
9127 (operand_equal_p): Replace int with bool as a return type.
9128 * fold-const.h (operand_equal_p): Likewise.
9129
9130 2019-08-07 Jakub Jelinek <jakub@redhat.com>
9131
9132 * tree-core.h (enum omp_clause_code): Adjust OMP_CLAUSE_USE_DEVICE_PTR
9133 OpenMP description. Add OMP_CLAUSE_USE_DEVICE_ADDR clause.
9134 * tree.c (omp_clause_num_ops, omp_clause_code_name): Add entries
9135 for OMP_CLAUSE_USE_DEVICE_ADDR clause.
9136 (walk_tree_1): Handle OMP_CLAUSE_USE_DEVICE_ADDR.
9137 * tree-pretty-print.c (dump_omp_clause): Likewise.
9138 * tree-nested.c (convert_nonlocal_omp_clauses,
9139 convert_local_omp_clauses): Likewise.
9140 * gimplify.c (gimplify_scan_omp_clauses, gimplify_adjust_omp_clauses):
9141 Likewise.
9142 * omp-low.c (scan_sharing_clauses, lower_omp_target): Likewise.
9143 Treat OMP_CLAUSE_USE_DEVICE_ADDR like OMP_CLAUSE_USE_DEVICE_PTR
9144 clause with array or reference to array types, no matter what type
9145 except for reference it has.
9146
9147 2019-08-07 Kewen Lin <linkw@gcc.gnu.org>
9148
9149 * config/rs6000/vector.md (vrotr<mode>3): New define_expand.
9150
9151 2019-08-07 Kito Cheng <kito.cheng@sifive.com>
9152
9153 * config/riscv/multilib-generator: (canonical_order): Add 'g'.
9154 (arch_canonicalize): Support rv32g and rv64g and fix error
9155 handling.
9156
9157 2019-08-06 Martin Liska <mliska@suse.cz>
9158
9159 * cgraph.c (cgraph_node::dump): Dump DECL_IS_OPERATOR_NEW_P
9160 and DECL_IS_OPERATOR_DELETE_P.
9161
9162 2019-08-06 Jakub Jelinek <jakub@redhat.com>
9163
9164 * tree.h (OMP_CLAUSE_LASTPRIVATE_TASKLOOP_IV): Rename to ...
9165 (OMP_CLAUSE_LASTPRIVATE_LOOP_IV): ... this. Adjust comment.
9166 * gimplify.c (gimple_add_tmp_var): In SIMD contexts, turn addressable
9167 new vars into GOVD_PRIVATE rather than GOVD_LOCAL.
9168 (gimplify_omp_for): Don't do C++ random access iterator clause
9169 adjustments on combined constructs from OMP_LOOP. For OMP_LOOP,
9170 don't predetermine the artificial iterator in case of C++ random
9171 access iterators as lastprivate, but private. For OMP_LOOP, force
9172 bind expr around simd body and force for_pre_body before the
9173 construct. Use OMP_CLAUSE_LASTPRIVATE_LOOP_IV instead of
9174 OMP_CLAUSE_LASTPRIVATE_TASKLOOP_IV.
9175 (gimplify_omp_loop): Add firstprivate clauses on OMP_PARALLEL for
9176 diff var of C++ random access iterators. Handle
9177 OMP_CLAUSE_FIRSTPRIVATE. For OMP_CLAUSE_LASTPRIVATE_LOOP_IV, if
9178 not outermost also add OMP_CLAUSE_FIRSTPRIVATE, and in both cases
9179 clear OMP_CLAUSE_LASTPRIVATE_LOOP_IV on the lastprivate clause
9180 on the OMP_FOR and OMP_DISTRIBUTE constructs if any.
9181 * omp-low.c (lower_rec_input_clauses): For
9182 OMP_CLAUSE_LASTPRIVATE_LOOP_IV on simd copy construct the private
9183 variables instead of default constructing them.
9184 (lower_lastprivate_clauses): Use OMP_CLAUSE_LASTPRIVATE_LOOP_IV
9185 instead of OMP_CLAUSE_LASTPRIVATE_TASKLOOP_IV and move the
9186 is_taskloop_ctx check from the assert to the guarding condition.
9187
9188 2019-08-06 Kito Cheng <kito.cheng@sifive.com>
9189
9190 * config/riscv/multilib-generator: (canonical_order): New.
9191 (arch_canonicalize): Dito.
9192 Apply arch_canonicalize for alts.
9193
9194 2019-08-05 Martin Sebor <msebor@redhat.com>
9195
9196 * doc/extend.texi (Common Variable Attributes): Document alias
9197 attribute.
9198
9199 2019-08-05 Marek Polacek <polacek@redhat.com>
9200
9201 PR c++/91338 - Implement P1161R3: Deprecate a[b,c].
9202 * doc/invoke.texi: Document -Wcomma-subscript.
9203
9204 2019-08-05 Richard Sandiford <richard.sandiford@arm.com>
9205
9206 * tree-core.h (tree_function_decl): Make function_code an
9207 independent field. Group the remaining bitfields into bytes
9208 and move decl_type so that it contines to be at a byte boundary.
9209 Leave 12 bits for future expansion.
9210
9211 2019-08-05 Richard Sandiford <richard.sandiford@arm.com>
9212
9213 * gimple-fold.c (gimple_fold_mask_load_store_mem_ref)
9214 (gimple_fold_mask_load, gimple_fold_mask_store): New functions.
9215 (gimple_fold_call): Use them to fold IFN_MASK_LOAD and
9216 IFN_MASK_STORE.
9217
9218 2019-08-05 Richard Sandiford <richard.sandiford@arm.com>
9219
9220 * gimple.h (gimple_move_vops): Declare.
9221 * gimple.c (gimple_move_vops): New function
9222 * gimple-fold.c (replace_call_with_call_and_fold)
9223 (gimple_fold_builtin_memory_op, gimple_fold_builtin_memset)
9224 (gimple_fold_builtin_stpcpy, fold_builtin_atomic_compare_exchange)
9225 (gimple_fold_call): Use it.
9226 * ipa-param-manipulation.c (ipa_modify_call_arguments): Likewise.
9227 * tree-call-cdce.c (use_internal_fn): Likewise.
9228 * tree-if-conv.c (predicate_load_or_store): Likewise.
9229 * tree-ssa-ccp.c (optimize_atomic_bit_test_and): Likewise.
9230 * tree-ssa-math-opts.c (pass_cse_reciprocals::execute): Likewise.
9231 * tree-ssa-propagate.c (finish_update_gimple_call): Likewise.
9232 (update_call_from_tree): Likewise.
9233 * tree-vect-stmts.c (vectorizable_load): Likewise.
9234 * tree-vectorizer.c (adjust_simduid_builtins): Likewise.
9235
9236 2019-08-05 Martin Liska <mliska@suse.cz>
9237
9238 PR c++/91334
9239 * tree-ssa-dce.c (propagate_necessity): Handle new operators
9240 with not arguments.
9241 (eliminate_unnecessary_stmts): Likewise.
9242
9243 2019-08-05 Richard Biener <rguenther@suse.de>
9244
9245 PR middle-end/91169
9246 * fold-const.c (get_array_ctor_element_at_index): Create
9247 offset_ints according to the sign of the index type and treat
9248 that as signed if it is obviously so.
9249
9250 2019-08-05 Jakub Jelinek <jakub@redhat.com>
9251
9252 PR target/91341
9253 * config/i386/avxintrin.h (_mm256_loadu2_m128, _mm256_storeu2_m128,
9254 _mm256_loadu2_m128d, _mm256_storeu2_m128d, _mm256_loadu2_m128i,
9255 _mm256_storeu2_m128i): New function.
9256
9257 2019-08-05 Kito Cheng <kito.cheng@sifive.com>
9258
9259 * config/riscv/riscv.c (riscv_promote_function_mode): New.
9260 (TARGET_PROMOTE_FUNCTION_MODE): Use riscv_promote_function_mode.
9261
9262 2019-08-05 Alan Modra <amodra@gmail.com>
9263
9264 PR target/91349
9265 * config/rs6000/freebsd64.h (CPLUSPLUS_CPP_SPEC),
9266 (LINK_GCC_C_SEQUENCE_SPEC): Undef.
9267
9268 2019-08-04 Gerald Pfeifer <gerald@pfeifer.com>
9269
9270 * doc/install.texi (Prerequisites): Remove reference to Tcl 8.6
9271 bug that was fixed in Tcl 8.6.1.
9272
9273 2019-08-02 Michael Meissner <meissner@linux.ibm.com>
9274
9275 * config/rs6000/future.md: New file.
9276 * config/rs6000/rs6000.md: Include future.md.
9277 * config/rs6000/t-rs6000 (MD_INCLUDES): Add future.md.
9278
9279 2019-08-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
9280
9281 * function.c (assign_parm_adjust_stack_rtl): Revise STRICT_ALIGNMENT
9282 check to use targetm.slow_unaligned_access instead.
9283
9284 * function.c (assign_param_data_one): Remove unused data members.
9285
9286 2019-08-02 Steve Ellcey <sellcey@marvell.com>
9287
9288 * omp-simd-clone.c (simd_clone_adjust_return_type): Remove call to
9289 build_distinct_type_copy.
9290 (simd_clone_adjust_argument_types): Ditto.
9291 (simd_clone_adjust): Call build_distinct_type_copy here.
9292 (expand_simd_clones): Ditto.
9293
9294 2019-08-02 Uroš Bizjak <ubizjak@gmail.com>
9295
9296 PR target/91201
9297 * config/i386/sse.md (*vec_extractv16qi_zext): New insn pattern.
9298
9299 2019-08-02 Alexander Monakov <amonakov@ispras.ru>
9300
9301 * tree-ssa-loop-im.c (sort_bbs_in_loop_postorder_cmp): Simplify casts
9302 from 'const void *'.
9303 (sort_locs_in_loop_postorder_cmp): Likewise.
9304
9305 2019-08-02 Eric Botcazou <ebotcazou@adacore.com>
9306
9307 * doc/invoke.texi (hot-bb-count-fraction): Rework description.
9308 (hot-bb-count-ws-permille): Likewise.
9309 (hot-bb-frequency-fraction): Likewise.
9310 (unlikely-bb-count-fraction): Likewise.
9311 * params.def (hot-bb-count-fraction): Rework description.
9312 (hot-bb-count-ws-permille): Likewise.
9313 (hot-bb-frequency-fraction): Likewise.
9314 (unlikely-bb-count-fraction): Likewise. Remove min and max values.
9315 * predict.c (get_hot_bb_threshold): Deal with 0 HOT_BB_COUNT_FRACTION.
9316
9317 2019-08-02 Uroš Bizjak <ubizjak@gmail.com>
9318
9319 PR target/91323
9320 * config/i386/i386-expand.c (ix86_unordered_fp_compare) <case LTGT>:
9321 Return false.
9322
9323 2019-08-02 Richard Biener <rguenther@suse.de>
9324
9325 * vec.h (vec::sort): Add gcc_qsort_r support.
9326 (vec::bsearch): Add an overload with gcc_qsort_r style callbacks.
9327 * tree-ssa-loop-im.c (sort_bbs_in_loop_postorder_cmp): Adjust
9328 to gcc_qsort_r style callback.
9329 (sort_locs_in_loop_postorder_cmp): Likewise.
9330 (analyze_memory_references): Use gcc_sort_r interfaces.
9331 (find_ref_loc_in_loop_cmp): Use new bsearch overload.
9332
9333 2019-08-02 Martin Liska <mliska@suse.cz>
9334
9335 PR lto/91313
9336 * gcc.c (driver::maybe_run_linker): Call detect_jobserver
9337 to detect working job server.
9338 (driver::detect_jobserver): Test whether jobserver
9339 is active from GCC driver. That will prevent situation where
9340 GCC is invoked from a LD plugin and the linker already uses
9341 file descriptors suggested by make. That leads to a wrong
9342 detection.
9343 * gcc.h (driver): Add detect_jobserver.
9344 * lto-wrapper.c (jobserver_active_p): Simplify sscanf by
9345 not scanning for --jobserver-auth prefix.
9346
9347 2019-08-02 Jakub Jelinek <jakub@redhat.com>
9348
9349 PR tree-optimization/91201
9350 * config/i386/i386-expand.c (ix86_expand_vector_extract): For elt == 0
9351 V16QImode extraction without sse4.1 try to use V4SImode lowpart
9352 extraction.
9353
9354 2019-08-01 Martin Sebor <msebor@redhat.com>
9355
9356 PR c++/90947
9357 * tree.c (type_initializer_zero_p): Define.
9358 * tree.h (type_initializer_zero_p): New function.
9359
9360 2019-08-01 Eric Botcazou <ebotcazou@adacore.com>
9361
9362 * cfgrtl.c (relink_block_chain): Add line returns in dump file.
9363
9364 2019-08-01 Eric Botcazou <ebotcazou@adacore.com>
9365
9366 * cgraph.h (cgraph_edge::maybe_hot_p): Tweak comment.
9367 * cgraph.c (cgraph_edge::maybe_hot_p): Likewise. Remove useless test.
9368 * predict.c (maybe_hot_count_p): Likewise.
9369 (maybe_hot_bb_p): Tweak comment.
9370 (maybe_hot_edge_p): Likewise.
9371 (probably_never_executed): Likewise. Minor tweak.
9372 (probably_never_executed_bb_p): Likewise.
9373 (unlikely_executed_edge_p): Likewise.
9374 (probably_never_executed_edge_p): Likewise.
9375 (optimize_function_for_size_p): Likewise.
9376 (optimize_function_for_speed_p): Likewise.
9377 (function_optimization_type): Likewise.
9378 (optimize_bb_for_size_p): Likewise.
9379 (optimize_bb_for_speed_p): Likewise.
9380 (bb_optimization_type): Likewise.
9381 (optimize_edge_for_size_p): Likewise.
9382 (optimize_edge_for_speed_p): Likewise.
9383 (optimize_insn_for_size_p): Likewise.
9384 (optimize_insn_for_speed_p): Likewise.
9385 (optimize_loop_for_size_p): Likewise.
9386 (optimize_loop_for_speed_p): Likewise.
9387 (optimize_loop_nest_for_speed_p): Likewise.
9388 (optimize_loop_nest_for_size_p): Likewise.
9389 (predictable_edge_p): Likewise.
9390 (handle_missing_profiles): Minor tweak.
9391
9392 2019-08-01 Michael Meissner <meissner@linux.ibm.com>
9393
9394 * config/rs6000/predicates.md (pcrel_external_address): Update
9395 comment.
9396
9397 2019-08-01 Uroš Bizjak <ubizjak@gmail.com>
9398
9399 PR target/85693
9400 * config/i386/mmx.md (usadv8qi): New expander.
9401
9402 2019-08-01 Matthew Beliveau <mbelivea@redhat.com>
9403
9404 PR c++/90590
9405 * c-warn.c (c_do_switch_warnings): Suppress warning for enumerators
9406 with reserved names that are in a system header.
9407
9408 2019-08-01 Uroš Bizjak <ubizjak@gmail.com>
9409
9410 * config/i386/mmx.md (vec_extractv2si_0): Add (r,x) alternative.
9411 (*vec_extractv2si_0_zext_sse4): New insn pattern.
9412 (*vec_extractv2si_0_zext): Ditto.
9413 (*vec_extractv2si_1): Add (rm,x) alternative.
9414 (*vec_extractv2si_1_zext): New insn pattern.
9415 (*vec_extractv2si_zext_mem): Add "TARGET_MMX || TARGET_MMX_WITH_SSE"
9416 insn constraint.
9417
9418 2019-08-01 Richard Biener <rguenther@suse.de>
9419
9420 * domwalk.c (bb_postorder): Remove static variable.
9421 (cmp_bb_postorder): Adjust.
9422 (sort_bbs_postorder): Adjust and use gcc_sort_r.
9423 (dom_walker::walk): Adjust.
9424
9425 2019-08-01 Alexander Monakov <amonakov@ispras.ru>
9426
9427 * sort.cc (sort_r_ctx): New struct.
9428 (reorder23): Make templated on context type.
9429 (reorder45): Ditto.
9430 (cmp1): Ditto. Adjust signature.
9431 (netsort): Ditto.
9432 (mergesort): Ditto.
9433 [CHECKING_P] (cmp2to3): New static function. Use it...
9434 (gcc_qsort) [CHECKING_P]: ...here.
9435 (gcc_sort_r): New function.
9436 * system.h (sort_r_cmp_fn): New function typedef.
9437 (qsort_chk): Adjust signature.
9438 (gcc_sort_r): Declare.
9439 * vec.c (qsort_chk_error): Adjust.
9440 (qsort_chk): Adjust.
9441
9442 2019-08-01 Richard Biener <rguenther@suse.de>
9443
9444 * tree-ssa-pre.c (has_abnormal_preds): Remove global var.
9445 (compute_antic): Localize it here.
9446
9447 2019-07-31 Maxim Blinov <maxim.blinov@embecosm.com>
9448
9449 * common/config/riscv/riscv-common.c: Check -march string ends
9450 with null.
9451
9452 2019-07-31 Alexander Monakov <amonakov@ispras.ru>
9453
9454 * ipa-devirt.c (type_warning_cmp): Make static.
9455 (decl_warning_cmp): Ditto.
9456
9457 2019-07-31 Peter Bergner <bergner@linux.ibm.com>
9458
9459 PR target/91050
9460 * config/rs6000/rs6000.opt (mdejagnu-cpu=): Delete option.
9461 * config/rs6000/rs6000.c (rs6000_option_override_internal): Remove
9462 use of deleted rs6000_dejagnu_cpu_index variable.
9463 * config/rs6000/rs6000.h (DRIVER_SELF_SPECS): Define.
9464 (SUBTARGET_DRIVER_SELF_SPECS): Likewise.
9465 * config/darwin.h (DRIVER_SELF_SPECS): Rename from this ...
9466 (SUBTARGET_DRIVER_SELF_SPECS): ...to this.
9467 * config/i386/i386.h (DRIVER_SELF_SPECS): Define.
9468 (SUBTARGET_DRIVER_SELF_SPECS): Likewise.
9469
9470 2019-07-31 Richard Biener <rguenther@suse.de>
9471
9472 PR tree-optimization/91280
9473 * tree-ssa-structalias.c (get_constraint_for_component_ref):
9474 Decompose MEM_REF manually for offset handling.
9475
9476 2019-07-31 Richard Biener <rguenther@suse.de>
9477
9478 PR tree-optimization/91293
9479 * tree-vect-slp.c (vect_build_slp_tree_2): Do not swap operands
9480 of reduction stmts.
9481
9482 2019-07-31 Matt Thomas <matt@3am-software.com>
9483 Nick Hudson <nick@nthcliff.demon.co.uk>
9484 Matthew Green <mrg@eterna.com.au>
9485 Maya Rashish <coypu@sdf.org>
9486
9487 * config.gcc (hppa*-*-netbsd*): New target.
9488 * config/pa/pa-netbsd.h: New file.
9489 * config/pa/pa32-netbsd.h: New file.
9490
9491 2019-07-31 Jakub Jelinek <jakub@redhat.com>
9492
9493 PR tree-optimization/91201
9494 * config/i386/mmx.md (reduc_plus_scal_v8qi): New expander.
9495
9496 2019-07-31 Andrew Stubbs <ams@codesourcery.com>
9497
9498 * config/gcn/gcn-valu.md
9499 (scatter<mode>_insn_1offset<exec_scatter>): Remove s_waitcnt.
9500 (scatter<mode>_insn_1offset_ds<exec_scatter>): Likewise.
9501 (scatter<mode>_insn_2offsets<exec_scatter>): Likewise.
9502 * config/gcn/gcn.c (gcn_md_reorg): Add delayeduse and reads to
9503 struct ilist. Add nops for delayeduse insns.
9504 * config/gcn/gcn.md (delayeduse): New attribute.
9505 (*movbi): Remove s_waitcnt from stores.
9506 (*mov<mode>_insn): Likewise.
9507 (*movti_insn): Likewise. Add delayeduse attribute.
9508 (sync_compare_and_swap<mode>_insn): Add delayeduse attribute.
9509 (atomic_store<mode>): Remove or adjust s_waitcnt.
9510
9511 2019-07-31 Richard Biener <rguenther@suse.de>
9512
9513 * vr-values.h (vr_values::swap_vr_value): New.
9514 (vr_values::free_value_range): likewise.
9515 * vr-values.c (vr_values::swap_vr_value): Implement.
9516 * gimple-ssa-evrp-analyze.h (evrp_range_analyzer::pop_value_range):
9517 Do not return a range or take a var.
9518 (evrp_range_analyzer::stack): Change back to recording a non-const
9519 value_range *.
9520 * gimple-ssa-evrp-analyze.c
9521 (evrp_range_analyzer::record_ranges_from_stmt): Free unused
9522 value-range.
9523 (evrp_range_analyzer::pop_to_marker): Adjust.
9524 (evrp_range_analyzer::push_value_range): Use new swap_vr_value.
9525 (evrp_range_analyzer::pop_value_range): Likewise. Free the
9526 no longer needed value-range.
9527
9528 2019-07-31 Martin Liska <mliska@suse.cz>
9529
9530 * tree-ssa-dce.c (propagate_necessity): Delete operator can
9531 have size and (or) alignment as 2nd and later arguments.
9532 Mark all of them as necessary.
9533
9534 2019-07-31 Richard Biener <rguenther@suse.de>
9535
9536 PR tree-optimization/91178
9537 * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address):
9538 Use tail-recursion.
9539
9540 2019-07-31 Jakub Jelinek <jakub@redhat.com>
9541
9542 PR tree-optimization/91201
9543 * config/i386/sse.md (reduc_plus_scal_v16qi): New expander.
9544 (REDUC_PLUS_MODE): Add V32QImode for TARGET_AVX and V64QImode for
9545 TARGET_AVX512F.
9546 (reduc_plus_scal_<mode>): Improve formatting by introducing
9547 a temporary.
9548
9549 2019-07-31 Sudakshina Das <sudi.das@arm.com>
9550
9551 * config/aarch64/aarch64-builtins.c (enum aarch64_builtins): Add
9552 AARCH64_TME_BUILTIN_TSTART, AARCH64_TME_BUILTIN_TCOMMIT,
9553 AARCH64_TME_BUILTIN_TTEST and AARCH64_TME_BUILTIN_TCANCEL.
9554 (aarch64_init_tme_builtins): New.
9555 (aarch64_init_builtins): Call aarch64_init_tme_builtins.
9556 (aarch64_expand_builtin_tme): New.
9557 (aarch64_expand_builtin): Handle TME builtins.
9558 * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins): Define
9559 __ARM_FEATURE_TME when enabled.
9560 * config/aarch64/aarch64-option-extensions.def: Add "tme".
9561 * config/aarch64/aarch64.h (AARCH64_FL_TME, AARCH64_ISA_TME): New.
9562 (TARGET_TME): New.
9563 * config/aarch64/aarch64.md (define_c_enum "unspec"): Add UNSPEC_TTEST.
9564 (define_c_enum "unspecv"): Add UNSPECV_TSTART, UNSPECV_TCOMMIT and
9565 UNSPECV_TCANCEL.
9566 (tstart, ttest, tcommit, tcancel): New instructions.
9567 * config/aarch64/arm_acle.h (__tstart, __tcommit): New.
9568 (__tcancel, __ttest): New.
9569 (_TMFAILURE_REASON, _TMFAILURE_RTRY, _TMFAILURE_CNCL): New macro.
9570 (_TMFAILURE_MEM, _TMFAILURE_IMP, _TMFAILURE_ERR): Likewise.
9571 (_TMFAILURE_SIZE, _TMFAILURE_NEST, _TMFAILURE_DBG): Likewise.
9572 (_TMFAILURE_INT, _TMFAILURE_TRIVIAL): Likewise.
9573 * config/arm/types.md: Add new tme type attr.
9574 * doc/invoke.texi: Document "tme".
9575
9576 2019-07-31 Joel Hutton <Joel.Hutton@arm.com>
9577
9578 * config/arm/arm_cmse.h (cmse_nonsecure_caller): Add
9579 warn_unused_result attribute.
9580 (cmse_check_address_range): Add warn_unused_result attribute.
9581
9582 2019-07-31 Richard Biener <rguenther@suse.de>
9583
9584 PR tree-optimization/91257
9585 * tree-vrp.c (union_ranges): Unify equality and less tests
9586 by using compare_values. Re-order cheap tests first.
9587
9588 2019-07-31 Jakub Jelinek <jakub@redhat.com>
9589
9590 PR middle-end/91301
9591 * gimplify.c (gimplify_omp_for): If for class iterator on
9592 distribute parallel for there is no data sharing clause
9593 on inner_for_stmt, look for private clause on combined
9594 parallel too and if found, move it to inner_for_stmt.
9595
9596 2019-07-31 Richard Sandiford <richard.sandiford@arm.com>
9597
9598 * lra-int.h (lra_operand_data): Remove early_clobber field.
9599 (lra_insn_reg): Likewise.
9600 * lra.c (debug_operand_data): Update accordingly.
9601 (setup_operand_alternative): Likewise.
9602 (new_insn_reg): Likewise. Remove early_clobber parameter.
9603 (collect_non_operand_hard_regs): Update call accordingly.
9604 Don't assign to lra_insn_reg::early_clobber.
9605 (add_regs_to_insn_regno_info): Remove early_clobber parameter
9606 and update calls to new_insn_reg.
9607 (lra_update_insn_regno_info): Update calls accordingly.
9608 * lra-constraints.c (update_and_check_small_class_inputs): Take the
9609 alternative number as a parameter and test whether the operand
9610 is earlyclobbered in that particular alternative.
9611 (process_alt_operands): Update call accordingly. Use per-alternative
9612 checks for earyclobber here too.
9613 * lra-lives.c (reg_early_clobber_p): Check early_clobber_alts
9614 against zero for IRA_UNKNOWN_ALT.
9615
9616 2019-07-30 Uroš Bizjak <ubizjak@gmail.com>
9617
9618 * config/alpha/alpha.c (alpha_option_override): Quote a C type.
9619
9620 2019-07-30 Wilco Dijkstra <wdijkstr@arm.com>
9621
9622 * config/arm/thumb2.md (thumb2_movsi_insn): Adjust literal offset.
9623 * config/arm/vfp.md (thumb2_movsi_vfp): Likewise.
9624
9625 2019-07-30 Martin Liska <mliska@suse.cz>
9626
9627 PR ipa/89330
9628 * cgraph.c (cgraph_edge::make_direct): Use
9629 edge->indirect_unknown_callee as edge->resolve_speculation can
9630 deallocate edge which is this pointer.
9631
9632 2019-07-30 Richard Biener <rguenther@suse.de>
9633
9634 PR tree-optimization/91257
9635 * bitmap.c (bitmap_ior_and_compl_into): Open-code.
9636
9637 2019-07-30 Martin Liska <mliska@suse.cz>
9638
9639 * doc/invoke.texi: Document new behavior.
9640 * lto-wrapper.c (cpuset_popcount): New function
9641 is a copy of libgomp/config/linux/proc.c.
9642 (init_num_threads): Likewise.
9643 (run_gcc): Automatically detect core count for -flto.
9644 (jobserver_active_p): New function.
9645
9646 2019-07-30 Richard Biener <rguenther@suse.de>
9647
9648 PR tree-optimization/91257
9649 * bitmap.h (bitmap_ior_into_and_free): Declare.
9650 * bitmap.c (bitmap_list_unlink_element): Add defaulted param
9651 whether to add the unliked element to the freelist.
9652 (bitmap_list_insert_element_after): Add defaulted param for
9653 an already allocated element.
9654 (bitmap_ior_into_and_free): New function.
9655 * tree-ssa-structalias.c (condense_visit): Reduce the
9656 ponts-to and edge bitmaps of the SCC members in a
9657 logarithmic fashion rather than all to one.
9658
9659 2019-07-30 Richard Sandiford <richard.sandiford@arm.com>
9660
9661 * tree-ssa-math-opts.c (convert_mult_to_fma): Add a mul_cond
9662 parameter. When nonnull, make sure that the addition or subtraction
9663 has the same condition.
9664 (math_opts_dom_walker::after_dom_children): Try convert_mult_to_fma
9665 for CFN_COND_MUL too.
9666
9667 2019-07-30 Richard Biener <rguenther@suse.de>
9668
9669 PR tree-optimization/91291
9670 * tree-ssa-sccvn.c (rpo_elim::eliminate_push_avail): Ignore
9671 constant values.
9672
9673 2019-07-30 Jakub Jelinek <jakub@redhat.com>
9674
9675 PR middle-end/91216
9676 * omp-low.c (global_nonaddressable_vars): New variable.
9677 (use_pointer_for_field): For global decls, if they are non-addressable,
9678 remember it in the global_nonaddressable_vars bitmap, if they are
9679 addressable and in the global_nonaddressable_vars bitmap, ignore their
9680 TREE_ADDRESSABLE bit.
9681 (omp_copy_decl_2): Clear TREE_ADDRESSABLE also on private copies of
9682 vars in global_nonaddressable_vars bitmap.
9683 (execute_lower_omp): Free global_nonaddressable_vars bitmap.
9684
9685 PR target/91150
9686 * config/i386/i386-expand.c (expand_vec_perm_blend): Change mask type
9687 from unsigned to unsigned HOST_WIDE_INT. For E_V64QImode cast
9688 comparison to unsigned HOST_WIDE_INT before shifting it left.
9689
9690 2019-07-30 Uroš Bizjak <ubizjak@gmail.com>
9691
9692 * config/i386/i386.md (movstrict<mode>): Use register_operand
9693 predicate for operand 0. Add expander condition. Assert that
9694 operand 0 is a SUBREG RTX.
9695 (*movstrict<mode>_1): Use register_operand predicate for operand 0.
9696 Update operand constraints and insn condition.
9697 (zero_extend<mode>si2_and): Do not call gen_movstrict<mode>.
9698 (zero_extendqihi2_and): Do not call gen_movstrictqi.
9699 (*setcc_qi_slp): Use register_operand predicate for operand 0.
9700 Update operand 0 constraints.
9701 (setcc_qi_slp splitters): Use register_operand predicate for operand 0.
9702
9703 2019-07-29 Jozef Lawrynowicz <jozef.l@mittosystems.com>
9704
9705 * config/msp430/msp430.h (DRIVER_SELF_SPECS): Define and emit errors
9706 when -m{code,data}-region are used without -mlarge.
9707 * config/msp430/msp430.c (msp430_option_override): Error when a
9708 non-default code or data region is used without -mlarge.
9709 (msp430_section_attr): Emit a warning and do not add upper/lower/either
9710 attributes when they are used without -mlarge.
9711
9712 2019-07-29 Jozef Lawrynowicz <jozef.l@mittosystems.com>
9713
9714 PR target/70320
9715 * config/msp430/msp430.h: Define ADDITIONAL_REGISTER_NAMES.
9716
9717 2019-07-29 Richard Sandiford <richard.sandiford@arm.com>
9718
9719 PR middle-end/91242
9720 * wide-int.h (generic_wide_int::sext_elt): New function.
9721 * inchash.h (hash::add_wide_int): Use it instead of elt.
9722
9723 2019-07-29 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9724
9725 * config/arm/arm-builtins.c (acle_builtin_data): Expand VAR1 to
9726 CODE_FOR_arm_##.
9727 * config/arm/arm.md (<crc_variant>): Rename to...
9728 (arm_<crc_variant>): ... This.
9729 (<cdp>): Rename to...
9730 (arm_<cdp>): ... This.
9731 (<ldc>): Rename to...
9732 (arm_<ldc>): ... This.
9733 (<stc>): Rename to...
9734 (arm_<stc>): ... This.
9735 (<mcr>): Rename to...
9736 (arm_<mcr>): ... This.
9737 (<mrc>): Rename to...
9738 (arm_<mrc>): ... This.
9739 (<mcrr>): Rename to...
9740 (arm_<mcrr>): ... This.
9741 (<mrrc>): Rename to...
9742 (arm_<mrrc>): ... This.
9743
9744 2019-07-29 Richard Biener <rguenther@suse.de>
9745
9746 PR tree-optimization/91257
9747 * tree-ssa-sccvn.h (struct vn_avail): New.
9748 (struct vn_ssa_aux): Add avail member.
9749 * tree-ssa-sccvn.c (class rpo_elim): Remove m_rpo_avail
9750 member, add m_avail_freelist one.
9751 (rpo_elim::~rpo_elim): Remove.
9752 (rpo_elim::eliminate_avail): Adjust to new avail tracking
9753 data structure.
9754 (rpo_elim::eliminate_push_avail): Likewise.
9755 (do_unwind): Likewise.
9756 (do_rpo_vn): Likewise.
9757
9758 2019-07-29 Richard Biener <rguenther@suse.de>
9759
9760 PR tree-optimization/91257
9761 * tree-vrp.c (operand_less_p): Avoid dispatching to fold for
9762 most cases, instead call compare_values which handles the
9763 symbolic ranges we handle specially.
9764 (compare_values_warnv): Do not call operand_less_p but open-code
9765 the effective fold calls. Avoid converting so much.
9766
9767 2019-07-29 Martin Liska <mliska@suse.cz>
9768
9769 * tree-ssa-dce.c (eliminate_unnecessary_stmts): Do not
9770 remove LHS of operator new call. It's handled latter.
9771
9772 2019-07-29 Richard Biener <rguenther@suse.de>
9773
9774 PR tree-optimization/91267
9775 * vr-values.c (vr_values::update_value_range): Add early return
9776 for effectively VARYING lattice entry.
9777
9778 2019-07-29 Richard Sandiford <richard.sandiford@arm.com>
9779
9780 PR debug/86638
9781 * tree-ssa-dce.c (keep_all_vdefs_p): New function.
9782 (mark_stmt_if_obviously_necessary): Mark all stmts with vdefs as
9783 necessary if keep_all_vdefs_p is true.
9784 (mark_aliased_reaching_defs_necessary): Add a gcc_checking_assert
9785 that keep_all_vdefs_p is false.
9786 (mark_all_reaching_defs_necessary): Likewise.
9787 (propagate_necessity): Skip the vuse scan if keep_all_vdefs_p is true.
9788
9789 2019-07-29 Richard Sandiford <richard.sandiford@arm.com>
9790
9791 * common.opt (Og): Change the initial value of flag_dse to 0.
9792 * opts.c (default_options_table): Move OPT_ftree_dse from
9793 OPT_LEVELS_1_PLUS to OPT_LEVELS_1_PLUS_NOT_DEBUG. Also add
9794 OPT_fdse to OPT_LEVELS_1_PLUS_NOT_DEBUG. Put the OPT_ftree_pta
9795 entry before the OPT_ftree_sra entry.
9796 * doc/invoke.texi (Og): Add -fdse and -ftree-dse to the list
9797 of flags disabled by Og.
9798
9799 2019-07-29 Richard Sandiford <richard.sandiford@arm.com>
9800
9801 * tree-cfg.c (execute_fixup_cfg): Don't delete stores to write-only
9802 variables for -Og.
9803
9804 2019-07-29 Richard Sandiford <richard.sandiford@arm.com>
9805
9806 * doc/sourcebuild.texi (check-function-bodies): Document.
9807
9808 2019-07-29 Richard Sandiford <richard.sandiford@arm.com>
9809
9810 * simplify-rtx.c (simplify_const_unary_operation): Fold a
9811 VEC_DUPLICATE of a fixed-length vector even if the result
9812 is variable-length. Likewise fold a duplicate of a
9813 variable-length vector if the variable-length vector is
9814 itself a duplicate of a fixed-length sequence.
9815 (test_vector_ops_duplicate): Test more cases.
9816
9817 2019-07-29 Richard Sandiford <richard.sandiford@arm.com>
9818
9819 * vector-builder.h (vector_builder): Add a shape template parameter.
9820 (vector_builder::new_unary_operation): New function, generalizing
9821 the old tree_vector_builder function.
9822 (vector_builder::new_binary_operation): Likewise.
9823 (vector_builder::binary_encoded_nelts): Likewise.
9824 * int-vector-builder.h (int_vector_builder): Update template
9825 parameters to vector_builder.
9826 (int_vector_builder::shape_nelts): New function.
9827 * rtx-vector-builder.h (rtx_vector_builder): Update template
9828 parameters to vector_builder.
9829 (rtx_vector_builder::shape_nelts): New function.
9830 (rtx_vector_builder::nelts_of): Likewise.
9831 (rtx_vector_builder::npatterns_of): Likewise.
9832 (rtx_vector_builder::nelts_per_pattern_of): Likewise.
9833 * tree-vector-builder.h (tree_vector_builder): Update template
9834 parameters to vector_builder.
9835 (tree_vector_builder::shape_nelts): New function.
9836 (tree_vector_builder::nelts_of): Likewise.
9837 (tree_vector_builder::npatterns_of): Likewise.
9838 (tree_vector_builder::nelts_per_pattern_of): Likewise.
9839 * tree-vector-builder.c (tree_vector_builder::new_unary_operation)
9840 (tree_vector_builder::new_binary_operation): Delete.
9841 (tree_vector_builder::binary_encoded_nelts): Likewise.
9842 * simplify-rtx.c: Include rtx-vector-builder.h.
9843 (distributes_over_addition_p): New function.
9844 (simplify_const_unary_operation)
9845 (simplify_const_binary_operation): Generalize handling of vector
9846 constants to include variable-length vectors.
9847 (test_vector_ops_series): Add more tests.
9848
9849 2019-07-28 Jan Hubicka <hubicka@ucw.cz>
9850
9851 PR lto/91222
9852 * ipa-devirt.c (warn_types_mismatch): Compare indentifiers
9853 than INDENTIFIER_POINTER.
9854
9855 2019-07-28 Martin Liska <mliska@suse.cz>
9856
9857 PR ipa/89330
9858 * cgraph.c (symbol_table::create_edge): Always allocate
9859 a cgraph_edge.
9860 (symbol_table::free_edge): Store summary_id to
9861 edge_released_summary_ids if != -1;
9862 * cgraph.h (NEXT_FREE_NODE): Remove.
9863 (SET_NEXT_FREE_NODE): Likewise.
9864 (NEXT_FREE_EDGE): Likewise.
9865 (symbol_table::release_symbol): Store summary_id to
9866 cgraph_released_summary_ids if != -1;
9867 (symbol_table::allocate_cgraph_symbol): Always allocate
9868 a cgraph_node.
9869
9870 2019-07-28 Alan Modra <amodra@gmail.com>
9871
9872 * config/rs6000/rs6000-call.c (rs6000_output_mi_thunk): Use
9873 gen_sibcall.
9874
9875 2019-07-28 Alan Modra <amodra@gmail.com>
9876
9877 PR target/91135
9878 * config/rs6000/linux.h (GNU_USER_TARGET_D_OS_VERSIONS): Don't
9879 define.
9880 * config/rs6000/linux64.h (TARGET_OS_CPP_BUILTINS): Invoke
9881 GNU_USER_TARGET_OS_CPP_BUILTINS for aixdesc abi.
9882 (GNU_USER_TARGET_D_OS_VERSIONS): Don't define.
9883
9884 2019-07-28 Alan Modra <amodra@gmail.com>
9885
9886 PR target/91050
9887 * config/rs6000/sysv4.h (ASM_DEFAULT_SPEC): Modify if -m64.
9888 * config/rs6000/default64.h (ASM_DEFAULT_SPEC): Define.
9889 * config/rs6000/freebsd64.h (ASM_DEFAULT_SPEC): Don't define.
9890 * config/rs6000/linux64.h (ASM_DEFAULT_SPEC): Likewise.
9891 * config/rs6000/rtems.h (ASM_DEFAULT_SPEC): Likewise.
9892 * config/rs6000/rs6000.h (ASM_DEFAULT_EXTRA): Define and use
9893 in asm_default spec.
9894 * config/rs6000/eabialtivec.h (ASM_DEFAULT_EXTRA): Redefine.
9895 * config/rs6000/linuxaltivec.h (ASM_DEFAULT_EXTRA): Redefine.
9896
9897 2019-07-28 Gerald Pfeifer <gerald@pfeifer.com>
9898
9899 * doc/include/gpl_v3.texi (Copying): Use https for www.gnu.org.
9900
9901 2019-07-26 Tamar Christina <tamar.christina@arm.com>
9902
9903 PR target/89517
9904 * config.gcc: Relax parsing of AARCH64_OPT_EXTENSION.
9905 * config/aarch64/aarch64-option-extensions.def: Add new comments
9906 and restore easier to read options.
9907
9908 2019-07-26 Tamar Christina <tamar.christina@arm.com>
9909
9910 * convert.c (convert_to_real_1): Move part of conversion code...
9911 * match.pd: ...To here.
9912
9913 2019-07-26 Martin Jambor <mjambor@suse.cz>
9914
9915 PR ipa/89330
9916 * ipa-inline-transform.c (check_speculations_1): New function.
9917 (push_all_edges_in_set_to_vec): Likewise.
9918 (check_speculations): Use check_speculations_1, new parameter
9919 new_edges.
9920 (inline_call): Pass new_edges to check_speculations.
9921 * ipa-inline.c (add_new_edges_to_heap): Assert edge_callee is not
9922 NULL.
9923 (speculation_useful_p): Early return true if edge is inlined, remove
9924 later checks for inline_failed.
9925
9926 2019-07-25 Vladimir Makarov <vmakarov@redhat.com>
9927
9928 PR rtl-optimization/91223
9929 * lra-constraints.c (process_alt_operands): Fail for unsuccessful
9930 matching with INOUT operand.
9931
9932 2019-07-25 Eric Botcazou <ebotcazou@adacore.com>
9933
9934 * stmt.c (expand_case): Try to narrow the index type if it's larger
9935 than a word. Tidy up.
9936
9937 2019-07-25 Eric Botcazou <ebotcazou@adacore.com>
9938
9939 * cif-code.def (NEVER_CALL): New code.
9940 * ipa-inline.c (want_inline_small_function_p): Fix formatting issues.
9941 Set the failure to CIF_NEVER_CALL if the IPA count is zero.
9942
9943 2019-07-25 Wilco Dijkstra <wdijkstr@arm.com>
9944
9945 * config/arm/thumb2.md (thumb2_movsi_insn): Fix load/store low reg.
9946 * config/arm/vfp.md (thumb2_movsi_vfp): Likewise.
9947
9948 2019-07-23 Jan Hubicka <hubicka@ucw.cz>
9949
9950 * ipa-devirt.c (add_type_duplicate): Fix return value.
9951
9952 2019-07-25 Richard Biener <rguenther@suse.de>
9953
9954 * tree-vrp.c (extract_range_from_multiplicative_op): Add
9955 type parameter and use it instead of guessing expression
9956 type from the first operand.
9957 (extract_range_from_binary_expr): Pass expr_type down.
9958
9959 2019-07-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9960
9961 * config/arm/arm.md (SATrev): Change to code attribute.
9962 (*satsi_<SAT:code>): Adjust for the above.
9963 (*satsi_<SAT:code>_shift): Likewise.
9964
9965 2019-07-25 Richard Biener <rguenther@suse.de>
9966
9967 * gimple-loop-versioning.cc (loop_versioning::prune_loop_conditions):
9968 Make value_range * temporary const.
9969 * gimple-ssa-evrp-analyze.c (evrp_range_analyzer::try_find_new_range):
9970 Likewise.
9971 (evrp_range_analyzer::record_ranges_from_): Likewise.
9972 (evrp_range_analyzer::pop_value_range): Return a const value_range *,
9973 deal with having recorded a const one.
9974 * gimple-ssa-evrp-analyze.h (evrp_range_analyzer::get_value_range):
9975 Return a const value_range *.
9976 (evrp_range_analyzer::pop_value_range): Likewise.
9977 (evrp_range_analyzer::stack): Record const value_range *s.
9978 * gimple-ssa-evrp.c (evrp_dom_walker::before_dom_children):
9979 Adjust.
9980 * gimple-ssa-sprintf.c (get_int_range): Likewise.
9981 (format_integer): Likewise.
9982 (sprintf_dom_walker::handle_gimple_call): Likewise.
9983 * tree-ssa-dom.c (simplify_stmt_for_jump_threading): Likewise.
9984 * tree-vrp.c (vrp_prop::set_def_to_varying): Add.
9985 (vrp_prop::get_value_range): Adjust.
9986 (vrp_prop::vrp_initialize): Use set_def_to_varying instead of
9987 modifying the lattice in-place.
9988 (vrp_prop::visit_stmt): Likewise.
9989 * vr-values.c (vr_values::get_lattice_entry): New private method.
9990 (vr_values::get_value_range): Wrap it and return a const
9991 value_range *.
9992 (vr_values::set_def_to_varying): New.
9993 (vr_values::set_defs_to_varying): Use it.
9994 (vr_values::update_value_range): Likewise.
9995 (vr_values::vrp_stmt_computes_nonzero): Adjust.
9996 (values::op_with_constant_singleton_va): Likewise.
9997 (vr_values::extract_range_for_var_from_co): Likewise.
9998 (vr_values::extract_range_from_ssa_name): Likewise.
9999 (vr_values::extract_range_from_cond_expr): Likewise.
10000 (vr_values::extract_range_basic): Likewise.
10001 (compare_ranges): Take const value_range *, adjust.
10002 (compare_range_with_value): Likewise.
10003 (vrp_valueize): Adjust.
10004 (vrp_valueize_1): Likewise.
10005 (vr_values::get_vr_for_comparison): Return a const value_range *.
10006 (vr_values::compare_name_with_value): Adjust.
10007 (vr_values::compare_names): Likewise.
10008 (vr_values::vrp_evaluate_conditional_warnv_with_ops_using_ranges):
10009 Likewise.
10010 (vr_values::vrp_evaluate_conditional): Likewise.
10011 (find_case_label_ranges): Take a const value_range *.
10012 (vr_values::vrp_visit_switch_stmt): Adjust.
10013 (vr_values::extract_range_from_phi_node): Likewise.
10014 (vr_values::simplify_div_or_mod_using_ran): Likewise.
10015 (vr_values::simplify_abs_using_ranges): Likewise.
10016 (test_for_singularity): Take a const value_range *.
10017 (range_fits_type_p): Likewise.
10018 (vr_values::simplify_cond_using_ranges_1): Adjust.
10019 (vr_values::simplify_cond_using_ranges_2): Likewise.
10020 (vr_values::simplify_switch_using_ranges): Likewise.
10021 (vr_values::simplify_float_conversion_usi): Likewise.
10022 (vr_values::two_valued_val_range_p): Likewise.
10023 * vr-values.h (vr_values::get_value_range): Return a const
10024 value_range *.
10025 (vr_values::set_def_to_varying): New.
10026 (vr_values::get_lattice_entry): New private method.
10027 (vr_values::get_vr_for_comparison): Return a const value_range *.
10028
10029 2019-07-25 Martin Liska <mliska@suse.cz>
10030 Dominik Infuhr <dominik.infuehr@theobroma-systems.com>
10031
10032 PR c++/23383
10033 * common.opt: Add -fallocation-dce
10034 * gimple.c (gimple_call_operator_delete_p): New.
10035 * gimple.h (gimple_call_operator_delete_p): Likewise.
10036 * tree-core.h (enum function_decl_type): Add OPERATOR_DELETE.
10037 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Handle
10038 DECL_IS_OPERATOR_DELETE_P.
10039 (mark_all_reaching_defs_necessary_1): Likewise.
10040 (propagate_necessity): Likewise.
10041 (eliminate_unnecessary_stmts): Handle
10042 gimple_call_operator_delete_p.
10043 * tree-streamer-in.c (unpack_ts_function_decl_value_fields):
10044 Add packing of OPERATOR_DELETE.
10045 * tree-streamer-out.c (pack_ts_function_decl_value_fields):
10046 Similarly here.
10047 * tree.h (DECL_IS_OPERATOR_DELETE_P): New.
10048 (DECL_SET_IS_OPERATOR_DELETE): New.
10049 (DECL_IS_REPLACEABLE_OPERATOR_NEW_P): Likewise.
10050
10051 2019-07-25 Martin Liska <mliska@suse.cz>
10052
10053 * calls.c (maybe_warn_alloc_args_overflow): Use new macros
10054 (e.g. DECL_SET_LAMBDA_FUNCTION and DECL_LAMBDA_FUNCTION_P).
10055 * coverage.c (coverage_begin_function): Likewise.
10056 * fold-const.c (tree_expr_nonzero_warnv_p): Likewise.
10057 * gimple.c (gimple_call_nonnull_result_p): Likewise.
10058 * ipa-icf.c (sem_item::compare_referenced_symbol_properties): Likewise.
10059 (sem_item::hash_referenced_symbol_properties): Likewise.
10060 * lto-streamer-out.c (hash_tree): Likewise.
10061 * predict.c (expr_expected_value_1): Likewise.
10062 * tree-inline.c (expand_call_inline): Likewise.
10063 * tree-streamer-in.c (unpack_ts_function_decl_value_fields): Likewise.
10064 * tree-streamer-out.c (pack_ts_function_decl_value_fields): Likewise.
10065 * tree-core.h (enum function_decl_type): New enum.
10066 (struct tree_function_decl): Remove operator_new_flag and lambda_function.
10067 * tree.h (FUNCTION_DECL_DECL_TYPE): New.
10068 (set_function_decl_type): Likewise.
10069 (DECL_IS_OPERATOR_NEW_P): New.
10070 (DECL_SET_IS_OPERATOR_NEW): Likewise.
10071 (DECL_LAMBDA_FUNCTION): Likewise.
10072 (DECL_LAMBDA_FUNCTION_P): Likewise.
10073 (DECL_IS_OPERATOR_NEW): Remove.
10074 (DECL_SET_LAMBDA_FUNCTION): Likewise.
10075
10076 2019-07-25 Xiong Hu Luo <luoxhu@linux.ibm.com>
10077
10078 * ipa-profile.c (get_most_common_single_value): Use
10079 get_nth_most_common_value.
10080 * profile.c (sort_hist_value): New function.
10081 (compute_value_histograms): Call sort_hist_value to sort the
10082 values after loading from disk.
10083 * value-prof.c (get_most_common_single_value): Rename to ...
10084 get_nth_most_common_value. Add input params n, return
10085 the n_th value and count.
10086 (gimple_divmod_fixed_value_transform): Use
10087 get_nth_most_common_value.
10088 (gimple_ic_transform): Likewise.
10089 (gimple_stringops_transform): Likewise.
10090 * value-prof.h (get_most_common_single_value): Add input params
10091 n, default to 0.
10092
10093 2019-07-25 Richard Biener <rguenther@suse.de>
10094
10095 PR tree-optimization/91236
10096 * tree-ssa-sccvn.c (vn_walk_cb_data::push_partial_def): Fix
10097 size of CONSTRUCTOR write. Fix buffer size we pass to
10098 native_encode_expr.
10099
10100 2019-07-24 Jozef Lawrynowicz <jozef.l@mittosystems.com>
10101
10102 * config.gcc (msp430*-*-*): Fix non-GNU style in r273774.
10103 * config/msp430/msp430.h (ENDFILE_SPEC): Fix non-GNU style in
10104 r273773.
10105
10106 2019-07-24 Jozef Lawrynowicz <jozef.l@mittosystems.com>
10107
10108 * config.gcc (msp430*-*-*): Enable initfini_array by default unless
10109 explicitly disabled with --disable-initfini-array.
10110
10111 2019-07-24 Jozef Lawrynowicz <jozef.l@mittosystems.com>
10112
10113 * config/msp430/msp430.h (ENDFILE_SPEC): Wrap uses of crtn*.o in
10114 if-exists.
10115
10116 2019-07-24 Martin Sebor <msebor@redhat.com>
10117
10118 PR tree-optimization/91183
10119 PR tree-optimization/86688
10120 * builtins.c (compute_objsize): Handle MEM_REF.
10121 * tree-ssa-strlen.c (class ssa_name_limit_t): New.
10122 (get_min_string_length): Remove.
10123 (count_nonzero_bytes): New function.
10124 (handle_char_store): Rename...
10125 (handle_store): to this. Handle multibyte stores via integer types.
10126 (strlen_check_and_optimize_stmt): Adjust conditional and the called
10127 function name.
10128
10129 2019-07-24 Martin Sebor <msebor@redhat.com>
10130
10131 PR driver/80545
10132 * diagnostic.c (diagnostic_classify_diagnostic): Use lang_mask.
10133 (diagnostic_report_diagnostic): Same.
10134 * diagnostic.h (diagnostic_context::option_enabled): Add an argument.
10135 (diagnostic_context::lang_mask): New data member.
10136 * ipa-pure-const.c (suggest_attribute): Use
10137 lang_hooks.option_lang_mask ().
10138 * opts-common.c (option_enabled): Handle new argument.
10139 (get_option_state): Pass an additional argument.
10140 * opts.c (print_filtered_help): Print supported languages for
10141 unsupported options. Adjust printing of current state.
10142 * opts.h (option_enabled): Add argument.
10143 * toplev.c (print_switch_values): Use lang_mask.
10144 (general_init): Set global_dc->lang_mask.
10145
10146 2019-07-24 Iain Sandoe <iain@sandoe.co.uk>
10147
10148 PR bootstrap/87030
10149 * config/i386/darwin.h (REAL_LIBGCC_SPEC): Revert change from r273749.
10150
10151 2019-07-24 Giuliano Belinassi <giuliano.belinassi@usp.br>
10152
10153 * cgraphunit.c (symbol_table::compile): Start and stop
10154 TV_CGRAPH_IPA_PASSES and TV_CGRAPH_FUNC_EXPANSION timers.
10155 * timevar.def (TV_CGRAPH_IPA_PASSES, TV_CGRAPH_FUNC_EXPANSION): New.
10156
10157 2019-07-24 Oliver Browne <oliverbrowne62@gmail.com>
10158
10159 * gimplify.c (flag_instrument_functions_exclude_p): Include
10160 namespace/class information in the printable name.
10161 * opts.c (add_comma_separated_to_vector): Add NUL terminator
10162 to tokens entered into the vector.
10163
10164 2019-07-24 Eric Botcazou <ebotcazou@adacore.com>
10165
10166 * tree-nested.c (build_simple_mem_ref_notrap): New function.
10167 (get_static_chain): Call it instead of build_simple_mem_ref.
10168 (get_frame_field): Likewise.
10169 (get_nonlocal_debug_decl): Likewise.
10170 (convert_nonlocal_reference_op): Likewise.
10171
10172 2019-07-24 Claudiu Zissulescu <claziss@synopsys.com>
10173
10174 * config/arc/arc-protos.h (arc_output_function_epilogue): Delete
10175 declaration.
10176 (arc_compute_frame_size): Millicode is disabled when compiling
10177 ISR.
10178 (arc_return_address_register): Likewise.
10179 (arc_compute_function_type): Likewise.
10180 (arc_compute_frame_size): Likewise.
10181 (secondary_reload_info): Likewise.
10182 (arc_get_unalign): Likewise.
10183 (arc_can_use_return_insn): Declare.
10184 * config/arc/arc.c (AUX_LP_START): Define
10185 (AUX_LP_END): Likewise.
10186 (arc_frame_info): Update gmask member to 64-bit datum.
10187 (GMASK_LEN): Update.
10188 (arc_compute_function_type): Make it static, move it forward.
10189 (arc_must_save_register): Update, consider the extra regs.
10190 (arc_compute_millicode_save_restore_regs): Update to use the 64
10191 bit gmask.
10192 (arc_compute_frame_size): Likewise.
10193 (arc_enter_leave_p): Likewise.
10194 (arc_save_callee_saves): Likewise.
10195 (arc_restore_callee_saves): Likewise.
10196 (arc_save_callee_enter): Likewise.
10197 (arc_restore_callee_leave): Likewise.
10198 (arc_save_callee_milli): Likewise.
10199 (arc_restore_callee_milli): Likewise.
10200 (arc_expand_prologue): Add new interrupt handling.
10201 (arc_return_address_register): Make it static, move it forward.
10202 (arc_expand_epilogue): Add new interrupt handling.
10203 (arc_get_unalign): Delete.
10204 (arc_epilogue_uses): Make sure we do not remove the extra
10205 saved/restored registers when interrupt.
10206 (arc_can_use_return_insn): New function.
10207 (push_reg): Likewise.
10208 (pop_reg): Likewise.
10209 (arc_save_callee_saves): Add ZOL and FPX aux registers saving
10210 procedures.
10211 (arc_restore_callee_saves): Likewise, but restoring.
10212 * config/arc/arc.md (VUNSPEC_ARC_ARC600_RTIE): Define.
10213 (R33_REG): Likewise.
10214 (R34_REG): Likewise.
10215 (R35_REG): Likewise.
10216 (R36_REG): Likewise.
10217 (R37_REG): Likewise.
10218 (R38_REG): Likewise.
10219 (R39_REG): Likewise.
10220 (R45_REG): Likewise.
10221 (R46_REG): Likewise.
10222 (R47_REG): Likewise.
10223 (R48_REG): Likewise.
10224 (R49_REG): Likewise.
10225 (R50_REG): Likewise.
10226 (R51_REG): Likewise.
10227 (R52_REG): Likewise.
10228 (R53_REG): Likewise.
10229 (R54_REG): Likewise.
10230 (R55_REG): Likewise.
10231 (R56_REG): Likewise.
10232 (R58_REG): Likewise.
10233 (type): Add rtie attribute.
10234 (in_call_delay_slot): Use RETURN_ADDR_REGNUM.
10235 (movsi_insn): Accept moves to lp_count.
10236 (rtie): Update pattern.
10237 (simple_return): Simplify it, don't use this pattern as a return
10238 from an interrupt.
10239 (arc600_rtie): New pattern.
10240 (p_return_i): Clean up.
10241 (return): Likewise.
10242 * config/arc/builtins.def (rtie): Only available for non ARC6xx
10243 family CPUs.
10244 * config/arc/predicates.md (move_src_operand): Consider lp_count
10245 as a register.
10246
10247 2019-07-24 Andreas Krebbel <krebbel@linux.ibm.com>
10248
10249 * config/s390/predicates.md (addv_const_operand): New predicate.
10250 * config/s390/s390-modes.def (CCO): New condition code mode.
10251 * config/s390/s390.c (s390_match_ccmode_set): Handle E_CCOmode.
10252 (s390_branch_condition_mask): Likewise.
10253 * config/s390/s390.md ("addv<mode>4", "subv<mode>4")
10254 ("mulv<mode>4"): New expanders.
10255 ("*addv<mode>3_ccoverflow", "*addv<mode>3_ccoverflow_const")
10256 ("*subv<mode>3_ccoverflow", "*mulv<mode>3_ccoverflow"): New
10257 pattern definitions.
10258
10259 2019-07-24 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
10260
10261 PR middle-end/91166
10262 * match.pd (vec_perm_expr(v, v, mask) -> v): New pattern.
10263 (define_predicates): Add entry for uniform_vector_p.
10264 (vec_same_elem_p): New match pattern.
10265
10266 2019-07-24 Iain Sandoe <iain@sandoe.co.uk>
10267
10268 PR bootstrap/87030
10269 * config/i386/darwin.h (REAL_LIBGCC_SPEC): Move from here...
10270 * config/i386/darwin32-biarch.h .. to here.
10271 * config/i386/darwin64-biarch.h: Adjust comments.
10272 * config/rs6000/darwin32-biarch.h: Likewise.
10273 * config/rs6000/darwin64-biarch.h: Likewise.
10274 * config.gcc: Missed commit from r273746
10275 (*-*-darwin*): Don't include CPU t-darwin here.
10276 (i[34567]86-*-darwin*): Adjust to use biarch files. Produce
10277 an error message if i686-darwin configuration is attempted for
10278 Darwin >= 18.
10279
10280 2019-07-23 Iain Sandoe <iain@sandoe.co.uk>
10281
10282 PR bootstrap/87030
10283 * config.gcc (*-*-darwin*): Don't include CPU t-darwin here.
10284 (i[34567]86-*-darwin*): Adjust to use biarch files. Produce
10285 an error message if i686-darwin configuration is attempted for
10286 Darwin >= 18.
10287 (x86_64-*-darwin*): Switch to single multilib for Darwin >= 18.
10288 (powerpc-*-darwin*): Use biarch files where needed.
10289 (powerpc64-*-darwin*): Likewise.
10290 * config/i386/darwin.h (REAL_LIBGCC_SPEC): Move to new biarch file.
10291 (DARWIN_ARCH_SPEC, DARWIN_SUBARCH_SPEC): Revise for default single
10292 arch case.
10293 * config/i386/darwin32-biarch.h: New.
10294 * config/i386/darwin64.h: Rename.
10295 * config/i386/darwin64-biarch.h: To this.
10296 * config/i386/t-darwin: Rename.
10297 * config/i386/t-darwin32-biarch: To this.
10298 * config/i386/t-darwin64: Rename.
10299 * config/i386/t-darwin64-biarch: To this.
10300 * config/rs6000/darwin32-biarch.h: New.
10301 * config/rs6000/darwin64.h: Rename.
10302 * config/rs6000/darwin64-biarch.h: To this.
10303 (DARWIN_ARCH_SPEC, DARWIN_SUBARCH_SPEC): Revise for default single
10304 arch case.
10305 * config/rs6000/t-darwin8: Rename.
10306 * config/rs6000/t-darwin32-biarch: To this.
10307 * config/rs6000/t-darwin64 Rename.
10308 * config/rs6000/t-darwin64-biarch: To this.
10309
10310 2019-07-23 Martin Sebor <msebor@redhat.com>
10311
10312 * configure.ac (ACX_PROG_CXX_WARNING_OPTS): Revert r273311.
10313
10314 2019-07-23 Vladislav Ivanishin <vlad@ispras.ru>
10315
10316 * gdbinit.in (reload-gdbhooks): New command with an attached doc string.
10317 (rh): New alias for it.
10318
10319 2019-07-23 Vladislav Ivanishin <vlad@ispras.ru>
10320
10321 * gdbhooks.py: Pass replace=True to
10322 gdb.printing.register_pretty_printer.
10323
10324 2019-07-23 Richard Biener <rguenther@suse.de>
10325
10326 PR debug/91231
10327 * lto-streamer-in.c (input_function): Drop inline-entry markers
10328 that ended up with an unknown location block.
10329
10330 2019-07-23 Richard Biener <rguenther@suse.de>
10331
10332 PR tree-optimization/83518
10333 * tree-ssa-sccvn.c (vn_reference_lookup_3): Handle aggregate
10334 init from a constant even when partial defs are already recorded.
10335
10336 2019-07-23 Jan Hubicka <hubicka@ucw.cz>
10337
10338 * i386-common.c: Use PROCESSOR_ZNVER2 scheduler for znver2.
10339 * config/i386/znver1.md: Enable patterns for znver2 and add store
10340 variants which use extra AGU unit.
10341
10342 2019-07-23 Jan Hubicka <hubicka@ucw.cz>
10343
10344 * config/i386/i386-options.c (ix86_option_override_internal): Default
10345 PARAM_AVOID_FMA_MAX_BITS to 256 for znver2.
10346 * config/i386/x86-tune.def (X86_TUNE_AVOID_256FMA_CHAINS): Set
10347 for ZNVER2.
10348
10349 2019-07-23 Jan Hubicka <hubicka@ucw.cz>
10350
10351 * config/i386/x86-tune-costs.h (znver2_memcpy): Update.
10352 (znver2_costs): Update 256 bit SSE costs and multiplication.
10353
10354 2019-07-23 Jan Beulich <jbeulich@suse.com>
10355
10356 * config/i386/sse.md (<avx512>_cvtmask2<ssemodesuffix><mode>):
10357 Require only AVX512F.
10358 (*<avx512>_cvtmask2<ssemodesuffix><mode>): Likewise. Add
10359 alternative expanding to vpternlog.
10360
10361 2019-07-23 Martin Liska <mliska@suse.cz>
10362
10363 * dwarf2out.c (gen_producer_string): Canonize -flto=N
10364 to -flto in dwarf producer string.
10365
10366 2019-07-23 Richard Biener <rguenther@suse.de>
10367
10368 * tree-cfg.c (label_for_bb): Remove global var.
10369 (main_block_label): Take label_for_bb as argument.
10370 (cleanup_dead_labels_eh): Likewise, adjust.
10371 (cleanup_dead_labels): Adjust.
10372
10373 2019-07-22 Paul A. Clarke <pc@us.ibm.com>
10374
10375 * doc/extend.texi (Basic PowerPC Built-in Functions Available on all
10376 Configurations): Add documentation for __builtin_mtfsf.
10377
10378 2019-07-22 Ilia Diachkov <ilia.diachkov@optimitech.com>
10379
10380 * config/riscv/riscv-opts.h (struct riscv_align_data): New.
10381 * config/riscv/riscv.c (riscv_constant_alignment): Use
10382 riscv_align_data_type.
10383 * config/riscv/riscv.h (RISCV_EXPAND_ALIGNMENT): New.
10384 (DATA_ALIGNMENT): Use RISCV_EXPAND_ALIGNMENT.
10385 (LOCAL_ALIGNMENT): Use RISCV_EXPAND_ALIGNMENT.
10386 * config/riscv/riscv.opt (malign-data): New.
10387 * doc/invoke.texi (RISC-V Options): Document -malign-data=.
10388
10389 2019-07-02 Giuliano Belinassi <giuliano.belinassi@usp.br>
10390
10391 * cgraph.c (dump_graphviz): New function.
10392 * cgraph.h (dump_graphviz): New function.
10393 * symtab.c (dump_graphviz): New function.
10394
10395 2019-07-22 Sylvia Taylor <sylvia.taylor@arm.com>
10396
10397 * config/aarch64/aarch64-simd.md
10398 (*aarch64_simd_sra<mode>): New.
10399 * config/aarch64/iterators.md
10400 (SHIFTRT): New iterator.
10401 (sra_op): New attribute.
10402
10403 2019-07-22 Jozef Lawrynowicz <jozef.l@mittosystems.com>
10404
10405 * config/msp430/msp430.c (msp430_preserve_reg_p): Don't save
10406 callee-saved regs R4->R10 in an interrupt function that calls another
10407 function.
10408
10409 2019-07-22 Paul A. Clarke <pc@us.ibm.com>
10410
10411 * config/rs6000/smmintrin.h (_mm_blend_epi16): New.
10412 (_mm_blendv_epi8): New.
10413
10414 2019-07-22 Richard Biener <rguenther@suse.de>
10415
10416 PR tree-optimization/91221
10417 * tree-ssa-sccvn.c (vn_reference_lookup_3): Appropriately
10418 restrict partial-def handling of empty constructors and
10419 memset to refs with known offset.
10420
10421 2019-07-22 Jan Beulich <jbeulich@suse.com>
10422
10423 * config/i386/sse.md (ternlogsuffix): New.
10424 (one_cmpl<mode>2): Don't force CONSTM1_RTX into a register when
10425 AVX512F is in use.
10426 (<mask_codefor>one_cmpl<mode>2<mask_name>): New.
10427
10428 2019-07-22 Martin Liska <mliska@suse.cz>
10429
10430 * config/avr/avr.c (avr_asm_output_aligned_decl_common): Update
10431 comment.
10432 * toplev.c (compile_file): Do not emit __gnu_lto_v1 symbol.
10433
10434 2019-07-22 Martin Liska <mliska@suse.cz>
10435
10436 * lto-section-in.c (lto_get_section_data):
10437 Use new function get_compression.
10438 * lto-streamer-out.c (produce_lto_section): Use
10439 set_compression to encode compression algorithm.
10440 * lto-streamer.h (struct lto_section): Do not
10441 use bitfields in the format.
10442
10443 2019-07-22 Martin Liska <mliska@suse.cz>
10444
10445 PR driver/91172
10446 * opts-common.c (decode_cmdline_option): Decode
10447 argument of -Werror and check it for a wrong language.
10448 * opts-global.c (complain_wrong_lang): Remove such case.
10449
10450 2019-07-22 Claudiu Zissulescu <claziss@synopsys.com>
10451
10452 * config/arc/arc.c (prepare_move_operands): Always use an
10453 intermediate register when storing a TLS symbols.
10454
10455 2019-07-22 Stafford Horne <shorne@gmail.com>
10456
10457 * config/or1k/or1k.c (or1k_expand_compare): Check for int before
10458 force_reg.
10459
10460 2019-07-22 Stafford Horne <shorne@gmail.com>
10461
10462 * config.gcc (or1k*-*-*): Add mhard-float, mdouble-float, msoft-float
10463 and munordered-float validations.
10464 * config/or1k/constraints.md (d): New register constraint.
10465 * config/or1k/predicates.md (fp_comparison_operator): New.
10466 * config/or1k/or1k.c (or1k_print_operand): Add support for printing 'd'
10467 operands.
10468 (or1k_expand_compare): Normalize unordered comparisons.
10469 * config/or1k/or1k.h (reg_class): Define DOUBLE_REGS.
10470 (REG_CLASS_NAMES): Add "DOUBLE_REGS".
10471 (REG_CLASS_CONTENTS): Add contents for DOUBLE_REGS.
10472 * config/or1k/or1k.md (type): Add fpu.
10473 (fpu): New instruction reservation.
10474 (F, f, fr, fi, FI, FOP, fop): New.
10475 (<fop><F:mode>3): New ALU instruction definition.
10476 (float<fi><F:mode>2): New conversion instruction definition.
10477 (fix_trunc<F:mode><fi>2): New conversion instruction definition.
10478 (fpcmpcc): New code iterator.
10479 (*sf_fp_insn): New instruction definition.
10480 (cstore<F:mode>4): New expand definition.
10481 (cbranch<F:mode>4): New expand definition.
10482 * config/or1k/or1k.opt (msoft-float, mhard-float, mdouble-float,
10483 munordered-float): New options.
10484 * doc/invoke.texi: Document msoft-float, mhard-float, mdouble-float and
10485 munordered-float.
10486
10487 2019-07-22 Stafford Horne <shorne@gmail.com>
10488
10489 * config.gcc (or1k*-*-*): Add mrori and mror to validation.
10490 * doc/invoke.texi (OpenRISC Options): Add mrori option, rewrite all
10491 documenation to be more clear.
10492 * config/or1k/elf.opt (mboard=, mnewlib): Rewrite documentation to be
10493 more clear.
10494 * config/or1k/or1k.opt (mrori): New option.
10495 (mhard-div, msoft-div, mhard-mul, msoft-mul, mcmov, mror, msext,
10496 msfimm, mshftimm): Rewrite documentation to be more clear.
10497 * config/or1k/or1k.md (insn_support): Add ror and rori.
10498 (enabled): Add conditions for ror and rori.
10499 (rotrsi3): Replace condition for shftimm with ror and rori.
10500
10501 2019-07-22 Stafford Horne <shorne@gmail.com>
10502
10503 PR target/90363
10504 * config/or1k/or1k.md (zero_extend<mode>si2): Update predicate.
10505 (extend<mode>si2): Update predicate.
10506 * config/or1k/predicates.md (volatile_mem_operand): New.
10507 (reg_or_mem_operand): New.
10508
10509 2019-07-21 Iain Sandoe <iain@sandoe.co.uk>
10510
10511 * config/rs6000/rs6000.c (TARGET_NO_PROTOTYPE): Move from here...
10512 * config/rs6000/rs6000-call.c: ... to here.
10513
10514 2019-07-20 Segher Boessenkool <segher@kernel.crashing.org>
10515
10516 * config/rs6000/predicates.md (offsettable_mem_operand): Allow volatile
10517 memory.
10518
10519 2019-07-20 Segher Boessenkool <segher@kernel.crashing.org>
10520
10521 * config/rs6000/predicates.md (input_operand): Allow volatile memory.
10522
10523 2019-07-20 Segher Boessenkool <segher@kernel.crashing.org>
10524
10525 * config/rs6000/predicates.md (lwa_operand): Allow volatile memory.
10526
10527 2019-07-20 Segher Boessenkool <segher@kernel.crashing.org>
10528
10529 * config/rs6000/predicates.md (volatile_mem_operand): Modernize syntax.
10530 (any_memory_operand): New predicate.
10531 (reg_or_mem_operand): Use it.
10532
10533 2019-07-20 Jakub Jelinek <jakub@redhat.com>
10534
10535 PR target/91204
10536 * optabs.c (expand_unop): As fallback, expand ~op0 as op0 ^ -1.
10537
10538 2019-07-20 John David Anglin <danglin@gcc.gnu.org>
10539
10540 * config/pa/pa.h (hppa_profile_hook): Delete declaration.
10541 * config/pa/pa-protos.h (hppa_profile_hook): Add declaration.
10542
10543 2019-07-20 Jakub Jelinek <jakub@redhat.com>
10544
10545 * tree.def (OMP_LOOP): New tree code.
10546 * tree-core.h (enum omp_clause_code): Add OMP_CLAUSE_BIND.
10547 (enum omp_clause_bind_kind): New enum.
10548 (struct tree_omp_clause): Add subcode.bind_kind.
10549 * tree.h (OMP_LOOP_CHECK): Rename to ...
10550 (OMP_LOOPING_CHECK): ... this.
10551 (OMP_FOR_BODY, OMP_FOR_CLAUSES, OMP_FOR_INIT, OMP_FOR_COND,
10552 OMP_FOR_INCR, OMP_FOR_PRE_BODY, OMP_FOR_ORIG_DECLS): Use
10553 OMP_LOOPING_CHECK instead of OMP_LOOP_CHECK.
10554 (OMP_CLAUSE_BIND_KIND): Define.
10555 * tree.c (omp_clause_num_ops, omp_clause_code_name): Add
10556 bind clause entries.
10557 (walk_tree_1): Handle OMP_CLAUSE_BIND.
10558 * tree-pretty-print.c (dump_omp_clause): Likewise.
10559 (dump_generic_node): Handle OMP_LOOP.
10560 * gimplify.c (enum omp_region_type): Add ORT_IMPLICIT_TARGET.
10561 (in_omp_construct): New variable.
10562 (is_gimple_stmt): Handle OMP_LOOP.
10563 (gimplify_scan_omp_clauses): For lastprivate don't set
10564 check_non_private if code == OMP_LOOP. For reduction clause
10565 on OMP_LOOP combined with parallel or teams propagate as shared
10566 on the combined construct. Handle OMP_CLAUSE_BIND.
10567 (gimplify_adjust_omp_clauses): Handle OMP_CLAUSE_BIND.
10568 (gimplify_omp_for): Pass OMP_LOOP instead of OMP_{FOR,DISTRIBUTE}
10569 for constructs from a loop construct to gimplify_scan_omp_clauses.
10570 Don't predetermine iterator linear on OMP_SIMD from loop construct.
10571 (replace_reduction_placeholders, gimplify_omp_loop): New functions.
10572 (gimplify_omp_workshare): Use ORT_IMPLICIT_TARGET instead of trying
10573 to match the implicit ORT_TARGET construct around whole body.
10574 Temporarily clear in_omp_construct when processing body.
10575 (gimplify_expr): Handle OMP_LOOP. For OMP_MASTER, OMP_TASKGROUP
10576 etc. temporarily set in_omp_construct when processing body.
10577 (gimplify_body): Create ORT_IMPLICIT_TARGET instead of ORT_TARGET.
10578 * omp-low.c (struct omp_context): Add loop_p.
10579 (build_outer_var_ref): Treat ctx->loop_p similarly to simd construct
10580 in that the original var might be private.
10581 (scan_sharing_clauses): Handle OMP_CLAUSE_BIND.
10582 (check_omp_nesting_restrictions): Adjust nesting restrictions for
10583 addition of loop construct.
10584 (scan_omp_1_stmt): Allow setjmp inside of loop construct.
10585
10586 * omp-low.c (lower_rec_input_clauses): Don't force simd arrays for
10587 lastprivate non-addressable iterator of a collapse(1) simd.
10588
10589 2019-07-17 Bill Seurer <seurer@linux.vnet.ibm.com>
10590
10591 * config/rs6000/rs6000-call.c (HAVE_AS_GNU_ATTRIBUTE): define value
10592 as in rs6000.c.
10593
10594 2019-07-19 Iain Sandoe <iain@sandoe.co.uk>
10595
10596 * config/darwin.h (DRIVER_SELF_SPECS): Ignore X and Mach specs which
10597 refer to default conditions. Warn for the 'y' spec which is ignored
10598 by current linkers.
10599
10600 2019-07-19 Bill Seurer <seurer@linux.vnet.ibm.com>
10601
10602 * config/rs6000/rs6000.c (builtin_description, cpu_is_info,
10603 cpu_supports_info, builtin_hash_struct, builtin_hasher,
10604 builtin_hash_table, rs6000_builtin_info_type, rs6000_builtin_info,
10605 rs6000_aggregate_candidate, rs6000_discover_homogeneous_aggregate,
10606 rs6000_return_in_memory, rs6000_return_in_msb, call_ABI_of_interest,
10607 init_cumulative_args, rs6000_promote_function_mode,
10608 rs6000_must_pass_in_stack, is_complex_IBM_long_double,
10609 abi_v4_pass_in_fpr, rs6000_function_arg_padding,
10610 rs6000_function_arg_boundary, rs6000_parm_offset,
10611 rs6000_parm_start, rs6000_arg_size,
10612 rs6000_darwin64_record_arg_advance_flush,
10613 rs6000_darwin64_record_arg_advance_recurse,
10614 rs6000_darwin64_struct_check_p, rs6000_function_arg_advance_1,
10615 rs6000_function_arg_advance, rs6000_darwin64_record_arg_flush,
10616 rs6000_darwin64_record_arg_recurse, rs6000_darwin64_record_arg,
10617 rs6000_mixed_function_arg, rs6000_psave_function_arg,
10618 rs6000_finish_function_arg, rs6000_function_arg,
10619 rs6000_arg_partial_bytes, rs6000_pass_by_reference,
10620 rs6000_parm_needs_stack, rs6000_function_parms_need_stack,
10621 rs6000_reg_parm_stack_space, rs6000_move_block_from_reg,
10622 setup_incoming_varargs, rs6000_build_builtin_va_list, rs6000_va_start,
10623 rs6000_gimplify_va_arg, def_builtin, bdesc_3arg, bdesc_dst,
10624 bdesc_2arg, bdesc_altivec_preds, bdesc_abs, bdesc_1arg, bdesc_0arg,
10625 bdesc_htm, rs6000_overloaded_builtin_p, rs6000_overloaded_builtin_name,
10626 rs6000_expand_zeroop_builtin, rs6000_expand_mtfsf_builtin,
10627 rs6000_expand_mtfsb_builtin, rs6000_expand_set_fpscr_rn_builtin,
10628 rs6000_expand_set_fpscr_drn_builtin, rs6000_expand_unop_builtin,
10629 altivec_expand_abs_builtin, rs6000_expand_binop_builtin,
10630 altivec_expand_predicate_builtin, swap_endian_selector_for_mode,
10631 altivec_expand_lv_builtin, altivec_expand_stxvl_builtin,
10632 altivec_expand_stv_builtin, htm_spr_num, rs6000_htm_spr_icode,
10633 htm_expand_builtin, cpu_expand_builtin, rs6000_expand_ternop_builtin,
10634 altivec_expand_dst_builtin, altivec_expand_vec_init_builtin,
10635 get_element_number, altivec_expand_vec_set_builtin,
10636 altivec_expand_vec_ext_builtin, altivec_expand_builtin,
10637 rs6000_builtin_is_supported_p, rs6000_invalid_builtin,
10638 rs6000_fold_builtin, rs6000_builtin_valid_without_lhs,
10639 fold_build_vec_cmp, fold_compare_helper, fold_mergehl_helper,
10640 fold_mergeeo_helper, rs6000_gimple_fold_builtin,
10641 rs6000_expand_builtin, rs6000_vector_type,
10642 rs6000_init_builtins, rs6000_builtin_decl, altivec_init_builtins,
10643 htm_init_builtins, builtin_function_type, rs6000_common_init_builtins,
10644 rs6000_internal_arg_pointer, rs6000_output_mi_thunk): Move
10645 to rs6000-call.c.
10646 * config/rs6000/rs6000-call.c (builtin_description, cpu_is_info,
10647 cpu_supports_info, builtin_hash_struct, builtin_hasher,
10648 builtin_hash_table, rs6000_builtin_info_type, rs6000_builtin_info,
10649 rs6000_aggregate_candidate, rs6000_discover_homogeneous_aggregate,
10650 rs6000_return_in_memory, rs6000_return_in_msb, call_ABI_of_interest,
10651 init_cumulative_args, rs6000_promote_function_mode,
10652 rs6000_must_pass_in_stack, is_complex_IBM_long_double,
10653 abi_v4_pass_in_fpr, rs6000_function_arg_padding,
10654 rs6000_function_arg_boundary, rs6000_parm_offset,
10655 rs6000_parm_start, rs6000_arg_size,
10656 rs6000_darwin64_record_arg_advance_flush,
10657 rs6000_darwin64_record_arg_advance_recurse,
10658 rs6000_darwin64_struct_check_p, rs6000_function_arg_advance_1,
10659 rs6000_function_arg_advance, rs6000_darwin64_record_arg_flush,
10660 rs6000_darwin64_record_arg_recurse, rs6000_darwin64_record_arg,
10661 rs6000_mixed_function_arg, rs6000_psave_function_arg,
10662 rs6000_finish_function_arg, rs6000_function_arg,
10663 rs6000_arg_partial_bytes, rs6000_pass_by_reference,
10664 rs6000_parm_needs_stack, rs6000_function_parms_need_stack,
10665 rs6000_reg_parm_stack_space, rs6000_move_block_from_reg,
10666 setup_incoming_varargs, rs6000_build_builtin_va_list, rs6000_va_start,
10667 rs6000_gimplify_va_arg, def_builtin, bdesc_3arg, bdesc_dst,
10668 bdesc_2arg, bdesc_altivec_preds, bdesc_abs, bdesc_1arg, bdesc_0arg,
10669 bdesc_htm, rs6000_overloaded_builtin_p, rs6000_overloaded_builtin_name,
10670 rs6000_expand_zeroop_builtin, rs6000_expand_mtfsf_builtin,
10671 rs6000_expand_mtfsb_builtin, rs6000_expand_set_fpscr_rn_builtin,
10672 rs6000_expand_set_fpscr_drn_builtin, rs6000_expand_unop_builtin,
10673 altivec_expand_abs_builtin, rs6000_expand_binop_builtin,
10674 altivec_expand_predicate_builtin, swap_endian_selector_for_mode,
10675 altivec_expand_lv_builtin, altivec_expand_stxvl_builtin,
10676 altivec_expand_stv_builtin, htm_spr_num, rs6000_htm_spr_icode,
10677 htm_expand_builtin, cpu_expand_builtin, rs6000_expand_ternop_builtin,
10678 altivec_expand_dst_builtin, altivec_expand_vec_init_builtin,
10679 get_element_number, altivec_expand_vec_set_builtin,
10680 altivec_expand_vec_ext_builtin, altivec_expand_builtin,
10681 rs6000_builtin_is_supported_p, rs6000_invalid_builtin,
10682 rs6000_fold_builtin, rs6000_builtin_valid_without_lhs,
10683 fold_build_vec_cmp, fold_compare_helper, fold_mergehl_helper,
10684 fold_mergeeo_helper, rs6000_gimple_fold_builtin,
10685 rs6000_expand_builtin, rs6000_vector_type,
10686 rs6000_init_builtins, rs6000_builtin_decl, altivec_init_builtins,
10687 htm_init_builtins, builtin_function_type, rs6000_common_init_builtins,
10688 rs6000_internal_arg_pointer, rs6000_output_mi_thunk: Move
10689 to here from rs6000.c.
10690 * config/rs6000/rs6000-internal.h: (rs6000_darwin64_struct_check_p,
10691 rs6000_discover_homogeneous_aggregate, rs6000_output_mi_thunk,
10692 rs6000_output_addr_const_extra, rs6000_gimple_fold_builtin,
10693 rs6000_invalid_builtin, rs6000_build_builtin_va_list, rs6000_va_start,
10694 rs6000_gimplify_va_arg, rs6000_promote_function_mode,
10695 rs6000_return_in_memory, rs6000_return_in_msb,
10696 rs6000_pass_by_reference, setup_incoming_varargs,
10697 rs6000_function_arg_boundary, rs6000_must_pass_in_stack,
10698 rs6000_arg_partial_bytes, rs6000_function_arg_advance,
10699 rs6000_function_arg_padding, rs6000_function_arg,
10700 rs6000_darwin64_record_arg, rs6000_internal_arg_pointer,
10701 rs6000_init_builtins, rs6000_builtin_decl, rs6000_expand_builtin,
10702 rs6000_fold_builtin, rs6000_passes_ieee128, rs6000_passes_float,
10703 rs6000_passes_long_double, rs6000_passes_vector,
10704 rs6000_returns_struct, cpu_builtin_p, tree builtin_mode_to_type,
10705 altivec_builtin_mask_for_load) Add declarations.
10706 * config/rs6000/t-rs6000: Add new source file rs6000-call.c.
10707 * config/config.gcc: Add new source file rs6000-call.c to garbage
10708 collector and extra_objs.
10709
10710 2019-07-19 Jeff Law <law@redhat.com>
10711
10712 PR tree-optimization/86061
10713 * tree-ssa-dse.c (initialize_ao_ref_for_dse): Handle
10714 strncpy. Drop some trivial dead code.
10715 (maybe_trim_memstar_call): Handle strncpy.
10716
10717 2019-07-19 Richard Biener <rguenther@suse.de>
10718
10719 PR tree-optimization/91211
10720 * tree-ssa-sccvn.c (vn_walk_cb_data::push_partial_def): Fix
10721 memset encoding size.
10722
10723 2019-07-19 Uroš Bizjak <ubizjak@gmail.com>
10724
10725 PR target/91204
10726 * config/i386/mmx.md (one_cmpl<mode>2): New expander.
10727
10728 2019-07-19 Jan Hubicka <hubicka@ucw.cz>
10729
10730 PR ipa/91194
10731 * ipa-inline.c (recursive_inlining): Fix limits check.
10732
10733 2019-07-19 Richard Biener <rguenther@suse.de>
10734
10735 PR tree-optimization/91200
10736 * tree-ssa-phiopt.c (cond_store_replacement): Check we have
10737 no PHI nodes in middle-bb.
10738
10739 2019-07-19 Richard Sandiford <richard.sandiford@arm.com>
10740
10741 * doc/invoke.texi: Rename the AArch64 +bitperm extension flag
10742 to +sve-bitperm.
10743 * config/aarch64/aarch64-option-extensions.def: Likewise.
10744
10745 2019-07-19 Jakub Jelinek <jakub@redhat.com>
10746
10747 PR middle-end/91190
10748 * function.c (insert_temp_slot_address): Store into the hash table
10749 a copy of address to avoid RTL sharing issues.
10750
10751 2019-07-19 Richard Biener <rguenther@suse.de>
10752
10753 PR tree-optimization/91207
10754 Revert
10755 2019-07-17 Richard Biener <rguenther@suse.de>
10756
10757 PR tree-optimization/91178
10758 * tree-vect-stmts.c (get_group_load_store_type): For SLP
10759 loads with a gap larger than the vector size always use
10760 VMAT_STRIDED_SLP.
10761 (vectorizable_load): For VMAT_STRIDED_SLP with a permutation
10762 avoid loading vectors that are only contained in the gap
10763 and thus are not needed.
10764
10765 2019-07-18 Uroš Bizjak <ubizjak@gmail.com>
10766
10767 * config/i386/i386.md (*addqi_2_slp): Remove.
10768 (*<code>qi_2_slp): Ditto.
10769
10770 2019-07-18 Michael Meissner <meissner@linux.ibm.com>
10771
10772 * config/rs6000/predicates.md (prefixed_mem_operand): Call
10773 rs6000_prefixed_address_mode_p instead of rs6000_prefixed_address.
10774 * config/rs6000/rs6000-protos.h (rs6000_prefixed_address_mode_p):
10775 Rename function from rs6000_prefixed_address.
10776 * config/rs6000/aix.h (TARGET_HAS_TOC): Rename TARGET_TOC to
10777 TARGET_HAS_TOC.
10778 (TARGET_TOC): Likewise.
10779 (TARGET_NO_TOC): Delete here, define TARGET_NO_TOC_OR_PCREL in
10780 rs6000.h.
10781 * config/rs6000/darwin.h (TARGET_HAS_TOC): Rename TARGET_TOC to
10782 TARGET_HAS_TOC.
10783 (TARGET_TOC): Likewise.
10784 (TARGET_NO_TOC): Delete here, define TARGET_NO_TOC_OR_PCREL in
10785 rs6000.h.
10786 * config/rs6000/linux64.h (TARGET_HAS_TOC): Rename TARGET_TOC to
10787 TARGET_HAS_TOC.
10788 (TARGET_TOC): Likewise.
10789 * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
10790 check to require -mcmodel=medium for pc-relative addressing.
10791 (create_TOC_reference): Add assertion for TARGET_TOC.
10792 (rs6000_legitimize_address): Use TARGET_NO_TOC_OR_PCREL instead of
10793 TARGET_NO_TOC.
10794 (rs6000_emit_move): Likewise.
10795 (TOC_alias_set): Rename TOC alias set static variable from 'set'
10796 to 'TOC_alias_set'.
10797 (get_TOC_alias_set): Likewise.
10798 (output_toc): Use TARGET_NO_TOC_OR_PCREL instead of
10799 TARGET_NO_TOC.
10800 (rs6000_can_eliminate): Likewise.
10801 (rs6000_prefixed_address_mode_p): Rename function from
10802 rs6000_prefixed_address.
10803 * config/rs6000/rs6000.h (TARGET_TOC): Define in terms of
10804 TARGET_HAS_TOC and not pc-relative.
10805 (TARGET_NO_TOC_OR_PCREL): New macro to replace TARGET_NO_TOC.
10806 * config/rs6000/sysv4.h (TARGET_HAS_TOC): Rename TARGET_TOC to
10807 TARGET_HAS_TOC.
10808 (TARGET_TOC): Likewise.
10809 (TARGET_NO_TOC): Delete here, define TARGET_NO_TOC_OR_PCREL in
10810 rs6000.h.
10811
10812 2019-07-18 Uroš Bizjak <ubizjak@gmail.com>
10813
10814 PR target/91188
10815 * config/i386/i386.md (*addqi_1_slp): Use register_operand predicate
10816 for operand 0. Do not use (match_dup) to match operand 1 with
10817 operand 0. Add check in insn constraint that either input operand
10818 matches operand 0. Use SWI12 mode iterator to also handle
10819 HImode operands.
10820 (*and<mode>_1_slp): Ditto.
10821 (*<code>qi_1_slp): Ditto.
10822 (*sub<mode>_1_slp): Use register_operand predicate for operand 0.
10823 Do not use (match_dup) to match operand 1 with operand 0. Add
10824 check in insn constraint that operand 1 matches operand 0.
10825 Use SWI12 mode iterator to also handle HImode operands.
10826 (*ashl<mode>3_1_slp): Ditto.
10827 (*<shift_insn><mode>3_1_slp): Ditto.
10828 (*<rotate_insn><mode>3_1_slp): Ditto.
10829
10830 2019-07-18 Sylvia Taylor <sylvia.taylor@arm.com>
10831
10832 * config/arm/arm-builtins.c
10833 (arm_expand_ternop_builtin): Remove explicit sha1 builtin handling.
10834 (arm_expand_unop_builtin): Likewise.
10835 * config/arm/crypto.md
10836 (crypto_sha1h): Convert from define_insn to define_expand.
10837 (crypto_<crypto_pattern>): Likewise.
10838 (crypto_sha1h_lb): New define_insn.
10839 (crypto_<crypto_pattern>_lb): Likewise.
10840
10841 2019-07-18 Sylvia Taylor <sylvia.taylor@arm.com>
10842
10843 PR target/90317
10844 * config/arm/arm_neon.h (vsha1h_u32): Refactor.
10845 (vsha1cq_u32): Likewise.
10846 (vsha1pq_u32): Likewise.
10847 (vsha1mq_u32): Likewise.
10848 * config/arm/crypto.md (crypto_sha1h): Remove zero extend, correct
10849 vec select.
10850 (crypto_sha1c): Correct vec select.
10851 (crypto_sha1m): Likewise.
10852 (crypto_sha1p): Likewise.
10853
10854 2019-07-18 Richard Earnshaw <rearnsha@arm.com>
10855
10856 * config/arm/predicates.md (arm_borrow_operation): New predicate.
10857 * config/arm/arm.c (subdi3_compare1): Use CCmode for the split.
10858 (arm_subdi3, subdi_di_zesidi, subdi_di_sesidi): Likewise.
10859 (subdi_zesidi_zesidi): Likewise.
10860 (negdi2_compare, negdi2_insn): Likewise.
10861 (negdi_extensidi): Likewise.
10862 (negdi_zero_extendsidi): Likewise.
10863 (arm_cmpdi_insn): Likewise.
10864 (subsi3_carryin): Use arm_borrow_operation.
10865 (subsi3_carryin_const): Likewise.
10866 (subsi3_carryin_const0): Likewise.
10867 (subsi3_carryin_compare): Likewise.
10868 (subsi3_carryin_compare_const): Likewise.
10869 (subsi3_carryin_compare_const0): Likewise.
10870 (subsi3_carryin_shift): Likewise.
10871 (rsbsi3_carryin_shift): Likewise.
10872 (negsi2_carryin_compare): Likewise.
10873
10874 2019-07-18 Bin Cheng <bin.cheng@linux.alibaba.com>
10875
10876 PR tree-optimization/91137
10877 * tree-ssa-loop-ivopts.c (struct ivopts_data): New field.
10878 (tree_ssa_iv_optimize_init, alloc_iv, tree_ssa_iv_optimize_finalize):
10879 Init, use and fini the above new field.
10880 (determine_base_object_1): New function.
10881 (determine_base_object): Reimplement using walk_tree.
10882
10883 2019-07-18 Richard Sandiford <richard.sandiford@arm.com>
10884
10885 * basic-block.h (CLEANUP_FORCE_FAST_DCE): New macro.
10886 * cfgcleanup.c (cleanup_cfg): Call run_fast_dce if
10887 CLEANUP_FORCE_FAST_DCE is set.
10888 * ifcvt.c (rest_of_handle_if_conversion): Pass
10889 CLEANUP_FORCE_FAST_DCE to the final cleanup_cfg call if
10890 if-conversion succeeded.
10891
10892 2019-07-18 Richard Biener <rguenther@suse.de>
10893
10894 * tree-ssa-sccvn.c (vn_walk_cb_data::push_partial_def): Refactor
10895 branches to make code less indented.
10896
10897 2019-07-17 Alexandre Oliva <oliva@adacore.com>
10898
10899 PR middle-end/81824
10900 * attribs.c (decls_mismatched_attributes): Simplify the logic
10901 that avoids duplicates and false positives.
10902
10903 2019-07-17 John David Anglin <danglin@gcc.gnu.org>
10904
10905 * config/pa/pa.c (pa_som_asm_init_sections): Don't force all constant
10906 data into data section when generating PIC code.
10907 (pa_select_section): Use pa_reloc_rw_mask() to qualify relocs.
10908 (pa_reloc_rw_mask): Return 3 when generating PIC code and when
10909 generating code for SOM targets earlier than HP-UX 11. Otherwise,
10910 return 2 for SOM and 0 for other targets.
10911
10912 2019-07-17 Jeff Law <law@redhat.com>
10913
10914 * tree-ssa-dse.c (initialize_ao_ref_for_dse): Fix formatting.
10915 (dse_walker::dse_optimize_stmt): Likewise. Add missing return to
10916 avoid unexpected switch statement fallthru.
10917
10918 2019-07-17 Uroš Bizjak <ubizjak@gmail.com>
10919
10920 * config/i386/i386.md (*add<dwi>3_doubleword):
10921 Remove redundant constraints.
10922 (*add<mode>_1): Ditto.
10923 (*addhi_1): Ditto.
10924 (*addqi_1): Ditto.
10925 (*addqi_1_slp): Ditto.
10926 (*add<mode>_2): Ditto.
10927 (*addv<mode>4): Ditto.
10928 (*sub<dwi>3_doubleword): Ditto.
10929 (*sub<mode>_1): Ditto.
10930 (*subqi_1_slp): Ditto.
10931 (*sub<mode>_2): Ditto.
10932 (*subv<mode>4): Ditto.
10933 (*sub<mode>_3): Ditto.
10934 (@add<mode>3_carry): Ditto.
10935 (@sub<mode>3_carry): Ditto.
10936 (*add<mode>3_cc_overflow_1): Ditto.
10937 (*add<mode>3_zext_cc_overflow_2): Ditto.
10938 (*anddi_1): Ditto.
10939 (*and<mode>_1): Ditto.
10940 (*andqi_1): Ditto.
10941 (*andqi_1_slp): Ditto.
10942 (*anddi_2): Ditto.
10943 (*andqi_2_maybe_si): Ditto.
10944 (*and<mode>_2): Ditto.
10945 (*andqi_2_slp): Ditto.
10946 (*<code><mode>_1): Ditto.
10947 (*<code>qi_1): Ditto.
10948 (*<code>qi_1_slp): Ditto.
10949 (*<code><mode>_2): Ditto.
10950 (*<code>qi_2_slp): Ditto.
10951
10952 2019-07-17 Jan Hubicka <hubicka@ucw.cz>
10953
10954 * alias.c (record_component_aliases): Do not simplify pointed-to
10955 types of ODR types.
10956
10957 2019-07-17 Uroš Bizjak <ubizjak@gmail.com>
10958
10959 * config/i386/i386.md (*andqi_2_maybe_si): Handle potential
10960 partial reg stall on alternative 2.
10961
10962 2019-07-17 Richard Biener <rguenther@suse.de>
10963
10964 PR tree-optimization/91178
10965 * tree-ssa.c (release_defs_bitset): Iterate from higher to
10966 lower SSA names to avoid quadratic behavior in the common case.
10967 * tree-data-ref.c (split_constant_offset): Add limit argument
10968 and pass it down. Initialize it from PARAM_SSA_NAME_DEF_CHAIN_LIMIT.
10969 (split_constant_offset_1): Add limit argument and use it to
10970 limit SSA def walking. Optimize the common plus/minus case.
10971
10972 2019-07-17 Richard Biener <rguenther@suse.de>
10973
10974 PR tree-optimization/91178
10975 * tree-vect-stmts.c (get_group_load_store_type): For SLP
10976 loads with a gap larger than the vector size always use
10977 VMAT_STRIDED_SLP.
10978 (vectorizable_load): For VMAT_STRIDED_SLP with a permutation
10979 avoid loading vectors that are only contained in the gap
10980 and thus are not needed.
10981
10982 2019-07-17 Richard Biener <rguenther@suse.de>
10983
10984 PR tree-optimization/91180
10985 * tree-ssa-sccvn.c (vn_reference_lookup_3): Fix offset
10986 computation for memset partial defs.
10987
10988 2019-07-17 Jakub Jelinek <jakub@redhat.com>
10989
10990 * gimple.h (enum gf_mask): Remove GF_OMP_FOR_SIMD, change
10991 GF_OMP_FOR_KIND_SIMD to a value serially after other kinds,
10992 divide GF_OMP_FOR_KIND_MASK, GF_OMP_FOR_COMBINED,
10993 GF_OMP_FOR_COMBINED_INTO, GF_OMP_FOR_GRID_PHONY,
10994 GF_OMP_FOR_GRID_INTRA_GROUP and GF_OMP_FOR_GRID_GROUP_ITER by two.
10995 * omp-grid.c (grid_process_grid_body,
10996 grid_eliminate_combined_simd_part): Use GF_OMP_FOR_KIND_SIMD instead
10997 of GF_OMP_FOR_SIMD, don't test & GF_OMP_FOR_SIMD but
10998 == GF_OMP_FOR_KIND_SIMD.
10999 * omp-low.c (build_outer_var_ref, scan_sharing_clauses,
11000 check_omp_nesting_restrictions, scan_omp_1_stmt,
11001 lower_rec_input_clauses, lower_lastprivate_conditional_clauses,
11002 lower_lastprivate_clauses, lower_reduction_clauses, lower_omp_scan,
11003 omp_find_scan): Likewise.
11004 * omp-expand.c (expand_omp_for): Likewise.
11005 * omp-general.c (omp_extract_for_data): Likewise.
11006
11007 PR tree-optimization/91157
11008 * tree-vect-generic.c (expand_vector_comparison): Handle lhs being
11009 a vector boolean with scalar mode.
11010 (expand_vector_condition): Handle first operand being a vector boolean
11011 with scalar mode.
11012 (expand_vector_operations_1): For comparisons, don't bail out early
11013 if the return type is vector boolean with scalar mode, but comparison
11014 operand type is not.
11015
11016 2019-07-17 Richard Biener <rguenther@suse.de>
11017
11018 PR tree-optimization/91181
11019 * tree-vect-slp.c (vect_build_slp_tree_1): Do not compare
11020 IFN_LOADs as calls.
11021
11022 2019-07-16 Uroš Bizjak <ubizjak@gmail.com>
11023
11024 * config/i386/i386.md (*testdi_1): Match CCZmode for
11025 constants that might have the SImode sign bit set.
11026 (*testqi_1_maybe_si): Remove "!" constraint modifier.
11027 Use correct constraints for pentium pairing.
11028 (*test<mode>_1): Ditto.
11029
11030 2019-07-16 Jeff Law <law@redhat.com>
11031
11032 PR rtl-optimization/91173
11033 * tree-ssa-address.c (addr_for_mem_ref): If the base is an
11034 SSA_NAME with a constant value, fold its value into the offset
11035 and clear the base before calling gen_addr_rtx.
11036
11037 2019-07-16 Jakub Jelinek <jakub@redhat.com>
11038
11039 PR rtl-optimization/91164
11040 * dse.c (rest_of_handle_dse): If dead edges have been purged,
11041 invalidate dominance info.
11042
11043 2019-07-16 Richard Sandiford <richard.sandiford@arm.com>
11044
11045 * read-md.h (md_reader::record_potential_iterator_use): Add a
11046 file_location parameter.
11047 * read-rtl.c (attribute_use::loc): New field.
11048 (map_attr_string): Take a file_location parameter. Report cases
11049 in which attributes map to multiple distinct values.
11050 (apply_attribute_uses): Update call accordingly.
11051 (md_reader::handle_overloaded_name): Likewise.
11052 (md_reader::apply_iterator_to_string): Likewise. Skip empty
11053 nonnull strings.
11054 (record_attribute_use): Take a file_location parameter.
11055 Initialize attribute_use::loc.
11056 (md_reader::record_potential_iterator_use): Take a file_location
11057 parameter. Update call to record_attribute_use.
11058 (rtx_reader::rtx_alloc_for_name): Update call accordingly.
11059 (rtx_reader::read_rtx_code): Likewise.
11060 (rtx_reader::read_rtx_operand): Likewise. Record a location
11061 for implicitly-expanded empty strings.
11062
11063 2019-07-16 Richard Sandiford <richard.sandiford@arm.com>
11064
11065 * read-md.h (md_reader::ptr_loc): Moved from read-md.c.
11066 Use file_location instead of separate fields.
11067 (md_reader::set_md_ptr_loc): Take a file_location instead of a
11068 separate filename and line number.
11069 * read-md.c (ptr_loc): As above.
11070 (md_reader::copy_md_ptr_loc): Update for new ptr_loc layout.
11071 (md_reader::fprint_md_ptr_loc): Likewise.
11072 (md_reader::set_md_ptr_loc): Likewise. Take a file_location
11073 instead of a separate filename and line number.
11074 (md_reader::read_string): Update call accordingly.
11075
11076 2019-07-16 Richard Sandiford <richard.sandiford@arm.com>
11077
11078 * config/rs6000/rs6000.md (*mov<mode>_update1): Explicitly
11079 use <SFDF:mode>, <SFDF:MODE>, <SFDF:Ff> and <SFDF:bits> rather than
11080 leaving the choice between SFDF and P implicit.
11081 (*mov<mode>_update2): Likewise.
11082 (*cmp<IBM128:mode>_internal2): Explicitly use <IBM128:MODE>
11083 rather than leaving the choice betweem IBM128 and GPR implicit.
11084 (*fix<uns>_trunc<IEEE128:mode><QHSI:mode>2_mem): Explicitly use
11085 <IEEE128:MODE> rather than leaving the choice between IEEE128 and
11086 QHSI implicit.
11087 (AltiVec define_peephole2s): Explicitly use <ALTIVEC_DFORM:MODE>
11088 rather than leaving the choice between ALTIVEC_DFORM and P implicit.
11089 * config/rs6000/vsx.md
11090 (*vsx_ext_<VSX_EXTRACT_I:VS_scalar>_fl_<FL_CONV:mode>)
11091 (*vsx_ext_<VSX_EXTRACT_I:VS_scalar>_ufl_<FL_CONV:mode>): Explicitly
11092 use <FL_CONV:VSisa> rather than leaving the choice between FL_CONV
11093 and VSX_EXTRACT_I implicit.
11094
11095 2019-07-16 Richard Sandiford <richard.sandiford@arm.com>
11096
11097 * config/mips/micromips.md (*movep<MOVEP1:mode><MOVEP2:mode>):
11098 Explicitly use <MOVEP1:MODE> for the mode attribute.
11099
11100 2019-07-16 Jan Hubicka <hubicka@ucw.cz>
11101
11102 PR bootstrap/91176
11103 * ipa-fnsummary.c (analyze_function_body): Skip debug stmts
11104
11105 2019-07-15 Segher Boessenkool <segher@kernel.crashing.org>
11106
11107 PR target/91050
11108 * config/rs6000/rs6000.c (rs6000_file_start): Never skip emitting a
11109 .machine directive.
11110
11111 2019-07-15 Uroš Bizjak <ubizjak@gmail.com>
11112
11113 * config/i386/i386.md (@test<mode>_ccno_1):
11114 Rename from test<mode>_ccno_1.
11115 (*testdi_1): Remove redundant alternatives. Remove modrm attribute.
11116 (*testqi_1_maybe_si): Remove modrm attribute.
11117 (*test<mode>_1): Ditto.
11118 * config/i386/i386-expand.c (ix86_split_idivmod): Use
11119 gen_test_ccno_1 and gen_extend_insn.
11120
11121 2019-07-15 Jan Hubicka <hubicka@ucw.cz>
11122
11123 * tree-ssa-alias.c (aliasing_component_refs_walk): Initialize same_p
11124 to 0.
11125
11126 2019-07-15 Richard Biener <rguenther@suse.de>
11127
11128 PR middle-end/91162
11129 * tree-cfg.c (move_block_to_fn): When releasing a virtual PHI
11130 node make sure to replace all uses with something valid.
11131
11132 2019-07-15 Kewen Lin <linkw@gcc.gnu.org>
11133
11134 PR tree-optimization/88497
11135 * tree-ssa-reassoc.c (reassociate_bb): Swap the positions of
11136 GIMPLE_BINARY_RHS check and gimple_visited_p check, call new
11137 function undistribute_bitref_for_vector.
11138 (undistribute_bitref_for_vector): New function.
11139 (cleanup_vinfo_map): Likewise.
11140 (sort_by_mach_mode): Likewise.
11141
11142 2019-07-14 Uroš Bizjak <ubizjak@gmail.com>
11143
11144 * config/i386/i386.md (nonmemory_szext_operand): New mode attribute.
11145 (test<mode>_ccno_1): Macroize insn pattern from testsi_ccno_1
11146 and testdi_ccno_1 using SWI48 mode attribute.
11147 (*testdi_1): Use x86_64_szext_nonmemory_operand instead of
11148 x86_64_szext_general_operand.
11149 (*testqi_1_maybe_si): Use nonmemory_operand instead of general_operand.
11150 (*test<mode>_1): Use nonmemory_szext_operand mode attribute
11151 instead of genera_operand mode attribute.
11152
11153 2019-07-14 Vladislav Ivanishin <vlad@ispras.ru>
11154
11155 * gdbhooks.py (DumpFn.invoke): Add explicit casts of return values of
11156 fopen and fclose to their respective types.
11157 (DotFn.invoke): Ditto.
11158
11159 2019-07-14 Jan Hubicka <hubicka@ucw.cz>
11160
11161 * ipa-fnsummary.c (ipa_dump_hints): Do not dump array_index.
11162 (ipa_fn_summary::~ipa_fn_summary): Do not destroy array_index.
11163 (ipa_fn_summary_t::duplicate): Do not duplicate array_index.
11164 (array_index_predicate): Remove.
11165 (analyze_function_body): Account cost for variable ofsetted array
11166 indexing.
11167 (estimate_node_size_and_time): Do not compute array index hint.
11168 (ipa_merge_fn_summary_after_inlining): Do not merge array index hint.
11169 (inline_read_section): Do not read array index hint.
11170 (ipa_fn_summary_write): Do not write array index hint.
11171 * doc/invoke.texi (ipa-cp-array-index-hint-bonus): Remove.
11172 * ipa-cp.c (hint_time_bonus): Remove.
11173 * ipa-fnsummary.h (ipa_hints_vals): Remove array_index.
11174 (ipa_fnsummary): Remove array_index.
11175 * ipa-inline.c (want_inline_small_function_p): Do not use
11176 array_index.
11177 (edge_badness): Likewise.
11178 * params.def (PARAM_IPA_CP_ARRAY_INDEX_HINT_BONUS): Remove.
11179
11180 2019-07-14 Segher Boessenkool <segher@kernel.crashing.org>
11181
11182 PR target/91148
11183 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Remove
11184 superfluous "builtin function" phrasing.
11185
11186 2019-07-13 Jan Hubicka <hubicka@ucw.cz>
11187
11188 * tree-ssa-alias.c (component_ref_to_zero_sized_trailing_array_p):
11189 Break out from ...
11190 (aliasing_component_refs_walk): Break out from ...
11191 (aliasing_component_refs_p): ... here.
11192
11193 2019-07-13 Segher Boessenkool <segher@kernel.crashing.org>
11194
11195 PR target/91148
11196 * config/rs6000/rs6000.c (rs6000_invalid_builtin): Remove superfluous
11197 "builtin function" phrasing.
11198
11199 2019-07-13 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
11200
11201 PR target/90723
11202 * recog.h (temporary_volatile_ok): New class.
11203 * config/aarch64/aarch64.c (aarch64_emit_sve_pred_move): Set
11204 volatile_ok temporarily to true using temporary_volatile_ok.
11205 * expr.c (emit_block_move_via_cpymem): Likewise.
11206 * optabs.c (maybe_legitimize_operand): Likewise.
11207
11208 2019-07-13 Jakub Jelinek <jakub@redhat.com>
11209
11210 * gimplify.c (struct gimplify_omp_ctx): Add order_concurrent member.
11211 (omp_notice_threadprivate_variable): Diagnose threadprivate variable
11212 uses inside of order(concurrent) constructs.
11213 (gimplify_scan_omp_clauses): Set ctx->order_concurrent if
11214 OMP_CLAUSE_ORDER is seen.
11215 * omp-low.c (struct omp_context): Add order_concurrent member.
11216 (scan_sharing_clauses): Set ctx->order_concurrent if
11217 OMP_CLAUSE_ORDER is seen.
11218 (check_omp_nesting_restrictions): Diagnose ordered or atomic inside
11219 of simd order(concurrent). Diagnose constructs not allowed inside of
11220 for order(concurrent).
11221 (setjmp_or_longjmp_p): Add a context and TREE_PUBLIC check to avoid
11222 complaining about static double setjmp (double); or class static
11223 methods or non-global namespace setjmps.
11224 (omp_runtime_api_call): New function.
11225 (scan_omp_1_stmt): Diagnose OpenMP runtime API calls inside of
11226 order(concurrent) loops.
11227
11228 2019-07-12 Martin Sebor <msebor@redhat.com>
11229
11230 * doc/invoke.texi (ssa-name-def-chain-limit): Document new --param.
11231 * params.def (PARAM_SSA_NAME_DEF_CHAIN_LIMIT): Add new --param.
11232 * tree-vrp.c (vrp_prop::check_mem_ref): Use
11233 PARAM_SSA_NAME_DEF_CHAIN_LIMIT.
11234
11235 2019-07-12 Jan Hubicka <jh@suse.cz>
11236
11237 * tree-ssa-alias.c (same_tmr_indexing_p): Break out from ...
11238 (indirect_refs_may_alias_p): ... here.
11239 (nonoverlapping_component_refs_since_match_p): Support also non-trivial
11240 mem refs in the access paths.
11241
11242 2019-07-12 Jiangning Liu <jiangning.liu@amperecomputing.com>
11243
11244 PR tree-optimization/89430
11245 * tree-ssa-phiopt.c (cond_store_replacement): Support conditional
11246 store elimination for local variable without address escape.
11247
11248 2019-07-12 Jeff Law <law@redhat.com>
11249
11250 * config/c6x/c6x.c (c6x_section_type): Clear SECTION_NOTYPE
11251 for the ".far" section.
11252
11253 2019-07-12 Richard Biener <rguenther@suse.de>
11254
11255 PR tree-optimization/91145
11256 * tree-vect-slp.c (vect_build_slp_tree_2): Fix reduction
11257 chain check.
11258
11259 2019-07-12 Alexandre Oliva <oliva@adacore.com>
11260
11261 * tree-eh.c (honor_protect_cleanup_actions): Use outer_
11262 rather than this_state as the lowering context for the ELSE
11263 seq in a GIMPLE_EH_ELSE.
11264
11265 2019-07-12 Richard Sandiford <richard.sandiford@arm.com>
11266
11267 * vector-builder.h (vector_builder::elt): Allow already-supplied
11268 elements to be read back before building is complete.
11269
11270 2019-07-12 Eric Botcazou <ebotcazou@adacore.com>
11271
11272 PR rtl-optimization/91136
11273 * df-core.c (ACCESSING REFS): Fix typos in comment.
11274 * resource.c (mark_target_live_reg): Add artificial defs that occur at
11275 the beginning of the block to the initial set of live registers.
11276
11277 2019-07-12 Richard Biener <rguenther@suse.de>
11278
11279 * fold-const.h (get_array_ctor_element_at_index): Adjust.
11280 * fold-const.c (get_array_ctor_element_at_index): Add
11281 ctor_idx output parameter informing the caller where in
11282 the constructor the element was (not) found. Add early exit
11283 for when the ctor is sorted.
11284 * gimple-fold.c (fold_array_ctor_reference): Support constant
11285 folding across multiple array elements.
11286
11287 2019-07-12 Eric Botcazou <ebotcazou@adacore.com>
11288
11289 * cfgexpand.c (expand_gimple_stmt_1) <GIMPLE_RETURN>: If the statement
11290 doesn't have location, set the current location to the function's end.
11291
11292 2019-07-12 Richard Sandiford <richard.sandiford@arm.com>
11293
11294 * config/aarch64/aarch64.md (*compare_condjump<mode>)
11295 (loadwb_pair<GPI:mode>_<P:mode>, loadwb_pair<GPF:mode>_<P:mode>)
11296 (storewb_pair<GPI:mode>_<P:mode>, storewb_pair<GPF:mode>_<P:mode>)
11297 (*ands<mode>_compare0): Fix ambiguous uses of .md attributes.
11298 * config/aarch64/aarch64-simd.md
11299 (*aarch64_get_lane_extend<GPI:mode><VDQQH:mode>): Likewise.
11300 (*aarch64_get_lane_zero_extend<GPI:mode><VDQQH:mode>): Likewise.
11301 * config/aarch64/aarch64-sve.md
11302 (while_ult<GPI:mode><PRED_ALL:mode>): Likewise.
11303 (*cond_<optab><mode>_any): Fix SVE_I/SVE_SDI typo.
11304
11305 2019-07-12 Richard Sandiford <richard.sandiford@arm.com>
11306
11307 * doc/md.texi: Document that @ patterns can have different
11308 numbers of operands.
11309 * genemit.c (handle_overloaded_gen): Handle this case.
11310 * genopinit.c (handle_overloaded_gen): Likewise.
11311 * gensupport.c (replace_operands_with_dups): Iterate over
11312 the new rtx's format rather than the old one's.
11313
11314 2019-07-12 Jakub Jelinek <jakub@redhat.com>
11315
11316 * tree-core.h (enum omp_clause_code): Add OMP_CLAUSE_ORDER.
11317 * tree.c (omp_clause_num_ops, omp_clause_code_name): Add
11318 order clause entries.
11319 (walk_tree_1): Handle OMP_CLAUSE_ORDER.
11320 * tree-pretty-print.c (dump_omp_clause): Likewise.
11321 * gimplify.c (gimplify_scan_omp_clauses, gimplify_adjust_omp_clauses):
11322 Likewise.
11323 * omp-low.c (scan_sharing_clauses): Likewise.
11324 * tree-nested.c (convert_nonlocal_omp_clauses,
11325 convert_local_omp_clauses): Likewise.
11326
11327 2019-07-12 Kewen Lin <linkw@gcc.gnu.org>
11328
11329 * cfgrtl.c (print_rtl_with_bb): Emit a hint if the
11330 fallthrough target of current basic block isn't the placed
11331 right next.
11332
11333 2019-07-11 Sunil K Pandey <sunil.k.pandey@intel.com>
11334
11335 PR target/90980
11336 * config/i386/avx512fintrin.h (_mm512_loadu_epi64): New.
11337 (_mm512_storeu_epi64): Likewise.
11338 (_mm512_loadu_epi32): Likewise.
11339 (_mm512_storeu_epi32): Likewise.
11340 * config/i386/avx512vlintrin.h (_mm256_storeu_epi64): New.
11341 (_mm_storeu_epi64): Likewise.
11342 (_mm256_storeu_epi32): Likewise.
11343 (_mm_storeu_epi32): Likewise.
11344
11345 2019-07-11 Segher Boessenkool <segher@kernel.crashing.org>
11346
11347 * config/rs6000/rs6000-logue.c: Add Modula-2 to comment.
11348
11349 2019-07-11 Segher Boessenkool <segher@kernel.crashing.org>
11350
11351 * config/rs6000/rs6000-logue.c (rs6000_output_function_epilogue):
11352 Handle Modula-2.
11353
11354 2019-07-11 Jakub Jelinek <jakub@redhat.com>
11355
11356 PR target/91124
11357 * config/i386/sse.md (sse2_cvtpd2dq<mask_name>): Change into ...
11358 (sse2_cvtpd2dq): ... this. Remove mask substitution macros.
11359 (sse2_cvtpd2dq_mask, sse2_cvtpd2dq_mask_1): New define_insns.
11360 (ufix_notruncv2dfv2si2<mask_name>): Change into ...
11361 (ufix_notruncv2dfv2si2): ... this. Remove mask substitution macros.
11362 (ufix_notruncv2dfv2si2_mask, ufix_notruncv2dfv2si2_mask_1): New
11363 define_insns.
11364 (ufix_truncv2dfv2si2<mask_name>): Change into ...
11365 (ufix_truncv2dfv2si2): ... this. Remove mask substitution macros.
11366 (ufix_truncv2dfv2si2_mask, ufix_truncv2dfv2si2_mask_1): New
11367 define_insns.
11368 (sse2_cvttpd2dq<mask_name>): Change into ...
11369 (sse2_cvttpd2dq): ... this. Remove mask substitution macros.
11370 (sse2_cvttpd2dq_mask, sse2_cvttpd2dq_mask_1): New define_insns.
11371 (*sse2_cvtpd2dq<mask_name>): Change into ...
11372 (*sse2_cvtpd2dq): ... this. Remove mask substitution macros.
11373 Add "C" constraint to const0_operand.
11374 (*sse2_cvtpd2dq_mask, *sse2_cvtpd2dq_mask_1): New define_insns.
11375 (sse2_cvtpd2ps_mask): Adjust expand to match *sse2_cvtpd2ps_mask
11376 changes.
11377
11378 PR target/91124
11379 * config/i386/i386-builtin-types.def
11380 (V32HI_FTYPE_V32HI_V32HI_V32HI_INT,
11381 V16HI_FTYPE_V16HI_V16HI_V16HI_INT, V8HI_FTYPE_V8HI_V8HI_V8HI_INT,
11382 V8SI_FTYPE_V8SI_V8SI_V8SI_INT, V4DI_FTYPE_V4DI_V4DI_V4DI_INT,
11383 V8DI_FTYPE_V8DI_V8DI_V8DI_INT, V16SI_FTYPE_V16SI_V16SI_V16SI_INT,
11384 V2DI_FTYPE_V2DI_V2DI_V2DI_INT, V4SI_FTYPE_V4SI_V4SI_V4SI_INT): Remove.
11385 * config/i386/i386-builtin.def (__builtin_ia32_vpshrdv_v32hi_mask,
11386 __builtin_ia32_vpshrdv_v32hi_maskz, __builtin_ia32_vpshrdv_v16hi_mask,
11387 __builtin_ia32_vpshrdv_v16hi_maskz, __builtin_ia32_vpshrdv_v8hi_mask,
11388 __builtin_ia32_vpshrdv_v8hi_maskz, __builtin_ia32_vpshrdv_v16si_mask,
11389 __builtin_ia32_vpshrdv_v16si_maskz, __builtin_ia32_vpshrdv_v8si_mask,
11390 __builtin_ia32_vpshrdv_v8si_maskz, __builtin_ia32_vpshrdv_v4si_mask,
11391 __builtin_ia32_vpshrdv_v4si_maskz, __builtin_ia32_vpshrdv_v8di_mask,
11392 __builtin_ia32_vpshrdv_v8di_maskz, __builtin_ia32_vpshrdv_v4di_mask,
11393 __builtin_ia32_vpshrdv_v4di_maskz, __builtin_ia32_vpshrdv_v2di_mask,
11394 __builtin_ia32_vpshrdv_v2di_maskz, __builtin_ia32_vpshldv_v32hi_mask,
11395 __builtin_ia32_vpshldv_v32hi_maskz, __builtin_ia32_vpshldv_v16hi_mask,
11396 __builtin_ia32_vpshldv_v16hi_maskz, __builtin_ia32_vpshldv_v8hi_mask,
11397 __builtin_ia32_vpshldv_v8hi_maskz, __builtin_ia32_vpshldv_v16si_mask,
11398 __builtin_ia32_vpshldv_v16si_maskz, __builtin_ia32_vpshldv_v8si_mask,
11399 __builtin_ia32_vpshldv_v8si_maskz, __builtin_ia32_vpshldv_v4si_mask,
11400 __builtin_ia32_vpshldv_v4si_maskz, __builtin_ia32_vpshldv_v8di_mask,
11401 __builtin_ia32_vpshldv_v8di_maskz, __builtin_ia32_vpshldv_v4di_mask,
11402 __builtin_ia32_vpshldv_v4di_maskz, __builtin_ia32_vpshldv_v2di_mask,
11403 __builtin_ia32_vpshldv_v2di_maskz, __builtin_ia32_vpdpbusd_v16si_mask,
11404 __builtin_ia32_vpdpbusd_v16si_maskz, __builtin_ia32_vpdpbusd_v8si_mask,
11405 __builtin_ia32_vpdpbusd_v8si_maskz, __builtin_ia32_vpdpbusd_v4si_mask,
11406 __builtin_ia32_vpdpbusd_v4si_maskz,
11407 __builtin_ia32_vpdpbusds_v16si_mask,
11408 __builtin_ia32_vpdpbusds_v16si_maskz,
11409 __builtin_ia32_vpdpbusds_v8si_mask,
11410 __builtin_ia32_vpdpbusds_v8si_maskz,
11411 __builtin_ia32_vpdpbusds_v4si_mask,
11412 __builtin_ia32_vpdpbusds_v4si_maskz,
11413 __builtin_ia32_vpdpwssd_v16si_mask,
11414 __builtin_ia32_vpdpwssd_v16si_maskz, __builtin_ia32_vpdpwssd_v8si_mask,
11415 __builtin_ia32_vpdpwssd_v8si_maskz, __builtin_ia32_vpdpwssd_v4si_mask,
11416 __builtin_ia32_vpdpwssd_v4si_maskz,
11417 __builtin_ia32_vpdpwssds_v16si_mask,
11418 __builtin_ia32_vpdpwssds_v16si_maskz,
11419 __builtin_ia32_vpdpwssds_v8si_mask,
11420 __builtin_ia32_vpdpwssds_v8si_maskz,
11421 __builtin_ia32_vpdpwssds_v4si_mask,
11422 __builtin_ia32_vpdpwssds_v4si_maskz): Use *_USI, *_UHI or *_UQI
11423 suffixed types rather than *_INT.
11424 * config/i386/i386-expand.c (ix86_expand_args_builtin): Don't handle
11425 V32HI_FTYPE_V32HI_V32HI_V32HI_INT, V16HI_FTYPE_V16HI_V16HI_V16HI_INT,
11426 V8HI_FTYPE_V8HI_V8HI_V8HI_INT, V8SI_FTYPE_V8SI_V8SI_V8SI_INT,
11427 V4DI_FTYPE_V4DI_V4DI_V4DI_INT, V8DI_FTYPE_V8DI_V8DI_V8DI_INT,
11428 V16SI_FTYPE_V16SI_V16SI_V16SI_INT, V2DI_FTYPE_V2DI_V2DI_V2DI_INT
11429 and V4SI_FTYPE_V4SI_V4SI_V4SI_INT.
11430
11431 2019-07-11 Aldy Hernandez <aldyh@redhat.com>
11432
11433 * tree-vrp.c (intersect_ranges): If we know the intersection is
11434 empty, there is no need to conservatively add anything else to
11435 the set.
11436
11437 2019-07-11 Richard Biener <rguenther@suse.de>
11438
11439 PR middle-end/91131
11440 * gimplify.c (gimplify_compound_literal_expr): Force a temporary
11441 when the object is volatile and we have not cleared it even though
11442 there are no nonzero elements.
11443
11444 2019-07-10 Michael Meissner <meissner@linux.ibm.com>
11445
11446 * config/rs6000/predicates.md (cint34_operand): Update
11447 SIGNED_34BIT_OFFSET_P call.
11448 (pcrel_address): Update SIGNED_34BIT_OFFSET_P call.
11449 (pcrel_external_address): Update SIGNED_34BIT_OFFSET_P call.
11450 * config/rs6000/rs6000.c (rs6000_prefixed_address): Update
11451 SIGNED_16BIT_OFFSET_P and SIGNED_34BIT_OFFSET_P calls.
11452 * config/rs6000/rs6000.h (SIGNED_16BIT_OFFSET_P): Remove EXTRA
11453 argument.
11454 (SIGNED_34BIT_OFFSET_P): Remove EXTRA argument.
11455 (SIGNED_16BIT_OFFSET_EXTRA_P): New macro, like
11456 SIGNED_16BIT_OFFSET_P with an EXTRA argument.
11457 (SIGNED_34BIT_OFFSET_EXTRA_P): New macro, like
11458 SIGNED_34BIT_OFFSET_P with an EXTRA argument.
11459
11460 2019-07-10 Iain Sandoe <iain@sandoe.co.uk>
11461
11462 * config/rs6000/darwin.h (LIB_SPEC): Collate this spec here.
11463 * config/rs6000/darwin7.h (LIB_SPEC): Remove.
11464 * config/rs6000/darwin8.h (LIB_SPEC): Remove.
11465 (DEF_MIN_OSX_VERSION): New.
11466
11467 2019-07-10 Richard Sandiford <richard.sandiford@arm.com>
11468
11469 * fold-const.c (fold_relational_const): Fix folding of
11470 vector-to-scalar NE_EXPRs.
11471 (test_vector_folding): Add more tests.
11472
11473 2019-07-10 Richard Sandiford <richard.sandiford@arm.com>
11474
11475 PR target/91060
11476 * config/arm/iterators.md (V2DI_ONLY): New mode iterator.
11477 * config/arm/neon.md (vec_set<mode>_internal): Add a '@' prefix.
11478 (vec_setv2di_internal): Reexpress as...
11479 (@vec_set<V2DI_ONLY:mode>_internal): ...this.
11480 * config/arm/arm.c (neon_expand_vector_init): Use gen_vec_set_internal
11481 rather than gen_neon_vset_lane<mode>.
11482
11483 2019-07-10 Vladimir Makarov <vmakarov@redhat.com>
11484
11485 PR target/91102
11486 * lra-constraints.c (process_alt_operands): Don't match user
11487 defined regs only if they are early clobbers.
11488
11489 2019-07-10 Marc Glisse <marc.glisse@inria.fr>
11490
11491 * wide-int.h (wi::lshift): Reject negative values for the fast path.
11492
11493 2019-07-10 Richard Biener <rguenther@suse.de>
11494
11495 PR tree-optimization/91126
11496 * tree-ssa-sccvn.c (n_walk_cb_data::push_partial_def): Adjust
11497 native encoding offset for BYTES_BIG_ENDIAN.
11498 (vn_reference_lookup_3): Likewise.
11499
11500 2019-07-10 Richard Biener <rguenther@suse.de>
11501
11502 * tree-ssa-sccvn.c (vn_reference_lookup_3): Look at valueized
11503 LHS whenever possible.
11504
11505 2019-07-09 Jan Hubicka <hubicka@ucw.cz>
11506
11507 * tree-ssa-alias.c (nonoverlapping_component_refs_p_1): Break out
11508 from ...; work also on duplicated types.
11509 (nonoverlapping_component_refs_since_match): ... here
11510 (ncr_type_uid): Break out from ...
11511 (ncr_compar): ... here; look for TYPE_UID of canonical type if
11512 available.
11513 (nonoverlapping_component_refs_p): Use same_type_for_tbaa to match
11514 the types and nonoverlapping_component_refs_p_1 to disambiguate.
11515
11516 2019-07-09 Martin Sebor <msebor@redhat.com>
11517
11518 PR tree-optimization/90989
11519 * tree-ssa-strlen.c (handle_char_store): Constrain a single character
11520 optimization to just single character stores.
11521
11522 2019-07-09 Joern Rennecke <joern.rennecke@riscy-ip.com>
11523
11524 * tree-vect-stmts.c (vectorizable_comparison) <!slp_node>:
11525 Swap operands only once.
11526
11527 2019-07-09 Dragan Mladjenovic <dmladjenovic@wavecomp.com>
11528
11529 * cfgcleanup.c (old_insns_match_p): Check if used hard regs set is equal
11530 for both call instructions.
11531
11532 2019-07-09 John Darrington <john@darrington.wattle.id.au>
11533
11534 * simplify-rtx.c (simplify_unary_operation_1): Use GET_MODE_PRECISION
11535 rather than GET_MODE_BITSIZE to better handle partial integer modes.
11536
11537 2019-07-09 Michael Meissner <meissner@linux.ibm.com>
11538
11539 * config/rs6000/rs6000-internal.h (create_TOC_reference): Delete.
11540 * config/rs6000/rs6000-logue.c (create_TOC_reference): Move
11541 function from rs6000-logue.c back to rs6000.c.
11542 * config/rs6000/rs6000.c (create_TOC_reference): Likewise.
11543
11544 2019-07-09 Martin Sebor <msebor@redhat.com>
11545
11546 PR c++/61339
11547 * auto-profile.c: Change class-key of PODs to struct and others
11548 to class.
11549 * basic-block.h: Same.
11550 * bitmap.c (bitmap_alloc): Same.
11551 * bitmap.h: Same.
11552 * builtins.c (expand_builtin_prefetch): Same.
11553 (expand_builtin_interclass_mathfn): Same.
11554 (expand_builtin_strlen): Same.
11555 (expand_builtin_mempcpy_args): Same.
11556 (expand_cmpstr): Same.
11557 (expand_builtin___clear_cache): Same.
11558 (expand_ifn_atomic_bit_test_and): Same.
11559 (expand_builtin_thread_pointer): Same.
11560 (expand_builtin_set_thread_pointer): Same.
11561 * caller-save.c (setup_save_areas): Same.
11562 (replace_reg_with_saved_mem): Same.
11563 (insert_restore): Same.
11564 (insert_save): Same.
11565 (add_used_regs): Same.
11566 * cfg.c (get_bb_copy): Same.
11567 (set_loop_copy): Same.
11568 * cfg.h: Same.
11569 * cfganal.h: Same.
11570 * cfgexpand.c (alloc_stack_frame_space): Same.
11571 (add_stack_var): Same.
11572 (add_stack_var_conflict): Same.
11573 (add_scope_conflicts_1): Same.
11574 (update_alias_info_with_stack_vars): Same.
11575 (expand_used_vars): Same.
11576 * cfghooks.c (redirect_edge_and_branch_force): Same.
11577 (delete_basic_block): Same.
11578 (split_edge): Same.
11579 (make_forwarder_block): Same.
11580 (force_nonfallthru): Same.
11581 (duplicate_block): Same.
11582 (lv_flush_pending_stmts): Same.
11583 * cfghooks.h: Same.
11584 * cfgloop.c (flow_loops_cfg_dump): Same.
11585 (flow_loop_nested_p): Same.
11586 (superloop_at_depth): Same.
11587 (get_loop_latch_edges): Same.
11588 (flow_loop_dump): Same.
11589 (flow_loops_dump): Same.
11590 (flow_loops_free): Same.
11591 (flow_loop_nodes_find): Same.
11592 (establish_preds): Same.
11593 (flow_loop_tree_node_add): Same.
11594 (flow_loop_tree_node_remove): Same.
11595 (flow_loops_find): Same.
11596 (find_subloop_latch_edge_by_profile): Same.
11597 (find_subloop_latch_edge_by_ivs): Same.
11598 (mfb_redirect_edges_in_set): Same.
11599 (form_subloop): Same.
11600 (merge_latch_edges): Same.
11601 (disambiguate_multiple_latches): Same.
11602 (disambiguate_loops_with_multiple_latches): Same.
11603 (flow_bb_inside_loop_p): Same.
11604 (glb_enum_p): Same.
11605 (get_loop_body_with_size): Same.
11606 (get_loop_body): Same.
11607 (fill_sons_in_loop): Same.
11608 (get_loop_body_in_dom_order): Same.
11609 (get_loop_body_in_custom_order): Same.
11610 (release_recorded_exits): Same.
11611 (get_loop_exit_edges): Same.
11612 (num_loop_branches): Same.
11613 (remove_bb_from_loops): Same.
11614 (find_common_loop): Same.
11615 (delete_loop): Same.
11616 (cancel_loop): Same.
11617 (verify_loop_structure): Same.
11618 (loop_preheader_edge): Same.
11619 (loop_exit_edge_p): Same.
11620 (single_exit): Same.
11621 (loop_exits_to_bb_p): Same.
11622 (loop_exits_from_bb_p): Same.
11623 (get_loop_location): Same.
11624 (record_niter_bound): Same.
11625 (get_estimated_loop_iterations_int): Same.
11626 (max_stmt_executions_int): Same.
11627 (likely_max_stmt_executions_int): Same.
11628 (get_estimated_loop_iterations): Same.
11629 (get_max_loop_iterations): Same.
11630 (get_max_loop_iterations_int): Same.
11631 (get_likely_max_loop_iterations): Same.
11632 * cfgloop.h (simple_loop_desc): Same.
11633 (get_loop): Same.
11634 (loop_depth): Same.
11635 (loop_outer): Same.
11636 (loop_iterator::next): Same.
11637 (loop_outermost): Same.
11638 * cfgloopanal.c (mark_irreducible_loops): Same.
11639 (num_loop_insns): Same.
11640 (average_num_loop_insns): Same.
11641 (expected_loop_iterations_unbounded): Same.
11642 (expected_loop_iterations): Same.
11643 (mark_loop_exit_edges): Same.
11644 (single_likely_exit): Same.
11645 * cfgloopmanip.c (fix_bb_placement): Same.
11646 (fix_bb_placements): Same.
11647 (remove_path): Same.
11648 (place_new_loop): Same.
11649 (add_loop): Same.
11650 (scale_loop_frequencies): Same.
11651 (scale_loop_profile): Same.
11652 (create_empty_if_region_on_edge): Same.
11653 (create_empty_loop_on_edge): Same.
11654 (loopify): Same.
11655 (unloop): Same.
11656 (fix_loop_placements): Same.
11657 (copy_loop_info): Same.
11658 (duplicate_loop): Same.
11659 (duplicate_subloops): Same.
11660 (loop_redirect_edge): Same.
11661 (can_duplicate_loop_p): Same.
11662 (duplicate_loop_to_header_edge): Same.
11663 (mfb_keep_just): Same.
11664 (has_preds_from_loop): Same.
11665 (create_preheader): Same.
11666 (create_preheaders): Same.
11667 (lv_adjust_loop_entry_edge): Same.
11668 (loop_version): Same.
11669 * cfgloopmanip.h: Same.
11670 * cgraph.h: Same.
11671 * cgraphbuild.c: Same.
11672 * combine.c (make_extraction): Same.
11673 * config/i386/i386-features.c: Same.
11674 * config/i386/i386-features.h: Same.
11675 * config/i386/i386.c (ix86_emit_outlined_ms2sysv_save): Same.
11676 (ix86_emit_outlined_ms2sysv_restore): Same.
11677 (ix86_noce_conversion_profitable_p): Same.
11678 (ix86_init_cost): Same.
11679 (ix86_simd_clone_usable): Same.
11680 * configure.ac (ACX_PROG_CXX_WARNING_OPTS): Add -Wclass-is-pod and
11681 Wstruct-not-pod.
11682 * coretypes.h: Same.
11683 * data-streamer-in.c (string_for_index): Change class-key of PODs
11684 to struct and others to class.
11685 (streamer_read_indexed_string): Same.
11686 (streamer_read_string): Same.
11687 (bp_unpack_indexed_string): Same.
11688 (bp_unpack_string): Same.
11689 (streamer_read_uhwi): Same.
11690 (streamer_read_hwi): Same.
11691 (streamer_read_gcov_count): Same.
11692 (streamer_read_wide_int): Same.
11693 * data-streamer.h (streamer_write_bitpack): Same.
11694 (bp_unpack_value): Same.
11695 (streamer_write_char_stream): Same.
11696 (streamer_write_hwi_in_range): Same.
11697 (streamer_write_record_start): Same.
11698 * ddg.c (create_ddg_dep_from_intra_loop_link): Same.
11699 (add_cross_iteration_register_deps): Same.
11700 (build_intra_loop_deps): Same.
11701 * df-core.c (df_analyze): Same.
11702 (loop_post_order_compute): Same.
11703 (loop_inverted_post_order_compute): Same.
11704 * df-problems.c (df_rd_alloc): Same.
11705 (df_rd_simulate_one_insn): Same.
11706 (df_rd_local_compute): Same.
11707 (df_rd_init_solution): Same.
11708 (df_rd_confluence_n): Same.
11709 (df_rd_transfer_function): Same.
11710 (df_rd_free): Same.
11711 (df_rd_dump_defs_set): Same.
11712 (df_rd_top_dump): Same.
11713 (df_lr_alloc): Same.
11714 (df_lr_reset): Same.
11715 (df_lr_local_compute): Same.
11716 (df_lr_init): Same.
11717 (df_lr_confluence_n): Same.
11718 (df_lr_free): Same.
11719 (df_lr_top_dump): Same.
11720 (df_lr_verify_transfer_functions): Same.
11721 (df_live_alloc): Same.
11722 (df_live_reset): Same.
11723 (df_live_init): Same.
11724 (df_live_confluence_n): Same.
11725 (df_live_finalize): Same.
11726 (df_live_free): Same.
11727 (df_live_top_dump): Same.
11728 (df_live_verify_transfer_functions): Same.
11729 (df_mir_alloc): Same.
11730 (df_mir_reset): Same.
11731 (df_mir_init): Same.
11732 (df_mir_confluence_n): Same.
11733 (df_mir_free): Same.
11734 (df_mir_top_dump): Same.
11735 (df_word_lr_alloc): Same.
11736 (df_word_lr_reset): Same.
11737 (df_word_lr_init): Same.
11738 (df_word_lr_confluence_n): Same.
11739 (df_word_lr_free): Same.
11740 (df_word_lr_top_dump): Same.
11741 (df_md_alloc): Same.
11742 (df_md_simulate_one_insn): Same.
11743 (df_md_reset): Same.
11744 (df_md_init): Same.
11745 (df_md_free): Same.
11746 (df_md_top_dump): Same.
11747 * df-scan.c (df_insn_delete): Same.
11748 (df_insn_rescan): Same.
11749 (df_notes_rescan): Same.
11750 (df_sort_and_compress_mws): Same.
11751 (df_install_mws): Same.
11752 (df_refs_add_to_chains): Same.
11753 (df_ref_create_structure): Same.
11754 (df_ref_record): Same.
11755 (df_def_record_1): Same.
11756 (df_find_hard_reg_defs): Same.
11757 (df_uses_record): Same.
11758 (df_get_conditional_uses): Same.
11759 (df_get_call_refs): Same.
11760 (df_recompute_luids): Same.
11761 (df_get_entry_block_def_set): Same.
11762 (df_entry_block_defs_collect): Same.
11763 (df_get_exit_block_use_set): Same.
11764 (df_exit_block_uses_collect): Same.
11765 (df_mws_verify): Same.
11766 (df_bb_verify): Same.
11767 * df.h (df_scan_get_bb_info): Same.
11768 * doc/tm.texi: Same.
11769 * dse.c (record_store): Same.
11770 * dumpfile.h: Same.
11771 * emit-rtl.c (const_fixed_hasher::equal): Same.
11772 (set_mem_attributes_minus_bitpos): Same.
11773 (change_address): Same.
11774 (adjust_address_1): Same.
11775 (offset_address): Same.
11776 * emit-rtl.h: Same.
11777 * except.c (dw2_build_landing_pads): Same.
11778 (sjlj_emit_dispatch_table): Same.
11779 * explow.c (allocate_dynamic_stack_space): Same.
11780 (emit_stack_probe): Same.
11781 (probe_stack_range): Same.
11782 * expmed.c (store_bit_field_using_insv): Same.
11783 (store_bit_field_1): Same.
11784 (store_integral_bit_field): Same.
11785 (extract_bit_field_using_extv): Same.
11786 (extract_bit_field_1): Same.
11787 (emit_cstore): Same.
11788 * expr.c (emit_block_move_via_cpymem): Same.
11789 (expand_cmpstrn_or_cmpmem): Same.
11790 (set_storage_via_setmem): Same.
11791 (emit_single_push_insn_1): Same.
11792 (expand_assignment): Same.
11793 (store_constructor): Same.
11794 (expand_expr_real_2): Same.
11795 (expand_expr_real_1): Same.
11796 (try_casesi): Same.
11797 * flags.h: Same.
11798 * function.c (try_fit_stack_local): Same.
11799 (assign_stack_local_1): Same.
11800 (assign_stack_local): Same.
11801 (cut_slot_from_list): Same.
11802 (insert_slot_to_list): Same.
11803 (max_slot_level): Same.
11804 (move_slot_to_level): Same.
11805 (temp_address_hasher::equal): Same.
11806 (remove_unused_temp_slot_addresses): Same.
11807 (assign_temp): Same.
11808 (combine_temp_slots): Same.
11809 (update_temp_slot_address): Same.
11810 (preserve_temp_slots): Same.
11811 * function.h: Same.
11812 * fwprop.c: Same.
11813 * gcc-rich-location.h: Same.
11814 * gcov.c: Same.
11815 * genattrtab.c (check_attr_test): Same.
11816 (check_attr_value): Same.
11817 (convert_set_attr_alternative): Same.
11818 (convert_set_attr): Same.
11819 (check_defs): Same.
11820 (copy_boolean): Same.
11821 (get_attr_value): Same.
11822 (expand_delays): Same.
11823 (make_length_attrs): Same.
11824 (min_fn): Same.
11825 (make_alternative_compare): Same.
11826 (simplify_test_exp): Same.
11827 (tests_attr_p): Same.
11828 (get_attr_order): Same.
11829 (clear_struct_flag): Same.
11830 (gen_attr): Same.
11831 (compares_alternatives_p): Same.
11832 (gen_insn): Same.
11833 (gen_delay): Same.
11834 (find_attrs_to_cache): Same.
11835 (write_test_expr): Same.
11836 (walk_attr_value): Same.
11837 (write_attr_get): Same.
11838 (eliminate_known_true): Same.
11839 (write_insn_cases): Same.
11840 (write_attr_case): Same.
11841 (write_attr_valueq): Same.
11842 (write_attr_value): Same.
11843 (write_dummy_eligible_delay): Same.
11844 (next_comma_elt): Same.
11845 (find_attr): Same.
11846 (make_internal_attr): Same.
11847 (copy_rtx_unchanging): Same.
11848 (gen_insn_reserv): Same.
11849 (check_tune_attr): Same.
11850 (make_automaton_attrs): Same.
11851 (handle_arg): Same.
11852 * genextract.c (gen_insn): Same.
11853 (VEC_char_to_string): Same.
11854 * genmatch.c (print_operand): Same.
11855 (lower): Same.
11856 (parser::parse_operation): Same.
11857 (parser::parse_capture): Same.
11858 (parser::parse_c_expr): Same.
11859 (parser::parse_simplify): Same.
11860 (main): Same.
11861 * genoutput.c (output_operand_data): Same.
11862 (output_get_insn_name): Same.
11863 (compare_operands): Same.
11864 (place_operands): Same.
11865 (process_template): Same.
11866 (validate_insn_alternatives): Same.
11867 (validate_insn_operands): Same.
11868 (gen_expand): Same.
11869 (note_constraint): Same.
11870 * genpreds.c (write_one_predicate_function): Same.
11871 (add_constraint): Same.
11872 (process_define_register_constraint): Same.
11873 (write_lookup_constraint_1): Same.
11874 (write_lookup_constraint_array): Same.
11875 (write_insn_constraint_len): Same.
11876 (write_reg_class_for_constraint_1): Same.
11877 (write_constraint_satisfied_p_array): Same.
11878 * genrecog.c (optimize_subroutine_group): Same.
11879 * gensupport.c (process_define_predicate): Same.
11880 (queue_pattern): Same.
11881 (remove_from_queue): Same.
11882 (process_rtx): Same.
11883 (is_predicable): Same.
11884 (change_subst_attribute): Same.
11885 (subst_pattern_match): Same.
11886 (alter_constraints): Same.
11887 (alter_attrs_for_insn): Same.
11888 (shift_output_template): Same.
11889 (alter_output_for_subst_insn): Same.
11890 (process_one_cond_exec): Same.
11891 (subst_dup): Same.
11892 (process_define_cond_exec): Same.
11893 (mnemonic_htab_callback): Same.
11894 (gen_mnemonic_attr): Same.
11895 (read_md_rtx): Same.
11896 * ggc-page.c: Same.
11897 * gimple-loop-interchange.cc (dump_reduction): Same.
11898 (dump_induction): Same.
11899 (loop_cand::~loop_cand): Same.
11900 (free_data_refs_with_aux): Same.
11901 (tree_loop_interchange::interchange_loops): Same.
11902 (tree_loop_interchange::map_inductions_to_loop): Same.
11903 (tree_loop_interchange::move_code_to_inner_loop): Same.
11904 (compute_access_stride): Same.
11905 (compute_access_strides): Same.
11906 (proper_loop_form_for_interchange): Same.
11907 (tree_loop_interchange_compute_ddrs): Same.
11908 (prune_datarefs_not_in_loop): Same.
11909 (prepare_data_references): Same.
11910 (pass_linterchange::execute): Same.
11911 * gimple-loop-jam.c (bb_prevents_fusion_p): Same.
11912 (unroll_jam_possible_p): Same.
11913 (fuse_loops): Same.
11914 (adjust_unroll_factor): Same.
11915 (tree_loop_unroll_and_jam): Same.
11916 * gimple-loop-versioning.cc (loop_versioning::~loop_versioning): Same.
11917 (loop_versioning::expensive_stmt_p): Same.
11918 (loop_versioning::version_for_unity): Same.
11919 (loop_versioning::dump_inner_likelihood): Same.
11920 (loop_versioning::find_per_loop_multiplication): Same.
11921 (loop_versioning::analyze_term_using_scevs): Same.
11922 (loop_versioning::record_address_fragment): Same.
11923 (loop_versioning::analyze_expr): Same.
11924 (loop_versioning::analyze_blocks): Same.
11925 (loop_versioning::prune_conditions): Same.
11926 (loop_versioning::merge_loop_info): Same.
11927 (loop_versioning::add_loop_to_queue): Same.
11928 (loop_versioning::decide_whether_loop_is_versionable): Same.
11929 (loop_versioning::make_versioning_decisions): Same.
11930 (loop_versioning::implement_versioning_decisions): Same.
11931 * gimple-ssa-evrp-analyze.c
11932 (evrp_range_analyzer::record_ranges_from_phis): Same.
11933 * gimple-ssa-store-merging.c (split_store::split_store): Same.
11934 (count_multiple_uses): Same.
11935 (split_group): Same.
11936 (imm_store_chain_info::output_merged_store): Same.
11937 (pass_store_merging::process_store): Same.
11938 * gimple-ssa-strength-reduction.c (slsr_process_phi): Same.
11939 * gimple-ssa-warn-alloca.c (adjusted_warn_limit): Same.
11940 (is_max): Same.
11941 (alloca_call_type): Same.
11942 (pass_walloca::execute): Same.
11943 * gimple-streamer-in.c (input_phi): Same.
11944 (input_gimple_stmt): Same.
11945 * gimple-streamer.h: Same.
11946 * godump.c (go_force_record_alignment): Same.
11947 (go_format_type): Same.
11948 (go_output_type): Same.
11949 (go_output_fndecl): Same.
11950 (go_output_typedef): Same.
11951 (keyword_hash_init): Same.
11952 (find_dummy_types): Same.
11953 * graph.c (draw_cfg_nodes_no_loops): Same.
11954 (draw_cfg_nodes_for_loop): Same.
11955 * hard-reg-set.h (hard_reg_set_iter_next): Same.
11956 * hsa-brig.c: Same.
11957 * hsa-common.h (hsa_internal_fn_hasher::equal): Same.
11958 * hsa-dump.c (dump_hsa_cfun): Same.
11959 * hsa-gen.c (gen_function_def_parameters): Same.
11960 * hsa-regalloc.c (dump_hsa_cfun_regalloc): Same.
11961 * input.c (dump_line_table_statistics): Same.
11962 (test_lexer): Same.
11963 * input.h: Same.
11964 * internal-fn.c (get_multi_vector_move): Same.
11965 (expand_load_lanes_optab_fn): Same.
11966 (expand_GOMP_SIMT_ENTER_ALLOC): Same.
11967 (expand_GOMP_SIMT_EXIT): Same.
11968 (expand_GOMP_SIMT_LAST_LANE): Same.
11969 (expand_GOMP_SIMT_ORDERED_PRED): Same.
11970 (expand_GOMP_SIMT_VOTE_ANY): Same.
11971 (expand_GOMP_SIMT_XCHG_BFLY): Same.
11972 (expand_GOMP_SIMT_XCHG_IDX): Same.
11973 (expand_addsub_overflow): Same.
11974 (expand_neg_overflow): Same.
11975 (expand_mul_overflow): Same.
11976 (expand_call_mem_ref): Same.
11977 (expand_mask_load_optab_fn): Same.
11978 (expand_scatter_store_optab_fn): Same.
11979 (expand_gather_load_optab_fn): Same.
11980 * ipa-cp.c (ipa_get_parm_lattices): Same.
11981 (print_all_lattices): Same.
11982 (ignore_edge_p): Same.
11983 (build_toporder_info): Same.
11984 (free_toporder_info): Same.
11985 (push_node_to_stack): Same.
11986 (ipcp_lattice<valtype>::set_contains_variable): Same.
11987 (set_agg_lats_to_bottom): Same.
11988 (ipcp_bits_lattice::meet_with): Same.
11989 (set_single_call_flag): Same.
11990 (initialize_node_lattices): Same.
11991 (ipa_get_jf_ancestor_result): Same.
11992 (ipcp_verify_propagated_values): Same.
11993 (propagate_scalar_across_jump_function): Same.
11994 (propagate_context_across_jump_function): Same.
11995 (propagate_bits_across_jump_function): Same.
11996 (ipa_vr_operation_and_type_effects): Same.
11997 (propagate_vr_across_jump_function): Same.
11998 (set_check_aggs_by_ref): Same.
11999 (set_chain_of_aglats_contains_variable): Same.
12000 (merge_aggregate_lattices): Same.
12001 (agg_pass_through_permissible_p): Same.
12002 (propagate_aggs_across_jump_function): Same.
12003 (call_passes_through_thunk_p): Same.
12004 (propagate_constants_across_call): Same.
12005 (devirtualization_time_bonus): Same.
12006 (good_cloning_opportunity_p): Same.
12007 (context_independent_aggregate_values): Same.
12008 (gather_context_independent_values): Same.
12009 (perform_estimation_of_a_value): Same.
12010 (estimate_local_effects): Same.
12011 (value_topo_info<valtype>::add_val): Same.
12012 (add_all_node_vals_to_toposort): Same.
12013 (value_topo_info<valtype>::propagate_effects): Same.
12014 (ipcp_propagate_stage): Same.
12015 (ipcp_discover_new_direct_edges): Same.
12016 (same_node_or_its_all_contexts_clone_p): Same.
12017 (cgraph_edge_brings_value_p): Same.
12018 (gather_edges_for_value): Same.
12019 (create_specialized_node): Same.
12020 (find_more_scalar_values_for_callers_subset): Same.
12021 (find_more_contexts_for_caller_subset): Same.
12022 (copy_plats_to_inter): Same.
12023 (intersect_aggregates_with_edge): Same.
12024 (find_aggregate_values_for_callers_subset): Same.
12025 (cgraph_edge_brings_all_agg_vals_for_node): Same.
12026 (decide_about_value): Same.
12027 (decide_whether_version_node): Same.
12028 (spread_undeadness): Same.
12029 (identify_dead_nodes): Same.
12030 (ipcp_store_vr_results): Same.
12031 * ipa-devirt.c (final_warning_record::grow_type_warnings): Same.
12032 * ipa-fnsummary.c (ipa_fn_summary::account_size_time): Same.
12033 (redirect_to_unreachable): Same.
12034 (edge_set_predicate): Same.
12035 (evaluate_conditions_for_known_args): Same.
12036 (evaluate_properties_for_edge): Same.
12037 (ipa_fn_summary_t::duplicate): Same.
12038 (ipa_call_summary_t::duplicate): Same.
12039 (dump_ipa_call_summary): Same.
12040 (ipa_dump_fn_summary): Same.
12041 (eliminated_by_inlining_prob): Same.
12042 (set_cond_stmt_execution_predicate): Same.
12043 (set_switch_stmt_execution_predicate): Same.
12044 (compute_bb_predicates): Same.
12045 (will_be_nonconstant_expr_predicate): Same.
12046 (phi_result_unknown_predicate): Same.
12047 (analyze_function_body): Same.
12048 (compute_fn_summary): Same.
12049 (estimate_edge_devirt_benefit): Same.
12050 (estimate_edge_size_and_time): Same.
12051 (estimate_calls_size_and_time): Same.
12052 (estimate_node_size_and_time): Same.
12053 (remap_edge_change_prob): Same.
12054 (remap_edge_summaries): Same.
12055 (ipa_merge_fn_summary_after_inlining): Same.
12056 (ipa_fn_summary_generate): Same.
12057 (inline_read_section): Same.
12058 (ipa_fn_summary_read): Same.
12059 (ipa_fn_summary_write): Same.
12060 * ipa-fnsummary.h: Same.
12061 * ipa-hsa.c (ipa_hsa_read_section): Same.
12062 * ipa-icf-gimple.c (func_checker::compare_loops): Same.
12063 * ipa-icf.c (sem_function::param_used_p): Same.
12064 * ipa-inline-analysis.c (do_estimate_edge_time): Same.
12065 * ipa-inline.c (edge_badness): Same.
12066 (inline_small_functions): Same.
12067 * ipa-polymorphic-call.c
12068 (ipa_polymorphic_call_context::stream_out): Same.
12069 * ipa-predicate.c (predicate::remap_after_duplication): Same.
12070 (predicate::remap_after_inlining): Same.
12071 (predicate::stream_out): Same.
12072 * ipa-predicate.h: Same.
12073 * ipa-profile.c (ipa_profile_read_summary): Same.
12074 * ipa-prop.c (ipa_get_param_decl_index_1): Same.
12075 (count_formal_params): Same.
12076 (ipa_dump_param): Same.
12077 (ipa_alloc_node_params): Same.
12078 (ipa_print_node_jump_functions_for_edge): Same.
12079 (ipa_print_node_jump_functions): Same.
12080 (ipa_load_from_parm_agg): Same.
12081 (get_ancestor_addr_info): Same.
12082 (ipa_compute_jump_functions_for_edge): Same.
12083 (ipa_analyze_virtual_call_uses): Same.
12084 (ipa_analyze_stmt_uses): Same.
12085 (ipa_analyze_params_uses_in_bb): Same.
12086 (update_jump_functions_after_inlining): Same.
12087 (try_decrement_rdesc_refcount): Same.
12088 (ipa_impossible_devirt_target): Same.
12089 (update_indirect_edges_after_inlining): Same.
12090 (combine_controlled_uses_counters): Same.
12091 (ipa_edge_args_sum_t::duplicate): Same.
12092 (ipa_write_jump_function): Same.
12093 (ipa_write_indirect_edge_info): Same.
12094 (ipa_write_node_info): Same.
12095 (ipa_read_edge_info): Same.
12096 (ipa_prop_read_section): Same.
12097 (read_replacements_section): Same.
12098 * ipa-prop.h (ipa_get_param_count): Same.
12099 (ipa_get_param): Same.
12100 (ipa_get_type): Same.
12101 (ipa_get_param_move_cost): Same.
12102 (ipa_set_param_used): Same.
12103 (ipa_get_controlled_uses): Same.
12104 (ipa_set_controlled_uses): Same.
12105 (ipa_get_cs_argument_count): Same.
12106 * ipa-pure-const.c (analyze_function): Same.
12107 (pure_const_read_summary): Same.
12108 * ipa-ref.h: Same.
12109 * ipa-reference.c (ipa_reference_read_optimization_summary): Same.
12110 * ipa-split.c (test_nonssa_use): Same.
12111 (dump_split_point): Same.
12112 (dominated_by_forbidden): Same.
12113 (split_part_set_ssa_name_p): Same.
12114 (find_split_points): Same.
12115 * ira-build.c (finish_loop_tree_nodes): Same.
12116 (low_pressure_loop_node_p): Same.
12117 * ira-color.c (ira_reuse_stack_slot): Same.
12118 * ira-int.h: Same.
12119 * ira.c (setup_reg_equiv): Same.
12120 (print_insn_chain): Same.
12121 (ira): Same.
12122 * loop-doloop.c (doloop_condition_get): Same.
12123 (add_test): Same.
12124 (record_reg_sets): Same.
12125 (doloop_optimize): Same.
12126 * loop-init.c (loop_optimizer_init): Same.
12127 (fix_loop_structure): Same.
12128 * loop-invariant.c (merge_identical_invariants): Same.
12129 (compute_always_reached): Same.
12130 (find_exits): Same.
12131 (may_assign_reg_p): Same.
12132 (find_invariants_bb): Same.
12133 (find_invariants_body): Same.
12134 (replace_uses): Same.
12135 (can_move_invariant_reg): Same.
12136 (free_inv_motion_data): Same.
12137 (move_single_loop_invariants): Same.
12138 (change_pressure): Same.
12139 (mark_ref_regs): Same.
12140 (calculate_loop_reg_pressure): Same.
12141 * loop-iv.c (biv_entry_hasher::equal): Same.
12142 (iv_extend_to_rtx_code): Same.
12143 (check_iv_ref_table_size): Same.
12144 (clear_iv_info): Same.
12145 (latch_dominating_def): Same.
12146 (iv_get_reaching_def): Same.
12147 (iv_constant): Same.
12148 (iv_subreg): Same.
12149 (iv_extend): Same.
12150 (iv_neg): Same.
12151 (iv_add): Same.
12152 (iv_mult): Same.
12153 (get_biv_step): Same.
12154 (record_iv): Same.
12155 (analyzed_for_bivness_p): Same.
12156 (record_biv): Same.
12157 (iv_analyze_biv): Same.
12158 (iv_analyze_expr): Same.
12159 (iv_analyze_def): Same.
12160 (iv_analyze_op): Same.
12161 (iv_analyze): Same.
12162 (iv_analyze_result): Same.
12163 (biv_p): Same.
12164 (eliminate_implied_conditions): Same.
12165 (simplify_using_initial_values): Same.
12166 (shorten_into_mode): Same.
12167 (canonicalize_iv_subregs): Same.
12168 (determine_max_iter): Same.
12169 (check_simple_exit): Same.
12170 (find_simple_exit): Same.
12171 (get_simple_loop_desc): Same.
12172 * loop-unroll.c (report_unroll): Same.
12173 (decide_unrolling): Same.
12174 (unroll_loops): Same.
12175 (loop_exit_at_end_p): Same.
12176 (decide_unroll_constant_iterations): Same.
12177 (unroll_loop_constant_iterations): Same.
12178 (compare_and_jump_seq): Same.
12179 (unroll_loop_runtime_iterations): Same.
12180 (decide_unroll_stupid): Same.
12181 (unroll_loop_stupid): Same.
12182 (referenced_in_one_insn_in_loop_p): Same.
12183 (reset_debug_uses_in_loop): Same.
12184 (analyze_iv_to_split_insn): Same.
12185 * lra-eliminations.c (lra_debug_elim_table): Same.
12186 (setup_can_eliminate): Same.
12187 (form_sum): Same.
12188 (lra_get_elimination_hard_regno): Same.
12189 (lra_eliminate_regs_1): Same.
12190 (eliminate_regs_in_insn): Same.
12191 (update_reg_eliminate): Same.
12192 (init_elimination): Same.
12193 (lra_eliminate): Same.
12194 * lra-int.h: Same.
12195 * lra-lives.c (initiate_live_solver): Same.
12196 * lra-remat.c (create_remat_bb_data): Same.
12197 * lra-spills.c (lra_spill): Same.
12198 * lra.c (lra_set_insn_recog_data): Same.
12199 (lra_set_used_insn_alternative_by_uid): Same.
12200 (init_reg_info): Same.
12201 (expand_reg_info): Same.
12202 * lto-cgraph.c (output_symtab): Same.
12203 (read_identifier): Same.
12204 (get_alias_symbol): Same.
12205 (input_node): Same.
12206 (input_varpool_node): Same.
12207 (input_ref): Same.
12208 (input_edge): Same.
12209 (input_cgraph_1): Same.
12210 (input_refs): Same.
12211 (input_symtab): Same.
12212 (input_offload_tables): Same.
12213 (output_cgraph_opt_summary): Same.
12214 (input_edge_opt_summary): Same.
12215 (input_cgraph_opt_section): Same.
12216 * lto-section-in.c (lto_free_raw_section_data): Same.
12217 (lto_create_simple_input_block): Same.
12218 (lto_free_function_in_decl_state_for_node): Same.
12219 * lto-streamer-in.c (lto_tag_check_set): Same.
12220 (lto_location_cache::revert_location_cache): Same.
12221 (lto_location_cache::input_location): Same.
12222 (lto_input_location): Same.
12223 (stream_input_location_now): Same.
12224 (lto_input_tree_ref): Same.
12225 (lto_input_eh_catch_list): Same.
12226 (input_eh_region): Same.
12227 (lto_init_eh): Same.
12228 (make_new_block): Same.
12229 (input_cfg): Same.
12230 (fixup_call_stmt_edges): Same.
12231 (input_struct_function_base): Same.
12232 (input_function): Same.
12233 (lto_read_body_or_constructor): Same.
12234 (lto_read_tree_1): Same.
12235 (lto_read_tree): Same.
12236 (lto_input_scc): Same.
12237 (lto_input_tree_1): Same.
12238 (lto_input_toplevel_asms): Same.
12239 (lto_input_mode_table): Same.
12240 (lto_reader_init): Same.
12241 (lto_data_in_create): Same.
12242 * lto-streamer-out.c (output_cfg): Same.
12243 * lto-streamer.h: Same.
12244 * modulo-sched.c (duplicate_insns_of_cycles): Same.
12245 (generate_prolog_epilog): Same.
12246 (mark_loop_unsched): Same.
12247 (dump_insn_location): Same.
12248 (loop_canon_p): Same.
12249 (sms_schedule): Same.
12250 * omp-expand.c (expand_omp_for_ordered_loops): Same.
12251 (expand_omp_for_generic): Same.
12252 (expand_omp_for_static_nochunk): Same.
12253 (expand_omp_for_static_chunk): Same.
12254 (expand_omp_simd): Same.
12255 (expand_omp_taskloop_for_inner): Same.
12256 (expand_oacc_for): Same.
12257 (expand_omp_atomic_pipeline): Same.
12258 (mark_loops_in_oacc_kernels_region): Same.
12259 * omp-offload.c (oacc_xform_loop): Same.
12260 * omp-simd-clone.c (simd_clone_adjust): Same.
12261 * optabs-query.c (get_traditional_extraction_insn): Same.
12262 * optabs.c (expand_vector_broadcast): Same.
12263 (expand_binop_directly): Same.
12264 (expand_twoval_unop): Same.
12265 (expand_twoval_binop): Same.
12266 (expand_unop_direct): Same.
12267 (emit_indirect_jump): Same.
12268 (emit_conditional_move): Same.
12269 (emit_conditional_neg_or_complement): Same.
12270 (emit_conditional_add): Same.
12271 (vector_compare_rtx): Same.
12272 (expand_vec_perm_1): Same.
12273 (expand_vec_perm_const): Same.
12274 (expand_vec_cond_expr): Same.
12275 (expand_vec_series_expr): Same.
12276 (maybe_emit_atomic_exchange): Same.
12277 (maybe_emit_sync_lock_test_and_set): Same.
12278 (expand_atomic_compare_and_swap): Same.
12279 (expand_atomic_load): Same.
12280 (expand_atomic_store): Same.
12281 (maybe_emit_op): Same.
12282 (valid_multiword_target_p): Same.
12283 (create_integer_operand): Same.
12284 (maybe_legitimize_operand_same_code): Same.
12285 (maybe_legitimize_operand): Same.
12286 (create_convert_operand_from_type): Same.
12287 (can_reuse_operands_p): Same.
12288 (maybe_legitimize_operands): Same.
12289 (maybe_gen_insn): Same.
12290 (maybe_expand_insn): Same.
12291 (maybe_expand_jump_insn): Same.
12292 (expand_insn): Same.
12293 * optabs.h (create_expand_operand): Same.
12294 (create_fixed_operand): Same.
12295 (create_output_operand): Same.
12296 (create_input_operand): Same.
12297 (create_convert_operand_to): Same.
12298 (create_convert_operand_from): Same.
12299 * optinfo.h: Same.
12300 * poly-int.h: Same.
12301 * predict.c (optimize_insn_for_speed_p): Same.
12302 (optimize_loop_for_size_p): Same.
12303 (optimize_loop_for_speed_p): Same.
12304 (optimize_loop_nest_for_speed_p): Same.
12305 (get_base_value): Same.
12306 (predicted_by_loop_heuristics_p): Same.
12307 (predict_extra_loop_exits): Same.
12308 (predict_loops): Same.
12309 (predict_paths_for_bb): Same.
12310 (predict_paths_leading_to): Same.
12311 (propagate_freq): Same.
12312 (pass_profile::execute): Same.
12313 * predict.h: Same.
12314 * profile-count.c (profile_count::differs_from_p): Same.
12315 (profile_probability::differs_lot_from_p): Same.
12316 * profile-count.h: Same.
12317 * profile.c (branch_prob): Same.
12318 * regrename.c (free_chain_data): Same.
12319 (mark_conflict): Same.
12320 (create_new_chain): Same.
12321 (merge_overlapping_regs): Same.
12322 (init_rename_info): Same.
12323 (merge_chains): Same.
12324 (regrename_analyze): Same.
12325 (regrename_do_replace): Same.
12326 (scan_rtx_reg): Same.
12327 (record_out_operands): Same.
12328 (build_def_use): Same.
12329 * regrename.h: Same.
12330 * reload.h: Same.
12331 * reload1.c (init_reload): Same.
12332 (maybe_fix_stack_asms): Same.
12333 (copy_reloads): Same.
12334 (count_pseudo): Same.
12335 (count_spilled_pseudo): Same.
12336 (find_reg): Same.
12337 (find_reload_regs): Same.
12338 (select_reload_regs): Same.
12339 (spill_hard_reg): Same.
12340 (fixup_eh_region_note): Same.
12341 (set_reload_reg): Same.
12342 (allocate_reload_reg): Same.
12343 (compute_reload_subreg_offset): Same.
12344 (reload_adjust_reg_for_icode): Same.
12345 (emit_input_reload_insns): Same.
12346 (emit_output_reload_insns): Same.
12347 (do_input_reload): Same.
12348 (inherit_piecemeal_p): Same.
12349 * rtl.h: Same.
12350 * sanopt.c (maybe_get_dominating_check): Same.
12351 (maybe_optimize_ubsan_ptr_ifn): Same.
12352 (can_remove_asan_check): Same.
12353 (maybe_optimize_asan_check_ifn): Same.
12354 (sanopt_optimize_walker): Same.
12355 * sched-deps.c (add_dependence_list): Same.
12356 (chain_to_prev_insn): Same.
12357 (add_insn_mem_dependence): Same.
12358 (create_insn_reg_set): Same.
12359 (maybe_extend_reg_info_p): Same.
12360 (sched_analyze_reg): Same.
12361 (sched_analyze_1): Same.
12362 (get_implicit_reg_pending_clobbers): Same.
12363 (chain_to_prev_insn_p): Same.
12364 (deps_analyze_insn): Same.
12365 (deps_start_bb): Same.
12366 (sched_free_deps): Same.
12367 (init_deps): Same.
12368 (init_deps_reg_last): Same.
12369 (free_deps): Same.
12370 * sched-ebb.c: Same.
12371 * sched-int.h: Same.
12372 * sched-rgn.c (add_branch_dependences): Same.
12373 (concat_insn_mem_list): Same.
12374 (deps_join): Same.
12375 (sched_rgn_compute_dependencies): Same.
12376 * sel-sched-ir.c (reset_target_context): Same.
12377 (copy_deps_context): Same.
12378 (init_id_from_df): Same.
12379 (has_dependence_p): Same.
12380 (change_loops_latches): Same.
12381 (bb_top_order_comparator): Same.
12382 (make_region_from_loop_preheader): Same.
12383 (sel_init_pipelining): Same.
12384 (get_loop_nest_for_rgn): Same.
12385 (make_regions_from_the_rest): Same.
12386 (sel_is_loop_preheader_p): Same.
12387 * sel-sched-ir.h (inner_loop_header_p): Same.
12388 (get_all_loop_exits): Same.
12389 * selftest.h: Same.
12390 * sese.c (sese_build_liveouts): Same.
12391 (sese_insert_phis_for_liveouts): Same.
12392 * sese.h (defined_in_sese_p): Same.
12393 * sreal.c (sreal::stream_out): Same.
12394 * sreal.h: Same.
12395 * streamer-hooks.h: Same.
12396 * target-globals.c (save_target_globals): Same.
12397 * target-globals.h: Same.
12398 * target.def: Same.
12399 * target.h: Same.
12400 * targhooks.c (default_has_ifunc_p): Same.
12401 (default_empty_mask_is_expensive): Same.
12402 (default_init_cost): Same.
12403 * targhooks.h: Same.
12404 * toplev.c: Same.
12405 * tree-affine.c (aff_combination_mult): Same.
12406 (aff_combination_expand): Same.
12407 (aff_combination_constant_multiple_p): Same.
12408 * tree-affine.h: Same.
12409 * tree-cfg.c (build_gimple_cfg): Same.
12410 (replace_loop_annotate_in_block): Same.
12411 (replace_uses_by): Same.
12412 (remove_bb): Same.
12413 (dump_cfg_stats): Same.
12414 (gimple_duplicate_sese_region): Same.
12415 (gimple_duplicate_sese_tail): Same.
12416 (move_block_to_fn): Same.
12417 (replace_block_vars_by_duplicates): Same.
12418 (move_sese_region_to_fn): Same.
12419 (print_loops_bb): Same.
12420 (print_loop): Same.
12421 (print_loops): Same.
12422 (debug): Same.
12423 (debug_loops): Same.
12424 * tree-cfg.h: Same.
12425 * tree-chrec.c (chrec_fold_plus_poly_poly): Same.
12426 (chrec_fold_multiply_poly_poly): Same.
12427 (chrec_evaluate): Same.
12428 (chrec_component_in_loop_num): Same.
12429 (reset_evolution_in_loop): Same.
12430 (is_multivariate_chrec): Same.
12431 (chrec_contains_symbols): Same.
12432 (nb_vars_in_chrec): Same.
12433 (chrec_convert_1): Same.
12434 (chrec_convert_aggressive): Same.
12435 * tree-chrec.h: Same.
12436 * tree-core.h: Same.
12437 * tree-data-ref.c (dump_data_dependence_relation): Same.
12438 (canonicalize_base_object_address): Same.
12439 (data_ref_compare_tree): Same.
12440 (prune_runtime_alias_test_list): Same.
12441 (get_segment_min_max): Same.
12442 (create_intersect_range_checks): Same.
12443 (conflict_fn_no_dependence): Same.
12444 (object_address_invariant_in_loop_p): Same.
12445 (analyze_ziv_subscript): Same.
12446 (analyze_siv_subscript_cst_affine): Same.
12447 (analyze_miv_subscript): Same.
12448 (analyze_overlapping_iterations): Same.
12449 (build_classic_dist_vector_1): Same.
12450 (add_other_self_distances): Same.
12451 (same_access_functions): Same.
12452 (build_classic_dir_vector): Same.
12453 (subscript_dependence_tester_1): Same.
12454 (subscript_dependence_tester): Same.
12455 (access_functions_are_affine_or_constant_p): Same.
12456 (get_references_in_stmt): Same.
12457 (loop_nest_has_data_refs): Same.
12458 (graphite_find_data_references_in_stmt): Same.
12459 (find_data_references_in_bb): Same.
12460 (get_base_for_alignment): Same.
12461 (find_loop_nest_1): Same.
12462 (find_loop_nest): Same.
12463 * tree-data-ref.h (dr_alignment): Same.
12464 (ddr_dependence_level): Same.
12465 * tree-if-conv.c (fold_build_cond_expr): Same.
12466 (add_to_predicate_list): Same.
12467 (add_to_dst_predicate_list): Same.
12468 (phi_convertible_by_degenerating_args): Same.
12469 (idx_within_array_bound): Same.
12470 (all_preds_critical_p): Same.
12471 (pred_blocks_visited_p): Same.
12472 (predicate_bbs): Same.
12473 (build_region): Same.
12474 (if_convertible_loop_p_1): Same.
12475 (is_cond_scalar_reduction): Same.
12476 (predicate_scalar_phi): Same.
12477 (remove_conditions_and_labels): Same.
12478 (combine_blocks): Same.
12479 (version_loop_for_if_conversion): Same.
12480 (versionable_outer_loop_p): Same.
12481 (ifcvt_local_dce): Same.
12482 (tree_if_conversion): Same.
12483 (pass_if_conversion::gate): Same.
12484 * tree-if-conv.h: Same.
12485 * tree-inline.c (maybe_move_debug_stmts_to_successors): Same.
12486 * tree-loop-distribution.c (bb_top_order_cmp): Same.
12487 (free_rdg): Same.
12488 (stmt_has_scalar_dependences_outside_loop): Same.
12489 (copy_loop_before): Same.
12490 (create_bb_after_loop): Same.
12491 (const_with_all_bytes_same): Same.
12492 (generate_memset_builtin): Same.
12493 (generate_memcpy_builtin): Same.
12494 (destroy_loop): Same.
12495 (build_rdg_partition_for_vertex): Same.
12496 (compute_access_range): Same.
12497 (data_ref_segment_size): Same.
12498 (latch_dominated_by_data_ref): Same.
12499 (compute_alias_check_pairs): Same.
12500 (fuse_memset_builtins): Same.
12501 (finalize_partitions): Same.
12502 (find_seed_stmts_for_distribution): Same.
12503 (prepare_perfect_loop_nest): Same.
12504 * tree-parloops.c (lambda_transform_legal_p): Same.
12505 (loop_parallel_p): Same.
12506 (reduc_stmt_res): Same.
12507 (add_field_for_name): Same.
12508 (create_call_for_reduction_1): Same.
12509 (replace_uses_in_bb_by): Same.
12510 (transform_to_exit_first_loop_alt): Same.
12511 (try_transform_to_exit_first_loop_alt): Same.
12512 (transform_to_exit_first_loop): Same.
12513 (num_phis): Same.
12514 (gen_parallel_loop): Same.
12515 (gather_scalar_reductions): Same.
12516 (get_omp_data_i_param): Same.
12517 (try_create_reduction_list): Same.
12518 (oacc_entry_exit_single_gang): Same.
12519 (parallelize_loops): Same.
12520 * tree-pass.h: Same.
12521 * tree-predcom.c (determine_offset): Same.
12522 (last_always_executed_block): Same.
12523 (split_data_refs_to_components): Same.
12524 (suitable_component_p): Same.
12525 (valid_initializer_p): Same.
12526 (find_looparound_phi): Same.
12527 (insert_looparound_copy): Same.
12528 (add_looparound_copies): Same.
12529 (determine_roots_comp): Same.
12530 (predcom_tmp_var): Same.
12531 (initialize_root_vars): Same.
12532 (initialize_root_vars_store_elim_1): Same.
12533 (initialize_root_vars_store_elim_2): Same.
12534 (finalize_eliminated_stores): Same.
12535 (initialize_root_vars_lm): Same.
12536 (remove_stmt): Same.
12537 (determine_unroll_factor): Same.
12538 (execute_pred_commoning_cbck): Same.
12539 (base_names_in_chain_on): Same.
12540 (combine_chains): Same.
12541 (pcom_stmt_dominates_stmt_p): Same.
12542 (try_combine_chains): Same.
12543 (prepare_initializers_chain_store_elim): Same.
12544 (prepare_initializers_chain): Same.
12545 (prepare_initializers): Same.
12546 (prepare_finalizers_chain): Same.
12547 (prepare_finalizers): Same.
12548 (insert_init_seqs): Same.
12549 * tree-scalar-evolution.c (loop_phi_node_p): Same.
12550 (compute_overall_effect_of_inner_loop): Same.
12551 (add_to_evolution_1): Same.
12552 (add_to_evolution): Same.
12553 (follow_ssa_edge_binary): Same.
12554 (follow_ssa_edge_expr): Same.
12555 (backedge_phi_arg_p): Same.
12556 (follow_ssa_edge_in_condition_phi_branch): Same.
12557 (follow_ssa_edge_in_condition_phi): Same.
12558 (follow_ssa_edge_inner_loop_phi): Same.
12559 (follow_ssa_edge): Same.
12560 (analyze_evolution_in_loop): Same.
12561 (analyze_initial_condition): Same.
12562 (interpret_loop_phi): Same.
12563 (interpret_condition_phi): Same.
12564 (interpret_rhs_expr): Same.
12565 (interpret_expr): Same.
12566 (interpret_gimple_assign): Same.
12567 (analyze_scalar_evolution_1): Same.
12568 (analyze_scalar_evolution): Same.
12569 (analyze_scalar_evolution_for_address_of): Same.
12570 (get_instantiated_value_entry): Same.
12571 (loop_closed_phi_def): Same.
12572 (instantiate_scev_name): Same.
12573 (instantiate_scev_poly): Same.
12574 (instantiate_scev_binary): Same.
12575 (instantiate_scev_convert): Same.
12576 (instantiate_scev_not): Same.
12577 (instantiate_scev_r): Same.
12578 (instantiate_scev): Same.
12579 (resolve_mixers): Same.
12580 (initialize_scalar_evolutions_analyzer): Same.
12581 (scev_reset_htab): Same.
12582 (scev_reset): Same.
12583 (derive_simple_iv_with_niters): Same.
12584 (simple_iv_with_niters): Same.
12585 (expression_expensive_p): Same.
12586 (final_value_replacement_loop): Same.
12587 * tree-scalar-evolution.h (block_before_loop): Same.
12588 * tree-ssa-address.h: Same.
12589 * tree-ssa-dce.c (find_obviously_necessary_stmts): Same.
12590 * tree-ssa-dom.c (edge_info::record_simple_equiv): Same.
12591 (record_edge_info): Same.
12592 * tree-ssa-live.c (var_map_base_fini): Same.
12593 (remove_unused_locals): Same.
12594 * tree-ssa-live.h: Same.
12595 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Same.
12596 (pass_ch_vect::execute): Same.
12597 (pass_ch::process_loop_p): Same.
12598 * tree-ssa-loop-im.c (mem_ref_hasher::hash): Same.
12599 (movement_possibility): Same.
12600 (outermost_invariant_loop): Same.
12601 (stmt_cost): Same.
12602 (determine_max_movement): Same.
12603 (invariantness_dom_walker::before_dom_children): Same.
12604 (move_computations): Same.
12605 (may_move_till): Same.
12606 (force_move_till_op): Same.
12607 (force_move_till): Same.
12608 (memref_free): Same.
12609 (record_mem_ref_loc): Same.
12610 (set_ref_stored_in_loop): Same.
12611 (mark_ref_stored): Same.
12612 (sort_bbs_in_loop_postorder_cmp): Same.
12613 (sort_locs_in_loop_postorder_cmp): Same.
12614 (analyze_memory_references): Same.
12615 (mem_refs_may_alias_p): Same.
12616 (find_ref_loc_in_loop_cmp): Same.
12617 (rewrite_mem_ref_loc::operator): Same.
12618 (first_mem_ref_loc_1::operator): Same.
12619 (sm_set_flag_if_changed::operator): Same.
12620 (execute_sm_if_changed_flag_set): Same.
12621 (execute_sm): Same.
12622 (hoist_memory_references): Same.
12623 (ref_always_accessed::operator): Same.
12624 (refs_independent_p): Same.
12625 (record_dep_loop): Same.
12626 (ref_indep_loop_p_1): Same.
12627 (ref_indep_loop_p): Same.
12628 (can_sm_ref_p): Same.
12629 (find_refs_for_sm): Same.
12630 (loop_suitable_for_sm): Same.
12631 (store_motion_loop): Same.
12632 (store_motion): Same.
12633 (fill_always_executed_in): Same.
12634 * tree-ssa-loop-ivcanon.c (constant_after_peeling): Same.
12635 (estimated_unrolled_size): Same.
12636 (loop_edge_to_cancel): Same.
12637 (remove_exits_and_undefined_stmts): Same.
12638 (remove_redundant_iv_tests): Same.
12639 (unloop_loops): Same.
12640 (estimated_peeled_sequence_size): Same.
12641 (try_peel_loop): Same.
12642 (canonicalize_loop_induction_variables): Same.
12643 (canonicalize_induction_variables): Same.
12644 * tree-ssa-loop-ivopts.c (iv_inv_expr_hasher::equal): Same.
12645 (name_info): Same.
12646 (stmt_after_inc_pos): Same.
12647 (contains_abnormal_ssa_name_p): Same.
12648 (niter_for_exit): Same.
12649 (find_bivs): Same.
12650 (mark_bivs): Same.
12651 (find_givs_in_bb): Same.
12652 (find_induction_variables): Same.
12653 (find_interesting_uses_cond): Same.
12654 (outermost_invariant_loop_for_expr): Same.
12655 (idx_find_step): Same.
12656 (add_candidate_1): Same.
12657 (add_iv_candidate_derived_from_uses): Same.
12658 (alloc_use_cost_map): Same.
12659 (prepare_decl_rtl): Same.
12660 (generic_predict_doloop_p): Same.
12661 (computation_cost): Same.
12662 (determine_common_wider_type): Same.
12663 (get_computation_aff_1): Same.
12664 (get_use_type): Same.
12665 (determine_group_iv_cost_address): Same.
12666 (iv_period): Same.
12667 (difference_cannot_overflow_p): Same.
12668 (may_eliminate_iv): Same.
12669 (determine_set_costs): Same.
12670 (cheaper_cost_pair): Same.
12671 (compare_cost_pair): Same.
12672 (iv_ca_cand_for_group): Same.
12673 (iv_ca_recount_cost): Same.
12674 (iv_ca_set_remove_invs): Same.
12675 (iv_ca_set_no_cp): Same.
12676 (iv_ca_set_add_invs): Same.
12677 (iv_ca_set_cp): Same.
12678 (iv_ca_add_group): Same.
12679 (iv_ca_cost): Same.
12680 (iv_ca_compare_deps): Same.
12681 (iv_ca_delta_reverse): Same.
12682 (iv_ca_delta_commit): Same.
12683 (iv_ca_cand_used_p): Same.
12684 (iv_ca_delta_free): Same.
12685 (iv_ca_new): Same.
12686 (iv_ca_free): Same.
12687 (iv_ca_dump): Same.
12688 (iv_ca_extend): Same.
12689 (iv_ca_narrow): Same.
12690 (iv_ca_prune): Same.
12691 (cheaper_cost_with_cand): Same.
12692 (iv_ca_replace): Same.
12693 (try_add_cand_for): Same.
12694 (get_initial_solution): Same.
12695 (try_improve_iv_set): Same.
12696 (find_optimal_iv_set_1): Same.
12697 (create_new_iv): Same.
12698 (rewrite_use_compare): Same.
12699 (remove_unused_ivs): Same.
12700 (determine_scaling_factor): Same.
12701 * tree-ssa-loop-ivopts.h: Same.
12702 * tree-ssa-loop-manip.c (create_iv): Same.
12703 (compute_live_loop_exits): Same.
12704 (add_exit_phi): Same.
12705 (add_exit_phis): Same.
12706 (find_uses_to_rename_use): Same.
12707 (find_uses_to_rename_def): Same.
12708 (find_uses_to_rename_in_loop): Same.
12709 (rewrite_into_loop_closed_ssa): Same.
12710 (check_loop_closed_ssa_bb): Same.
12711 (split_loop_exit_edge): Same.
12712 (ip_end_pos): Same.
12713 (ip_normal_pos): Same.
12714 (copy_phi_node_args): Same.
12715 (gimple_duplicate_loop_to_header_edge): Same.
12716 (can_unroll_loop_p): Same.
12717 (determine_exit_conditions): Same.
12718 (scale_dominated_blocks_in_loop): Same.
12719 (niter_for_unrolled_loop): Same.
12720 (tree_transform_and_unroll_loop): Same.
12721 (rewrite_all_phi_nodes_with_iv): Same.
12722 * tree-ssa-loop-manip.h: Same.
12723 * tree-ssa-loop-niter.c (number_of_iterations_ne_max): Same.
12724 (number_of_iterations_ne): Same.
12725 (assert_no_overflow_lt): Same.
12726 (assert_loop_rolls_lt): Same.
12727 (number_of_iterations_lt): Same.
12728 (adjust_cond_for_loop_until_wrap): Same.
12729 (tree_simplify_using_condition): Same.
12730 (simplify_using_initial_conditions): Same.
12731 (simplify_using_outer_evolutions): Same.
12732 (loop_only_exit_p): Same.
12733 (ssa_defined_by_minus_one_stmt_p): Same.
12734 (number_of_iterations_popcount): Same.
12735 (number_of_iterations_exit): Same.
12736 (find_loop_niter): Same.
12737 (finite_loop_p): Same.
12738 (chain_of_csts_start): Same.
12739 (get_val_for): Same.
12740 (loop_niter_by_eval): Same.
12741 (derive_constant_upper_bound_ops): Same.
12742 (do_warn_aggressive_loop_optimizations): Same.
12743 (record_estimate): Same.
12744 (get_cst_init_from_scev): Same.
12745 (record_nonwrapping_iv): Same.
12746 (idx_infer_loop_bounds): Same.
12747 (infer_loop_bounds_from_ref): Same.
12748 (infer_loop_bounds_from_array): Same.
12749 (infer_loop_bounds_from_pointer_arith): Same.
12750 (infer_loop_bounds_from_signedness): Same.
12751 (bound_index): Same.
12752 (discover_iteration_bound_by_body_walk): Same.
12753 (maybe_lower_iteration_bound): Same.
12754 (estimate_numbers_of_iterations): Same.
12755 (estimated_loop_iterations): Same.
12756 (estimated_loop_iterations_int): Same.
12757 (max_loop_iterations): Same.
12758 (max_loop_iterations_int): Same.
12759 (likely_max_loop_iterations): Same.
12760 (likely_max_loop_iterations_int): Same.
12761 (estimated_stmt_executions_int): Same.
12762 (max_stmt_executions): Same.
12763 (likely_max_stmt_executions): Same.
12764 (estimated_stmt_executions): Same.
12765 (stmt_dominates_stmt_p): Same.
12766 (nowrap_type_p): Same.
12767 (loop_exits_before_overflow): Same.
12768 (scev_var_range_cant_overflow): Same.
12769 (scev_probably_wraps_p): Same.
12770 (free_numbers_of_iterations_estimates): Same.
12771 * tree-ssa-loop-niter.h: Same.
12772 * tree-ssa-loop-prefetch.c (release_mem_refs): Same.
12773 (idx_analyze_ref): Same.
12774 (analyze_ref): Same.
12775 (gather_memory_references_ref): Same.
12776 (mark_nontemporal_store): Same.
12777 (emit_mfence_after_loop): Same.
12778 (may_use_storent_in_loop_p): Same.
12779 (mark_nontemporal_stores): Same.
12780 (should_unroll_loop_p): Same.
12781 (volume_of_dist_vector): Same.
12782 (add_subscript_strides): Same.
12783 (self_reuse_distance): Same.
12784 (insn_to_prefetch_ratio_too_small_p): Same.
12785 * tree-ssa-loop-split.c (split_at_bb_p): Same.
12786 (patch_loop_exit): Same.
12787 (find_or_create_guard_phi): Same.
12788 (easy_exit_values): Same.
12789 (connect_loop_phis): Same.
12790 (connect_loops): Same.
12791 (compute_new_first_bound): Same.
12792 (split_loop): Same.
12793 (tree_ssa_split_loops): Same.
12794 * tree-ssa-loop-unswitch.c (tree_ssa_unswitch_loops): Same.
12795 (is_maybe_undefined): Same.
12796 (tree_may_unswitch_on): Same.
12797 (simplify_using_entry_checks): Same.
12798 (tree_unswitch_single_loop): Same.
12799 (tree_unswitch_loop): Same.
12800 (tree_unswitch_outer_loop): Same.
12801 (empty_bb_without_guard_p): Same.
12802 (used_outside_loop_p): Same.
12803 (get_vop_from_header): Same.
12804 (hoist_guard): Same.
12805 * tree-ssa-loop.c (gate_oacc_kernels): Same.
12806 (get_lsm_tmp_name): Same.
12807 * tree-ssa-loop.h: Same.
12808 * tree-ssa-reassoc.c (add_repeat_to_ops_vec): Same.
12809 (build_and_add_sum): Same.
12810 (no_side_effect_bb): Same.
12811 (get_ops): Same.
12812 (linearize_expr): Same.
12813 (should_break_up_subtract): Same.
12814 (linearize_expr_tree): Same.
12815 * tree-ssa-scopedtables.c: Same.
12816 * tree-ssa-scopedtables.h: Same.
12817 * tree-ssa-structalias.c (condense_visit): Same.
12818 (label_visit): Same.
12819 (dump_pred_graph): Same.
12820 (perform_var_substitution): Same.
12821 (move_complex_constraints): Same.
12822 (remove_preds_and_fake_succs): Same.
12823 * tree-ssa-threadupdate.c (dbds_continue_enumeration_p): Same.
12824 (determine_bb_domination_status): Same.
12825 (duplicate_thread_path): Same.
12826 (thread_through_all_blocks): Same.
12827 * tree-ssa-threadupdate.h: Same.
12828 * tree-streamer-in.c (streamer_read_string_cst): Same.
12829 (input_identifier): Same.
12830 (unpack_ts_type_common_value_fields): Same.
12831 (unpack_ts_block_value_fields): Same.
12832 (unpack_ts_translation_unit_decl_value_fields): Same.
12833 (unpack_ts_omp_clause_value_fields): Same.
12834 (streamer_read_tree_bitfields): Same.
12835 (streamer_alloc_tree): Same.
12836 (lto_input_ts_common_tree_pointers): Same.
12837 (lto_input_ts_vector_tree_pointers): Same.
12838 (lto_input_ts_poly_tree_pointers): Same.
12839 (lto_input_ts_complex_tree_pointers): Same.
12840 (lto_input_ts_decl_minimal_tree_pointers): Same.
12841 (lto_input_ts_decl_common_tree_pointers): Same.
12842 (lto_input_ts_decl_non_common_tree_pointers): Same.
12843 (lto_input_ts_decl_with_vis_tree_pointers): Same.
12844 (lto_input_ts_field_decl_tree_pointers): Same.
12845 (lto_input_ts_function_decl_tree_pointers): Same.
12846 (lto_input_ts_type_common_tree_pointers): Same.
12847 (lto_input_ts_type_non_common_tree_pointers): Same.
12848 (lto_input_ts_list_tree_pointers): Same.
12849 (lto_input_ts_vec_tree_pointers): Same.
12850 (lto_input_ts_exp_tree_pointers): Same.
12851 (lto_input_ts_block_tree_pointers): Same.
12852 (lto_input_ts_binfo_tree_pointers): Same.
12853 (lto_input_ts_constructor_tree_pointers): Same.
12854 (lto_input_ts_omp_clause_tree_pointers): Same.
12855 (streamer_read_tree_body): Same.
12856 * tree-streamer.h: Same.
12857 * tree-switch-conversion.c (bit_test_cluster::is_beneficial): Same.
12858 * tree-vect-data-refs.c (vect_get_smallest_scalar_type): Same.
12859 (vect_analyze_possibly_independent_ddr): Same.
12860 (vect_analyze_data_ref_dependence): Same.
12861 (vect_compute_data_ref_alignment): Same.
12862 (vect_enhance_data_refs_alignment): Same.
12863 (vect_analyze_data_ref_access): Same.
12864 (vect_check_gather_scatter): Same.
12865 (vect_find_stmt_data_reference): Same.
12866 (vect_create_addr_base_for_vector_ref): Same.
12867 (vect_setup_realignment): Same.
12868 (vect_supportable_dr_alignment): Same.
12869 * tree-vect-loop-manip.c (rename_variables_in_bb): Same.
12870 (adjust_phi_and_debug_stmts): Same.
12871 (vect_set_loop_mask): Same.
12872 (add_preheader_seq): Same.
12873 (vect_maybe_permute_loop_masks): Same.
12874 (vect_set_loop_masks_directly): Same.
12875 (vect_set_loop_condition_masked): Same.
12876 (vect_set_loop_condition_unmasked): Same.
12877 (slpeel_duplicate_current_defs_from_edges): Same.
12878 (slpeel_add_loop_guard): Same.
12879 (slpeel_can_duplicate_loop_p): Same.
12880 (create_lcssa_for_virtual_phi): Same.
12881 (iv_phi_p): Same.
12882 (vect_update_ivs_after_vectorizer): Same.
12883 (vect_gen_vector_loop_niters_mult_vf): Same.
12884 (slpeel_update_phi_nodes_for_loops): Same.
12885 (slpeel_update_phi_nodes_for_guard1): Same.
12886 (find_guard_arg): Same.
12887 (slpeel_update_phi_nodes_for_guard2): Same.
12888 (slpeel_update_phi_nodes_for_lcssa): Same.
12889 (vect_do_peeling): Same.
12890 (vect_create_cond_for_alias_checks): Same.
12891 (vect_loop_versioning): Same.
12892 * tree-vect-loop.c (vect_determine_vf_for_stmt): Same.
12893 (vect_inner_phi_in_double_reduction_p): Same.
12894 (vect_analyze_scalar_cycles_1): Same.
12895 (vect_fixup_scalar_cycles_with_patterns): Same.
12896 (vect_get_loop_niters): Same.
12897 (bb_in_loop_p): Same.
12898 (vect_get_max_nscalars_per_iter): Same.
12899 (vect_verify_full_masking): Same.
12900 (vect_compute_single_scalar_iteration_cost): Same.
12901 (vect_analyze_loop_form_1): Same.
12902 (vect_analyze_loop_form): Same.
12903 (vect_active_double_reduction_p): Same.
12904 (vect_analyze_loop_operations): Same.
12905 (neutral_op_for_slp_reduction): Same.
12906 (vect_is_simple_reduction): Same.
12907 (vect_model_reduction_cost): Same.
12908 (get_initial_def_for_reduction): Same.
12909 (get_initial_defs_for_reduction): Same.
12910 (vect_create_epilog_for_reduction): Same.
12911 (vectorize_fold_left_reduction): Same.
12912 (vectorizable_reduction): Same.
12913 (vectorizable_induction): Same.
12914 (vectorizable_live_operation): Same.
12915 (loop_niters_no_overflow): Same.
12916 (vect_get_loop_mask): Same.
12917 (vect_transform_loop_stmt): Same.
12918 (vect_transform_loop): Same.
12919 * tree-vect-patterns.c (vect_reassociating_reduction_p): Same.
12920 (vect_determine_precisions): Same.
12921 (vect_pattern_recog_1): Same.
12922 * tree-vect-slp.c (vect_analyze_slp_instance): Same.
12923 * tree-vect-stmts.c (stmt_vectype): Same.
12924 (process_use): Same.
12925 (vect_init_vector_1): Same.
12926 (vect_truncate_gather_scatter_offset): Same.
12927 (get_group_load_store_type): Same.
12928 (vect_build_gather_load_calls): Same.
12929 (vect_get_strided_load_store_ops): Same.
12930 (vectorizable_simd_clone_call): Same.
12931 (vectorizable_store): Same.
12932 (permute_vec_elements): Same.
12933 (vectorizable_load): Same.
12934 (vect_transform_stmt): Same.
12935 (supportable_widening_operation): Same.
12936 * tree-vectorizer.c (vec_info::replace_stmt): Same.
12937 (vec_info::free_stmt_vec_info): Same.
12938 (vect_free_loop_info_assumptions): Same.
12939 (vect_loop_vectorized_call): Same.
12940 (set_uid_loop_bbs): Same.
12941 (vectorize_loops): Same.
12942 * tree-vectorizer.h (STMT_VINFO_BB_VINFO): Same.
12943 * tree.c (add_tree_to_fld_list): Same.
12944 (fld_type_variant_equal_p): Same.
12945 (fld_decl_context): Same.
12946 (fld_incomplete_type_of): Same.
12947 (free_lang_data_in_binfo): Same.
12948 (need_assembler_name_p): Same.
12949 (find_decls_types_r): Same.
12950 (get_eh_types_for_runtime): Same.
12951 (find_decls_types_in_eh_region): Same.
12952 (find_decls_types_in_node): Same.
12953 (assign_assembler_name_if_needed): Same.
12954 * value-prof.c (stream_out_histogram_value): Same.
12955 * value-prof.h: Same.
12956 * var-tracking.c (use_narrower_mode): Same.
12957 (prepare_call_arguments): Same.
12958 (vt_expand_loc_callback): Same.
12959 (resolve_expansions_pending_recursion): Same.
12960 (vt_expand_loc): Same.
12961 * varasm.c (const_hash_1): Same.
12962 (compare_constant): Same.
12963 (tree_output_constant_def): Same.
12964 (simplify_subtraction): Same.
12965 (get_pool_constant): Same.
12966 (output_constant_pool_2): Same.
12967 (output_constant_pool_1): Same.
12968 (mark_constants_in_pattern): Same.
12969 (mark_constant_pool): Same.
12970 (get_section_anchor): Same.
12971 * vr-values.c (compare_range_with_value): Same.
12972 (vr_values::extract_range_from_phi_node): Same.
12973 * vr-values.h: Same.
12974 * web.c (unionfind_union): Same.
12975 * wide-int.h: Same.
12976
12977 2019-07-09 Martin Sebor <msebor@redhat.com>
12978
12979 PR c++/61339
12980 * align.h: Change class-key from class to struct and vice versa
12981 to match convention and avoid -Wclass-is-pod and -Wstruct-no-pod.
12982 * alloc-pool.h: Same.
12983 * asan.c (shadow_mem_size): Same.
12984 * auto-profile.c: Same.
12985 * basic-block.h: Same.
12986 * bitmap.h: Same.
12987 * cfgexpand.c (set_rtl): Same.
12988 (expand_one_stack_var_at): Same.
12989 * cfghooks.h: Same.
12990 * cfgloop.h: Same.
12991 * cgraph.h: Same.
12992 * config/i386/i386.h: Same.
12993 * df-problems.c (df_print_bb_index): Same.
12994 * df-scan.c: Same.
12995 * df.h (df_single_use): Same.
12996 * diagnostic-show-locus.c (layout::print_annotation_line): Same.
12997 (layout::annotation_line_showed_range_p): Same.
12998 (get_printed_columns): Same.
12999 (correction::ensure_terminated): Same.
13000 (line_corrections::~line_corrections): Same.
13001 * dojump.h: Same.
13002 * dse.c: Same.
13003 * dump-context.h: Same.
13004 * dumpfile.h: Same.
13005 * dwarf2out.c: Same.
13006 * edit-context.c: Same.
13007 * fibonacci_heap.c (test_union_of_equal_heaps): Same.
13008 * flags.h: Same.
13009 * function.c (assign_stack_local): Same.
13010 * function.h: Same.
13011 * gcc.c: Same.
13012 * gcov.c (block_info::block_info): Same.
13013 * genattrtab.c: Same.
13014 * genextract.c: Same.
13015 * genmatch.c (comparison_code_p): Same.
13016 (id_base::id_base): Same.
13017 (decision_tree::print): Same.
13018 * genoutput.c: Same.
13019 * genpreds.c (write_one_predicate_function): Same.
13020 * genrecog.c (validate_pattern): Same.
13021 (find_operand_positions): Same.
13022 (optimize_subroutine_group): Same.
13023 (merge_pattern_transition::merge_pattern_transition): Same.
13024 (merge_pattern_info::merge_pattern_info): Same.
13025 (merge_state_result::merge_state_result): Same.
13026 (merge_into_state): Same.
13027 * gensupport.c: Same.
13028 * gensupport.h: Same.
13029 * ggc-common.c (init_ggc_heuristics): Same.
13030 * ggc-tests.c (test_union): Same.
13031 * gimple-loop-interchange.cc (dump_induction): Same.
13032 * gimple-loop-versioning.cc: Same.
13033 * gimple-match.h (gimple_match_cond::any_else): Same.
13034 * gimple-ssa-backprop.c: Same.
13035 * gimple-ssa-sprintf.c: Same.
13036 * gimple-ssa-store-merging.c (store_operand_info::store_operand_info):
13037 Same.
13038 (store_immediate_info::store_immediate_info): Same.
13039 (merged_store_group::apply_stores): Same.
13040 (get_location_for_stmts): Same.
13041 * gimple-ssa-strength-reduction.c: Same.
13042 * gimple-ssa-warn-alloca.c: Same.
13043 * gimple-ssa-warn-restrict.c (pass_wrestrict::execute): Same.
13044 * godump.c (go_type_decl): Same.
13045 * hash-map-tests.c (test_map_of_strings_to_int): Same.
13046 * hash-map.h: Same.
13047 * hash-set-tests.c (test_set_of_strings): Same.
13048 * hsa-brig.c: Same.
13049 * hsa-common.h: Same.
13050 * hsa-gen.c (transformable_switch_to_sbr_p): Same.
13051 * input.c (assert_loceq): Same.
13052 * input.h: Same.
13053 * ipa-cp.c: Same.
13054 * ipa-devirt.c (possible_polymorphic_call_targets_1): Same.
13055 * ipa-fnsummary.h: Same.
13056 * ipa-inline.h: Same.
13057 * ipa-prop.h: Same.
13058 * ipa-split.c (visit_bb): Same.
13059 * ira-int.h (minmax_set_iter_next): Same.
13060 * loop-invariant.c: Same.
13061 * loop-iv.c: Same.
13062 * lra-eliminations.c: Same.
13063 * lra-int.h: Same.
13064 * lra-lives.c (mark_regno_dead): Same.
13065 * lra-remat.c: Same.
13066 * lra-spills.c: Same.
13067 * lto-streamer.h: Same.
13068 * mem-stats.h: Same.
13069 * omp-grid.c (omp_grid_lastprivate_predicate): Same.
13070 * omp-low.c (omp_clause_aligned_alignment): Same.
13071 * optabs-query.h (get_vcond_eq_icode): Same.
13072 * optabs.h: Same.
13073 * opts.c (wrap_help): Same.
13074 * poly-int.h: Same.
13075 * predict.c (predict_paths_leading_to_edge): Same.
13076 * pretty-print.h: Same.
13077 * profile-count.h: Same.
13078 * read-md.h: Same.
13079 * read-rtl-function.c: Same.
13080 * ree.c: Same.
13081 * reginfo.c: Same.
13082 * regrename.c: Same.
13083 * regrename.h: Same.
13084 * reload.h: Same.
13085 * rtl-iter.h: Same.
13086 * rtl.h (costs_add_n_insns): Same.
13087 * sanopt.c: Same.
13088 * sched-int.h: Same.
13089 * sel-sched-ir.h: Same.
13090 * selftest.h: Same.
13091 * sese.h (vec_find): Same.
13092 * stmt.c: Same.
13093 * target-globals.h: Same.
13094 * tree-affine.c (aff_combination_find_elt): Same.
13095 * tree-affine.h: Same.
13096 * tree-data-ref.h: Same.
13097 * tree-outof-ssa.c (ssa_is_replaceable_p): Same.
13098 * tree-predcom.c: Same.
13099 * tree-scalar-evolution.c (find_var_scev_info): Same.
13100 * tree-ssa-alias.h: Same.
13101 * tree-ssa-ccp.c: Same.
13102 * tree-ssa-coalesce.c (ssa_conflicts_dump): Same.
13103 * tree-ssa-loop-im.c (for_all_locs_in_loop): Same.
13104 (rewrite_mem_refs): Same.
13105 (execute_sm_if_changed): Same.
13106 (hoist_memory_references): Same.
13107 * tree-ssa-loop-ivopts.c (operator<=): Same.
13108 * tree-ssa-loop.h: Same.
13109 * tree-ssa-pre.c (get_or_alloc_expr_for_name): Same.
13110 * tree-ssa-structalias.c: Same.
13111 * tree-switch-conversion.h (cluster::cluster): Same.
13112 (simple_cluster::simple_cluster): Same.
13113 * tree-vect-patterns.c (type_conversion_p): Same.
13114 * tree-vectorizer.c (dump_stmt_cost): Same.
13115 * tree-vectorizer.h (loop_vec_info_for_loop): Same.
13116 * tree.c (protected_set_expr_location): Same.
13117 * tree.h (desired_pro_or_demotion_p): Same.
13118 (fndecl_built_in_p): Same.
13119 * unique-ptr-tests.cc: Same.
13120 * var-tracking.c (delete_variable_part): Same.
13121 * varasm.c (assemble_real): Same.
13122 (tree_output_constant_def): Same.
13123 * vec.c: Same.
13124 * wide-int-bitmask.h: Same.
13125 * wide-int.h (decompose): Same.
13126
13127 2019-07-09 Richard Biener <rguenther@suse.de>
13128
13129 PR tree-optimization/91114
13130 * tree-vect-data-refs.c (vect_analyze_data_refs): Failure to
13131 find a vector type isn't fatal.
13132
13133 2019-07-09 Sylvia Taylor <sylvia.taylor@arm.com>
13134
13135 * config/aarch64/aarch64-simd.md
13136 (aarch64_crypto_aes<aes_op>v16qi): Redefine pattern with xor.
13137 (aarch64_crypto_aes<aesmc_op>v16qi): Remove attribute enabled.
13138 (*aarch64_crypto_aes<aes_op>v16qi_xor_combine): Remove both.
13139 (*aarch64_crypto_aese_fused,
13140 *aarch64_crypto_aesd_fused): Update to new definition.
13141 * config/aarch64/aarch64.c
13142 (aarch_macro_fusion_pair_p): Remove aese/aesmc fusion check.
13143
13144 2019-07-09 Richard Biener <rguenther@suse.de>
13145
13146 * gimple-match.h (gimple_match_op::resimplify): New.
13147 (gimple_resimplify1, gimple_resimplify2, gimple_resimplify3,
13148 gimple_resimplify4, gimple_resimplify5): Remove.
13149 * gimple-match-head.c (gimple_resimplify1, gimple_resimplify2,
13150 gimple_resimplify3, gimple_resimplify4, gimple_resimplify5):
13151 Make static.
13152 (gimple_match_op::resimplify): New.
13153 * tree-ssa-sccvn.c (vn_nary_build_or_lookup_1): Valueize
13154 according to availability. Use gimple_match_op::resimplify.
13155
13156 2019-07-09 Eric Botcazou <ebotcazou@adacore.com>
13157
13158 * ira-emit.c (emit_moves): Skip DEBUG_INSNs when setting the location.
13159
13160 2019-07-09 Sylvia Taylor <sylvia.taylor@arm.com>
13161
13162 * config/arm/crypto.md:
13163 (crypto_<crypto_pattern>): Redefine aese/aesd pattern with xor.
13164 (crypto_<crypto_pattern>): Remove attribute enabled for aesmc.
13165 (crypto_<crypto_pattern>): Split CRYPTO_BINARY into 2 patterns.
13166 (*aarch32_crypto_aese_fused, *aarch32_crypto_aesd_fused): New.
13167 * config/arm/arm.c
13168 (aarch_macro_fusion_pair_p): Remove aes/aesmc fusion check.
13169 * config/arm/aarch-common-protos.h
13170 (aarch_crypto_can_dual_issue): Remove.
13171 * config/arm/aarch-common.c
13172 (aarch_crypto_can_dual_issue): Likewise.
13173 * config/arm/exynos-m1.md: Remove aese/aesmc fusion.
13174 * config/arm/cortex-a53.md: Likewise.
13175 * config/arm/cortex-a57.md: Likewise.
13176 * config/arm/iterators.md:
13177 (CRYPTO_BINARY): Redefine.
13178 (CRYPTO_UNARY): Removed.
13179 (CRYPTO_AES, CRYPTO_AESMC): New.
13180
13181 2019-07-09 Richard Biener <rguenther@suse.de>
13182
13183 * tree-ssa-sccvn.c (struct vn_walk_cb_data): Add orig_ref member.
13184 (vn_reference_lookup_3): If the main ref has no access path recorded
13185 but orig_ref has use it to do access-path based disambiguation.
13186 (vn_reference_lookup_pieces): Adjust.
13187 (vn_reference_lookup): Pass down original ref if we valueized.
13188
13189 2019-07-09 Martin Liska <mliska@suse.cz>
13190
13191 * doc/extend.texi: Document influence on loop
13192 optimizers.
13193
13194 2019-07-09 Martin Liska <mliska@suse.cz>
13195
13196 * lto-compress.c (lto_normalized_zstd_level): Do not use
13197 ZSTD_CLEVEL_DEFAULT as it is not default in old releases
13198 of libzstd. One can use 0 as a default compression level.
13199
13200 2019-07-09 Martin Liska <mliska@suse.cz>
13201
13202 * doc/invoke.texi: Add link from -fprofile-dir option.
13203 Use better wording for 'gcno filename'.
13204
13205 2019-07-08 Martin Sebor <msebor@redhat.com>
13206
13207 PR middle-end/71924
13208 PR middle-end/90549
13209 * gimple-ssa-isolate-paths.c (isolate_path): Add attribute. Update
13210 comment.
13211 (args_loc_t): New type.
13212 (args_loc_t, locmap_t): same.
13213 (diag_returned_locals): New function.
13214 (is_addr_local): Same.
13215 (handle_return_addr_local_phi_arg, warn_return_addr_local): Same.
13216 (find_implicit_erroneous_behavior): Call warn_return_addr_local_phi_arg.
13217 (find_explicit_erroneous_behavior): Call warn_return_addr_local.
13218
13219 2019-07-08 Jakub Jelinek <jakub@redhat.com>
13220
13221 * tree-vect-stmts.c (scan_operand_equal_p): Look through MEM_REF
13222 with SSA_NAME address of POINTER_PLUS_EXPR. Handle MULT_EXPR
13223 and casts in offset when different, both through gimple stmts
13224 and through trees. Rewritten using loops to minimize code duplication
13225 for each operand.
13226
13227 2019-07-08 Eric Botcazou <ebotcazou@adacore.com>
13228
13229 * emit-rtl.c (set_insn_locations): New function moved from...
13230 * function.c (set_insn_locations): ...here.
13231 * ira-emit.c (emit_moves): Propagate location of the first instruction
13232 to the inserted move instructions.
13233 * reg-stack.c (compensate_edge): Set the location if the sequence is
13234 inserted on the edge.
13235 * rtl.h (set_insn_locations): Declare.
13236
13237 2019-07-08 Segher Boessenkool <segher@kernel.crashing.org>
13238
13239 * config/rs6000/rs6000.c (rs6000_machine_from_flags): Ignore
13240 OPTION_MASK_PPC_GFXOPT and OPTION_MASK_PPC_GPOPT for selecting the
13241 .machine string.
13242
13243 2019-07-08 Segher Boessenkool <segher@kernel.crashing.org>
13244
13245 PR rtl-optimization/88233
13246 * common.opt (fsplit-wide-types-early): New option.
13247 * common/config/rs6000/rs6000-common.c
13248 (rs6000_option_optimization_table): Add OPT_fsplit_wide_types_early for
13249 OPT_LEVELS_ALL.
13250 * doc/invoke.texi (Optimization Options): Add -fsplit-wide-types-early.
13251 * lower-subreg.c (pass_lower_subreg2::gate): Add test for
13252 flag_split_wide_types_early.
13253 (pass_data_lower_subreg3): New.
13254 (pass_lower_subreg3): New.
13255 (make_pass_lower_subreg3): New.
13256 * passes.def (pass_lower_subreg2): Move after the loop passes.
13257 (pass_lower_subreg3): New, inserted where pass_lower_subreg2 was.
13258 * tree-pass.h (make_pass_lower_subreg2): Move up, to its new place in
13259 the pass pipeline; its previous place is taken by ...
13260 (make_pass_lower_subreg3): ... this.
13261
13262 2019-07-08 Robin Dapp <rdapp@linux.ibm.com>
13263
13264 * config/s390/s390.c (s390_shift_truncation_mask): Define.
13265 (TARGET_SHIFT_TRUNCATION_MASK): Define.
13266
13267 2019-07-08 Robin Dapp <rdapp@linux.ibm.com>
13268
13269 * config/s390/constraints.md: Add new jsc constraint.
13270 * config/s390/predicates.md: New predicates.
13271 * config/s390/s390-protos.h (s390_valid_shift_count): New function.
13272 * config/s390/s390.c (s390_valid_shift_count): New function.
13273 (print_shift_count_operand): Use s390_valid_shift_count.
13274 (print_operand): Likewise.
13275 * config/s390/s390.md: Use new predicate.
13276 * config/s390/subst.md: Remove addr_style_op and masked_op substs.
13277 * config/s390/vector.md: Use new predicate.
13278
13279 2019-07-08 Andrew Waterman <andrew@sifive.com>
13280 Jim Wilson <jimw@sifive.com>
13281
13282 * config/riscv/riscv.md (lshrsi3_zero_extend_3+1): Use operands[1]
13283 bitsize instead of BITS_PER_WORD.
13284
13285 2019-07-08 Martin Liska <mliska@suse.cz>
13286
13287 * collect2.c (defined): Revert to before r254460.
13288 (scan_prog_file): Revert to before r254460.
13289
13290 2019-07-08 Richard Biener <rguenther@suse.de>
13291
13292 PR tree-optimization/83518
13293 * tree-ssa-sccvn.c: Include splay-tree.h.
13294 (struct pd_range, struct pd_data): New.
13295 (struct vn_walk_cb_data): Add data to track partial definitions.
13296 (vn_walk_cb_data::~vn_walk_cb_data): New.
13297 (vn_walk_cb_data::push_partial_def): New.
13298 (pd_tree_alloc, pd_tree_dealloc, pd_range_compare): New.
13299 (vn_reference_lookup_2): When partial defs are registered give up.
13300 (vn_reference_lookup_3): Track partial defs for memset and
13301 constructor zeroing and for defs from constants.
13302
13303 2019-07-08 Richard Sandiford <richard.sandiford@arm.com>
13304
13305 * doc/install.texi (bootstrap-Og): Document.
13306
13307 2019-07-08 Richard Sandiford <richard.sandiford@arm.com>
13308
13309 * config/riscv/pic.md (*local_pic_load_s<mode>)
13310 (*local_pic_load_u<mode>): Explicitly specify the mode iterator
13311 referenced by <mode>, giving...
13312 (*local_pic_load_s<SUBX:mode>, *local_pic_load_u<SUBX:mode>): ...these.
13313 * config/riscv/riscv.md (*sge<u>_<X:mode><GPR:mode>)
13314 (*slt<u>_<X:mode><GPR:mode>, *sle<u>_<X:mode><GPR:mode>): Explicitly
13315 use <X:MODE> for the mode attribute.
13316
13317 2019-07-07 Jeff Law <law@redhat.com>
13318
13319 PR tree-optimization/91090
13320 * tree-ssa-dom.c (simplify_stmt_for_jump_threading): Fix logic error
13321 in handling of ranges to simplify switch statements.
13322
13323 2019-07-07 Iain Sandoe <iain@sandoe.co.uk>
13324
13325 * config/darwin.c (darwin_override_options): Make a final check on PIC
13326 options.
13327
13328 2019-07-07 Iain Sandoe <iain@sandoe.co.uk>
13329
13330 * config/darwin.c (darwin_override_options): Don't jam symbol stubs
13331 on for kernel code.
13332
13333 2019-07-07 Richard Sandiford <richard.sandiford@arm.com>
13334
13335 PR target/91068
13336 * config/mips/mips.md (*mul_acc_si, *mul_acc_si_r3900, *macc)
13337 (*msac, *msac_using_macc, *mul_sub_si): Use "l" for input operands
13338 instead of matching them to "l" output operands.
13339
13340 2019-07-07 Richard Sandiford <richard.sandiford@arm.com>
13341
13342 * config/mips/mips.c (mips_split_move): Zero-initialize addr
13343 and check whether addr.reg is nonnull before using it.
13344
13345 2019-07-06 Jakub Jelinek <jakub@redhat.com>
13346
13347 * omp-low.c (lower_rec_input_clauses): For lastprivate clauses in
13348 ctx->for_simd_scan_phase simd copy the outer var to the privatized
13349 variable(s). For conditional lastprivate look through outer
13350 GIMPLE_OMP_SCAN context.
13351 (lower_omp_1): For conditional lastprivate look through outer
13352 GIMPLE_OMP_SCAN context.
13353
13354 * omp-low.c (struct omp_context): Rename combined_into_simd_safelen0
13355 member to combined_into_simd_safelen1.
13356 (lower_rec_input_clauses, lower_omp_1): Adjust uses.
13357 (lower_lastprivate_clauses): Likewise. For conditional lastprivate
13358 clauses if ctx->combined_into_simd_safelen1 put statements after the
13359 predicate conditionalized block rather than into it.
13360
13361 2019-07-06 Richard Sandiford <richard.sandiford@arm.com>
13362
13363 * config/s390/s390.md (*negabs<FP:mode>2_nocc): Use FP for
13364 operand 1.
13365 * config/s390/vx-builtins.md (*vec_cmp<insn_cmp><mode>_cconly):
13366 Make the choice of <mode> explicit, giving...
13367 (*vec_cmp<insn_cmp><VF_HW:mode>_cconly): ...this.
13368
13369 2019-07-06 Richard Sandiford <richard.sandiford@arm.com>
13370
13371 * config/i386/i386.md (*fop_<X87MODEF:mode>_3_i387)
13372 (l<rounding_insn><MODEF:mode><SWI48:mode>2): Fix ambiguous uses
13373 of .md attributes.
13374 * config/i386/sse.md (*avx512pf_gatherpf<mode>sf_mask)
13375 (*avx512pf_gatherpf<mode>df_mask, *avx512pf_scatterpf<mode>sf_mask)
13376 (*avx512pf_scatterpf<mode>df_mask, *avx2_gathersi<mode>)
13377 (*avx2_gathersi<mode>_2, *avx2_gatherdi<mode>)
13378 (*avx2_gatherdi<mode>_2, *avx2_gatherdi<mode>_3): Likewise.
13379 (*avx2_gatherdi<mode>_4, *avx512f_gathersi<mode>): Likewise.
13380 (*avx512f_gathersi<mode>_2, *avx512f_gatherdi<mode>): Likewise.
13381 (*avx512f_gatherdi<mode>_2, *avx512f_scattersi<mode>): Likewise.
13382 (*avx512f_scatterdi<mode>): Likewise.
13383 (*andnot<mode>3_bcst): Fix VI/VI48_AVX512VL typo.
13384
13385 2019-07-06 Richard Sandiford <richard.sandiford@arm.com>
13386
13387 * config/h8300/h8300.md (*push1_h8300hs_<mode>): Explicitly
13388 specify the mode iterator referenced by <mode>, giving...
13389 (*push1_h8300hs_<QHI:mode>): ...this.
13390
13391 2019-07-06 Richard Sandiford <richard.sandiford@arm.com>
13392
13393 * config/gcn/gcn-valu.md
13394 (vcond<VEC_1REG_MODE:mode><VEC_1REG_ALT:mode>): Use
13395 gen_vec_cmp<VEC_1REG_ALT:mode>di rather than (implicitly)
13396 gen_vec_cmp<VEC_1REG_MODE:mode>di. Explicitly use
13397 gen_vcond_mask_<VEC_1REG_MODE:mode>di.
13398 (vcond<VEC_1REG_MODE:mode><VEC_1REG_ALT:mode>_exec): Likewise,
13399 but using the _exec comparison patterns.
13400 (vcondu<VEC_1REG_INT_MODE:mode><VEC_1REG_INT_ALT:mode>): Use
13401 gen_vec_cmp<VEC_1REG_INT_ALT:mode>di rather than (implicitly)
13402 gen_vec_cmp<VEC_1REG_INT_MODE:mode>di. Explicitly use
13403 gen_vcond_mask_<VEC_1REG_INT_MODE:mode>di.
13404 (vcondu<VEC_1REG_INT_MODE:mode><VEC_1REG_INT_ALT:mode>_exec): Likewise,
13405 but using the _exec comparison patterns.
13406
13407 2019-07-06 Richard Sandiford <richard.sandiford@arm.com>
13408
13409 * config/arm/sync.md
13410 (@atomic_compare_and_swap<CCSI:arch><NARROW:mode>_1): Use
13411 <NARROW:sync_predtab> instead of (implicitly) <CCSI:sync_predtab>.
13412 (@atomic_compare_and_swap<CCSI:arch><SIDI:mode>_1): Likewise use
13413 <SIDI:sync_predtab>. Use <SIDI:cas_cmp_operand> and
13414 <SIDI:cas_cmp_str>.
13415
13416 2019-07-06 Jakub Jelinek <jakub@redhat.com>
13417
13418 * omp-low.c (struct omp_context): Add for_simd_scan_phase member.
13419 (maybe_lookup_ctx): Add forward declaration.
13420 (omp_find_scan): Likewise. Walk into body of simd if composited
13421 with worksharing loop.
13422 (scan_omp_simd_scan): New function.
13423 (scan_omp_1_stmt): Call it.
13424 (lower_rec_simd_input_clauses): Don't create rvar nor rvar2 if
13425 ctx->for_simd_scan_phase.
13426 (lower_rec_input_clauses): Do much less work for inscan reductions
13427 in ctx->for_simd_scan_phase is_simd regions.
13428 (lower_omp_scan): Set is_simd also on simd constructs composited
13429 with worksharing loop, unless ctx->for_simd_scan_phase. Never emit
13430 a sorry message. Don't change GIMPLE_OMP_SCAN stmts into nops and
13431 emit their body after in simd constructs composited with worksharing
13432 loop.
13433 (lower_omp_for_scan): Handle worksharing loop composited with simd.
13434
13435 * omp-low.c (omp_find_scan): Make static.
13436 (lower_omp_for_scan): Fix order of merge arguments in input phase of
13437 the second loop, var2 represents the first partial sum and so needs
13438 to go before rprivb[ivar].
13439
13440 2019-07-05 Iain Sandoe <iain@sandoe.co.uk>
13441
13442 * config/rs6000/rs6000-logue.c: Remove unused code.
13443
13444 2019-07-05 Eric Botcazou <ebotcazou@adacore.com>
13445
13446 * tree-ssa-loop-manip.c (create_iv): Add missing guard for gsi_end_p.
13447
13448 2019-07-05 Sam Tebbs <sam.tebbs@arm.com>
13449
13450 PR target/90712
13451 * config/aarch64/aarch64.c (aarch64_post_cfi_startproc): Replace thunk
13452 check with a frame laid out check.
13453
13454 2019-07-05 Richard Biener <rguenther@suse.de>
13455
13456 * tree-ssa-sccvn.c (vn_reference_lookup_3): Valueize RHS
13457 when comparing against a store with possibly the same value.
13458
13459 2019-07-05 Richard Biener <rguenther@suse.de>
13460
13461 PR tree-optimization/91091
13462 * tree-ssa-alias.h (get_continuation_for_phi): Add tbaa_p parameter.
13463 (walk_non_aliased_vuses): Likewise.
13464 * tree-ssa-alias.c (maybe_skip_until): Pass down tbaa_p.
13465 (get_continuation_for_phi): New tbaa_p parameter and pass
13466 it down.
13467 (walk_non_aliased_vuses): Likewise.
13468 * ipa-prop.c (determine_known_aggregate_parts): Adjust.
13469 * tree-ssa-pre.c (translate_vuse_through_block): Likewise.
13470 * tree-ssa-scopedtables.c (avail_exprs_stack::lookup_avail_expr):
13471 Likewise.
13472 * tree-ssa-sccvn.c (struct vn_walk_cb_data): Add tbaa_p flag.
13473 (adjust_offsets_for_equal_base_address): New function.
13474 (vn_reference_lookup_3): Use it to catch more base equivalences.
13475 Handle and pass down tbaa_p flag.
13476 (vn_reference_lookup_pieces): Adjust.
13477 (vn_reference_lookup): Remove alias-set altering, instead pass
13478 down false as tbaa_p.
13479
13480 2019-07-05 Richard Biener <rguenther@suse.de>
13481
13482 PR tree-optimization/91091
13483 * tree-ssa-sccvn.c (vn_reference_lookup_3): Overlap of
13484 accesses can happen with -fno-strict-aliasing.
13485
13486 2019-07-05 Jan Hubicka <hubicka@ucw.cz>
13487
13488 * tree-ssa-alias.c (alias_stats): Add
13489 nonoverlapping_component_refs_since_match_p_must_overlap.
13490 (dump_alias_stats): Print it.
13491 (nonoverlapping_component_refs_since_match_p): Add early exit.
13492 (nonoverlapping_component_refs_p): Do not account early exit.
13493
13494 2019-07-05 Eric Botcazou <ebotcazou@adacore.com>
13495
13496 * except.c (emit_to_new_bb_before): Make sure to put a location on SEQ.
13497 * tree-eh.c (replace_goto_queue_1) <GIMPLE_GOTO>: Propagate location.
13498 (emit_eh_dispatch): Delete.
13499 (lower_catch): Emit the eh_dispatch manually and set the location of
13500 the first catch statement onto it.
13501 (lower_eh_filter): Emit the eh_dispatch manually and set location.
13502 (lower_eh_dispatch): Propagate location.
13503 * tree-outof-ssa.c (set_location_for_edge): Handle EH edges specially.
13504 (eliminate_build): Likewise.
13505
13506 2019-07-05 Eric Botcazou <ebotcazou@adacore.com>
13507
13508 * tree-cfg.c (gimple_make_forwarder_block): Propagate location info on
13509 phi nodes if possible.
13510 * tree-scalar-evolution.c (final_value_replacement_loop): Propagate
13511 location info on the newly created statement.
13512 * tree-ssa-loop-manip.c (create_iv): Propagate location info on the
13513 newly created increment if needed.
13514
13515 2019-07-04 Jakub Jelinek <jakub@redhat.com>
13516
13517 PR middle-end/78884
13518 * gimplify.c (struct gimplify_omp_ctx): Add add_safelen1 member.
13519 (gimplify_bind_expr): If seeing TREE_ADDRESSABLE VLA inside of simd
13520 loop body, set ctx->add_safelen1 instead of making it GOVD_PRIVATE.
13521 (gimplify_adjust_omp_clauses): Add safelen (1) clause if
13522 ctx->add_safelen1 is set.
13523
13524 * omp-expand.c (expand_omp_for_static_nochunk): Don't emit
13525 GOMP_loop_start at the start of second worksharing loop in a scan.
13526 For nowait, don't emit GOMP_loop_end_nowait at the end of first
13527 worksharing loop in a scan even if there are conditional lastprivates,
13528 and do emit GOMP_loop_end_nowait at the end of second worksharing loop.
13529
13530 2019-07-04 Jan Hubicka <jh@suse.cz>
13531
13532 * tree-ssa-alias.c (nonoverlapping_component_refs_since_match_p):
13533 Fix check for match in the ref walk.
13534
13535 2019-07-04 Martin Liska <mliska@suse.cz>
13536
13537 * tree-ssa-loop-niter.c
13538 (get_upper_bound_based_on_builtin_expr_with_prob): New function.
13539 (estimate_numbers_of_iterations):
13540 Support __builtin_expect_with_probability for analysis
13541 of # of loop iterations.
13542
13543 2019-07-04 Alexandre Oliva <oliva@adacore.com>
13544
13545 * doc/generic.texi (Cleanups): Document EH_ELSE_EXPR.
13546 * except.c: Likewise.
13547 * expr.c (expand_expr_real_1): Reject it.
13548 * gimplify.c (gimplify_expr): Gimplify it, within
13549 TRY_FINALLY_EXPR.
13550 * tree-dump.c (dequeue_and_dump): Dump it.
13551 * tree-pretty-print.c (dump_generic_node): Likewise.
13552 * tree.c (block_may_fallthru): Handle it.
13553 * tree.def (EH_ELSE_EXPR): Introduce it.
13554 * gimple-pretty-print.c (dump_gimple_try): Dump TRY_FINALLY
13555 with GIMPLE_EH_ELSE as try/finally/else.
13556
13557 2019-07-04 Richard Biener <rguenther@suse.de>
13558
13559 PR ipa/91062
13560 * tree-pass.h (execute_all_ipa_transforms): Add a flag
13561 parameter whether to disable GC collection.
13562 * passes.c (execute_one_ipa_transform_pass): Likewise, and
13563 honor it.
13564 (execute_all_ipa_transforms): Likewise and pass it down.
13565 * cgraph.c (cgraph_node::get_body): Do not invoke garbage
13566 collection from applying IPA transforms.
13567 * cgraphunit.c (cgraph_node::expand): Allow garbage collection
13568 from applying IPA transforms.
13569
13570 2019-07-04 Richard Biener <rguenther@suse.de>
13571
13572 PR tree-optimization/90911
13573 * tree-vectorizer.h (_loop_vec_info::scalar_loop_scaling): New field.
13574 (LOOP_VINFO_SCALAR_LOOP_SCALING): new.
13575 * tree-vect-loop.c (_loop_vec_info::_loop_vec_info): Initialize
13576 scalar_loop_scaling.
13577 (vect_transform_loop): Scale scalar loop profile if needed.
13578 * tree-vect-loop-manip.c (vect_loop_versioning): When re-using
13579 the loop copy from if-conversion adjust edge probabilities
13580 and scale the vectorized loop body profile, queue the scalar
13581 profile for updating after peeling.
13582
13583 2019-07-04 Jan Hubicka <jh@suse.cz>
13584
13585 * tree-ssa-alias.c (decl_refs_may_alias_p): Add size1 and size2
13586 parameters; return early for must-alias.
13587 (indirect_ref_may_alias_decl_p): Likewise; when establishing
13588 outer types match, try nonoverlapping_component_refs
13589 if must-alias is not obvious.
13590 (indirect_refs_may_alias_p): Likewise.
13591 (refs_may_alias_p_2): Likewise.
13592
13593 2019-07-04 Richard Biener <rguenther@suse.de>
13594
13595 * tree-ssa-sccvn.h (vn_reference_lookup): Add last_vuse_ptr
13596 argument.
13597 * tree-ssa-sccvn.c (last_vuse_ptr, vn_walk_kind): Move
13598 globals into...
13599 (struct vn_walk_cb_data): New callback data struct.
13600 (vn_reference_lookup_2): Adjust.
13601 (vn_reference_lookup_3): Likewise.
13602 (vn_reference_lookup_pieces): Likewise.
13603 (vn_reference_lookup): Likewise, get last_vuse_ptr argument.
13604 (visit_reference_op_load): Adjust.
13605
13606 2019-07-04 Jakub Jelinek <jakub@redhat.com>
13607
13608 PR tree-optimization/91063
13609 * tree-vect-stmts.c (vect_init_vector): Call gsi_remove to remove
13610 stmt from stmts sequence before calling vect_init_vector_1.
13611 Formatting fix.
13612
13613 2019-07-04 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
13614
13615 PR target/88833
13616 * fwprop.c (reg_single_def_p): New function.
13617 (propagate_rtx_1): Add unconditional else inside RTX_EXTRA case.
13618 (forward_propagate_into): New parameter reg_prop_only
13619 with default value false.
13620 Propagate def's src into loop only if SET_SRC and SET_DEST
13621 of def_set have single definitions.
13622 Likewise if reg_prop_only is set to true.
13623 (fwprop): New param fwprop_addr_p.
13624 Integrate fwprop_addr into fwprop.
13625 (fwprop_addr): Remove.
13626 (pass_rtl_fwprop_addr::execute): Call fwprop with arg set
13627 to true.
13628 (pass_rtl_fwprop::execute): Call fwprop with arg set to false.
13629 * simplify-rtx.c (simplify_subreg): Add case for vector comparison.
13630 * config/i386/sse.md (UNSPEC_BLENDV): Adjust pattern.
13631
13632 2019-07-04 Jakub Jelinek <jakub@redhat.com>
13633
13634 * omp-low.c (lower_omp_scan): Call lower_omp on stmt's body
13635 in worksharing loop scans.
13636
13637 PR tree-optimization/91074
13638 * omp-low.c (lower_omp_for_scan): Set DECL_GIMPLE_REG_P on cplx
13639 temporary.
13640
13641 PR rtl-optimization/90756
13642 * explow.c (promote_ssa_mode): Always use TYPE_MODE, don't bypass it
13643 for VECTOR_TYPE_P.
13644
13645 2019-07-03 Dennis Zhang <dennis.zhang@arm.com>
13646
13647 * config/aarch64/aarch64.md: Remove redundant constraints from
13648 define_expand but keep some patterns untouched if they are
13649 specially selected by TARGET_SECONDARY_RELOAD hook.
13650 * config/aarch64/aarch64-sve.md: Likewise.
13651 * config/aarch64/atomics.md: Remove redundant constraints from
13652 define_expand.
13653 * config/aarch64/aarch64-simd.md: Likewise.
13654
13655 2019-07-03 Iain Sandoe <iain@sandoe.co.uk>
13656
13657 * config/darwin.h (DRIVER_SELF_SPECS): Remove the linker cases.
13658 (RDYNAMIC): Rename to, DARWIN_RDYNAMIC.
13659 (DARWIN_PIE_SPEC, DARWIN_NOPIE_SPEC): Adjust to remove the Xlinker
13660 clauses.
13661 (LINK_COMMAND_SPEC_A): Add DARWIN_RDYNAMIC, DARWIN_PIE_SPEC and
13662 DARWIN_NOPIE_SPEC.
13663
13664 2019-07-03 Iain Sandoe <iain@sandoe.co.uk>
13665
13666 * config/darwin.h (REAL_LIBGCC_SPEC): Adjust for earlier Darwin.
13667 (STARTFILE_SPEC): Split crt3 into a separate spec.
13668 (DARWIN_EXTRA_SPECS): Add crt2 and crt3 spec.
13669 (DARWIN_CRT2_SPEC): New.
13670 (DARWIN_CRT3_SPEC): New.
13671 (MIN_LD64_OMIT_STUBS): Revise to 62.1.
13672 * config/rs6000/darwin.h (DARWIN_CRT2_SPEC): Revise conditions.
13673 (DARWIN_CRT3_SPEC): New.
13674
13675 2019-07-03 Michael Meissner <meissner@linux.ibm.com>
13676
13677 * config/rs6000/altivec.md (altivec_mov<mode>, VM2 iterator):
13678 Change the RTL attribute "length" from "4" to "*" to allow the
13679 length attribute to be adjusted automatically for prefixed load,
13680 store, and add immediate instructions.
13681 * config/rs6000/rs6000.md (extendhi<mode>2, EXTHI iterator):
13682 Likewise.
13683 (extendsi<mode>2, EXTSI iterator): Likewise.
13684 (movsi_internal1): Likewise.
13685 (movsi_from_sf): Likewise.
13686 (movdi_from_sf_zero_ext): Likewise.
13687 (mov<mode>_internal): Likewise.
13688 (movcc_internal1, QHI iterator): Likewise.
13689 (mov<mode>_softfloat, FMOVE32 iterator): Likewise.
13690 (movsf_from_si): Likewise.
13691 (mov<mode>_hardfloat32, FMOVE64 iterator): Likewise.
13692 (mov<mode>_softfloat64, FMOVE64 iterator): Likewise.
13693 (mov<mode>, FMOVE128 iterator): Likewise.
13694 (movdi_internal64): Likewise.
13695 * config/rs6000/vsx.md (vsx_le_permute_<mode>, VSX_TI iterator):
13696 Likewise.
13697 (vsx_le_undo_permute_<mode>, VSX_TI iterator): Likewise.
13698 (vsx_mov<mode>_64bit, VSX_M iterator): Likewise.
13699 (vsx_mov<mode>_32bit, VSX_M iterator): Likewise.
13700 (vsx_splat_v4sf): Likewise.
13701
13702 2019-07-03 Mark Wielaard <mark@klomp.org>
13703
13704 PR debug/90981
13705 * dwarf2out.c (add_top_level_skeleton_die_attrs): Only add
13706 DW_AT_addr_base if there is actually a .debug_addr section with
13707 addresses.
13708 (output_addr_table): Add DWARF5 table header generation here after
13709 checking there are actually any addresses from...
13710 (dwarf2out_finish): ...here.
13711
13712 2019-07-03 Richard Biener <rguenther@suse.de>
13713
13714 PR middle-end/91069
13715 * match.pd (vec_perm -> bit_insert): Fix element read from
13716 first vector.
13717
13718 2019-07-03 Martin Liska <mliska@suse.cz>
13719
13720 * dbgcnt.def (DEBUG_COUNTER): Add match debug counter.
13721 * genmatch.c (dt_simplify::gen_1): Generate dbgcnt
13722 condition.
13723 * generic-match-head.c: Include dbgcnt.h.
13724 * gimple-match-head.c: Likewise.
13725
13726 2019-07-03 Martin Liska <mliska@suse.cz>
13727
13728 * gcov-counter.def (GCOV_COUNTER_V_SINGLE): Remove.
13729 (GCOV_COUNTER_V_TOPN): New.
13730 (GCOV_COUNTER_V_INDIR): Use _topn.
13731 * gcov-io.h (GCOV_DISK_SINGLE_VALUES): Remove.
13732 (GCOV_TOPN_VALUES): New.
13733 (GCOV_SINGLE_VALUE_COUNTERS): Remove.
13734 (GCOV_TOPN_VALUES_COUNTERS): New.
13735 * profile.c (instrument_values): Use HIST_TYPE_TOPN_VALUES.
13736 * tree-profile.c:
13737 (gimple_init_gcov_profiler): Rename variables from one_value
13738 to topn_values.
13739 (gimple_gen_one_value_profiler): Remove.
13740 (gimple_gen_topn_values_profiler): New function.
13741 * value-prof.c (dump_histogram_value): Use TOPN_VALUES
13742 names instead of SINGLE_VALUE.
13743 (stream_out_histogram_value): Likewise.
13744 (stream_in_histogram_value): Likewise.
13745 (get_most_common_single_value): Likewise.
13746 (gimple_divmod_fixed_value_transform): Likewise.
13747 (gimple_stringops_transform): Likewise.
13748 (gimple_divmod_values_to_profile): Likewise.
13749 (gimple_stringops_values_to_profile): Likewise.
13750 (gimple_find_values_to_profile): Likewise.
13751 * value-prof.h (enum hist_type): Rename to TOPN.
13752 (gimple_gen_one_value_profiler): Remove.
13753 (gimple_gen_topn_values_profiler): New.
13754
13755 2019-07-03 Eric Botcazou <ebotcazou@adacore.com>
13756
13757 * dwarf2out.c (add_scalar_info): Add back refererence to existing DIE
13758 if it has the DW_AT_data_member_location attribute.
13759
13760 2019-07-03 Richard Biener <rguenther@suse.de>
13761
13762 * gimple-pretty-print.c (dump_ternary_rhs): Fix BIT_INSERT_EXPR
13763 dumping.
13764
13765 2019-07-03 Sylvia Taylor <sylvia.taylor@arm.com>
13766
13767 * config/aarch64/aarch64.md (FP_REGNUM): New constant.
13768 (tlsdesc_small_advsimd_<mode>): Add use of FP_REGNUM.
13769 (tlsdesc_small_sve_<mode>): Likewise.
13770
13771 2019-07-03 Martin Liska <mliska@suse.cz>
13772
13773 * Makefile.in: Define ZSTD_LIB.
13774 * common.opt: Adjust compression level
13775 to support also zstd levels.
13776 * config.in: Regenerate.
13777 * configure: Likewise.
13778 * configure.ac: Add --with-zstd and --with-zstd-include options
13779 and detect ZSTD.
13780 * doc/install.texi: Mention zstd dependency.
13781 * gcc.c: Print supported LTO compression algorithms.
13782 * lto-compress.c (lto_normalized_zstd_level): Likewise.
13783 (lto_compression_zstd): Likewise.
13784 (lto_uncompression_zstd): Likewise.
13785 (lto_end_compression): Dispatch in between zlib and zstd.
13786 (lto_compression_zlib): Mark with ATTRIBUTE_UNUSED.
13787 (lto_uncompression_zlib): Make it static.
13788 * lto-compress.h (lto_end_uncompression): Fix GNU coding style.
13789 * lto-section-in.c (lto_get_section_data): Pass info
13790 about used compression.
13791 * lto-streamer-out.c: By default use zstd when possible.
13792 * timevar.def (TV_IPA_LTO_DECOMPRESS): Rename to decompression
13793 (TV_IPA_LTO_COMPRESS): Likewise for compression.
13794
13795 2019-07-03 Martin Liska <mliska@suse.cz>
13796
13797 * lto-section-in.c (lto_get_section_data): Add "lto" section.
13798 * lto-section-out.c (lto_destroy_simple_output_block): Never
13799 compress LTO_section_lto section.
13800 * lto-streamer-out.c (produce_asm): Do not set major_version
13801 and minor_version.
13802 (lto_output_toplevel_asms): Likewise.
13803 (produce_lto_section): New function.
13804 (lto_output): Call produce_lto_section.
13805 (lto_write_mode_table): Do not set major_version and
13806 minor_version.
13807 (produce_asm_for_decls): Likewise.
13808 * lto-streamer.h (enum lto_section_type): Add LTO_section_lto
13809 type.
13810 (struct lto_header): Remove.
13811 (struct lto_section): New struct.
13812 (struct lto_simple_header): Do not inherit from lto_header.
13813 (struct lto_file_decl_data): Add lto_section_header field.
13814
13815 2019-07-03 Martin Liska <mliska@suse.cz>
13816
13817 * lra-eliminations.c (eliminate_regs_in_insn): Remove
13818 dead assignemts.
13819 * reg-stack.c (check_asm_stack_operands): Likewise.
13820 * tree-ssa-structalias.c (create_function_info_for): Likewise.
13821 * tree-vect-generic.c (expand_vector_operations_1): Likewise.
13822 * config/i386/i386-expand.c (ix86_expand_sse2_mulvxdi3): Use
13823 force_expand_binop.
13824
13825 2019-07-03 Martin Liska <mliska@suse.cz>
13826
13827 PR tree-optimization/90892
13828 * builtins.c (inline_expand_builtin_string_cmp): Handle '\0'
13829 in string constants.
13830
13831 2019-07-03 Martin Liska <mliska@suse.cz>
13832
13833 PR middle-end/90899
13834 * multiple_target.c (create_dispatcher_calls): Add to comdat
13835 group only if set for ifunc.
13836
13837 2019-07-03 Martin Liska <mliska@suse.cz>
13838
13839 PR target/88056
13840 * config/i386/host-mingw32.c (mingw32_gt_pch_use_address):
13841 Define local_object_name in outer scope in order to handle
13842 use-after-scope issue.
13843
13844 2019-07-03 Martin Liska <mliska@suse.cz>
13845
13846 * common.opt: Add fprofile-note.
13847 * coverage.c (coverage_init): Append the option
13848 to bbg_file_name.
13849 * doc/invoke.texi: Document -fprofile-note.
13850
13851 2019-07-03 Jakub Jelinek <jakub@redhat.com>
13852
13853 PR tree-optimization/91033
13854 * tree-vectorizer.h (vect_mark_stmts_to_be_vectorized,
13855 vect_analyze_data_refs): Add bool * arguments.
13856 * tree-vect-data-refs.c (vect_analyze_data_refs): Add fatal argument,
13857 if failure is due to scatter/gather, set *fatal to false if non-NULL.
13858 * tree-vect-stmts.c (vect_mark_stmts_to_be_vectorized): Likewise.
13859 * tree-vect-loop.c (vect_analyze_loop_2): Adjust
13860 vect_mark_stmts_to_be_vectorized and vect_analyze_data_refs callers.
13861 * tree-vect-slp.c (vect_slp_analyze_bb_1): Adjust
13862 vect_analyze_data_refs caller.
13863
13864 * tree-core.h (enum omp_clause_code): Add OMP_CLAUSE__SCANTEMP_
13865 clause.
13866 * tree.h (OMP_CLAUSE_DECL): Use OMP_CLAUSE__SCANTEMP_ instead of
13867 OMP_CLAUSE__CONDTEMP_ as range's upper bound.
13868 (OMP_CLAUSE__SCANTEMP__ALLOC, OMP_CLAUSE__SCANTEMP__CONTROL): Define.
13869 * tree.c (omp_clause_num_ops, omp_clause_code_name): Add
13870 OMP_CLAUSE__SCANTEMP_ entry.
13871 (walk_tree_1): Handle OMP_CLAUSE__SCANTEMP_.
13872 * tree-pretty-print.c (dump_omp_clause): Likewise.
13873 * tree-nested.c (convert_nonlocal_omp_clauses,
13874 convert_local_omp_clauses): Likewise.
13875 * omp-general.h (struct omp_for_data): Add have_scantemp and
13876 have_nonctrl_scantemp members.
13877 * omp-general.c (omp_extract_for_data): Initialize them.
13878 * omp-low.c (struct omp_context): Add scan_exclusive member.
13879 (scan_omp_1_stmt): Don't unnecessarily mask gimple_omp_for_kind
13880 result again with GF_OMP_FOR_KIND_MASK. Initialize also
13881 ctx->scan_exclusive.
13882 (lower_rec_simd_input_clauses): Use ctx->scan_exclusive instead
13883 of !ctx->scan_inclusive.
13884 (lower_rec_input_clauses): Simplify gimplification of dtors using
13885 gimplify_and_add. For non-is_simd test OMP_CLAUSE_REDUCTION_INSCAN
13886 rather than rvarp. Handle OMP_CLAUSE_REDUCTION_INSCAN in worksharing
13887 loops. Don't add barrier for reduction_omp_orig_ref if
13888 ctx->scan_??xclusive.
13889 (lower_reduction_clauses): Don't do anything for ctx->scan_??xclusive.
13890 (lower_omp_scan): Use ctx->scan_exclusive instead
13891 of !ctx->scan_inclusive. Handle worksharing loops with inscan
13892 reductions. Use new_vard != new_var instead of repeated
13893 omp_is_reference calls.
13894 (omp_find_scan, lower_omp_for_scan): New functions.
13895 (lower_omp_for): Call lower_omp_for_scan for worksharing loops with
13896 inscan reductions.
13897 * omp-expand.c (expand_omp_scantemp_alloc): New function.
13898 (expand_omp_for_static_nochunk): Handle fd->have_nonctrl_scantemp
13899 and fd->have_scantemp.
13900
13901 * gimplify.c (gimplify_scan_omp_clauses): For inscan reductions
13902 on worksharing loop propagate it as shared clause to containing
13903 combined parallel.
13904
13905 * omp-expand.c (expand_omp_for_static_nochunk,
13906 expand_omp_for_static_chunk): For nowait worksharing loop with
13907 conditional lastprivate clause(s), emit GOMP_loop_end_nowait call
13908 at the end.
13909
13910 2019-07-02 qing zhao <qing.zhao@oracle.com>
13911
13912 PR preprocessor/90581
13913 * doc/cppopts.texi: Add document for -fmax-include-depth.
13914 * doc/invoke.texi (Preprocessor Options): List -fmax-include-depth.
13915
13916 2019-07-02 Uroš Bizjak <ubizjak@gmail.com>
13917
13918 * config/i386/mmx.md (mmx_pack<s_trunsuffix>swb):
13919 Use TARGET_SSE2 && SSE_REGNO_P in split condition.
13920 (mmx_packssdw): Ditto.
13921 (mmx_punpckhbw): Ditto.
13922 (mmx_punpcklbw): Ditto.
13923 (mmx_punpckhwd): Ditto.
13924 (mmx_punpcklwd): Ditto.
13925 (mmx_punpckhdq): Ditto.
13926 (mmx_punpckldq): Ditto.
13927 (*vec_dupv4hi): Ditto.
13928 (*vec_dupv2si): Ditto.
13929 (mmx_pmovmskb): Ditto.
13930 * config/i386/sse.md (sse_cvtpi2ps): Use
13931 TARGET_SSE2 && SSE_REG_P in split condition.
13932 (ssse3_ph<plusminus_mnemonic>wv4hi3): Use
13933 TARGET_SSSE3 && SSE_REGNO_P in split condition.
13934 (ssse3_ph<plusminus_mnemonic>dv2si3): Ditto.
13935 (ssse3_pshufbv8qi3): Ditto.
13936 (ssse3_palignrdi): Ditto.
13937
13938 2019-07-02 Andrew Stubbs <ams@codesourcery.com>
13939
13940 * config/gcn/gcn.md (movdi_symbol_save_scc): Convert to define_insn
13941 with inlined save and restore.
13942
13943 2019-07-02 Eric Botcazou <ebotcazou@adacore.com>
13944
13945 * cfgexpand.c (pass_expand::execute): Deal specially with instructions
13946 to be inserted on single successor edge of the entry block. Then call
13947 commit_edge_insertions instead of inserting the instructions manually.
13948 * cfgrtl.c (commit_edge_insertions): Do not verify flow info during
13949 RTL expansion and rebuild jump labels chain.
13950
13951 2019-07-02 Richard Biener <rguenther@suse.de>
13952
13953 * tree-core.h (enum tree_index): Add TI_CHREC_DONT_KNOW and
13954 TI_CHREC_KNOWN.
13955 * tree.h (chrec_not_analyzed_yet, chrec_dont_know, chrec_known):
13956 Define here.
13957 * tree.c (build_common_tree_nodes): Initialize them.
13958 * tree-chrec.h (chrec_not_analyzed_yet, chrec_dont_know, chrec_known):
13959 Make declarations comments.
13960 * tree-scalar-evolution.c (chrec_not_analyzed_yet, chrec_dont_know,
13961 chrec_known): Remove definitions.
13962 (initialize_scalar_evolutions_analyzer): Remove.
13963 (scev_initialize): Do not call initialize_scalar_evolutions_analyzer.
13964 * tree-streamer.c (preload_common_nodes): Do not preload
13965 TI_CHREC_DONT_KNOW or TI_CHREC_KNOWN.
13966
13967 2019-07-02 Jan Hubicka <jh@suse.cz>
13968
13969 * tree-ssa-alias.c (aliasing_component_refs_p): Remove forgotten
13970 sanity check.
13971
13972 2019-07-02 Jan Hubicka <jh@suse.cz>
13973
13974 * tree-ssa-alias.c (nonoverlapping_component_refs_for_decl_p): Rename
13975 to ..
13976 (nonoverlapping_component_refs_since_match_p): ... this one;
13977 handle also non-decl bases; return -1 if search gave up.
13978 (alias_stats): Rename nonoverlapping_component_refs_of_decl_p_may_alias,
13979 nonoverlapping_component_refs_of_decl_p_no_alias to
13980 nonoverlapping_component_refs_since_match_p_may_alias,
13981 nonoverlapping_component_refs_since_match_p_no_alias.
13982 (dump_alias_stats): Update dumping.
13983 (aliasing_matching_component_refs_p): Break out from ...;
13984 dispatch to nonoverlapping_component_refs_for_decl_p
13985 and nonoverlapping_component_refs_since_match_p.
13986 (aliasing_component_refs_p): ... here; call
13987 nonoverlapping_component_refs_p in scenarios where we can not
13988 precisely determine base match.
13989 (decl_refs_may_alias_p): Use
13990 nonoverlapping_component_refs_since_match_p.
13991 (indirect_ref_may_alias_decl_p): Do not call
13992 nonoverlapping_component_refs_p.
13993 (indirect_refs_may_alias_p): Likewise.
13994
13995 2019-07-02 Jan Hubicka <jh@suse.cz>
13996
13997 * tree-inline.c (remap_gimple_stmt): Do not subtitute handled components
13998 to clobber of return value.
13999
14000 2019-07-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14001
14002 * config/arm/cortex-a57.md (cortex_a57_neon_type): Use neon_arith_basic
14003 for is_neon_type instructions that have not already been categorized.
14004
14005 2019-07-02 Richard Biener <rguenther@suse.de>
14006
14007 PR tree-optimization/58483
14008 * tree-ssa-scopedtables.c (avail_expr_hash): Use OEP_ADDRESS_OF
14009 for MEM_REF base hashing.
14010 (equal_mem_array_ref_p): Likewise for base comparison.
14011
14012 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14013
14014 * config/rs6000/rs6000.md (signbit<mode>2_dm): Make this a
14015 parameterized name.
14016 (signbit<mode>2): Use that name. Simplify.
14017
14018 2019-07-01 Joern Rennecke <joern.rennecke@riscy-ip.com>
14019
14020 PR middle-end/66726
14021 * tree-ssa-phiopt.c (factor_out_conditional_conversion):
14022 Tune heuristic from PR71016 to allow MIN / MAX.
14023
14024 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14025
14026 * config/rs6000/rs6000.md (ieee_128bit_vsx_abs<mode>2): Make this a
14027 parameterized name.
14028 (abs<mode>2): Use that name. Simplify.
14029
14030 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14031
14032 * config/rs6000/rs6000.md (ieee_128bit_vsx_neg<mode>2): Make this a
14033 parameterized name.
14034 (neg<mode>2): Use that name. Simplify.
14035
14036 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14037
14038 * config/rs6000/rs6000.md (abs<mode>2_hw): Make this a parameterized
14039 name.
14040 (abs<mode>2): Use that name. Simplify.
14041
14042 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14043
14044 * config/rs6000/rs6000.md (neg<mode>2_hw): Make this a parameterized
14045 name.
14046 (neg<mode>2): Use that name. Simplify.
14047
14048 2019-07-01 Uroš Bizjak <ubizjak@gmail.com>
14049
14050 * config/i386/i386.md ("isa" attribute): Add sse_noavx.
14051 ("enabled" attribute): Handle sse_noavx isa attribute.
14052 * config/i386/mmx.md (*vec_dupv2sf): Add "isa" attribute.
14053 Use TARGET_SSE && SSE_REGNO_P in split condition.
14054 (*vec_dupv2sf): Ditto.
14055
14056 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14057
14058 * config/rs6000/rs6000.md (extenddf<mode>2): Make this a parameterized
14059 name.
14060 (floatsi<mode>2): Use that name. Simplify.
14061
14062 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14063
14064 * config/rs6000/rs6000.md (extenddf<mode>2_fprs): Make this a
14065 parameterized name.
14066 (extenddf<mode>2_vsx): Make this a parameterized name.
14067 (extenddf<mode>2): Use those names. Simplify.
14068
14069 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14070
14071 * config/rs6000/rs6000.md (eh_set_lr_<mode>): Make this a parameterized
14072 name.
14073 (eh_return): Use that name. Simplify.
14074
14075 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14076
14077 * config/rs6000/rs6000.md (ctr<mode>): Make this a parameterized name.
14078 (doloop_end): Use that name. Simplify.
14079
14080 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14081
14082 * config/rs6000/rs6000.md (indirect_jump<mode>_nospec): Make this a
14083 parameterized name.
14084 (indirect_jump): Use that name. Simplify.
14085
14086 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14087
14088 * config/rs6000/rs6000.md (abs<mode>2_internal): Make this a
14089 parameterized name.
14090 (abs<mode>2): Use that name. Simplify.
14091
14092 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14093
14094 * config/rs6000/rs6000.md (fix_trunc<mode>si2_fprs): Make this a
14095 parameterized name.
14096 (fix_trunc<mode>si2): Use that name. Simplify.
14097
14098 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14099
14100 * config/rs6000/rs6000.md (neg<mode>2): Make this a parameterized name.
14101 (allocate_stack): Use that name. Simplify.
14102
14103 2019-07-01 Martin Sebor <msebor@redhat.com>
14104
14105 PR middle-end/90923
14106 * hash-map.h (hash_map::put): On insertion invoke element ctor.
14107 (hash_map::get_or_insert): Same. Reformat comment.
14108 * hash-set.h (hash_set::add): On insertion invoke element ctor.
14109 * hash-map-tests.c (test_map_of_type_with_ctor_and_dtor): New.
14110 * hash-set-tests.c (test_map_of_type_with_ctor_and_dtor): New.
14111 * hash-table.h (hash_table::operator=): Prevent copy assignment.
14112 (hash_table::hash_table (const hash_table&)): Use copy ctor
14113 instead of assignment to copy elements.
14114
14115 2019-07-01 Wilco Dijkstra <wdijkstr@arm.com>
14116 John David Anglin <danglin@gcc.gnu.org>
14117
14118 PR target/90963
14119 * config/pa/pa.md (builtin_longjmp): Restore hard_frame_pointer_rtx
14120 using saved frame pointer.
14121
14122 2019-07-01 Eric Botcazou <ebotcazou@adacore.com>
14123
14124 PR middle-end/64242
14125 * config/sparc/sparc.md (nonlocal_goto): Restore frame pointer last.
14126 Add frame clobber and schedule blockage.
14127
14128 2019-07-01 Sandra Loosemore <sandra@codesourcery.com>
14129
14130 * doc/invoke.texi (Link Options): Further editorial changes to
14131 -flinker-output docs.
14132
14133 2019-07-01 Segher Boessenkool <segher@kernel.crashing.org>
14134
14135 * config/rs6000/rs6000.c (rs6000_force_indexed_or_indirect_mem):
14136 Load both operands of a PLUS into registers separately.
14137
14138 2019-07-01 Andreas Krebbel <krebbel@linux.ibm.com>
14139
14140 * config/s390/vector.md: Fix shift count operand printing.
14141
14142 2019-07-01 Richard Sandiford <richard.sandiford@arm.com>
14143
14144 * ira-lives.c (process_bb_node_lives): Use ira_setup_alts.
14145
14146 2019-07-01 Richard Sandiford <richard.sandiford@arm.com>
14147
14148 * ira.c (ira_get_dup_out_num): Don't punt for earlyclobbers.
14149 Use recog_data to test for an output operand.
14150
14151 2019-07-01 Richard Sandiford <richard.sandiford@arm.com>
14152
14153 * ira.c (ira_setup_alts): If any valid alternatives have zero cost,
14154 exclude any others that are disparaged or that are bound to need
14155 a reload or spill.
14156 (ira_get_dup_out_num): Expand comment.
14157
14158 2019-07-01 Richard Sandiford <richard.sandiford@arm.com>
14159
14160 * ira.c (ira_setup_alts): Use preprocess_constraints to get the
14161 constraint string for each operand/alternative combo. Only handle
14162 '%' at the start of constraint strings, and look for it outside
14163 the main loop.
14164
14165 2019-07-01 Richard Sandiford <richard.sandiford@arm.com>
14166
14167 * ira-int.h (ira_setup_alts, ira_get_dup_out_num): Use
14168 alternative_mask instead of HARD_REG_SET to represent a
14169 bitmask of alternatives.
14170 * ira.c (ira_setup_alts, ira_get_dup_out_num): Likewise.
14171 * ira-conflicts.c (add_insn_allocno_copies): Likewise.
14172
14173 2019-07-01 Martin Liska <mliska@suse.cz>
14174
14175 * edit-context.c (test_applying_fixits_unreadable_file): Do not
14176 use () for a constructor call.
14177 (test_applying_fixits_line_out_of_range): Likewise.
14178 * ggc-page.c (alloc_page): Use (void *) for %p printf format
14179 argument.
14180 (free_page): Likewise.
14181
14182 2019-07-01 Vladislav Ivanishin <vlad@ispras.ru>
14183
14184 * gdbhooks.py (GdbPrettyPrinters.add_printer_for_types): Reorder
14185 parameter names to match usage (no functional change).
14186 (GdbPrettyPrinters.add_printer_for_regex): Ditto.
14187
14188 2019-07-01 Richard Biener <rguenther@suse.de>
14189
14190 * tree-ssa-sccvn.c (class pass_fre): Add may_iterate
14191 pass parameter.
14192 (pass_fre::execute): Honor it.
14193 * passes.def: Adjust pass_fre invocations to allow iterating,
14194 add non-iterating pass_fre before late threading/dom.
14195
14196 2019-07-01 Richard Biener <rguenther@suse.de>
14197
14198 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Adjust
14199 TARGET_MEM_REF handling to also handle address-taken ones.
14200
14201 2019-07-01 Hongtao Liu <hongtao.liu@intel.com>
14202
14203 * doc/sourcebuild.texi (Effective-Target Keywords, Other
14204 hardware attributes): Document avx512vp2intersect.
14205
14206 2019-06-30 Uroš Bizjak <ubizjak@gmail.com>
14207
14208 * config/i386/sse.md (ssse3_abs<mode>2): Rename from abs<mode>2.
14209 (abs<mode>2): New expander.
14210 * config/i386/i386-builtin.def (__builtin_ia32_pabsb):
14211 Use CODE_FOR_ssse3_absv8qi2.
14212 (__builtin_ia32_pabsw): Use CODE_FOR_ssse3_absv4hi2.
14213 (__builtin_ia32_pabsd): Use CODE_FOR_ssse3_absv2si2.
14214
14215 2019-06-30 Uroš Bizjak <ubizjak@gmail.com>
14216
14217 * config/i386/i386.md (mmx_isa): Rename x64, x64_noavx and x64_avx
14218 to sse, sse_noavx and avx. Update all uses.
14219
14220 2019-06-30 Uroš Bizjak <ubizjak@gmail.com>
14221
14222 * config/i386/mmx.md (sse_movntq): Add "isa" attribute.
14223 (*mmx_<plusminus_insn><mode>3): Ditto.
14224 (*mmx_mulv4hi3"): Ditto.
14225 (*mmx_smulv4hi3_highpart): Ditto.
14226 (*mmx_umulv4hi3_highpart): Ditto.
14227 (*mmx_pmaddwd): Ditto.
14228 (*sse2_umulv1siv1di3): Ditto.
14229 (*mmx_<code>v4hi3): Ditto.
14230 (*mmx_<code>v8qi3): Ditto.
14231 (mmx_ashr<mode>3): Ditto.
14232 ("mmx_<shift_insn><mode>3): Ditto.
14233 (*mmx_eq<mode>3): Ditto.
14234 (mmx_gt<mode>3): Ditto.
14235 (mmx_andnot<mode>3): Ditto.
14236 (*mmx_<code><mode>3): Ditto.
14237 (*mmx_pinsrw): Ditto.
14238 (*mmx_pextrw): Ditto.
14239 (mmx_pshufw_1): Ditto.
14240 (*mmx_uavgv8qi3): Ditto.
14241 (*mmx_uavgv4hi3): Ditto.
14242 ("mmx_psadbw): Ditto.
14243 * config/i386/sse.md (sse_cvtps2pi): Ditto.
14244 (sse_cvttps2pi): Ditto.
14245 (ssse3_pmaddubsw): Ditto.
14246 (*ssse3_pmulhrswv4hi3): Ditto.
14247 (ssse3_psign<mode>3): Ditto.
14248
14249 2019-06-29 Eric Botcazou <ebotcazou@adacore.com>
14250
14251 * expr.c (expand_expr_real_1) <BIT_FIELD_REF>: Apply the big-endian
14252 adjustment for bit-fields to all aggregate types.
14253
14254 2019-06-28 Michael Meissner <meissner@linux.ibm.com>
14255
14256 * config/rs6000/predicates.md (pcrel_address): Use
14257 SYMBOL_REF_LOCAL_P to determine if a label is local.
14258 (pcrel_external_address): New predicate.
14259 (non_prefixed_mem_operand): Delete, predicate not used.
14260 * config/rs6000/rs6000.h (SYMBOL_FLAG_PCREL_P): Delete, we now use
14261 SYMBOL_REF_LOCAL_P to determine if we can use pc-relative
14262 addressing.
14263 (SYMBOL_REF_PCREL_P): Likewise.
14264
14265 PR target/91009
14266 * config/rs6000/rs6000.md (floatsi<mode>2_lfiwax): Add non-VSX
14267 alternative.
14268 (floatsi<mode>2_lfiwax_mem): Add non-VSX alternative.
14269 (floatunssi<mode>2_lfiwzx): Add non-VSX alternative.
14270 (floatunssi<mode>2_lfiwzx_mem): Add non-VSX alternative.
14271
14272 2019-06-28 Iain Sandoe <iain@sandoe.co.uk>
14273
14274 * config.gcc (powerpc-*-darwin*, powerpc64-*-darwin*): Remove
14275 override on extra_headers.
14276
14277 2019-06-28 Iain Sandoe <iain@sandoe.co.uk>
14278
14279 * config/darwin-c.c (pop_field_alignment): Quote #pragma options.
14280 * config/darwin-driver.c (darwin_default_min_version): Remove newline
14281 from warning.
14282 (darwin_driver_init): Likewise.
14283
14284 2019-06-28 Jan Beulich <jbeulich@suse.com>
14285
14286 * config/i386/sse.md (vgf2p8affineinvqb_<mode><mask_name>,
14287 vgf2p8affineqb_<mode><mask_name>, vgf2p8mulb_<mode><mask_name>):
14288 Eliminate redundant alternative.
14289
14290 2019-06-28 Jan Beulich <jbeulich@suse.com>
14291
14292 * config/i386/sse.md (vgf2p8affineinvqb_<mode><mask_name>,
14293 vgf2p8affineqb_<mode><mask_name>): Drop % constraint modifier.
14294 Use vector_operand.
14295
14296 2019-06-28 Claudiu Zissulescu <claziss@synopsys.com>
14297
14298 * config/arc/arc.c (arc_rtx_costs): All short instructions are
14299 having a lower cost regardless of the speed option.
14300
14301 2019-06-28 Jan Beulich <jbeulich@suse.com>
14302
14303 * config/i386/sse.md (sse2_cvtpd2pi, sse2_cvttpd2pi): Use
14304 vector_operand plus, on both alternatives, "Bm" constraint.
14305
14306 2019-06-28 Dennis Zhang <dennis.zhang@arm.com>
14307
14308 * config/arm/arm.md: Remove redundant constraints from
14309 define_expand but leave reload_inm and reload_outm patterns
14310 untouched since they need special constraints to work.
14311 * config/arm/arm-fixed.md: Remove redundant constraints from
14312 define_expand.
14313 * config/arm/iwmmxt.md: Likewise.
14314 * config/arm/neon.md: Likewise.
14315 * config/arm/sync.md: Likewise.
14316 * config/arm/thumb1.md: Likewise.
14317 * config/arm/vec-common.md: Likewise.
14318
14319 2019-06-27 Ilia Diachkov <ilia.diachkov@optimitech.com>
14320
14321 * doc/install.texi: Document --disable-tm-clone-registry.
14322
14323 2019-06-27 Jakub Jelinek <jakub@redhat.com>
14324
14325 PR c++/91024
14326 * gimplify.c (collect_fallthrough_labels): Ignore GIMPLE_PREDICT
14327 statements.
14328
14329 PR tree-optimization/91010
14330 * tree-vect-stmts.c (scan_operand_equal_p): If offset1 == offset2,
14331 return true. Otherwise, don't call operand_equal_p if offset1 or
14332 offset2 is NULL and just return false.
14333
14334 2019-06-27 Iain Sandoe <iain@sandoe.co.uk>
14335
14336 * config/rs6000/rs6000.c (darwin_rs6000_override_options): Honour
14337 user-specified float mode choice for kernel mode code.
14338
14339 2019-06-27 Iain Sandoe <iain@sandoe.co.uk>
14340
14341 * config/rs6000/darwin.h (ENDFILE_SPEC): Correct whitespace in the
14342 spec.
14343
14344 2019-06-27 Iain Sandoe <iain@sandoe.co.uk>
14345
14346 * config/rs6000/rs6000.c (darwin_rs6000_override_options): Do not
14347 use longcall for 64b code.
14348
14349 2019-06-27 Aaron Sawdey <acsawdey@linux.ibm.com>
14350
14351 * builtins.c (get_memory_rtx): Fix comment.
14352 * optabs.def (movmem_optab): Change to cpymem_optab.
14353 * expr.c (emit_block_move_via_cpymem): Change movmem to cpymem.
14354 (emit_block_move_hints): Change movmem to cpymem.
14355 * defaults.h: Change movmem to cpymem.
14356 * targhooks.c (get_move_ratio): Change movmem to cpymem.
14357 (default_use_by_pieces_infrastructure_p): Ditto.
14358 * config/aarch64/aarch64-protos.h: Change movmem to cpymem.
14359 * config/aarch64/aarch64.c (aarch64_expand_movmem): Change movmem
14360 to cpymem.
14361 * config/aarch64/aarch64.h: Change movmem to cpymem.
14362 * config/aarch64/aarch64.md (movmemdi): Change name to cpymemdi.
14363 * config/alpha/alpha.h: Change movmem to cpymem in comment.
14364 * config/alpha/alpha.md (movmemqi, movmemdi, *movmemdi_1): Change
14365 movmem to cpymem.
14366 * config/arc/arc-protos.h: Change movmem to cpymem.
14367 * config/arc/arc.c (arc_expand_movmem): Change movmem to cpymem.
14368 * config/arc/arc.h: Change movmem to cpymem in comment.
14369 * config/arc/arc.md (movmemsi): Change movmem to cpymem.
14370 * config/arm/arm-protos.h: Change movmem to cpymem in names.
14371 * config/arm/arm.c (arm_movmemqi_unaligned, arm_gen_movmemqi,
14372 gen_movmem_ldrd_strd, thumb_expand_movmemqi) Change movmem to cpymem.
14373 * config/arm/arm.md (movmemqi): Change movmem to cpymem.
14374 * config/arm/thumb1.md (movmem12b, movmem8b): Change movmem to cpymem.
14375 * config/avr/avr-protos.h: Change movmem to cpymem.
14376 * config/avr/avr.c (avr_adjust_insn_length, avr_emit_movmemhi,
14377 avr_out_movmem): Change movmem to cpymem.
14378 * config/avr/avr.md (movmemhi, movmem_<mode>, movmemx_<mode>):
14379 Change movmem to cpymem.
14380 * config/bfin/bfin-protos.h: Change movmem to cpymem.
14381 * config/bfin/bfin.c (single_move_for_movmem, bfin_expand_movmem):
14382 Change movmem to cpymem.
14383 * config/bfin/bfin.h: Change movmem to cpymem in comment.
14384 * config/bfin/bfin.md (movmemsi): Change name to cpymemsi.
14385 * config/c6x/c6x-protos.h: Change movmem to cpymem.
14386 * config/c6x/c6x.c (c6x_expand_movmem): Change movmem to cpymem.
14387 * config/c6x/c6x.md (movmemsi): Change name to cpymemsi.
14388 * config/frv/frv.md (movmemsi): Change name to cpymemsi.
14389 * config/ft32/ft32.md (movmemsi): Change name to cpymemsi.
14390 * config/h8300/h8300.md (movmemsi): Change name to cpymemsi.
14391 * config/i386/i386-expand.c (expand_set_or_movmem_via_loop,
14392 expand_set_or_movmem_via_rep, expand_movmem_epilogue,
14393 expand_setmem_epilogue_via_loop, expand_set_or_cpymem_prologue,
14394 expand_small_cpymem_or_setmem,
14395 expand_set_or_cpymem_prologue_epilogue_by_misaligned_moves,
14396 expand_set_or_cpymem_constant_prologue,
14397 ix86_expand_set_or_cpymem): Change movmem to cpymem.
14398 * config/i386/i386-protos.h: Change movmem to cpymem.
14399 * config/i386/i386.h: Change movmem to cpymem in comment.
14400 * config/i386/i386.md (movmem<mode>): Change name to cpymem.
14401 (setmem<mode>): Change expansion function name.
14402 * config/lm32/lm32.md (movmemsi): Change name to cpymemsi.
14403 * config/m32c/blkmov.md (movmemhi, movmemhi_bhi_op, movmemhi_bpsi_op,
14404 movmemhi_whi_op, movmemhi_wpsi_op): Change movmem to cpymem.
14405 * config/m32c/m32c-protos.h: Change movmem to cpymem.
14406 * config/m32c/m32c.c (m32c_expand_movmemhi): Change movmem to cpymem.
14407 * config/m32r/m32r.c (m32r_expand_block_move): Change movmem to cpymem.
14408 * config/m32r/m32r.md (movmemsi, movmemsi_internal): Change movmem
14409 to cpymem.
14410 * config/mcore/mcore.md (movmemsi): Change name to cpymemsi.
14411 * config/microblaze/microblaze.c: Change movmem to cpymem in comment.
14412 * config/microblaze/microblaze.md (movmemsi): Change name to cpymemsi.
14413 * config/mips/mips.c (mips_use_by_pieces_infrastructure_p):
14414 Change movmem to cpymem.
14415 * config/mips/mips.h: Change movmem to cpymem.
14416 * config/mips/mips.md (movmemsi): Change name to cpymemsi.
14417 * config/nds32/nds32-memory-manipulation.c
14418 (nds32_expand_movmemsi_loop_unknown_size,
14419 nds32_expand_movmemsi_loop_known_size, nds32_expand_movmemsi_loop,
14420 nds32_expand_movmemsi_unroll,
14421 nds32_expand_movmemsi): Change movmem to cpymem.
14422 * config/nds32/nds32-multiple.md (movmemsi): Change name to cpymemsi.
14423 * config/nds32/nds32-protos.h: Change movmem to cpymem.
14424 * config/pa/pa.c (compute_movmem_length): Change movmem to cpymem.
14425 (pa_adjust_insn_length): Change call to compute_movmem_length.
14426 * config/pa/pa.md (movmemsi, movmemsi_prereload, movmemsi_postreload,
14427 movmemdi, movmemdi_prereload,
14428 movmemdi_postreload): Change movmem to cpymem.
14429 * config/pdp11/pdp11.md (movmemhi, movmemhi1,
14430 movmemhi_nocc, UNSPEC_MOVMEM): Change movmem to cpymem.
14431 * config/riscv/riscv.c: Change movmem to cpymem in comment.
14432 * config/riscv/riscv.h: Change movmem to cpymem.
14433 * config/riscv/riscv.md: (movmemsi) Change name to cpymemsi.
14434 * config/rs6000/rs6000.md: (movmemsi) Change name to cpymemsi.
14435 * config/rx/rx.md: (UNSPEC_MOVMEM, movmemsi, rx_movmem): Change
14436 movmem to cpymem.
14437 * config/s390/s390-protos.h: Change movmem to cpymem.
14438 * config/s390/s390.c (s390_expand_movmem, s390_expand_setmem,
14439 s390_expand_insv): Change movmem to cpymem.
14440 * config/s390/s390.md (movmem<mode>, movmem_short, *movmem_short,
14441 movmem_long, *movmem_long, *movmem_long_31z): Change movmem to cpymem.
14442 * config/sh/sh.md (movmemsi): Change name to cpymemsi.
14443 * config/sparc/sparc.h: Change movmem to cpymem in comment.
14444 * config/vax/vax-protos.h (vax_output_movmemsi): Remove prototype
14445 for nonexistent function.
14446 * config/vax/vax.h: Change movmem to cpymem in comment.
14447 * config/vax/vax.md (movmemhi, movmemhi1): Change movmem to cpymem.
14448 * config/visium/visium.h: Change movmem to cpymem in comment.
14449 * config/visium/visium.md (movmemsi): Change name to cpymemsi.
14450 * config/xtensa/xtensa.md (movmemsi): Change name to cpymemsi.
14451 * doc/md.texi: Change movmem to cpymem and update description to match.
14452 * doc/rtl.texi: Change movmem to cpymem.
14453 * target.def (use_by_pieces_infrastructure_p): Change movmem to cpymem.
14454 * doc/tm.texi: Regenerate.
14455
14456 2019-06-27 Bill Schmidt <wschmidt@linux.ibm.com>
14457
14458 * config/rs6000/rs6000.c (rs6000_option_override_internal): Enable
14459 -fvariable-expansion-in-unroller by default.
14460 * doc/invoke.texi (-fvariable-expansion-in-unroller): Document new
14461 default for Power.
14462
14463 2019-06-27 David Edelsohn <dje.gcc@gmail.com>
14464
14465 Revert
14466 2019-06-26 David Edelsohn <dje.gcc@gmail.com>
14467 * config.gcc (powerpc-ibm-aix*): Define target_gtfiles.
14468
14469 * config.gcc(rs6000-*-*): Define target_gtfiles.
14470
14471 2019-06-27 Jan Hubicka <jh@suse.cz>
14472
14473 * ipa-devirt.c (odr_type_d): Add tbaa_enabled flag.
14474 (add_type_duplicate): When odr hash is not allocated, to nothing.
14475 (odr_based_tbaa_p): New function.
14476 (set_type_canonical_for_odr_type): New function.
14477 * ipa-utils.h (enable_odr_based_tbaa, odr_based_tbaa_p,
14478 set_type_canonical_for_odr_type): New.
14479 * tree.c (gimple_canonical_types_compatible_p): ODR types with
14480 ODR based TBAA are not equivalent to non-ODR types.
14481
14482 2019-06-27 Martin Liska <mliska@suse.cz>
14483
14484 PR tree-optimization/90974
14485 PR rtl-optimization/90975
14486 PR rtl-optimization/90976
14487 PR target/91016
14488 PR tree-optimization/91017
14489 * config/i386/i386-expand.c (ix86_expand_rounddf_32): Remove
14490 unused tmp.
14491 * lra.c (lra_set_insn_recog_data): Remove a leftover from
14492 initial commit of IRA.
14493 * optabs.c (expand_twoval_binop): Use xop0 and xop1 instead
14494 of op0 and op1.
14495 * tree-vect-loop.c (vect_create_epilog_for_reduction):
14496 Remove unused mode1.
14497 * tree-vect-stmts.c (vectorizable_call): Remove dead assignment
14498 to new_stmt_info.
14499
14500 2019-06-27 Jakub Jelinek <jakub@redhat.com>
14501
14502 PR target/90991
14503 * config/i386/sse.md (avx_vec_concat<mode>): Use nonimmediate_operand
14504 instead of register_operand for operands[1], add m to its constraints
14505 if operands[2] uses "C" constraint. Ensure in condition that if
14506 operands[2] is not 0, then operands[1] is not a MEM. For last two
14507 alternatives, use unaligned loads instead of aligned if operands[1] is
14508 misaligned_operand.
14509
14510 2019-06-27 Martin Liska <mliska@suse.cz>
14511
14512 * asan.c (asan_emit_allocas_unpoison): Remove obviously
14513 dead assignments.
14514 * bt-load.c (move_btr_def): Likewise.
14515 * builtins.c (expand_builtin_apply_args_1): Likewise.
14516 (expand_builtin_apply): Likewise.
14517 * cfgexpand.c (expand_asm_stmt): Likewise.
14518 (construct_init_block): Likewise.
14519 * cfghooks.c (verify_flow_info): Likewise.
14520 * cfgloopmanip.c (remove_path): Likewise.
14521 * cfgrtl.c (rtl_verify_bb_layout): Likewise.
14522 * cgraph.c (cgraph_node::set_pure_flag): Likewise.
14523 * combine.c (simplify_if_then_else): Likewise.
14524 * config/i386/i386.c (ix86_setup_incoming_vararg_bounds): Likewise.
14525 (choose_basereg): Likewise.
14526 (ix86_expand_prologue): Likewise.
14527 (ix86_preferred_output_reload_class): Likewise.
14528 * cselib.c (cselib_record_sets): Likewise.
14529 * df-scan.c (df_scan_alloc): Likewise.
14530 * dojump.c (do_jump_by_parts_greater_rtx): Likewise.
14531 * early-remat.c (early_remat::record_equiv_candidates): Likewise.
14532 * emit-rtl.c (try_split): Likewise.
14533 * graphite-scop-detection.c (assign_parameter_index_in_region):
14534 Likewise.
14535 * ipa-cp.c (cgraph_edge_brings_all_agg_vals_for_node): Likewise.
14536 * ira-color.c (setup_profitable_hard_regs): Likewise.
14537 * ira.c (rtx_moveable_p): Likewise.
14538 * lra-eliminations.c (eliminate_regs_in_insn): Likewise.
14539 * read-rtl.c (read_subst_mapping): Likewise.
14540 * regrename.c (scan_rtx): Likewise.
14541 * reorg.c (fill_slots_from_thread): Likewise.
14542 * tree-inline.c (tree_function_versioning): Likewise.
14543 * tree-ssa-reassoc.c (optimize_ops_list): Likewise.
14544 * tree-ssa-sink.c (statement_sink_location): Likewise.
14545 * tree-ssa-threadedge.c (thread_across_edge): Likewise.
14546 * tree-vect-loop.c (vect_get_loop_niters): Likewise.
14547 (vect_create_epilog_for_reduction): Likewise.
14548 * tree.c (build_nonstandard_integer_type): Likewise.
14549
14550 2019-06-27 Richard Biener <rguenther@suse.de>
14551
14552 * tree-ssa-sccvn.c (vn_reference_lookup_3): Encode valueized RHS.
14553
14554 2019-06-27 Jun Ma <JunMa@linux.alibaba.com>
14555
14556 PR tree-optimization/89772
14557 * gimple-fold.c (gimple_fold_builtin_memchr): consider trailing nuls in
14558 out-of-bound accesses checking.
14559
14560 2019-06-27 Martin Liska <mliska@suse.cz>
14561
14562 PR tree-optimization/91014
14563 * tree-ssa-dse.c (initialize_ao_ref_for_dse): Bail out
14564 when LHS is NULL_TREE.
14565
14566 2019-06-27 Martin Liska <mliska@suse.cz>
14567
14568 * symbol-summary.h (traverse): Pass
14569 argument a to the call of callback.
14570 (gt_ggc_mx): Mark arguments as unused.
14571 (gt_pch_nx): Likewise.
14572
14573 2019-06-27 Kewen Lin <linkw@gcc.gnu.org>
14574
14575 PR target/62147
14576 * loop-iv.c (find_simple_exit): Call finite_loop_p to update
14577 finiteness.
14578
14579 2019-06-26 Jeff Law <law@redhat.com>
14580
14581 PR tree-optimization/90883
14582 * tree-ssa-dse.c (delete_dead_or_redundant_call): Fix signature.
14583 (delete_dead_or_redundant_assignment): Likewise.
14584
14585 PR tree-optimization/90883
14586 * tree-ssa-alias.c (stmt_kills_ref_p): Handle BUILT_IN_CALLOC.
14587 * tree-ssa-dse.c: Update various comments to distinguish between
14588 dead and redundant stores.
14589 (initialize_ao_ref_for_dse): Handle BUILT_IN_CALLOC.
14590 (dse_optimize_redundant_stores): New function.
14591 (delete_dead_or_redundant_call): Renamed from delete_dead_call.
14592 Distinguish between dead and redundant calls in dump output. All
14593 callers updated.
14594 (delete_dead_or_redundant_assignment): Similarly for assignments.
14595 (dse_optimize_stmt): Handle _CHK variants. For statements which
14596 store 0 into multiple memory locations, try to prove a subsequent
14597 store is redundant.
14598
14599 2019-06-26 Uroš Bizjak <ubizjak@gmail.com>
14600
14601 PR target/89021
14602 * config/i386/i386.c (ix86_autovectorize_vector_sizes):
14603 Autovectorize 8-byte vectors for TARGET_MMX_WITH_SSE.
14604
14605 2019-06-26 Iain Sandoe <iain@sandoe.co.uk>
14606
14607 * config/rs6000/rs6000-internal.h (branch_island): New typedef.
14608 (branch_islands): New extern.
14609 * config/rs6000/rs6000-logue.c (macho_branch_islands): Moved from
14610 * config/rs6000/rs6000.c: .. here.
14611
14612 2019-06-26 Iain Sandoe <iain@sandoe.co.uk>
14613
14614 * config.gcc (powerpc*-*-linux*): Move target_gtfiles from here..
14615 (powerpc*-*-*) ... to here.
14616
14617 2019-06-26 Jeff Law <law@redhat.com>
14618
14619 * tree-ssa-dse.c (initialize_ao_ref_for_dse): Handle _chk variants of
14620 memcpy, memmove and memset builtins.
14621 (maybe_trim_memstar_call): Likewise.
14622
14623 2019-06-26 David Edelsohn <dje.gcc@gmail.com>
14624
14625 * config/rs6000/rs6000-logue.c: Add #ifndef TARGET_PROFILE_KERNEL.
14626
14627 2019-06-26 David Edelsohn <dje.gcc@gmail.com>
14628
14629 * config.gcc (powerpc-ibm-aix*): Define target_gtfiles.
14630
14631 2019-06-26 Segher Boessenkool <segher@kernel.crashing.org>
14632
14633 * config/rs6000/rs6000-internal.h (rs6000_keep_leaf_when_profiled): New
14634 declaration.
14635 * config/rs6000/rs6000-logue.c (rs6000_keep_leaf_when_profiled): Remove
14636 "static".
14637 * config/rs6000/rs6000-logue.c (rs6000_keep_leaf_when_profiled): Delete
14638 declaration.
14639
14640 2019-06-26 Segher Boessenkool <segher@kernel.crashing.org>
14641
14642 * config/rs6000/rs6000.c: Fix previous commit, it missed some changes.
14643
14644 2019-06-26 Richard Biener <rguenther@suse.de>
14645
14646 PR ipa/90982
14647 * tree-inline.c (remap_ssa_name): Copy SSA range info.
14648
14649 2019-06-26 Richard Biener <rguenther@suse.de>
14650
14651 * lto-streamer.h (lto_bitmap_alloc): Remove.
14652 (lto_bitmap_free): Likewise.
14653 * lto-streamer.c (lto_bitmap_alloc): Remove.
14654 (lto_bitmap_free): Likewise.
14655 (lto_obstack): Likewise.
14656 (lto_obstack_initialized): Likewise.
14657 * lto-streamer-out.c (lto_output): Use own obstack for local
14658 bitmap, free it consistently.
14659
14660 2019-06-26 Jakub Jelinek <jakub@redhat.com>
14661
14662 PR target/90991
14663 * config/i386/sse.md
14664 (*<extract_type>_vinsert<shuffletype><extract_suf>_0): Use vmovupd,
14665 vmovups, vmovdqu, vmovdqu32 or vmovdqu64 instead of the aligned
14666 insns if operands[2] is misaligned_operand.
14667
14668 2019-06-26 Li Jia He <helijia@linux.ibm.com>
14669
14670 * config/rs6000/rs6000.h (TARGET_MADDLD): Remove the restriction of
14671 TARGET_POWERPC64.
14672 * config/rs6000/rs6000.md (maddld): Change maddld match_operand from DI
14673 to GPR.
14674
14675 2019-06-26 Segher Boessenkool <segher@kernel.crashing.org>
14676
14677 * doc/invoke.texi (Warning Options): Fix some @opindex syntax.
14678
14679 2019-06-26 Martin Liska <mliska@suse.cz>
14680
14681 PR tree-optimization/90973
14682 * tree-vect-loop.c (vect_get_known_peeling_cost): Use
14683 epilogue_cost_vec instead of prologue_cost_vec for
14684 a epilogue cost.
14685
14686 2019-06-26 Martin Liska <mliska@suse.cz>
14687
14688 * bb-reorder.c (connect_better_edge_p): Add missing else
14689 statement in the middle of if-else statements.
14690
14691 2019-06-25 Hongtao Liu <hongtao.liu@intel.com>
14692 H.J. Lu <hongjiu.lu@intel.com>
14693 Olga Makhotina <olga.makhotina@intel.com>
14694
14695 * common/config/i386/i386-common.c
14696 (OPTION_MASK_ISA_AVX512VP2INTERSECT_SET,
14697 OPTION_MASK_ISA_AVX512VP2INTERSECT_UNSET): New macros.
14698 (OPTION_MASK_ISA2_AVX512F_UNSET): Add
14699 OPTION_MASK_ISA_AVX512VP2INTERSECT_UNSET.
14700 (ix86_handle_option): Handle -mavx512vp2intersect.
14701 * config/i386/avx512vp2intersectintrin.h: New.
14702 * config/i386/avx512vp2intersectvlintrin.h: New.
14703 * config/i386/cpuid.h (bit_AVX512VP2INTERSECT): New.
14704 * config/i386/driver-i386.c (host_detect_local_cpu): Detect
14705 AVX512VP2INTERSECT.
14706 * config/i386/i386-builtin-types.def: Add new types.
14707 * config/i386/i386-builtin.def: Add new builtins.
14708 * config/i386/i386-builtins.c: (enum processor_features): Add
14709 F_AVX512VP2INTERSECT.
14710 (static const _isa_names_table isa_names_table): Ditto.
14711 * config/i386/i386-c.c (ix86_target_macros_internal): Define
14712 __AVX512VP2INTERSECT__.
14713 * config/i386/i386-expand.c (ix86_expand_builtin): Expand
14714 IX86_BUILTIN_2INTERSECTD512, IX86_BUILTIN_2INTERSECTQ512,
14715 IX86_BUILTIN_2INTERSECTD256, IX86_BUILTIN_2INTERSECTQ256,
14716 IX86_BUILTIN_2INTERSECTD128, IX86_BUILTIN_2INTERSECTQ128.
14717 * config/i386/i386-modes.def (P2QI, P2HI): New modes.
14718 * config/i386/i386-options.c (ix86_target_string): Add
14719 -mavx512vp2intersect.
14720 (ix86_option_override_internal): Handle AVX512VP2INTERSECT.
14721 * config/i386/i386.c (ix86_hard_regno_nregs): Allocate two regs for
14722 P2HImode and P2QImode.
14723 (ix86_hard_regno_mode_ok): Register pair only starts at even hardreg
14724 number for P2QImode and P2HImode.
14725 (ix86_regmode_natural_size): New function.
14726 * config/i386/i386.h (TARGET_AVX512VP2INTERSECT,
14727 TARGET_AVX512VP2INTERSECT_P, PTA_AVX512VP2INTERSECT
14728 REGMODE_NATURAL_SIZE, MASK_PAIR_REGNO_P): New.
14729 * config/i386/i386-protos.h (ix86_regmode_natural_size): Declare
14730 * config/i386/i386.opt: Add -mavx512vp2intersect.
14731 * config/i386/immintrin.h: Include avx512vp2intersectintrin.h and
14732 avx512vp2intersectvlintrin.h.
14733 * config/i386/sse.md (define_c_enum "unspec"): Add UNSPEC_VP2INTERSECT.
14734 (define_mode_iterator VI48_AVX512VP2VL): New.
14735 (avx512vp2intersect_2intersect<mode>,
14736 avx512vp2intersect_2intersectv16si): New define_insn patterns.
14737 * config.gcc: Add avx512vp2intersectvlintrin.h and
14738 avx512vp2intersectintrin.h to extra_headers.
14739 * doc/invoke.texi: Document -mavx512vp2intersect.
14740
14741 2019-06-25 Iain Sandoe <iain@sandoe.co.uk>
14742
14743 * config/rs6000/darwin.h (ENDFILE_SPEC): New.
14744
14745 2019-06-25 Bill Seurer <seurer@linux.vnet.ibm.com>
14746
14747 * config/rs6000/rs6000.c (stack_info, rs6000_pic_labelno,
14748 savres_routine_syms, savres_routine_name, morestack_ref,
14749 rs6000_init_machine_status, save_reg_p, first_reg_to_save,
14750 first_fp_reg_to_save, first_altivec_reg_to_save, compute_vrsave_mask,
14751 compute_save_world_info, is_altivec_return_reg, fixed_reg_p,
14752 rs6000_savres_strategy, rs6000_stack_info, debug_stack_info,
14753 rs6000_return_addr, rs6000_decl_ok_for_sibcall,
14754 rs6000_function_ok_for_sibcall, rs6000_ra_ever_killed,
14755 rs6000_emit_load_toc_table, rs6000_emit_eh_reg_restore, uses_TOC,
14756 create_TOC_reference, rs6000_aix_asm_output_dwarf_table_ref,
14757 rs6000_emit_stack_tie, rs6000_emit_allocate_stack_1,
14758 get_stack_clash_protection_probe_interval,
14759 get_stack_clash_protection_guard_size,
14760 rs6000_emit_probe_stack_range_stack_clash, rs6000_emit_allocate_stack,
14761 rs6000_emit_probe_stack_range, output_probe_stack_range_1,
14762 interesting_frame_related_regno, output_probe_stack_range_stack_clash,
14763 output_probe_stack_range, rs6000_frame_related, generate_set_vrsave,
14764 gen_frame_set, gen_frame_load, gen_frame_store, emit_frame_save,
14765 gen_frame_mem_offset, rs6000_savres_routine_name,
14766 rs6000_savres_routine_sym, rs6000_emit_stack_reset,
14767 ptr_regno_for_savres, rs6000_emit_savres_rtx,
14768 rs6000_emit_prologue_move_from_cr, split_stack_arg_pointer_used_p,
14769 rs6000_global_entry_point_prologue_needed_p,
14770 rs6000_get_separate_components, rs6000_components_for_bb,
14771 rs6000_disqualify_components, rs6000_emit_prologue_components,
14772 rs6000_emit_epilogue_components, rs6000_set_handled_components,
14773 emit_vrsave_prologue, emit_split_stack_prologue, rs6000_emit_prologue,
14774 rs6000_output_savres_externs, rs6000_output_function_prologue,
14775 rs6000_keep_leaf_when_profiled, load_cr_save, restore_saved_cr,
14776 load_lr_save, restore_saved_lr, add_crlr_cfa_restore,
14777 offset_below_red_zone_p, emit_cfa_restores, rs6000_emit_epilogue,
14778 rs6000_output_function_epilogue, gen_add3_const,
14779 rs6000_expand_split_stack_prologue, rs6000_live_on_entry,
14780 rs6000_split_stack_space_check, rs6000_save_toc_in_prologue_p): Moved
14781 to rs6000-logue.c.
14782 (machine_function): Moved to rs6000.h.
14783 (rs6000_stack_t, ALTIVEC_REG_BIT, quad_address_offset_p) Moved to
14784 rs6000-internal.h.
14785 * config/rs6000/rs6000-logue.c(stack_info, rs6000_pic_labelno,
14786 savres_routine_syms, savres_routine_name, morestack_ref,
14787 rs6000_init_machine_status, save_reg_p, first_reg_to_save,
14788 first_fp_reg_to_save, first_altivec_reg_to_save, compute_vrsave_mask,
14789 compute_save_world_info, is_altivec_return_reg, fixed_reg_p,
14790 rs6000_savres_strategy, rs6000_stack_info, debug_stack_info,
14791 rs6000_return_addr, rs6000_decl_ok_for_sibcall,
14792 rs6000_function_ok_for_sibcall, rs6000_ra_ever_killed,
14793 rs6000_emit_load_toc_table, rs6000_emit_eh_reg_restore, uses_TOC,
14794 create_TOC_reference, rs6000_aix_asm_output_dwarf_table_ref,
14795 rs6000_emit_stack_tie, rs6000_emit_allocate_stack_1,
14796 get_stack_clash_protection_probe_interval,
14797 get_stack_clash_protection_guard_size,
14798 rs6000_emit_probe_stack_range_stack_clash, rs6000_emit_allocate_stack,
14799 rs6000_emit_probe_stack_range, output_probe_stack_range_1,
14800 interesting_frame_related_regno, output_probe_stack_range_stack_clash,
14801 output_probe_stack_range, rs6000_frame_related, generate_set_vrsave,
14802 gen_frame_set, gen_frame_load, gen_frame_store, emit_frame_save,
14803 gen_frame_mem_offset, rs6000_savres_routine_name,
14804 rs6000_savres_routine_sym, rs6000_emit_stack_reset,
14805 ptr_regno_for_savres, rs6000_emit_savres_rtx,
14806 rs6000_emit_prologue_move_from_cr, split_stack_arg_pointer_used_p,
14807 rs6000_global_entry_point_prologue_needed_p,
14808 rs6000_get_separate_components, rs6000_components_for_bb,
14809 rs6000_disqualify_components, rs6000_emit_prologue_components,
14810 rs6000_emit_epilogue_components, rs6000_set_handled_components,
14811 emit_vrsave_prologue, emit_split_stack_prologue, rs6000_emit_prologue,
14812 rs6000_output_savres_externs, rs6000_output_function_prologue,
14813 rs6000_keep_leaf_when_profiled, load_cr_save, restore_saved_cr,
14814 load_lr_save, restore_saved_lr, add_crlr_cfa_restore,
14815 offset_below_red_zone_p, emit_cfa_restores, rs6000_emit_epilogue,
14816 rs6000_output_function_epilogue, gen_add3_const,
14817 rs6000_expand_split_stack_prologue, rs6000_live_on_entry,
14818 rs6000_split_stack_space_check, rs6000_save_toc_in_prologue_p): Moved
14819 to here from rs6000.c.
14820 * config/rs6000/rs6000.h (machine_function): Moved to here from rs6000.c.
14821 * config/rs6000/rs6000-internal.h: (rs6000_stack_t, ALTIVEC_REG_BIT,
14822 quad_address_offset_p) Moved to here from rs6000.c.
14823 * config/rs6000/t-rs6000: Add new source file rs6000-logue.c.
14824 * config/config.gcc: Add new source file rs6000-logue.c to garbage
14825 collector.
14826
14827 2019-06-25 Martin Liska <mliska@suse.cz>
14828
14829 * hash-table.c (hashtab_chk_error): Move here from ...
14830 * hash-table.h (hashtab_chk_error): ... here.
14831
14832 2019-06-25 Martin Liska <mliska@suse.cz>
14833
14834 PR tree-optimization/90978
14835 * df-scan.c (df_update_entry_block_defs): Remove dead else
14836 branch.
14837 (df_update_exit_block_uses): Likewise.
14838
14839 2019-06-25 Kwok Cheung Yeung <kcy@codesourcery.com>
14840 Andrew Stubbs <ams@codesourcery.com>
14841
14842 * config.gcc (thread_file): Set to gcn for AMD GCN.
14843 * config/gcn/gcn.c (gcn_emutls_var_init): New function.
14844 (TARGET_EMUTLS_VAR_INIT): New hook.
14845
14846 2019-06-25 Martin Jambor <mjambor@suse.cz>
14847
14848 PR ipa/90939
14849 * ipa-cp.c (ipcp_bits_lattice::meet_with): Remove assert.
14850
14851 2019-06-25 Richard Biener <rguenther@suse.de>
14852
14853 PR tree-optimization/90930
14854 * tree-ssa-reassoc.c (reassociate_bb): Only rewrite expression
14855 into parallel form in the last pass instance.
14856
14857 2019-06-25 Claudiu Zissulescu <claziss@synopsys.com>
14858
14859 * config/arc/arc.c (arc_symbol_binds_local_p): New function.
14860 (arc_legitimize_pic_address): Simplify and cleanup the function.
14861 (SYMBOLIC_CONST): Remove.
14862 (prepare_pic_move): Likewise.
14863 (prepare_move_operands): Handle complex mov cases here.
14864 (arc_legitimize_address_0): Remove call to
14865 arc_legitimize_pic_address.
14866 (arc_legitimize_address): Remove call to
14867 arc_legitimize_tls_address.
14868 * config/arc/arc.md (movqi_insn): Allow Cm3 match.
14869 (movhi_insn): Likewise.
14870
14871 2019-06-25 Jozef Lawrynowicz <jozef.l@mittosystems.com>
14872
14873 * config/msp430/msp430.h: Use __int20__ for SIZE_TYPE and
14874 PTRDIFF_TYPE.
14875 * gimple-ssa-sprintf.c (build_intmax_type_nodes): Accept "__intN__"
14876 format of "__intN" types for UINTMAX_TYPE.
14877 * stor-layout.c (initialize_sizetypes): Accept "__intN__"
14878 format of "__intN" types for SIZETYPE.
14879 * tree.c (build_common_tree_nodes): Accept "__intN__"
14880 format of "__intN" types for SIZE_TYPE and PTRDIFF_TYPE.
14881 * doc/invoke.texi: Document that __intN__ disables pedantic
14882 warnings.
14883
14884 2019-06-25 Jan Hubicka <jh@suse.cz>
14885
14886 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Check that
14887 base2_alias_set is non-zero before doing TBAA based disambiguation.
14888
14889 2019-06-25 Martin Liska <mliska@suse.cz>
14890
14891 PR tree-optimization/90973
14892 * tree-vect-loop.c (vect_get_known_peeling_cost): Sum retval
14893 of prologue and epilogue.
14894
14895 2019-06-24 Jan Hubicka <jh@suse.cz>
14896
14897 * ipa-utils.h (type_with_linkage_p): Verify that type is
14898 CXX_ODR_P.
14899 (odr_type_p): Remove extra return.
14900 * lto-streamer-out.c (hash_tree): Hash TYPE_CXX_ODR_P;
14901 hash STRING_FLAG only for arrays and integers.
14902 * tree-stremaer-in.c (unpack_ts_type_common_value_fields):
14903 Update analogously.
14904 * tree-streamer-out.c (pack_ts_type_common_value_fields):
14905 Likewise.
14906 * print-tree.c (print_node): Print cxx-odr-p
14907 and string-flag.
14908 * tree.c (need_assembler_name_p): Also check that type
14909 is CXX_ODR_TYPE_P
14910 (verify_type_variant): Update verification of SRING_FLAG;
14911 also check CXX_ODR_P.
14912 * tree.h (ARRAY_OR_INTEGER_TYPE_CHECK): New macro.
14913 (TYPE_STRING_FLAG): Use it.
14914 (TYPE_CXX_ODR_P): New macro.
14915 * dwarf2out.c (gen_array_type_die): First check that type
14916 is an array and then test string flag.
14917
14918 2019-06-24 Richard Biener <rguenther@suse.de>
14919
14920 PR tree-optimization/90972
14921 * tree-vect-stmts.c (vect_init_vector): Handle CONSTANT_CLASS_P
14922 in common code, dealing with STRING_CST properly.
14923
14924 2019-06-24 Richard Biener <rguenther@suse.de>
14925
14926 PR tree-optimization/90930
14927 PR tree-optimization/90316
14928 * tree-ssa-alias.c (walk_non_aliased_vuses): Add missing
14929 decrement of limit.
14930
14931 2019-06-24 Martin Sebor <msebor@redhat.com>
14932
14933 * tree-pretty-print.h: Remove unnecessary punctuation characters
14934 from a diagnostic.
14935 * tree-ssa.c (release_defs_bitset): Correct preprocessor conditional.
14936
14937 2019-06-24 Jonathan Wakely <jwakely@redhat.com>
14938
14939 * ginclude/float.h (FLT_DECIMAL_DIG, DBL_DECIMAL_DIG, LDBL_DECIMAL_DIG)
14940 (FLT_HAS_SUBNORM, DBL_HAS_SUBNORM, LDBL_HAS_SUBNORM, FLT_TRUE_MIN)
14941 (DBL_TRUE_MIN, LDBL_TRUE_MIN): Also define for C++17.
14942
14943 2019-06-23 Iain Sandoe <iain@sandoe.co.uk>
14944
14945 * config/rs6000/darwin.h: Handle GCC target pragma.
14946
14947 2019-06-23 Iain Sandoe <iain@sandoe.co.uk>
14948
14949 * config/rs6000/darwin.h: (__PPC__, __PPC64__): New.
14950
14951 2019-06-22 Jeff Law <law@redhat.com>
14952
14953 * config/avr/avr.c (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Remove.
14954
14955 2019-06-22 Jan Hubicka <jh@suse.cz>
14956
14957 * tree-ssa-alias.c (nonoverlapping_component_refs_p): Do not
14958 give up on bitfields; continue searching for different refs
14959 appearing later.
14960
14961 2019-06-21 Jakub Jelinek <jakub@redhat.com>
14962
14963 * tree-vect-data-refs.c (vect_find_stmt_data_reference): Handle
14964 even zero DR_OFFSET, but DR_BASE_ADDRESS of POINTER_PLUS_EXPR
14965 containing the offset as possible simd lane access. Look through
14966 widening conversion. Move the
14967 TREE_CODE (DR_INIT (newdr)) == INTEGER_CST test earlier and reindent.
14968
14969 2019-06-21 Richard Biener <rguenther@suse.de>
14970
14971 PR tree-optimization/90930
14972 * tree-ssa-reassoc.c (rewrite_expr_tree_parallel): Set visited
14973 flag on new stmts to avoid re-processing them.
14974
14975 2019-06-21 Matthew Beliveau <mbelivea@redhat.com>
14976
14977 PR c++/90875 - added -Wswitch-outside-range option
14978 * doc/invoke.texi (Wswitch-outside-range): Document.
14979
14980 2019-06-21 Jeff Law <law@redhat.com>
14981
14982 PR tree-optimization/90949
14983 * tree-ssa-copy.c (fini_copy_prop): Use reset_flow_sensitive_info.
14984 * tree-ssanames.c (reset_flow_sensitive_info): Reset non-null state.
14985
14986 2019-06-21 Richard Biener <rguenther@suse.de>
14987
14988 PR debug/90914
14989 * dwarf2out.c (prune_unused_types_walk): Always consider
14990 function-local extern declarations as used.
14991
14992 2019-06-21 Richard Biener <rguenther@suse.de>
14993
14994 PR tree-optimization/90913
14995 * tree-vect-loop-manip.c (vect_loop_versioning): Do not re-use
14996 the scalar variant of if-conversion versioning.
14997
14998 2019-06-21 Jakub Jelinek <jakub@redhat.com>
14999
15000 * omp-low.c (lower_rec_simd_input_clauses): Add rvar2 argument,
15001 create another "omp scan inscan exclusive" array if
15002 !ctx->scan_inclusive.
15003 (lower_rec_input_clauses): Handle exclusive scan inscan reductions.
15004 (lower_omp_scan): Likewise.
15005 * tree-vectorizer.h (struct _stmt_vec_info): Use 3-bit instead of
15006 2-bit bitfield for simd_lane_access_p member.
15007 * tree-vect-data-refs.c (vect_analyze_data_refs): Also handle
15008 aux == (void *)-4 as simd lane access.
15009 * tree-vect-stmts.c (check_scan_store): Handle exclusive scan. Update
15010 comment with permutations to show the canonical permutation order.
15011 (vectorizable_scan_store): Handle exclusive scan.
15012 (vectorizable_store): Call vectorizable_scan_store even for
15013 STMT_VINFO_SIMD_LANE_ACCESS_P > 3.
15014
15015 * tree-vect-data-refs.c (vect_find_stmt_data_reference): Handle
15016 "omp simd array" arrays with one byte elements.
15017
15018 2019-06-20 Uroš Bizjak <ubizjak@gmail.com>
15019
15020 * config/alpha/alpha.md (@unaligned_store<mode>):
15021 Rename from unaligned_store<mode>.
15022 (@reload_in<mode>_aligned): Rename from reload_in<mode>_aligned.
15023 * config/alpha/sync.md (@load_locked_<mode>): Rename
15024 from load_locked_<mode>.
15025 (@store_conditional_<mode>): Rename from store_conditional_<mode>.
15026 (@atomic_compare_and_swap<mode>_1): Rename
15027 from atomic_compare_and_swap<mode>_1.
15028 (@atomic_exchange<mode>_1): Rename from atomic_exchange<mode>_1.
15029 * config/alpha/alpha.c (alpha_expand_mov_nobwx):
15030 Use gen_reload_in_aligned and gen_unaligned_store.
15031 (emit_load_locked): Remove.
15032 (emit_store_conditional): Ditto.
15033 (alpha_split_atomic_op): Use gen_load_locked and gen_store_conditional.
15034 (alpha_split_compare_and_swap): Ditto.
15035 (alpha_expand_compare_and_swap_12): Use gen_atomic_compare_and_swap_1.
15036 (alpha_split_compare_and_swap_12): Use gen_load_locked
15037 and gen_store_conditional.
15038 (alpha_split_atomic_exchange): Ditto.
15039 (alpha_expand_atomic_exchange_12): Use gen_atomic_exchange_1.
15040 (alpha_split_atomic_exchange_12): Use gen_load_locked
15041 and gen_store_conditional.
15042
15043 2019-06-20 Richard Earnshaw <rearnsha@arm.com>
15044
15045 * config/aarch64/aarch64-errata.h: New file.
15046 * config/aarch64/aarch64-elf-raw.h (CA53_ERR_835769_SPEC): Delete.
15047 (CA53_ERR_843419_SPEC): Delete.
15048 (LINK_SPEC): Use AARCH64_ERRATA_LINK_SPEC instead of above.
15049 * config/aarch64/aarch64-linux.h: Likewise.
15050 * config/aarch64/aarch64-netbsd.h: Likewise.
15051 * config/aarch64/aarch64-freebsd.h: Likewise.
15052
15053 2019-06-20 Marek Polacek <polacek@redhat.com>
15054
15055 * config/sh/sh.c (sh2a_function_vector_p): Use get_attribute_name.
15056
15057 2019-06-20 Michael Meissner <meissner@linux.ibm.com>
15058
15059 * config/rs6000/rs6000.md (isa attribute): Add support for
15060 for a future processor.
15061
15062 2019-06-20 H.J. Lu <hongjiu.lu@intel.com>
15063
15064 PR target/54855
15065 * config/i386/i386-expand.c (ix86_expand_vector_set): Generate
15066 standard scalar operation pattern for V2DF.
15067 * config/i386/sse.md (*<sse>_vm<plusminus_insn><mode>3): New.
15068 (*<sse>_vm<multdiv_mnemonic><mode>3): Likewise.
15069 (*ieee_<ieee_maxmin><mode>3): Likewise.
15070 (vec_setv2df_0): Likewise.
15071
15072 2019-06-20 Jan Hubicka <jh@suse.cz>
15073
15074 * tree-ssa-alias.c (aliasing_component_refs_p): Remove ref2_is_decl
15075 parameter; it has no use in gimple memory model.
15076 (indirect_ref_may_alias_decl_p): Update.
15077
15078 2019-06-20 Martin Liska <mliska@suse.cz>
15079
15080 * params.def (PARAM_HASH_TABLE_VERIFICATION_LIMIT): Decrease
15081 to 10.
15082
15083 2019-06-20 Jakub Jelinek <jakub@redhat.com>
15084
15085 * tree-vect-stmts.c (enum scan_store_kind): New type.
15086 (scan_store_can_perm_p): Change last argument from int * to
15087 vec<enum scan_store_kind> *, record precisely which permutations
15088 need whole vector left shift or that plus VEC_COND_EXPR.
15089 (vectorizable_scan_store): Adjust caller, use whole vector left shift
15090 and additional VEC_COND_EXPR only for those iterations that need it.
15091
15092 2019-06-20 Alexandre Oliva <oliva@adacore.com>
15093
15094 * config.gcc: Fix ARM --with-fpu checking and error message.
15095
15096 2019-06-19 Marek Polacek <polacek@redhat.com>
15097
15098 PR c++/60364 - noreturn after first decl not diagnosed.
15099 * attribs.c (get_attribute_namespace): No longer static.
15100 (decl_attributes): Avoid shadowing. Preserve the C++11 form for C++11
15101 attributes.
15102 (attr_noreturn_exclusions): Make it extern.
15103 * attribs.h (get_attribute_namespace): Declare.
15104 * tree-inline.c (function_attribute_inlinable_p): Use
15105 get_attribute_name.
15106
15107 2019-06-19 Martin Sebor <msebor@redhat.com>
15108
15109 PR tree-optimization/90626
15110 * tree-ssa-strlen.c (strxcmp_unequal): Fix typos.
15111
15112 PR tree-optimization/90626
15113 * tree-ssa-strlen.c (strxcmp_unequal): New function.
15114 (handle_builtin_string_cmp): Call it.
15115
15116 2019-06-19 Iain Sandoe <iain@sandoe.co.uk>
15117
15118 * config/darwin.h (DRIVER_SELF_SPECS): Add RDYNAMIC, DARWIN_PIE_SPEC
15119 and DARWIN_NOPIE_SPEC.
15120 (RDYNAMIC): New, modified from DARWIN_EXPORT_DYNAMIC.
15121 (DARWIN_PIE_SPEC): Collate from darwin.h and darwin9.h.
15122 (DARWIN_NOPIE_SPEC): Collate from darwin10.h.
15123 (DARWIN_NOCOMPACT_UNWIND): New from darwin10.h
15124 (DARWIN_EXPORT_DYNAMIC): Delete.
15125 * config/darwin10.h (LINK_GCC_C_SEQUENCE_SPEC): Move no_compact_unwind
15126 and pie options processing to darwin.h.
15127 * config/darwin9.h (DARWIN_PIE_SPEC): Move pie processing to darwin.h
15128
15129 2019-06-19 Iain Sandoe <iain@sandoe.co.uk>
15130
15131 * config/darwin-driver.c (darwin_driver_init): Fix off-by-one errors
15132 in computing the number of options to be moved.
15133
15134 2019-06-19 Maya Rashish <coypu@sdf.org>
15135
15136 * config/arm/netbsd-elf.h (SYSARCH_ARM_SYNC_ICACHE): New definition.
15137 (CLEAR_INSN_CACHE) Use it.
15138
15139 2019-06-19 Uroš Bizjak <ubizjak@gmail.com>
15140
15141 * config/i386/i386.md (cmpstrnsi): Remove dead code.
15142
15143 2019-06-19 Wilco Dijkstra <wdijkstr@arm.com>
15144
15145 PR middle-end/84521
15146 * builtins.c (expand_builtin_setjmp_setup): Save
15147 hard_frame_pointer_rtx.
15148 (expand_builtin_setjmp_receiver): Do not emit sfp = fp move since we
15149 restore fp.
15150 * function.c (expand_function_start): Save hard_frame_pointer_rtx for
15151 non-local goto.
15152 * lra-eliminations.c (eliminate_regs_in_insn): Remove sfp = fp
15153 elimination code.
15154 (remove_reg_equal_offset_note): Remove unused function.
15155 * reload1.c (eliminate_regs_in_insn): Remove sfp = hfp elimination
15156 code.
15157 * config/arc/arc.c (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Remove.
15158 (arc_builtin_setjmp_frame_value): Remove function.
15159 * config/avr/avr.c (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Remove.
15160 (avr_builtin_setjmp_frame_value): Remove function.
15161 * config/i386/i386.c (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Remove.
15162 (ix86_builtin_setjmp_frame_value): Remove function.
15163 * config/pa/pa.md (nonlocal_goto): Remove FP adjustment.
15164 * config/sparc/sparc.c (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Remove.
15165 (sparc_builtin_setjmp_frame_value): Remove function.
15166 * config/vax/vax.c (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Remove.
15167 (vax_builtin_setjmp_frame_value): Remove function.
15168 * config/xtensa/xtensa.c (xtensa_frame_pointer_required): Force frame
15169 pointer if has_nonlocal_label.
15170
15171 2019-06-19 Jakub Jelinek <jakub@redhat.com>
15172
15173 * doc/md.texi: Document vec_shl_<mode> pattern.
15174 * optabs.def (vec_shl_optab): New optab.
15175 * optabs.c (shift_amt_for_vec_perm_mask): Add shift_optab
15176 argument, if == vec_shl_optab, check for left whole vector shift
15177 pattern rather than right shift.
15178 (expand_vec_perm_const): Add vec_shl_optab support.
15179 * optabs-query.c (can_vec_perm_var_p): Mention also vec_shl optab
15180 in the comment.
15181 * tree-vect-generic.c (lower_vec_perm): Support permutations which
15182 can be handled by vec_shl_optab.
15183 * tree-vect-stmts.c (scan_store_can_perm_p): New function.
15184 (check_scan_store): Use it.
15185 (vectorizable_scan_store): If target can't do normal permutations,
15186 try to use whole vector left shifts and if needed a VEC_COND_EXPR
15187 after it.
15188 * config/i386/sse.md (vec_shl_<mode>): New expander.
15189
15190 * omp-low.c (lower_rec_input_clauses): Handle references properly
15191 in inscan clauses.
15192 (lower_omp_scan): Likewise.
15193
15194 2019-06-19 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
15195
15196 * tree-ssa-address.c (preferred_mem_scale_factor): Handle when
15197 mem_mode is BLKmode.
15198
15199 2019-06-18 Max Filippov <jcmvbkbc@gmail.com>
15200
15201 PR target/90922
15202 * config/xtensa/xtensa.c (xtensa_expand_prologue): Add stack
15203 pointer adjustment for the case of no callee-saved registers and
15204 stack frame bigger than 128 bytes.
15205
15206 2019-06-18 Thomas Schwinge <thomas@codesourcery.com>
15207
15208 PR middle-end/90862
15209 * omp-low.c (check_omp_nesting_restrictions): Handle
15210 GF_OMP_TARGET_KIND_OACC_DECLARE.
15211
15212 2019-06-18 Uroš Bizjak <ubizjak@gmail.com>
15213
15214 * config/i386/i386.md (@cmp<mode>_1): Rename from cmp<mode>_1.
15215 (@add<mode>3_carry): Rename from add<mode>3_carry.
15216 (@sub<mode>3_carry_ccc): Rename from sub<mode>3_carry_ccc.
15217 (@sub<mode>3_carry_ccgz): Rename form sub<mode>3_carry_ccgz.
15218 (@copysign<mode>3_const): Rename from copysign<mode>3_const.
15219 (@copysign<mode>3_var): Rename from copysign<mode>3_var.
15220 (@xorsign<mode>3_1): Rename from xorsign<mode>3_1.
15221 (@x86_shift<mode>_adj_1): Rename from x86_shift<mode>_adj_1.
15222 (@x86_shift<mode>_adj_2): Rename from x86_shift<mode>_adj_2.
15223 (@x86_shift<mode>_adj_3): Rename from x86_shift<mode>_adj_3.
15224 (cmpstrnsi): Use gen_cmp_1.
15225 (lwp_slwpcb): Use gen_lwp_slwpcb_1.
15226 (@lwp_slwpcb<mode>_1): Rename from lwp_slwpcb<mode>_1.
15227 (@umonitor_<mode>): Rename from umonitor_<mode>.
15228 * config/i386/i386-expand.c (ix86_expand_copysign):
15229 Use gen_copysign3_const and gen_copysign3_var.
15230 (ix86_expand_xorsign): Use gen_xorsign3_1.
15231 (ix86_expand_branch): Use gen_sub3_carry_ccc,
15232 gen_sub3_carry_ccgz and gen_cmp1.
15233 (ix86_expand_int_addcc): Use gen_sub3_carry and gen_add3_carry.
15234 (ix86_split_ashl): Use gen_x86_shift_adj_1 and gen_x86_shift_adj_2.
15235 (ix86_split_ashr): Use gen_x86_shift_adj_1 and gen_x86_shift_adj_3.
15236 (ix86_split_lshr): Ditto.
15237 (ix86_expand_builtin) <case IX86_BUILTIN_UMONITOR>: Use gen_umonitor.
15238
15239 2019-06-18 Jason Merrill <jason@redhat.com>
15240
15241 * tree.c (build_constructor): Add MEM_STAT_DECL.
15242
15243 2019-06-18 Richard Sandiford <richard.sandiford@arm.com>
15244
15245 * config/aarch64/aarch64-modes.def (CC_NZC): New CC_MODE.
15246 * config/aarch64/aarch64-sve.md (*<optab><mode>3_cc)
15247 (ptest_ptrue<mode>, while_ult<GPI:mode><PRED_ALL:mode>)
15248 (*while_ult<GPI:mode><PRED_ALL:mode>_cc, *cmp<cmp_op><mode>)
15249 (*cmp<cmp_op><mode>_ptest, *cmp<cmp_op><mode>_cc)
15250 (*pred_cmp<cmp_op><mode>_combine, *pred_cmp<cmp_op><mode>)
15251 (vec_cmp<mode><vpred>, vec_cmpu<mode><vpred>, cbranch<mode>4):
15252 Use CC_NZC instead of CC.
15253 * config/aarch64/aarch64.md (condjump): Print a '.' in SVE conditions.
15254 * config/aarch64/aarch64.c (aarch64_sve_condition_codes): New variable.
15255 (aarch64_print_operand): Handle E_CC_NZCmode.
15256 (aarch64_emit_sve_ptrue_op_cc): Use gen_set_clobber_cc_nzc instead
15257 of gen_set_clobber_cc.
15258
15259 2019-06-18 Richard Sandiford <richard.sandiford@arm.com>
15260
15261 * config/aarch64/aarch64-sve.md: Tabify file.
15262
15263 2019-06-18 Richard Sandiford <richard.sandiford@arm.com>
15264
15265 * config/aarch64/aarch64-protos.h (aarch64_pfalse_reg): Declare.
15266 * config/aarch64/aarch64.c (aarch64_pfalse_reg): New function.
15267 * config/aarch64/aarch64-sve.md: Use it.
15268
15269 2019-06-18 Richard Sandiford <richard.sandiford@arm.com>
15270
15271 * config/aarch64/aarch64-protos.h (aarch64_ptrue_reg): Declare.
15272 * config/aarch64/aarch64.c (aarch64_ptrue_reg): New functions.
15273 (aarch64_expand_sve_widened_duplicate, aarch64_expand_sve_mem_move)
15274 (aarch64_maybe_expand_sve_subreg_move, aarch64_evpc_rev_local)
15275 (aarch64_expand_sve_vec_cmp_int): Use it.
15276 (aarch64_expand_sve_vec_cmp_float): Likewise.
15277 * config/aarch64/aarch64-sve.md: Likewise throughout.
15278
15279 2019-06-18 Richard Sandiford <richard.sandiford@arm.com>
15280 Kugan Vivekanandarajah <kuganv@linaro.org>
15281
15282 * config/aarch64/aarch64-sve.md (*cond_<optab><mode>_0): Delete.
15283 (*cond_<optab><mode>_z): Fold into...
15284 (*cond_<optab><mode>_any): ...here. Also handle cases in which
15285 operand 4 can be tied to operand 0 (either inherently or via RA).
15286
15287 2019-06-18 Richard Biener <rguenther@suse.de>
15288
15289 PR debug/90900
15290 * cfgexpand.c (expand_debug_expr): Treat NOTE_P DECL_RTL
15291 as if optimized away.
15292
15293 2019-06-18 Tom de Vries <tdevries@suse.de>
15294
15295 * config/nvptx/nvptx-protos.h (gen_set_softstack_insn): Remove.
15296 * config/nvptx/nvptx.c (gen_set_softstack_insn): Remove.
15297 * config/nvptx/nvptx.md (define_insn "set_softstack_<mode>"):
15298 Rename to ...
15299 (define_insn "@set_softstack_<mode>"): ... this.
15300 (define_insn "omp_simt_enter_<mode>"): Rename to ...
15301 (define_insn "@omp_simt_enter_<mode>"): ... this.
15302 (define_insn "omp_simt_exit_<mode>"): Rename to ...
15303 (define_insn "@omp_simt_exit_<mode>"): ... this.
15304
15305 2019-06-18 Richard Sandiford <richard.sandiford@arm.com>
15306
15307 * tree-vect-loop-manip.c (vect_set_loop_masks_directly): Remove
15308 vf parameter. Restore the previous iv step of nscalars_step,
15309 but give it iv_type rather than compare_type. Tweak code order
15310 to match the comments.
15311 (vect_set_loop_condition_masked): Update accordingly.
15312 * tree-vect-loop.c (vect_verify_full_masking): Use "unsigned int"
15313 for iv_precision. Tweak comment formatting.
15314
15315 2019-06-18 Iain Sandoe <iain@sandoe.co.uk>
15316
15317 * config/darwin.c: Strip trailing whitespace.
15318
15319 2019-06-18 Iain Sandoe <iain@sandoe.co.uk>
15320
15321 * config/darwin.c (darwin_emit_unwind_label): New default to false.
15322 (darwin_override_options): Set darwin_emit_unwind_label as needed.
15323
15324 2019-06-18 Martin Jambor <mjambor@suse.cz>
15325
15326 PR ipa/90889
15327 * ipa-cp.c (ignore_edge_p): Do not ignore edges when only the
15328 caller does not have flag_ipa_cp set.
15329
15330 2019-06-18 Alejandro Martinez <alejandro.martinezvicente@arm.com>
15331
15332 * config/aarch64/aarch64-sve.md (mask_fold_left_plus_<mode>): Renamed
15333 from "*fold_left_plus_<mode>", updated operands order.
15334 * doc/md.texi (mask_fold_left_plus_@var{m}): Documented new optab.
15335 * internal-fn.c (mask_fold_left_direct): New define.
15336 (expand_mask_fold_left_optab_fn): Likewise.
15337 (direct_mask_fold_left_optab_supported_p): Likewise.
15338 * internal-fn.def (MASK_FOLD_LEFT_PLUS): New internal function.
15339 * optabs.def (mask_fold_left_plus_optab): New optab.
15340 * tree-vect-loop.c (mask_fold_left_plus_optab): New function to get a
15341 masked internal_fn for a reduction ifn.
15342 (vectorize_fold_left_reduction): Add support for masking reductions.
15343
15344 2019-06-18 Kewen Lin <linkw@gcc.gnu.org>
15345
15346 PR middle-end/80791
15347 * target.def (predict_doloop_p): New hook.
15348 * targhooks.h (default_predict_doloop_p): New declaration.
15349 * targhooks.c (default_predict_doloop_p): New function.
15350 * doc/tm.texi.in (TARGET_PREDICT_DOLOOP_P): New hook.
15351 * doc/tm.texi: Regenerate.
15352 * config/rs6000/rs6000.c (rs6000_predict_doloop_p): New function.
15353 (TARGET_PREDICT_DOLOOP_P): New macro.
15354 * tree-ssa-loop-ivopts.c (generic_predict_doloop_p): New function.
15355
15356 2019-06-17 Jakub Jelinek <jakub@redhat.com>
15357
15358 * omp-low.c (struct omp_context): Add scan_inclusive field.
15359 (scan_omp_1_stmt) <case GIMPLE_OMP_SCAN>: Set ctx->scan_inclusive
15360 if inclusive scan.
15361 (struct omplow_simd_context): Add lastlane member.
15362 (lower_rec_simd_input_clauses): Add rvar argument, handle inscan
15363 reductions. Build 2 or 3 argument .GOMP_SIMD_LANE calls rather than
15364 1 or 2 argument.
15365 (lower_rec_input_clauses): Handle inscan reductions in simd contexts.
15366 (lower_lastprivate_clauses): Set TREE_THIS_NOTRAP on the ARRAY_REF.
15367 (lower_omp_scan): New function.
15368 (lower_omp_1) <case GIMPLE_OMP_SCAN>: Use lower_omp_scan.
15369 * tree-ssa-dce.c (eliminate_unnecessary_stmts): For IFN_GOMP_SIMD_LANE
15370 check 3rd argument if present rather than 2nd.
15371 * tree-vectorizer.h (struct _loop_vec_info): Add scan_map member.
15372 (struct _stmt_vec_info): Change simd_lane_access_p from bool into
15373 2-bit bitfield.
15374 * tree-vect-loop.c (_loop_vec_info::_loop_vec_info): Initialize
15375 scan_map. For IFN_GOMP_SIMD_LANE check 3rd argument if present rather
15376 than 2nd.
15377 (_loop_vec_info::~_loop_vec_info): Delete scan_map.
15378 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Allow two
15379 different STMT_VINFO_SIMD_LANE_ACCESS_P refs if they have the same
15380 init.
15381 (vect_find_stmt_data_reference): Encode in ->aux the 2nd
15382 IFN_GOMP_SIMD_LANE argument.
15383 (vect_analyze_data_refs): Set STMT_VINFO_SIMD_LANE_ACCESS_P from the
15384 encoded ->aux value.
15385 * tree-vect-stmts.c: Include attribs.h.
15386 (vectorizable_call): Adjust comment about IFN_GOMP_SIMD_LANE.
15387 (scan_operand_equal_p, check_scan_store, vectorizable_scan_store): New
15388 functions.
15389 (vectorizable_load): For STMT_VINFO_SIMD_LANE_ACCESS_P tests use != 0.
15390 (vectorizable_store): Handle STMT_VINFO_SIMD_LANE_ACCESS_P > 1.
15391
15392 2019-06-17 Uroš Bizjak <ubizjak@gmail.com>
15393
15394 PR target/62055
15395 * config/i386/i386.md (*nabstf2_1): New insn pattern.
15396 (*nabs<mode>2_1): Ditto.
15397 (nabs sse-reg splitter): New splitter.
15398 * config/i386/sse.md (*nabs<mode>2): New insn_and_split pattern.
15399
15400 2019-06-17 Jan Hubicka <hubicka@ucw.cz>
15401
15402 PR bootstrap/90873.
15403 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Fix
15404 TMR index check.
15405
15406 2019-06-17 Tom de Vries <tdevries@suse.de>
15407
15408 * config/nvptx/nvptx-protos.h (gen_set_softstack_insn): Declare.
15409 * config/nvptx/nvptx.c (gen_set_softstack_insn): New function.
15410 * config/nvptx/nvptx.md (define_insn "set_softstack_insn"): Rename to
15411 ...
15412 (define_insn "set_softstack_<mode>"): ... this. Use P iterator on
15413 match_operand 0.
15414 (define_insn "omp_simt_enter_insn"): Rename to ...
15415 (define_insn "omp_simt_enter_<mode>"): ... this. Use P iterator on
15416 match_operand 0, 1 and 2, as well as the unspec_volatile result.
15417 (define_expand "omp_simt_enter): Use gen_omp_simt_enter_di and
15418 gen_omp_simt_enter_si.
15419 (define_expand "omp_simt_exit"): New.
15420 (define_insn "omp_simt_exit"): Rename to ...
15421 (define_insn "omp_simt_exit_<mode>"): ... this. Use P iterator on
15422 match_operand 0.
15423
15424 2019-06-17 Matthew Green <mrg@eterna.com.au>
15425 Maya Rashish <coypu@sdf.org>
15426
15427 * config.gcc (aarch64*-*-netbsd*): New target.
15428 * config/aarch64/aarch64-netbsd.h: New file.
15429 * config/aarch64/t-aarch64-netbsd: Likewise.
15430
15431 2019-06-17 Jan Hubicka <hubicka@ucw.cz>
15432
15433 * tree-ssa-alias.c (aliasing_component_refs_p): Consider only
15434 the access path from base to first VIEW_CONVERT_EXPR or
15435 BIT_FIELD_REF.
15436
15437 2019-06-17 Jan Hubicka <hubicka@ucw.cz>
15438
15439 * tree-ssa-alias.c (nonoverlapping_component_refs_p): Also truncate
15440 access path on BIT_FIELD_REFs.
15441
15442 2019-06-17 Martin Liska <mliska@suse.cz>
15443
15444 PR ipa/90874
15445 * ipa-utils.h (odr_type_p): Remove dead code.
15446
15447 2019-06-17 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
15448
15449 * configure.ac (ld_vers) <*-*-solaris2*>: Remove support for
15450 alternative Solaris 11.4 format.
15451 * configure: Regenerate.
15452
15453 2019-06-17 Tom de Vries <tdevries@suse.de>
15454
15455 * config/nvptx/nvptx.md (define_insn "call_insn"): Rename to ...
15456 (define_insn "call_insn_<mode>"): ... this. Use P iterator on
15457 match_operand 0.
15458 (define_insn "call_value_insn"): Rename to ...
15459 (define_insn "call_value_insn_<mode>"): this. Use P iterator on
15460 match_operand 0.
15461 (define_insn "nvptx_red_partition"): Set unspec_volatile result mode to
15462 DI.
15463
15464 2019-06-16 John David Anglin <danglin@gcc.gnu.org>
15465
15466 PR middle-end/64242
15467 * config/pa/pa.md (nonlocal_goto): Restore frame pointer last. Add
15468 frame clobbers and schedule block.
15469 (builtin_longjmp): Likewise.
15470
15471 2019-06-16 Jozef Lawrynowicz <jozef.l@mittosystems.com>
15472
15473 * config/msp430/msp430.c (msp430_expand_helper): Setup arguments which
15474 describe how to perform MSPABI compliant 64-bit shift.
15475 * config/msp430/msp430.md (ashldi3): New define_expand.
15476 (ashrdi3): New define_expand.
15477 (lshrdi3): New define_expand.
15478
15479 2019-06-16 Jozef Lawrynowicz <jozef.l@mittosystems.com>
15480
15481 * doc/sourcebuild.texi: Document new effective target keyword
15482 longlong64.
15483
15484 2019-06-16 Jan Hubicka <hubicka@ucw.cz>
15485
15486 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p,
15487 indirect_refs_may_alias_p): Revert accidental commits.
15488
15489 * tree-ssa-alias.c (aliasing_component_refs_p): Watch for arrays
15490 at the end of structures.
15491
15492 2019-06-16 Iain Sandoe <iain@sandoe.co.uk>
15493
15494 * config/darwin.c (machopic_indirect_call_target): Use renamed
15495 darwin_picsymbol_stubs to decide on output.
15496 (darwin_override_options): Handle darwin_picsymbol_stubs.
15497 * config/darwin.h (MIN_LD64_OMIT_STUBS): New.
15498 (LD64_VERSION): Revise default.
15499 * config/darwin.opt: (mpic-symbol-stubs): New option.
15500 (darwin_picsymbol_stubs): New variable.
15501 * config/i386/darwin.h (TARGET_MACHO_BRANCH_ISLANDS):
15502 rename to TARGET_MACHO_PICSYM_STUBS.
15503 * config/i386/i386.c (output_pic_addr_const): Likewise.
15504 * config/i386/i386.h Likewise.
15505 * config/rs6000/darwin.h: Likewise.
15506 * config/rs6000/rs6000.c (rs6000_call_darwin_1): Use renamed
15507 darwin_picsymbol_stubs.
15508
15509 2019-06-16 Iain Sandoe <iain@sandoe.co.uk>
15510
15511 * config/darwin.opt (prebind, noprebind, seglinkedit,
15512 noseglinkedit): Add RejectNegative.
15513
15514 2019-06-16 Jan Hubicka <hubicka@ucw.cz>
15515
15516 * tree-ssa-alias.c (nonoverlapping_component_refs_p): Fix pasto
15517 in my previous patch.
15518
15519 2019-06-16 Tom de Vries <tdevries@suse.de>
15520
15521 PR tree-optimization/89376
15522 * tree-parloops.c (oacc_entry_exit_ok_1): Handle red == NULL.
15523
15524 2019-06-15 Maya Rashish <coypu@sdf.org>
15525
15526 * doc/invoke.texi (Spec Files): Update location of the
15527 Fortran spec file.
15528
15529 2019-06-15 Gerald Pfeifer <gerald@pfeifer.com>
15530
15531 * doc/extend.texi (Common Function Attributes): Clarify
15532 no_sanitize. Fix grammar.
15533
15534 2019-06-15 Jan Hubicka <hubicka@ucw.cz>
15535
15536 * tree-ssa-alias.c (alias_stats): Add
15537 nonoverlapping_component_refs_p_may_alias,
15538 nonoverlapping_component_refs_p_no_alias,
15539 nonoverlapping_component_refs_of_decl_p_may_alias,
15540 nonoverlapping_component_refs_of_decl_p_no_alias.
15541 (dump_alias_stats): Dump them.
15542 (nonoverlapping_component_refs_of_decl_p): Add stats.
15543 (nonoverlapping_component_refs_p): Add stats; do not stop on first
15544 ARRAY_REF.
15545
15546 2019-06-15 Uroš Bizjak <ubizjak@gmail.com>
15547
15548 * config/i386/i386.md (and<mode>3): Generate zero-extends for
15549 TARGET_ZERO_EXTEND_WITH_AND && optimize_function_for_speed_p (cfun))
15550 only.
15551 (*anddi3_doubleword): Split before reload. Merge with
15552 anddi->zext pre-reload splitter.
15553 (*andndi3_doubleword): Split before reload.
15554 (*<code>di3_doubleword): Ditto.
15555 (*one_cmpldi2_doubleword): Ditto.
15556
15557 2019-06-15 Jakub Jelinek <jakub@redhat.com>
15558
15559 PR middle-end/90779
15560 * gimplify.c: Include omp-offload.h and context.h.
15561 (gimplify_bind_expr): Add "omp declare target" attributes
15562 to static block scope variables inside of target region or target
15563 functions.
15564
15565 2019-06-15 Tom de Vries <tdevries@suse.de>
15566
15567 PR tree-optimization/90009
15568 * tree-ssa-threadbackward.c (thread_jumps::profitable_jump_thread_path):
15569 Return NULL if bb contains IFN_UNIQUE.
15570
15571 2019-06-14 Segher Boessenkool <segher@kernel.crashing.org>
15572
15573 * config/rs6000/rs6000.md (CCEITHER): New define_mode_iterator.
15574 (un): New define_mode_attr.
15575 (isel_signed_<mode>, isel_unsigned_<mode>): Delete, merge into ...
15576 (isel_<un>signed_<GPR:mode>): ... this. New define_insn.
15577 (isel_reversed_signed_<mode>, isel_reversed_unsigned_<mode>): Delete,
15578 merge into ...
15579 (isel_reversed_<un>signed_<GPR:mode>): ... this. New define_insn.
15580
15581 2019-06-14 Iain Sandoe <iain@sandoe.co.uk>
15582
15583 * config/darwin.opt: Add RejectNegative where needed, reorder
15584 and add minimal functional descriptions.
15585
15586 2019-06-14 H.J. Lu <hongjiu.lu@intel.com>
15587
15588 PR rtl-optimization/90765
15589 * calls.c (update_stack_alignment_for_call): New function.
15590 (expand_call): Call update_stack_alignment_for_call when
15591 outgoing parameter is passed in the stack.
15592 (emit_library_call_value_1): Likewise.
15593 * function.c (locate_and_pad_parm): Don't update
15594 stack_alignment_needed and preferred_stack_boundary.
15595
15596 2019-06-14 H.J. Lu <hongjiu.lu@intel.com>
15597
15598 PR target/90877
15599 * config/i386/i386-features.c
15600 (dimode_scalar_chain::compute_convert_gain): Replace
15601 mmxsse_to_integer with sse_to_integer.
15602 * config/i386/i386.c (ix86_register_move_cost): Verify that
15603 moves between MMX and non-MMX units require secondary memory.
15604 Correct costs of moves between SSE and integer units.
15605 * config/i386/i386.h (processor_costs): Rename cost of moving
15606 SSE register to integer to sse_to_integer. Rename cost of
15607
15608 2019-06-14 Matt Thomas <matt@3am-software.com>
15609 Matthew Green <mrg@eterna.com.au>
15610 Nick Hudson <skrll@netbsd.org>
15611 Maya Rashish <coypu@sdf.org>
15612 Richard Earnshaw <rearnsha@arm.com>
15613
15614 * config.gcc (arm*-*-netbsdelf*) Add support for EABI configuration.
15615 * config.host (arm*-*-netbsd*): Use driver-arm.o on native NetBSD.
15616 * config/arm/netbsd-eabi.h: New file.
15617 * config/arm/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Undefine before
15618 redefining.
15619 (SUBTARGET_EXTRA_ASM_SPEC): Don't pass -matpcs to the assembler.
15620 * config/netbsd-elf.h (NETBSD_LINK_LD_ELF_SO_SPEC): New define.
15621 (NETBSD_SUBTARGET_EXTRA_SPECS): New define.
15622 (SUBTARGET_EXTRA_SPECS): Define to NETBSD_SUBTARGET_EXTRA_SPECS.
15623
15624 2019-06-14 Richard Biener <rguenther@suse.de>
15625
15626 * tree-loop-distribution.c (classify_partition): Return
15627 whether a reduction appeared in all partitions and do not
15628 stop builtin detection because of this.
15629 (distribute_loop): Sort a non-builtin partition last if
15630 there's a reduction in all partitions and make sure the
15631 partition prevailing as last is not a builtin.
15632
15633 2019-06-14 Feng Xue <fxue@os.amperecomputing.com>
15634
15635 PR ipa/90401
15636 * ipa-prop.c (add_to_agg_contents_list): New function.
15637 (clobber_by_agg_contents_list_p): Likewise.
15638 (extract_mem_content): Likewise.
15639 (get_place_in_agg_contents_list): Delete.
15640 (determine_known_aggregate_parts): Renamed from
15641 determine_locally_known_aggregate_parts. New parameter
15642 aa_walk_budget_p.
15643
15644 2019-06-13 Martin Sebor <msebor@redhat.com>
15645
15646 PR tree-optimization/90662
15647 * tree-ssa-strlen.c (get_stridx): Convert fold_build2 operands
15648 to the same type.
15649
15650 2019-06-13 Jan Hubicka <hubicka@ucw.cz>
15651
15652 PR bootstrap/90873
15653 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Also check that
15654 dbase is not TARGET_MEM_REF.
15655
15656 2019-06-13 Uroš Bizjak <ubizjak@gmail.com>
15657
15658 * config/i386/i386.md (SWIM1248s): Rename from SWIM1248x.
15659 Update all uses.
15660 (and<mode>3): Use gen_extend_insn instead of indirect functions.
15661 Do not generate DImode extends for 32bit targets.
15662 (and->zext post-reload splitter): Use gen_extend_insn
15663 instead of indirect functions.
15664 (anddi->zext pre-reload splitter): New.
15665 (*zext<mode>_doubleword_and): Remove.
15666 (*zext<mode>_doubleword): Ditto.
15667 (*zextsi_doubleword): Dittto.
15668
15669 2019-06-13 Uroš Bizjak <ubizjak@gmail.com>
15670
15671 * config/i386/i386-expand.c (ix86_expand_int_sse_cmp):
15672 Use gen_sub3_insn instead of indirect function.
15673 (ix86_expand_ashl_const): Use gen_add2_insn instead of
15674 indirect function.
15675 (ix86_adjust_counter): Ditto.
15676
15677 2019-06-13 Jiufu Guo <guojiufu@linux.ibm.com>
15678 Lijia He <helijia@linux.ibm.com>
15679
15680 PR tree-optimization/77820
15681 * tree-ssa-threadedge.c
15682 (edge_forwards_cmp_to_conditional_jump_through_empty_bb_p): New
15683 function.
15684 (thread_across_edge): Add call to
15685 edge_forwards_cmp_to_conditional_jump_through_empty_bb_p.
15686
15687 2019-06-13 Iain Sandoe <iain@sandoe.co.uk>
15688
15689 * config/darwin-driver.c (validate_macosx_version_min): New.
15690 (darwin_default_min_version): Cleanup and validate supplied version.
15691 (darwin_driver_init): Likewise and push cleaned version into opts.
15692
15693 2019-06-13 Jan Hubicka <hubicka@ucw.cz>
15694
15695 PR tree-optimization/90869
15696 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Watch for view
15697 converts in MEM_REF referencing decl rather than view converts
15698 from decl type to MEM_REF type.
15699
15700 2019-06-13 Richard Biener <rguenther@suse.de>
15701
15702 PR tree-optimization/90856
15703 * tree-sra.c (build_ref_for_model): Only use
15704 build_reconstructed_reference when address-spaces are the same.
15705
15706 2019-06-13 Jakub Jelinek <jakub@redhat.com>
15707
15708 * config/nvptx/nvptx.c (nvptx_sese_number, nvptx_sese_pseudo): Don't
15709 wrap ei variable name in the declaration in ()s.
15710 (nvptx_single): Actually use mode_label variable. Formatting fix.
15711
15712 2019-06-13 Richard Biener <rguenther@suse.de>
15713
15714 * tree-vectorizer.h (vect_loop_vectorized_call): Declare.
15715 * tree-vectorizer.c (vect_loop_vectorized_call): Export and
15716 also return the condition stmt.
15717 * tree-vect-loop-manip.c (vect_loop_versioning): Compute outermost
15718 loop we can version and version that, reusing the loop version
15719 created by if-conversion instead of versioning again.
15720
15721 2019-06-13 Aldy Hernandez <aldyh@redhat.com>
15722
15723 * gimple-loop-versioning.cc (prune_loop_conditions): Use
15724 may_contain_p.
15725 * tree-vrp (value_range_base::may_contain_p): Call into
15726 value_inside_range.
15727 (value_inside_range): Make private inside value_range_base class.
15728 Take min/max from *this.
15729 (range_includes_p): Remove.
15730 * tree-vrp.h (value_range_base): Add value_inside_range.
15731 (range_includes_p): Remove.
15732 (range_includes_zero_p): Call may_contain_p.
15733 * vr-values.c (compare_range_with_value): Same.
15734
15735 2019-06-13 Claudiu Zissulescu <claziss@synopsys.com>
15736
15737 * doc/extend.texi (ARC Function Attributes): Update info.
15738
15739 2019-06-13 Feng Xue <fxue@os.amperecomputing.com>
15740
15741 PR tree-optimization/89713
15742 * doc/invoke.texi (-ffinite-loops): Document new option.
15743 * common.opt (-ffinite-loops): New option.
15744 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Mark
15745 IFN_GOACC_LOOP calls as necessary.
15746 * tree-ssa-loop-niter.c (finite_loop_p): Assume loop with an exit
15747 is finite.
15748 * omp-offload.c (oacc_xform_loop): Skip lowering if return value of
15749 IFN_GOACC_LOOP call is not used.
15750 * opts.c (default_options_table): Enable -ffinite-loops at -O2+.
15751
15752 2019-06-13 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
15753
15754 PR target/88838
15755 * tree-vect-loop-manip.c (vect_set_loop_masks_directly): If the
15756 compare_type is not with Pmode size, we will create an IV with
15757 Pmode size with truncated use (i.e. converted to the correct type).
15758 * tree-vect-loop.c (vect_verify_full_masking): Find IV type.
15759 (vect_iv_limit_for_full_masking): New. Factored out of
15760 vect_set_loop_condition_masked.
15761 * tree-vectorizer.h (LOOP_VINFO_MASK_IV_TYPE): New.
15762 (vect_iv_limit_for_full_masking): Declare.
15763
15764 2019-06-13 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
15765
15766 PR target/88834
15767 * tree-ssa-loop-ivopts.c (get_mem_type_for_internal_fn): Handle
15768 IFN_MASK_LOAD_LANES and IFN_MASK_STORE_LANES.
15769 (get_alias_ptr_type_for_ptr_address): Likewise.
15770 (add_iv_candidate_for_use): Add scaled index candidate if useful.
15771 * tree-ssa-address.c (preferred_mem_scale_factor): New.
15772 * config/aarch64/aarch64.c (aarch64_classify_address): Relax
15773 allow_reg_index_p.
15774
15775 2019-06-13 Kugan Vivekanandarajah <kugan.vivekanandarajah@linaro.org>
15776
15777 * config/aarch64/iterators.md (ADDSUB): Fix typo in comment.
15778
15779 2019-06-12 Dimitar Dimitrov <dimitar@dinux.eu>
15780
15781 * common/config/pru/pru-common.c: New file.
15782 * config.gcc: Add PRU target.
15783 * config/pru/alu-zext.md: New file.
15784 * config/pru/constraints.md: New file.
15785 * config/pru/predicates.md: New file.
15786 * config/pru/pru-opts.h: New file.
15787 * config/pru/pru-passes.c: New file.
15788 * config/pru/pru-pragma.c: New file.
15789 * config/pru/pru-protos.h: New file.
15790 * config/pru/pru.c: New file.
15791 * config/pru/pru.h: New file.
15792 * config/pru/pru.md: New file.
15793 * config/pru/pru.opt: New file.
15794 * config/pru/t-pru: New file.
15795 * doc/extend.texi: Document PRU pragmas.
15796 * doc/invoke.texi: Document PRU-specific options.
15797 * doc/md.texi: Document PRU asm constraints.
15798
15799 2019-06-12 Martin Sebor <msebor@redhat.com>
15800
15801 PR middle-end/90676
15802 * tree-pretty-print.c (dump_mem_ref): New function. Include
15803 MEM_REF type in output when different size than operand.
15804 (dump_generic_node): Move code to dump_mem_ref and call it.
15805
15806 2019-06-12 Martin Sebor <msebor@redhat.com>
15807
15808 PR tree-optimization/90662
15809 * tree-ssa-strlen.c (get_stridx): Handle simple VLAs and pointers
15810 to arrays.
15811
15812 2019-06-12 Tom de Vries <tdevries@suse.de>
15813
15814 PR tree-optimization/90009
15815 * config/nvptx/nvptx.c (nvptx_find_par): Assert fork has at most join.
15816
15817 2019-06-12 Martin Liska <mliska@suse.cz>
15818
15819 * ggc-common.c (ggc_prune_overhead_list): Do not sanitize
15820 the created map.
15821 * hash-map.h: Add sanitize_eq_and_hash into ::hash_map.
15822 * mem-stats.h (mem_alloc_description::mem_alloc_description):
15823 Do not sanitize created maps.
15824
15825 2019-06-12 Aldy Hernandez <aldyh@redhat.com>
15826
15827 * gimple-ssa-evrp.c (evrp_dom_walker::before_dom_children): Use
15828 value_range::singleton_p.
15829 * tree-vrp.c (value_range_constant_singleton): Remove.
15830 * tree-vrp.h (value_range_constant_singleton): Remove.
15831 * vr-values.c (vr_values::singleton): Use
15832 value_range::singleton_p.
15833
15834 2019-06-12 Jakub Jelinek <jakub@redhat.com>
15835
15836 PR target/90811
15837 * cfgexpand.c (align_local_variable): Add really_expand argument,
15838 don't SET_DECL_ALIGN if it is false.
15839 (add_stack_var): Add really_expand argument, pass it through to
15840 align_local_variable.
15841 (expand_one_stack_var_1): Pass true as really_expand to
15842 align_local_variable.
15843 (expand_one_ssa_partition): Pass true as really_expand to
15844 add_stack_var.
15845 (expand_one_var): Pass really_expand through to add_stack_var.
15846
15847 2019-06-12 Przemyslaw Wirkus <przemyslaw.wirkus@arm.com>
15848
15849 * config/arm/iterators.md (VABAL): New int iterator.
15850 * config/arm/neon.md (<sup>sadv16qi): New define_expand.
15851 * config/arm/unspecs.md ("unspec"): Define UNSPEC_VABAL_S,
15852 UNSPEC_VABAL_U values.
15853
15854 2019-06-12 Martin Liska <mliska@suse.cz>
15855
15856 * value-prof.c (stream_out_histogram_value): Only first value
15857 can't be negative.
15858
15859 2019-06-12 Jakub Jelinek <jakub@redhat.com>
15860
15861 PR c/90760
15862 * symtab.c (symtab_node::set_section): Allow being called on aliases
15863 as long as they aren't analyzed yet.
15864
15865 2019-06-11 Faraz Shahbazker <fshahbazker@wavecomp.com>
15866
15867 * config/mips/mips.c (mips_final_postscan_insn): Modify call
15868 to `mips_set_text_contents_type' to indicate whether a
15869 non-debug insn follows.
15870
15871 2019-06-11 Michael Meissner <meissner@linux.ibm.com>
15872
15873 * config/rs6000/rs6000-cpus.def (ISA_FUTURE_MASKS_SERVER): Delete
15874 enabling -mpcrel by default.
15875 * config/rs6000/rs6000.c (rs6000_option_override_internal): Update
15876 test for -mpcrel and/or -mprefixed-addr needing -mcpu=future, so
15877 that the test against -mcpu=future is done first. Then test if
15878 -mprefixed-addr is on for -mpcrel.
15879 (rs6000_disable_incompatible_switches): Add -mcpu=future support.
15880
15881 2019-06-11 Jakub Jelinek <jakub@redhat.com>
15882
15883 PR target/90811
15884 * config/nvptx/nvptx.c (nvptx_output_softstack_switch): Use and.b%d
15885 instead of and.u%d.
15886
15887 2019-06-11 Marc Glisse <marc.glisse@inria.fr>
15888
15889 * match.pd (X/[ex]4<Y/[ex]4): Handle conversions.
15890
15891 2019-06-11 Matthew Beliveau <mbelivea@redhat.com>
15892
15893 PR c++/90449 - add -Winaccessible-base option.
15894 * doc/invoke.texi (Winaccessible-base): Document.
15895
15896 2019-06-11 Marc Glisse <marc.glisse@inria.fr>
15897
15898 PR tree-optimization/62041
15899 * fold-const.c (fold_real_zero_addition_p): Handle vectors.
15900
15901 2019-06-11 Jason Merrill <jason@redhat.com>
15902
15903 * gdbhooks.py (TreePrinter.to_string): Recognize ggc_free'd memory.
15904 * tree.c (get_tree_code_name): Likewise.
15905 * print-tree.c (print_node): Only briefly print a node with an
15906 invalid code.
15907
15908 2019-06-11 Jakub Jelinek <jakub@redhat.com>
15909
15910 PR bootstrap/90819
15911 * trans-mem.c (tm_memopt_compute_available): Add assertion
15912 that blocks is not empty. Formatting fix.
15913
15914 2019-06-11 Martin Liska <mliska@suse.cz>
15915
15916 PR c++/87847
15917 * hash-table.h: Extend create_gcc, add one parameter
15918 that is passed into hash_table::hash_table.
15919
15920 2019-06-10 Uroš Bizjak <ubizjak@gmail.com>
15921
15922 * config/i386/i386-protos.h (ix86_split_fp_absneg_operator):
15923 New prototype.
15924 * config/i386/i386-expand.c (ix86_expand_fp_absneg_operator):
15925 Emit clobber also for non-sse operations.
15926 (ix86_split_fp_absneg_operator): New function.
15927 * config/i386/i386.md (SSEMODEF): New mode iterator.
15928 (ssevecmodef): New mode attribute.
15929 (<code>tf2): Use absneg code iterator.
15930 (*<code>tf2_1): Rename from *absnegtf3_sse. Use absneg code iterator.
15931 Add three-operand AVX alternatives.
15932 (*<code><mode>2_i387_1): Rename from *absnegxf2_i387.
15933 Use absneg code iterator and X87MODEF mode iterator.
15934 (absneg fp_reg non-sse splitter): Call absneg code iterator
15935 and X87MODEF mode iterator.
15936 (absneg general_reg non-sse splitter): Use absneg code iterator
15937 and X87MODEF mode iterator. Use ix86_split_fp_absneg_operator.
15938 (*<code><mode>2_1): Rename from *absneg<mode>2. Use absneg
15939 code iterator. Add three-operand AVX alternative.
15940 (absneg sse_reg splitter): Use absneg code iterator
15941 and SSEMODEF mode iterator. Handle AVX operands.
15942 (absneg fp_reg splitter): Use absneg code iterator
15943 and MODEF mode iterator.
15944 (absneg general_reg splitter): Merge splitters using MODEF mode
15945 iterator. Use absneg code iterator. Call
15946 ix86_split_fp_absneg_operator.
15947 (*<code><mode>2_i387): Rename from *<code><mode>2_1.
15948 Do not enable for non-sse modes before reload.
15949 (CSGNMODE): Remove.
15950 (CSGNVMODE): Ditto.
15951 (copysing<mode>3): Use SSEMODEF instead of CSGNMODE and
15952 ssevecmodef mode attribute instaed of CSGNVMODE.
15953 (copysign<mode>3_const): Ditto.
15954 (copysign<mode>3_var): Ditto.
15955 * config/i386/i386.md (*<code><mode>2): Rename from *absneg<mode>2.
15956 Use absneg code iterator. Simplify code using std::swap.
15957 * config/i386/predicates.md (absneg_operator): Remove.
15958
15959 2019-06-10 Martin Sebor <msebor@redhat.com>
15960
15961 * gimple-fold.c (get_range_strlen): Update comment that didn't
15962 make it into r267503 or related commits.
15963
15964 2019-06-10 Vladislav Ivanishin <vlad@ispras.ru>
15965
15966 * gcov-tool.c (merge_usage, rewrite_usage): Mark with
15967 ATTRIBUTE_NORETURN thus making consistent with overlap_usage.
15968
15969 2019-06-10 Jakub Jelinek <jakub@redhat.com>
15970
15971 * tree.def (OMP_SCAN): New tree code.
15972 * tree-core.h (enum omp_clause_code): Add OMP_CLAUSE_INCLUSIVE and
15973 OMP_CLAUSE_EXCLUSIVE.
15974 * tree.h (OMP_CLAUSES): Use OMP_SCAN instead of OMP_TASKGROUP.
15975 (OMP_SCAN_BODY, OMP_SCAN_CLAUSES): Define.
15976 * tree.c (omp_clause_num_ops, omp_clause_code_name): Add entries for
15977 OMP_CLAUSE_{IN,EX}CLUSIVE.
15978 (walk_tree_1): Handle OMP_CLAUSE_{IN,EX}CLUSIVE.
15979 * tree-nested.c (convert_nonlocal_reference_stmt,
15980 convert_local_reference_stmt, convert_gimple_call): Handle
15981 GIMPLE_OMP_SCAN.
15982 * tree-pretty-print.c (dump_omp_clause): Handle
15983 OMP_CLAUSE_{IN,EX}CLUSIVE.
15984 (dump_generic_node): Handle OMP_SCAN.
15985 * gimple.def (GIMPLE_OMP_SCAN): New gimple code.
15986 * gimple.h (gomp_scan): New type.
15987 (is_a_helper <gomp_scan *>::test,
15988 is_a_helper <const gomp_scan *>::test): New templates.
15989 (gimple_build_omp_scan): Declare.
15990 (gimple_omp_scan_clauses, gimple_omp_scan_clauses_ptr,
15991 gimple_omp_scan_set_clauses): New inline functions.
15992 (CASE_GIMPLE_OMP): Add case GIMPLE_OMP_SCAN:.
15993 * gimple.c (gimple_build_omp_scan): New function.
15994 (gimple_copy): Handle GIMPLE_OMP_SCAN.
15995 * gimple-walk.c (walk_gimple_op, walk_gimple_stmt): Likewise.
15996 * gimple-pretty-print.c (dump_gimple_omp_block): Don't handle
15997 GIMPLE_OMP_TASKGROUP.
15998 (dump_gimple_omp_scan): New function.
15999 (pp_gimple_stmt_1): Handle GIMPLE_OMP_SCAN.
16000 * gimple-low.c (lower_stmt): Handle GIMPLE_OMP_SCAN.
16001 * tree-inline.c (remap_gimple_stmt, estimate_num_insns): Likewise.
16002 * gimplify.c (enum gimplify_omp_var_data): Add GOVD_REDUCTION_INSCAN.
16003 (is_gimple_stmt): Handle OMP_SCAN.
16004 (gimplify_scan_omp_clauses): Reject inscan reductions on constructs
16005 other than OMP_FOR or OMP_SIMD. Handle OMP_CLAUSE_{IN,EX}CLUSIVE.
16006 (gimplify_adjust_omp_clauses): Diagnose inscan reductions not
16007 mentioned in nested #pragma omp scan. Handle
16008 OMP_CLAUSE_{IN,EX}CLUSIVE.
16009 (gimplify_expr): Handle OMP_SCAN.
16010 * omp-low.c (check_omp_nesting_restrictions): For parent context,
16011 look through GIMPLE_OMP_SCAN context. Allow #pragma omp scan in
16012 simd constructs.
16013 (scan_omp_1_stmt, lower_omp_1, diagnose_sb_1, diagnose_sb_2): Handle
16014 GIMPLE_OMP_SCAN.
16015
16016 2019-06-10 Martin Liska <mliska@suse.cz>
16017
16018 * ipa-cp.c (ignore_edge_p): New function.
16019 (build_toporder_info): Use it.
16020 * ipa-inline.c (ignore_edge_p): New function.
16021 (inline_small_functions): Use it.
16022 * ipa-pure-const.c (ignore_edge_for_nothrow):
16023 Verify opt_for_fn for caller and callee.
16024 (ignore_edge_for_pure_const): Likewise.
16025 * ipa-reference.c (ignore_edge_p): Extend to check
16026 for opt_for_fn.
16027 * ipa-utils.c (searchc): Refactor.
16028 * ipa-utils.h: Fix coding style.
16029
16030 2019-06-10 Claudiu Zissulescu <claziss@synopsys.com>
16031
16032 * config/arc/arc.c (arc_rtx_costs): Update costs.
16033
16034 2019-06-10 Claudiu Zissulescu <claziss@synopsys.com>
16035
16036 * config/arc/arc-protos.h (arc_check_ior_const): Declare.
16037 (arc_split_ior): Likewise.
16038 (arc_check_mov_const): Likewise.
16039 (arc_split_mov_const): Likewise.
16040 * config/arc/arc.c (arc_print_operand): Fix 'z' letter.
16041 (arc_rtx_costs): Replace check Crr with Cax constraint.
16042 (prepare_move_operands): Cleanup, remove unused code.
16043 (arc_split_ior): New function.
16044 (arc_check_ior_const): Likewise.
16045 (arc_split_mov_const): Likewise.
16046 (arc_check_mov_const): Likewise.
16047 * config/arc/arc.md (movsi_insn): Restructure it, and convert it
16048 in define_insn_and_split pattern.
16049 (iorsi3): Likewise.
16050 (mulsi3_v2): Add new matching variant.
16051 (andsi3_i): Cleanup pattern.
16052 (rotrsi3_cnt1): Update pattern.
16053 (rotrsi3_cnt8): New pattern.
16054 (ashlsi2_cnt8): Likewise.
16055 (ashlsi2_cnt16): Likewise.
16056 * config/arc/constraints.md (C0p): Update constraint.
16057 (Crr): Remove it.
16058 (C0x): New pattern.
16059 (Cax): New pattern.
16060
16061 2019-06-10 Martin Liska <mliska@suse.cz>
16062
16063 * ipa-icf.c (sem_item_optimizer::parse_nonsingleton_classes):
16064 Update coding style.
16065 (sem_item_optimizer::dump_cong_classes):
16066 Print how many items are in a non-singular class. Improve
16067 coding style.
16068
16069 2019-06-10 Martin Liska <mliska@suse.cz>
16070
16071 * value-prof.c (dump_histogram_value): Change dump format.
16072 (gimple_mod_subtract_transform): Remove legacy comment.
16073
16074 2019-06-10 Martin Liska <mliska@suse.cz>
16075
16076 * value-prof.c (dump_histogram_value): Print histogram values
16077 only if present.
16078
16079 2019-06-10 Martin Liska <mliska@suse.cz>
16080
16081 * gcov-io.h (GCOV_DISK_SINGLE_VALUES): New.
16082 (GCOV_SINGLE_VALUE_COUNTERS): Likewise.
16083 * ipa-profile.c (ipa_profile_generate_summary):
16084 Use get_most_common_single_value.
16085 * tree-profile.c (gimple_init_gcov_profiler):
16086 Instrument with __gcov_one_value_profiler_v2
16087 and __gcov_indirect_call_profiler_v4.
16088 * value-prof.c (dump_histogram_value):
16089 Print all values for HIST_TYPE_SINGLE_VALUE.
16090 (stream_out_histogram_value): Update assert for
16091 N values.
16092 (stream_in_histogram_value): Set number of
16093 counters for HIST_TYPE_SINGLE_VALUE.
16094 (get_most_common_single_value): New.
16095 (gimple_divmod_fixed_value_transform):
16096 Use get_most_common_single_value.
16097 (gimple_ic_transform): Likewise.
16098 (gimple_stringops_transform): Likewise.
16099 (gimple_find_values_to_profile): Set number
16100 of counters for HIST_TYPE_SINGLE_VALUE.
16101 * value-prof.h (get_most_common_single_value): New.
16102
16103 2019-06-10 Martin Liska <mliska@suse.cz>
16104
16105 * hash-map.h: Pass default value to hash_table ctor.
16106 * hash-table.h: Add default value to call of a ctor.
16107
16108 2019-06-08 Jonathan Wakely <jwakely@redhat.com>
16109
16110 * doc/invoke.texi (C Dialect Options): Minor grammatical change.
16111 (x86 Options): Replace all uses of "PCL_MUL" with "PCLMUL"
16112
16113 2019-06-07 John David Anglin <danglin@gcc.gnu.orig>
16114
16115 PR target/90751
16116 * config/pa/pa-linux.h (ASM_DECLARE_FUNCTION_NAME): Update comment.
16117 Call pa_output_function_label.
16118 (TARGET_ASM_FUNCTION_PROLOGUE): define.
16119 * config/pa/pa-protos.h (pa_output_function_label): Declare.
16120 * config/pa/pa.c (pa_output_function_prologue): Add ATTRIBUTE_UNUSED
16121 to declaration.
16122 (pa_linux_output_function_prologue): Declare.
16123 (TARGET_ASM_FUNCTION_PROLOGUE): Delete define.
16124 (pa_output_function_label): New.
16125 (pa_output_function_prologue): Revise to use pa_output_function_label.
16126 (pa_linux_output_function_prologue): New.
16127 * config/pa/pa.h (TARGET_ASM_FUNCTION_PROLOGUE): Define.
16128
16129 2019-06-07 Aldy Hernandez <aldyh@redhat.com>
16130
16131 * tree-vrp.h (value_range_base::intersect): New.
16132 (value_range::intersect_helper): Move from here...
16133 (value_range_base::intersect_helper): ...to here.
16134 * tree-vrp.c (value_range::intersect_helper): Rename to...
16135 (value_range_base::intersect_helper): ...this, and rewrite to
16136 return a value instead of modifying THIS in place.
16137 Also, move equivalence handling...
16138 (value_range::intersect): ...here, while calling intersect_helper.
16139 * gimple-fold.c (size_must_be_zero_p): Use value_range_base when
16140 calling intersect.
16141 * gimple-ssa-evrp-analyze.c (ecord_ranges_from_incoming_edge):
16142 Same.
16143 * vr-values.c (vrp_evaluate_conditional_warnv_with_ops): Same.
16144
16145 2019-06-07 Jakub Jelinek <jakub@redhat.com>
16146
16147 * Makefile.in (genprogerr): Add condmd.
16148 (genprog): Remove it here.
16149
16150 2019-06-07 Andrew Stubbs <ams@codesourcery.com>
16151
16152 * doc/invoke.texi (AMD GCN Options): Add gfx906.
16153
16154 2019-06-07 Richard Biener <rguenther@suse.de>
16155
16156 PR debug/90574
16157 * tree-cfg.c (stmt_starts_bb_p): Split blocks at labels
16158 that appear after user labels.
16159
16160 2019-06-07 Martin Liska <mliska@suse.cz>
16161
16162 * cselib.c (cselib_init): Disable hash table
16163 sanitization.
16164 * hash-set.h: Pass new default argument to m_table.
16165 * hash-table.c: Add global variable with hash table
16166 sanitization limit.
16167 * hash-table.h (Allocator>::hash_table): Add new argument
16168 to ctor.
16169 (hashtab_chk_error): New.
16170 * params.def (PARAM_HASH_TABLE_VERIFICATION_LIMIT): New.
16171 * toplev.c (process_options): Set hash_table_sanitize_eq_limit
16172 from the PARAM_HASH_TABLE_VERIFICATION_LIMIT value.
16173
16174 2019-06-07 Jan Hubicka <hubicka@ucw.cz>
16175
16176 * common.opt (flto-odr-type-merging): Ignore.
16177 * invoke.texi (-flto-odr-type-merging): Remove.
16178 * ipa-devirt.c (odr_vtable_hasher:odr_name_hasher): Remove.
16179 (can_be_vtable_hashed_p): Remove.
16180 (hash_odr_vtable): Remove.
16181 (odr_vtable_hasher::hash): Remove.
16182 (types_same_for_odr): Remove.
16183 (types_odr_comparable): Remove.
16184 (odr_vtable_hasher::equal): Remove.
16185 (odr_vtable_hash_type, odr_vtable_hash): Remove.
16186 (add_type_duplicate): Do not synchronize vtable and name hashtables.
16187 (get_odr_type): Do not use vtable hash.
16188 (dump_odr_type): Remove commented out code.
16189 (build_type_inheritance_graph): Do not allocate vtable hash.
16190 (rebuild_type_inheritance_graph): Do not delete vtable hash.
16191 * ipa-utils.h (type_with_linkage_p): Drop vtable hash path.
16192 (odr_type_p): Likewise.
16193 * tree.c (need_assembler_name_p): Remove flag_lto_odr_type_mering
16194 test.
16195
16196 2019-06-07 Jan Hubicka <hubicka@ucw.cz>
16197
16198 * tree-ssa-alias.c (aliasing_component_refs_p): Do not give up
16199 immediately after same_types_for_tbaa_p returns -1 and continue
16200 looking for possible exact match; if matching types are arrays
16201 watch for partial overlaps.
16202 (indirect_ref_may_alias_decl_p): Watch for partial array overlaps.
16203 (indirect_refs_may_alias_p): Do type based disambiguation first;
16204 update comment.
16205
16206 2019-06-07 Richard Sandiford <richard.sandiford@arm.com>
16207
16208 * fwprop.c (propagate_rtx): Fix call to paradoxical_subreg_p.
16209
16210 2019-06-07 Martin Liska <mliska@suse.cz>
16211
16212 * doc/invoke.texi: Remove param.
16213 * gcov-counter.def (GCOV_COUNTER_ICALL_TOPNV):
16214 Remove.
16215 * gcov-io.h (GCOV_ICALL_TOPN_VAL): Likewise.
16216 (GCOV_ICALL_TOPN_NCOUNTS): Likewise.
16217 * params.def (PARAM_INDIR_CALL_TOPN_PROFILE): Likewise.
16218 * profile.c (instrument_values): Remove
16219 HIST_TYPE_INDIR_CALL_TOPN.
16220 * tree-profile.c (init_ic_make_global_vars):
16221 Always build __gcov_indirect_call only.
16222 (gimple_init_gcov_profiler): Remove usage
16223 of PARAM_INDIR_CALL_TOPN_PROFILE.
16224 (gimple_gen_ic_profiler): Likewise.
16225 * value-prof.c (dump_histogram_value): Likewise.
16226 (stream_in_histogram_value): Likewise.
16227 (gimple_indirect_call_to_profile): Likewise.
16228 (gimple_find_values_to_profile): Likewise.
16229 * value-prof.h (enum hist_type): Likewise.
16230
16231 2019-06-07 Martin Liska <mliska@suse.cz>
16232
16233 * tree-ssa-loop.c (get_lsm_tmp_name): Return at the end of the
16234 function.
16235
16236 2019-06-07 Martin Liska <mliska@suse.cz>
16237
16238 PR tree-optimization/78902
16239 * builtin-attrs.def (ATTR_WARN_UNUSED_RESULT): New.
16240 (ATTR_MALLOC_NOTHROW_LEAF_LIST): Remove.
16241 (ATTR_WARN_UNUSED_RESULT_NOTHROW_LEAF_LIST): New.
16242 (ATTR_MALLOC_WARN_UNUSED_RESULT_NOTHROW_LEAF_LIST): New.
16243 (ATTR_ALLOC_SIZE_2_NOTHROW_LIST): Remove.
16244 (ATTR_MALLOC_SIZE_1_NOTHROW_LEAF_LIST): Remove.
16245 (ATTR_MALLOC_WARN_UNUSED_RESULT_NOTHROW_LIST): New.
16246 (ATTR_ALLOC_WARN_UNUSED_RESULT_SIZE_2_NOTHROW_LIST): New.
16247 (ATTR_MALLOC_WARN_UNUSED_RESULT_SIZE_1_NOTHROW_LEAF_LIST): New.
16248 (ATTR_ALLOCA_SIZE_1_NOTHROW_LEAF_LIST): Remove.
16249 (ATTR_ALLOCA_WARN_UNUSED_RESULT_SIZE_1_NOTHROW_LEAF_LIST): New.
16250 (ATTR_MALLOC_SIZE_1_2_NOTHROW_LEAF_LIST): Remove.
16251 (ATTR_MALLOC_WARN_UNUSED_RESULT_SIZE_1_2_NOTHROW_LEAF_LIST):
16252 New.
16253 (ATTR_ALLOC_SIZE_2_NOTHROW_LEAF_LIST): Remove.
16254 (ATTR_ALLOC_WARN_UNUSED_RESULT_SIZE_2_NOTHROW_LEAF_LIST): New.
16255 (ATTR_MALLOC_NOTHROW_NONNULL): Remove.
16256 (ATTR_WARN_UNUSED_RESULT_NOTHROW_NONNULL): New.
16257 (ATTR_MALLOC_WARN_UNUSED_RESULT_NOTHROW_NONNULL): New.
16258 (ATTR_MALLOC_NOTHROW_NONNULL_LEAF): Remove.
16259 (ATTR_WARN_UNUSED_RESULT_NOTHROW_NONNULL_LEAF): New.
16260 (ATTR_MALLOC_WARN_UNUSED_RESULT_NOTHROW_NONNULL_LEAF): New.
16261 * builtins.def (BUILT_IN_ALIGNED_ALLOC): Change to use
16262 warn_unused_result attribute.
16263 (BUILT_IN_STRDUP): Likewise.
16264 (BUILT_IN_STRNDUP): Likewise.
16265 (BUILT_IN_ALLOCA): Likewise.
16266 (BUILT_IN_CALLOC): Likewise.
16267 (BUILT_IN_MALLOC): Likewise.
16268 (BUILT_IN_REALLOC): Likewise.
16269
16270 2019-06-06 Jim Wilson <jimw@sifive.com>
16271
16272 PR target/89955
16273 * config/riscv/riscv.h (STARTFILE_PREFIX_SPEC): Deleted.
16274 * config/riscv/freebsd.h (STARTFILE_PREFIX_SPEC): Added.
16275 * config/riscv/linux.h (STARTFILE_PREFIX_SPEC): Added.
16276
16277 2019-06-06 Martin Sebor <msebor@redhat.com>
16278
16279 * tree-ssa-strlen.c (adjust_related_strinfos): Avoid trailing article.
16280 (handle_builtin_malloc): Remove trailing spaces.
16281 (handle_builtin_memset): Same.
16282 (handle_builtin_memcmp): Same.
16283 (compute_string_length): Same.
16284 (determine_min_objsize): Same.
16285 (handle_builtin_string_cmp): Same.
16286 (handle_char_store): Same. Break up excessively long line.
16287
16288 2019-06-06 Martin Jambor <mjambor@suse.cz>
16289
16290 * tree-sra.c (build_reconstructed_reference): Drop the alignment
16291 check.
16292
16293 2019-06-06 Martin Jambor <mjambor@suse.cz>
16294
16295 * tree-sra.c (struct access): New field grp_same_access_path.
16296 (dump_access): Dump it.
16297 (build_reconstructed_reference): New function.
16298 (build_ref_for_model): Use it if possible.
16299 (path_comparable_for_same_access): New function.
16300 (same_access_path_p): Likewise.
16301 (sort_and_splice_var_accesses): Set the new flag.
16302 (analyze_access_subtree): Likewise.
16303 (propagate_subaccesses_across_link): Propagate zero value of the new
16304 flag down the access tree.
16305
16306 2019-06-06 Andrew Stubbs <ams@codesourcery.com>
16307
16308 * config.gcc (amdgcn-*-*): Allow --with-arch=gfx906.
16309 * config/gcn/gcn.opt (gpu_type): Add gfx906.
16310 * config/gcn/t-gcn-hsa (MULTILIB_OPTIONS): Add gfx906 multilib.
16311 (MULTILIB_DIRNAMES): Rename gcn5 to gfx900.
16312 Add gfx906.
16313
16314 2019-06-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16315
16316 PR tree-optimization/90332
16317 * config/aarch64/aarch64.c (aarch64_expand_vector_init):
16318 Handle VALS containing two vectors.
16319 * config/aarch64/aarch64-simd.md (*aarch64_combinez<mode>): Rename
16320 to...
16321 (@aarch64_combinez<mode>): ... This.
16322 (*aarch64_combinez_be<mode>): Rename to...
16323 (@aarch64_combinez_be<mode>): ... This.
16324 (vec_init<mode><Vhalf>): New define_expand.
16325 * config/aarch64/iterators.md (Vhalf): Handle V8HF.
16326
16327 2019-06-06 Jozef Lawrynowicz <jozef.l@mittosystems.com>
16328
16329 * config/msp430/msp430.md (ashlhi3): Use the const_variant of shift
16330 library functions only when not optimizing for size.
16331 (ashlsi3): Likewise.
16332 (ashrhi3): Likewise.
16333 (ashrsi3): Likewise.
16334 (lshrhi3): Likewise.
16335 (lshrsi3): Likewise.
16336
16337 2019-06-06 Andreas Krebbel <krebbel@linux.ibm.com>
16338
16339 PR rtl-optimization/88751
16340 * ira.c (ira): Use the number of the actually referenced registers
16341 when calculating the threshold.
16342
16343 2019-06-06 Jakub Jelinek <jakub@redhat.com>
16344
16345 * configure: Regenerate.
16346
16347 2019-06-06 Jozef Lawrynowicz <jozef.l@mittosystems.com>
16348
16349 * config/msp430/msp430.md (ashlhi3): Force shift src operand into a
16350 register if it is in memory, so the shift can be emulated with a rotate
16351 instruction.
16352 (ashrhi3): Likewise.
16353 (lshrhi3): Likewise.
16354
16355 2019-06-06 Martin Liska <mliska@suse.cz>
16356
16357 PR tree-optimization/87954
16358 * match.pd: Simplify mult where both arguments are 0 or 1.
16359
16360 2019-06-06 Richard Biener <rguenther@suse.de>
16361
16362 * vr-values.c (vr_values::extract_range_from_ssa_name): Do not
16363 put equivalences on UNDEFINED ranges.
16364 * gimple-ssa-evrp.c (evrp_dom_walker::before_dom_children):
16365 Make sure to drop defs of stmts added during simplification
16366 to VARYING.
16367
16368 2019-06-06 Richard Biener <rguenther@suse.de>
16369
16370 * tree-ssa-structalias.c: Include tree-cfg.h.
16371 (make_heapvar): Do not make heap vars artificial.
16372 (find_func_aliases_for_builtin_call): Handle stack allocation
16373 functions.
16374 (find_func_aliases): Delay processing of simple enough returns
16375 in non-IPA mode.
16376 (set_uids_in_ptset): Adjust.
16377 (find_what_var_points_to): Likewise.
16378 (solve_constraints): Do not dump points-to sets here.
16379 (compute_points_to_sets): Post-process return statements,
16380 amending the escaped solution. Dump points-to sets afterwards.
16381 (ipa_pta_execute): Dump points-to sets.
16382
16383 2019-06-06 Martin Liska <mliska@suse.cz>
16384
16385 PR web/87933
16386 * doc/install.texi: Fix HTML headers and
16387 titles for 'Installing GCC' pages.
16388
16389 2019-06-06 Martin Liska <mliska@suse.cz>
16390
16391 * ipa-icf-gimple.h (dump_message_1): Remove.
16392 (dump_message): Likewise.
16393 (return_false_with_message_1): Print also file.
16394 (return_false_with_msg): Likewise.
16395 (return_with_result): Likewise.
16396 (return_with_debug): Likewise.
16397 * ipa-icf.c (sem_function::equals_private): Remove call
16398 to dump_message.
16399
16400 2019-06-05 Hongtao Liu <hongtao.liu@intel.com>
16401
16402 * config/i386/sse.md (define_mode_suffix vecmemsuffix): New.
16403 (define_insn "avx512dq_fpclass<mode><mask_scalar_merge_name>"): Enable
16404 memory operand for it.
16405 (define_insn "avx512dq_vmfpclass<mode><mask_scalar_merge_name>"): Ditto.
16406
16407 2019-06-05 Martin Sebor <msebor@redhat.com>
16408
16409 * config/i386/i386-features.c (ix86_get_function_versions_dispatcher):
16410 Adjust quoting and hyphenation.
16411 * convert.c (convert_to_real_1): Same.
16412 * gcc.c (driver_wrong_lang_callback): Same.
16413 (driver::handle_unrecognized_options): Same.
16414 * gimple-ssa-nonnull-compare.c (do_warn_nonnull_compare): Same.
16415 * opts-common.c (cmdline_handle_error): Same.
16416 (read_cmdline_option): Same.
16417 * opts-global.c (complain_wrong_lang): Same.
16418 (print_ignored_options): Same.
16419 (handle_common_deferred_options): Same.
16420 * pretty-print.h: Same.
16421 * print-rtl.c (debug_bb_n_slim): Same.
16422 * sched-rgn.c (make_pass_sched_fusion): Same.
16423 * tree-cfg.c (verify_gimple_assign_unary): Same.
16424 (verify_gimple_label): Same.
16425 * tree-ssa-operands.c (verify_ssa_operands): Same.
16426 * varasm.c (do_assemble_alias): Same.
16427 (assemble_alias): Same.
16428
16429 2019-06-05 Richard Henderson <rth@twiddle.net>
16430
16431 * config/alpha/alpha.c (direct_return): Move down after
16432 struct machine_function definition; use saved frame_size;
16433 return bool.
16434 (struct machine_function): Add sa_mask, sa_size, frame_size.
16435 (alpha_sa_mask, alpha_sa_size, compute_frame_size): Merge into ...
16436 (alpha_compute_frame_layout): ... new function.
16437 (TARGET_COMPUTE_FRAME_LAYOUT): New.
16438 (alpha_initial_elimination_offset): Use saved sa_size.
16439 (alpha_vms_initial_elimination_offset): Likewise.
16440 (alpha_vms_can_eliminate): Remove alpha_sa_size call.
16441 (alpha_expand_prologue): Use saved frame data. Merge integer
16442 and fp register save loops.
16443 (alpha_expand_epilogue): Likewise.
16444 (alpha_start_function): Use saved frame data.
16445 * config/alpha/alpha-protos.h (direct_return): Update.
16446 (alpha_sa_size): Remove.
16447
16448 2019-06-05 Eric Botcazou <ebotcazou@adacore.com>
16449
16450 * fold-const.c (extract_muldiv_1) <PLUS_EXPR>: Do not distribute a
16451 multiplication by a power-of-two value.
16452 (fold_plusminus_mult_expr): Use pow2p_hwi to spot a power-of-two value
16453 and turn the modulo operation into a masking operation.
16454
16455 2019-06-05 Jakub Jelinek <jakub@redhat.com>
16456
16457 PR debug/90733
16458 * var-tracking.c (vt_expand_loc_callback): Don't create raw subregs
16459 with VOIDmode inner operands.
16460
16461 2019-06-05 Richard Biener <rguenther@suse.de>
16462
16463 PR middle-end/90726
16464 * tree-ssa-loop-niter.c (expand_simple_operations): Do not
16465 turn an expression graph into a tree.
16466
16467 2019-06-05 Jakub Jelinek <jakub@redhat.com>
16468
16469 * omp-expand.c (struct omp_region): Add has_lastprivate_conditional
16470 member.
16471 (expand_parallel_call): If region->inner->has_lastprivate_conditional,
16472 treat it like explicit monotonic schedule modifier.
16473 (expand_omp_for): Initialize has_lastprivate_conditional.
16474 If fd.lastprivate_conditional != 0, treat it like explicit monotonic
16475 schedule modifier.
16476
16477 * omp-low.c (lower_rec_input_clauses): For lastprivate conditional
16478 references, lookup in in hash map MEM_REF operand instead of the
16479 MEM_REF itself.
16480 (lower_omp_1): When looking for lastprivate conditional assignments,
16481 handle MEM_REFs with REFERENCE_TYPE operands.
16482
16483 * omp-low.c (lower_rec_input_clauses): Force max_vf if is_simd and
16484 on privatization clauses OMP_CLAUSE_DECL is privatized by reference
16485 and references a VLA. Handle references to non-VLAs if is_simd
16486 all privatization clauses like reductions.
16487 (lower_rec_input_clauses) <case do_private, case do_firstprivate>:
16488 If omp_is_reference, use always omp simd arrays and set
16489 DECL_VALUE_EXPR in that case, if lower_rec_simd_input_clauses
16490 fails, emit reference initialization.
16491
16492 2019-06-05 Hongtao Liu <hongtao.liu@intel.com>
16493
16494 PR target/89803
16495 * config/i386/avx512dqintrin.h (_mm_mask_fpclass_ss_mask,
16496 _mm_mask_fpclass_sd_mask): New intrinsics.
16497 (_mm_fpclass_ss_mask, _mm_fpclass_sd_mask): Modified, use new builtins.
16498 * config/i386/i386-builtin.def
16499 (__builtin_ia32_fpclassss_mask, __builtin_ia32_fpclasssd_mask):
16500 New builtins.
16501 (__builtin_ia32_fpclassss, __builtin_ia32_fpclasssd): Deleted.
16502 * config/i386/i386-builtin-types.def (DEF_FUNCTION_TYPE (QI, V2DF, INT),
16503 DEF_FUNCTION_TYPE (QI, V4SF, INT)): Deleted.
16504 * config/i386/i386-expand.c (case QI_FTYPE_V4SF_INT,
16505 case QI_FTYPE_V2SF_INT): Ditto.
16506 * config/i386/sse.md
16507 (define_insn "avx512dq_vmfpclass<mode><mask_scalar_merge_name>):
16508 Extended to insnstructions with mask operands.
16509
16510 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16511
16512 * config/rs6000/constraints.md (define_register_constraint "wp"):
16513 Delete.
16514 (define_register_constraint "wq"): Delete.
16515 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
16516 (rs6000_init_hard_regno_mode_ok): Adjust.
16517 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
16518 RS6000_CONSTRAINT_wp and RS6000_CONSTRAINT_wq.
16519 * config/rs6000/vsx.md (define_mode_attr VSr3): Delete.
16520 (define_mode_attr VSa): Delete.
16521 (define_mode_attr VSisa): New.
16522 (rest of file): Adjust.
16523 * doc/md.texi (Machine Constraints): Adjust.
16524
16525 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16526
16527 * config/rs6000/rs6000.md (define_attr "isa"): Add p9kf and p9tf.
16528 (define_attr "enabled"): Handle those new isa values.
16529
16530 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16531
16532 * config/rs6000/vsx.md (define_mode_attr VSr4): Delete.
16533 (define_mode_attr VSr5): Delete.
16534 (define_mode_attr VStype_sqrt): Delete.
16535 (define_mode_iterator VSX_SPDP): Delete.
16536 (define_mode_attr VS_spdp_res): Delete.
16537 (define_mode_attr VS_spdp_insn): Delete.
16538 (define_mode_attr VS_spdp_type): Delete.
16539 (*vsx_sqrt<mode>2): Adjust.
16540 (vsx_<VS_spdp_insn>): Delete, split to...
16541 (vsx_xscvdpsp): ... this. New. And...
16542 (vsx_xvcvspdp): ... this. New. And...
16543 (vsx_xvcvdpsp): ... this. New.
16544
16545 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16546
16547 * config/rs6000/rs6000.md (define_mode_attr sd): Add values for V4SF
16548 and V2DF.
16549 * config/rs6000/vsx.md (define_mode_attr VSs): Delete.
16550 (rest of file): Adjust.
16551
16552 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16553
16554 * config/rs6000/vsx.md (vsx_<VS_spdp_insn>): Use wa instead of <VSa>.
16555 (vsx_extract_<mode>_var): Ditto.
16556
16557 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16558
16559 * config/rs6000/vsx.md: Replace all <VSa> that are used with VSX_TI
16560 with just "wa".
16561
16562 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16563
16564 * config/rs6000/constraints.md (define_register_constraint "ww"):
16565 Delete.
16566 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
16567 (rs6000_init_hard_regno_mode_ok): Adjust.
16568 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
16569 RS6000_CONSTRAINT_ww.
16570 * config/rs6000/rs6000.md: Adjust.
16571 * config/rs6000/vsx.md: Adjust.
16572 * doc/md.texi (Machine Constraints): Adjust.
16573
16574 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16575
16576 * config/rs6000/rs6000.md (SFDF, SFDF2): Adjust comments.
16577 (define_mode_attr sd): New.
16578 (define_mode_attr s): New.
16579 (define_mode_attr Ftrad): Delete.
16580 (define_mode_attr Fvsx): Delete.
16581 (define_mode_attr Fs): Delete.
16582 (rest of file): Use the new mode attributes.
16583 * config.rs6000/vsx.md: Use the new mode attributes.
16584
16585 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16586
16587 * config/rs6000/vsx.md: Replace all <VSa> that are used with VSX_W
16588 with just "wa".
16589
16590 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16591
16592 * config/rs6000/vsx.md (define_mode_attr VSr2): Delete.
16593 (rest of file): Replace all <VSa>, <VSr>, <VSr2>, and <VSr3> that are
16594 used with VSX_B, VSX_D, or VSX_F, with just "wa".
16595
16596 2019-06-04 Bill Schmidt <wschmidt@linux.ibm.com>
16597
16598 PR target/78263
16599 * config/rs6000/altivec.h: Don't #define vector, pixel, bool for
16600 C++ with strict ANSI requirements.
16601
16602 2019-06-04 Marc Glisse <marc.glisse@inria.fr>
16603
16604 * tree-ssa-loop-niter.c (number_of_iterations_ne): Skip
16605 computations when step is 1.
16606
16607 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16608
16609 * config/rs6000/constraints.md (define_register_constraint "wf"):
16610 Delete.
16611 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
16612 (rs6000_init_hard_regno_mode_ok): Adjust.
16613 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
16614 RS6000_CONSTRAINT_wf.
16615 * config/rs6000/rs6000.md: Adjust.
16616 * config/rs6000/vsx.md: Adjust.
16617 * doc/md.texi (Machine Constraints): Adjust.
16618
16619 2019-06-04 Andrew Pinski <apinski@marvell.com>
16620
16621 * config/aarch64/aarch64.c (aarch64_asan_shadow_offset):
16622 Fix ILP32 value.
16623
16624 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16625
16626 * config/rs6000/constraints.md (define_register_constraint "wd"):
16627 Delete.
16628 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
16629 (rs6000_init_hard_regno_mode_ok): Adjust.
16630 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
16631 RS6000_CONSTRAINT_wd.
16632 * config/rs6000/rs6000.md: Adjust.
16633 * config/rs6000/vsx.md: Adjust.
16634 * doc/md.texi (Machine Constraints): Adjust.
16635
16636 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16637
16638 * config/rs6000/rs6000.md (define_mode_attr Fv2): Delete.
16639 (rest of file): Adjust.
16640
16641 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16642
16643 * config/rs6000/vsx.md (define_mode_attr VS_64reg): Delete.
16644 (*vsx_extract_<P:mode>_<VSX_D:mode>_load): Adjust.
16645 (vsx_splat_<mode>_reg): Adjust.
16646
16647 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16648
16649 * config/rs6000/constraints.md (define_register_constraint "ws"):
16650 Delete.
16651 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
16652 (rs6000_init_hard_regno_mode_ok): Adjust.
16653 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
16654 RS6000_CONSTRAINT_ws.
16655 * config/rs6000/rs6000.md: Adjust.
16656 * config/rs6000/vsx.md: Adjust.
16657 * doc/md.texi (Machine Constraints): Adjust.
16658
16659 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16660
16661 * config/rs6000/constraints.md (define_register_constraint "wv"):
16662 Delete.
16663 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
16664 (rs6000_init_hard_regno_mode_ok): Adjust.
16665 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
16666 RS6000_CONSTRAINT_wv.
16667 * config/rs6000/rs6000.md: Adjust.
16668 * config/rs6000/vsx.md: Adjust.
16669 * doc/md.texi (Machine Constraints): Adjust.
16670
16671 2019-06-04 Segher Boessenkool <segher@kernel.crashing.org>
16672
16673 * config/rs6000/constraints.md (define_register_constraint "wi"):
16674 Delete.
16675 (define_register_constraint "wt"): Delete.
16676 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
16677 (rs6000_init_hard_regno_mode_ok): Adjust.
16678 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
16679 RS6000_CONSTRAINT_wi and RS6000_CONSTRAINT_wt.
16680 * config/rs6000/rs6000.md: Adjust.
16681 * config/rs6000/vsx.md: Adjust.
16682 * doc/md.texi (Machine Constraints): Adjust.
16683
16684 2019-06-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
16685
16686 * config/aarch64/aarch64-protos.h (aarch64_asm_output_external): Remove
16687 const.
16688 * config/aarch64/aarch64.c (aarch64_asm_output_external): Call
16689 default_elf_asm_output_external.
16690
16691 2019-06-04 Martin Liska <mliska@suse.cz>
16692
16693 * ipa-icf.c (INCLUDE_LIST): Remove.
16694 (sem_item_optimizer::execute): Remove call to init_wpa.
16695 * ipa-icf.h (init_wpa): Remove.
16696
16697 2019-06-04 Jakub Jelinek <jakub@redhat.com>
16698
16699 * gimplify.c (gimplify_scan_omp_clauses): Don't sorry_at on lastprivate
16700 conditional on combined for simd.
16701 * omp-low.c (struct omp_context): Add combined_into_simd_safelen0
16702 member.
16703 (lower_rec_input_clauses): For gimple_omp_for_combined_into_p max_vf 1
16704 constructs, don't remove lastprivate_conditional_map, but instead set
16705 ctx->combined_into_simd_safelen0 and adjust hash_map, so that it points
16706 to parent construct temporaries.
16707 (lower_lastprivate_clauses): Handle ctx->combined_into_simd_safelen0
16708 like !ctx->lastprivate_conditional_map.
16709 (lower_omp_1) <case GIMPLE_ASSIGN>: If up->combined_into_simd_safelen0,
16710 use up->outer context instead of up.
16711 * omp-expand.c (expand_omp_for_generic): Perform cond_var bump even if
16712 gimple_omp_for_combined_p.
16713 (expand_omp_for_static_nochunk): Likewise.
16714 (expand_omp_for_static_chunk): Add forgotten cond_var bump that was
16715 probably moved over into expand_omp_for_generic rather than being copied
16716 there.
16717
16718 2019-06-04 Martin Liska <mliska@suse.cz>
16719
16720 * value-prof.c (dump_histogram_value): Fix typo.
16721 (gimple_mod_subtract_transform): Likewise.
16722
16723 2019-06-04 Richard Biener <rguenther@suse.de>
16724
16725 PR middle-end/90726
16726 * tree-chrec.c (chrec_contains_symbols): Add to visited.
16727 (tree_contains_chrecs): Likewise.
16728 (chrec_contains_symbols_defined_in_loop): Move here and avoid
16729 exponential behaivor from ...
16730 * tree-scalar-evolution.c (chrec_contains_symbols_defined_in_loop):
16731 ... here.
16732 (expression_expensive_p): Avoid exponential behavior and compute
16733 expanded size, rejecting any expansion.
16734 * tree-ssa-loop-ivopts.c (abnormal_ssa_name_p): Remove.
16735 (idx_contains_abnormal_ssa_name_p): Likewise.
16736 (contains_abnormal_ssa_name_p_1): New helper for walk_tree.
16737 (contains_abnormal_ssa_name_p): Simplify and use
16738 walk_tree_without_duplicates.
16739
16740 2019-06-04 Richard Biener <rguenther@suse.de>
16741
16742 PR tree-optimization/90738
16743 Revert
16744 2019-06-03 Richard Biener <rguenther@suse.de>
16745
16746 * tree-ssa-sccvn.c (ao_ref_init_from_vn_reference): Get original
16747 full reference tree and record in ref->ref.
16748 (vn_reference_lookup_3): Pass in original ref to
16749 ao_ref_init_from_vn_reference.
16750 (vn_reference_lookup): Likewise.
16751 * tree-ssa-sccvn.h (ao_ref_init_from_vn_reference): Adjust prototype.
16752 * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
16753 Handle non-decl bases in the original reference.
16754
16755 2019-06-04 Martin Liska <mliska@suse.cz>
16756
16757 * ipa-icf.c (sem_item_optimizer::add_item_to_class): Count
16758 number of references.
16759 (sem_item_optimizer::do_congruence_step):
16760 (sem_item_optimizer::worklist_push): Dump how references
16761 a class has.
16762 (sem_item_optimizer::worklist_pop): Use heap.
16763 (sem_item_optimizer::process_cong_reduction): Likewise.
16764 * ipa-icf.h: Use fibonacci_heap insteam of std::list.
16765
16766 2019-06-04 Martin Liska <mliska@suse.cz>
16767
16768 * ipa-icf.h (struct sem_usage_pair_hash): New.
16769 (sem_usage_pair_hash::hash): Likewise.
16770 (sem_usage_pair_hash::equal): Likewise.
16771 (struct sem_usage_hash): Likewise.
16772 * ipa-icf.c (sem_item::sem_item): Initialize
16773 referenced_by_count.
16774 (sem_item::add_reference): Register a reference
16775 in ref_map and not in target->usages.
16776 (sem_item::setup): Remove initialization of
16777 dead vectors.
16778 (sem_item::~sem_item): Remove usage of dead vectors.
16779 (sem_item::dump): Remove dump of references.
16780 (sem_item_optimizer::sem_item_optimizer): Initialize
16781 m_references.
16782 (sem_item_optimizer::read_section): Remove useless
16783 dump.
16784 (sem_item_optimizer::parse_funcs_and_vars): Likewise here.
16785 (sem_item_optimizer::build_graph): Pass m_references
16786 to ::add_reference.
16787 (sem_item_optimizer::verify_classes): Remove usage of dead
16788 vectors.
16789 (sem_item_optimizer::traverse_congruence_split): Return true
16790 when a class is split.
16791 (sem_item_optimizer::do_congruence_step_for_index): Use
16792 hash_map for look up of (sem_item *, index). That brings
16793 significant speed up.
16794 (sem_item_optimizer::do_congruence_step): Return true
16795 when a split is done.
16796 (congruence_class::is_class_used): Use referenced_by_count.
16797
16798 2019-06-04 Alan Modra <amodra@gmail.com>
16799
16800 PR target/90689
16801 * config/rs6000/rs6000.c (rs6000_call_aix): Correct r271753 merge
16802 error.
16803
16804 2019-06-03 Segher Boessenkool <segher@kernel.crashing.org>
16805
16806 * config/rs6000/rs6000.h (MASK_MFPGPR): Delete.
16807 * config/rs6000/rs6000.c (direct_move_p): Adjust.
16808 (rs6000_secondary_reload_simple_move): Adjust.
16809 (rs6000_opt_masks): Neuter the "mfpgpr" option.
16810 * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Adjust.
16811 * config/rs6000/rs6000-cpus.def (ISA_2_5_MASKS_EMBEDDED): Adjust
16812 comment.
16813 (power6x): Adjust.
16814 * config/rs6000/rs6000.md (floatsi<mode>2_lfiwax): Adjust.
16815 (floatunssi<mode>2_lfiwzx): Adjust.
16816 (fix_trunc<mode>si2_stfiwx): Adjust.
16817 (fixuns_trunc<mode>si2_stfiwx): Adjust.
16818 * config/rs6000/rs6000.opt (mno-mfpgpr): New.
16819 (mfpgpr): Mark as deprecated.
16820 * doc/extend.texi (PowerPC Function Attributes): Delete mfpgpr.
16821 (Basic PowerPC Built-in Functions Available on ISA 2.05): Adjust.
16822 * doc/invoke.texi (RS/6000 and PowerPC Options): Delete -mmfpgpr.
16823
16824 2019-06-03 Segher Boessenkool <segher@kernel.crashing.org>
16825
16826 * config/rs6000/constraints.md (define_register_constraint "wg"):
16827 Delete.
16828 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
16829 RS6000_CONSTRAINT_wg.
16830 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
16831 (rs6000_init_hard_regno_mode_ok): Adjust.
16832 * config/rs6000/rs6000.md (*mov<mode>_softfloat32, *movdi_internal64):
16833 Delete "wg" alternatives.
16834 * doc/md.texi (Machine Constraints): Adjust.
16835
16836 2019-06-03 Alan Modra <amodra@gmail.com>
16837
16838 * bb-reorder.c (copy_bb_p): Don't overflow size calculation.
16839 (get_uncond_jump_length): Assert length less than INT_MAX and
16840 non-negative.
16841
16842 2019-06-03 Wilco Dijkstra <wdijkstr@arm.com>
16843
16844 PR middle-end/64242
16845 * builtins.c (expand_builtin_longjmp): Add frame clobbers and schedule
16846 block.
16847 (expand_builtin_nonlocal_goto): Likewise.
16848
16849 2019-06-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
16850
16851 * config/aarch64/aarch64-protos.h (aarch64_asm_output_alias): Declare.
16852 (aarch64_asm_output_external): Declare.
16853 * config/aarch64/aarch64.c (aarch64_asm_output_variant_pcs): New.
16854 (aarch64_declare_function_name): Call aarch64_asm_output_variant_pcs.
16855 (aarch64_asm_output_alias): New.
16856 (aarch64_asm_output_external): New.
16857 * config/aarch64/aarch64.h (ASM_OUTPUT_DEF_FROM_DECLS): Define.
16858 (ASM_OUTPUT_EXTERNAL): Define.
16859
16860 2019-06-03 Aldy Hernandez <aldyh@redhat.com>
16861 * tree-vrp.h (value_range_base::nonzero_p): New.
16862 (value_range_base::set_nonnull): Rename to...
16863 (value_range_base::set_nonzero): ...this.
16864 (value_range_base::set_null): Rename to...
16865 (value_range_base::set_zero): ...this.
16866 (value_range::set_nonnull): Remove.
16867 (value_range::set_null): Remove.
16868 * tree-vrp.c (range_is_null): Remove.
16869 (range_is_nonnull): Remove.
16870 (extract_range_from_binary_expr): Use value_range_base::*zero_p
16871 instead of range_is_*null.
16872 (extract_range_from_unary_expr): Same.
16873 (value_range_base::set_nonnull): Rename to...
16874 (value_range_base::set_nonzero): ...this.
16875 (value_range::set_nonnull): Remove.
16876 (value_range_base::set_null): Rename to...
16877 (value_range_base::set_zero): ...this.
16878 (value_range::set_null): Remove.
16879 (extract_range_from_binary_expr): Rename set_*null uses to
16880 set_*zero.
16881 (extract_range_from_unary_expr): Same.
16882 (union_helper): Same.
16883 * vr-values.c (get_value_range): Use set_*zero instead of
16884 set_*null.
16885 (vr_values::extract_range_from_binary_expr): Same.
16886 (vr_values::extract_range_basic): Same.
16887
16888 2019-06-03 Wilco Dijkstra <wdijkstr@arm.com>
16889
16890 PR driver/90684
16891 * opts.c (parse_and_check_align_values): Allow 4 alignment values.
16892
16893 2019-06-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16894
16895 * config/aarch64/iterators.md (MAX_OPP): New code attr.
16896 * config/aarch64/aarch64-simd.md (*aarch64_<su>abd<mode>_3):
16897 Rename to...
16898 (aarch64_<su>abd<mode>_3): ... This.
16899 (<sur>sadv16qi): Add TARGET_DOTPROD expansion.
16900
16901 2019-06-03 Richard Biener <rguenther@suse.de>
16902
16903 * tree-ssa-sccvn.c (ao_ref_init_from_vn_reference): Get original
16904 full reference tree and record in ref->ref.
16905 (vn_reference_lookup_3): Pass in original ref to
16906 ao_ref_init_from_vn_reference.
16907 (vn_reference_lookup): Likewise.
16908 * tree-ssa-sccvn.h (ao_ref_init_from_vn_reference): Adjust prototype.
16909 * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
16910 Handle non-decl bases in the original reference.
16911
16912 2019-06-03 Martin Liska <mliska@suse.cz>
16913
16914 * doc/generic.texi: Remove Java Trees.
16915
16916 2019-06-03 Martin Liska <mliska@suse.cz>
16917
16918 * fold-const.c (operand_equal_p): Fix typo as compare_tree_int
16919 returns 0 when operands are equal.
16920
16921 2019-06-03 Richard Biener <rguenther@suse.de>
16922
16923 PR tree-optimization/90716
16924 * tree-loop-distribution.c (destroy_loop): Process blocks in
16925 correct order.
16926
16927 2019-06-03 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
16928
16929 PR target/88837
16930 * vector-builder.h (vector_builder::count_dups): New method.
16931 * config/aarch64/aarch64-protos.h (aarch64_expand_sve_vector_init):
16932 Declare prototype.
16933 * config/aarch64/aarch64/sve.md (aarch64_sve_rev64<mode>): Use @.
16934 (vec_init<mode><Vel>): New pattern.
16935 * config/aarch64/aarch64.c (emit_insr): New function.
16936 (aarch64_sve_expand_vector_init_handle_trailing_constants): Likewise.
16937 (aarch64_sve_expand_vector_init_insert_elems): Likewise.
16938 (aarch64_sve_expand_vector_init_handle_trailing_same_elem): Likewise.
16939 (aarch64_sve_expand_vector_init): Define two overloaded functions.
16940
16941 2019-06-03 Alejandro Martinez <alejandro.martinezvicente@arm.com>
16942
16943 PR tree-optimization/90681
16944 * internal-fn.c (mask_load_direct): Mark as non-vectorizable again.
16945 * tree-vect-slp.c (vect_build_slp_tree_1): Add masked loads as a
16946 special case for SLP, but fail on non-groupped loads.
16947
16948 2019-06-03 Martin Liska <mliska@suse.cz>
16949
16950 * cfg.c (debug): Use TDF_DETAILS for debug and
16951 print edge info only once.
16952
16953 2019-06-02 Thomas Koenig <tkoenig@gcc.gnu.org>
16954
16955 PR fortran/90539
16956 * predict.def (PRED_FORTRAN_CONTIGUOUS): New predictor.
16957
16958 2019-06-01 Martin Sebor <msebor@redhat.com>
16959
16960 PR middle-end/90694
16961 * tree-pretty-print.c (dump_generic_node): Add parentheses.
16962
16963 2019-05-31 Jan Hubicka <jh@suse.cz>
16964
16965 * alias.c: Include ipa-utils.h.
16966 (get_alias_set): Try to complete ODR type via ODR type hash lookup.
16967 * ipa-devirt.c (prevailing_odr_type): New.
16968 * ipa-utils.h (previaling_odr_type): Declare.
16969
16970 2019-05-31 H.J. Lu <hongjiu.lu@intel.com>
16971 Hongtao Liu <hongtao.liu@intel.com>
16972
16973 PR target/89355
16974 * config/i386/i386-features.c (rest_of_insert_endbranch): Remove
16975 NOTE_INSN_DELETED_LABEL check.
16976
16977 2019-05-31 Prachi Godbole <prachi.godbole@imgtec.com>
16978 Robert Suchanek <robert.suchanek@mips.com>
16979
16980 * config/mips/mips.c (mips_expand_builtin_insn): Swap the 1st
16981 and 3rd operands of the fmadd/fmsub/maddv builtin.
16982
16983 2019-05-31 Jakub Jelinek <jakub@redhat.com>
16984
16985 * tree.h (OMP_CLAUSE__CONDTEMP__ITER): Define.
16986 * gimplify.c (gimplify_scan_omp_clauses): Allow lastprivate conditional
16987 on OMP_SIMD if not nested inside of worksharing loop that also has
16988 lastprivate conditional clause for the same decl.
16989 (gimplify_omp_for): Add _condtemp_ clauses to OMP_SIMD if needed.
16990 * omp-low.c (scan_sharing_clauses): Handle OMP_CLAUSE__CONDTEMP_ also
16991 on simd.
16992 (lower_rec_input_clauses): Likewise. Handle lastprivate conditional
16993 on simd construct.
16994 (lower_lastprivate_conditional_clauses): Handle lastprivate conditional
16995 on simd construct.
16996 (lower_lastprivate_clauses): Likewise.
16997 (lower_omp_sections): Call lower_lastprivate_conditional_clauses before
16998 calling lower_rec_input_clauses.
16999 (lower_omp_for): Likewise.
17000 (lower_omp_1): Use first rather than second OMP_CLAUSE__CONDTEMP_
17001 clause on simd construct.
17002 * omp-expand.c (expand_omp_simd): Initialize cond_var if
17003 OMP_CLAUSE__CONDTEMP_ clause is present.
17004
17005 * omp-low.c (lower_rec_simd_input_clauses): Set TREE_THIS_NOTRAP on
17006 ivar and lvar.
17007
17008 2019-05-31 Xiong Hu Luo <luoxhu@linux.ibm.com>
17009
17010 PR c/43673
17011 * c-format.c (print_char_table, scanf_char_table): Replace BADLEN with
17012 TEX_D32, TEX_D64 or TEX_D128.
17013
17014 2019-05-31 Marc Glisse <marc.glisse@inria.fr>
17015
17016 * match.pd (~(vec?cst1:cst2)): New transformation.
17017
17018 2019-05-31 Marc Glisse <marc.glisse@inria.fr>
17019
17020 * match.pd (X/[ex]D<Y/[ex]D): Handle negative denominator.
17021 ((size_t)(A /[ex] B) CMP C): New transformation.
17022
17023 2019-05-31 Richard Sandiford <richard.sandiford@arm.com>
17024
17025 * doc/md.texi: Document define_insn_and_rewrite.
17026 * rtl.def (DEFINE_INSN_AND_REWRITE): New rtx code.
17027 * gensupport.c (queue_elem): Update comment.
17028 (replace_operands_with_dups): New function.
17029 (gen_rewrite_sequence): Likewise.
17030 (process_rtx): Handle DEFINE_INSN_AND_REWRITE.
17031 * read-rtl.c (apply_subst_iterator): Likewise.
17032 (add_condition_to_rtx, named_rtx_p): Likewise.
17033 (rtx_reader::read_rtx_operand): Likewise.
17034 * config/aarch64/aarch64-sve.md
17035 (while_ult<GPI:mode><PRED_ALL:mode>_cc): Rename to...
17036 (*while_ult<GPI:mode><PRED_ALL:mode>_cc): ...this and use
17037 define_insn_and_rewrite.
17038 (*cond_<optab><mode>_any): Turn into define_insn_and_rewrites.
17039 Remove separate define_split.
17040
17041 2019-05-31 Jan Hubicka <jh@suse.cz>
17042
17043 * tree-ssa-alias.c (type_has_components_p): New function.
17044 (aliasing_component_refs_p): Use it.
17045
17046 2019-05-31 Martin Liska <mliska@suse.cz>
17047
17048 * gdbhooks.py: Add const_tree to TreePrinter.
17049
17050 2019-05-31 Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
17051
17052 PR debug/86964
17053 * common.opt (feliminate-unused-debug-symbols): Enable by default.
17054 * doc/invoke.texi (Debugging Options): Document new default of
17055 -feliminate-unused-debug-symbols and remove restriction to 'stabs'.
17056
17057 2019-05-31 Jakub Jelinek <jakub@redhat.com>
17058
17059 PR tree-optimization/90671
17060 * tree-ssa-threadupdate.c (ssa_create_duplicates): If
17061 template_block used to be empty on the first call, don't use
17062 gsi_split_seq_after and gsi_insert_seq_after, but remember whole
17063 seq with bb_seq and set it with set_bb_seq.
17064
17065 2019-05-31 Iain Sandoe <iain@sandoe.co.uk>
17066
17067 * config/i386/darwin.h (ASM_OUTPUT_MAX_SKIP_ALIGN): New.
17068
17069 2019-05-30 Bill Schmidt <wschmidt@linux.ibm.com>
17070 Michael Meissner <meissner@linux.ibm.com>
17071
17072 * config/rs6000/predicates.md (pcrel_address): New define_predicate.
17073 (prefixed_mem_operand): Likewise.
17074 (non_prefixed_mem_operand): Likewise.
17075 * config/rs6000/rs6000-protos.h (rs6000_prefixed_address): New
17076 prototype.
17077 * config/rs6000/rs6000.c (print_operand_address): Handle
17078 PC-relative addresses.
17079 (mode_supports_prefixed_address_p): New function.
17080 (rs6000_prefixed_address): New function.
17081 * config/rs6000/rs6000.h (SYMBOL_FLAG_PCREL): New #define.
17082 (SYMBOL_REF_PCREL_P): Likewise.
17083
17084 2019-05-30 Jakub Jelinek <jakub@redhat.com>
17085
17086 * gimplify.c (enum gimplify_omp_var_data): Add GOVD_CONDTEMP.
17087 (gimplify_adjust_omp_clauses_1): Handle GOVD_CONDTEMP.
17088 (gimplify_omp_for): If worksharing loop with lastprivate conditional
17089 is nested inside of parallel region, add _condtemp_ clause to both.
17090 * tree-nested.c (convert_nonlocal_omp_clauses,
17091 convert_local_omp_clauses): Ignore OMP_CLAUSE__CONDTEMP_ instead of
17092 assertion failure.
17093 * omp-general.h (struct omp_for_data): Add have_pointer_condtemp
17094 member.
17095 * omp-general.c (omp_extract_for_data): Compute it.
17096 * omp-low.c (scan_sharing_clauses): Handle OMP_CLAUSE__CONDTEMP_.
17097 (lower_rec_input_clauses): Likewise.
17098 (lower_lastprivate_conditional_clauses): If OMP_CLAUSE__CONDTEMP_
17099 clause is already present, just add one further one after it.
17100 (lower_lastprivate_clauses): Handle cond_ptr with array type.
17101 (lower_send_shared_vars): Clear _condtemp_ vars.
17102 (lower_omp_1) <case GIMPLE_ASSIGN>: Handle target data like critical
17103 or section or taskgroup.
17104 * omp-expand.c (determine_parallel_type): Disallow combining only if
17105 first OMP_CLAUSE__CONDTEMP_ has pointer type. Disallow combining
17106 of parallel sections if OMP_CLAUSE__CONDTEMP_ is present.
17107 (expand_omp_for_generic, expand_omp_for_static_nochunk,
17108 expand_omp_for_static_chunk, expand_omp_for): Use
17109 fd->have_pointer_condtemp instead of fd->lastprivate_conditional to
17110 determine if a special set of API routines are needed and if condtemp
17111 needs to be initialized, while always initialize cond_var if
17112 fd->lastprivate_conditional is non-zero.
17113
17114 2019-05-30 Bill Schmidt <wschmidt@linux.ibm.com>
17115 Michael Meissner <meissner@linux.ibm.com>
17116
17117 * config/rs6000/constraints.md (eI): New constraint.
17118 * config/rs6000/predicates.md (cint34_operand): New predicate.
17119 * config/rs6000/rs6000.h (SIGNED_16BIT_OFFSET_P): New #define.
17120 (SIGNED_34BIT_OFFSET_P): Likewise.
17121 * doc/md.texi (eI): Document constraint.
17122
17123 2019-05-30 Sylvia Taylor <sylvia.taylor@arm.com>
17124
17125 * config/aarch64/aarch64-sve.md (*fabd<mode>3): New.
17126
17127 2019-05-30 Bill Schmidt <wschmidt@linux.ibm.com>
17128 Michael Meissner <meissner@linux.ibm.com>
17129
17130 * rs6000-cpus.def (OTHER_FUSION_MASKS): New #define.
17131 (ISA_3_0_MASKS_SERVER): Mask off OTHER_FUSION_MASKS.
17132 (ISA_3_0_MASKS_IEEE): Remove OPTION_MASK_DIRECT_MOVE.
17133 (ISA_FUTURE_MASKS_SERVER): Add OPTION_MASK_PREFIXED_ADDR.
17134 (OTHER_FUTURE_MASKS): Likewise.
17135 (POWERPC_MASKS): Likewise.
17136 * rs6000.c (rs6000_option_override_internal): Error if -mpcrel is
17137 specified without -mprefixed-addr or -mcpu=future. Error if
17138 -mprefixed-addr is specified without -mcpu=future.
17139 (rs6000_opt_masks): Add entry for prefixed-addr.
17140 * rs6000.opt (mprefixed-addr): New option.
17141
17142 2019-05-30 Sam Tebbs <sam.tebbs@arm.com>
17143
17144 * aarch64/aarch64.c (aarch64_post_cfi_startproc): Add
17145 cfun->is_thunk check.
17146
17147 2019-05-30 Jakub Jelinek <jakub@redhat.com>
17148
17149 * tree-predcom.c (is_inv_store_elimination_chain): Fix a typo - lenght
17150 to length.
17151
17152 2019-05-30 Martin Liska <mliska@suse.cz>
17153
17154 * gdbinit.in: Fix 'ptc' command. Add trt
17155 that prints TREE_TYPE($).
17156
17157 2019-05-29 Bill Schmidt <wschmidt@linux.ibm.com>
17158 Alan Modra <amodra@gmail.com>
17159
17160 * config/rs6000/rs6000.c (rs6000_call_template_1): Handle pcrel
17161 calls here...
17162 (rs6000_indirect_call_template_1): ...and here.
17163 (rs6000_pltseq_template): Handle plt_pcrel34. Rework tocsave,
17164 plt16_ha, plt16_lo, mtctr indirect calls. Use
17165 rs6000_pltseq_enum.
17166 (rs6000_decl_ok_for_sibcall): New function.
17167 (rs6000_function_ok_for_sibcall): Refactor.
17168 (rs6000_longcall_ref): Use UNSPEC_PLT_PCREL when pcrel.
17169 (rs6000_call_aix): Don't emit toc restore rtl for indirect calls
17170 when pcrel. Reorganize.
17171 (rs6000_sibcall_aix): Don't add r2 to function usage when pcrel.
17172 * rs6000.h (rs6000_pltseq_enum): New enum.
17173 * rs6000.md (UNSPEC_PLT_PCREL): New unspec.
17174 (*pltseq_tocsave): Use rs6000_pltseq_enum.
17175 (*pltseq_plt16_ha): Likewise.
17176 (*pltseq_plt16_lo): Likewise.
17177 (*pltseq_mtctr): Likewise.
17178 (*pltseq_plt_pcrel): New insn.
17179 (*call_local_aix): Handle @notoc calls.
17180 (*call_value_local_aix): Likewise.
17181 (*call_nonlocal_aix): Adjust lengths for pcrel calls.
17182 (*call_value_nonlocal_aix): Likewise.
17183 (*call_indirect_pcrel): New insn.
17184 (*call_value_indirect_pcrel): Likewise.
17185
17186 2019-05-29 Uroš Bizjak <ubizjak@gmail.com>
17187
17188 * config/i386/sse.md (*save_multiple<mode>): Rename from
17189 save_multiple<mode>.
17190 (*restore_multiple<mode>): Rename from restore_multiple<mode>.
17191 (*restore_multiple_and_return<mode>): Rename from
17192 restore_multiple_and_return<mode>.
17193 (*restore_multiple_leave_return<mode>): Rename from
17194 restore_multiple_leave_return<mode>.
17195
17196 2019-05-29 Yoshinori Sato <ysato@users.sourceforge.jp>
17197
17198 * config.gcc (rx-*-linux*): New target.
17199 * config/rx/elf.opt: New file.
17200 * config/rx/linux.h: Likewise.
17201 * config/rx/t-linux: Likewise.
17202 * config/rx/rx.c (TARGET_SAVE_ACC_REGISTER): If not defined,
17203 make it zero.
17204 * config/rx/rx.h (ASM_APP_ON): Allow to be overridden.
17205 (ASM_APP_OFF): Likewise.
17206 * config/rx/rx.opt: Drop -msim and -mas100-syntax, they were
17207 moved elsewhere.
17208
17209 2019-05-29 Jan Hubicka <jh@suse.cz>
17210
17211 * tree-ssa-alias.c (same_type_for_tbaa): Return ture if main
17212 variants are pointer equivalent.
17213
17214 2019-05-29 Alejandro Martinez <alejandro.martinezvicente@arm.com>
17215
17216 * config/aarch64/aarch64-c.c: Added TARGET_SVE2.
17217 * config/aarch64/aarch64-sve2.md: New file.
17218 (<u>avg<mode>3_floor): New pattern.
17219 (<u>avg<mode>3_ceil): Likewise.
17220 (*<sur>h<addsub><mode>): Likewise.
17221 * config/aarch64/aarch64.h: Added AARCH64_ISA_SVE2 and TARGET_SVE2.
17222 * config/aarch64/aarch64.md: Include aarch64-sve2.md.
17223
17224 2019-05-29 Jakub Jelinek <jakub@redhat.com>
17225
17226 PR bootstrap/90543
17227 * optc-save-gen.awk: In cl_optimization_print, use correct condition
17228 for var_opt_string printing. In cl_optimization_print_diff, print
17229 (null) instead of invoking undefined behavior if one of the
17230 var_opt_string pointers is NULL and use && instead of first || in the
17231 guarding condition. For var_target_other options, handle const char *
17232 target variables similarly to const char * optimize node variables.
17233
17234 2019-05-29 Sam Tebbs <sam.tebbs@arm.com>
17235
17236 * config/aarch64/aarch64-builtins.c (aarch64_builtins): Add
17237 AARCH64_PAUTH_BUILTIN_AUTIB1716 and AARCH64_PAUTH_BUILTIN_PACIB1716.
17238 * config/aarch64/aarch64-builtins.c (aarch64_init_pauth_hint_builtins):
17239 Add autib1716 and pacib1716 initialisation.
17240 * config/aarch64/aarch64-builtins.c (aarch64_expand_builtin): Add checks
17241 for autib1716 and pacib1716.
17242 * config/aarch64/aarch64-protos.h (aarch64_key_type,
17243 aarch64_post_cfi_startproc): Define.
17244 * config/aarch64/aarch64-protos.h (aarch64_ra_sign_key): Define extern.
17245 * config/aarch64/aarch64.c (aarch64_handle_standard_branch_protection,
17246 aarch64_handle_pac_ret_protection): Set default sign key to A.
17247 * config/aarch64/aarch64.c (aarch64_expand_epilogue,
17248 aarch64_expand_prologue): Add check for b-key.
17249 * config/aarch64/aarch64.c (aarch64_ra_sign_key,
17250 aarch64_post_cfi_startproc, aarch64_handle_pac_ret_b_key): Define.
17251 * config/aarch64/aarch64.h (TARGET_ASM_POST_CFI_STARTPROC): Define.
17252 * config/aarch64/aarch64.c (aarch64_pac_ret_subtypes): Add "b-key".
17253 * config/aarch64/aarch64.md (unspec): Add UNSPEC_AUTIA1716,
17254 UNSPEC_AUTIB1716, UNSPEC_AUTIASP, UNSPEC_AUTIBSP, UNSPEC_PACIA1716,
17255 UNSPEC_PACIB1716, UNSPEC_PACIASP, UNSPEC_PACIBSP.
17256 * config/aarch64/aarch64.md (do_return): Add check for b-key.
17257 * config/aarch64/aarch64.md (<pauth_mnem_prefix>sp): Replace
17258 pauth_hint_num_a with pauth_hint_num.
17259 * config/aarch64/aarch64.md (<pauth_mnem_prefix>1716): Replace
17260 pauth_hint_num_a with pauth_hint_num.
17261 * config/aarch64/aarch64.opt (msign-return-address=): Deprecate.
17262 * config/aarch64/iterators.md (PAUTH_LR_SP): Add UNSPEC_AUTIASP,
17263 UNSPEC_AUTIBSP, UNSPEC_PACIASP, UNSPEC_PACIBSP.
17264 * config/aarch64/iterators.md (PAUTH_17_16): Add UNSPEC_AUTIA1716,
17265 UNSPEC_AUTIB1716, UNSPEC_PACIA1716, UNSPEC_PACIB1716.
17266 * config/aarch64/iterators.md (pauth_mnem_prefix): Add UNSPEC_AUTIA1716,
17267 UNSPEC_AUTIB1716, UNSPEC_PACIA1716, UNSPEC_PACIB1716, UNSPEC_AUTIASP,
17268 UNSPEC_AUTIBSP, UNSPEC_PACIASP, UNSPEC_PACIBSP.
17269 * config/aarch64/iterators.md (pauth_hint_num_a): Replace
17270 UNSPEC_PACI1716 and UNSPEC_AUTI1716 with UNSPEC_PACIA1716 and
17271 UNSPEC_AUTIA1716 respectively.
17272 * config/aarch64/iterators.md (pauth_hint_num_a): Rename to
17273 pauth_hint_num and add UNSPEC_PACIBSP, UNSPEC_AUTIBSP,
17274 UNSPEC_PACIB1716, UNSPEC_AUTIB1716.
17275 * doc/invoke.texi (-mbranch-protection): Add b-key type.
17276 * config/aarch64/aarch64-bti-insert.c (aarch64_pac_insn_p): Rename
17277 UNSPEC_PACISP to UNSPEC_PACIASP and UNSPEC_PACIBSP.
17278
17279 2019-05-29 Jakub Jelinek <jakub@redhat.com>
17280
17281 * gimplify.c (struct gimplify_omp_ctx): Add clauses member.
17282 (gimplify_scan_omp_clauses): Initialize ctx->clauses.
17283 (gimplify_adjust_omp_clauses_1): Transform lastprivate conditional
17284 explicit clause on combined parallel into implicit shared clause.
17285 (gimplify_adjust_omp_clauses): Move lastprivate conditional clause
17286 and firstprivate if the decl has one too from combined parallel to
17287 the worksharing construct.
17288
17289 2019-05-28 Bill Schmidt <wschmidt@linux.ibm.com>
17290 Michael Meissner <meissner@linux.ibm.com>
17291
17292 * config/rs6000/rs6000-cpus.def (OTHER_FUTURES_MASK): New #define.
17293
17294 2019-05-28 Michael Meissner <meissner@linux.ibm.com>
17295
17296 * rtl.h (LABEL_REF_P): New #define.
17297
17298 2019-05-28 John David Anglin <danglin@gcc.gnu.org>
17299
17300 * config/pa/pa.c (hppa_profile_hook): Remove offset adjustment.
17301
17302 2019-05-28 Alejandro Martinez <alejandro.martinezvicente@arm.com>
17303
17304 * internal-fn.c: Marked mask_load_direct as vectorizable.
17305 * tree-data-ref.c (data_ref_compare_tree): Fixed comment typo.
17306 * tree-vect-data-refs.c (can_group_stmts_p): Allow masked loads to be
17307 combined even if masks different with allow_slp_p param.
17308 (vect_analyze_data_ref_accesses): Mark SLP only vectorizable groups.
17309 * tree-vect-loop.c (vect_dissolve_slp_only_groups): New function to
17310 dissolve SLP-only vectorizable groups when SLP has been discarded.
17311 (vect_analyze_loop_2): Call vect_dissolve_slp_only_groups when needed.
17312 * tree-vect-slp.c (vect_get_and_check_slp_defs): Check masked loads
17313 masks.
17314 (vect_build_slp_tree_1): Fixed comment typo.
17315 (vect_build_slp_tree_2): Include masks from masked loads in SLP tree.
17316 * tree-vect-stmts.c (vectorizable_load): Allow vectorizaion of masked
17317 loads for SLP only.
17318 * tree-vectorizer.h (_stmt_vec_info): Added flag for SLP-only
17319 vectorizable.
17320 * tree-vectorizer.c (vec_info::new_stmt_vec_info): Likewise.
17321
17322 2019-05-28 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
17323
17324 * config/alpha/alpha.c [TARGET_ABI_OSF] (alpha_output_mi_thunk_osf):
17325 Remove obsolete use_thunk reference.
17326 * config/i386/i386.c (x86_output_mi_thunk): Likewise.
17327 * config/ia64/ia64.c (ia64_output_mi_thunk): Likewise.
17328 * config/nios2/nios2.c (nios2_asm_output_mi_thunk): Likewise.
17329 * config/or1k/or1k.c (or1k_output_mi_thunk): Likewise.
17330 * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Likewise.
17331 * config/sh/sh.c (sh_output_mi_thunk): Likewise.
17332 * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
17333 * config/tilegx/tilegx.c (tilegx_output_mi_thunk): Likewise.
17334 * config/tilepro/tilepro.c (tilepro_asm_output_mi_thunk): Likewise.
17335
17336 2019-05-28 Nathan Sidwell <nathan@acm.org>
17337
17338 * tree.h (IDENTIFIER_ANON_P): New.
17339 (anon_aggrname_format, anon_aggname_p): Don't declare.
17340 (make_anon_name): Declare.
17341 * lto-streamer-out.c (DFS::DFS_write_tree_body): Use IDENTIFIER_ANON_P.
17342 (hash_tree): Likewise.
17343 * tree-streamer-out.c (write_ts_decl_minimal_tree): Likewise.
17344 * tree.c (anon_aggrname_p, anon_aggrname_format): Delete.
17345 (anon_cnt, make_anon_name): New.
17346
17347 2019-05-28 Martin Liska <mliska@suse.cz>
17348
17349 PR other/90315
17350 * opts-global.c (decode_options): Print help for all
17351 help_option_arguments.
17352 * opts.c (print_help): Add new argument.
17353 (common_handle_option): Remember all values into
17354 help_option_arguments.
17355 * opts.h (print_help): Add new argument.
17356
17357 2019-05-28 Martin Liska <mliska@suse.cz>
17358
17359 PR ipa/90555
17360 * ipa-icf-gimple.c (func_checker::compare_loops): New function.
17361 * ipa-icf-gimple.h (func_checker::compare_loops): Likewise.
17362 (func_checker::compare_bb): Call compare_loops.
17363
17364 2019-05-27 Jakub Jelinek <jakub@redhat.com>
17365
17366 * gimplify.c (gimplify_scan_omp_clauses): Allow lastprivate conditional
17367 on sections construct.
17368 * omp-low.c (lower_lastprivate_conditional_clauses): Handle sections
17369 construct.
17370 (lower_omp_sections): Handle lastprivate conditional.
17371 (lower_omp_1) <case GIMPLE_ASSIGN>: Handle sections construct with
17372 lastprivate_conditional_map.
17373 * omp-expand.c (expand_omp_sections): Handle lastprivate conditional.
17374
17375 * omp-low.c (lower_omp_1) <case GIMPLE_ASSIGN>: Look through ordered,
17376 critical, taskgroup and section regions when looking for a region
17377 with non-NULL lastprivate_conditional_map.
17378
17379 2019-05-27 Uroš Bizjak <ubizjak@gmail.com>
17380
17381 * config/i386/i386.c (ix86_gen_add3): Remove indirect function.
17382 (*ix86_gen_sub3): Ditto.
17383 (*ix86_gen_sub3_carry): Ditto.
17384 (*ix86_gen_one_cmpl2): Ditto.
17385 (*ix86_gen_andsp): Ditto.
17386 (ix86_init_large_pic_reg): Use gen_add2_insn instead of ix86_gen_add3.
17387 (gen_and2_insn): New static function.
17388 (ix86_expand_prologue): Use gen_and2_insn instead of ix86_gen_andsp.
17389 Use gen_add3_insn instead of ix86_gen_add3.
17390 (ix86_expand_split_stack_prologue): Use gen_add2_insn
17391 instead of ix86_gen_add3.
17392 (legitimize_tls_address): Use gen_add2_insn instead of ix86_gen_add3.
17393 Use gen_sub3_insn instead of ix86_gen_sub3.
17394 * config/i386-expand.c (ix86_split_long_move): Use gen_add2_insn
17395 instead of ix86_gen_add3.
17396 (ix86_expand_strlensi_unroll_1): Use gen_add2_insn instead of
17397 ix86_gen_add3. Use gen_sub3_insn instead of ix86_gen_sub3.
17398 (construct_plt_address): Use gen_add2_insn instead of ix86_gen_add3.
17399 * config/i386/i386-options.c (ix86_option_override_internal):
17400 Do not initialize ix86_gen_add3, ix86_gen_sub3, ix86_gen_sub3_carry,
17401 ix86_gen_one_cmpl2 and ix86_gen_andsp.
17402
17403 2019-05-27 Eric Botcazou <ebotcazou@adacore.com>
17404
17405 * dwarf2out.c (resolve_args_picking_1): Deal with DW_OP_GNU_addr_index
17406 and DW_OP_GNU_const_index opcodes.
17407
17408 2019-05-27 Uroš Bizjak <ubizjak@gmail.com>
17409
17410 * config/i386/i386.h (STACK_SIZE_MODE): Define.
17411
17412 2019-05-27 Richard Biener <rguenther@suse.de>
17413
17414 PR tree-optimization/90637
17415 * tree-ssa-sink.c (statement_sink_location): Honor the
17416 computed sink location for single-uses.
17417
17418 2019-05-27 Richard Biener <rguenther@suse.de>
17419
17420 PR middle-end/90610
17421 * match.pd (vec_perm): Avoid clobbering op0 when not generating
17422 a bit-insert.
17423
17424 2019-05-26 Uroš Bizjak <ubizjak@gmail.com>
17425
17426 * config/i386/i386.md (@sub<mode>3_carry): Rename
17427 from sub<mode>3_carry.
17428 (@leave_<mode>): New expander.
17429 (*leave): Rename from leave.
17430 (*leave_rex64): Rename from leave_rex64.
17431 (@monitorx_<mode>): Rename from monitorx_<mode>.
17432 (@clzero_<mode>): Rename from clzero_<mode>.
17433 * config/i386/sse.md (@sse3_monitor_<mode>): Rename
17434 from sse3_monitor_<mode>.
17435 * config/i386/i386.c (ix86_gen_sub3_carry): Remove indirect function.
17436 (*ix86_gen_leave): Ditto.
17437 (*ix86_gen_monitor): Ditto.
17438 (*ix86_gen_monitorx): Ditto.
17439 (*ix86_gen_clzero): Ditto.
17440 (ix86_emit_leave): Use gen_leave instead of ix86_gen_leave.
17441 * config/i386/i386-expand.c (ix86_expand_strlensi_unroll_1):
17442 Use gen_sub3_carry instead of ix86_gen_sub3_carry.
17443 (ix86_expand_builtin) <case IX86_BUILTIN_MONITOR>:
17444 Use gen_sse3_monitor instead of ix86_gen_monitor.
17445 <case IX86_BUILTIN_MONITORX>: Use gen_monitorx
17446 instead of ix86_gen_monitorx.
17447 <case IX86_BUILTIN_CLZERO>: Use gen_clzero
17448 instead of ix86_gen_clzero.
17449 * config/i386/i386-options.c (ix86_option_override_internal):
17450 Do not initialize ix86_gen_leave, ix86_gen_sub3_carry,
17451 ix86_gen_monitor, ix86_gen_monitorx and ix86_gen_clzero.
17452
17453 2019-05-26 Uroš Bizjak <ubizjak@gmail.com>
17454
17455 * config/i386/i386.md (@tls_global_dynamic_64_<mode>):
17456 Rename from tls_global_dynamic_64_<mode>.
17457 (@tls_local_dynamic_base_64_<mode>): Rename from
17458 tls_local_dynamic_base_64_<mode>.
17459 * config/i386/i386.c (*ix86_gen_tls_global_dynamic_64):
17460 Remove indirect function.
17461 (*ix86_gen_tls_local_dynamic_base_64): Ditto.
17462 (legitimize_tls_address): Use gen_tls_global_dynamic_64 function
17463 instead of ix86_gen_tls_global_dynamic_64.
17464 Use gen_tls_local_dynamic_base_64 instead of
17465 ix86_gen_tls_local_dynamic_base_64.
17466 * config/i386/i386-options.c (ix86_option_override_internal):
17467 Do not initialize ix86_gen_tls_global_dynamic_64 and
17468 ix86_gen_tls_local_dynamic_base_64.
17469
17470 2019-05-26 Uroš Bizjak <ubizjak@gmail.com>
17471
17472 * config/i386/i386.md (@pro_epilogue_adjust_stack_add_<mode>)
17473 Rename from pro_epilogue_adjust_stack_<mode>_add.
17474 (@pro_epilogue_adjust_stack_sub_<mode>)
17475 Rename from pro_epilogue_adjust_stack_<mode>_sub.
17476 (@allocate_stack_worker_probe_<mode>):
17477 Rename from allocate_stack_worker_probe_<mode>.
17478 (allocate_stack): Use gen_allocate_stack_worker_probe.
17479 (probe_stack): Use gen_probe_stack_1.
17480 (@probe_stack_1_<mode>): Rename from probe_stack_<mode>.
17481 (@adjust_stack_and_probe_<mode>): Rename from
17482 adjust_stack_and_probe<mode>.
17483 (@probe_stack_range_<mode>): Rename from probe_stack_range<mode>.
17484 (stack_protect_set): Use gen_stack_protect_set_1.
17485 (@stack_protect_set_1_<mode>): Rename from stack_protect_set_<mode>.
17486 (stack_protect_test): Use gen_stack_protect_test_1.
17487 (@stack_protect_test_1_<mode>): Rename from stack_protect_test_<mode>.
17488 * config/i386/i386.c (*ix86_gen_allocate_stack_worker):
17489 Remove indirect function.
17490 (*ix86_gen_adjust_stack_and_probe): Ditto.
17491 (*ix86_gen_probe_stack_range): Ditto.
17492 (pro_epilogue_adjust_stack): Use gen_pro_epilogue_adjust_stack_add
17493 instead of gen_pro_epilogue_adjust_stack_{si,di}_add.
17494 (ix86_adjust_stack_and_probe_stack_clash): Use
17495 gen_adjust_stack_and_probe instead of ix86_gen_adjust_stack_and_probe.
17496 (ix86_adjust_stack_and_probe): Ditto.
17497 (ix86_emit_probe_stack_range): Use gen_probe_stack_range instead
17498 of ix86_gen_probe_stack_range.
17499 (ix86_expand_prologue): Use gen_pro_epilogue_adjust_stack_sub
17500 instead of gen_pro_epilogue_adjust_stack_{si,di}_sub.
17501 * config/i386/x86-tune-sched.c (ix86_macro_fusion_pair_p):
17502 Include insn-opinit.h. Use code_for_stack_protect_test_1 instead of
17503 CODE_FOR_stack_protect_test_{si,di}.
17504 * config/i386/i386-options.c (ix86_option_override_internal):
17505 Do not initialize ix86_gen_allocate_stack_worker,
17506 ix86_gen_adjust_stack_and_probe and ix86_gen_probe_stack_range.
17507
17508 2019-05-26 Gerald Pfeifer <gerald@pfeifer.com>
17509
17510 * doc/invoke.texi (Link Options): Many editorial changes around
17511 -flinker-output.
17512
17513 2019-05-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
17514
17515 * doc/invoke.texi (x86 Options, -mvect8-ret-in-mem): Remove
17516 pre-Solaris 11 referene and most Studio compiler details.
17517
17518 2019-05-24 John David Anglin <danglin@gcc.gnu.org>
17519
17520 PR target/90530
17521 * config/pa/pa.c (pa_can_change_mode_class): Accept mode changes from
17522 DImode to SImode in floating-point registers on 64-bit target.
17523 * config/pa/pa.md (umulsidi3): Change nonimmediate_operand to
17524 register_operand in xmpyu patterns.
17525
17526 2019-05-24 Jakub Jelinek <jakub@redhat.com>
17527
17528 * tree-core.h (enum omp_clause_code): Add OMP_CLAUSE__CONDTEMP_.
17529 * tree.h (OMP_CLAUSE_DECL): Use OMP_CLAUSE__CONDTEMP_ instead of
17530 OMP_CLAUSE__REDUCTEMP_.
17531 * tree.c (omp_clause_num_ops, omp_clause_code_name): Add
17532 OMP_CLAUSE__CONDTEMP_.
17533 (walk_tree_1): Handle OMP_CLAUSE__CONDTEMP_.
17534 * tree-pretty-print.c (dump_omp_clause): Likewise.
17535 * tree-nested.c (convert_nonlocal_omp_clauses,
17536 convert_local_omp_clauses): Likewise.
17537 * gimplify.c (enum gimplify_omp_var_data): Use hexadecimal constants
17538 instead of decimal. Add GOVD_LASTPRIVATE_CONDITIONAL.
17539 (gimplify_scan_omp_clauses): Don't reject lastprivate conditional
17540 on OMP_FOR.
17541 (gimplify_omp_for): Warn and disable conditional modifier from
17542 lastprivate on loop iterators.
17543 * omp-general.h (struct omp_for_data): Add lastprivate_conditional
17544 member.
17545 * omp-general.c (omp_extract_for_data): Initialize it.
17546 * omp-low.c (struct omp_context): Add lastprivate_conditional_map
17547 member.
17548 (delete_omp_context): Delete it.
17549 (lower_lastprivate_conditional_clauses): New function.
17550 (lower_lastprivate_clauses): Add BODY_P and CSTMT_LIST arguments,
17551 handle lastprivate conditional clauses.
17552 (lower_reduction_clauses): Add CLIST argument, emit it into
17553 the critical section if any.
17554 (lower_omp_sections): Adjust lower_lastprivate_clauses and
17555 lower_reduction_clauses callers.
17556 (lower_omp_for_lastprivate): Add CLIST argument, pass it through
17557 to lower_lastprivate_clauses.
17558 (lower_omp_for): Call lower_lastprivate_conditional_clauses, adjust
17559 lower_omp_for_lastprivate and lower_reduction_clauses callers, emit
17560 clist into a critical section if not emitted there already by
17561 lower_reduction_clauses.
17562 (lower_omp_taskreg, lower_omp_teams): Adjust lower_reduction_clauses
17563 callers.
17564 (lower_omp_1): Handle GIMPLE_ASSIGNs storing into lastprivate
17565 conditional variables.
17566 * omp-expand.c (determine_parallel_type): Punt if OMP_CLAUSE__CONDTEMP_
17567 clause is present.
17568 (expand_omp_for_generic, expand_omp_for_static_nochunk,
17569 expand_omp_for_static_chunk): Handle lastprivate conditional.
17570 (expand_omp_for): Handle fd.lastprivate_conditional like
17571 fd.have_reductemp.
17572
17573 2019-05-24 Andrew Stubbs <ams@codesourcery.com>
17574
17575 * config/gcn/gcn-run.c (main): Set a non-zero return value if the
17576 kernel does not exit cleanly.
17577 * config/gcn/gcn.md (gcn_return): Insert s_waitcnt before s_dcache_wb.
17578
17579 2019-05-24 Jason Merrill <jason@redhat.com>
17580
17581 Revert:
17582 * gimplify.c (gimplify_cond_expr): Don't check TREE_ADDRESSABLE.
17583
17584 2019-05-24 Richard Biener <rguenther@suse.de>
17585
17586 PR testsuite/90607
17587 * tree-loop-distribution.c (struct partition): Add location
17588 member.
17589 (partition_alloc): Initialize all fields.
17590 (generate_memset_builtin): Use the location recorded in the
17591 partition for the generated call.
17592 (generate_memcpy_builtin): Likewise.
17593 (classify_partition): Record the location of a single store
17594 as location for the partition.
17595
17596 2019-05-24 Andrew Stubbs <ams@codesourcery.com>
17597
17598 * config/gcn/gcn.c (gcn_expand_prologue): Use gen_addsi3_scalar_carry
17599 for lo-part.
17600
17601 2019-05-24 Matthew Malcomson <matthew.malcomson@arm.com>
17602
17603 PR target/90588
17604 * common/config/aarch64/aarch64-common.c
17605 (aarch64_rewrite_selected_cpu): Change local temporary variable
17606 type from unsigned long to uint64_t.
17607 * config/aarch64/aarch64-protos.h (aarch64_parse_extension,
17608 aarch64_get_extension_string_for_isa_flags): Change declaration to
17609 match new definition by replacing unsigned long with uint64_t.
17610
17611 2019-05-24 Jakub Jelinek <jakub@redhat.com>
17612
17613 PR target/90568
17614 * config/i386/x86-tune-sched.c (ix86_macro_funsion_pair_p): Call
17615 gen_attr_type just once instead of 4-7 times. Formatting fixes.
17616 Handle stack_protect_test_<mode> codegen similarly to corresponding
17617 sub instruction.
17618
17619 2019-05-23 Iain Sandoe <iain@sandoe.co.uk>
17620
17621 * config/i386/darwin.h: Reject -mfentry*.
17622 * doc/sourcebuild.texi: Document mfentry target support.
17623
17624 2019-05-23 Bill Schmidt <wschmidt@linux.ibm.com>
17625
17626 * config/rs6000/rs6000.c (rs6000_global_entry_point_needed_p):
17627 Rename to rs6000_global_entry_point_prologue_needed_p. Return
17628 false for PC-relative functions.
17629 (rs6000_output_function_prologue): Change called function name to
17630 rs6000_global_entry_point_prologue_needed_p. Emit ".localentry
17631 name,1" for PC-relative functions.
17632 (rs6000_elf_declare_function_name): Change called function name to
17633 rs6000_global_entry_point_prologue_needed_p.
17634
17635 2019-05-23 Uroš Bizjak <ubizjak@gmail.com>
17636
17637 PR target/90552
17638 * config/i386/i386.c (gen_rtx_cost):
17639 Use ix86_tune_cost instead of ix86_cost.
17640
17641 2019-05-23 Bill Schmidt <wschmidt@linux.ibm.com>
17642 Michael Meissner <meissner@linux.ibm.com>
17643 Segher Boessenkool <segher@kernel.crashing.org>
17644
17645 * config/rs6000/rs6000-cpus.def (ISA_FUTURE_MASKS_SERVER): Add
17646 OPTION_MASK_PCREL.
17647 (POWERPC_MASKS): Add OPTION_MASK_PCREL.
17648 * config/rs6000/rs6000-protos.h (rs6000_pcrel_p): New prototype.
17649 (rs6000_fndecl_pcrel_p): Likewise.
17650 * config/rs6000/rs6000.c (rs6000_option_override_internal): Report
17651 error if -mpcrel is requested without -mcpu=future.
17652 (rs6000_opt_masks): Add entry for pcrel.
17653 (rs6000_fndecl_pcrel_p): New function.
17654 (rs6000_pcrel_p): Likewise.
17655 * config/rs6000/rs6000.opt (mpcrel): New option.
17656 * doc/invoke.texi: Document -mpcrel and -mno-pcrel.
17657
17658 2019-05-23 Jan Hubicka <jh@suse.cz>
17659 Martin Liska <mliska@suse.cz>
17660
17661 PR tree-optimization/90576
17662 * tree-ssa-alias.c (compare_sizes): Remove dead calls to
17663 poly_int_tree_p.
17664 (aliasing_component_refs_p): Fix three way size compare conditional;
17665 give up earlier in case we can not decide on equivalence.
17666
17667 2019-05-23 Bill Schmidt <wschmidt@linux.ibm.com>
17668 Michael Meissner <meissner@linux.ibm.com>
17669 Segher Boessenkool <segher@kernel.crashing.org>
17670
17671 * config.gcc: Add future cpu.
17672 * config/rs6000/driver-rs6000.c (asm_names): Add future cpu.
17673 * config/rs6000/rs6000-cpus.def (ISA_FUTURE_MASKS_SERVER): New
17674 #define.
17675 (POWERPC_MASKS): Add OPTION_MASK_FUTURE.
17676 (RS6000_CPU): New instantiation for future cpu.
17677 * config/rs6000/rs6000-opts.h (enum processor_type): Add
17678 PROCESSOR_FUTURE.
17679 * config/rs6000/rs6000-string.c (expand_compare_loop): Treat
17680 PROCESSOR_FUTURE like PROCESSOR_POWER9 for now.
17681 * config/rs6000/rs6000-tables.opt: Regenerate.
17682 * config/rs6000/rs6000.c (rs6000_option_override_internal): Treat
17683 PROCESSOR_FUTURE similarly to PROCESSOR_POWER9 for now.
17684 (rs6000_machine_from_flags): Handle future cpu.
17685 (rs6000_reassociation_width): Treat PROCESSOR_FUTURE like
17686 PROCESSOR_POWER9 for now.
17687 (rs6000_adjust_cost): Likewise.
17688 (rs6000_issue_rate): Likewise.
17689 (rs6000_register_move_cost): Likewise.
17690 (rs6000_opt_masks): Add entry for future.
17691 * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add future cpu.
17692 (MASK_FUTURE): New #define.
17693 * config/rs6000/rs6000.md (define_attr "cpu"): Add future cpu.
17694 * config/rs6000/rs6000.opt (mfuture): New target option.
17695 * doc/invoke.texi (mcpu): Add future cpu.
17696
17697 2019-05-23 Martin Liska <mliska@suse.cz>
17698
17699 PR c++/90587
17700 * tree-ssa-uninit.c (value_sat_pred_p): The result of &
17701 operation points to a temporary (pointed via tree_to_wide_ref)
17702 that is out of scope after the &.
17703
17704 2019-05-23 Jonathan Wakely <jwakely@redhat.com>
17705
17706 PR c++/90592
17707 * doc/extend.texi (Function Names): Add missing word.
17708
17709 2019-05-23 Richard Biener <rguenther@suse.de>
17710
17711 PR tree-optimization/88440
17712 * opts.c (default_options_table): Enable -ftree-loop-distribute-patterns
17713 at -O[2s]+.
17714 * tree-loop-distribution.c (generate_memset_builtin): Fold the
17715 generated call.
17716 (generate_memcpy_builtin): Likewise.
17717 (distribute_loop): Pass in whether to only distribute patterns.
17718 (prepare_perfect_loop_nest): Also allow size optimization.
17719 (pass_loop_distribution::execute): When optimizing a loop
17720 nest for size allow pattern replacement.
17721
17722 2019-05-23 Jakub Jelinek <jakub@redhat.com>
17723
17724 PR target/90568
17725 * config/i386/i386.md (stack_protect_test_<mode>): Use sub instead
17726 of xor.
17727
17728 2019-05-23 Martin Liska <mliska@suse.cz>
17729
17730 PR sanitizer/90570
17731 * gimplify.c (gimplify_target_expr): Skip TREE_STATIC target
17732 expression similarly to gimplify_decl_expr.
17733
17734 2019-05-23 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
17735
17736 * cse.c (cse_dump_path): s/dump_file/f.
17737
17738 2019-05-22 David Malcolm <dmalcolm@redhat.com>
17739
17740 PR c++/90462
17741 * diagnostic-format-json.cc: Include "selftest.h".
17742 (json_from_expanded_location): Only add "file" key for non-NULL
17743 file strings.
17744 (json_from_location_range): Don't add "start" and "finish"
17745 children if they are UNKNOWN_LOCATION.
17746 (selftest::test_unknown_location): New selftest.
17747 (selftest::test_bad_endpoints): New selftest.
17748 (selftest::diagnostic_format_json_cc_tests): New function.
17749 * json.cc (json::object::get): New function.
17750 (selftest::test_object_get): New selftest.
17751 (selftest::json_cc_tests): Call it.
17752 * json.h (json::object::get): New decl.
17753 * selftest-run-tests.c (selftest::run_tests): Call
17754 selftest::diagnostic_format_json_cc_tests.
17755 * selftest.h (selftest::diagnostic_format_json_cc_tests): New
17756 decl.
17757
17758 2019-05-22 Kwok Cheung Yeung <kcy@codesourcery.com>
17759 Andrew Stubbs <amd@codesourcery.com>
17760
17761 * config.gcc (gcc_cv_initfini_array): Set for AMD GCN.
17762 * config/gcn/gcn-run.c (init_array_kernel, fini_array_kernel): New.
17763 (kernel): Rename to...
17764 (main_kernel): ... this.
17765 (load_image): Load _init_array and _fini_array kernels.
17766 (run): Add argument for kernel to run.
17767 (main): Run init_array_kernel before main_kernel, and
17768 fini_array_kernel after.
17769 * config/gcn/gcn.c (gcn_handle_amdgpu_hsa_kernel_attribute): Allow
17770 amdgpu_hsa_kernel attribute on functions.
17771 (gcn_disable_constructors): Delete.
17772 (TARGET_ASM_CONSTRUCTOR, TARGET_ASM_DESTRUCTOR): Delete.
17773 * config/gcn/crt0.c (size_t): Define.
17774 (_init_array, _fini_array): New.
17775 (__preinit_array_start, __preinit_array_end,
17776 __init_array_start, __init_array_end,
17777 __fini_array_start, __fini_array_end): Declare weak references.
17778
17779 2019-05-22 Andrew Stubbs <ams@codesourcery.com>
17780
17781 * config/gcn/gcn.c (gcn_trampoline_init): Call "sorry" on GCN5.
17782
17783 2019-05-22 Jason Merrill <jason@redhat.com>
17784
17785 * gimplify.c (gimplify_cond_expr): Don't check TREE_ADDRESSABLE.
17786
17787 2019-05-22 H.J. Lu <hongjiu.lu@intel.com>
17788
17789 PR target/88483
17790 * config/i386/i386-options.c (ix86_init_machine_status): Set
17791 stack_frame_required to true.
17792 * config/i386/i386.c (ix86_get_frame_size): New function.
17793 (ix86_frame_pointer_required): Replace get_frame_size with
17794 ix86_get_frame_size.
17795 (ix86_compute_frame_layout): Likewise.
17796 (ix86_find_max_used_stack_alignment): Changed to void. Set
17797 stack_frame_required.
17798 (ix86_finalize_stack_frame_flags): Always call
17799 ix86_find_max_used_stack_alignment. Replace get_frame_size with
17800 ix86_get_frame_size.
17801 * config/i386/i386.h (machine_function): Add stack_frame_required.
17802
17803 2019-05-22 Uroš Bizjak <ubizjak@gmail.com>
17804
17805 * config/i386/sse.md (sse_cvtpi2ps): Use TARGET_MMX in insn condition.
17806
17807 2019-05-22 Matthew Malcomson <matthew.malcomson@arm.com>
17808
17809 * common/config/aarch64/aarch64-common.c
17810 (struct aarch64_option_extension, struct processor_name_to_arch,
17811 struct arch_to_arch_name, aarch64_parse_extension, opt_ext_cmp,
17812 aarch64_contains_opt,
17813 aarch64_get_extension_string_for_isa_flags): Change type of
17814 variables storing flags to uint64_t.
17815 * config/aarch64/aarch64-option-extensions.def (sve2, sve2-sm4,
17816 sve2-aes, sve2-sha3, bitperm): New optional SVE2 extension flags.
17817 * config/aarch64/aarch64.c (struct processor,
17818 aarch64_parse_arch, aarch64_parse_cpu, aarch64_validate_mcpu,
17819 aarch64_validate_march, aarch64_override_options,
17820 aarch64_option_print, aarch64_handle_attr_isa_flags,
17821 aarch64_declare_function_name, aarch64_start_file): Make flag
17822 variables uint64_t.
17823 * config/aarch64/aarch64.h (AARCH64_FL_SVE2, AARCH64_FL_SVE2_AES,
17824 AARCH64_FL_SVE2_SM4, AARCH64_FL_SVE2_SHA3,
17825 AARCH64_FL_SVE2_BITPERM): New macro feature flags.
17826 * config/aarch64/aarch64.opt (aarch64_isa_flags): Make uint64_t.
17827 * config/aarch64/driver-aarch64.c
17828 (struct aarch64_arch_extension, struct aarch64_core_data,
17829 struct aarch64_arch_driver_info, host_detect_local_cpu): Make
17830 flag variables uint64_t.
17831 * doc/invoke.texi: Add documentation for new arguments.
17832
17833 2019-05-22 Richard Biener <rguenther@suse.de>
17834
17835 * alias.c (ao_ref_from_mem): Move stack-slot sharing
17836 rewrite ...
17837 * emit-rtl.c (set_mem_attributes_minus_bitpos): ... here.
17838
17839 2019-05-22 Martin Liska <mliska@suse.cz>
17840
17841 PR lto/90500
17842 * doc/extend.texi: Document the change.
17843
17844 2019-05-22 Richard Biener <rguenther@suse.de>
17845
17846 PR tree-optimization/90450
17847 * tree-ssa-loop-im.c (struct im_mem_ref): Add ref_decomposed.
17848 (mem_ref_hasher::equal): Check it.
17849 (mem_ref_alloc): Initialize it.
17850 (gather_mem_refs_stmt): Set it.
17851
17852 2019-05-22 Richard Biener <rguenther@suse.de>
17853
17854 * gimple-fold.c (arith_code_with_undefined_signed_overflow):
17855 Add ABS_EXPR.
17856 (rewrite_to_defined_overflow): Handle rewriting ABS_EXPR
17857 as ABSU_EXPR.
17858
17859 2019-05-22 Alan Modra <amodra@gmail.com>
17860
17861 * config/rs6000/rs6000.h (ASM_OPT_ANY): Define.
17862 (ASM_CPU_SPEC): Conditionally add -many.
17863 * config/rs6000/rs6000.c (rs6000_machine): New static var.
17864 (rs6000_machine_from_flags, emit_asm_machine): New functions..
17865 (rs6000_file_start): ..extracted from here, and modified to
17866 test all ISA bits.
17867 (rs6000_output_function_prologue): Emit .machine as necessary.
17868
17869 2019-05-22 Hans-Peter Nilsson <hp@axis.com>
17870
17871 PR middle-end/90553
17872 * ira-lives.c (process_bb_node_lives): Consider defs
17873 for a call insn to be die before the call, not after.
17874
17875 * function.c (assign_parm_setup_block): Raise alignment of
17876 stacked parameter only for STRICT_ALIGNMENT targets.
17877
17878 2019-05-21 Segher Boessenkool <segher@kernel.crashing.org>
17879
17880 * config/rs6000/constraints.md (define_register_constraint "wz"):
17881 Delete.
17882 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
17883 RS6000_CONSTRAINT_wz.
17884 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
17885 (rs6000_init_hard_regno_mode_ok): Adjust.
17886 * config/rs6000/rs6000.md: Replace "wz" constraint by "d" with "p7".
17887 * doc/md.texi (Machine Constraints): Adjust.
17888
17889 2019-05-21 Segher Boessenkool <segher@kernel.crashing.org>
17890
17891 * config/rs6000/constraints.md (define_register_constraint "wl"):
17892 Delete.
17893 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
17894 RS6000_CONSTRAINT_wl.
17895 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
17896 (rs6000_init_hard_regno_mode_ok): Adjust.
17897 * config/rs6000/rs6000.md: Replace "wl" constraint by "d" with "p6".
17898 * doc/md.texi (Machine Constraints): Adjust.
17899
17900 2019-05-21 Segher Boessenkool <segher@kernel.crashing.org>
17901
17902 * config/rs6000/constraints.md (define_register_constraint "wm"):
17903 Delete.
17904 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
17905 RS6000_CONSTRAINT_wm.
17906 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
17907 (rs6000_init_hard_regno_mode_ok): Adjust.
17908 * config/rs6000/vsx.md: Replace "wm" constraint by "wa" with "p8v".
17909 * doc/md.texi (Machine Constraints): Adjust.
17910
17911 2019-05-21 Segher Boessenkool <segher@kernel.crashing.org>
17912
17913 * config/rs6000/constraints.md (define_register_constraint "wk"):
17914 Delete.
17915 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
17916 RS6000_CONSTRAINT_wk.
17917 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
17918 (rs6000_init_hard_regno_mode_ok): Adjust.
17919 * config/rs6000/rs6000.md: Replace "wk" constraint by "ws" with "p8v".
17920 * doc/md.texi (Machine Constraints): Adjust.
17921
17922 2019-05-21 Segher Boessenkool <segher@kernel.crashing.org>
17923
17924 * config/rs6000/constraints.md (define_register_constraint "wj"):
17925 Delete.
17926 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
17927 RS6000_CONSTRAINT_wj.
17928 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
17929 (rs6000_init_hard_regno_mode_ok): Adjust.
17930 * config/rs6000/rs6000.md: Replace "wj" constraint by "wi" with "p8v".
17931 (VS_64dm): Delete.
17932 * config/rs6000/vsx.md: Ditto.
17933 * doc/md.texi (Machine Constraints): Adjust.
17934
17935 2019-05-21 Segher Boessenkool <segher@kernel.crashing.org>
17936
17937 * config/rs6000/constraints.md (define_register_constraint "wh"):
17938 Delete.
17939 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
17940 RS6000_CONSTRAINT_wh.
17941 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
17942 (rs6000_init_hard_regno_mode_ok): Adjust.
17943 * config/rs6000/rs6000.md: Replace "wh" constraint by "wa" with "p8v".
17944 * doc/md.texi (Machine Constraints): Adjust.
17945
17946 2019-05-21 Uroš Bizjak <ubizjak@gmail.com>
17947
17948 PR target/90547
17949 * config/i386/i386.md (anddi_1 to andsi_1_zext splitter):
17950 Avoid calling gen_lowpart with CONST operand.
17951
17952 2019-05-21 Alexandre Oliva <aoliva@redhat.com>
17953
17954 * tree-ssa-threadupdate.c (struct ssa_local_info_t): Add
17955 field template_last_to_copy.
17956 (ssa_create_duplicates): Set it, and use it. Attempt to
17957 preserve more debug stmts.
17958
17959 2019-05-21 Uroš Bizjak <ubizjak@gmail.com>
17960
17961 * config/i386/sse.md (VF1_AVX2): New mode iterator.
17962 (signbit<mode>2): New expander
17963
17964 2019-05-21 James Clarke <jrtc27@jrtc27.com>
17965
17966 PR bootstrap/87338
17967 * dwarf2out.c (dwarf2out_inline_entry): Use ASM_OUTPUT_DEBUG_LABEL
17968 instead of ASM_GENERATE_INTERNAL_LABEL and ASM_OUTPUT_LABEL.
17969
17970 2019-05-21 Uroš Bizjak <ubizjak@gmail.com>
17971
17972 * config/i386/cpuid.h (__cpuid): For 32bit targets, zero
17973 %ebx and %ecx bafore calling cpuid with leaf 1 or
17974 non-constant leaf argument.
17975
17976 2019-05-21 Alan Modra <amodra@gmail.com>
17977
17978 PR target/90545
17979 * config/rs6000/rs6000.c (rs6000_register_move_cost): Increase
17980 power9 direct move cost.
17981
17982 2019-05-21 Richard Biener <rguenther@suse.de>
17983
17984 PR middle-end/90510
17985 * fold-const.c (fold_read_from_vector): New function.
17986 * fold-const.h (fold_read_from_vector): Declare.
17987 * match.pd (VEC_PERM_EXPR): Build BIT_INSERT_EXPRs for
17988 single-element insert permutations. Canonicalize selector
17989 further and fix issue with last commit.
17990
17991 2019-05-21 Vladislav Ivanishin <vlad@ispras.ru>
17992
17993 * tree-cfg.h (split_critical_edges): Add for_edge_insertion_p
17994 parameter with default value false to declaration.
17995 (split_edges_for_insertion): New inline function. Wrapper for
17996 split_critical_edges with for_edge_insertion_p = true.
17997 * tree-cfg.c (split_critical_edges): Don't split non-critical
17998 edges if for_edge_insertion_p is false. Fix whitespace.
17999 * tree-ssa-pre.c (pass_pre::execute): Call
18000 split_edges_for_insertion instead of split_critical_edges.
18001 * tree-ssa-tail-merge.c (tail_merge_optimize): Ditto.
18002 * tree-ssa-sink.c (pass_sink_code::execute): Ditto.
18003 (pass_data_sink_code): Update function name in the comment.
18004
18005 2019-05-21 Vladislav Ivanishin <vlad@ispras.ru>
18006
18007 * tree-ssa-uninit.c (value_sat_pred_p): This new function is a wrapper
18008 around is_value_included_in that knows how to handle BIT_AND_EXPR.
18009 (is_pred_expr_subset_of): Use the new function. Handle more cases where
18010 code1 == EQ_EXPR and where code1 == BIT_AND_EXPR and thus fix some false
18011 positives.
18012
18013 2019-05-21 Martin Liska <mliska@suse.cz>
18014
18015 * config/rs6000/driver-rs6000.c (elf_platform): Do not use
18016 an extra newline.
18017 * config/rs6000/rs6000-c.c (rs6000_pragma_longcal): Wrap pragma in %<%>.
18018 (altivec_resolve_overloaded_builtin): Likewise for vec_lvsl and
18019 vec_lvsr.
18020 * config/rs6000/rs6000.c (rs6000_option_override_internal):
18021 Quote a C type.
18022 (rs6000_function_arg): Likewise.
18023 (rs6000_expand_set_fpscr_drn_builtin): Remove trailing dot.
18024 (rs6000_expand_ternop_builtin): Use interval syntax.
18025 (get_element_number): Likewise.
18026 (altivec_expand_builtin): Likewise.
18027 (rs6000_get_function_versions_dispatcher): Quote target_clones.
18028
18029 2019-05-20 Jakub Jelinek <jakub@redhat.com>
18030
18031 PR c++/59813
18032 PR target/90418
18033 * function.h (struct function): Add calls_eh_return member.
18034 * gimplify.c (gimplify_call_expr): Set cfun->calls_eh_return when
18035 gimplifying __builtin_eh_return call.
18036 * tree-inline.c (initialize_cfun): Copy calls_eh_return from src_cfun
18037 to cfun.
18038 (expand_call_inline): Or in src_cfun->calls_eh_return into
18039 dst_cfun->calls_eh_return.
18040 * tree-tailcall.c (suitable_for_tail_call_opt_p): Return false if
18041 cfun->calls_eh_return.
18042 * lto-streamer-in.c (input_struct_function_base): Read calls_eh_return.
18043 * lto-streamer-out.c (output_struct_function_base): Write
18044 calls_eh_return.
18045
18046 2019-05-20 Marc Glisse <marc.glisse@inria.fr>
18047
18048 PR rtl-optimization/43147
18049 * config/i386/i386.c (ix86_gimple_fold_builtin): Handle
18050 IX86_BUILTIN_SHUFPD.
18051
18052 2019-05-20 Jan Hubicka <hubicka@ucw.cz>
18053
18054 * tree-ssa-alias.c (refs_may_alias_p_2): Break out from ...
18055 (refs_may_alias_p_1): ... here; update stats.
18056 (refs_may_alias_p): Do not update stats here.
18057
18058 2019-05-20 Richard Biener <rguenther@suse.de>
18059
18060 * tree-ssa-structalias.c (find_func_aliases): POINTER_DIFF_EXPR
18061 doesn't produce pointers.
18062 {TRUNC,CEIL,FLOOR,ROUND,EXACT}_{DIV,MOD}_EXPR points to what
18063 the first operand points to.
18064
18065 2019-05-20 Jan Hubicka <hubicka@ucw.cz>
18066
18067 * tree-ssa-alias.c (compare_sizes): New function.
18068 (sompare_type_sizes): New function
18069 (aliasing_component_refs_p): Use it.
18070 (indirect_ref_may_alias_decl_p): Likewise.
18071
18072 2019-05-20 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
18073
18074 * config/i386/sol2.h (CC1_SPEC): Reject -mx32.
18075
18076 2019-05-20 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
18077
18078 * config/sol2.h (LIBTSAN_EARLY_SPEC): Remove : after %e.
18079 (LIBLSAN_EARLY_SPEC): Likewise.
18080 * config/i386/sol2.h (ASAN_REJECT_SPEC): Likewise.
18081
18082 2019-05-20 Martin Liska <mliska@suse.cz>
18083
18084 * config/i386/i386.c (ix86_libc_has_fast_function):
18085 Add ATTRIBUTE_UNUSED for the argument.
18086
18087 2019-05-20 Richard Biener <rguenther@suse.de>
18088
18089 * gimple-match-head.c: Include vec-perm-indices.h.
18090 * generic-match-head.c: Likewise.
18091 * fold-const.h (fold_vec_perm): Declare when vec-perm-indices.h
18092 is included.
18093 * fold-const.c (fold_vec_perm): Export.
18094 (fold_ternary_loc): Move non-constant folding of VEC_PERM_EXPR...
18095 (match.pd): ...here.
18096
18097 2019-05-20 Jakub Jelinek <jakub@redhat.com>
18098
18099 * cfgloop.h (struct loop): Add simdlen member.
18100 * cfgloopmanip.c (copy_loop_info): Copy simdlen as well.
18101 * omp-expand.c (expand_omp_simd): Set it if simdlen clause is present.
18102 * tree-vect-loop.c (vect_analyze_loop): Pass loop->simdlen != 0
18103 as new argument to autovectorize_vector_sizes target hook. If
18104 loop->simdlen, pick up vector size where the vectorization factor
18105 is equal to loop->simd, and if there is none, fall back to the first
18106 successful one.
18107 (vect_transform_loop): Adjust autovectorize_vector_sizes target hook
18108 caller.
18109 * omp-low.c (omp_clause_aligned_alignment): Likewise.
18110 * omp-general.c (omp_max_vf): Likewise.
18111 * optabs-query.c (can_vec_mask_load_store_p): Likewise.
18112 * tree-vect-slp.c (vect_slp_bb): Likewise.
18113 * target.def (autovectorize_vector_sizes): Add ALL argument and
18114 document it.
18115 * doc/tm.texi: Adjust documentation.
18116 * targhooks.c (default_autovectorize_vector_sizes): Add bool argument.
18117 * targhooks.h (default_autovectorize_vector_sizes): Likewise.
18118 * config/aarch64/aarch64.c (aarch64_autovectorize_vector_sizes): Add
18119 bool argument.
18120 * config/arc/arc.c (arc_autovectorize_vector_sizes): Likewise.
18121 * config/arm/arm.c (arm_autovectorize_vector_sizes): Likewise.
18122 * config/mips/mips.c (mips_autovectorize_vector_sizes): Likewise.
18123 * config/i386/i386.c (ix86_autovectorize_vector_sizes): Likewise. If
18124 true and TARGET_AVX512F or TARGET_AVX, push 3 or 2 sizes even if
18125 preferred vector size is not 512-bit or 256-bit, just put those
18126 unpreferred ones last.
18127
18128 2019-05-20 Martin Liska <mliska@suse.cz>
18129
18130 * targhooks.c (default_libc_has_fast_function): New function.
18131 * targhooks.h (default_libc_has_fast_function): Likewise.
18132
18133 2019-05-20 Martin Liska <mliska@suse.cz>
18134
18135 PR middle-end/90263
18136 * builtins.c (expand_builtin_memory_copy_args): When having a
18137 target with fast mempcpy implementation do now use memcpy.
18138 * config/i386/i386.c (ix86_libc_has_fast_function): New.
18139 (TARGET_LIBC_HAS_FAST_FUNCTION): Likewise.
18140 * doc/tm.texi: Likewise.
18141 * doc/tm.texi.in: Likewise.
18142 * target.def:
18143 * expr.c (emit_block_move_hints): Add 2 new arguments.
18144 * expr.h (emit_block_move_hints): Bail out when libcall
18145 to memcpy would be used.
18146
18147 2019-05-20 Martin Liska <mliska@suse.cz>
18148
18149 * profile-count.c: Add vertical spacing in order
18150 to separate functions.
18151 * profile-count.h: Likewise.
18152
18153 2019-05-20 Martin Liska <mliska@suse.cz>
18154
18155 * profile-count.h: Do not use full qualified
18156 names if possible.
18157 * profile-count.c (profile_count::to_frequency): Likewise.
18158
18159 2019-05-20 Martin Liska <mliska@suse.cz>
18160
18161 * profile-count.h (enum profile_quality): Use capital letters
18162 for enum value names. Use the adjusted names.
18163 * profile-count.c: Use the adjusted names.
18164
18165 2019-05-19 Segher Boessenkool <segher@kernel.crashing.org>
18166
18167 * config/rs6000/constraints.md (define_register_constraint "wH"):
18168 Delete.
18169 (define_register_constraint "wI"): Delete.
18170 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
18171 RS6000_CONSTRAINT_wH and RS6000_CONSTRAINT_wI.
18172 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
18173 (rs6000_init_hard_regno_mode_ok): Adjust.
18174 * config/rs6000/rs6000.md: Replace "wH" and "wI" constraints by "v"
18175 resp. "d", or with "wa" as appropriate, all with "p8v".
18176 * config/rs6000/vsx.md: Ditto.
18177 * doc/md.texi (Machine Constraints): Adjust.
18178
18179 2019-05-19 Segher Boessenkool <segher@kernel.crashing.org>
18180
18181 * config/rs6000/constraints.md (define_register_constraint "wy"):
18182 Delete.
18183 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
18184 RS6000_CONSTRAINT_wy.
18185 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
18186 (rs6000_init_hard_regno_mode_ok): Adjust.
18187 * config/rs6000/rs6000.md: Replace "wy" constraint by "wa" with "p8v".
18188 Use "<Fisa>" as "isa" in all alternatives that use "<Fv2>".
18189 (define_mode_attr Fisa): New.
18190 * config/rs6000/vsx.md: Replace "wy" constraint by "wa" with "p8v".
18191 * doc/md.texi (Machine Constraints): Adjust.
18192
18193 2019-05-19 Segher Boessenkool <segher@kernel.crashing.org>
18194
18195 * config/rs6000/constraints.md (define_register_constraint "wu"):
18196 Delete.
18197 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
18198 RS6000_CONSTRAINT_wu.
18199 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
18200 (rs6000_init_hard_regno_mode_ok): Adjust.
18201 * config/rs6000/rs6000.md: Replace "wu" constraint by "v" or "wa",
18202 both with "p8v".
18203 (define_mode_attr Fa): Delete.
18204 * config/rs6000/vsx.md: Ditto.
18205 * doc/md.texi (Machine Constraints): Adjust.
18206
18207 2019-05-19 Segher Boessenkool <segher@kernel.crashing.org>
18208
18209 * config/rs6000/constraints.md (define_register_constraint "wJ"):
18210 Delete.
18211 (define_register_constraint "wK"): Delete.
18212 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
18213 RS6000_CONSTRAINT_wJ and RS6000_CONSTRAINT_wK.
18214 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
18215 (rs6000_init_hard_regno_mode_ok): Adjust.
18216 * config/rs6000/rs6000.md: Replace "wJ" constraint by "wI" with "p9v".
18217 Replace "wK" constraint by "wH" with "p9v".
18218 * config/rs6000/vsx.md: Ditto.
18219 * doc/md.texi (Machine Constraints): Adjust.
18220
18221 2019-05-19 Segher Boessenkool <segher@kernel.crashing.org>
18222
18223 * config/rs6000/constraints.md (define_register_constraint "wb"):
18224 Delete.
18225 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
18226 RS6000_CONSTRAINT_wb.
18227 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
18228 (rs6000_init_hard_regno_mode_ok): Adjust.
18229 * config/rs6000/rs6000.md: Replace "wb" constraint by "v" with "p9v".
18230 * config/rs6000/vsx.md: Ditto.
18231 * doc/md.texi (Machine Constraints): Adjust.
18232
18233 2019-05-19 Segher Boessenkool <segher@kernel.crashing.org>
18234
18235 * config/rs6000/constraints.md (define_register_constraint "wo"):
18236 Delete.
18237 * config/rs6000/rs6000.h (enum r6000_reg_class_enum): Delete
18238 RS6000_CONSTRAINT_wo.
18239 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Adjust.
18240 (rs6000_init_hard_regno_mode_ok): Adjust.
18241 * config/rs6000/rs6000.md: Replace "wo" constraint by "wa" with "p9v".
18242 * config/rs6000/altivec.md: Ditto.
18243 * doc/md.texi (Machine Constraints): Adjust.
18244
18245 2019-05-18 Iain Sandoe <iain@sandoe.co.uk>
18246
18247 * config/darwin-c.c (darwin_register_objc_includes): Do not
18248 prepend the sysroot when building gnu-runtime header search
18249 paths.
18250
18251 2019-05-18 Iain Sandoe <iain@sandoe.co.uk>
18252
18253 * config/darwin.c (darwin_file_end): Use switch_to_section ()
18254 instead of direct output of the asm.
18255
18256 2019-05-17 Segher Boessenkool <segher@kernel.crashing.org>
18257
18258 * config/rs6000/rs6000.c (restore_saved_cr): Change a boolean
18259 argument to be type bool (was int before).
18260 (rs6000_emit_epilogue): Simplify some code. Declare some variables
18261 at first use. Use type bool for some variables. Fix a theoretical
18262 eh_return bug for svr4.
18263
18264 2019-05-17 Segher Boessenkool <segher@kernel.crashing.org>
18265
18266 * config/rs6000/rs6000.md (isa): New attribute.
18267 (enabled): New attribute.
18268
18269 2019-05-17 Max Filippov <jcmvbkbc@gmail.com>
18270
18271 * config/aarch64/aarch64.c (aarch64_output_mi_thunk): Call
18272 assemble_start_function and assemble_end_function.
18273
18274 2019-05-17 Thomas Schwinge <thomas@codesourcery.com>
18275
18276 PR middle-end/89433
18277 * omp-general.c (oacc_verify_routine_clauses): Change formal
18278 parameters. Add checking if already marked with an OpenACC
18279 'routine' directive. Adjust all users.
18280
18281 PR middle-end/89433
18282 * omp-general.c (oacc_build_routine_dims): Move some of its
18283 processing into...
18284 (oacc_verify_routine_clauses): ... this new function.
18285 * omp-general.h (oacc_verify_routine_clauses): New prototype.
18286
18287 2019-05-17 Iain Sandoe <iain@sandoe.co.uk>
18288
18289 * config/rs6000/rs6000.c (machopic_output_stub): Adjust the
18290 formating of picbase labels to match other ports.
18291
18292 2019-05-17 Iain Sandoe <iain@sandoe.co.uk>
18293
18294 * config/rs6000/rs6000.c (macho_branch_islands): Fix bad indent
18295 in the generated code.
18296
18297 2019-05-16 Martin Sebor <msebor@redhat.com>
18298
18299 * builtins.c (expand_builtin_atomic_always_lock_free): Quote
18300 identifiers, keywords, operators, and types in diagnostics. Correct
18301 quoting, spelling, and sentence capitalization issues.
18302 (expand_builtin_atomic_is_lock_free): Same.
18303 (fold_builtin_next_arg): Same.
18304 * cfgexpand.c (expand_one_var): Same.
18305 (tree_conflicts_with_clobbers_p): Same.
18306 (expand_asm_stmt): Same.
18307 (verify_loop_structure): Same.
18308 * cgraphunit.c (process_function_and_variable_attributes): Same.
18309 * collect-utils.c (collect_execute): Same.
18310 * collect2.c (maybe_run_lto_and_relink): Same.
18311 (is_lto_object_file): Same.
18312 (scan_prog_file): Same.
18313 * convert.c (convert_to_real_1): Same.
18314 * dwarf2out.c (dwarf2out_begin_prologue): Same.
18315 * except.c (verify_eh_tree): Same.
18316 * gcc.c (execute): Same.
18317 (eval_spec_function): Same.
18318 (run_attempt): Same.
18319 (driver::set_up_specs): Same.
18320 (compare_debug_auxbase_opt_spec_function): Same.
18321 * gcov-tool.c (unlink_gcda_file): Same.
18322 (do_merge): Same.
18323 (do_rewrite): Same.
18324 * gcse.c (gcse_or_cprop_is_too_expensive): Same.
18325 * gimplify.c (gimplify_asm_expr): Same.
18326 (gimplify_adjust_omp_clauses): Same.
18327 * hsa-gen.c (gen_hsa_addr_insns): Same.
18328 (gen_hsa_insns_for_load): Same.
18329 (gen_hsa_cmp_insn_from_gimple): Same.
18330 (gen_hsa_insns_for_operation_assignment): Same.
18331 (gen_get_level): Same.
18332 (gen_hsa_alloca): Same.
18333 (omp_simple_builtin::generate): Same.
18334 (gen_hsa_atomic_for_builtin): Same.
18335 (gen_hsa_insns_for_call): Same.
18336 * input.c (dump_location_info): Same.
18337 * ipa-devirt.c (compare_virtual_tables): Same.
18338 * ira.c (ira_setup_eliminable_regset): Same.
18339 * lra-assigns.c (lra_assign): Same.
18340 * lra-constraints.c (lra_constraints): Same.
18341 * lto-streamer-in.c (lto_input_mode_table): Same.
18342 * lto-wrapper.c (get_options_from_collect_gcc_options): Same.
18343 (merge_and_complain): Same.
18344 (compile_offload_image): Same.
18345 (compile_images_for_offload_targets): Same.
18346 (debug_objcopy): Same.
18347 (run_gcc): Same.
18348 (main): Same.
18349 * opts.c (print_specific_help): Same.
18350 (parse_no_sanitize_attribute): Same.
18351 (print_help): Same.
18352 (handle_param): Same.
18353 * plugin.c (add_new_plugin): Same.
18354 (parse_plugin_arg_opt): Same.
18355 (try_init_one_plugin): Same.
18356 * print-rtl.c (debug_bb_n_slim): Quote identifiers, keywords,
18357 operators, and types in diagnostics. Correct quoting and spelling
18358 issues.
18359 * read-rtl-function.c (parse_edge_flag_token): Same.
18360 (function_reader::parse_enum_value): Same.
18361 * reg-stack.c (check_asm_stack_operands): Same.
18362 * regcprop.c (validate_value_data): Same.
18363 * sched-rgn.c (make_pass_sched_fusion): Same.
18364 * stmt.c (check_unique_operand_names): Same.
18365 * targhooks.c (default_target_option_pragma_parse): Same.
18366 * tlink.c (recompile_files): Same.
18367 * toplev.c (process_options): Same.
18368 (do_compile): Same.
18369 * trans-mem.c (diagnose_tm_1): Same.
18370 (ipa_tm_scan_irr_block): Same.
18371 (ipa_tm_diagnose_transaction): Same.
18372 * tree-cfg.c (verify_address): Same. Use get_tree_code_name to
18373 format a tree code name in a diagnostic.
18374 (verify_types_in_gimple_min_lval): Same.
18375 (verify_types_in_gimple_reference): Same.
18376 (verify_gimple_call): Same.
18377 (verify_gimple_assign_unary): Same.
18378 (verify_gimple_assign_binary): Same.
18379 (verify_gimple_assign_ternary): Same.
18380 (verify_gimple_assign_single): Same.
18381 (verify_gimple_switch): Same.
18382 (verify_gimple_label): Same.
18383 (verify_gimple_phi): Same.
18384 (verify_gimple_in_seq): Same.
18385 (verify_eh_throw_stmt_node): Same.
18386 (collect_subblocks): Same.
18387 (gimple_verify_flow_info): Same.
18388 (do_warn_unused_result): Same.
18389 * tree-inline.c (expand_call_inline): Same.
18390 * tree-into-ssa.c (update_ssa): Same.
18391 * tree.c (tree_int_cst_elt_check_failed): Same.
18392 (tree_vec_elt_check_failed): Same.
18393 (omp_clause_operand_check_failed): Same.
18394 (verify_type_variant): Same.
18395 (verify_type): Same.
18396 * value-prof.c (verify_histograms): Same.
18397 * varasm.c (assemble_start_function): Same.
18398
18399 2019-05-16 Martin Sebor <msebor@redhat.com>
18400
18401 * config/i386/i386-expand.c (get_element_number): Quote keywords
18402 and other internal names in diagnostics. Adjust other diagnostic
18403 formatting issues noted by -Wformat-diag.
18404 * config/i386/i386-features.c
18405 (ix86_mangle_function_version_assembler_name): Same.
18406 * config/i386/i386-options.c (ix86_handle_abi_attribute): Same.
18407 * config/i386/i386.c (ix86_function_type_abi): Same.
18408 (ix86_function_ms_hook_prologue): Same.
18409 (classify_argument): Same.
18410 (ix86_expand_prologue): Same.
18411 (ix86_md_asm_adjust): Same.
18412 (ix86_memmodel_check): Same.
18413
18414 2019-05-17 Dragan Mladjenovic <dmladjenovic@wavecomp.com>
18415
18416 * config/mips/mips.c (mips_dwarf_frame_reg_mode): Replace
18417 TARGET_FLOAT64 with !TARGET_FLOAT32, thus handling both fp64
18418 and fpxx modes.
18419
18420 2019-05-17 H.J. Lu <hongjiu.lu@intel.com>
18421
18422 PR target/90497
18423 * config/i386/i386-expand.c (ix86_expand_builtin): Enable MMX
18424 intrinsics without SSE/SSE2/SSSE3.
18425 * config/i386/mmx.md (mmx_uavgv8qi3): Restore TARGET_3DNOW
18426 check.
18427 (*mmx_uavgv8qi3): Likewise.
18428
18429 2019-05-17 Richard Biener <rguenther@suse.de>
18430
18431 * gimple-pretty-print.c (dump_ternary_rhs): Handle dumping
18432 VEC_PERM_EXPR as __VEC_PERM with -gimple.
18433
18434 2019-05-17 Andreas Krebbel <krebbel@linux.ibm.com>
18435
18436 * config/s390/s390-builtins.def (s390_vec_sldw_*): Use the
18437 vec_sldw insn pattern.
18438
18439 2019-05-17 Richard Biener <rguenther@suse.de>
18440
18441 * ccmp.c (expand_ccmp_expr_1): Do not use gimple_assign_rhs_to_tree.
18442
18443 2019-05-17 Martin Liska <mliska@suse.cz>
18444
18445 PR driver/90496
18446 * toplev.c (output_stack_usage): With LTO and sanitizer it
18447 happens that a global ctor (_GLOBAL__sub_I_00099_0_main)
18448 has no file location.
18449
18450 2019-05-16 Jakub Jelinek <jakub@redhat.com>
18451
18452 PR c++/90484
18453 * tree-ssa-scopedtables.c (equal_mem_array_ref_p): Don't assert that
18454 sz0 is equal to sz1, instead return false in that case.
18455
18456 * omp-low.c (lower_rec_input_clauses): If OMP_CLAUSE_IF
18457 has non-constant expression, force sctx.lane and use two
18458 argument IFN_GOMP_SIMD_LANE instead of single argument.
18459 * tree-ssa-dce.c (eliminate_unnecessary_stmts): Don't DCE
18460 two argument IFN_GOMP_SIMD_LANE without lhs.
18461 * tree-vectorizer.h (struct _loop_vec_info): Add simd_if_cond
18462 member.
18463 (LOOP_VINFO_SIMD_IF_COND, LOOP_REQUIRES_VERSIONING_FOR_SIMD_IF_COND):
18464 Define.
18465 (LOOP_REQUIRES_VERSIONING): Or in
18466 LOOP_REQUIRES_VERSIONING_FOR_SIMD_IF_COND.
18467 * tree-vect-loop.c (_loop_vec_info::_loop_vec_info): Initialize
18468 simd_if_cond.
18469 (vect_analyze_loop_2): Punt if LOOP_VINFO_SIMD_IF_COND is constant 0.
18470 * tree-vect-loop-manip.c (vect_loop_versioning): Add runtime check
18471 from simd if clause if needed.
18472
18473 2019-05-16 Richard Biener <rguenther@suse.de>
18474
18475 * tree-affine.c (expr_to_aff_combination): New function split
18476 out from...
18477 (tree_to_aff_combination): ... here.
18478 (aff_combination_expand): Avoid building a GENERIC tree.
18479
18480 2019-05-16 Max Filippov <jcmvbkbc@gmail.com>
18481
18482 * cgraphunit.c (cgraph_node::expand_thunk): Remove
18483 assemble_start_function and assemble_end_function calls.
18484 * config/alpha/alpha.c (alpha_output_mi_thunk_osf): Call
18485 assemble_start_function and assemble_end_function.
18486 * config/arc/arc.c (arc_output_mi_thunk): Likewise.
18487 * config/arm/arm.c (arm_output_mi_thunk): Likewise.
18488 * config/bfin/bfin.c (bfin_output_mi_thunk): Likewise.
18489 * config/c6x/c6x.c (c6x_output_mi_thunk): Likewise.
18490 * config/cris/cris.c (cris_asm_output_mi_thunk): Likewise.
18491 * config/csky/csky.c (csky_output_mi_thunk): Likewise.
18492 * config/epiphany/epiphany.c (epiphany_output_mi_thunk): Likewise.
18493 * config/frv/frv.c (frv_asm_output_mi_thunk): Likewise.
18494 * config/i386/i386.c (x86_output_mi_thunk): Likewise.
18495 * config/ia64/ia64.c (ia64_output_mi_thunk): Likewise.
18496 * config/m68k/m68k.c (m68k_output_mi_thunk): Likewise.
18497 * config/microblaze/microblaze.c (microblaze_asm_output_mi_thunk):
18498 Likewise.
18499 * config/mips/mips.c (mips_output_mi_thunk): Likewise.
18500 * config/mmix/mmix.c (mmix_asm_output_mi_thunk): Likewise.
18501 * config/mn10300/mn10300.c (mn10300_asm_output_mi_thunk): Likewise.
18502 * config/nds32/nds32.c (nds32_asm_output_mi_thunk): Likewise.
18503 * config/nios2/nios2.c (nios2_asm_output_mi_thunk): Likewise.
18504 * config/or1k/or1k.c (or1k_output_mi_thunk): Likewise.
18505 * config/pa/pa.c (pa_asm_output_mi_thunk): Likewise.
18506 * config/riscv/riscv.c (riscv_output_mi_thunk): Likewise.
18507 * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Likewise.
18508 * config/s390/s390.c (s390_output_mi_thunk): Likewise.
18509 * config/sh/sh.c (sh_output_mi_thunk): Likewise.
18510 * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
18511 * config/spu/spu.c (spu_output_mi_thunk): Likewise.
18512 * config/stormy16/stormy16.c (xstormy16_asm_output_mi_thunk):
18513 Likewise.
18514 * config/tilegx/tilegx.c (tilegx_output_mi_thunk): Likewise.
18515 * config/tilepro/tilepro.c (tilepro_asm_output_mi_thunk): Likewise.
18516 * config/vax/vax.c (vax_output_mi_thunk): Likewise.
18517
18518 2019-05-16 Jan Hubicka <hubicka@ucw.cz>
18519
18520 * tree-ssa-alias.c (alias_stats): Add
18521 aliasing_component_refs_p_may_alias and
18522 aliasing_component_refs_p_no_alias.
18523 (dump_alias_stats): Print aliasing_component_refs_p stats.
18524 (aliasing_component_refs_p): Update stats.
18525
18526 2019-05-16 Martin Liska <mliska@suse.cz>
18527
18528 PR lto/90500
18529 * multiple_target.c (expand_target_clones): Do not allow
18530 target_clones being used with a symbol that is an alias.
18531
18532 2019-05-16 Vladislav Ivanishin <vlad@ispras.ru>
18533
18534 PR tree-optimization/90394
18535 * tree-ssa-uninit.c (is_pred_expr_subset_of): Potentially give false
18536 positives rather than ICE for cases where (code2 == NE_EXPR
18537 && code1 == BIT_AND_EXPR).
18538
18539 2019-05-16 Jakub Jelinek <jakub@redhat.com>
18540
18541 PR fortran/90329
18542 * tree-core.h (struct tree_decl_common): Document
18543 decl_nonshareable_flag for PARM_DECLs.
18544 * tree.h (DECL_HIDDEN_STRING_LENGTH): Define.
18545 * calls.c (expand_call): Don't try tail call if caller
18546 has any DECL_HIDDEN_STRING_LENGTH PARM_DECLs that are or might be
18547 passed on the stack and callee needs to pass any arguments on the
18548 stack.
18549 * tree-streamer-in.c (unpack_ts_decl_common_value_fields): Use
18550 else if instead of series of mutually exclusive ifs. Handle
18551 DECL_HIDDEN_STRING_LENGTH for PARM_DECLs.
18552 * tree-streamer-out.c (pack_ts_decl_common_value_fields): Likewise.
18553
18554 * lto-streamer.h (LTO_major_version): Bump to 9.
18555
18556 2019-05-16 Jun Ma <JunMa@linux.alibaba.com>
18557
18558 PR tree-optimization/90106
18559 * tree-call-cdce.c (shrink_wrap_one_built_in_call_with_conds): Add
18560 new parameter as new internal function call, also move it to new
18561 basic block.
18562 (use_internal_fn): Pass internal function call to
18563 shrink_wrap_one_built_in_call_with_conds.
18564
18565 2019-05-15 Jakub Jelinek <jakub@redhat.com>
18566
18567 * omp-low.c (lower_rec_input_clauses): For if (0) or simdlen (1) set
18568 max_vf to 1.
18569 * omp-expand.c (expand_omp_simd): For if (0) or simdlen (1) clear
18570 safelen_int and set loop->dont_vectorize.
18571
18572 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18573
18574 PR target/89021
18575 * config/i386/i386-builtin.def: Enable MMX intrinsics with
18576 SSE/SSE2/SSSE3.
18577 * config/i386/i386-builtins.c (ix86_init_mmx_sse_builtins):
18578 Likewise.
18579 * config/i386/i386-expand.c (ix86_expand_builtin): Allow
18580 SSE/SSE2/SSSE3 to emulate MMX intrinsics with TARGET_MMX_WITH_SSE.
18581 * config/i386/mmintrin.h: Only require SSE2 if __MMX_WITH_SSE__
18582 is defined.
18583
18584 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18585
18586 PR target/89021
18587 * config/i386/mmx.md (*vec_dupv2sf): Changed to
18588 define_insn_and_split to support SSE emulation.
18589 (*vec_extractv2sf_0): Likewise.
18590 (*vec_extractv2sf_1): Likewise.
18591 (*vec_extractv2si_0): Likewise.
18592 (*vec_extractv2si_1): Likewise.
18593 (*vec_extractv2si_zext_mem): Likewise.
18594 (vec_setv2sf): Also allow TARGET_MMX_WITH_SSE.
18595 (vec_extractv2sf_1 splitter): Likewise.
18596 (vec_extractv2sfsf): Likewise.
18597 (vec_setv2si): Likewise.
18598 (vec_extractv2si_1 splitter): Likewise.
18599 (vec_extractv2sisi): Likewise.
18600 (vec_setv4hi): Likewise.
18601 (vec_extractv4hihi): Likewise.
18602 (vec_setv8qi): Likewise.
18603 (vec_extractv8qiqi): Likewise.
18604 (vec_extractv2sfsf): Also allow TARGET_MMX_WITH_SSE. Pass
18605 TARGET_MMX_WITH_SSE ix86_expand_vector_extract.
18606 (vec_extractv2sisi): Likewise.
18607 (vec_extractv4hihi): Likewise.
18608 (vec_extractv8qiqi): Likewise.
18609 (vec_initv2sfsf): Also allow TARGET_MMX_WITH_SSE. Pass
18610 TARGET_MMX_WITH_SSE to ix86_expand_vector_init.
18611 (vec_initv2sisi): Likewise.
18612 (vec_initv4hihi): Likewise.
18613 (vec_initv8qiqi): Likewise.
18614 (vec_setv2si): Also allow TARGET_MMX_WITH_SSE. Pass
18615 TARGET_MMX_WITH_SSE to ix86_expand_vector_set.
18616 (vec_setv4hi): Likewise.
18617 (vec_setv8qi): Likewise.
18618
18619 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18620
18621 PR target/89021
18622 * config/i386/mmx.md (MMXMODE:mov<mode>): Also allow
18623 TARGET_MMX_WITH_SSE.
18624 (MMXMODE:*mov<mode>_internal): Likewise.
18625 (MMXMODE:movmisalign<mode>): Likewise.
18626
18627 2019-05-15 Uroš Bizjak <ubizjak@gmail.com>
18628
18629 PR target/89021
18630 * config/i386/i386.md (*zero_extendsidi2): Add mmx_isa attribute.
18631 * config/i386/sse.md (sse2_cvtpi2pd): Ditto.
18632 (sse2_cvtpd2pi): Ditto.
18633 (sse2_cvttpd2pi): Ditto.
18634 (*vec_concatv2sf_sse4_1): Ditto.
18635 (*vec_concatv2sf_sse): Ditto.
18636 (*vec_concatv2si_sse4_1): Ditto.
18637 (*vec_concatv2si): Ditto.
18638 (*vec_concatv4si_0): Ditto.
18639 (*vec_concatv2di_0): Ditto.
18640
18641 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18642
18643 PR target/89021
18644 * config/i386/sse.md (abs<mode>2): Add SSE emulation.
18645
18646 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18647
18648 PR target/89021
18649 * config/i386/sse.md (ssse3_palignrdi): Changed to
18650 define_insn_and_split to support SSE emulation.
18651
18652 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18653
18654 PR target/89021
18655 * config/i386/sse.md (ssse3_psign<mode>3): Add SSE emulation.
18656
18657 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18658
18659 PR target/89021
18660 * config/i386/sse.md (ssse3_pshufbv8qi3): Changed to
18661 define_insn_and_split. Also allow TARGET_MMX_WITH_SSE. Add
18662 SSE emulation.
18663
18664 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18665
18666 PR target/89021
18667 * config/i386/sse.md (ssse3_pmulhrswv4hi3): Require TARGET_MMX
18668 or TARGET_MMX_WITH_SSE.
18669 (*ssse3_pmulhrswv4hi3): Add SSE emulation.
18670
18671 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18672
18673 PR target/89021
18674 * config/i386/sse.md (ssse3_pmaddubsw): Add SSE emulation.
18675
18676 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18677
18678 PR target/89021
18679 * config/i386/sse.md (ssse3_ph<plusminus_mnemonic>dv2si3):
18680 Changed to define_insn_and_split to support SSE emulation.
18681
18682 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18683
18684 PR target/89021
18685 * config/i386/sse.md (ssse3_ph<plusminus_mnemonic>wv4hi3):
18686 Changed to define_insn_and_split to support SSE emulation.
18687
18688 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18689
18690 PR target/89021
18691 * config/i386/mmx.md (mmx_<emms>): Renamed to ...
18692 (*mmx_<emms>): This.
18693 (mmx_<emms>): New expander.
18694
18695 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18696
18697 PR target/89021
18698 * config/i386/mmx.md (sse2_umulv1siv1di3): Add SSE emulation
18699 support.
18700 (*sse2_umulv1siv1di3): Add SSE2 emulation.
18701
18702 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18703
18704 PR target/89021
18705 * config/i386/mmx.md (sse_movntq): Add SSE2 emulation.
18706
18707 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18708
18709 PR target/89021
18710 * config/i386/mmx.md (mmx_psadbw): Add SSE emulation.
18711
18712 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18713
18714 PR target/89021
18715 * config/i386/mmx.md (mmx_uavgv4hi3): Also check TARGET_MMX and
18716 TARGET_MMX_WITH_SSE.
18717 (*mmx_uavgv4hi3): Add SSE emulation.
18718
18719 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18720
18721 PR target/89021
18722 * config/i386/mmx.md (mmx_uavgv8qi3): Also check TARGET_MMX
18723 and TARGET_MMX_WITH_SSE.
18724 (*mmx_uavgv8qi3): Add SSE emulation.
18725
18726 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18727
18728 PR target/89021
18729 * config/i386/xmmintrin.h: Emulate MMX maskmovq with SSE2
18730 maskmovdqu for __MMX_WITH_SSE__.
18731
18732 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18733
18734 PR target/89021
18735 * config/i386/mmx.md (mmx_umulv4hi3_highpart): Also check
18736 TARGET_MMX and TARGET_MMX_WITH_SSE.
18737 (*mmx_umulv4hi3_highpart): Add SSE emulation.
18738
18739 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18740
18741 PR target/89021
18742 * config/i386/mmx.md (mmx_pmovmskb): Changed to
18743 define_insn_and_split to support SSE emulation.
18744
18745 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18746
18747 PR target/89021
18748 * config/i386/mmx.md (mmx_<code>v4hi3): Also check TARGET_MMX
18749 and TARGET_MMX_WITH_SSE.
18750 (mmx_<code>v8qi3): Likewise.
18751 (smaxmin:<code>v4hi3): New.
18752 (umaxmin:<code>v8qi3): Likewise.
18753 (smaxmin:*mmx_<code>v4hi3): Add SSE emulation.
18754 (umaxmin:*mmx_<code>v8qi3): Likewise.
18755
18756 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18757
18758 PR target/89021
18759 * config/i386/mmx.md (mmx_pinsrw): Also check TARGET_MMX and
18760 TARGET_MMX_WITH_SSE.
18761 (*mmx_pinsrw): Add SSE emulation.
18762
18763 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18764
18765 PR target/89021
18766 * config/i386/mmx.md (mmx_pextrw): Add SSE emulation.
18767
18768 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18769
18770 PR target/89021
18771 * config/i386/sse.md (sse_cvtpi2ps): Changed to
18772 define_insn_and_split. Also allow TARGET_MMX_WITH_SSE. Add
18773 SSE emulation.
18774
18775 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18776
18777 PR target/89021
18778 * config/i386/sse.md (sse_cvtps2pi): Add SSE emulation.
18779 (sse_cvttps2pi): Likewise.
18780
18781 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18782
18783 PR target/89021
18784 * config/i386/mmx.md (mmx_pshufw): Also check TARGET_MMX and
18785 TARGET_MMX_WITH_SSE.
18786 (mmx_pshufw_1): Add SSE emulation.
18787 (*vec_dupv4hi): Changed to define_insn_and_split and also allow
18788 TARGET_MMX_WITH_SSE to support SSE emulation.
18789
18790 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18791
18792 PR target/89021
18793 * config/i386/constraints.md (Yw): New constraint.
18794 * config/i386/mmx.md (*vec_dupv2si): Changed to
18795 define_insn_and_split and also allow TARGET_MMX_WITH_SSE to
18796 support SSE emulation.
18797
18798 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18799
18800 PR target/89021
18801 * config/i386/mmx.md (mmx_eq<mode>3): Also allow
18802 TARGET_MMX_WITH_SSE.
18803 (*mmx_eq<mode>3): Also allow TARGET_MMX_WITH_SSE. Add SSE
18804 support.
18805 (mmx_gt<mode>3): Likewise.
18806
18807 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18808
18809 PR target/89021
18810 * config/i386/mmx.md (mmx_andnot<mode>3): Also allow
18811 TARGET_MMX_WITH_SSE. Add SSE support.
18812
18813 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18814
18815 PR target/89021
18816 * config/i386/mmx.md (any_logic:mmx_<code><mode>3): Also allow
18817 TARGET_MMX_WITH_SSE.
18818 (any_logic:<code><mode>3): New.
18819 (any_logic:*mmx_<code><mode>3): Also allow TARGET_MMX_WITH_SSE.
18820 Add SSE support.
18821
18822 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18823
18824 PR target/89021
18825 * config/i386/mmx.md (mmx_ashr<mode>3): Also allow
18826 TARGET_MMX_WITH_SSE. Add SSE emulation.
18827 (mmx_<shift_insn><mode>3): Likewise.
18828 (ashr<mode>3): New.
18829 (<shift_insn><mode>3): Likewise.
18830
18831 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18832
18833 PR target/89021
18834 * config/i386/mmx.md (mmx_pmaddwd): Also allow TARGET_MMX_WITH_SSE.
18835 (*mmx_pmaddwd): Also allow TARGET_MMX_WITH_SSE. Add SSE support.
18836
18837 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18838
18839 PR target/89021
18840 * config/i386/mmx.md (mmx_smulv4hi3_highpart): Also allow
18841 TARGET_MMX_WITH_SSE.
18842 (*mmx_smulv4hi3_highpart): Also allow TARGET_MMX_WITH_SSE. Add
18843 SSE support.
18844
18845 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18846
18847 PR target/89021
18848 * config/i386/mmx.md (mmx_mulv4hi3): Also allow
18849 TARGET_MMX_WITH_SSE.
18850 (mulv4hi3): New.
18851 (*mmx_mulv4hi3): Also allow TARGET_MMX_WITH_SSE. Add SSE
18852 support.
18853
18854 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18855
18856 PR target/89021
18857 * config/i386/mmx.md (MMXMODEI8): Require TARGET_SSE2 for V1DI.
18858 (plusminus:mmx_<plusminus_insn><mode>3): Check
18859 TARGET_MMX_WITH_SSE.
18860 (sat_plusminus:mmx_<plusminus_insn><mode>3): Likewise.
18861 (<plusminus_insn><mode>3): New.
18862 (*mmx_<plusminus_insn><mode>3): Add SSE emulation.
18863 (*mmx_<plusminus_insn><mode>3): Likewise.
18864
18865 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18866
18867 PR target/89021
18868 * config/i386/i386-expand.c (ix86_split_mmx_punpck): New function.
18869 * config/i386/i386-protos.h (ix86_split_mmx_punpck): New
18870 prototype.
18871 * config/i386/mmx.m (mmx_punpckhbw): Changed to
18872 define_insn_and_split to support SSE emulation.
18873 (mmx_punpcklbw): Likewise.
18874 (mmx_punpckhwd): Likewise.
18875 (mmx_punpcklwd): Likewise.
18876 (mmx_punpckhdq): Likewise.
18877 (mmx_punpckldq): Likewise.
18878
18879 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18880 Uros Bizjak <ubizjak@gmail.com>
18881
18882 PR target/89021
18883 * config/i386/i386-expand.c (ix86_move_vector_high_sse_to_mmx):
18884 New function.
18885 (ix86_split_mmx_pack): Likewise.
18886 * config/i386/i386-protos.h (ix86_move_vector_high_sse_to_mmx):
18887 New prototype.
18888 (ix86_split_mmx_pack): Likewise.
18889 * config/i386/i386.md (mmx_isa): New.
18890 (enabled): Also check mmx_isa.
18891 * config/i386/mmx.md (any_s_truncate): New code iterator.
18892 (s_trunsuffix): New code attr.
18893 (mmx_packsswb): Removed.
18894 (mmx_packssdw): Likewise.
18895 (mmx_packuswb): Likewise.
18896 (mmx_pack<s_trunsuffix>swb): New define_insn_and_split to emulate
18897 MMX packsswb/packuswb with SSE2.
18898 (mmx_packssdw): Likewise.
18899 * config/i386/predicates.md (register_mmxmem_operand): New.
18900
18901 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
18902
18903 PR target/89021
18904 * config/i386/i386-c.c (ix86_target_macros_internal): Define
18905 __MMX_WITH_SSE__ for TARGET_MMX_WITH_SSE.
18906 * config/i386/i386.c (ix86_set_reg_reg_cost): Add support for
18907 TARGET_MMX_WITH_SSE with VALID_MMX_REG_MODE.
18908 (ix86_vector_mode_supported_p): Likewise.
18909 * config/i386/i386.h (TARGET_MMX_WITH_SSE): New.
18910
18911 2019-05-15 Martin Liska <mliska@suse.cz>
18912
18913 PR middle-end/90478
18914 * tree-switch-conversion.c (jump_table_cluster::can_be_handled):
18915 Check for overflow.
18916
18917 2019-05-15 Richard Biener <rguenther@suse.de>
18918
18919 * tree-into-ssa.c (pass_build_ssa::execute): Run
18920 update_address_taken before going into SSA.
18921
18922 2019-05-15 Richard Biener <rguenther@suse.de>
18923
18924 * tree-pretty-print.c (dump_generic_node): Dump BIT_FIELD_REF
18925 as __BIT_FIELD_REF with type with -gimple.
18926
18927 2019-05-15 Vladislav Ivanishin <vlad@ispras.ru>
18928
18929 * tree-ssa-uninit.c (is_value_included_in): Remove is_unsigned and merge
18930 semantically equivalent branches (left over after prior refactorings).
18931
18932 2019-05-15 Richard Biener <rguenther@suse.de>
18933
18934 PR tree-optimization/88828
18935 * tree-ssa-forwprop.c (simplify_vector_constructor): Fix
18936 bogus check.
18937
18938 2019-05-14 Richard Biener <rguenther@suse.de>
18939
18940 * tree-pretty-print.c (dump_generic_node): Dump VIEW_CONVERT_EXPR
18941 as __VIEW_CONVERT with -gimple.
18942
18943 2019-05-12 Iain Sandoe <iain@sandoe.co.uk>
18944
18945 PR target/82920
18946 * config/i386/darwin.h (CC1_SPEC): Report -mx32 as an error for
18947 Darwin.
18948
18949 2019-05-14 Segher Boessenkool <segher@kernel.crashing.org>
18950
18951 * config/rs6000/rs6000.md (eh_set_lr_<mode>): Merge with following
18952 define_split to become a define_insn_and_split.
18953
18954 2019-05-14 Segher Boessenkool <segher@kernel.crashing.org>
18955
18956 * config/rs6000/rs6000-protos.h (rs6000_emit_epilogue): Change
18957 arguments.
18958 * config/rs6000/rs6000.c (rs6000_emit_epilogue): Change arguments.
18959 * config/rs6000/rs6000.md (epilogue_type): New define_enum.
18960 (sibcall_epilogue): Adjust.
18961 (epilogue): Adjust.
18962
18963 2019-05-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
18964
18965 * config.gcc: Move *-*-solaris2.10* from obsolete configurations
18966 to unsupported ones.
18967 Simplify x86_64-*-solaris2.1[0-9]* to x86_64-*-solaris2*.
18968 * config.host: Likewise.
18969 * config/i386/sol2.h (ASM_COMMENT_START): Remove.
18970 * config/sparc/driver-sparc.c (host_detect_local_cpu) [__sun__ &&
18971 __svr4__]: Remove "brand" fallback.
18972 [!KSTAT_DATA_STRING]: Remove.
18973 * configure.ac (gcc_cv_ld_hidden): Simplify *-*-solaris2.1[0-9]*
18974 to *-*-solaris2*.
18975 (comdat_group): Likewise.
18976 (set_have_as_tls): Likewise.
18977 (gcc_cv_target_dl_iterate_phdr): Likewise.
18978 (gcc_cv_as_shf_merge): Remove Solaris 10/x86 workaround.
18979 (gcc_cv_ld_aligned_shf_merge): Remove Solaris 10/SPARC workaround.
18980 * configure: Regenerate.
18981 * doc/install.texi: Simplify Solaris target triplets.
18982 (Specific, i?86-*-solaris2*): Remove Solaris 10 references.
18983 (Specific, *-*-solaris2*): Document Solaris 10 removal.
18984 Remove Solaris 10 references.
18985 Remove obsolete Solaris bug reference.
18986 (Specific, sparc-sun-solaris2.10): Remove.
18987
18988 2019-05-14 Uroš Bizjak <ubizjak@gmail.com>
18989
18990 * config/i386/i386.md (any_div): New code iterator.
18991 (paired_mod): New code attribute.
18992 (sgnprefix): Handle DIV and UDIV RTXes.
18993 (u): Ditto.
18994 (<u>divmod<mode>4): Macroize expander from divmod<mode>4
18995 and udivmod<mode>4 patterns using any_div code iterator.
18996 (divmod splitters): Macroize splitters using any_div code iterator.
18997 (*udivmodsi4_pow2_zext_1): Use exactl_log2 in insn condition.
18998 (*udivmodsi4_pow2_zext_2): Ditto.
18999 (*<u>divmod<mode>4_noext): Macroize insn from *divmod<mode>4_noext
19000 and *udivmod<mode>4_noext patterns using any_div code iterator.
19001 (*<u>divmod<mode>4_noext_zext_1): Macroize insn from
19002 *divmod<mode>4_noext_zext_1 and *udivmod<mode>4_noext_zext_1
19003 patterns using any_div code iterator.
19004 (*<u>divmod<mode>4_noext_zext_2): Macroize insn from
19005 *divmod<mode>4_noext_zext_2 and *udivmod<mode>4_noext_zext_2
19006 patterns using any_div code iterator.
19007 (<u>divmodhiqi3): Macroize insn from divmodhiqi3 and
19008 udivmodhiqi3 patterns using any_extend code iterator.
19009
19010 2019-05-14 Richard Biener <rguenther@suse.de>
19011 H.J. Lu <hongjiu.lu@intel.com>
19012
19013 PR tree-optimization/88828
19014 * tree-ssa-forwprop.c (simplify_vector_constructor): Handle
19015 permuting in a single non-constant element not extracted
19016 from a vector.
19017
19018 2019-05-14 Przemyslaw Wirkus <przemyslaw.wirkus@arm.com>
19019
19020 * internal-fn.def (SIGNBIT): New.
19021 * config/aarch64/aarch64-simd.md (signbitv2sf2): New expand
19022 defined.
19023 (signbitv4sf2): Likewise.
19024
19025 2019-05-14 Chenghua Xu <paul.hua.gm@gmail.com>
19026
19027 PR target/90357
19028 * config/mips/mips.c (mips_split_move): Skip forward SRC into
19029 next insn when the SRC reg is dead.
19030
19031 2019-05-14 Bin Cheng <bin.cheng@linux.alibaba.com>
19032
19033 * gimple-ssa-strength-reduction.c (lookup_cand): Adjust index by 1.
19034 (alloc_cand_and_find_basis): Ditto.
19035 (backtrace_base_for_ref, create_mul_ssa_cand): Remove if-then-else.
19036 (create_mul_imm_cand, create_add_ssa_cand): Ditto.
19037 (create_add_imm_cand, slsr_process_cast): Ditto.
19038 (slsr_process_copy, replace_mult_candidate): Ditto.
19039 (replace_rhs_if_not_dup, replace_one_candidate): Ditto.
19040 (dump_cand_vec, analyze_candidates_and_replace): Skip NULL element.
19041 (pass_strength_reduction::execute): Init the first NULL element.
19042
19043 2019-05-13 Nathan Sidwell <nathan@acm.org>
19044
19045 * gcc.c (execute): Simplify cond-expr into if. Reformat comment.
19046 (run_attempt): Reformat line break.
19047
19048 2019-05-13 David Edelsohn <dje.gcc@gmail.com>
19049
19050 PR target/90418
19051 * config/rs6000/rs6000.c (rs6000_emit_epilogue): Don't load EH
19052 data registers in sibcall epilogues.
19053 Don't add EH_RETURN_STACKADJ_RTX to sp in sibcall epilogues.
19054
19055 2019-05-13 Uroš Bizjak <ubizjak@gmail.com>
19056
19057 PR target/89221
19058 * configure.ac (--enable-frame-pointer):
19059 Disable by default for cygwin and mingw.
19060 * configure: Regenerate.
19061
19062 2019-05-13 Nathan Sidwell <nathan@acm.org>
19063
19064 * dwarf2out.c (breakout_comdat_types): Move comment to correct
19065 piece of code.
19066 (const_ok_for_output_1): Balance parens around #if/#else/#endif
19067 (gen_member_die): Move abstract origin check earlier. Only VARs
19068 can be static_inline_p. Simplify splicing control flow.
19069
19070 2019-05-13 Richard Biener <rguenther@suse.de>
19071
19072 * tree-vect-slp.c (vect_get_and_check_slp_defs): Handle
19073 VIEW_CONVERT_EXPR.
19074 (vect_build_slp_tree_1): Likewise.
19075
19076 2019-05-13 Richard Biener <rguenther@suse.de>
19077
19078 PR tree-optimization/90402
19079 * tree-if-conv.c (tree_if_conversion): Value number only
19080 the loop body by making the latch an exit of the region
19081 as well.
19082 * tree-ssa-sccvn.c (process_bb): Add flag whether to skip
19083 processing PHIs.
19084 (do_rpo_vn): Deal with multiple edges into the entry block
19085 that are not backedges inside the region by skipping PHIs
19086 of the entry block.
19087
19088 2019-05-13 Richard Biener <rguenther@suse.de>
19089
19090 PR tree-optimization/90316
19091 * tree-ssa-pre.c (insert_aux): Fold into ...
19092 (insert): ... this function. Use a RPO walk to reduce the
19093 number of required iterations.
19094
19095 2019-05-13 Martin Liska <mliska@suse.cz>
19096
19097 PR tree-optimization/90416
19098 * tree-vect-stmts.c (vect_check_load_store_mask): Concatenate
19099 string instead of passing the second part as va_arg argument.
19100
19101 2019-05-13 Martin Liska <mliska@suse.cz>
19102
19103 PR gcov-profile/90380
19104 * gcov.c (handle_cycle): Do not support zero cycle count,
19105 it should not be possible.
19106 (path_contains_zero_cycle_arc): New function.
19107 (circuit): Ignore zero cycle arc counts.
19108
19109 2019-05-13 Martin Liska <mliska@suse.cz>
19110
19111 PR gcov-profile/90380
19112 * gcov.c (enum loop_type): Remove the enum and
19113 the operator.
19114 (handle_cycle): Assert that we should not reach
19115 a negative count.
19116 (circuit): Use loop_found instead of a tri-state loop_type.
19117 (get_cycles_count): Do not handle NEGATIVE_LOOP as it can't
19118 happen.
19119
19120 2019-05-12 Iain Sandoe <iain@sandoe.co.uk>
19121
19122 PR target/82920
19123 * config/i386/i386.c (ix86_output_jmp_thunk_or_indirect): New.
19124 (ix86_output_indirect_branch_via_reg): Use output mechanism
19125 accounting for __USER_LABEL_PREFIX__.
19126 (ix86_output_indirect_branch_via_push): Likewise.
19127 (ix86_output_function_return): Likewise.
19128 (ix86_output_indirect_function_return): Likewise.
19129
19130 2019-05-12 Richard Sandiford <richard.sandiford@arm.com>
19131
19132 * doc/md.texi: Document use of code attributes in rtx patterns.
19133 * read-md.h (rtx_reader::rtx_alloc_for_name): New member function.
19134 * read-rtl.c (find_code): Split out search loops into...
19135 (maybe_find_code): ...this new function.
19136 (check_code_iterator): Make the error message more informative.
19137 (check_code_attribute): New function.
19138 (rtx_reader::rtx_alloc_for_name): Likewise.
19139 (rtx_reader::read_rtx_code): Use rtx_alloc_for_name.
19140 * config/aarch64/predicates.md (aarch64_smin, aarch64_umin): Delete.
19141 * config/aarch64/aarch64-simd.md (*aarch64_<su>abd<mode>_3): Use
19142 <max_opp> directly as an rtx code instead of via a match_operator.
19143 * config/aarch64/aarch64-sve.md (aarch64_<su>abd<mode>_3): Likewise.
19144 (<su>abd<mode>_3): Update accordingly.
19145
19146 2019-05-12 Iain Sandoe <iain@sandoe.co.uk>
19147
19148 * config/rs6000/rs6000.c (debug_stack_info): When -mdebug=stack
19149 is given, print the state of the EH "save world" computation for
19150 Darwin.
19151
19152 2019-05-11 Jakub Jelinek <jakub@redhat.com>
19153
19154 PR c++/59813
19155 * config/aarch64/aarch64.c (aarch64_expand_epilogue): Don't add
19156 EH_RETURN_STACKADJ_RTX to sp in sibcall epilogues.
19157
19158 2019-05-11 Uroš Bizjak <ubizjak@gmail.com>
19159
19160 * config/i386/i386.md (floatdi<X87MODEF:mode>2_i387_with_xmm):
19161 Use pinsrd for TARGET_SSE4_1.
19162 * config/i386/sse.md (movdi_to_sse): Ditto.
19163
19164 2019-05-10 Richard Biener <rguenther@suse.de>
19165
19166 * tree-ssa-sccvn.c (visit_reference_op_call): Initialize value-id.
19167 (do_rpo_vn): Initialize next_value_id.
19168
19169 2019-05-10 Martin Liska <mliska@suse.cz>
19170
19171 * params.def (PARAM_GIMPLE_FE_COMPUTED_HOT_BB_THRESHOLD):
19172 Fix plural form.
19173
19174 2019-05-10 Jakub Jelinek <jakub@redhat.com>
19175
19176 PR tree-optimization/90385
19177 * tree-parloops.c (try_create_reduction_list): Punt on non-SSA_NAME
19178 arguments of the exit phis.
19179
19180 PR c++/90383
19181 * tree-inline.h (struct copy_body_data): Add do_not_fold member.
19182 * tree-inline.c (remap_gimple_op_r): Avoid folding expressions if
19183 id->do_not_fold.
19184 (copy_tree_body_r): Likewise.
19185 (copy_fn): Set id.do_not_fold to true.
19186
19187 2019-05-10 Martin Liska <mliska@suse.cz>
19188
19189 * config/i386/i386-expand.c (ix86_expand_floorceildf_32):
19190 Reapply changes from r269790.
19191
19192 2019-05-10 Martin Liska <mliska@suse.cz>
19193
19194 PR middle-end/90340
19195 * doc/invoke.texi: New params.
19196 * params.def (PARAM_JUMP_TABLE_MAX_GROWTH_RATIO_FOR_SIZE): New.
19197 (PARAM_JUMP_TABLE_MAX_GROWTH_RATIO_FOR_SPEED): Likewise.
19198 * tree-switch-conversion.c (jump_table_cluster::can_be_handled):
19199 Use it.
19200 * tree-switch-conversion.h (struct jump_table_cluster):
19201 Likewise.
19202
19203 2019-05-09 Segher Boessenkool <segher@kernel.crashing.org>
19204
19205 * combine.c (combine_simplify_rtx): Don't make IF_THEN_ELSE RTL.
19206
19207 2019-05-09 Bill Schmidt <wschmidt@linux.ibm.com>
19208
19209 * doc/loop.texi: Remove reference to FOR_EACH_LOOP_BREAK.
19210
19211 2019-05-09 Alexander Monakov <amonakov@ispras.ru>
19212
19213 PR rtl-optimization/88879
19214 * sel-sched.c (sel_target_adjust_priority): Remove assert.
19215
19216 2019-05-09 Richard Earnshaw <rearnsha@arm.com>
19217
19218 PR target/90405
19219 * config/arm/arm.c (callee_saved_reg_p): Move before
19220 thumb_find_work_register.
19221 (thumb1_prologue_unused_call_clobbered_lo_regs): Move before
19222 thumb_find_work_register. Only call df_get_live_out once.
19223 (thumb1_epilogue_unused_call_clobbered_lo_regs): Likewise.
19224 (thumb_find_work_register): Use
19225 thumb1_prologue_unused_call_clobbered_lo_regs instead of ad hoc
19226 algorithms to locate a spare call clobbered reg.
19227
19228 2019-05-09 Martin Liska <mliska@suse.cz>
19229
19230 * gimple-pretty-print.c (dump_binary_rhs): Dump MIN_EXPR
19231 and MAX_EXPR in GIMPLE FE format.
19232
19233 2019-05-09 Martin Liska <mliska@suse.cz>
19234
19235 * tree-cfg.c (dump_function_to_file): Dump entry BB count.
19236 * gimple-pretty-print.c (dump_gimple_bb_header):
19237 Dump BB count.
19238 (pp_cfg_jump): Dump edge probability.
19239 * profile-count.c (profile_quality_as_string): Simplify
19240 with a static array.
19241 (parse_profile_quality): New function.
19242 (profile_count::dump): Simplify with a static array.
19243 (profile_count::from_gcov_type): Add new argument.
19244 * profile-count.h (parse_profile_quality): Likewise.
19245 * predict.h (set_hot_bb_threshold): New.
19246 * params.def (PARAM_GIMPLE_FE_COMPUTED_HOT_BB_THRESHOLD):
19247 New param.
19248 * predict.c (get_hot_bb_threshold): Set from the new param.
19249 (set_hot_bb_threshold): New.
19250
19251 2019-05-09 Richard Biener <rguenther@suse.de>
19252
19253 PR tree-optimization/90395
19254 * tree-ssa-forwprop.c (pass_forwprop::execute): Do not
19255 rewrite vector stores that throw internally.
19256
19257 2019-05-09 Thomas Schwinge <thomas@codesourcery.com>
19258
19259 * cif-code.def (CHKP): Remove.
19260
19261 PR target/89221
19262 * configure.ac (--enable-frame-pointer): Disable by default for
19263 GNU systems.
19264 * configure: Regenerate.
19265
19266 2019-05-09 Alan Modra <amodra@gmail.com>
19267
19268 PR target/89271
19269 * config/rs6000/rs6000.h (enum reg_class, REG_CLASS_NAMES),
19270 (REG_CLASS_CONTENTS): Add GEN_OR_VSX_REGS class.
19271 * config/rs6000/rs6000.c (rs6000_register_move_cost): Correct
19272 cost for general <-> vsx when direct moves are available.
19273 Cost union classes at minimal cost for any reg in the class.
19274 Correct calculation for moves between vsx, float, and altivec.
19275 Don't return a low cost for moves between special regs. Don't
19276 use hard coded register numbers.
19277 (TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS): Define.
19278 (rs6000_ira_change_pseudo_allocno_class): New function.
19279 * config/rs6000/rs6000.md (movsi_internal1, mov<mode>_internal),
19280 (movdi_internal32, movdi_internal64): Remove '*' from vsx register
19281 alternatives.
19282 (movsi_internal1): Don't disparage vector alternatives.
19283 (mov<mode>_internal): Likewise, excepting alternative that
19284 will be split.
19285 * config/rs6000/vsx.md (vsx_splat_<mode>_reg): Don't disparage
19286 we <- b alternative.
19287
19288 2019-05-08 Jakub Jelinek <jakub@redhat.com>
19289
19290 PR c++/59813
19291 PR tree-optimization/89060
19292 * tree-ssa-live.h (live_vars_map): New typedef.
19293 (compute_live_vars, live_vars_at_stmt, destroy_live_vars): Declare.
19294 * tree-ssa-live.c: Include gimple-walk.h and cfganal.h.
19295 (struct compute_live_vars_data): New type.
19296 (compute_live_vars_visit, compute_live_vars_1, compute_live_vars,
19297 live_vars_at_stmt, destroy_live_vars): New functions.
19298 * tree-tailcall.c: Include tree-ssa-live.h.
19299 (live_vars, live_vars_vec): New global variables.
19300 (find_tail_calls): Perform variable life analysis before punting.
19301 (tree_optimize_tail_calls_1): Clean up live_vars and live_vars_vec.
19302 * tree-inline.h (struct copy_body_data): Add eh_landing_pad_dest
19303 member.
19304 * tree-inline.c (add_clobbers_to_eh_landing_pad): Remove BB argument.
19305 Perform variable life analysis to select variables that really need
19306 clobbers added.
19307 (copy_edges_for_bb): Don't call add_clobbers_to_eh_landing_pad here,
19308 instead set id->eh_landing_pad_dest and assert it is the same.
19309 (copy_cfg_body): Call it here if id->eh_landing_pad_dest is non-NULL.
19310
19311 2019-05-08 Mihail Ionescu <mihail.ionescu@arm.com>
19312 Richard Earnshaw <rearnsha@arm.com>
19313
19314 PR target/88167
19315 * config/arm/arm.c (thumb1_prologue_unused_call_clobbered_lo_regs): New
19316 function.
19317 (thumb1_epilogue_unused_call_clobbered_lo_regs): New function.
19318 (thumb1_compute_save_core_reg_mask): Don't force a spare work
19319 register if both the epilogue and prologue can use call-clobbered
19320 regs.
19321 (thumb1_unexpanded_epilogue): Use
19322 thumb1_epilogue_unused_call_clobbered_lo_regs. Reverse the logic for
19323 picking temporaries for restoring high regs to match that of the
19324 prologue where possible.
19325 (thumb1_expand_prologue): Add any usable call-clobbered low registers to
19326 the list of work registers. Detect if the return address is still live
19327 at the end of the prologue and avoid using it for a work register if so.
19328 If the return address is not live, add LR to the list of pushable regs
19329 after the first pass.
19330
19331 2019-05-08 Bin Cheng <bin.cheng@linux.alibaba.com>
19332
19333 PR tree-optimization/90078
19334 * tree-ssa-loop-ivopts.c (inttypes.h): Include new header file.
19335 (INFTY): Increase the value for infinite cost.
19336 (struct comp_cost): Promote type of members to int64_t.
19337 (infinite_cost): Don't set complexity in initialization.
19338 (comp_cost::operator +,-,+=,-+,/=,*=): Assert when cost computation
19339 overflows to infinite_cost.
19340 (adjust_setup_cost): Promote type of parameter and cost computation
19341 to int64_t.
19342 (struct ainc_cost_data, struct iv_ca): Promote type of member to
19343 int64_t.
19344 (get_scaled_computation_cost_at, determine_iv_cost): Promote type of
19345 cost computation to int64_t.
19346 (determine_group_iv_costs, iv_ca_dump, find_optimal_iv_set): Use
19347 int64_t's format specifier in dump.
19348
19349 2019-05-08 Bin Cheng <bin.cheng@linux.alibaba.com>
19350
19351 PR tree-optimization/90240
19352 * tree-ssa-loop-ivopts.c (get_scaled_computation_cost_at): Scale cost
19353 with respect to scaling factor pre-computed for each basic block.
19354 (try_improve_iv_set): Return bool if best_cost equals to iv_ca cost.
19355 (find_optimal_iv_set_1): Free iv_ca set if it has infinite_cost.
19356 (COST_SCALING_FACTOR_BOUND, determine_scaling_factor): New.
19357 (tree_ssa_iv_optimize_loop): Call determine_scaling_factor. Extend
19358 live range for array of loop's basic blocks. Cleanup aux field of
19359 loop's basic blocks.
19360
19361 2019-05-08 Jakub Jelinek <jakub@redhat.com>
19362
19363 PR tree-optimization/90356
19364 * match.pd ((X +/- 0.0) +/- 0.0): Optimize into X +/- 0.0 if possible.
19365
19366 2019-05-07 Wei Xiao <wei3.xiao@intel.com>
19367
19368 * common/config/i386/i386-common.c (OPTION_MASK_ISA_AVX512BF16_SET
19369 OPTION_MASK_ISA_AVX512BF16_UNSET, OPTION_MASK_ISA2_AVX512BW_UNSET): New.
19370 (OPTION_MASK_ISA2_AVX512F_UNSET): Add OPTION_MASK_ISA_AVX512BF16_UNSET.
19371 (ix86_handle_option): Handle -mavx512bf16.
19372 * config.gcc: Add avx512bf16vlintrin.h and avx512bf16intrin.h
19373 to extra_headers.
19374 * config/i386/avx512bf16vlintrin.h: New.
19375 * config/i386/avx512bf16intrin.h: New.
19376 * config/i386/cpuid.h (bit_AVX512BF16): New.
19377 * config/i386/driver-i386.c (host_detect_local_cpu): Detect BF16.
19378 * config/i386/i386-builtin-types.def: Add new types.
19379 * config/i386/i386-builtin.def: Add new builtins.
19380 * config/i386/i386-c.c (ix86_target_macros_internal): Define
19381 __AVX512BF16__.
19382 * config/i386/i386-option.c (ix86_target_string): Add -mavx512bf16.
19383 (ix86_option_override_internal): Handle BF16.
19384 (ix86_valid_target_attribute_inner_p): Ditto.
19385 * config/i386/i386-expand.c (ix86_expand_args_builtin): Ditto.
19386 * config/i386/i386-builtin.c (enum processor_features): Add
19387 F_AVX512BF16.
19388 (static const _isa_names_table isa_names_table): Ditto.
19389 * config/i386/i386.h (TARGET_AVX512BF16, TARGET_AVX512BF16_P): New.
19390 (PTA_AVX512BF16): Ditto.
19391 * config/i386/i386.opt: Add -mavx512bf16.
19392 * config/i386/immintrin.h: Include avx512bf16intrin.h
19393 and avx512bf16vlintrin.h.
19394 * config/i386/sse.md (avx512f_cvtne2ps2bf16_<mode><mask_name>,
19395 avx512f_cvtneps2bf16_<mode><mask_name>,
19396 avx512f_dpbf16ps_<mode><mask_half_name>): New define_insn patterns.
19397 * config/i386/subst.md (mask_half): Add new subst.
19398 * doc/invoke.texi: Document -mavx512bf16.
19399
19400 2019-05-07 Segher Boessenkool <segher@kernel.crashing.org>
19401
19402 * config/rs6000/rs6000-protos.h (rs6000_legitimize_reload_address_ptr):
19403 Delete declaration.
19404 * config/rs6000/rs6000.c (rs6000_legitimize_reload_address): Delete.
19405 (rs6000_debug_legitimize_reload_address): Delete.
19406 (rs6000_legitimize_reload_address_ptr): Delete.
19407 (rs6000_option_override_internal): Adjust.
19408 (mem_operand_gpr): Adjust comment.
19409 (legitimate_lo_sum_address_p): Ditto.
19410 (rs6000_legitimize_reload_address): Delete.
19411 (rs6000_debug_legitimize_reload_address): Delete.
19412 * config/rs6000/rs6000.h (LEGITIMIZE_RELOAD_ADDRESS): Delete.
19413
19414 2019-05-07 Kelvin Nilsen <kelvin@gcc.gnu.org>
19415
19416 PR target/89765
19417 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
19418 In handling of ALTIVEC_BUILTIN_VEC_INSERT, use modular arithmetic
19419 to compute vector element selector for both constant and variable
19420 operands.
19421
19422 2019-05-07 Uroš Bizjak <ubizjak@gmail.com>
19423
19424 * config/i386/i386.md (cvt_mnemonic): New mode attribute.
19425 (ashr<mode>3_cvt): Merge insn pattern from ashrsi3_cvt and
19426 ashrdi3_cvt using SWI48 mode iterator.
19427
19428 2019-05-07 Alejandro Martinez <alejandro.martinezvicente@arm.com>
19429
19430 * config/aarch64/aarch64-sve.md (<su>abd<mode>_3): New define_expand.
19431 (aarch64_<su>abd<mode>_3): Likewise.
19432 (*aarch64_<su>abd<mode>_3): New define_insn.
19433 (<sur>sad<vsi2qi>): New define_expand.
19434 * config/aarch64/iterators.md: Added MAX_OPP attribute.
19435 * tree-vect-loop.c (use_mask_by_cond_expr_p): Add SAD_EXPR.
19436 (build_vect_cond_expr): Likewise.
19437
19438 2019-05-07 Uroš Bizjak <ubizjak@gmail.com>
19439
19440 * cfgexpand.c (asm_clobber_reg_is_valid): Reject
19441 clobbers outside of accessible_reg_set.
19442 * config/i386/i386.c (ix86_conditional_register_usage):
19443 Disable register sets by clearing corresponding bits in
19444 accessible_reg_set. Do not set corresponding bits in fixed_regs,
19445 call_used_regs and don't clear corresponding reg_names array members.
19446
19447 2019-05-07 Richard Biener <rguenther@suse.de>
19448
19449 * tree-vect-stmts.c (vect_is_simple_cond): When vectype is
19450 not specified still compute a comp_vectype for invariant
19451 compares.
19452
19453 2019-05-07 Richard Biener <rguenther@suse.de>
19454
19455 PR tree-optimization/90316
19456 * tree-ssa-pre.c (translate_vuse_through_block): When
19457 same_valid is NULL do not bother to search for a virtual
19458 PHI continuation.
19459 (phi_translate_1): When operands changed we cannot keep
19460 the same value-number so do not bother to ask whether
19461 that's possible from translate_vuse_through_block.
19462
19463 2019-05-07 Martin Liska <mliska@suse.cz>
19464
19465 * bitmap.c (bitmap_register): Come up with
19466 alloc_descriptor_max_uid and assign it for
19467 a new bitmap.
19468 (register_overhead): Use get_descriptor as
19469 a descriptor.
19470 (release_overhead): New.
19471 (bitmap_elem_to_freelist): Call it.
19472 (bitmap_elt_clear_from): Likewise.
19473 (bitmap_obstack_free): Likewise.
19474 (bitmap_move): Sensitively release memory.
19475 * bitmap.h (struct GTY): Add alloc_descriptor and padding.
19476 (bitmap_initialize): Initialize alloc_descriptor to zero.
19477 * tree-ssa-pre.c (do_hoist_insertion): Use bitmap_move.
19478
19479 2019-05-07 Richard Biener <rguenther@suse.de>
19480
19481 * tree-vect-slp.c (vect_build_slp_tree_2): Bump size whenever
19482 we build a SLP node. Remove max_size and limiting.
19483 (vect_analyze_slp_instance): Record and dump size of the SLP graph.
19484
19485 2019-05-07 Richard Biener <rguenther@suse.de>
19486
19487 PR tree-optimization/90316
19488 * tree-ssa-alias.h (get_continuation_for_phi): Take walking
19489 limit by reference.
19490 (walk_non_aliased_vuses): Take walking limit argument.
19491 * tree-ssa-alias.c (maybe_skip_until): Take limit and abort
19492 walking if it is reached instead of just counting.
19493 (get_continuation_for_phi): Likewise.
19494 (walk_non_aliased_vuses): Likewise, instead of leaving counter
19495 limiting to the callback.
19496 * tree-ssa-sccvn.c (vn_reference_lookup_2): Adjust.
19497 (vn_reference_lookup_3): Likewise.
19498 (vn_reference_lookup_pieces): Likewise.
19499 (vn_reference_lookup): Likewise.
19500 * tree-ssa-pre.c (translate_vuse_through_block): Limit walking.
19501 * tree-ssa-scopedtables.c (vuse_eq): Adjust.
19502 (avail_exprs_stack::lookup_avail_expr): Likewise.
19503
19504 2019-05-07 Jan Hubicka <hubicka@ucw.cz>
19505
19506 * tree-ssa-alias.c (aliasing_component_refs_p): Continue looking
19507 for comparaible types in the second direction even if first one
19508 hits incomparable type.
19509
19510 2019-05-07 Richard Biener <rguenther@suse.de>
19511
19512 PR lto/90369
19513 * lto-wrapper.c (debug_objcopy): Use the original filename
19514 including archive offset for the filename used for -save-temps.
19515
19516 2019-05-07 Li Jia He <helijia@linux.ibm.com>
19517
19518 * tree-ssa-phiopt.c (two_value_replacement): Fix a typo in parameter
19519 detection.
19520
19521 2019-05-06 H.J. Lu <hongjiu.lu@intel.com>
19522 Hongtao Liu <hongtao.liu@intel.com>
19523
19524 PR target/89750
19525 PR target/86444
19526 * config/i386/i386-expand.c (ix86_expand_sse_comi_round):
19527 Modified, original implementation isn't correct.
19528
19529 2019-05-06 Segher Boessenkool <segher@kernel.crashing.org>
19530
19531 * config/rs6000/rs6000.md (FIRST_ALTIVEC_REGNO, LAST_ALTIVEC_REGNO)
19532 (LR_REGNO, CTR_REGNO, CA_REGNO, ARG_POINTER_REGNUM, CR0_REGNO)
19533 (CR1_REGNO, CR2_REGNO, CR3_REGNO, CR4_REGNO, CR5_REGNO, CR6_REGNO)
19534 (CR7_REGNO, MAX_CR_REGNO, VRSAVE_REGNO, VSCR_REGNO)
19535 (FRAME_POINTER_REGNUM): Change numbering.
19536 * config/rs6000/rs6000.c (rs6000_reg_names): Adjust.
19537 (alt_reg_names): Adjust.
19538 (rs6000_conditional_register_usage): Don't mark hard register 64 as
19539 fixed.
19540 * config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Adjust.
19541 (DWARF_FRAME_REGISTERS): Delete.
19542 (DWARF2_FRAME_REG_OUT): Fix whitespace.
19543 (FIXED_REGISTERS, CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS):
19544 Adjust.
19545 (REG_ALLOC_ORDER): Adjust.
19546 (FRAME_POINTER_REGNUM, ARG_POINTER_REGNUM): Adjust.
19547 (REG_CLASS_CONTENTS): Adjust.
19548 (RETURN_ADDR_RTX): Change comment.
19549 (REGNO_OK_FOR_INDEX_P, REGNO_OK_FOR_BASE_P): Use ARG_POINTER_REGNUM
19550 instead of 67.
19551 (REGISTER_NAMES): Adjust.
19552 (ADDITIONAL_REGISTER_NAMES): Adjust.
19553 * config/rs6000/darwin.h (REGISTER_NAMES): Adjust.
19554
19555 2019-05-06 Segher Boessenkool <segher@kernel.crashing.org>
19556
19557 * config/rs6000/rs6000.md (TFHAR_REGNO, TFIAR_REGNO, TEXASR_REGNO):
19558 Delete.
19559 * config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Adjust.
19560 (DWARF_FRAME_REGISTERS): Adjust.
19561 (FIXED_REGISTERS, CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS):
19562 Adjust.
19563 (REG_ALLOC_ORDER): Adjust.
19564 (enum reg_class): Delete SPR_REGS.
19565 (REG_CLASS_NAMES): Delete SPR_REGS.
19566 (REG_CLASS_CONTENTS): Delete SPR_REGS. Adjust for deleted TM regs.
19567 (REGISTER_NAMES): Adjust.
19568 (ADDITIONAL_REGISTER_NAMES): Adjust.
19569 * config/rs6000/darwin.h (REGISTER_NAMES): Adjust.
19570 * config/rs6000/htm.md (htm_mfspr_<mode>, htm_mtspr_<mode>): Adjust.
19571 * config/rs6000/predicates.md (htm_spr_reg_operand): Delete.
19572 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Adjust.
19573 (htm_spr_regno): Delete.
19574 (htm_expand_builtin): Adjust: the HTM builtins now have one fewer
19575 argument.
19576 (rs6000_dbx_register_number): Adjust.
19577
19578 2019-05-06 Segher Boessenkool <segher@kernel.crashing.org>
19579
19580 * config/rs6000/rs6000.h (PRE_GCC3_DWARF_FRAME_REGISTERS): Delete.
19581
19582 2019-05-06 Segher Boessenkool <segher@kernel.crashing.org>
19583
19584 * config/rs6000/rs6000.c (rs6000_dbx_register_number): Handle
19585 FRAME_POINTER_REGNUM, ARG_POINTER_REGNUM, and 64 (which was MQ).
19586
19587 2019-05-06 Jakub Jelinek <jakub@redhat.com>
19588
19589 PR tree-optimization/88709
19590 PR tree-optimization/90271
19591 * params.def (PARAM_STORE_MERGING_MAX_SIZE): New parameter.
19592 * gimple-ssa-store-merging.c (encode_tree_to_bitpos): Handle
19593 non-clobber CONSTRUCTORs with no elts. Remove useless tmp_int
19594 variable.
19595 (imm_store_chain_info::coalesce_immediate_stores): Punt if the size
19596 of the store merging group is larger than
19597 PARAM_STORE_MERGING_MAX_SIZE parameter.
19598 (split_group): Add bzero_first argument. If set, always emit first
19599 the first store which must be = {} of the whole area and then for the
19600 rest of the stores consider all zero bytes as paddings.
19601 (imm_store_chain_info::output_merged_store): Check if first store
19602 is = {} of the whole area and if yes, determine which setting of
19603 bzero_first for split_group gives smaller number of stores. Adjust
19604 split_group callers.
19605 (lhs_valid_for_store_merging_p): Allow decls.
19606 (rhs_valid_for_store_merging_p): Allow non-clobber CONTRUCTORs with
19607 no elts.
19608 (pass_store_merging::process_store): Likewise.
19609
19610 2019-05-06 Kelvin Nilsen <kelvin@gcc.gnu.org>
19611
19612 PR target/89424
19613 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Add
19614 handling of V1TImode.
19615
19616 2019-05-06 Uroš Bizjak <ubizjak@gmail.com>
19617
19618 PR target/89221
19619 * config.gcc (i[34567]86-*-*, x86_64-*-*): Move tests for enable_cld
19620 and enable_frame_pointer ...
19621 * configure.ac: ... here. Update help strings for
19622 --enable-frame-pointer.
19623 * configure: Regenerate.
19624 * config/i386/i386-options.c (ix86_option_override_internal): Remove
19625 USE_X86_64_FRAME_POINTER define, use USE_IX86_FRAME_POINTER instead.
19626 * config/i386/sol2.h (USE_IX86_FRAME_POINTER): Remove.
19627 (USE_X86_64_FRAME_POINTER): Ditto.
19628
19629 2019-05-06 Martin Liska <mliska@suse.cz>
19630
19631 * config.gcc: Append to target_gtfiles and fix indentation.
19632
19633 2019-05-06 Richard Biener <rguenther@suse.de>
19634
19635 PR tree-optimization/90358
19636 * tree-vect-stmts.c (get_group_load_store_type): Properly
19637 detect unused upper half of load.
19638 (vectorizable_load): Likewise.
19639
19640 2019-05-06 Richard Biener <rguenther@suse.de>
19641
19642 PR tree-optimization/88828
19643 * tree-ssa-forwprop.c (get_bit_field_ref_def): Split out from...
19644 (simplify_vector_constructor): ...here. Handle constants in
19645 the constructor.
19646
19647 2019-05-06 Richard Biener <rguenther@suse.de>
19648
19649 PR tree-optimization/90328
19650 * tree-data-ref.h (dr_may_alias_p): Pass in the actual loop nest.
19651 * tree-data-ref.c (dr_may_alias_p): Check whether the clique
19652 is valid in the loop nest before using it.
19653 (initialize_data_dependence_relation): Adjust.
19654 * graphite-scop-detection.c (build_alias_set): Pass the SCOP enclosing
19655 loop as loop-nest to dr_may_alias_p.
19656
19657 2019-05-06 Richard Biener <rguenther@suse.de>
19658
19659 * dwarf2out.c (mem_loc_descriptor): Initialize int_mode.
19660
19661 2019-05-06 Richard Biener <rguenther@suse.de>
19662
19663 PR tree-optimization/90316
19664 * tree-ssa-alias.c (maybe_skip_until): Pass in target BB,
19665 compute target on demand.
19666 (get_continuation_for_phi): Remove code walking stmts to
19667 get to a target virtual operand which could end up being
19668 quadratic.
19669
19670 2019-05-06 Martin Liska <mliska@suse.cz>
19671
19672 PR sanitizer/90312
19673 * config/i386/i386-options.c (ix86_option_override_internal): Error only
19674 when -mabi is selected to a non-default version.
19675
19676 2019-05-06 Hrishikesh Kulkarni <hrishikeshparag@gmail.com>
19677 Martin Liska <mliska@suse.cz>
19678
19679 * Makefile.in: Add lto-dump.texi.
19680 * cgraph.h: Add new functions get_visibility_string and
19681 get_symtab_type_string.
19682 * doc/gcc.texi: Include lto-dump section.
19683 * doc/lto-dump.texi: New file.
19684 * dumpfile.c (dump_switch_p_1): Use parse_dump_option.
19685 (parse_dump_option): Factor out this function.
19686 * dumpfile.h (enum dump_flag): Add new value TDF_ERROR.
19687 (parse_dump_option): Export the function.
19688 * symtab.c (symtab_node::get_visibility_string): New function.
19689 (symtab_node::get_symtab_type_string): Likewise.
19690
19691 2019-05-06 Martin Liska <mliska@suse.cz>
19692
19693 * config/i386/i386-builtins.c: New file.
19694 * config/i386/i386-builtins.h: New file.
19695 * config/i386/i386-expand.c: New file.
19696 * config/i386/i386-expand.h: New file.
19697 * config/i386/i386-features.c: New file.
19698 * config/i386/i386-features.h: New file.
19699 * config/i386/i386-options.c: New file.
19700 * config/i386/i386-options.h: New file.
19701 * config.gcc: Add new files into extra_objs and
19702 target_gtfiles.
19703 * config/i386/i386.c: Split content of the file
19704 into newly introduced files.
19705 * config/i386/i386.h: Declare common variables
19706 and macros.
19707 * config/i386/t-i386: Define dependencies for new files.
19708
19709 2019-05-03 Richard Earnshaw <rearnsha@arm.com>
19710
19711 PR target/89400
19712 * config/arm/arm.md (unaligned_loadsi): Add variant for thumb1.
19713 Restrict 'all' variant to 32-bit configurations.
19714 (unaligned_loadhiu): Likewise.
19715 (unaligned_storehi): Likewise.
19716 (unaligned_storesi): Likewise.
19717 (unaligned_loadhis): Disable when compiling for thumb1.
19718
19719 2019-05-03 Marc Glisse <marc.glisse@inria.fr>
19720
19721 PR tree-optimization/90269
19722 * tree-loop-distribution.c (find_seed_stmts_for_distribution):
19723 Ignore clobbers.
19724
19725 2019-05-03 Martin Liska <mliska@suse.cz>
19726
19727 * hash-map.h: Add is_empty function.
19728 * hash-set.h: Likewise.
19729 * hash-table.h: Likewise.
19730 * dwarf2out.c (dwarf2out_finish): Use is_empty instead of
19731 elements () == 0 (and similar usages).
19732 * gimple-ssa-store-merging.c (pass_store_merging::terminate_and_process_all_chains): Likewise.
19733 * gimplify.c (gimplify_bind_expr): Likewise.
19734 (gimplify_switch_expr): Likewise.
19735 * hash-map-tests.c (test_map_of_strings_to_int): Likewise.
19736 * ipa-icf.c (sem_item_optimizer::remove_symtab_node): Likewise.
19737 * postreload-gcse.c (dump_hash_table): Likewise.
19738 (gcse_after_reload_main): Likewise.
19739 * predict.c (combine_predictions_for_bb): Likewise.
19740 * tree-parloops.c (reduction_phi): Likewise.
19741 (separate_decls_in_region): Likewise.
19742 (transform_to_exit_first_loop): Likewise.
19743 (gen_parallel_loop): Likewise.
19744 (gather_scalar_reductions): Likewise.
19745 (try_create_reduction_list): Likewise.
19746 * var-tracking.c (dump_vars): Likewise.
19747 (emit_notes_for_changes): Likewise.
19748 (vt_emit_notes): Likewise.
19749
19750 2019-05-03 Richard Biener <rguenther@suse.de>
19751
19752 PR tree-optimization/90316
19753 * tree-ssa-pre.c (pass_pre::execute): Re-compute DOM fast queries
19754 before running VN.
19755
19756 2019-05-03 Richard Biener <rguenther@suse.de>
19757
19758 * tree-vect-stmts.c (get_group_load_store_type): Avoid
19759 peeling for gaps by loading only lower halves of vectors
19760 if possible.
19761 (vectorizable_load): Likewise.
19762
19763 2019-05-03 Richard Biener <rguenther@suse.de>
19764
19765 PR middle-end/89518
19766 * match.pd: Add pattern to optimize (A / B) * B + (A % B) to A.
19767
19768 2019-05-03 Richard Biener <rguenther@suse.de>
19769
19770 PR middle-end/87314
19771 * match.pd (cmp (convert1?@2 addr@0) (convert2? addr@1)):
19772 Handle STRING_CST vs DECL or STRING_CST.
19773
19774 2019-05-03 Richard Biener <rguenther@suse.de>
19775
19776 PR tree-optimization/88963
19777 * tree-ssa-forwprop.c (pass_forwprop::execute): Rewrite
19778 vector loads feeding only BIT_FIELD_REFs to component
19779 loads. Rewrite stores fed by CONSTRUCTORs to component
19780 stores.
19781
19782 2019-05-03 Jakub Jelinek <jakub@redhat.com>
19783
19784 * opts.h (finish_options): Remove lang_mask argument.
19785 (print_help, help_option_argument): Declare.
19786 * opts.c (print_help): Remove forward declaration, no longer static.
19787 (finish_options): Remove lang_mask argument, don't call print_help
19788 here.
19789 * opts-global.c (decode_options): Adjust finish_option caller, call
19790 print_help here.
19791
19792 PR tree-optimization/90303
19793 * ipa-devirt.c (obj_type_ref_class, get_odr_type): Don't use
19794 TYPE_CANONICAL for TYPE_STRUCTURAL_EQUALITY_P types in !in_lto_p mode.
19795
19796 2019-05-03 Richard Biener <rguenther@suse.de>
19797
19798 PR tree-optimization/89698
19799 * gimple-fold.c (canonicalize_constructor_val): Early out
19800 for constants, handle unfolded INTEGER_CSTs as they appear in
19801 C++ virtual table ctors.
19802
19803 2019-05-03 Richard Biener <rguenther@suse.de>
19804
19805 * passes.c (execute_function_todo): Remove dead code.
19806
19807 2019-05-02 Segher Boessenkool <segher@kernel.crashing.org>
19808
19809 * config/rs6000/rs6000.c (rs6000_dbx_register_number): Do not use
19810 the internal register number, for any "real" register.
19811
19812 2019-05-02 Segher Boessenkool <segher@kernel.crashing.org>
19813
19814 * config/rs6000/rs6000.c (rs6000_dbx_register_number): Return the
19815 correct numbers for TFHAR, TFIAR, TEXASR.
19816
19817 2019-05-02 Richard Biener <rguenther@suse.de>
19818
19819 PR tree-optimization/89653
19820 * tree-ssa-loop.c (pass_data_tree_loop_init): Execute
19821 update-address-taken before the pass.
19822 * passes.def (pass_tree_loop_init): Put comment before it.
19823
19824 2019-05-02 Richard Biener <rguenther@suse.de>
19825
19826 PR tree-optimization/89509
19827 * tree-ssa-structalias.c (compute_dependence_clique): Look
19828 at the first subvar when determining whether it is restrict.
19829
19830 2019-05-02 Richard Biener <rguenther@suse.de>
19831
19832 PR tree-optimization/90273
19833 * tree-ssa-dce.c (eliminate_unnecessary_stmts): Eliminate
19834 useless debug stmts.
19835
19836 2019-05-02 Alejandro Martinez <alejandro.martinezvicente@arm.com>
19837
19838 * config/aarch64/aarch64-sve.md (<sur>dot_prod<vsi2qi>): Taken from SVE
19839 ACLE branch.
19840 * config/aarch64/iterators.md: Copied Vetype_fourth, VSI2QI and vsi2qi from
19841 SVE ACLE branch.
19842 * tree-vect-loop.c (use_mask_by_cond_expr_p): New function to check if a
19843 VEC_COND_EXPR be inserted to emulate a conditional internal function.
19844 (build_vect_cond_expr): Emit the VEC_COND_EXPR.
19845 (vectorizable_reduction): Use the functions above to vectorize in a
19846 fully masked loop codes that don't have a conditional internal
19847 function.
19848
19849 2019-05-02 Martin Liska <mliska@suse.cz>
19850
19851 * cgraphclones.c: Call valid_attribute_p with 1 for
19852 target_clone.
19853 * config/i386/i386-c.c (ix86_pragma_target_parse): Use 0 as
19854 it's for target attribute.
19855 * config/i386/i386-protos.h (ix86_valid_target_attribute_tree):
19856 Add new boolean argument.
19857 * config/i386/i386.c (ix86_valid_target_attribute_inner_p):
19858 Likewise.
19859 (ix86_valid_target_attribute_tree): Pass target_clone_attr
19860 to ix86_valid_target_attribute_inner_p.
19861 (ix86_valid_target_attribute_p): Pass flags argument to
19862 ix86_valid_target_attribute_inner_p.
19863 (get_builtin_code_for_version): Use 0 as it's target attribute.
19864
19865 2019-05-02 Martin Liska <mliska@suse.cz>
19866
19867 * gcc.c (process_command): Add dummy file only
19868 if n_infiles == 0.
19869 * opts-global.c (decode_options): Pass lang_mask.
19870 * opts.c (print_help): New function.
19871 (finish_options): Print --help if help_option_argument
19872 is set.
19873 (common_handle_option): Factor out content of OPT__help_
19874 into print_help.
19875 * opts.h (finish_options): Add new argument.
19876
19877 2019-05-02 Martin Liska <mliska@suse.cz>
19878
19879 PR target/88809
19880 * config/i386/i386.c (ix86_expand_strlen): Use strlen call.
19881 With -minline-all-stringops use inline expansion using 4B loop.
19882 * doc/invoke.texi: Document the change of
19883 -minline-all-stringops.
19884
19885 2019-05-01 Jeff Law <law@redhat.com>
19886
19887 PR tree-optimization/88797
19888 * gimple-ssa-split-paths (is_feasible_trace): Reject cases where the
19889 PHI feeds a conditional on the RHS of an assignment.
19890
19891 2019-04-30 Andrew Waterman <andrew@sifive.com>
19892 Jim Wilson <jimw@sifive.com>
19893
19894 * config/riscv/constraints.md (L): New.
19895 * config/riscv/predicates.md (lui_operand): New.
19896 (sfb_alu_operand): New.
19897 * config/riscv/riscv-protos.h (riscv_expand_conditional_move): Declare.
19898 * config/riscv/riscv.c (riscv_expand_conditional_move): New.
19899 * config/riscv/riscv.h (TARGET_SFB_ALU): New.
19900 * config/riscv/risc.md (type): Add sfb_alu.
19901 (branch<mode>): Renamed from branch_order<mode>. Change predicate for
19902 operand 3 to reg_or_0_operand. In output string, change %3 to %z3.
19903 (branch_zero<mode>): Delete.
19904 (mov<mode>cc): New.
19905 (mov<GPR:mode><X:mode>cc): Likewise.
19906 * config/riscv/sifive-7.md (sifive_7_sfb_alu): New. Use in bypasses.
19907
19908 2019-04-30 Nathan Sidwell <nathan@acm.org>
19909
19910 * tree.h (MARK_TS_EXP): New.
19911
19912 2019-04-30 Martin Liska <mliska@suse.cz>
19913
19914 * opts.c (enable_warning_as_error): Provide hints
19915 for unknown options.
19916
19917 2019-04-30 Martin Liska <mliska@suse.cz>
19918
19919 PR debug/90288
19920 * doc/invoke.texi: Add missing dash for gas-locview-support
19921 and gno-as-locview-support.
19922
19923 2019-04-30 Jakub Jelinek <jakub@redhat.com>
19924
19925 PR target/89093
19926 * config/aarch64/aarch64.c (aarch64_process_one_target_attr): Don't skip
19927 whitespace at the start of target attribute string.
19928
19929 2019-04-30 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
19930
19931 PR target/86538
19932 * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins):
19933 Define __ARM_FEATURE_ATOMICS.
19934
19935 2019-04-30 Martin Liska <mliska@suse.cz>
19936
19937 * gimple-fold.c (gimple_fold_builtin_memory_op): Change endp
19938 into built_in_function enum. Remove code for endp == 2 and
19939 use BUILT_IN_* constants.
19940 (gimple_fold_builtin): Call the function with fcode.
19941
19942 2019-04-30 Martin Liska <mliska@suse.cz>
19943
19944 * config/i386/i386.c (ix86_builtin_reciprocal): Cast
19945 DECL_FUNCTION_CODE into ix86_builtins enum before
19946 the switch statement.
19947
19948 2019-04-30 Jakub Jelinek <jakub@redhat.com>
19949
19950 PR tree-optimization/89475
19951 * tree-ssa-ccp.c (evaluate_stmt): Handle BUILT_IN_BSWAP{16,32,64}
19952 calls.
19953
19954 2019-04-30 Martin Liska <mliska@suse.cz>
19955
19956 PR translation/90274
19957 * opts.c (print_filtered_help): Wrap string in _(...).
19958
19959 2019-04-30 Bin Cheng <bin.cheng@linux.alibaba.com>
19960
19961 PR tree-optimization/90240
19962 Revert:
19963 2019-04-23 Bin Cheng <bin.cheng@linux.alibaba.com>
19964
19965 PR tree-optimization/90078
19966 * tree-ssa-loop-ivopts.c (comp_cost::operator +,-,+=,-+,/=,*=): Add
19967 checks for infinite_cost overflow.
19968
19969 2019-04-29 Jeff Law <law@redhat.com>
19970
19971 * passes.def: Move -Wrestrict pass after copy propagation.
19972
19973 2019-04-29 Maya Rashish <coypu@sdf.org>
19974
19975 * config.gcc (default_gnu_indirect_function): Default to yes
19976 for arm*-*-netbsd*, i[34567]86-*-netbsd*, powerpc*-*-netbsd*,
19977 sparc*-*-netbsd*, x86_64-*-netbsd*.
19978
19979 2019-04-29 Vladislav Ivanishin <vlad@ispras.ru>
19980
19981 * tree-ssa-uninit.c (is_pred_expr_subset_of): Correctly handle cases
19982 where cond2 is NE_EXPR.
19983 (is_value_included_in): Update comment.
19984
19985 2019-04-29 Richard Biener <rguenther@suse.de>
19986
19987 PR tree-optimization/90278
19988 * tree-ssa-forwprop.c (pass_forwprop::execute): Transfer/clean
19989 EH on comparison simplification.
19990
19991 2019-04-29 Jason Merrill <jason@redhat.com>
19992
19993 PR c++/82081 - tail call optimization breaks noexcept
19994 * tree-tailcall.c (find_tail_calls): Don't turn a call from a
19995 nothrow function to a might-throw function into a tail call.
19996
19997 2019-04-29 Richard Sandiford <richard.sandiford@arm.com>
19998
19999 * tree-data-ref.h (data_dependence_relation::inner_loop): Delete.
20000 (DDR_INNER_LOOP): Likewise.
20001 * tree-data-ref.c (dump_data_dependence_relation): Update accordingly.
20002 (initialize_data_dependence_relation): Likewise.
20003 (insert_innermost_unit_dist_vector): Use 0 instead of DDR_INNER_LOOP.
20004
20005 2019-04-29 Jakub Jelinek <jakub@redhat.com>
20006
20007 PR rtl-optimization/90257
20008 * cfgrtl.c (flow_active_insn_p): Return true for USE of a function
20009 return value.
20010
20011 Revert the revert:
20012 2019-04-21 H.J. Lu <hongjiu.lu@intel.com>
20013
20014 PR target/90178
20015 Revert:
20016 2018-11-21 Uros Bizjak <ubizjak@gmail.com>
20017
20018 Revert the revert:
20019 2013-10-26 Vladimir Makarov <vmakarov@redhat.com>
20020
20021 Revert:
20022 2013-10-25 Vladimir Makarov <vmakarov@redhat.com>
20023
20024 * lra-spills.c (lra_final_code_change): Remove useless move insns.
20025
20026 2019-04-29 Richard Biener <rguenther@suse.de>
20027
20028 * tree-ssa.c (insert_debug_temp_for_var_def): For {CLOBBER}
20029 rhs issue a reset.
20030
20031 2019-04-27 Iain Buclaw <ibuclaw@gdcproject.org>
20032
20033 * config/netbsd-d.c: Include memmodel.h. Remove unused tree.h,
20034 varasm.h, and netbsd-protos.h.
20035
20036 2019-04-27 Uroš Bizjak <ubizjak@gmail.com>
20037
20038 PR target/89261
20039 * config/i386/i386-protos.h (ix86_data_alignment): Change
20040 the second argument type to unsigned int.
20041 * config/i386/i386.c (ix86_data_alignment): Change "align"
20042 argument type to unsigned int.
20043
20044 2019-04-27 Martin Liska <mliska@suse.cz>
20045
20046 PR middle-end/90258
20047 * opt-suggestions.c (option_proposer::build_option_suggestions):
20048 When get_valid_option_values returns empty values, add the
20049 misspelling candidate.
20050
20051 2019-04-26 Jim Wilson <jimw@sifive.com>
20052
20053 * config/riscv/riscv-protos.h (riscv_move_integer): Add machine_mode
20054 parameter.
20055 * config/riscv/riscv.c (riscv_move_integer): New parameter orig_mode.
20056 Pass orig_mode to riscv_build_integer.
20057 (riscv_split_integer): Pass mode to riscv_move_integer.
20058 (riscv_legitimize_const_move): Likewise.
20059 (riscv_legitimize_move): For MEM dest and CONST_INT src case, new local
20060 promoted_mode. Replace force_reg call with code to load constant into
20061 promoted reg and then subreg it for the store.
20062 * config/riscv/riscv.md (low<mode>+1): Pass <GPR:MODE>mode to
20063 riscv_move_integer.
20064
20065 2018-04-26 Eugene Sharygin <eush@ispras.ru>
20066
20067 * gdbhooks.py: Fix UnicodeDecodeErrors when printing trees with
20068 corrupt codes.
20069
20070 2019-04-26 Richard Sandiford <richard.sandiford@arm.com>
20071
20072 * tree.h (TYPE_VECTOR_SUBPARTS, SET_TYPE_VECTOR_SUBPARTS): Add
20073 commentary about the encoding of precision.
20074
20075 2019-04-25 Andreas Tobler <andreast@gcc.gnu.org>
20076
20077 * config/i386/freebsd64.h: Add bits for 32-bit multilib support.
20078 * config/i386/t-freebsd64: New file.
20079 * config.gcc: Add the t-freebsd64 for multilib support.
20080
20081 2019-04-25 Uroš Bizjak <ubizjak@gmail.com>
20082
20083 * doc/extend.texi (vector_size): Add missing comma after @xref.
20084
20085 2019-04-25 Jakub Jelinek <jakub@redhat.com>
20086
20087 * BASE-VER: Set to 10.0.0.
20088
20089 2019-04-25 Richard Biener <rguenther@suse.de>
20090
20091 PR middle-end/89765
20092 * gimplify.c (gimplify_expr): Avoid turning a lvalue
20093 VIEW_CONVERT_EXPR into one operating on an rvalue.
20094
20095 2019-04-25 H.J. Lu <hongjiu.lu@intel.com>
20096
20097 PR target/89929
20098 * config/i386/i386.c (feature_priority): Moved to file scope.
20099 (processor_features): Likewise.
20100 (processor_model): Likewise.
20101 (_arch_names_table): Likewise.
20102 (arch_names_table): Likewise.
20103 (_feature_list): Removed.
20104 (feature_list): Likewise.
20105 (_isa_names_table): Moved to file scope. Add priority.
20106 (isa_names_table): Likewise.
20107 (get_builtin_code_for_version): Replace feature_list with
20108 isa_names_table. Update error message for P_ZERO priority.
20109
20110 2019-04-25 Richard Biener <rguenther@suse.de>
20111
20112 * tree-pass.h (make_pass_phi_only_cprop): Remove.
20113 * timevar.def (TV_TREE_PHI_CPROP): Likewise.
20114
20115 2019-04-24 Jeff Law <law@redhat.com>
20116
20117 PR tree-optimization/90037
20118 * Makefile.in (OBJS): Remove tree-ssa-phionlycprop.c
20119 * passes.def: Replace all instance of phi-only cprop with the
20120 lattice propagator. Move propagation pass from after erroneous
20121 path isolation to before erroneous path isolation.
20122 * tree-ssa-phionlycprop.c: Remove.
20123
20124 2019-04-24 Richard Biener <rguenther@suse.de>
20125
20126 PR middle-end/90213
20127 * gimple-fold.c (fold_const_aggregate_ref_1): Do multiplication
20128 by size and BITS_PER_UNIT on poly-wide-ints.
20129
20130 2019-04-25 Richard Biener <rguenther@suse.de>
20131
20132 PR middle-end/90194
20133 * match.pd: Add pattern to simplify view-conversion of an
20134 empty constructor.
20135
20136 2019-04-24 Clement Chigot <clement.chigot@atos.net>
20137
20138 * config/rs6000/aix71.h (SUBTARGET_OVERRIDE_OPTIONS): Disable
20139 OPTION_MASK_VSX and OPTION_MASK_ALTIVEC from rs6000_isa_flags
20140 for Go on 32 bit AIX.
20141 * config/rs6000/aix72.h: Likewise.
20142
20143 2019-04-24 Jakub Jelinek <jakub@redhat.com>
20144
20145 PR target/90193
20146 * rtl.c (classify_insn): Return JUMP_INSN for asm goto.
20147 * emit-rtl.c (try_split): Copy over REG_LABEL_TARGET.
20148
20149 2019-04-24 Andreas Krebbel <krebbel@linux.ibm.com>
20150
20151 PR target/89952
20152 * config/s390/s390.c (s390_restore_gprs_from_fprs): Restore GPRs
20153 from FPRs in reverse order. Generate REG_CFA_DEF_CFA note also
20154 for restored hard frame pointer.
20155 (s390_sched_dependencies_evaluation): Implement new target hook.
20156 (TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK): New macro definition.
20157
20158 2019-04-24 Claudiu Zissulescu <claziss@sysnopsys.com>
20159
20160 * config/arc/arc-options.def: Fix typos and spelling mistakes.
20161 * config/arc/arc.c (arc_init): Cleanup warning message.
20162 (arc_override_options): Likewise.
20163
20164 2019-04-24 Jakub Jelinek <jakub@redhat.com>
20165
20166 PR target/90187
20167 * config/i386/i386.c (ix86_expand_sse_fp_minmax): Force if_true into
20168 a register if both if_true and if_false are MEMs.
20169
20170 PR tree-optimization/90208
20171 * tree-cfg.c (remove_bb): Move forced labels from removed bbs
20172 after labels of new_bb, not before them.
20173
20174 PR tree-optimization/90211
20175 * tree-parloops.c (try_create_reduction_list): Ignore phi arguments
20176 which are not SSA_NAMEs.
20177
20178 2018-04-23 Sudakshina Das <sudi.das@arm.com>
20179
20180 * config/aarch64/aarch64-linux.h (TARGET_ASM_FILE_END): Define for
20181 AArch64.
20182 (aarch64_file_end_indicate_exec_stack): Add gnu note section.
20183
20184 2019-04-23 Roman Zhuykov <zhroma@ispras.ru>
20185
20186 PR rtl-optimization/87979
20187 * modulo-sched.c (sms_schedule): Start ii value "mii" should
20188 not equal zero.
20189
20190 2019-04-23 Roman Zhuykov <zhroma@ispras.ru>
20191
20192 PR rtl-optimization/84032
20193 * modulo-sched.c (ps_insn_find_column): Change condition so that
20194 branch will always be the last insn in a row inside partial
20195 schedule.
20196
20197 2019-04-23 Richard Biener <rguenther@suse.de>
20198
20199 PR debug/90131
20200 * tree-cfgcleanup.c (move_debug_stmts_from_forwarder): Add
20201 dest_single_pred_p argument.
20202 (remove_forwarder_block): Adjust.
20203 (remove_forwarder_block_with_phi): Likewise.
20204
20205 2019-04-23 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
20206 Bernd Edlinger <bernd.edlinger@hotmail.de>
20207 Jakub Jelinek <jakub@redhat.com>
20208
20209 PR target/89093
20210 * config/arm/arm.c (aapcs_vfp_is_call_or_return_candidate): Diagnose
20211 if used with general-regs-only.
20212 (arm_conditional_register_usage): Don't add non-general regs if
20213 general-regs-only.
20214 (arm_valid_target_attribute_rec): Handle general-regs-only.
20215 * config/arm/arm.h (TARGET_HARD_FLOAT): Return false if
20216 general-regs-only.
20217 (TARGET_HARD_FLOAT_SUB): Define.
20218 (TARGET_SOFT_FLOAT): Define as negation of TARGET_HARD_FLOAT_SUB.
20219 (TARGET_REALLY_IWMMXT): Add && !TARGET_GENERAL_REGS_ONLY.
20220 (TARGET_REALLY_IWMMXT2): Likewise.
20221 * config/arm/arm.opt: Add -mgeneral-regs-only.
20222 * doc/extend.texi: Document ARM general-regs-only target.
20223 * doc/invoke.texi: Document ARM -mgeneral-regs-only.
20224
20225 2019-04-23 Bin Cheng <bin.cheng@linux.alibaba.com>
20226
20227 PR tree-optimization/90078
20228 * tree-ssa-loop-ivopts.c (comp_cost::operator +,-,+=,-+,/=,*=): Add
20229 checks for infinite_cost overflow.
20230
20231 2019-04-23 Bin Cheng <bin.cheng@linux.alibaba.com>
20232
20233 PR tree-optimization/90021
20234 * tree-chrec.c (evolution_function_is_univariate_p): New parameter
20235 and check univariate against it.
20236 * tree-chrec.h (evolution_function_is_univariate_p): New parameter.
20237 * tree-data-ref.c (add_other_self_distances): Pass new argument.
20238
20239 2019-04-21 H.J. Lu <hongjiu.lu@intel.com>
20240
20241 PR target/90178
20242 Revert:
20243 2018-11-21 Uros Bizjak <ubizjak@gmail.com>
20244
20245 Revert the revert:
20246 2013-10-26 Vladimir Makarov <vmakarov@redhat.com>
20247
20248 Revert:
20249 2013-10-25 Vladimir Makarov <vmakarov@redhat.com>
20250
20251 * lra-spills.c (lra_final_code_change): Remove useless move insns.
20252
20253 2019-04-21 Iain Sandoe <iain@sandoe.co.uk>
20254
20255 * config/rs6000/rs6000.md (group_end_nop): Emit insn register
20256 names using operand format, rather than hard-wired.
20257 (speculation_barrier): Likewise.
20258
20259 2019-04-19 Segher Boessenkool <segher@kernel.crashing.org>
20260
20261 PR tree-optimization/88055
20262 * tree-call-cdce.c (comparison_code_if_no_nans): New function.
20263 (gen_one_condition): Use it if !HONOR_NANS.
20264
20265 2019-04-19 Jakub Jelinek <jakub@redhat.com>
20266
20267 PR middle-end/90139
20268 * tree-outof-ssa.c (get_temp_reg): If reg_mode is BLKmode, return
20269 assign_temp instead of gen_reg_rtx.
20270
20271 2019-04-19 Christophe Lyon <christophe.lyon@linaro.org>
20272
20273 PR translation/90118
20274 * config/aarch64/aarch64.c (aarch64_override_options_internal):
20275 Add missing space before %<.
20276
20277 2019-04-18 Peter Bergner <bergner@linux.ibm.com>
20278
20279 PR rtl-optimization/87871
20280 * ira-lives.c (make_object_dead): Don't add conflicts to
20281 TOTAL_CONFLICT_HARD_REGS for register ignore_reg_for_conflicts.
20282
20283 2019-04-18 Martin Sebor <msebor@redhat.com>
20284
20285 PR middle-end/89797
20286 * tree.h (TYPE_VECTOR_SUBPARTS): Use HOST_WIDE_INT_1U.
20287 * config/aarch64/aarch64.c (aarch64_simd_vector_alignment): Avoid
20288 assuming type size fits in SHWI.
20289
20290 2019-04-18 Jan Hubicka <hubicka@ucw.cz>
20291
20292 PR ipa/85051
20293 * ipa-inline.c (flatten_function): New parameter UPDATE.
20294 (ipa_inline, early_inliner): Use it.
20295
20296 2019-04-18 Richard Sandiford <richard.sandiford@arm.com>
20297
20298 * fold-const.c (int_const_binop): Return early on failure.
20299
20300 2019-04-18 Richard Sandiford <richard.sandiford@arm.com>
20301
20302 PR middle-end/85164
20303 * combine.c (force_int_to_mode): Cast the argument rather than
20304 the result of known_alignment.
20305 * rtlanal.c (rtx_addr_can_trap_p_1): Use known_subrange_p.
20306
20307 2019-04-18 Richard Biener <rguenther@suse.de>
20308
20309 PR debug/90131
20310 * tree-cfgcleanup.c (move_debug_stmts_from_forwarder): Split
20311 out from ...
20312 (remove_forwarder_block): ... here.
20313 (remove_forwarder_block_with_phi): Also move debug stmts here.
20314
20315 2019-04-18 Jakub Jelinek <jakub@redhat.com>
20316
20317 PR translation/79183
20318 * gimple-ssa-sprintf.c (format_directive): Use inform_n instead of
20319 inform where appropriate.
20320
20321 2019-04-18 Richard Biener <rguenther@suse.de>
20322
20323 * tree.c (get_qualified_type): Put found type variants at the
20324 head of the variant list.
20325
20326 2018-04-17 Segher Boessenkool <segher@kernel.crashing.org>
20327
20328 * config/rs6000/rs6000.c (rs6000_register_move_cost): Fix typo.
20329
20330 2019-04-17 Hongtao Liu <hongtao.liu@intel.com>
20331
20332 PR target/90125
20333 * config/i386/avx512fintrin.h (_mm_maskz_fmadd_round_sd,
20334 _mm_maskz_fmadd_round_ss, _mm_maskz_fmsub_round_sd,
20335 _mm_maskz_fmsub_round_ss, _mm_maskz_fnmadd_round_sd,
20336 _mm_maskz_fnmadd_round_ss, _mm_maskz_fnmsub_round_sd,
20337 _mm_maskz_fnmsub_round_ss): Use _maskz builtin instead of _mask3.
20338
20339 2019-04-17 Peter Bergner <bergner@linux.ibm.com>
20340
20341 * ira-conflicts.c (print_allocno_conflicts): Always print something,
20342 even for allocno's with no conflicts.
20343 (print_conflicts): Print an extra newline.
20344
20345 2019-04-17 Segher Boessenkool <segher@kernel.crashing.org>
20346
20347 * auto-inc-dec.c (attempt_change): Set the alignment of the
20348 temporary memory to that of the original.
20349
20350 2019-04-17 Joao Moreira <jmoreira@suse.de>
20351
20352 * targhooks.c (default_print_patchable_function_entry): Emit
20353 __patchable_function_entries section with writable flags to allow
20354 relocation resolution.
20355
20356 2019-04-17 Jonny Grant <jg@jguk.org>
20357
20358 * collect2.c (main): Change gcc.gnu.org URL to HTTPS.
20359
20360 2019-04-17 Jakub Jelinek <jakub@redhat.com>
20361
20362 PR middle-end/90095
20363 * internal-fn.c (expand_mul_overflow): Don't set SUBREG_PROMOTED_VAR_P
20364 on lowpart SUBREGs.
20365
20366 2019-04-17 Claudiu Zissulescu <claziss@synopsys.com>
20367
20368 * config/arc/arc.c (arc_init): Format diagnostic string.
20369 (arc_override_options): Likewise.
20370 (check_if_valid_regno_const): Likewise.
20371 (arc_reorg): Likewise.
20372
20373 2019-04-17 Segher Boessenkool <segher@kernel.crashing.org>
20374
20375 PR target/17108
20376 * config/rs6000/rs6000.c (rs6000_split_multireg_move): Adjust pattern
20377 name.
20378 (rs6000_emit_allocate_stack_1): Simplify condition. Adjust pattern
20379 name.
20380 * config/rs6000/rs6000.md (bits): Add entries for SF and DF.
20381 (*movdi_update1): Use Pmode.
20382 (movdi_<mode>_update): Fix argument to avoiding_indexed_address_p.
20383 (movdi_<mode>_update_stack): Rename to ...
20384 (movdi_update_stack): ... this. Fix comment. Change condition. Don't
20385 use Pmode.
20386 (*movsi_update1): Use Pmode.
20387 (*movsi_update2): Use Pmode.
20388 (movsi_update): Rename to ...
20389 (movsi_<mode>_update): ... this. Use Pmode.
20390 (movsi_update_stack): Fix condition.
20391 (*movhi_update1): Use Pmode. Fix argument to
20392 avoiding_indexed_address_p.
20393 (*movhi_update2): Ditto.
20394 (*movhi_update3): Ditto.
20395 (*movhi_update4): Ditto.
20396 (*movqi_update1): Ditto.
20397 (*movqi_update2): Ditto.
20398 (*movqi_update3): Ditto.
20399 (*movsf_update1, *movdf_update1): Merge, rename to...
20400 (*mov<mode>_update1): This. Use Pmode. Fix argument to
20401 avoiding_indexed_address_p. Add "size" attribute.
20402 (*movsf_update2, *movdf_update2): Merge, rename to...
20403 (*mov<mode>_update2): This. Ditto.
20404 (*movsf_update3): Use Pmode. Fix argument to
20405 avoiding_indexed_address_p.
20406 (*movsf_update4): Ditto.
20407 (allocate_stack): Simplify condition. Adjust pattern names.
20408
20409 2019-04-17 Jakub Jelinek <jakub@redhat.com>
20410
20411 PR target/89093
20412 * config/arm/arm.c (arm_valid_target_attribute_rec): Don't skip
20413 whitespace at the start of target attribute string.
20414
20415 2019-04-16 Pat Haugen <pthaugen@us.ibm.com>
20416
20417 PR target/84369
20418 * config/rs6000/power9.md: Add store forwarding bypass.
20419
20420 2019-04-16 Alexandre Oliva <aoliva@redhat.com>
20421
20422 PR debug/89528
20423 * valtrack.c (dead_debug_insert_temp): Reset debug references
20424 to the return value of a call being removed.
20425
20426 2019-04-16 Claudiu Zissulescu <claziss@synopsys.com>
20427
20428 * config/arc/arc-protos.h (arc_register_move_cost): Remove.
20429 * config/arc/arc.c (arc_register_move_cost): Re-purpose it to
20430 implement target hook.
20431 (arc_memory_move_cost): New function.
20432 (TARGET_REGISTER_MOVE_COST): Define.
20433 (TARGET_MEMORY_MOVE_COST): Likewise.
20434 * config/arc/arc.h (REGISTER_MOVE_COST): Remove.
20435 (MEMORY_MOVE_COST): Likewise.
20436
20437 2019-04-16 Claudiu Zissulescu <claziss@synopsys.com>
20438
20439 * config/arc/arc.md (sibcall_insn): Use Rcd constraint.
20440 (sibcall_value_insn): Likewise.
20441 * config/arc/constraints.md (Rs5): Remove.
20442
20443 2019-04-16 Claudiu Zissulescu <claziss@synopsys.com>
20444
20445 * config/arc/arc.c (arc_hard_regno_modes): Add two missing modes
20446 for last two fake registers.
20447 (arc_conditional_register_usage): Make sure fake frame and arg
20448 pointer regs are in general regs class.
20449 (FRAME_POINTER_MASK): Remove.
20450 (RETURN_ADDR_MASK): Remove.
20451 (arc_must_save_register): Use hard frame regnum.
20452 (frame_restore_reg): Use hard_frame_pointer_rtx.
20453 (arc_save_callee_saves): Likewise.
20454 (arc_restore_callee_saves): Likewise.
20455 (arc_save_callee_enter): Likewise.
20456 (arc_restore_callee_leave): Likewise.
20457 (arc_save_callee_milli): Likewise.
20458 (arc_eh_return_address_location): Likewise.
20459 (arc_check_multi): Use hard frame regnum.
20460 (arc_can_eliminate): Likewise.
20461 * config/arc/arc.h (FIXED_REGISTERS): Make FP register available
20462 for register allocator.
20463 (REG_CLASS_CONTENTS): Update GENERAL_REGS.
20464 (REGNO_OK_FOR_BASE_P): Consider FRAME_POINTER_REGNUM.
20465 (FRAME_POINTER_REGNUM): Change it to a fake register.
20466 (HARD_FRAME_POINTER_REGNUM): Defined.
20467 (ARG_POINTER_REGNUM): Change it to a new fake register.
20468 (ELIMINABLE_REGS): Update.
20469 (REGISTER_NAMES): Update names.
20470 * config/arc/arc.md (LP_START): Remove.
20471 (LP_END): Likewise.
20472 (shift_si3_loop): Update pattern.
20473
20474 2019-04-16 Claudiu Zissulescu <claziss@synopsys.com>
20475
20476 * config/arc/arc.c (arc_expand_prologue): Emit blockage regardless
20477 to avoid delay slot scheduling.
20478 (arc_must_save_register): Don't save SP.
20479 * config/arc/arc.md (stack_tie): Remove.
20480 (UNSPEC_ARC_STKTIE): Likewise.
20481
20482 2019-04-16 Kito Cheng <kito.cheng@gmail.com>
20483 Shiva Chen <shiva0217@gmail.com>
20484
20485 * config/nds32/nds32-md-auxiliary.c (nds32_split_ashiftdi3): Fix wrong
20486 code gen with large shift amount.
20487
20488 2019-04-16 Chung-Ju Wu <jasonwucj@gmail.com>
20489
20490 * config/nds32/nds32-pipelines-auxiliary.c (wext_odd_dep_p): Handle
20491 subreg.
20492
20493 2019-04-16 Jakub Jelinek <jakub@redhat.com>
20494
20495 PR target/90096
20496 * config/i386/i386.c (ix86_target_string): Add ADD_ABI_P argument, only
20497 print -m64/-mx32/-m32 if it is true.
20498 (ix86_debug_options, ix86_function_specific_print): Pass true as
20499 ADD_ABI_P to ix86_target_string.
20500 (ix86_expand_builtin): Adjust ix86_target_string caller, pass true as
20501 ADD_ABI_P only if OPTION_MASK_ISA_64BIT is set in bisa and in that case
20502 or into it OPTION_MASK_ISA_ABI_64 or OPTION_MASK_ISA_ABI_X32.
20503
20504 PR rtl-optimization/90082
20505 * dce.c (can_delete_call): New function.
20506 (deletable_insn_p, mark_insn): Use it.
20507
20508 PR tree-optimization/90090
20509 * tree-ssa-math-opts.c (is_division_by): Ignore divisions that can
20510 throw internally.
20511 (is_division_by_square): Likewise. Formatting fix.
20512
20513 2019-04-16 Richard Biener <rguenther@suse.de>
20514
20515 PR tree-optimization/56049
20516 * tree-ssa-loop-im.c (mem_ref_hasher::equal): Elide alias-set
20517 equality check if alias-set zero will prevail.
20518
20519 2019-04-15 Jeff Law <law@redhat.com>
20520
20521 * config/microblaze/microblaze.c (microblaze_expand_block_move): Treat
20522 size and alignment as unsigned.
20523
20524 2019-04-15 Richard Biener <rguenther@suse.de>
20525
20526 PR debug/90074
20527 * tree-loop-distribution.c (destroy_loop): Preserve correct
20528 debug info.
20529
20530 2019-04-15 Richard Biener <rguenther@suse.de>
20531
20532 PR tree-optimization/90071
20533 * tree-ssa-reassoc.c (init_range_entry): Do not pick up
20534 abnormal operands from def stmts.
20535
20536 2019-04-15 Segher Boessenkool <segher@kernel.crashing.org>
20537
20538 PR rtl-optimization/89794
20539 * combine.c (count_auto_inc): New function.
20540 (try_combine): Count how many auto_inc expressions there were in the
20541 original instructions. Ensure we have the same number in the new
20542 instructions. Remove the code that tried to ensure auto_inc side
20543 effects on i1 and i0 are not lost.
20544
20545 2019-04-15 Richard Biener <rguenther@suse.de>
20546
20547 PR ipa/88936
20548 * tree.h (auto_var_p): Declare.
20549 * tree.c (auto_var_p): New function, split out from ...
20550 (auto_var_in_fn_p): ... here.
20551 * tree-ssa-structalias.c (struct variable_info): Add shadow_var_uid
20552 member.
20553 (new_var_info): Initialize it.
20554 (set_uids_in_ptset): Also set the shadow variable uid if required.
20555 (ipa_pta_execute): Postprocess points-to solutions assigning
20556 shadow variable uids for locals that may reach their containing
20557 function recursively.
20558 * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Do not
20559 assert but instead check whether the points-to solution is
20560 a singleton.
20561
20562 2019-04-15 Martin Jambor <mjambor@suse.cz>
20563
20564 PR ipa/pr89693
20565 * cgraph.c (clone_of_p): Loop over clone chain for each step in
20566 the thunk chain.
20567
20568 2019-04-15 Monk Chiang <sh.chiang04@gmail.com>
20569
20570 * config.gcc (nds32*-*-linux*): Set gcc_cv_initfini_array to yes.
20571
20572 2019-04-15 Monk Chiang <sh.chiang04@gmail.com>
20573 Kito Cheng <kito.cheng@gmail.com>
20574 Shiva Chen <shiva0217@gmail.com>
20575
20576 * config/nds32/nds32-md-auxiliary.c
20577 (nds32_legitimize_pic_address): Use new PIC pattern.
20578 (nds32_legitimize_tls_address): Use new TLS pattern.
20579 (nds32_output_symrel): New.
20580 * config/nds32/nds32-protos.h (nds32_output_symrel): Declare.
20581 (nds32_alloc_relax_group_id): Ditto.
20582 * config/nds32/nds32-relax-opt.c (nds32_alloc_relax_group_id): New.
20583 (nds32_group_insns): Use nds32_alloc_relax_group_id instead of use
20584 relax_group_id.
20585 (nds32_group_tls_insn): Ditto.
20586 (nds32_group_float_insns): Ditto.
20587 * config/nds32/nds32.md (tls_le): New.
20588 (sym_got): Ditto.
20589
20590 2019-04-15 Chung-Ju Wu <jasonwucj@gmail.com>
20591
20592 * configure: Add nds32 target for dwarf2 debug_line checking.
20593 * configure.ac: Regenerated.
20594
20595 2019-04-14 Jan Hubicka <hubicka@ucw.cz>
20596
20597 PR lto/89358
20598 * ipa-devirt.c (skip_in_fields_list_p): New.
20599 (odr_types_equivalent_p): Use it.
20600
20601 2019-04-13 Jakub Jelinek <jakub@redhat.com>
20602
20603 PR target/89093
20604 * config/arm/arm.c (arm_valid_target_attribute_rec): Use strcmp
20605 instead of strncmp when checking for thumb and arm. Formatting fixes.
20606
20607 2019-04-12 Iain Buclaw <ibuclaw@gdcproject.org>
20608
20609 * doc/install.texi: Document --with-target-system-zlib.
20610
20611 2019-04-12 Martin Sebor <msebor@redhat.com>
20612
20613 PR c/88383
20614 PR c/89288
20615 PR c/89798
20616 PR c/89797
20617 * targhooks.c (default_vector_alignment): Avoid assuming
20618 argument fits in SHWI.
20619 * tree.h (TYPE_VECTOR_SUBPARTS): Avoid sign overflow in
20620 a shift expression.
20621 * doc/extend.texi (__builtin_has_attribute): Add a clarifying note.
20622
20623 2019-04-12 Jakub Jelinek <jakub@redhat.com>
20624
20625 PR rtl-optimization/89965
20626 * dce.c: Include rtl-iter.h.
20627 (struct check_argument_load_data): New type.
20628 (check_argument_load): New function.
20629 (find_call_stack_args): Check for loads from stack slots still tracked
20630 in sp_bytes and punt if any is found.
20631
20632 * config/mips/loongson-mmiintrin.h: Fix up #error message.
20633
20634 2019-04-12 Jan Hubicka <hubicka@ucw.cz>
20635
20636 * params.def (PARAM_MAX_LTO_STREAMING_PARALLELISM): New parameter.
20637 * doc/invoke.texi (max-lto-streaming-paralellism): New --param.
20638
20639 2019-04-12 Martin Liska <mliska@suse.cz>
20640
20641 PR middle-end/89970
20642 * multiple_target.c (create_dispatcher_calls): Wrap ifunc
20643 in error message.
20644 (separate_attrs): Handle multiple 'default's.
20645 (expand_target_clones): Rework error handling code.
20646
20647 2019-04-12 Kelvin Nilsen <kelvin@gcc.gnu.org>
20648
20649 PR target/87532
20650 * config/rs6000/rs6000.c (rs6000_split_vec_extract_var): Use inner
20651 mode of vector rather than mode of destination for move instruction.
20652 * config/rs6000/vsx.md (*vsx_extract_<mode>_<VS_scalar>mode_var):
20653 Use QI inner mode with V16QI vector mode.
20654
20655 2019-04-12 Jakub Jelinek <jakub@redhat.com>
20656
20657 PR target/52726
20658 * config/tilepro/tilepro.c (tilepro_print_operand): Use just
20659 "invalid %%t operand" in output_operand_lossage message.
20660
20661 2019-04-12 Andreas Krebbel <krebbel@linux.ibm.com>
20662
20663 * config/s390/predicates.md (permute_pattern_operand): New
20664 predicate.
20665 * config/s390/vector.md ("*vec_splats_bswap_vec<mode>"): Add USE
20666 operand for the permute pattern.
20667 ("*vec_perm<mode>"): New insn definition.
20668 ("bswap<mode>"): Generate the permute pattern operand in the
20669 expander and perform the operand reloads for pre arch13 level
20670 already.
20671 ("*bswap<mode>_emu"): Rename to ...
20672 ("*bswap<mode>"): ... this. And make the splitter vxe2 only.
20673 * config/s390/vx-builtins.md ("*vec_insert_and_zero_bswap<mode>"):
20674 Add the USE operand for the permute pattern.
20675 ("*vec_set_bswap_vec<mode>"): Likewise.
20676
20677 2019-04-12 Jakub Jelinek <jakub@redhat.com>
20678
20679 PR c/89946
20680 * varasm.c (assemble_start_function): Don't use tree_fits_uhwi_p
20681 and gcc_unreachable if it fails, just call tree_to_uhwi which
20682 verifies that too. Test TREE_CHAIN instead of list_length > 1.
20683 Start warning message with a lower-case letter. Formatting fixes.
20684
20685 PR rtl-optimization/90026
20686 * cfgcleanup.c (try_optimize_cfg): When removing empty bb with no
20687 successors, look for BARRIERs inside of the whole BB_FOOTER chain
20688 rather than just at the start of it. If e->src BB_FOOTER is not NULL
20689 in cfglayout mode, use emit_barrier_after_bb.
20690
20691 2018-04-11 Steve Ellcey <sellcey@marvell.com>
20692
20693 PR rtl-optimization/87763
20694 * config/aarch64/aarch64.md (*aarch64_bfi<GPI:mode>4_noshift_alt):
20695 New Instruction.
20696
20697 2019-04-11 Tom de Vries <tdevries@suse.de>
20698
20699 * doc/extend.texi (@node Statement Exprs): Note variable shadowing at
20700 max macro using statement expression.
20701
20702 2019-04-11 David Edelsohn <dje.gcc@gmail.com>
20703
20704 * xcoffout.h (xcoff_private_rodata_section_name): Declare.
20705 * xcoffout.c (xcoff_private_rodata_section_name): Define.
20706 * config/rs6000/rs6000.c (rs6000_xcoff_asm_init_sections): Create
20707 read_only_private_data_section using xcoff_private_rodata_section_name.
20708 (rs6000_xcoff_file_start): Generate xcoff_private_rodata_section_name.
20709
20710 2019-04-11 Christophe Lyon <christophe.lyon@linaro.org>
20711
20712 PR target/90016
20713 * config/aarch64/aarch64.opt (msve-vector-bits): Add missing final '.'.
20714
20715 2019-04-11 Jakub Jelinek <jakub@redhat.com>
20716
20717 PR rtl-optimization/89965
20718 * dce.c (sp_based_mem_offset): New function.
20719 (find_call_stack_args): Use sp_based_mem_offset.
20720
20721 2019-04-11 Jonathan Wakely <jwakely@redhat.com>
20722
20723 * doc/invoke.texi (Optimize Options): Clarify -flive-patching docs.
20724
20725 2019-04-11 Richard Biener <rguenther@suse.de>
20726
20727 PR tree-optimization/90020
20728 * tree-ssa-sccvn.c (vn_reference_may_trap): New function.
20729 * tree-ssa-sccvn.h (vn_reference_may_trap): Declare.
20730 * tree-ssa-pre.c (compute_avail): Use it to not put
20731 possibly trapping references after a call that might not
20732 return into EXP_GEN.
20733 * gcse.c (compute_hash_table_work): Do not elide
20734 marking a block containing a call if the call might not
20735 return.
20736
20737 2019-04-11 Richard Biener <rguenther@suse.de>
20738
20739 PR tree-optimization/90018
20740 * tree-vect-data-refs.c (vect_preserves_scalar_order_p):
20741 Test both SLP and interleaving variants.
20742
20743 2019-04-11 Robin Dapp <rdapp@linux.ibm.com>
20744
20745 * config/s390/8561.md: New file.
20746 * config/s390/driver-native.c (s390_host_detect_local_cpu):
20747 Add arch13 cpu model.
20748 * config/s390/s390-opts.h (enum processor_type): Likewise.
20749 * config/s390/s390.c (s390_get_sched_attrmask): Add arch13.
20750 (s390_get_unit_mask): Likewise.
20751 (s390_is_fpd): Likewise.
20752 (s390_is_fxd): Likewise.
20753 * config/s390/s390.h (s390_tune_attr): Likewise.
20754 * config/s390/s390.md: Include arch13 pipeline description.
20755 * config/s390/s390.opt: Add arch13.
20756
20757 2018-04-10 Steve Ellcey <sellcey@marvell.com>
20758
20759 PR rtl-optimization/87763
20760 * config/aarch64/aarch64-protos.h (aarch64_masks_and_shift_for_bfi_p):
20761 New prototype.
20762 * config/aarch64/aarch64.c (aarch64_masks_and_shift_for_bfi_p):
20763 New function.
20764 * config/aarch64/aarch64.md (*aarch64_bfi<GPI:mode>5_shift):
20765 New instruction.
20766 (*aarch64_bfi<GPI:mode>5_shift_alt): Ditto.
20767 (*aarch64_bfi<GPI:mode>4_noand): Ditto.
20768 (*aarch64_bfi<GPI:mode>4_noand_alt): Ditto.
20769 (*aarch64_bfi<GPI:mode>4_noshift): Ditto.
20770
20771 2019-04-10 Jonathan Wakely <jwakely@redhat.com>
20772
20773 * doc/invoke.texi (Optimize Options): Change "Nevertheless" to
20774 "Although" in -fipa-icf documentation.
20775
20776 * doc/invoke.texi (Debugging Options): Explicitly state the semantics
20777 of using multiple -g options.
20778
20779 2019-04-10 Martin Liska <mliska@suse.cz>
20780
20781 PR gcov-profile/89959
20782 * doc/gcov.texi: Make documentation of -x option
20783 more precise.
20784
20785 2019-04-10 Richard Biener <rguenther@suse.de>
20786
20787 * tree-vectorizer.h (_stmt_vec_info): Remove same_dr_stmt
20788 member.
20789 (DR_GROUP_SAME_DR_STMT): Remove.
20790 * tree-vect-stmts.c (vectorizable_load): Remove unreachable code.
20791 * tree-vect-data-refs.c (vect_analyze_group_access_1): Likewise,
20792 replace with assert.
20793 (vect_analyze_data_ref_accesses): Fix INTEGER_CST comparison.
20794 (vect_record_grouped_load_vectors): Remove unreachable code.
20795
20796 2019-04-10 Richard Earnshaw <rearnsha@arm.com>
20797
20798 PR target/90016
20799 * config/aarch64/aarch64.opt (msve-vector-bits): Remove redundant and
20800 obsolete reference to N.
20801
20802 2019-04-10 Jakub Jelinek <jakub@redhat.com>
20803
20804 PR middle-end/90025
20805 * expr.c (store_expr): Set properly size on the MEM passed to
20806 clear_storage.
20807
20808 PR c++/90010
20809 * gimple-ssa-sprintf.c (target_to_host): Fix handling of targstr
20810 with strlen in between hostsz-3 and hostsz-1 inclusive when no
20811 translation is needed, and when translation is needed, only append
20812 ... if the string length is hostsz or more bytes long. Avoid using
20813 strncpy or strcat.
20814
20815 2019-04-09 Matthew Malcomson <matthew.malcomson@arm.com>
20816
20817 PR target/90024
20818 * config/arm/arm.c (neon_valid_immediate): Disallow VOIDmode parameter.
20819 * config/arm/constraints.md (Dm, DN, Dn): Split previous Dn constraint
20820 into three.
20821 * config/arm/neon.md (*neon_mov<mode>): Account for TImode and DImode
20822 differences directly.
20823 (*smax<mode>3_neon, vashl<mode>3, vashr<mode>3_imm): Use Dm constraint.
20824
20825 2019-04-09 Jakub Jelinek <jakub@redhat.com>
20826
20827 PR translation/90011
20828 * ipa-devirt.c (compare_virtual_tables): Remove two trailing spaces
20829 from diagnostics.
20830 * config/arm/freebsd.h (LINK_SPEC): Remove trailing space from -p
20831 diagnostics.
20832 * config/riscv/freebsd.h (LINK_SPEC): Likewise.
20833 * config/aarch64/aarch64-freebsd.h (FBSD_TARGET_LINK_SPEC): Likewise.
20834 * config/darwin.h (DRIVER_SELF_SPECS, ASM_FINAL_SPEC): Remove
20835 trailing space from -gsplit-dwarf diagnostics.
20836
20837 PR tree-optimization/89998
20838 * gimple-ssa-sprintf.c (try_substitute_return_value): Use lhs type
20839 instead of integer_type_node if possible, don't add ranges if return
20840 type is not compatible with int.
20841 * gimple-fold.c (gimple_fold_builtin_sprintf,
20842 gimple_fold_builtin_snprintf): Use lhs type instead of hardcoded
20843 integer_type_node.
20844
20845 2019-04-09 Martin Liska <mliska@suse.cz>
20846
20847 * Makefile.in: Use GENERATOR_CFLAGS for all generators.
20848 * doc/install.texi: Document the new config.
20849
20850 2019-04-09 Richard Sandiford <richard.sandiford@arm.com>
20851
20852 * tree-vect-data-refs.c (vect_get_smallest_scalar_type): Always
20853 use gimple_expr_type for load and store calls. Skip over the
20854 condition argument in a conditional internal function.
20855 Protect use of TREE_INT_CST_LOW.
20856
20857 2019-04-09 Jakub Jelinek <jakub@redhat.com>
20858
20859 PR target/90015
20860 * config/riscv/riscv.c (riscv_get_interrupt_type): Fix comment typo.
20861 (riscv_merge_decl_attributes): Fix typo in diagnostics. Remove
20862 trailing period from it too.
20863
20864 2019-04-08 wu yuan <wuyuan5@huawei.com>
20865
20866 * config/aarch64/aarch64-cores.def (tsv1100): Change scheduling model.
20867 * config/aarch64/aarch64.md : Add "tsv110.md"
20868 * config/aarch64/tsv110.md: New file.
20869
20870 2019-04-08 Richard Biener <rguenther@suse.de>
20871
20872 PR tree-optimization/90006
20873 * tree-vect-data-refs.c (vect_get_smallest_scalar_type): Handle
20874 calls like lrint.
20875
20876 2019-04-08 Andrea Corallo <andrea.corallo@arm.com>
20877
20878 PR target/83033
20879 * config/aarch64/cortex-a57-fma-steering.c (fma_forest): Prohibit copy
20880 construction.
20881 (fma_root_node): Likewise.
20882 (func_fma_steering): Likewise.
20883
20884 2019-04-08 Jakub Jelinek <jakub@redhat.com>
20885
20886 PR rtl-optimization/89865
20887 * config/i386/i386.md: Add peepholes for z = x; x ^= y; x != z.
20888
20889 PR rtl-optimization/89865
20890 * config/i386/i386.md
20891 (SWI12 peephole for mem {+,-,&,|,^}= x; mem != 0): Fix up operand
20892 numbers not to clash with the additional operands[4].
20893 (peepholes for mem {+,-,&,|,^}= x; mem != 0): New peephole2s
20894 with extra register copy in the middle.
20895
20896 2019-04-08 Martin Liska <mliska@suse.cz>
20897
20898 PR gcov-profile/89961
20899 * doc/gcov.texi: Document data_file.
20900 * gcov.c (generate_results): Add data_info into JSON output.
20901
20902 2019-04-01 Bin Cheng <bin.cheng@linux.alibaba.com>
20903
20904 PR tree-optimization/89725
20905 * tree-chrec.c (chrec_contains_symbols): New parameter. Handle outer
20906 loop's chrec as invariant symbol.
20907 * tree-chrec.h (chrec_contains_symbols): New parameter.
20908 * tree-data-ref.c (analyze_miv_subscript): Pass new argument.
20909 (build_classic_dist_vector_1, add_other_self_distances): Bypass access
20910 function of loops not in DDR's loop_nest.
20911 * tree-data-ref.h (index_in_loop_nest): Add unreachable check.
20912
20913 2019-04-08 Chenghua Xu <paul.hua.gm@gmail.com>
20914
20915 PR target/89623
20916 * config/mips/mips.opt (LOONGSON_EXT2): Use Var instead of
20917 Mask.
20918
20919 2019-04-07 Uroš Bizjak <ubizjak@gmail.com>
20920
20921 PR target/89945
20922 * config/i386/i386.md (anddi_1 to andsi_1_zext splitter):
20923 Avoid calling gen_lowpart with SYMBOL_REF and LABEL_REF operand.
20924
20925 2019-04-05 Joern Rennecke <joern.rennecke@embecosm.com>
20926
20927 * sched-deps.c (sched_macro_fuse_insns): Check return value of
20928 targetm.fixed_condition_code_regs.
20929
20930 2019-04-05 Richard Biener <rguenther@suse.de>
20931
20932 PR debug/89892
20933 PR debug/89905
20934 * tree-cfgcleanup.c (remove_forwarder_block): Always move
20935 debug bind stmts but reset them if they are not valid at the
20936 destination.
20937
20938 2019-04-05 Martin Liska <mliska@suse.cz>
20939
20940 PR translation/89936
20941 * collect-utils.c (collect_execute): Use %< and %>, or %qs in
20942 order to wrap keywords or arguments.
20943 * collect2.c (main): Likewise.
20944 (scan_prog_file): Likewise.
20945 (scan_libraries): Likewise.
20946 * common/config/riscv/riscv-common.c
20947 (riscv_subset_list::parsing_subset_version): Likewise.
20948 (riscv_subset_list::parse_std_ext): Likewise.
20949 * config/aarch64/aarch64.c (aarch64_override_options_internal):
20950 Likewise.
20951 * config/arm/arm.c (arm_option_override): Likewise.
20952 * config/cris/cris.c (cris_print_operand): Likewise.
20953 * config/darwin-c.c (darwin_pragma_options): Likewise.
20954 (darwin_pragma_unused): Likewise.
20955 (darwin_pragma_ms_struct): Likewise.
20956 * config/ft32/ft32.c (ft32_print_operand): Likewise.
20957 * config/i386/i386.c (print_reg): Likewise.
20958 (ix86_print_operand): Likewise.
20959 * config/i386/xm-djgpp.h: Likewise.
20960 * config/iq2000/iq2000.c (iq2000_print_operand): Likewise.
20961 * config/m32c/m32c.c (m32c_option_override): Likewise.
20962 * config/msp430/msp430.c (msp430_option_override): Likewise.
20963 * config/nds32/nds32.c (nds32_option_override): Likewise.
20964 * config/nvptx/mkoffload.c (main): Likewise.
20965 * config/rx/rx.c (rx_print_operand): Likewise.
20966 (valid_psw_flag): Likewise.
20967 * config/vms/vms-c.c (vms_pragma_member_alignment): Likewise.
20968 (vms_pragma_nomember_alignment): Likewise.
20969 (vms_pragma_extern_model): Likewise.
20970 * lto-wrapper.c (compile_offload_image): Likewise.
20971 * omp-offload.c (oacc_parse_default_dims): Likewise.
20972 * symtab.c (symtab_node::verify_base): Likewise.
20973 * tlink.c (recompile_files): Likewise.
20974 (start_tweaking): Likewise.
20975 * tree-profile.c (parse_profile_filter): Likewise.
20976
20977 2019-04-05 Richard Sandiford <richard.sandiford@arm.com>
20978
20979 PR tree-optimization/89956
20980 * tree-ssa-math-opts.c (convert_mult_to_fma): Protect against
20981 multiple negates of the same value.
20982
20983 2019-04-04 Martin Sebor <msebor@redhat.com>
20984
20985 PR middle-end/89957
20986 PR middle-end/89911
20987 * builtins.c (expand_builtin_strnlen): Make sure wi::ltu_p operands
20988 have the same precision since the function crashes otherwise.
20989 * calls.c (maybe_warn_nonstring_arg): Avoid assuming strnlen() call
20990 has non-zero arguments.
20991
20992 2019-04-04 Martin Sebor <msebor@redhat.com>
20993
20994 PR middle-end/89934
20995 * gimple-ssa-warn-restrict.c (builtin_access::builtin_access): Bail
20996 out if the number of arguments is less than expected.
20997
20998 2019-04-04 Jeff Law <law@redhat.com>
20999
21000 PR rtl-optimization/89399
21001 * ree.c (combine_set_extension): Use single_set rather than
21002 digging into PATTERN for items on the candidate list.
21003 (combine_reaching_defs): Likewise.
21004
21005 2019-04-04 Richard Sandiford <richard.sandiford@arm.com>
21006
21007 PR rtl-optimization/46590
21008 * loop-invariant.c (find_defs): Move df_remove_problem and
21009 df_process_deferred_rescans to move_invariants.
21010 Move df_live_add_problem and df_live_set_all_dirty calls
21011 to move_invariants.
21012 (move_invariants): Likewise.
21013 (move_loop_invariants): Likewise, making the df_live calls
21014 conditional on -O. Remove the problem again if we added it
21015 locally.
21016
21017 2019-04-03 qing zhao <qing.zhao@oracle.com>
21018
21019 PR tree-optimization/89730
21020 * ipa-inline.c (can_inline_edge_p): Delete the checking for
21021 -flive-patching=inline-only-static.
21022 (can_inline_edge_by_limits_p): Add the checking for
21023 -flive-patching=inline-only-static and grant always_inline
21024 even when -flive-patching=inline-only-static is specified.
21025
21026 2019-04-03 Jeff Law <law@redhat.com>
21027
21028 PR rtl-optimization/81025
21029 * reorg.c (skip_consecutive_labels): Do not skip past a BARRIER.
21030
21031 2019-04-03 Richard Biener <rguenther@suse.de>
21032
21033 PR tree-optimization/84101
21034 * tree-vect-stmts.c: Include explow.h for hard_function_value,
21035 regs.h for hard_regno_nregs.
21036 (cfun_returns): New helper.
21037 (vect_model_store_cost): When vectorizing a store to a decl
21038 we return and the function ABI returns in a multi-reg location
21039 account for the possible spilling that will happen.
21040
21041 2019-04-03 Andreas Krebbel <krebbel@linux.ibm.com>
21042
21043 * config/s390/s390.c (s390_legitimate_address_p): Reject long
21044 displacement addresses for vector mode operands.
21045
21046 2019-04-03 Claudiu Zissulescu <claziss@synopsys.com>
21047
21048 * config/arc/arc.c (GMASK_LEN): Define.
21049 (arc_restore_callee_saves): Restore first blink when
21050 !optimize_size.
21051
21052 2019-04-03 Sudakshina Das <sudi.das@arm.com>
21053
21054 * doc/extend.texi: Add deprecated comment on sign-return-address
21055 function attribute and add mbranch-protection.
21056 * doc/invoke.texi: Add bti to the options for mbranch-protection.
21057
21058 2019-04-03 Richard Biener <rguenther@suse.de>
21059
21060 PR lto/89896
21061 * lto-wrapper.c (run_gcc): Avoid implicit rules making
21062 the all target phony.
21063
21064 2019-04-02 Uroš Bizjak <ubizjak@gmail.com>
21065
21066 PR target/89902
21067 PR target/89903
21068 * config/i386/i386.c (dimode_scalar_to_vector_candidate_p):
21069 Return false for variable DImode shifts.
21070 (dimode_scalar_chain::compute_convert_gain): Do not handle
21071 register count operand in variable DImode shifts.
21072 (dimode_scalar_chain::make_vector_copies): Remove support to copy
21073 count argument of a variable shift instruction to a vector register.
21074 (dimode_scalar_chain::convert_reg): Remove support to convert
21075 count argument of a variable shift instruction.
21076
21077 2019-04-02 Andrey Belevantsev <abel@ispras.ru>
21078
21079 PR rtl-optimization/84206
21080 * sel-sched-ir.h (get_all_loop_exits): Avoid the outer loop when
21081 iterating over loop headers.
21082
21083 2019-04-02 Andrey Belevantsev <abel@ispras.ru>
21084
21085 PR rtl-optimization/85876
21086 * sel-sched.c (code_motion_path_driver): Avoid unwinding first_insn
21087 beyond the original fence.
21088
21089 2019-04-02 Ulrich Weigand <uweigand@de.ibm.com>
21090
21091 * config.gcc: Mark spu* targets as deprecated/obsolete.
21092
21093 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21094
21095 * config/s390/s390-builtin-types.def: New builtin function type
21096 definitions. Remove unused types.
21097 * config/s390/s390-builtins.def (s390_vcdgb, s390_vcdlgb)
21098 (s390_vcgdb, s390_vclgdb): Remove low-level builtin definitions.
21099 (s390_vec_float, s390_vec_signed, s390_vec_unsigned): New
21100 overloaded builtins.
21101 (s390_vcefb, s390_vcdgb, s390_vcelfb, s390_vcdlgb, s390_vcfeb)
21102 (s390_vcgdb, s390_vclfeb, s390_vclgdb): New low-level builtins.
21103 * config/s390/vecintrin.h (vec_float): New builtin macro definition.
21104 (vec_double, vec_signed, vec_unsigned): Define to use the new
21105 overloaded builtins.
21106 * config/s390/vx-builtins.md ("vec_double_s64", "vec_double_u64"):
21107 Remove expanders.
21108
21109 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21110
21111 * config/s390/s390-builtin-types.def: New builtin function type
21112 definitions.
21113 * config/s390/s390-builtins.def (s390_vec_search_string_cc)
21114 (s390_vec_search_string_until_zero_cc): New overloaded builtins.
21115 (s390_vstrsb, s390_vstrsh, s390_vstrsf, s390_vstrszb)
21116 (s390_vstrszh, s390_vstrszf): New low-level builtins.
21117 * config/s390/s390.md (UNSPEC_VEC_VSTRS, UNSPEC_VEC_VSTRSCC): New
21118 constant definitions.
21119 * config/s390/vecintrin.h (vec_search_string_cc)
21120 (vec_search_string_until_zero_cc): New builtin name definitions.
21121 * config/s390/vx-builtins.md ("vstrs<mode>", "vstrsz<mode>"): New
21122 expanders.
21123 ("vec_vstrs<mode>"): New insn definition.
21124
21125 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21126
21127 * config/s390/s390-builtin-types.def: Add new builtin function
21128 types.
21129 * config/s390/s390-builtins.def (s390_vec_sldb, s390_vec_srdb):
21130 New overloaded builtins.
21131 (s390_vec_sldb, s390_vec_srdb): New low-level builtins. and
21132 s390_vsrd.
21133 * config/s390/s390.md (UNSPEC_VEC_SLDB): Rename to ...
21134 (UNSPEC_VEC_SLDBYTE): ... this.
21135 (UNSPEC_VEC_SLDBIT, UNSPEC_VEC_SRDBIT): New constant definitions.
21136 * config/s390/vecintrin.h (vec_sldb, vec_srdb): New builtin name
21137 definitions.
21138 * config/s390/vx-builtins.md ("vec_sld<mode>", "vec_sldw<mode>"):
21139 Rename UNSPEC_VEC_SLDB to UNSPEC_VEC_SLDBYTE.
21140 ("vec_sldb<mode>", "vec_srdb<mode>"): New insn definitions.
21141
21142 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21143
21144 ("*vec_splats_bswap_vec<mode>", "*vec_splats_bswap_elem<mode>"):
21145 New insn definition.
21146 * config/s390/vx-builtins.md (V_HW_HSD): Move to ...
21147 * config/s390/vector.md (V_HW_HSD): ... here.
21148
21149 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21150
21151 * config/s390/vecintrin.h: Map vec_vster low-level builtins to vec_vler.
21152 * config/s390/vx-builtins.md ("*vec_insert_and_zero_bswap<mode>")
21153 ("*vec_set_bswap_elem<mode>", "*vec_set_bswap_vec<mode>")
21154 ("*vec_extract_bswap_vec<mode>", "*vec_extract_bswap_elem<mode>"):
21155 New insn definitions.
21156
21157 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21158
21159 * config/s390/s390-builtin-types.def: Add new builtin function type.
21160 * config/s390/s390-builtins.def: Add overloaded builtin
21161 s390_vec_reve and low-level builtins for s390_vler and s390_vster.
21162 * config/s390/s390.md (UNSPEC_VEC_ELTSWAP): New constant definition.
21163 * config/s390/vecintrin.h (vec_reve): New builtin name definition.
21164 * config/s390/vx-builtins.md (V_HW_HSD): New mode iterator.
21165 ("eltswap<mode>"): New expander.
21166 ("*eltswapv16qi", "*eltswap<mode>", "*eltswap<mode>_emu"): New
21167 insn definitions.
21168
21169 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21170
21171 * config/s390/s390-builtin-types.def: Add new builtin function types.
21172 * config/s390/s390-builtins.def: Add overloaded builtin
21173 s390_vec_revb. Add low-level builtins for vlbr and vstbr
21174 instructions.
21175 * config/s390/vecintrin.h (vec_revb): New builtin name definition.
21176 * config/s390/vector.md (VT_HW_HSDT): New mode iterator.
21177 ("bswap<mode>"): New expander.
21178 ("*bswap<mode>", "*bswap<mode>_emu"): New insn definitions.
21179
21180 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21181
21182 * config/s390/s390-builtins.def (B_VXE2): New builtin flag definition.
21183 * config/s390/s390-c.c (s390_cpu_cpp_builtins_internal): Increment
21184 vector builtin version number in __VEC__.
21185
21186 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21187
21188 * config/s390/s390.md (VX_CONV_BFP, VX_CONV_INT): New mode
21189 iterators.
21190 (SFSI): New mode attribute.
21191 ("*fixuns_truncdfdi2_vx", "*fix_truncdfdi2_bfp_z13")
21192 ("*floatunsdidf2_z13", ): Add support for 32 bit conversions and
21193 rename to ...
21194 ("*fixuns_trunc<VX_CONV_BFP:mode><VX_CONV_INT:mode>2_z13")
21195 ("*fix_trunc<VX_CONV_BFP:mode><VX_CONV_INT:mode>2_bfp_z13")
21196 ("*floatuns<VX_CONV_INT:mode><VX_CONV_BFP:mode>2_z13"): ... these.
21197 ("floatsi<mode>2"): Add wcefb instruction.
21198
21199 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21200
21201 * config/s390/s390.md ("xde"): Extend mode attribute to vector types.
21202 * config/s390/vector.md (VX_VEC_CONV_BFP, VX_VEC_CONV_INT): New
21203 mode iterators.
21204 ("floatv2div2df2", "floatunsv2div2df2", "fix_truncv2dfv2di2")
21205 ("fixuns_truncv2dfv2di2"): Enhance with mode iterator to also
21206 support 32 bit fp-int conversions. Rename to ...
21207 ("float<VX_VEC_CONV_INT:mode><VX_VEC_CONV_BFP:mode>2")
21208 ("floatuns<VX_VEC_CONV_INT:mode><VX_VEC_CONV_BFP:mode>2")
21209 ("fix_trunc<VX_VEC_CONV_BFP:mode><VX_VEC_CONV_INT:mode>2")
21210 ("fixuns_trunc<VX_VEC_CONV_BFP:mode><VX_VEC_CONV_INT:mode>2"):
21211 ... to these.
21212
21213 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21214
21215 * config/s390/s390.c (s390_rtx_costs): Do not add extra costs for
21216 if-then-else constructs if we can use the select instruction.
21217 * config/s390/s390.md ("*mov<mode>cc"): Add the new instructions.
21218
21219 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21220
21221 * config/s390/s390.md ("*popcountdi_arch13_cc")
21222 ("*popcountdi_arch13_cconly", "*popcountdi_arch13"): New insn
21223 definition.
21224 ("*popcount<mode>", "popcountdi2", "popcountsi2", "popcounthi2"):
21225 Append _z196 to make it ...
21226 ("*popcount<mode>_z196", "popcountdi2_z196", "popcountsi2_z196")
21227 ("popcounthi2_z196"): ... this.
21228 ("popcountdi2_z196"): Remove TARGET_64BIT from the insn condition.
21229 ("popcountdi2", "popcountsi2", "popcounthi2"): New expanders.
21230
21231 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21232
21233 * config/s390/s390.c (s390_canonicalize_comparison): Convert
21234 certain compares for arch13 in order to make use of the condition
21235 code result produced by the new instructions.
21236 (s390_rtx_costs): Adjust the costs for nnrk, nngrk, nork, nogrk,
21237 nxrk, and nxgrk instruction patterns.
21238 * config/s390/s390.md (ANDOR, bitops_name, inv_bitops_name)
21239 (inv_no): Add new code iterator together with some attributes.
21240 ("*andc_split_<mode>"): Disable splitter for arch13.
21241 ("*<ANDOR:bitops_name>c<GPR:mode>_cc")
21242 ("*<ANDOR:bitops_name>c<GPR:mode>_cconly")
21243 ("*<ANDOR:bitops_name>c<GPR:mode>")
21244 ("*n<ANDOR:inv_bitops_name><GPR:mode>_cc")
21245 ("*n<ANDOR:inv_bitops_name><mode>_cconly")
21246 ("*n<ANDOR:inv_bitops_name><mode>", "*nxor<GPR:mode>_cc")
21247 ("*nxor<mode>_cconly", "*nxor<mode>"): New insn definitions.
21248
21249 2019-04-02 Andreas Krebbel <krebbel@linux.ibm.com>
21250
21251 * common/config/s390/s390-common.c (processor_flags_table): New
21252 entry for arch13.
21253 * config.gcc: Support arch13 with the --with-arch= configure flag.
21254 * config/s390/driver-native.c (s390_host_detect_local_cpu):
21255 * config/s390/s390-opts.h (enum processor_type): Add PROCESSOR_ARCH13.
21256 * config/s390/s390.c (s390_get_sched_attrmask)
21257 (s390_get_unit_mask): Add PROCESSOR_ARCH13.
21258 * config/s390/s390.h (enum processor_flags): Add PF_VXE2 and PF_ARCH13.
21259 * config/s390/s390.md (TARGET_CPU_ARCH13, TARGET_CPU_ARCH13_P)
21260 (TARGET_CPU_VXE2, TARGET_CPU_VXE2_P, TARGET_ARCH13)
21261 (TARGET_ARCH13_P, TARGET_VXE2, TARGET_VXE2_P): New macro
21262 definitions.
21263 * config/s390/s390.opt: Support arch13 as processor type in
21264 command line options.
21265
21266 2019-04-02 Martin Liska <mliska@suse.cz>
21267
21268 PR translation/89912
21269 * params.def (PARAM_GRAPHITE_MAX_ARRAYS_PER_SCOP):
21270 Fix param description of graphite-max-arrays-per-scop.
21271
21272 2019-04-02 Eric Botcazou <ebotcazou@adacore.com>
21273
21274 * config/sparc/linux64.h (ASAN_REJECT_SPEC): New macro.
21275 (ASAN_CC1_SPEC): Use it in 64-bit mode.
21276 * config/sparc/sol2.h (ASAN_REJECT_SPEC): Remove superfluous colon.
21277
21278 2019-04-01 Andrey Belevantsev <abel@ispras.ru>
21279
21280 PR rtl-optimization/85412
21281 * sel-sched.c (sel_sched_region): Assign reset_sched_cycles_p before
21282 sel_sched_region_1, not after.
21283
21284 2019-04-01 Andrey Belevantsev <abel@ispras.ru>
21285
21286 PR rtl-optimization/86928
21287 * sel-sched-ir.c (sel_redirect_edge_and_branch_force): Invoke
21288 compute_live if necessary.
21289 (sel_redirect_edge_and_branch): Likewise.
21290
21291 2019-04-01 Vladimir Makarov <vmakarov@redhat.com>
21292
21293 PR rtl-optimization/89865
21294 * ira-costs.c (process_bb_node_for_hard_reg_moves): Skip hard
21295 register if it is a part of small class.
21296
21297 2019-04-01 Andrey Belevantsev <abel@ispras.ru>
21298
21299 PR rtl-optimization/87273
21300 * sel-sched-ir.c (merge_fences): Remove assert.
21301
21302 2019-04-01 Richard Biener <rguenther@suse.de>
21303
21304 PR tree-optimization/46590
21305 * domwalk.h (dom_walker::dom_walker): Consolidate constructors.
21306 (dom_walker::m_reachability): Add in place of...
21307 (dom_walker::m_skip_unreachable_blocks): ...this.
21308 * domwalk.c (dom_walker::dom_walker): Consoliate constructors.
21309 Move complex initialization ...
21310 (dom_walker::walk): Here. Especially compute m_bb_to_rpo
21311 lazily and initialize edge flags on each invocation.
21312 (dom_walker::bb_reachable): Use m_reachability.
21313
21314 2019-04-01 Martin Liska <mliska@suse.cz>
21315
21316 PR driver/89861
21317 * opt-suggestions.c (option_proposer::build_option_suggestions):
21318 Add variant without any argument in order to provide better
21319 hints.
21320
21321 2019-04-01 Richard Biener <rguenther@suse.de>
21322
21323 PR c/71598
21324 * gimple.c: Include langhooks.h.
21325 (gimple_get_alias_set): Treat enumeral types as the underlying
21326 integer type.
21327
21328 2019-03-29 Kugan Vivekanandarajah <kuganv@linaro.org>
21329 Eric Botcazou <ebotcazou@adacore.com>
21330
21331 PR rtl-optimization/89862
21332 * rtl.h (word_register_operation_p): Exclude CONST_INT from operations
21333 that operates on the full registers for WORD_REGISTER_OPERATIONS
21334 architectures.
21335
21336 2019-03-29 Jim Wilson <jimw@sifive.com>
21337
21338 * common/config/riscv/riscv-common.c (riscv_parse_arch_string):
21339 Clear MASK_RVC and then set if C subset supported.
21340
21341 2019-03-29 Jakub Jelinek <jakub@redhat.com>
21342
21343 PR c/89872
21344 * gimplify.c (gimplify_compound_literal_expr): Don't optimize a
21345 non-addressable complit into its initializer if it is volatile.
21346
21347 2019-03-29 Roman Zhuykov <zhroma@ispras.ru>
21348
21349 * opts-common.c (integral_argument): Set errno properly in one case.
21350
21351 2019-03-29 Martin Liska <mliska@suse.cz>
21352
21353 * doc/invoke.texi: Remove -Wchkp from documentation.
21354
21355 2019-03-29 Martin Liska <mliska@suse.cz>
21356
21357 * dbgcnt.c (print_limit_reach): New function.
21358 (dbg_cnt): Use it.
21359
21360 2019-03-29 Martin Liska <mliska@suse.cz>
21361
21362 * dbgcnt.c (dbg_cnt_process_single_pair): Fix GNU coding style.
21363 (dbg_cnt_process_opt): Parse first tokens aas
21364 dbg_cnt_process_single_pair is also using strtok.
21365
21366 2019-03-29 Jakub Jelinek <jakub@redhat.com>
21367
21368 PR rtl-optimization/87485
21369 * function.c (expand_function_end): Move stack_protect_epilogue
21370 before loading of return value into hard register(s).
21371
21372 2019-03-28 Jakub Jelinek <jakub@redhat.com>
21373
21374 PR middle-end/89621
21375 * tree-inline.h (struct copy_body_data): Add
21376 dont_remap_vla_if_no_change flag.
21377 * tree-inline.c (remap_type_3, remap_type_2): New functions.
21378 (remap_type): Don't remap vla types if id->dont_remap_vla_if_no_change
21379 and remap_type_2 returns false.
21380 * omp-low.c (new_omp_context): Set ctx->cb.dont_remap_vla_if_no_change.
21381 Move ctx->cb.adjust_array_error_bounds setting to the outermost ctx
21382 only from where it is copied to nested contexts.
21383
21384 2019-03-28 Uroš Bizjak <ubizjak@gmail.com>
21385
21386 PR target/89865
21387 * config/i386/i386.md (RMW operation with LEA peephole):
21388 Use LEAMODE mode attribute instead of SWI mode iterator for
21389 LEA pattern.
21390
21391 2019-03-28 Uroš Bizjak <ubizjak@gmail.com>
21392
21393 PR target/89848
21394 * config/i386/i386.c (dimode_scalar_chain::make_vector_copies):
21395 Also process XEXP (src, 0) of a shift insn.
21396
21397 2019-03-28 David Malcolm <dmalcolm@redhat.com>
21398
21399 PR middle-end/89725
21400 * optinfo-emit-json.cc (optrecord_json_writer::optinfo_to_json):
21401 Use DECL_ASSEMBLER_NAME rather than get_fnname_from_decl.
21402
21403 2019-03-28 Jakub Jelinek <jakub@redhat.com>
21404
21405 * regcprop.c (copyprop_hardreg_forward_1): Remove redundant INSN_P
21406 test.
21407 (cprop_hardreg_bb, cprop_hardreg_debug): New functions.
21408 (pass_cprop_hardreg::execute): Use those. Don't repeat bb processing
21409 immediately after first one with df_analyze in between, but rather
21410 process all bbs, queueing ones that need second pass in a worklist,
21411 df_analyze, process queued debug insn changes and if second pass is
21412 needed, process bbs from worklist, df_analyze, process queued debug
21413 insns again.
21414
21415 * rtl.h (NONDEBUG_INSN_P): Define as NONJUMP_INSN_P or JUMP_P
21416 or CALL_P instead of INSN_P && !DEBUG_INSN_P.
21417 (INSN_P): Define using NONDEBUG_INSN_P or DEBUG_INSN_P.
21418
21419 2019-03-28 Jonathan Wakely <jwakely@redhat.com>
21420
21421 PR c/79022
21422 * gengtype.h (create_nested_ptr_option): Fix parameter names to match
21423 definition.
21424
21425 2019-03-27 Mateusz B <mateuszb@poczta.onet.pl>
21426
21427 PR target/85667
21428 * config/i386/i386.c (ix86_function_value_1): Call the newly added
21429 function for 32-bit MS_ABI.
21430 (function_value_ms_32): New function.
21431
21432 2019-03-27 Andrew Stubbs <ams@codesourcery.com>
21433
21434 * config/gcn/gcn.md (CC_SAVE_REG): New constant.
21435 (movdi): Call gen_movdi_symbol_save_scc.
21436 (gen_movdi_symbol_save_scc): New insn and split.
21437
21438 2019-03-27 Peter Bergner <bergner@linux.ibm.com>
21439
21440 PR rtl-optimization/89313
21441 * function.c (matching_constraint_num): New static function.
21442 (match_asm_constraints_1): Use it. Fixup white space and comment.
21443 Don't replace inputs with non-matching constraints which conflict
21444 with early clobber outputs.
21445
21446 2019-03-27 Jeff Law <law@redhat.com>
21447
21448 PR rtl-optimization/87761
21449 PR rtl-optimization/89826
21450 * regcprop.c (copyprop_hardreg_forward_1): Move may_trap_p test
21451 slightly later.
21452 (pass_cprop_hardreg::execute): Call df_analyze after adding the
21453 note problem to get REG_DEAD/REG_UNUSED notes updated.
21454
21455 2019-03-27 Richard Biener <rguenther@suse.de>
21456
21457 PR tree-optimization/89463
21458 * tree-ssa-dce.c (remove_dead_stmt): Take output vector to
21459 queue edges to remove.
21460 (eliminate_unnecessary_stmts): Remove dead PHIs alongside
21461 dead stmts. Delay edge removal until PHIs are removed to
21462 make debug-stmt creation not confused by seemingly degenerate
21463 PHIs.
21464
21465 2019-03-27 Alan Modra <amodra@gmail.com>
21466
21467 * config/rs6000/rs6000.h: Rename NON_SPECIAL_REGS to GEN_OR_FLOAT_REGS
21468 throughout file.
21469 * config/rs6000/darwin.h: Likewise.
21470 * config/rs6000/rs6000.c: Likewise.
21471
21472 2019-03-27 Alan Modra <amodra@gmail.com>
21473
21474 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Always
21475 assign rs6000_hard_regno_mode_ok_p[m][r]. Formatting.
21476
21477 2019-03-26 Andrew Waterman <andrew@sifive.com>
21478 Jim Wilson <jimw@sifive.com>
21479
21480 * config/riscv/generic.md (generic_alu, generic_load, generic_store)
21481 (generic_xfer, generic_branch, generic_imul, generic_idivsi)
21482 (generic_idivdi, generic_fmul_single, generic_fmul_double)
21483 (generic_fdiv, generic_fsqrt): Add check for generic tune.
21484 (generic_alu): Add auipc to type list.
21485 * config/riscv/riscv-opts.h (enum riscv_microarchitecture_type): New.
21486 (riscv_microarchitecture): Declare.
21487 * config/riscv/riscv-protos.h (riscv_store_data_bypass_p): Declare.
21488 * config/riscv/riscv.c (struct riscv_cpu_info): Add microarchitecture
21489 field.
21490 (riscv_microarchitecture): New.
21491 (sifive_7_tune_info): New.
21492 (riscv_cpu_info_table): Add microarchitecture value for rocket and
21493 size. Add sifive-3-series, sifive-5-series, and sifive-7-series
21494 entries.
21495 (riscv_store_data_bypass_p): New.
21496 (riscv_option_override): Set riscv_microarchitecture from
21497 cpu->microarchitecture.
21498 * config/riscv/riscv.md: Include sifive-7.md.
21499 (type): Add auipc.
21500 (tune): New.
21501 (auipc<mode>): Change type to auipc.
21502 (restore_stack_nonlocal): New.
21503 * config/riscv/sifive-7.md: New.
21504 * doc/invoke.texi (RISC-V Options): Update mtune docs.
21505
21506 2019-03-26 Uroš Bizjak <ubizjak@gmail.com>
21507
21508 PR target/89827
21509 * config/i386/i386.c (dimode_scalar_chain::convert_reg):
21510 Also process XEXP (src, 0) of a shift insn.
21511
21512 2019-03-26 Richard Biener <rguenther@suse.de>
21513
21514 * tree-inline.c (remap_gimple_stmt): Cache gimple_block.
21515 (copy_debug_stmt): Likewise.
21516 (expand_call_inline): Likewise.
21517 (copy_bb): Avoid redundant lookup & set of gimple_block.
21518 * gimple-low.c (lower_gimple_return): Likewise.
21519 (lower_builtin_setjmp): Likewise.
21520
21521 2019-03-26 Jakub Jelinek <jakub@redhat.com>
21522
21523 * hash-table.h (hash_table::m_gather_mem_stats): If GATHER_STATISTICS
21524 is constant 0, turn into static const data member initialized to false.
21525 (hash_table::hash_table): Only initialize m_gather_mem_stats #if
21526 GATHER_STATISTICS. Add ATTRIBUTE_UNUSED to gather_mem_stats param.
21527
21528 2019-03-26 Jason Merrill <jason@redhat.com>
21529 Jakub Jelinek <jakub@redhat.com>
21530
21531 * mem-stats.h (mem_alloc_description::unregister_descriptor): New
21532 method.
21533 (mem_alloc_description::release_object_overhead): Fix comment typos.
21534 * hash-table.h (hash_table::~hash_table): Call
21535 release_instance_overhead only if m_entries is non-NULL, otherwise
21536 call unregister_descriptor.
21537
21538 2019-03-26 Bin Cheng <bin.cheng@linux.alibaba.com>
21539
21540 PR tree-optimization/81740
21541 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence):
21542 In case of outer loop vectorization, check for backward dependence
21543 at the inner loop if outer loop dependence is reversed.
21544
21545 2019-03-26 Alan Modra <amodra@gmail.com>
21546
21547 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Correct
21548 rs6000_vector_mem init. Correct wI and wJ comment.
21549
21550 2019-03-25 Alexander Monakov <amonakov@ispras.ru>
21551
21552 PR rtl-optimization/88347
21553 PR rtl-optimization/88423
21554 * sched-deps.c (sched_analyze_insn): Take into account that for
21555 tablejumps the barrier appears after a label and a jump_table_data.
21556
21557 2019-03-25 Martin Sebor <msebor@redhat.com>
21558
21559 PR c/89812
21560 * c-common.c (check_user_alignment): Rename local. Correct maximum
21561 alignment in diagnostic. Avoid assuming argument fits in SHWI,
21562 convert it to UHWI when it fits.
21563
21564 2019-03-25 Johan Karlsson <johan.karlsson@enea.com>
21565
21566 PR debug/86964
21567 * dwarf2out.c (premark_used_variables): New function.
21568 (prune_unused_types_walk): Do not mark not premarked external
21569 variables.
21570 (prune_unused_types): Call premark_used_variables.
21571
21572 2019-03-25 Vladimir Makarov <vmakarov@redhat.com>
21573
21574 PR rtl-optimization/89676
21575 * lra-constraints.c (curr_insn_transform): Do match reload for
21576 early clobbers when the match was successful only for different
21577 registers.
21578
21579 2019-03-25 Martin Sebor <msebor@redhat.com>
21580
21581 * doc/extend.texi (Common Type Attributes): Document vector_size.
21582 (Common Variable Attributes): Mention size constraint. Correct
21583 quoting and typos.
21584 (Vector Extensions): Use @dfn when defining bas type. Clarify
21585 base type and size constraints.
21586
21587 2019-03-25 Richard Biener <rguenther@suse.de>
21588
21589 PR tree-optimization/89789
21590 * tree-ssa-sccvn.c (set_ssa_val_to): Do not allow lattice
21591 changes from non-undefined back to undefined.
21592
21593 2019-03-25 Thomas Otto <thomas.otto@pdv-fs.de>
21594
21595 * dwarf2out.c (comp_dir_string): cached_wd could be set to both a
21596 heap string and a gc string, but since this variable is unknown to
21597 ggc the gc string might get reused and corrupted. Fixed by always
21598 using a heap string.
21599
21600 2019-03-25 Richard Biener <rguenther@suse.de>
21601
21602 PR tree-optimization/89779
21603 * tree-ssa-loop-ivopts.c (remove_unused_ivs): Return
21604 to remove IV defs, delay actual removal.
21605 (tree_ssa_iv_optimize_loop): Likewise. Avoid SCEV reset.
21606 (tree_ssa_iv_optimize): Remove eliminated IV defs at the
21607 very end, properly also reset loop control IV information.
21608
21609 2019-03-25 Richard Biener <rguenther@suse.de>
21610
21611 PR tree-optimization/89802
21612 * tree-ssa-math-opts.c (convert_mult_to_fma_1): Properly
21613 move EH data to folded stmt.
21614
21615 2019-03-25 Andreas Krebbel <krebbel@linux.ibm.com>
21616
21617 * config/s390/s390-builtin-types.def: Remove few unused types and
21618 fix sort order for others.
21619
21620 2019-03-25 Andreas Krebbel <krebbel@linux.ibm.com>
21621
21622 * config/s390/s390-c.c (s390_fn_types_compatible): Print the
21623 expected and found types with -mdebug during builtin matching.
21624
21625 2019-03-25 Richard Biener <rguenther@suse.de>
21626
21627 PR middle-end/89790
21628 * fold-const.c (operand_equal_p): Revert last change with
21629 updated comment.
21630
21631 2019-03-24 Segher Boessenkool <segher@kernel.crashing.org>
21632
21633 * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Add REG_EQUAL
21634 notes for the result of the __tls_get_addr calls.
21635 * config/rs6000/rs6000.md (unspec UNSPEC_TLS_GET_ADDR): New.
21636
21637 2019-03-24 Jeff Law <law@redhat.com>
21638
21639 * config/bfin/bfin.md (movpdi): Fix length for alternative 1.
21640
21641 PR rtl-optimization/87761
21642 * regcprop.c (copyprop_hardreg_forward_1): Check may_trap_p on SET,
21643 not INSN. Also check RTX_FRAME_RELATED_P. Queue insns for DF rescan
21644 as needed.
21645 (pass_cprop_hardreg::execute): Add df note problem and defer insn
21646 rescans. Reprocess blocks as needed, calling df_analyze before
21647 reprocessing. Always call df_analyze before fixing up debug bind
21648 insns.
21649
21650 2019-03-23 Segher Boessenkool <segher@kernel.crashing.org>
21651
21652 * config/rs6000/xmmintrin.h (_mm_movemask_pi8): Implement for 32-bit
21653 big endian.
21654
21655 2019-03-22 Andrew Pinski <apinski@marvell.com>
21656
21657 * config/aarch64/aarch64.md (zero_extendsidi2_aarch64): Fix type
21658 attrribute for uxtw.
21659
21660 2019-03-26 Jeff Law <law@redhat.com>
21661
21662 PR rtl-optimization/87761
21663 * config/mips/mips-protos.h (mips_split_move): Add new argument.
21664 (mips_emit_move_or_split): Pass NULL for INSN into mips_split_move.
21665 (mips_split_move): Accept new INSN argument. Try to forward SRC
21666 into the next instruction.
21667 (mips_split_move_insn): Pass INSN through to mips_split_move.
21668
21669 2019-03-22 Vladimir Makarov <vmakarov@redhat.com>
21670
21671 PR rtl-optimization/89676
21672 * lra-constraints.c (curr_insn_transform): Do match reload for
21673 early clobbers even if the match was successful.
21674
21675 2019-03-22 Jakub Jelinek <jakub@redhat.com>
21676
21677 PR c++/87481
21678 * doc/invoke.texi (-fconstexpr-ops-limit=): Document.
21679
21680 2019-03-22 Bill Schmidt <wschmidt@linux.ibm.com>
21681
21682 * config/rs6000/mmintrin.h (_mm_sub_pi32): Fix typo.
21683
21684 2019-03-22 Jakub Jelinek <jakub@redhat.com>
21685
21686 * config/i386/sse.md (<avx512>_fmadd_<mode>_mask3<round_name>,
21687 <avx512>_fmsub_<mode>_mask3<round_name>,
21688 <avx512>_fnmadd_<mode>_mask3<round_name>,
21689 <avx512>_fnmsub_<mode>_mask3<round_name>,
21690 avx512f_vmfmadd_<mode>_mask3<round_name>,
21691 avx512f_vmfmsub_<mode>_mask3<round_name>,
21692 *avx512f_vmfnmadd_<mode>_mask3<round_name>): Use <round_nimm_predicate>
21693 instead of register_operand and %v instead of v for match_operand 1.
21694 (avx512f_vmfnmsub_<mode>_mask3<round_name>): Rename to ...
21695 (*avx512f_vmfnmsub_<mode>_mask3<round_name>): ... this. Use
21696 <round_nimm_predicate> instead of register_operand and %v instead of v
21697 for match_operand 1.
21698
21699 * config/i386/sse.md (<avx512>_fmadd_<mode>_mask<round_name>,
21700 <avx512>_fmadd_<mode>_mask3<round_name>,
21701 <avx512>_fmsub_<mode>_mask<round_name>,
21702 <avx512>_fmsub_<mode>_mask3<round_name>,
21703 <avx512>_fnmadd_<mode>_mask<round_name>,
21704 <avx512>_fnmadd_<mode>_mask3<round_name>,
21705 <avx512>_fnmsub_<mode>_mask<round_name>,
21706 <avx512>_fnmsub_<mode>_mask3<round_name>,
21707 <avx512>_fmaddsub_<mode>_mask<round_name>,
21708 <avx512>_fmaddsub_<mode>_mask3<round_name>,
21709 <avx512>_fmsubadd_<mode>_mask<round_name>,
21710 <avx512>_fmsubadd_<mode>_mask3<round_name>): Use
21711 <round_nimm_predicate> instead of nonimmediate_operand.
21712 (fmai_vmfmadd_<mode><round_name>, fmai_vmfmsub_<mode><round_name>,
21713 fmai_vmfnmadd_<mode><round_name>, fmai_vmfnmsub_<mode><round_name>):
21714 Use register_operand instead of <round_nimm_predicate> for the
21715 operand that needs to match output.
21716 (*fmai_fmadd_<mode>, *fmai_fmsub_<mode>,
21717 *fmai_fnmadd_<mode><round_name>, *fmai_fnmsub_<mode><round_name>):
21718 Likewise. Formatting fixes.
21719
21720 PR target/89784
21721 * config/i386/i386.c (enum ix86_builtins): Remove
21722 IX86_BUILTIN_VFMSUBSD3_MASK3 and IX86_BUILTIN_VFMSUBSS3_MASK3.
21723 * config/i386/i386-builtin.def (__builtin_ia32_vfmaddsd3_mask,
21724 __builtin_ia32_vfmaddsd3_mask3, __builtin_ia32_vfmaddsd3_maskz,
21725 __builtin_ia32_vfmsubsd3_mask3, __builtin_ia32_vfmaddss3_mask,
21726 __builtin_ia32_vfmaddss3_mask3, __builtin_ia32_vfmaddss3_maskz,
21727 __builtin_ia32_vfmsubss3_mask3): New builtins.
21728 * config/i386/sse.md (avx512f_vmfmadd_<mode>_mask<round_name>,
21729 avx512f_vmfmadd_<mode>_mask3<round_name>,
21730 avx512f_vmfmadd_<mode>_maskz_1<round_name>,
21731 *avx512f_vmfmsub_<mode>_mask<round_name>,
21732 avx512f_vmfmsub_<mode>_mask3<round_name>,
21733 *avx512f_vmfmasub_<mode>_maskz_1<round_name>,
21734 *avx512f_vmfnmadd_<mode>_mask<round_name>,
21735 *avx512f_vmfnmadd_<mode>_mask3<round_name>,
21736 *avx512f_vmfnmadd_<mode>_maskz_1<round_name>,
21737 *avx512f_vmfnmsub_<mode>_mask<round_name>,
21738 avx512f_vmfnmsub_<mode>_mask3<round_name>,
21739 *avx512f_vmfnmsub_<mode>_maskz_1<round_name>): New define_insns.
21740 (avx512f_vmfmadd_<mode>_maskz<round_expand_name>): New define_expand.
21741 * config/i386/avx512fintrin.h (_mm_mask_fmadd_sd, _mm_mask_fmadd_ss,
21742 _mm_mask3_fmadd_sd, _mm_mask3_fmadd_ss, _mm_maskz_fmadd_sd,
21743 _mm_maskz_fmadd_ss, _mm_mask_fmsub_sd, _mm_mask_fmsub_ss,
21744 _mm_mask3_fmsub_sd, _mm_mask3_fmsub_ss, _mm_maskz_fmsub_sd,
21745 _mm_maskz_fmsub_ss, _mm_mask_fnmadd_sd, _mm_mask_fnmadd_ss,
21746 _mm_mask3_fnmadd_sd, _mm_mask3_fnmadd_ss, _mm_maskz_fnmadd_sd,
21747 _mm_maskz_fnmadd_ss, _mm_mask_fnmsub_sd, _mm_mask_fnmsub_ss,
21748 _mm_mask3_fnmsub_sd, _mm_mask3_fnmsub_ss, _mm_maskz_fnmsub_sd,
21749 _mm_maskz_fnmsub_ss, _mm_mask_fmadd_round_sd, _mm_mask_fmadd_round_ss,
21750 _mm_mask3_fmadd_round_sd, _mm_mask3_fmadd_round_ss,
21751 _mm_maskz_fmadd_round_sd, _mm_maskz_fmadd_round_ss,
21752 _mm_mask_fmsub_round_sd, _mm_mask_fmsub_round_ss,
21753 _mm_mask3_fmsub_round_sd, _mm_mask3_fmsub_round_ss,
21754 _mm_maskz_fmsub_round_sd, _mm_maskz_fmsub_round_ss,
21755 _mm_mask_fnmadd_round_sd, _mm_mask_fnmadd_round_ss,
21756 _mm_mask3_fnmadd_round_sd, _mm_mask3_fnmadd_round_ss,
21757 _mm_maskz_fnmadd_round_sd, _mm_maskz_fnmadd_round_ss,
21758 _mm_mask_fnmsub_round_sd, _mm_mask_fnmsub_round_ss,
21759 _mm_mask3_fnmsub_round_sd, _mm_mask3_fnmsub_round_ss,
21760 _mm_maskz_fnmsub_round_sd, _mm_maskz_fnmsub_round_ss): New intrinsics.
21761
21762 2019-03-21 Martin Sebor <msebor@redhat.com>
21763
21764 PR tree-optimization/89350
21765 * builtins.c (compute_objsize): Also ignore offsets whose upper
21766 bound is negative.
21767 * gimple-ssa-warn-restrict.c (builtin_memref): Add new member.
21768 (builtin_memref::builtin_memref): Initialize new member.
21769 Allow EXPR to be null.
21770 (builtin_memref::extend_offset_range): Replace local with a member.
21771 Avoid assuming pointer offsets are unsigned.
21772 (builtin_memref::set_base_and_offset): Determine base object
21773 before computing offset range.
21774 (builtin_access::builtin_access): Handle memset.
21775 (builtin_access::generic_overlap): Replace local with a member.
21776 (builtin_access::strcat_overlap): Same.
21777 (builtin_access::overlap): Same.
21778 (maybe_diag_overlap): Same.
21779 (maybe_diag_access_bounds): Same.
21780 (wrestrict_dom_walker::check_call): Handle memset.
21781 (check_bounds_or_overlap): Same.
21782
21783 2019-03-21 Jan Hubicka <hubicka@ucw.cz>
21784 Jakub Jelinek <jakub@redhat.com>
21785
21786 PR lto/89692
21787 * tree.c (fld_type_variant, fld_incomplete_type_of,
21788 fld_process_array_type): Call fld->pset.add and don't call
21789 add_tree_to_fld_list if it returns true.
21790 (free_lang_data_in_type): Similarly with self-recursive call. Purge
21791 non-marked types from TYPE_NEXT_VARIANT list.
21792 (find_decls_types_r): Call fld_worklist_push for TYPE_CANONICAL (t).
21793
21794 2019-03-21 Jakub Jelinek <jakub@redhat.com>
21795
21796 * hash-table.h (hash_table): Add Lazy template parameter defaulted
21797 to false, if true, don't alloc_entries during construction, but defer
21798 it to the first method that needs m_entries allocated.
21799 (hash_table::hash_table, hash_table::~hash_table,
21800 hash_table::alloc_entries, hash_table::find_empty_slot_for_expand,
21801 hash_table::too_empty_p, hash_table::expand, hash_table::empty_slow,
21802 hash_table::clear_slot, hash_table::traverse_noresize,
21803 hash_table::traverse, hash_table::iterator::slide): Adjust all methods.
21804 * hash-set.h (hash_set): Add Lazy template parameter defaulted to
21805 false.
21806 (hash_set::contains): If Lazy is true, use find_slot_with_hash with
21807 NO_INSERT instead of find_with_hash.
21808 (hash_set::traverse, hash_set::iterator, hash_set::iterator::m_iter,
21809 hash_set::m_table): Add Lazy to template params of hash_table.
21810 (gt_ggc_mx, gt_pch_nx): Use false as Lazy in hash_set template param.
21811 * attribs.c (test_attribute_exclusions): Likewise.
21812 * hash-set-tests.c (test_set_of_strings): Add iterator tests for
21813 hash_set. Add tests for hash_set with Lazy = true.
21814
21815 2019-03-21 Richard Biener <rguenther@suse.de>
21816
21817 PR tree-optimization/89779
21818 * tree.c (tree_nop_conversion): Consolidate and fix defensive
21819 checks with respect to released SSA names now having error_mark_node
21820 type.
21821 * fold-const.c (operand_equal_p): Likewise.
21822
21823 2019-03-20 Andreas Krebbel <krebbel@linux.ibm.com>
21824
21825 PR target/89775
21826 * config/s390/s390.c (global_not_special_regno_p): Move to make it
21827 available to ...
21828 (s390_optimize_register_info): Use global_not_special_regno_p to
21829 check for global regs.
21830
21831 2019-03-20 Jakub Jelinek <jakub@redhat.com>
21832
21833 PR target/89752
21834 * lra-constraints.c (process_alt_operands) <reg>: For BLKmode, don't
21835 update this_alternative nor this_alternative_set.
21836
21837 2019-03-19 Jim Wilson <jimw@sifive.com>
21838
21839 PR target/89411
21840 * config/riscv/riscv.c (riscv_valid_lo_sum_p): New arg x. New locals
21841 align, size, offset. Use them to handle a BLKmode reference. Update
21842 comment.
21843 (riscv_classify_address): Pass info->offset to riscv_valid_lo_sum_p.
21844
21845 2019-03-19 Jakub Jelinek <jakub@redhat.com>
21846
21847 PR rtl-optimization/89768
21848 * loop-unroll.c (unroll_loop_constant_iterations): Use gen_int_mode
21849 instead of GEN_INT.
21850 (unroll_loop_runtime_iterations): Likewise.
21851
21852 2019-03-19 Martin Sebor <msebor@redhat.com>
21853
21854 PR tree-optimization/89644
21855 * tree-ssa-strlen.c (handle_builtin_stxncpy): Use full_string_p
21856 rather than endptr as an indicator of nul-termination.
21857
21858 PR tree-optimization/89644
21859 * tree-ssa-strlen.c (handle_builtin_stxncpy): Consider unterminated
21860 arrays in determining sequence sizes in strncpy and stpncpy.
21861
21862 2019-03-19 Martin Liska <mliska@suse.cz>
21863
21864 PR middle-end/89737
21865 * predict.c (combine_predictions_for_bb): Empty likely_edges and
21866 unlikely_edges if there's an edge that belongs to both these sets.
21867
21868 2018-03-19 Segher Boessenkool <segher@kernel.crashing.org>
21869
21870 PR target/89746
21871 * config/rs6000/rs6000.md (fix_trunc<mode>si2_stfiwx): If we have a
21872 non-TARGET_MFCRF target, and the dest is memory but not 32-bit aligned,
21873 go via a stack temporary.
21874
21875 2019-03-19 Jakub Jelinek <jakub@redhat.com>
21876
21877 PR target/89378
21878 * config/mips/mips.c (mips_expand_vec_cond_expr): Use gen_lowpart
21879 instead of gen_rtx_SUBREG.
21880 * config/mips/mips-msa.md (vec_extract<mode><unitmode>): Likewise.
21881
21882 2019-03-19 Richard Biener <rguenther@suse.de>
21883
21884 PR debug/88389
21885 * opts.c (finish_options): Disable -gsplit-dwarf when doing LTO.
21886
21887 2019-03-19 Jan Hubicka <hubicka@ucw.cz>
21888
21889 PR lto/87809
21890 PR lto/89335
21891 * tree.c (free_lang_data_in_decl): Do not free context of C++
21892 destrutors.
21893
21894 2019-03-19 Jakub Jelinek <jakub@redhat.com>
21895
21896 PR target/89506
21897 * config/arm/arm.md (cmpsi2_addneg): Swap the alternatives and use
21898 subs for the first alternative except when operands[3] is 1.
21899
21900 PR target/89752
21901 * gimplify.c (gimplify_asm_expr): For output argument with
21902 TREE_ADDRESSABLE type, clear allows_reg if it allows memory, otherwise
21903 diagnose error.
21904
21905 2019-03-19 Eric Botcazou <ebotcazou@adacore.com>
21906
21907 PR rtl-optimization/89753
21908 * loop-unroll.c (decide_unroll_constant_iterations): Make guard for
21909 explicit unrolling factor even more robust.
21910
21911 2019-03-19 Jakub Jelinek <jakub@redhat.com>
21912
21913 PR target/89726
21914 * config/i386/i386.c (ix86_expand_floorceildf_32): In ceil
21915 compensation use x2 += 1 instead of x2 -= -1 and when honoring
21916 signed zeros, do another copysign after the compensation.
21917
21918 2019-03-18 Martin Sebor <msebor@redhat.com>
21919
21920 PR tree-optimization/89720
21921 * tree-vrp.c (vrp_prop::check_mem_ref): Treat range with max < min
21922 more conservatively, the same as anti-range.
21923
21924 2019-03-18 Richard Biener <rguenther@suse.de>
21925
21926 PR middle-end/88945
21927 * tree-ssanames.c (release_ssa_name_fn): For released SSA names
21928 use a TREE_TYPE of error_mark_node to avoid ICEs when dumping
21929 basic-blocks that are removed. Remove restoring SSA_NAME_VAR.
21930 * tree-outof-ssa.c (eliminate_useless_phis): Remove redundant checking.
21931
21932 2019-03-18 Andrew Stubbs <ams@codesourcery.com>
21933
21934 * config/gcn/gcn-run.c (struct output): Make next_output unsigned.
21935 Extend queue to 1024 entries.
21936 Add "consumed" field.
21937 (gomp_print_output): Remove print_index parameter.
21938 Add final parameter.
21939 Change limit to unsigned.
21940 Use consumed field to implement circular buffer.
21941 Detect interrupted print in final pass.
21942 Flush output at the end.
21943 (run): Update gomp_print_output usage.
21944 (main): Initialize kernargs->output_data.consumed.
21945
21946 2019-03-18 Richard Sandiford <richard.sandiford@arm.com>
21947
21948 * tree-vect-loop.c (vect_estimate_min_profitable_iters): Fix the
21949 calculation of the minimum number of scalar iterations for
21950 fully-predicated loops.
21951
21952 2019-03-18 Martin Jambor <mjambor@suse.cz>
21953
21954 PR tree-optimization/89546
21955 * tree-sra.c (propagate_subaccesses_across_link): Requeue new_acc if
21956 any propagation to its children took place.
21957
21958 2019-03-18 Andrew Burgess <andrew.burgess@embecosm.com>
21959
21960 PR target/89627
21961 * config/riscv/riscv.c (riscv_pass_fpr_single): Add offset
21962 parameter, and make use of it.
21963 (riscv_get_arg_info): Pass offset to riscv_pass_fpr_single.
21964
21965 2019-03-18 Claudiu Zissulescu <claziss@synopsys.com>
21966
21967 * config/arc/arc.opt (mcode-density-frame): Get the inital value
21968 from TARGET_CODE_DENSITY_FRAME_DEFAULT.
21969 * config/arc/elf.h (TARGET_CODE_DENSITY_FRAME_DEFAULT): Define.
21970 * config/arc/linux.h (TARGET_CODE_DENSITY_FRAME_DEFAULT): Define.
21971 * config/arc/arc.md (pop_multi_fp_blink): Adjust constraints to
21972 match what the ops is doing.
21973 (push_multi_fp_blink): Likewise.
21974 * config/arc/arc.c (arc_override_options): Enable enter/leave when
21975 compiling for size and elf target.
21976 (arc_save_callee_enter): Adjust note to match what enter/leave
21977 operation does.
21978
21979 2019-03-18 Claudiu Zissulescu <claziss@synopsys.com>
21980
21981 * config/arc/arc.md (tst_movb): Fix constraint.
21982
21983 2019-03-18 Claudiu Zissulescu <claziss@synopsys.com>
21984
21985 * config/arc/arc.c (TARGET_HAVE_SPECULATION_SAFE_VALUE): Define.
21986
21987 2019-03-18 Claudiu Zissulescu <claziss@synopsys.com>
21988
21989 * config/arc/arc-protos.h (arc_adjust_reg_alloc_order): Declare.
21990 * config/arc/arc.c (arc_conditional_register_usage): Remove all
21991 reg_alloc_order references.
21992 (size_alloc_order): Define.
21993 (arc_adjust_reg_alloc_order): New function.
21994 * config/arc/arc.h (REG_ALLOC_ORDER): Proper define the register
21995 order.
21996 (ADJUST_REG_ALLOC_ORDER): Define.
21997 (HONOR_REG_ALLOC_ORDER): Likewise.
21998
21999 2019-03-18 Richard Biener <rguenther@suse.de>
22000
22001 PR target/87561
22002 * config/i386/i386.c (ix86_add_stmt_cost): Pessimize strided
22003 loads and stores a bit more.
22004
22005 2019-03-18 Richard Biener <rguenther@suse.de>
22006
22007 PR target/87561
22008 * config/i386/i386.c (ix86_add_stmt_cost): Apply strided
22009 load pessimization to stores as well.
22010
22011 2019-03-18 Andrey Belevantsev <abel@ispras.ru>
22012
22013 PR middle-end/86979
22014 * sel-sched.c (compute_av_set_at_bb_end): When we have an ineligible
22015 successor, use NULL as its av set.
22016
22017 2019-03-15 Segher Boessenkool <segher@kernel.crashing.org>
22018
22019 PR rtl-optimization/89721
22020 * lra-constraints (invariant_p): Return false if side_effects_p holds.
22021
22022 2019-03-15 Kelvin Nilsen <kelvin@gcc.gnu.org>
22023
22024 PR target/87532
22025 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
22026 When handling vec_extract, use modular arithmetic to allow
22027 constant selectors greater than vector length.
22028 * config/rs6000/rs6000.c (rs6000_expand_vector_extract): Allow
22029 V1TImode vectors to have constant selector values greater than 0.
22030 Use modular arithmetic to compute vector index.
22031 (rs6000_split_vec_extract_var): Use modular arithmetic to compute
22032 index for in-memory vectors. Correct code generation for
22033 in-register vectors.
22034 (altivec_expand_vec_ext_builtin): Use modular arithmetic to
22035 compute index.
22036
22037 2019-03-15 Alexandre Oliva <aoliva@redhat.com>
22038
22039 PR c++/88534
22040 PR c++/88537
22041 * dwarf2out.c (generic_parameter_die): Follow DECL_INITIAL of
22042 VAR_DECL args.
22043
22044 2019-03-15 Jakub Jelinek <jakub@redhat.com>
22045
22046 PR c++/89709
22047 * tree.c (inchash::add_expr): Strip any location wrappers.
22048 * fold-const.c (operand_equal_p): Move stripping of location wrapper
22049 after hash verification.
22050
22051 PR debug/89704
22052 * dwarf2out.c (add_const_value_attribute): Return false for MINUS,
22053 SIGN_EXTEND and ZERO_EXTEND.
22054
22055 2019-03-14 Jason Merrill <jason@redhat.com>
22056 Jakub Jelinek <jakub@redhat.com>
22057
22058 * hash-table.h (remove_elt_with_hash): Return if slot is NULL rather
22059 than if is_empty (*slot).
22060 * hash-set-tests.c (test_set_of_strings): Add tests for addition of
22061 existing elt and for elt removal.
22062 * hash-map-tests.c (test_map_of_strings_to_int): Add test for removal
22063 of already removed elt.
22064
22065 2019-03-15 H.J. Lu <hongjiu.lu@intel.com>
22066
22067 PR target/89650
22068 * config/i386/i386.c (remove_partial_avx_dependency): Handle
22069 REG_EH_REGION note.
22070
22071 2019-03-14 Martin Liska <mliska@suse.cz>
22072
22073 PR other/89712
22074 * doc/invoke.texi: Remove -fdump-class-hierarchy option.
22075
22076 2019-03-14 Richard Biener <rguenther@suse.de>
22077
22078 PR target/89711
22079 * config/i386/i386.c (make_resolver_func): Properly set
22080 DECL_CONTEXT on the RESULT_DECL.
22081 * config/rs6000/rs6000.c (make_resolver_func): Likewise.
22082
22083 2019-03-14 Richard Biener <rguenther@suse.de>
22084
22085 * gimple-pretty-print.c: Include cfgloop.h.
22086 (dump_gimple_phi): Adjust.
22087 (dump_gimple_bb_header): Dump loop header for GIMPLE.
22088 (pp_cfg_jump): Adjust.
22089 (dump_implicit_edges): Dump fallthru to next block for GIMPLE as well.
22090 * tree-cfg.c (build_gimple_cfg): Remove lower_phi_internal_fn call.
22091 (lower_phi_internal_fn): Remove.
22092 (verify_gimple_call): Remove IFN_PHI special-casing.
22093 (dump_function_to_file): Dump IL state.
22094 * tree-into-ssa.c (rewrite_add_phi_arguments): Revert changes
22095 done to deal with PHI nodes being present in non-SSA state.
22096
22097 2019-03-14 Jakub Jelinek <jakub@redhat.com>
22098
22099 PR ipa/89684
22100 * multiple_target.c (create_dispatcher_calls): Change
22101 references_to_redirect from vector of ipa_ref * to vector of ipa_ref.
22102 In the node->iterate_referring loop, push *ref rather than ref, call
22103 ref->remove_reference () and always pass 0 to iterate_referring.
22104
22105 PR rtl-optimization/89679
22106 * expmed.c (expand_mult_const): Don't add a REG_EQUAL note if it
22107 would contain a paradoxical SUBREG.
22108
22109 2019-03-14 Richard Biener <rguenther@suse.de>
22110
22111 PR tree-optimization/89710
22112 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Use
22113 safe_dyn_cast.
22114
22115 2019-03-14 Martin Liska <mliska@suse.cz>
22116
22117 * coverage.c (coverage_begin_function): Stream also
22118 end_column.
22119 * doc/gcov.texi: Document 2 new fields in JSON file. Improve
22120 documentation about function declaration location.
22121 * gcov-dump.c (tag_function): Print whole range
22122 of function declaration.
22123 * gcov.c (struct function_info): Add end_column field.
22124 (function_info::function_info): Initialize it.
22125 (output_json_intermediate_file): Output {start,end}_column
22126 fields.
22127 (read_graph_file): Read end_column.
22128
22129 2019-03-14 Richard Biener <rguenther@suse.de>
22130
22131 PR middle-end/89698
22132 * fold-const.c (operand_equal_p): For INDIRECT_REF check
22133 that the access types are similar.
22134
22135 2019-03-14 Jakub Jelinek <jakub@redhat.com>
22136
22137 PR tree-optimization/89703
22138 * tree-ssa-strlen.c (valid_builtin_call): Punt if stmt call types
22139 aren't compatible also with builtin_decl_explicit. Check pure
22140 or non-pure status of BUILT_IN_STR{{,N}CMP,N{LEN,{CAT,CPY}{,_CHK}}}
22141 and BUILT_IN_STPNCPY{,_CHK}.
22142
22143 2019-03-14 H.J. Lu <hongjiu.lu@intel.com>
22144
22145 PR target/89523
22146 * config/i386/i386.c (ix86_print_operand): Handle 'M' to add
22147 addr32 prefix to VSIB address for X32.
22148 * config/i386/sse.md (*avx512pf_gatherpf<mode>sf_mask): Prepend
22149 "%M2" to opcode.
22150 (*avx512pf_gatherpf<mode>df_mask): Likewise.
22151 (*avx512pf_scatterpf<mode>sf_mask): Likewise.
22152 (*avx512pf_scatterpf<mode>df_mask): Likewise.
22153 (*avx2_gathersi<mode>): Prepend "%M3" to opcode.
22154 (*avx2_gathersi<mode>_2): Prepend "%M2" to opcode.
22155 (*avx2_gatherdi<mode>): Prepend "%M3" to opcode.
22156 (*avx2_gatherdi<mode>_2): Prepend "%M2" to opcode.
22157 (*avx2_gatherdi<mode>_3): Prepend "%M3" to opcode.
22158 (*avx2_gatherdi<mode>_4): Prepend "%M2" to opcode.`
22159 (*avx512f_gathersi<mode>): Prepend "%M4" to opcode.
22160 (*avx512f_gathersi<mode>_2): Prepend "%M3" to opcode.
22161 (*avx512f_gatherdi<mode>): Prepend "%M4" to opcode.
22162 (*avx512f_gatherdi<mode>_2): Prepend "%M3" to opcode.
22163 (*avx512f_scattersi<mode>): Prepend "%M0" to opcode.
22164 (*avx512f_scatterdi<mode>): Likewise.
22165
22166 2019-03-13 Vladimir Makarov <vmakarov@redhat.com>
22167
22168 PR target/85860
22169 * lra-constraints.c (inherit_in_ebb): Update
22170 potential_reload_hard_regs along with live_hard_regs.
22171
22172 2019-03-13 Jakub Jelinek <jakub@redhat.com>
22173
22174 PR debug/89498
22175 * dwarf2out.c (size_of_die): For dw_val_class_view_list always use
22176 DWARF_OFFSET_SIZE.
22177 (value_format): For dw_val_class_view_list never use DW_FORM_loclistx.
22178
22179 2019-03-13 Martin Sebor <msebor@redhat.com>
22180
22181 PR tree-optimization/89662
22182 * tree-vrp.c (vrp_prop::check_mem_ref): Avoid assuming every type
22183 has a size.
22184
22185 2019-03-13 Richard Biener <rguenther@suse.de>
22186
22187 PR middle-end/89677
22188 * tree-scalar-evolution.c (simplify_peeled_chrec): Do not
22189 throw FP expressions at tree-affine.
22190
22191 2019-03-14 Richard Biener <rguenther@suse.de>
22192
22193 * tree-pretty-print.c (dump_generic_node): For -gimple properly
22194 dump negative integer constants using _Literal (type) -num.
22195
22196 2019-03-13 Jakub Jelinek <jakub@redhat.com>
22197
22198 * ipa-param-manipulation.h (struct ipa_parm_adjustment): Remove
22199 nonlocal_value member.
22200
22201 PR middle-end/88588
22202 * omp-simd-clone.c (ipa_simd_modify_stmt_ops): Handle PHI args.
22203 (ipa_simd_modify_function_body): Handle PHIs.
22204
22205 2019-03-12 Robin Dapp <rdapp@linux.ibm.com>
22206
22207 * config/s390/s390.c (s390_option_override_internal): Use more
22208 aggressive inlining parameters.
22209
22210 2019-03-12 Robin Dapp <rdapp@linux.ibm.com>
22211
22212 * config/s390/3906.md: New file.
22213 * config/s390/s390.c (MAX_SCHED_UNITS): Increase.
22214 (LONGRUNNING_THRESHOLD): Remove.
22215 (MAX_SCHED_MIX_SCORE): Decrease.
22216 (MAX_SCHED_MIX_DISTANCE): Decrease.
22217 (s390_bb_fallthru_entry_likely): Assume fallthru for less than likely.
22218 (struct s390_sched_state): New struct to hold scheduling state.
22219 (S390_SCHED_STATE_NORMAL): Remove.
22220 (S390_SCHED_STATE_CRACKED): Remove.
22221 (S390_SCHED_ATTR_MASK_GROUPOFTWO): Add.
22222 (s390_get_sched_attrmask): Use new attribute.
22223 (s390_get_unit_mask): Use new units.
22224 (s390_is_fpd): New function.
22225 (s390_is_fxd): New function.
22226 (s390_is_longrunning): New function.
22227 (s390_sched_score): Use new functions.
22228 (s390_sched_reorder): Likewise.
22229 (s390_sched_variable_issue): Rework and use new functions.
22230 (s390_sched_init): Use new functions.
22231 * config/s390/s390.h (s390_tune_attr): Add z14.
22232 * config/s390/s390.md: Add z14.
22233
22234 2019-03-12 Robin Dapp <rdapp@linux.ibm.com>
22235
22236 * config/s390/2964.md: Update pipeline description.
22237 * config/s390/s390.c (MAX_SCHED_UNITS): Increase.
22238 (LONGRUNNING_THRESHOLD): Remove.
22239 (LATENCY_FACTOR): Remove.
22240 (s390_get_unit_mask): Add unit.
22241 (s390_sched_score): Use fxd/fpd.
22242 (s390_sched_variable_issue): Use fxd/fpd.
22243
22244 2019-03-12 Martin Liska <mliska@suse.cz>
22245
22246 * config/i386/i386.c: Reword an error message.
22247
22248 2019-03-12 Martin Jambor <mjambor@suse.cz>
22249
22250 * cgraph.c (cgraph_node::dump): Dump more info for former thunks,
22251 terminate with newline.
22252
22253 2019-03-12 Jakub Jelinek <jakub@redhat.com>
22254
22255 PR target/52726
22256 * config/s390/s390.md (tabort): Use %wd instead of
22257 HOST_WIDE_INT_PRINT_DEC in error message, reword to avoid two capital
22258 letters and periods.
22259 * config/tilepro/tilepro.c (tilepro_print_operand): Use %wd in
22260 output_operand_lossage instead of HOST_WIDE_INT_PRINT_DEC, replace
22261 's with %< and %>.
22262
22263 PR middle-end/89663
22264 * builtins.c (expand_builtin_int_roundingfn,
22265 expand_builtin_int_roundingfn_2): Return NULL_RTX instead of
22266 gcc_unreachable if validate_arglist fails.
22267
22268 2019-03-12 Richard Biener <rguenther@suse.de>
22269
22270 PR tree-optimization/89664
22271 * tree-ssa-math-opts.c (execute_cse_reciprocals_1): Properly
22272 free the occurance tree after the early out.
22273
22274 2019-03-11 Jakub Jelinek <jakub@redhat.com>
22275
22276 PR middle-end/89655
22277 PR bootstrap/89656
22278 * vr-values.c (vr_values::update_value_range): If
22279 old_vr->varying_p (), don't update it, make new_vr also VARYING
22280 and return false.
22281
22282 2019-03-11 Martin Liska <mliska@suse.cz>
22283
22284 * config/aarch64/aarch64.c (aarch64_override_options_internal):
22285 Fix double string quoting.
22286
22287 2019-03-11 Martin Liska <mliska@suse.cz>
22288
22289 * collect-utils.c (collect_wait): Wrap apostrophes
22290 in gcc internal format with %'.
22291 * collect2.c (main): Likewise.
22292 (scan_prog_file): Likewise.
22293 (scan_libraries): Likewise.
22294 * config/i386/i386.c (ix86_expand_call): Likewise.
22295 (ix86_handle_interrupt_attribute): Likewise.
22296 * config/nds32/nds32-intrinsic.c (nds32_expand_builtin_impl): Likewise.
22297 * config/nds32/nds32.c (nds32_insert_attributes): Likewise.
22298 * config/rl78/rl78.c (rl78_handle_saddr_attribute): Likewise.
22299 * lto-wrapper.c (find_crtoffloadtable): Likewise.
22300 * symtab.c (symtab_node::verify_base): Likewise.
22301 * tree-cfg.c (verify_gimple_label): Likewise.
22302 * tree.c (verify_type_variant): Likewise.
22303
22304 2019-03-11 Martin Liska <mliska@suse.cz>
22305
22306 * builtins.c (expand_builtin_thread_pointer): Wrap an option name
22307 in a string format message and fix GNU coding style.
22308 (expand_builtin_set_thread_pointer): Likewise.
22309 * common/config/aarch64/aarch64-common.c
22310 (aarch64_rewrite_selected_cpu): Likewise.
22311 * common/config/alpha/alpha-common.c (alpha_handle_option): Likewise.
22312 * common/config/arc/arc-common.c (arc_handle_option): Likewise.
22313 * common/config/arm/arm-common.c (arm_parse_fpu_option): Likewise.
22314 * common/config/bfin/bfin-common.c (bfin_handle_option): Likewise.
22315 * common/config/i386/i386-common.c (ix86_handle_option): Likewise.
22316 * common/config/ia64/ia64-common.c (ia64_handle_option): Likewise.
22317 * common/config/m68k/m68k-common.c (m68k_handle_option): Likewise.
22318 * common/config/msp430/msp430-common.c (msp430_handle_option): Likewise.
22319 * common/config/nds32/nds32-common.c (nds32_handle_option): Likewise.
22320 * common/config/powerpcspe/powerpcspe-common.c (rs6000_handle_option):
22321 Likewise.
22322 * common/config/riscv/riscv-common.c
22323 (riscv_subset_list::parsing_subset_version): Likewise.
22324 (riscv_subset_list::parse_std_ext): Likewise.
22325 (riscv_subset_list::parse_sv_or_non_std_ext): Likewise.
22326 (riscv_subset_list::parse): Likewise.
22327 * common/config/rs6000/rs6000-common.c (rs6000_handle_option): Likewise.
22328 * config/aarch64/aarch64.c (aarch64_parse_one_option_token): Likewise.
22329 (aarch64_override_options_internal): Likewise.
22330 (aarch64_validate_mcpu): Likewise.
22331 (aarch64_validate_march): Likewise.
22332 (aarch64_validate_mtune): Likewise.
22333 (aarch64_override_options): Likewise.
22334 * config/alpha/alpha.c (alpha_option_override): Likewise.
22335 * config/arc/arc.c (arc_init): Likewise.
22336 (parse_mrgf_banked_regs_option): Likewise.
22337 (arc_override_options): Likewise.
22338 (arc_expand_builtin_aligned): Likewise.
22339 * config/arm/arm-builtins.c (arm_expand_neon_builtin): Likewise.
22340 (arm_expand_builtin): Likewise.
22341 * config/arm/arm.c (arm_option_check_internal): Likewise.
22342 (arm_configure_build_target): Likewise.
22343 (arm_option_override): Likewise.
22344 (arm_options_perform_arch_sanity_checks): Likewise.
22345 (arm_handle_cmse_nonsecure_entry): Likewise.
22346 (arm_handle_cmse_nonsecure_call): Likewise.
22347 (arm_tls_referenced_p): Likewise.
22348 (thumb1_expand_prologue): Likewise.
22349 * config/avr/avr.c (avr_option_override): Likewise.
22350 * config/bfin/bfin.c (bfin_option_override): Likewise.
22351 * config/c6x/c6x.c (c6x_option_override): Likewise.
22352 * config/cr16/cr16.c (cr16_override_options): Likewise.
22353 * config/cris/cris.c (cris_option_override): Likewise.
22354 * config/csky/csky.c (csky_handle_isr_attribute): Likewise.
22355 * config/darwin-c.c (macosx_version_as_macro): Likewise.
22356 * config/darwin.c (darwin_override_options): Likewise.
22357 * config/frv/frv.c (frv_expand_builtin): Likewise.
22358 * config/h8300/h8300.c (h8300_option_override): Likewise.
22359 * config/i386/i386.c (parse_mtune_ctrl_str): Likewise.
22360 (ix86_option_override_internal): Likewise.
22361 (warn_once_call_ms2sysv_xlogues): Likewise.
22362 (ix86_expand_prologue): Likewise.
22363 (split_stack_prologue_scratch_regno): Likewise.
22364 (ix86_warn_parameter_passing_abi): Likewise.
22365 * config/ia64/ia64.c (fix_range): Likewise.
22366 * config/m68k/m68k.c (m68k_option_override): Likewise.
22367 * config/microblaze/microblaze.c (microblaze_option_override): Likewise.
22368 * config/mips/mips.c (mips_emit_probe_stack_range): Likewise.
22369 (mips_set_compression_mode): Likewise.
22370 * config/mmix/mmix.c (mmix_option_override): Likewise.
22371 * config/mn10300/mn10300.c (mn10300_option_override): Likewise.
22372 * config/msp430/msp430.c (msp430_option_override): Likewise.
22373 * config/nds32/nds32.c (nds32_option_override): Likewise.
22374 * config/nios2/nios2.c (nios2_custom_check_insns): Likewise.
22375 (nios2_option_override): Likewise.
22376 (nios2_expand_custom_builtin): Likewise.
22377 * config/nvptx/mkoffload.c (main): Likewise.
22378 * config/nvptx/nvptx.c (diagnose_openacc_conflict): Likewise.
22379 * config/pa/pa.c (fix_range): Likewise.
22380 (pa_option_override): Likewise.
22381 * config/riscv/riscv.c (riscv_parse_cpu): Likewise.
22382 (riscv_option_override): Likewise.
22383 * config/rl78/rl78.c (rl78_option_override): Likewise.
22384 * config/rs6000/aix61.h: Likewise.
22385 * config/rs6000/aix71.h: Likewise.
22386 * config/rs6000/aix72.h: Likewise.
22387 * config/rs6000/driver-rs6000.c (elf_platform): Likewise.
22388 * config/rs6000/freebsd64.h: Likewise.
22389 * config/rs6000/linux64.h: Likewise.
22390 * config/rs6000/rs6000.c (rs6000_option_override_internal): Likewise.
22391 (rs6000_expand_zeroop_builtin): Likewise.
22392 (rs6000_expand_mtfsb_builtin): Likewise.
22393 (rs6000_expand_set_fpscr_rn_builtin): Likewise.
22394 (rs6000_expand_set_fpscr_drn_builtin): Likewise.
22395 (rs6000_invalid_builtin): Likewise.
22396 (rs6000_expand_split_stack_prologue): Likewise.
22397 * config/rs6000/rtems.h: Likewise.
22398 * config/rx/rx.c (valid_psw_flag): Likewise.
22399 (rx_expand_builtin): Likewise.
22400 * config/s390/s390-c.c (s390_resolve_overloaded_builtin): Likewise.
22401 * config/s390/s390.c (s390_expand_builtin): Likewise.
22402 (s390_function_profiler): Likewise.
22403 (s390_option_override_internal): Likewise.
22404 (s390_option_override): Likewise.
22405 * config/sh/sh.c (sh_option_override): Likewise.
22406 (sh_builtin_saveregs): Likewise.
22407 (sh_fix_range): Likewise.
22408 * config/sh/vxworks.h: Likewise.
22409 * config/sparc/sparc.c (sparc_option_override): Likewise.
22410 * config/spu/spu.c (spu_option_override): Likewise.
22411 (fix_range): Likewise.
22412 * config/visium/visium.c (visium_option_override): Likewise.
22413 (visium_handle_interrupt_attr): Likewise.
22414 * config/xtensa/xtensa.c (xtensa_option_override): Likewise.
22415 * dbgcnt.c (dbg_cnt_set_limit_by_name): Likewise.
22416 (dbg_cnt_process_opt): Likewise.
22417 * dwarf2out.c (output_dwarf_version): Likewise.
22418 * except.c (expand_eh_return): Likewise.
22419 * gcc.c (defined): Likewise.
22420 (driver_handle_option): Likewise.
22421 (process_command): Likewise.
22422 (compare_files): Likewise.
22423 (driver::prepare_infiles): Likewise.
22424 (driver::do_spec_on_infiles): Likewise.
22425 (driver::maybe_run_linker): Likewise.
22426 * omp-offload.c (oacc_parse_default_dims): Likewise.
22427 * opts-global.c (handle_common_deferred_options): Likewise.
22428 * opts.c (parse_sanitizer_options): Likewise.
22429 (common_handle_option): Likewise.
22430 (enable_warning_as_error): Likewise.
22431 * passes.c (enable_disable_pass): Likewise.
22432 * plugin.c (parse_plugin_arg_opt): Likewise.
22433 (default_plugin_dir_name): Likewise.
22434 * targhooks.c (default_expand_builtin_saveregs): Likewise.
22435 (default_pch_valid_p): Likewise.
22436 * toplev.c (init_asm_output): Likewise.
22437 (process_options): Likewise.
22438 (toplev::run_self_tests): Likewise.
22439 * tree-cfg.c (verify_gimple_call): Likewise.
22440 * tree-inline.c (inline_forbidden_p_stmt): Likewise.
22441 (tree_inlinable_function_p): Likewise.
22442 * var-tracking.c (vt_find_locations): Likewise.
22443
22444 2019-03-11 Andreas Krebbel <krebbel@linux.ibm.com>
22445
22446 * config/s390/s390.c (s390_expand_builtin): Do the copy_to_reg not
22447 only on the else branch.
22448
22449 2019-03-11 Martin Liska <mliska@suse.cz>
22450
22451 * gcov.c (output_intermediate_json_line): Print function
22452 name of each line.
22453 (output_json_intermediate_file): Add new argument.
22454 * doc/gcov.texi: Document the change.
22455
22456 2019-03-11 Eric Botcazou <ebotcazou@adacore.com>
22457
22458 PR rtl-optimization/89588
22459 * loop-unroll.c (decide_unroll_constant_iterations): Make guard for
22460 explicit unrolling factor more robust.
22461
22462 2019-03-11 Richard Biener <rguenther@suse.de>
22463
22464 PR tree-optimization/89649
22465 * tree-vectorizer.h (vect_loop_versioning): Adjust prototype.
22466 * tree-vect-loop-manip.c (vect_do_peeling): Unset force_vectorize
22467 on the prolog and epilog loops.
22468 (vect_loop_versioning): Return copy of loop.
22469 * tree-vect-loop.c (vect_transform_loop): Unset force_vectorize
22470 on the non-vectorized version of the loop.
22471
22472 2019-03-10 Uroš Bizjak <ubizjak@gmail.com>
22473
22474 PR target/68924
22475 * config/i386/sse.md (*vec_extractv2di_0_sse):
22476 Add (=r,x) alternative and corresponding splitter.
22477
22478 2019-03-10 Martin Jambor <mjambor@suse.cz>
22479
22480 PR tree-optimization/85762
22481 PR tree-optimization/87008
22482 PR tree-optimization/85459
22483 * tree-sra.c (contains_vce_or_bfcref_p): New parameter, set the bool
22484 it points to if there is a type changing MEM_REF. Adjust all callers.
22485 (build_accesses_from_assign): Disable total scalarization if
22486 contains_vce_or_bfcref_p returns true through the new parameter, for
22487 both rhs and lhs.
22488
22489 2019-03-09 Jakub Jelinek <jakub@redhat.com>
22490
22491 PR c/88568
22492 * attribs.c (handle_dll_attribute): Don't clear TREE_STATIC for
22493 dllimport on VAR_DECLs with RECORD_TYPE or UNION_TYPE DECL_CONTEXT.
22494
22495 PR target/79645
22496 * common.opt (fdiagnostics-show-labels,
22497 fdiagnostics-show-line-numbers, fdiagnostics-format=,
22498 fdiagnostics-minimum-margin-width=, fgnat-encodings=, gas-loc-support,
22499 gas-locview-support, ginline-points, ginternal-reset-location-views):
22500 Terminate description text with a dot.
22501 * config/microblaze/microblaze.opt (mxl-prefetch): Likewise.
22502 * config/mcore/mcore.opt (m210, m340): Likewise.
22503 * config/epiphany/epiphany.opt (mprefer-short-insn-regs, mcmove,
22504 mnops=): Start description text with a capital letter.
22505 * config/arc/arc.opt (msize-level=): Likewise.
22506 * config/sh/sh.opt (minline-ic_invalidate): Likewise.
22507 * config/rs6000/sysv4.opt (mno-toc, mtoc, mno-traceback, mshlib,
22508 mnewlib): Likewise.
22509 * config/ft32/ft32.opt (msim): Likewise.
22510 (mft32b, mcompress): Likewise. Terminate description text with a dot.
22511 (mnodiv, mnopm): Terminate description text with a dot.
22512 * config/c6x/c6x.opt (c6x_sdata): Terminate Enum description with
22513 a colon.
22514 * config/i386/i386.opt (prefer_vector_width, instrument_return):
22515 Likewise.
22516 * config/rx/rx.opt (nofpu): Remove trailing spaces from description
22517 text.
22518
22519 PR rtl-optimization/89634
22520 * cfgcleanup.c (thread_jump): Punt if registers mentioned in cond1
22521 are modified in BB_END (e->src) instruction.
22522
22523 2019-03-08 David Malcolm <dmalcolm@redhat.com>
22524
22525 PR target/79926
22526 * config/i386/i386.c (ix86_set_current_function): Make "sorry"
22527 messages more amenable to translation, and improve wording.
22528
22529 2019-03-08 Bill Schmidt <wschmidt@linux.ibm.com>
22530
22531 * config/rs6000/rs6000-p8swap.c (rs6000_analyze_swaps): Rebuild
22532 ud- and du-chains between phases.
22533
22534 2019-03-08 Richard Sandiford <richard.sandiford@arm.com>
22535
22536 PR debug/89631
22537 * dwarf2cfi.c (dwarf2out_frame_debug_expr): Use CONST_POLY_INT
22538 instead of POLY_INT_CST.
22539
22540 2019-03-08 Andre Vieira <andre.simoesdiasvieira@arm.com>
22541
22542 * config/arm/arm.h (TARGET_FP16_TO_DOUBLE): Add TARGET_VFP_DOUBLE
22543 requirement.
22544
22545 2019-03-08 Uroš Bizjak <ubizjak@gmail.com>
22546
22547 PR target/68924
22548 PR target/78782
22549 PR target/87558
22550 * config/i386/emmintrin.h (_mm_loadu_si64): New intrinsic.
22551 (_mm_storeu_si64): Ditto.
22552
22553 2019-03-08 Martin Liska <mliska@suse.cz>
22554
22555 PR target/86952
22556 * config/i386/i386.c (ix86_option_override_internal): Disable
22557 jump tables when retpolines are used.
22558
22559 2019-03-08 Jan Hubicka <hubicka@ucw.cz>
22560
22561 PR go/63560
22562 * ipa-split.c (execute_split_functions): Do not split
22563 'noinline' or 'section' function.
22564
22565 2019-03-08 Jakub Jelinek <jakub@redhat.com>
22566
22567 PR target/79846
22568 * config/s390/s390.c (s390_const_operand_ok): Use %wu instead of
22569 HOST_WIDE_INT_PRINT_UNSIGNED and %wd instead of
22570 HOST_WIDE_INT_PRINT_DEC. Formatting fixes.
22571
22572 PR ipa/80000
22573 * ipa-devirt.c (compare_virtual_tables): Remove two trailing spaces
22574 from diagnostics. Formatting fixes.
22575
22576 PR target/85665
22577 * ipa-devirt.c (odr_types_equivalent_p): Fix grammar in
22578 warn_odr diagnostics.
22579
22580 PR other/80058
22581 * lra-constraints.c (process_alt_operands): Avoid one space before
22582 " at the end of line and another after " on another line in a string
22583 literal.
22584 * attribs.c (handle_dll_attribute): Likewise.
22585 * config/avr/avr-devices.c (avr_texinfo): Likewise.
22586
22587 * gimple-ssa-warn-alloca.c (pass_walloca::execute): Don't wrap
22588 warning_at or inform messages in G_() if there is no ?:.
22589
22590 PR tree-optimization/89550
22591 * builtins.c (c_strlen): Only set TREE_NO_WARNING if warning_at
22592 returned true. Formatting fixes.
22593 (expand_builtin_strnlen): Formatting fixes.
22594 * tree-vrp.c (vrp_prop::check_mem_ref): Only set TREE_NO_WARNING
22595 if warning_at returned true.
22596 * tree-cfg.c (pass_warn_function_return::execute): Likewise.
22597
22598 2019-03-08 Richard Biener <rguenther@suse.de>
22599
22600 PR middle-end/89578
22601 * cfgloop.h (struct loop): Add owned_clique field.
22602 * cfgloopmanip.c (copy_loop_info): Copy it.
22603 * tree-cfg.c (gimple_duplicate_bb): Do not remap owned_clique
22604 cliques.
22605 * tree-inline.c (copy_loops): Remap owned_clique.
22606 * lto-streamer-in.c (input_cfg): Stream owned_clique.
22607 * lto-streamer-out.c (output_cfg): Likewise.
22608
22609 2019-03-08 Jakub Jelinek <jakub@redhat.com>
22610
22611 PR target/80190
22612 * config/darwin.c: Include intl.h.
22613 (darwin_build_constant_cfstring): Improve i18n of diagnostics by not
22614 composing the message out of two separate parts.
22615
22616 2019-03-07 Jakub Jelinek <jakub@redhat.com>
22617
22618 PR target/80003
22619 * config/i386/i386.c (ix86_set_func_type): Make sure diagnostics
22620 doesn't start with a capital letter and doesn't end with a dot.
22621 (ix86_function_arg_boundary): Make sure diagnostics doesn't start
22622 with a capital letter.
22623 (ix86_mangle_function_version_assembler_name): Likewise.
22624 (ix86_generate_version_dispatcher_body): Likewise.
22625 (fold_builtin_cpu): Likewise.
22626 (get_builtin_code_for_version): Likewise. Remove extraneous space.
22627 (ix86_handle_interrupt_attribute): Make the diagnostics easier for
22628 translators, wrap full type name in %qs.
22629
22630 PR translation/79999
22631 * gimplify.c (gimplify_omp_ordered): Reword diagnostics to talk about
22632 depend clause with source (or sink) modifier.
22633 * omp-expand.c (expand_omp_ordered_sink): Likewise.
22634
22635 PR target/89602
22636 * config/i386/sse.md (avx512f_mov<ssescalarmodelower>_mask,
22637 *avx512f_load<mode>_mask, avx512f_store<mode>_mask): New define_insns.
22638 (avx512f_load<mode>_mask): New define_expand.
22639 * config/i386/i386-builtin.def (__builtin_ia32_loadsd_mask,
22640 __builtin_ia32_loadss_mask, __builtin_ia32_storesd_mask,
22641 __builtin_ia32_storess_mask, __builtin_ia32_movesd_mask,
22642 __builtin_ia32_movess_mask): New builtins.
22643 * config/i386/avx512fintrin.h (_mm_mask_load_ss, _mm_maskz_load_ss,
22644 _mm_mask_load_sd, _mm_maskz_load_sd, _mm_mask_move_ss,
22645 _mm_maskz_move_ss, _mm_mask_move_sd, _mm_maskz_move_sd,
22646 _mm_mask_store_ss, _mm_mask_store_sd): New intrinsics.
22647
22648 2019-03-07 Martin Jambor <mjambor@suse.cz>
22649
22650 PR lto/87525
22651 * ipa-cp.c (perform_estimation_of_a_value): Account zero time benefit
22652 for extern inline functions.
22653
22654 2019-03-07 Martin Jambor <mjambor@suse.cz>
22655
22656 PR ipa/88235
22657 * cgraph.h (cgraph_node): New inline method former_thunk_p.
22658 * cgraph.c (cgraph_node::dump): Dump a note if node is a former thunk.
22659 (clone_of_p): Treat expanded thunks like thunks, be optimistic if they
22660 have multiple callees. At the end check if declarations match as
22661 opposed to cgraph_nodes.
22662
22663 2019-03-07 Martin Liska <mliska@suse.cz>
22664
22665 * cgraph.c (cgraph_node::verify_node): Verify with a neighbour
22666 which is equivalent to searching for this in clones chain.
22667 * symtab.c (symtab_node::verify_base): Similarly compare ASM
22668 names with a neighbour and special case first node in a chain.
22669
22670 2019-01-25 Jason Merrill <jason@redhat.com>
22671
22672 PR c++/80916 - spurious "static but not defined" warning.
22673 * gimple-fold.c (can_refer_decl_in_current_unit_p): Return false
22674 for an internal symbol with DECL_EXTERNAL.
22675
22676 2019-04-07 Richard Biener <rguenther@suse.de>
22677
22678 PR middle-end/89618
22679 * cfgloopmanip.c (copy_loop_info): Copy forgotten fields.
22680 * tree-inline.c (copy_loops): Simplify.
22681
22682 2019-03-07 Martin Liska <mliska@suse.cz>
22683
22684 * dwarf2out.c (add_AT_vms_delta): Revert function removal.
22685
22686 2019-03-07 Richard Biener <rguenther@suse.de>
22687
22688 PR tree-optimization/89595
22689 * tree-ssa-dom.c (dom_opt_dom_walker::optimize_stmt): Take
22690 stmt iterator as reference, take boolean output parameter to
22691 indicate whether the stmt was removed and thus the iterator
22692 already advanced.
22693 (dom_opt_dom_walker::before_dom_children): Re-iterate over
22694 stmts created by folding.
22695
22696 2019-03-07 Jakub Jelinek <jakub@redhat.com>
22697
22698 PR c++/89585
22699 * doc/extend.texi (Basic Asm): Document qualifiers are not allowed
22700 at toplevel.
22701
22702 2019-03-06 Peter Bergner <bergner@linux.ibm.com>
22703
22704 PR rtl-optimization/88845
22705 * config/rs6000/rs6000.c (rs6000_emit_move_si_sf_subreg): Enable during
22706 LRA.
22707 * lra.c (remove_scratches_1): New function.
22708 (remove_scratches): Use it.
22709 (lra_emit_move): Likewise.
22710
22711 2019-03-06 Claudiu Zissulescu <claziss@synopsys.com>
22712
22713 * config/arc/arc-c.def (__ARC_UNALIGNED__): Set it on
22714 unaligned_access variable.
22715 * config/arc/arc.c (arc_override_options): Set unaligned access
22716 default on for HS CPUs.
22717 * config/arc/arc.h (STRICT_ALIGNMENT): Fix logic.
22718
22719 2019-03-06 Martin Liska <mliska@suse.cz>
22720
22721 PR gcov-profile/89577
22722 * doc/gcov.texi: Prefer to use --coverage.
22723 * doc/sourcebuild.texi: Likewise.
22724
22725 2019-03-02 Jason Merrill <jason@redhat.com>
22726
22727 PR c++/86485 - -Wmaybe-unused with empty class ?:
22728 * gimplify.c (gimplify_cond_expr): Use INIT_EXPR.
22729
22730 2019-03-05 Jakub Jelinek <jakub@redhat.com>
22731
22732 PR target/89587
22733 * config/rs6000/t-linux (MULTIARCH_DIRNAME): Set to non-empty only
22734 if_multiarch.
22735
22736 PR middle-end/89590
22737 * builtins.c (maybe_emit_free_warning): Punt if free doesn't have
22738 exactly one argument.
22739
22740 2019-03-05 Jakub Jelinek <jakub@redhat.com>
22741 Richard Sandiford <richard.sandiford@arm.com>
22742
22743 PR tree-optimization/89570
22744 * match.pd (vec_cond into cond_op simplification): Don't use
22745 get_conditional_internal_fn, use as_internal_fn (cond_op).
22746
22747 2019-03-05 Wilco Dijkstra <wdijkstr@arm.com>
22748
22749 PR target/89222
22750 * config/arm/arm.md (movsi): Use targetm.cannot_force_const_mem
22751 to decide when to split off a non-zero offset from a symbol.
22752 * config/arm/arm.c (arm_cannot_force_const_mem): Disallow offsets
22753 in function symbols.
22754
22755 2019-03-05 Richard Biener <rguenther@suse.de>
22756
22757 PR tree-optimization/89594
22758 * tree-if-conv.c (pass_if_conversion::execute): Handle
22759 case where .LOOP_VECTORIZED_FUNCTION was removed.
22760
22761 2019-03-05 Jakub Jelinek <jakub@redhat.com>
22762
22763 PR bootstrap/89560
22764 * fold-const.c (fold_checksum_tree): Don't use fixed size buffer,
22765 instead alloca it only when needed with the needed size.
22766
22767 PR tree-optimization/89570
22768 * match.pd (vec_cond into cond_op simplification): Guard with
22769 vectorized_internal_fn_supported_p test and #if GIMPLE.
22770
22771 PR tree-optimization/89566
22772 * gimple-ssa-sprintf.c (sprintf_dom_walker::handle_gimple_call):
22773 Set info.fncode to BUILT_IN_NONE if gimple_call_builtin_p failed.
22774 Punt if get_user_idx_format succeeds, but idx_format argument is
22775 not provided or doesn't have pointer type, or if idx_args is above
22776 number of provided arguments.
22777
22778 2019-03-04 Wilco Dijkstra <wdijkstr@arm.com>
22779
22780 PR tree-optimization/89437
22781 * match.pd: Use lt in sin(atan(x)) and cos(atan(x)) simplifications.
22782
22783 2019-03-04 Richard Biener <rguenther@suse.de>
22784
22785 PR middle-end/89572
22786 * tree-scalar-evolution.c: (get_loop_exit_condition): Use
22787 safe_dyn_cast.
22788
22789 2019-03-04 Bin Cheng <bin.cheng@linux.alibaba.com>
22790
22791 PR tree-optimization/89487
22792 * tree-loop-distribution.c (has_nonaddressable_dataref_p): New.
22793 (create_rdg_vertices): Compute has_nonaddressable_dataref_p.
22794 (distribute_loop): Don't do runtime alias check if there is non-
22795 addressable data reference.
22796 * tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): Check if VAR_DECL
22797 is a register variable.
22798
22799 2019-03-02 Jakub Jelinek <jakub@redhat.com>
22800
22801 PR target/89506
22802 * config/arm/arm.md (cmpsi2_addneg): Use
22803 trunc_int_for_mode (-INTVAL (...), SImode) instead of -INTVAL (...).
22804 If operands[2] is 0 or INT_MIN, force use of subs.
22805 (*compare_scc splitter): Use gen_int_mode.
22806 (*negscc): Likewise.
22807 * config/arm/thumb2.md (*thumb2_negscc): Likewise.
22808
22809 2019-03-01 Kito Cheng <kito.cheng@gmail.com>
22810 Monk Chiang <sh.chiang04@gmail.com>
22811
22812 * common/config/riscv/riscv-common.c: Include sstream.
22813 (riscv_subset_list::to_string): New.
22814 (riscv_arch_str): Likewise.
22815 * config.gcc (riscv*-*-*): Handle --with-riscv-attribute=
22816 * config.in: Regen.
22817 * config/riscv/riscv-protos.h (riscv_arch_str): New.
22818 * config/riscv/riscv.c (INCLUDE_STRING): Defined.
22819 (riscv_emit_attribute): New.
22820 (riscv_file_start): Emit attribute if needed.
22821 (riscv_option_override): Init riscv_emit_attribute_p.
22822 * config/riscv/riscv.opt (mriscv-attribute): New option.
22823 * configure.ac (riscv*-*-*): Check binutils is supporting ELF
22824 * configure: Regen.
22825 * doc/install.texi: Document --with-riscv-attribute.
22826 * doc/invoke.texi: Document -mriscv-attribute.
22827
22828 * common/config/riscv/riscv-common.c:
22829 Include config/riscv/riscv-protos.h.
22830 (INCLUDE_STRING): Defined.
22831 (RISCV_DONT_CARE_VERSION): Defined.
22832 (riscv_subset_t): Declare.
22833 (riscv_subset_t::riscv_subset_t): New.
22834 (riscv_subset_list): Declare.
22835 (riscv_subset_list::riscv_subset_list): New.
22836 (riscv_subset_list::~riscv_subset_list): Likewise.
22837 (riscv_subset_list::parsing_subset_version): Likewise.
22838 (riscv_subset_list::parse_std_ext): Likewise.
22839 (riscv_subset_list::parse_sv_or_non_std_ext): Likewise.
22840 (riscv_subset_list::add): Likewise.
22841 (riscv_subset_list::lookup): Likewise.
22842 (riscv_subset_list::xlen): Likewise.
22843 (riscv_subset_list::parse): Likewise.
22844 (riscv_supported_std_ext): Likewise.
22845 (current_subset_list): Likewise.
22846 (riscv_parse_arch_string): Using riscv_subset_list::parse to
22847 parse.
22848
22849 2019-03-01 Segher Boessenkool <segher@kernel.crashing.org>
22850
22851 * config/rs6000/rs6000.c (rs6000_option_override_internal): If
22852 rs6000_dejagnu_cpu_index is set, use that to override rs6000_cpu_index.
22853 * config/rs6000/rs6000.opt (mdejagnu-cpu=): New option.
22854
22855 2019-03-01 Alexander Monakov <amonakov@ispras.ru>
22856
22857 PR rtl-optimization/85899
22858 * haifa-sched.c (find_fallthru_edge_from): Relax assert to account for
22859 fallthru edges leading to the exit block.
22860
22861 2019-03-01 Tamar Christina <tamar.christina@arm.com>
22862
22863 PR target/89517
22864 * config/aarch64/aarch64-option-extensions.def (fp, simd, crypto, fp16,
22865 rdma, dotprod, sha2, sha3, sm4, fp16fml, sve): Collapse line.
22866
22867 2019-03-01 Richard Sandiford <richard.sandiford@arm.com>
22868
22869 PR tree-optimization/89535
22870 * tree-vect-stmts.c (vectorizable_call): Record the vector types
22871 for each operand. Calculate the fallback choice for mask operands
22872 and pass it to vect_get_vec_def_for_operand.
22873
22874 2019-03-01 Richard Biener <rguenther@suse.de>
22875
22876 PR middle-end/89541
22877 * tree-ssa-operands.c (add_stmt_operand): CONST_DECL may
22878 get virtual operands.
22879 (get_expr_operands): Handle CONST_DECL like other decls.
22880
22881 2019-03-01 Jakub Jelinek <jakub@redhat.com>
22882
22883 PR middle-end/89503
22884 * fold-const.c (fold_checksum_tree): Ignore TREE_NO_WARNING bit
22885 on DECL_P and EXPR_P.
22886
22887 2019-03-01 Richard Biener <rguenther@suse.de>
22888
22889 PR middle-end/89497
22890 * tree-cfgcleanup.h (cleanup_tree_cfg): Add SSA update flags
22891 argument, defaulted to zero.
22892 * passes.c (execute_function_todo): Pass down SSA update flags
22893 to cleanup_tree_cfg.
22894 * tree-cfgcleanup.c: Include tree-into-ssa.h and tree-cfgcleanup.h.
22895 (cleanup_tree_cfg_noloop): After cleanup_control_flow_pre update SSA
22896 form if requested.
22897 (cleanup_tree_cfg): Get and pass down SSA update flags.
22898
22899 2019-03-01 Jakub Jelinek <jakub@redhat.com>
22900
22901 PR bootstrap/89539
22902 * dwarf2out.c (output_comdat_type_unit): Add ATTRIBUTE_UNUSED to
22903 early_lto_debug argument.
22904
22905 2019-02-28 Eric Botcazou <ebotcazou@adacore.com>
22906
22907 PR tree-optimization/89536
22908 * tree-ssa-dom.c (edge_info::derive_equivalences) <BIT_NOT_EXPR>: Test
22909 only whether bit #0 of the value is 0 instead of the entire value.
22910
22911 2019-02-28 Marek Polacek <polacek@redhat.com>
22912
22913 PR c++/87068 - missing diagnostic with fallthrough statement.
22914 * gimplify.c (expand_FALLTHROUGH_r): If IFN_FALLTHROUGH was found
22915 at the end of a seq, save its location to walk_stmt_info.
22916 (expand_FALLTHROUGH): Warn if IFN_FALLTHROUGH is at the end of
22917 a switch.
22918
22919 2019-02-28 Jan Hubicka <hubicka@ucw.cz>
22920
22921 PR lto/88585
22922 * tree.c (find_atomic_core_type): Move ahead in file.
22923 (check_base_type): Correctly compare alignments of atomic types.
22924
22925 2019-02-28 H.J. Lu <hongjiu.lu@intel.com>
22926
22927 PR target/89455
22928 * config/i386/i386.c (get_builtin_code_for_version): Identify
22929 Westmere from PCLMUL, instead of AES.
22930
22931 2019-02-28 Jakub Jelinek <jakub@redhat.com>
22932
22933 PR target/89434
22934 * config/arm/arm.md (*subsi3_carryin_compare_const): Use
22935 trunc_int_for_mode (-INTVAL (...), SImode), just instead of
22936 -UINTVAL (...).
22937
22938 2019-02-28 Tamar Christina <tamar.christina@arm.com>
22939
22940 PR target/88530
22941 * config/aarch64/aarch64-option-extensions.def: Document it.
22942 * config/aarch64/driver-aarch64.c (host_detect_local_cpu): Skip feature
22943 if empty hwcaps.
22944
22945 2019-02-28 Jakub Jelinek <jakub@redhat.com>
22946
22947 PR c/89520
22948 * convert.c (convert_to_real_1, convert_to_integer_1): Punt for
22949 builtins if they don't have a single scalar floating point argument.
22950 Formatting fixes.
22951
22952 2019-02-27 Bernd Edlinger <bernd.edlinger@hotmail.de>
22953
22954 PR rtl-optimization/89490
22955 * varasm.c (get_block_for_section): Bail out for mergeable sections.
22956 (default_use_anchors_for_symbol_p, output_object_block): Assert the
22957 block section is not mergeable.
22958
22959 2019-02-27 Jakub Jelinek <jakub@redhat.com>
22960
22961 PR target/70341
22962 * config/arm/arm.md (arm_casesi_internal): New define_expand. Rename
22963 old define_insn to ...
22964 (*arm_casesi_internal): ... this. Add mode to LABEL_REFs.
22965 * config/arm/thumb2.md (thumb2_casesi_internal): New define_expand.
22966 Rename old define_insn to ...
22967 (*thumb2_casesi_internal): ... this. Add mode to LABEL_REFs.
22968 (thumb2_casesi_internal_pic): New define_expand. Rename old
22969 define_insn to ...
22970 (*thumb2_casesi_internal_pic): ... this. Add mode to LABEL_REFs.
22971 * config/aarch64/aarch64.md (casesi): Create the casesi_dispatch
22972 MEM manually here, set MEM_READONLY_P and MEM_NOTRAP_P on it.
22973
22974 2019-02-27 Richard Biener <rguenther@suse.de>
22975
22976 PR debug/88878
22977 * dwarf2out.c (use_debug_types): Disable when in_lto_p.
22978
22979 2019-02-27 Richard Biener <rguenther@suse.de>
22980
22981 * passes.c (should_skip_pass_p): Do not skip cgraph-edge
22982 building.
22983
22984 2019-02-27 Richard Biener <rguenther@suse.de>
22985
22986 PR debug/88878
22987 * dwarf2out.c (output_comdat_type_unit): Add early_lto_debug
22988 parameter, prefix section name with .gnu.debuglto_ if true.
22989 (dwarf2out_finish): Pass false to output_comdat_type_unit.
22990 (dwarf2out_early_finish): Pass true to output_comdat_type_unit.
22991
22992 2019-02-27 Richard Biener <rguenther@suse.de>
22993
22994 PR debug/89514
22995 * dwarf2out.c (size_of_die): Key on AT_ref (a)->comdat_type_p
22996 rather than on use_debug_types, doing what output_die does.
22997 (value_format): Likewise.
22998
22999 2019-02-27 Martin Jambor <mjambor@suse.cz>
23000 Martin Sebor <msebor@redhat.com>
23001
23002 * doc/invoke.texi (Warning Options): Reword description of
23003 -Wno-absolute-value.
23004
23005 2019-02-27 Jakub Jelinek <jakub@redhat.com>
23006
23007 PR tree-optimization/89280
23008 * tree-cfgcleanup.c (maybe_dead_abnormal_edge_p,
23009 builtin_setjmp_setup_bb): New functions.
23010 (cleanup_control_flow_pre): Ignore maybe_dead_abnormal_edge_p edges.
23011 When visiting __builtin_setjmp_setup block, queue in special
23012 setjmp_vec vector edges from .ABNORMAL_DISPATCHER to corresponding
23013 __builtin_setjmp_receiver. Remove .ABNORMAL_DISPATCHER basic blocks
23014 from visited after the loop if they don't have any visited successor
23015 blocks.
23016
23017 2018-02-26 Steve Ellcey <sellcey@marvell.com>
23018
23019 * config/aarch64/aarch64.c (aarch64_get_multilib_abi_name):
23020 New function.
23021 (TARGET_GET_MULTILIB_ABI_NAME): New macro.
23022
23023 2019-02-26 Jakub Jelinek <jakub@redhat.com>
23024
23025 PR c++/89507
23026 * tree.c (valid_constant_size_p): Deal with size INTEGER_CSTs
23027 with types other than sizetype/ssizetype.
23028
23029 2019-02-26 Eric Botcazou <ebotcazou@adacore.com>
23030
23031 * config/sparc/sparc-opts.h (enum processor_type): Rename to...
23032 (enum sparc_processor_type): ...this.
23033 (enum sparc_code_model_type): New enumeration type.
23034 (enum sparc_memory_model_type): Tweak comments.
23035 * config/sparc/sparc.opt (mcpu): Adjust to above renaming.
23036 (mtune): Likewise.
23037 (mcmodel): Use sparc_code_model enumeration and variable.
23038 (sparc_code_model): New enumeration.
23039 (mdebug): Add Undocumented marker.
23040 * config/sparc/sparc.h (enum cmodel): Delete.
23041 (sparc_cmodel): Likewise.
23042 (TARGET_CM_MEDLOW): Adjust to above renaming.
23043 (TARGET_CM_MEDMID): Likewise.
23044 (TARGET_CM_MEDANY): Likewise.
23045 (TARGET_CM_EMBMEDANY): Likewise.
23046 * config/sparc/sparc.c (sparc_cmodel): Delete.
23047 (sparc_option_override): Remove string/value mapping support for the
23048 code model. Move code and memory model support to after the handling
23049 of target flags. Do private machine setup last.
23050 (sparc_emit_set_symbolic_const64): Use sparc_code_model.
23051 (sparc_legitimize_reload_address): Likewise.
23052 (sparc_output_mi_thunk): Likewise.
23053 * config/sparc/sparc.md (cpu): Adjust comment to above renaming.
23054
23055 2019-02-26 Jakub Jelinek <jakub@redhat.com>
23056
23057 PR tree-optimization/89500
23058 * tree-ssa-strlen.c (stridx_strlenloc): Adjust comment.
23059 (handle_builtin_strlen): Remove noncst_bound variable. Always
23060 optimize strnlen (x, 0) to 0. Optimize strnlen (x, cst) to
23061 cst if the first cst bytes starting at x are known to be non-zero,
23062 even if the string is not zero terminated. Don't try to modify
23063 *si for strnlen. Update strlen_to_stridx only for strlen or if
23064 we can prove strnlen returns the same value as strlen would.
23065
23066 2019-02-26 Martin Liska <mliska@suse.cz>
23067
23068 * alloc-pool.h (struct pool_usage): Remove extra
23069 print_dash_line.
23070 * bitmap.h (struct bitmap_usage): Likewise.
23071 * ggc-common.c (struct ggc_usage): Likewise.
23072 * mem-stats.h (struct mem_usage): Likewise.
23073 (mem_alloc_description::dump): Print dash lines
23074 here and repeat header at the end of a table report.
23075 It's then more readable.
23076 * tree-phinodes.c (phinodes_print_statistics): Make
23077 horizontal alignment.
23078 * tree-ssanames.c (ssanames_print_statistics): Likewise.
23079 * vec.c (struct vec_usage): Remove extra print_dash_line.
23080 * vec.h (vec_safe_grow_cleared): Pass PASS_MEM_STAT.
23081
23082 2019-02-26 Uroš Bizjak <ubizjak@gmail.com>
23083
23084 * doc/extend.texi (__builtin_object_size):
23085 Use @pxref instead of @xref inside parenthesis.
23086 (__builtin_has_attribute): Add missing comma after @xref.
23087 (__builtin_object_size): Ditto.
23088 * doc/md.texi (cond_*{mode}): Use @samp instead of @var around op1[i].
23089
23090 2019-02-26 Jeff Law <law@redhat.com>
23091
23092 PR rtl-optimization/87761
23093 * regcprop.c (copyprop_hardreg_forward_1): Use REG_UNUSED notes to
23094 detect obviously dead insns and delete them.
23095
23096 2019-02-26 Richard Biener <rguenther@suse.de>
23097
23098 PR tree-optimization/89505
23099 * tree-ssa-structalias.c (compute_dependence_clique): Make sure
23100 to handle restrict pointed-to vars with multiple subvars
23101 correctly.
23102
23103 2019-02-26 Richard Biener <rguenther@suse.de>
23104
23105 PR tree-optimization/89489
23106 * tree-parloops.c (create_loop_fn): Copy over last_clique.
23107
23108 2019-02-26 Eric Botcazou <ebotcazou@adacore.com>
23109
23110 * tree-ssa-dom.c (edge_info::derive_equivalences) <BIT_IOR_EXPR>: Fix
23111 and move around comment.
23112 <BIT_AND_EXPR>: Likewise.
23113 <BIT_NOT_EXPR>: Add specific handling for boolean types.
23114
23115 2019-02-26 Jakub Jelinek <jakub@redhat.com>
23116
23117 PR target/89474
23118 * config/i386/i386.c (remove_partial_avx_dependency): Call
23119 df_analyze etc. before creation of the v4sf_const0 pseudo, rather than
23120 after changing possibly many instructions to use that pseudo. Fix up
23121 insertion of v4sf_const0 setter at the start of bb.
23122
23123 2019-02-25 Sandra Loosemore <sandra@codesourcery.com>
23124
23125 PR c/80409
23126 * doc/extend.texi (Variadic Pointer Args): New section.
23127
23128 2019-02-25 Sandra Loosemore <sandra@codesourcery.com>
23129 Martin Sebor <msebor@gmail.com>
23130
23131 * common.opt (Wattribute-alias): Likewise.
23132 * doc/invoke.texi (Option Summary): List general form of
23133 -Wattribute-alias=. List positive form of -Wmissing-attributes.
23134 (-Wmissing-attributes): Invert entry, rewrite and correct default.
23135 Add cross-references.
23136 (-Wattribute-alias): Rewrite and correct default. Mention
23137 considered attributes (same as for -Wmissing-attributes).
23138
23139 2019-02-25 Paul A. Clarke <pc@us.ibm.com>
23140
23141 * config/rs6000/emmintrin.h (_mm_cvtpd_epi32): Fix big endian.
23142 (_mm_cvtpd_ps): Likewise.
23143 (_mm_cvttpd_epi32): Likewise.
23144
23145 PR target/89338
23146 * config/rs6000/xmmintrin.h (_mm_cvtss_f32): Fix type mismatch.
23147 (_mm_cvt_ss2si): Fix type mismatch and 32-bit.
23148
23149 PR target/89339
23150 * config/rs6000/xmmintrin.h (_mm_movemask_pi8): Fix 32-bit.
23151
23152 2019-02-25 Tamar Christina <tamar.christina@arm.com>
23153
23154 PR target/88530
23155 * common/config/aarch64/aarch64-common.c
23156 (struct aarch64_option_extension): Add is_synthetic.
23157 (all_extensions): Use it.
23158 (TARGET_OPTION_INIT_STRUCT): Define hook.
23159 (struct gcc_targetm_common): Moved to end.
23160 (all_extensions_by_on): New.
23161 (opt_ext_cmp, typedef opt_ext): New.
23162 (aarch64_option_init_struct): New.
23163 (aarch64_contains_opt): New.
23164 (aarch64_get_extension_string_for_isa_flags): Output smallest set.
23165 * config/aarch64/aarch64-option-extensions.def
23166 (AARCH64_OPT_EXTENSION): Explicitly include AES and SHA2 in crypto.
23167 (fp, simd, crc, lse, fp16, rcpc, rdma, dotprod, aes, sha2, sha3,
23168 sm4, fp16fml, sve, profile, rng, memtag, sb, ssbs, predres):
23169 Set is_synthetic to false.
23170 (crypto): Set is_synthetic to true.
23171 * config/aarch64/driver-aarch64.c (AARCH64_OPT_EXTENSION): Add
23172 SYNTHETIC.
23173
23174 2019-02-25 Tamar Christina <tamar.christina@arm.com>
23175
23176 * config/arm/arm_neon.h (vfmlal_low_u32, vfmlsl_low_u32,
23177 vfmlal_high_u32, vfmlsl_high_u32, vfmlalq_low_u32, vfmlslq_low_u32,
23178 vfmlalq_high_u32, vfmlslq_high_u32, vfmlal_lane_low_u32,
23179 vfmlal_lane_high_u32, vfmlalq_laneq_low_u32, vfmlalq_lane_low_u32,
23180 vfmlal_laneq_low_u32, vfmlalq_laneq_high_u32, vfmlalq_lane_high_u32,
23181 vfmlal_laneq_high_u32, vfmlsl_lane_low_u32, vfmlsl_lane_high_u32,
23182 vfmlslq_laneq_low_u32, vfmlslq_lane_low_u32, vfmlsl_laneq_low_u32,
23183 vfmlslq_laneq_high_u32, vfmlslq_lane_high_u32, vfmlsl_laneq_high_u32):
23184 Rename ...
23185 (vfmlal_low_f16, vfmlsl_low_f16, vfmlal_high_f16, vfmlsl_high_f16,
23186 vfmlalq_low_f16, vfmlslq_low_f16, vfmlalq_high_f16, vfmlslq_high_f16,
23187 vfmlal_lane_low_f16, vfmlal_lane_high_f16, vfmlalq_laneq_low_f16,
23188 vfmlalq_lane_low_f16, vfmlal_laneq_low_f16, vfmlalq_laneq_high_f16,
23189 vfmlalq_lane_high_f16, vfmlal_laneq_high_f16, vfmlsl_lane_low_f16,
23190 vfmlsl_lane_high_f16, vfmlslq_laneq_low_f16, vfmlslq_lane_low_f16,
23191 vfmlsl_laneq_low_f16, vfmlslq_laneq_high_f16, vfmlslq_lane_high_f16,
23192 vfmlsl_laneq_high_f16): ... To this.
23193 * config/arm/neon.md: Update comments.
23194
23195 2019-02-25 Tamar Christina <tamar.christina@arm.com>
23196
23197 * config/aarch64/arm_neon.h (vfmlal_low_u32, vfmlsl_low_u32,
23198 vfmlalq_low_u32, vfmlslq_low_u32, vfmlal_high_u32, vfmlsl_high_u32,
23199 vfmlalq_high_u32, vfmlslq_high_u32, vfmlal_lane_low_u32,
23200 vfmlsl_lane_low_u32, vfmlal_laneq_low_u32, vfmlsl_laneq_low_u32,
23201 vfmlalq_lane_low_u32, vfmlslq_lane_low_u32, vfmlalq_laneq_low_u32,
23202 vfmlslq_laneq_low_u32, vfmlal_lane_high_u32, vfmlsl_lane_high_u32,
23203 vfmlal_laneq_high_u32, vfmlsl_laneq_high_u32, vfmlalq_lane_high_u32,
23204 vfmlslq_lane_high_u32, vfmlalq_laneq_high_u32, vfmlslq_laneq_high_u32):
23205 Rename ...
23206 (vfmlal_low_f16, vfmlsl_low_f16, vfmlalq_low_f16, vfmlslq_low_f16,
23207 vfmlal_high_f16, vfmlsl_high_f16, vfmlalq_high_f16, vfmlslq_high_f16,
23208 vfmlal_lane_low_f16, vfmlsl_lane_low_f16, vfmlal_laneq_low_f16,
23209 vfmlsl_laneq_low_f16, vfmlalq_lane_low_f16, vfmlslq_lane_low_f16,
23210 vfmlalq_laneq_low_f16, vfmlslq_laneq_low_f16, vfmlal_lane_high_f16,
23211 vfmlsl_lane_high_f16, vfmlal_laneq_high_f16, vfmlsl_laneq_high_f16,
23212 vfmlalq_lane_high_f16, vfmlslq_lane_high_f16, vfmlalq_laneq_high_f16,
23213 vfmlslq_laneq_high_f16): ... To this.
23214
23215 2019-02-25 Alexander Monakov <amonakov@ispras.ru>
23216
23217 PR rtl-optimization/86096
23218 * df-scan.c (df_mw_compare): Do not check mw_reg fields when
23219 comparing mw_order values.
23220
23221 2019-02-25 Jakub Jelinek <jakub@redhat.com>
23222
23223 PR target/89434
23224 * config/arm/arm.md (*subsi3_carryin_const): Use
23225 arm_neg_immediate_operand predicate instead of
23226 arm_not_immediate_operand, "L" constraint instead of "K" and
23227 print it using %n2 instead of %B2.
23228 (*subsi3_carryin_const0): New define_insn.
23229 (*subsi3_carryin_compare_const): Use const_int_I_operand predicate
23230 instead of arm_not_operand and "I" constraint instead of "K" and
23231 print it using %n3 instead of %B2. Instead of using match_dup 2 add
23232 another match_operand and in the condition check that it is negation
23233 of operands[2].
23234 (*subsi3_carryin_compare_const0): New define_ins.
23235 (*subdi_di_zesidi): Adjust to use *subsi3_carryin_const0 instead of
23236 *subsi3_carryin_const.
23237 (*arm_cmpdi_insn): Fix splitting into *subsi3_carryin_compare_const,
23238 split into *subsi3_carryin_compare_const0 if the highpart is zero.
23239
23240 PR target/89438
23241 * config/arm.vfp.md (*negdf2_vfp): Use
23242 gen_int_mode (0x80000000, SImode) instead of GEN_INT (0x80000000).
23243 * config/arm/neon.md (neon_copysignf<mode>): Likewise.
23244
23245 2019-02-24 Jakub Jelinek <jakub@redhat.com>
23246
23247 PR rtl-optimization/89445
23248 * simplify-rtx.c (simplify_ternary_operation): Don't use
23249 simplify_merge_mask on operands that may trap.
23250 * rtlanal.c (may_trap_p_1): Use FLOAT_MODE_P instead of
23251 SCALAR_FLOAT_MODE_P checks. For integral division by zero, if
23252 second operand is CONST_VECTOR, check if any element could be zero.
23253 Don't expect traps for VEC_{MERGE,SELECT,CONCAT,DUPLICATE} unless
23254 their operands can trap.
23255
23256 2019-02-23 Martin Sebor <msebor@redhat.com>
23257
23258 * gimple-ssa-sprintf.c (target_strtol): Rename...
23259 (target_strtohwi): ...to this. Handle values up to HOST_WIDE_INT_MAX.
23260 (parse_directive): Adjust to name change. Use HOST_WIDE_INT_MAX to
23261 check for range error.
23262
23263 2019-02-23 H.J. Lu <hongjiu.lu@intel.com>
23264
23265 PR driver/69471
23266 * opts-common.c (prune_options): Also prune joined switches
23267 with Negative and RejectNegative.
23268 * config/i386/i386.opt (march=): Add Negative(march=).
23269 (mtune=): Add Negative(mtune=).
23270 * doc/options.texi: Document Negative used together with Joined
23271 and RejectNegative.
23272
23273 2019-02-22 Martin Sebor <msebor@redhat.com>
23274
23275 * doc/extend.texi (Other Builtins): Add
23276 __builtin_is_constant_evaluated.
23277
23278 2019-02-22 Richard Biener <rguenther@suse.de>
23279
23280 PR tree-optimization/87609
23281 * tree-cfg.c (gimple_duplicate_bb): Only remap inlined cliques.
23282
23283 2019-02-22 Jeff Law <law@redhat.com>
23284
23285 PR rtl-optimization/87761
23286 * config/mips/mips.md: Add new combiner pattern to recognize
23287 a bitfield extraction using (ashiftrt (truncate (ashift (...)))).
23288
23289 2019-02-22 Matthew Malcomson <matthew.malcomson@arm.com>
23290
23291 PR target/89324
23292 * config/aarch64/aarch64.md: Use aarch64_general_reg predicate on
23293 destination register in peepholes generating patterns for ADDS/SUBS.
23294 (add<mode>3_compare0,
23295 *addsi3_compare0_uxtw, add<mode>3_compareC,
23296 add<mode>3_compareV_imm, add<mode>3_compareV,
23297 *adds_<optab><ALLX:mode>_<GPI:mode>,
23298 *subs_<optab><ALLX:mode>_<GPI:mode>,
23299 *adds_<optab><ALLX:mode>_shift_<GPI:mode>,
23300 *subs_<optab><ALLX:mode>_shift_<GPI:mode>,
23301 *adds_<optab><mode>_multp2, *subs_<optab><mode>_multp2,
23302 *sub<mode>3_compare0, *subsi3_compare0_uxtw,
23303 sub<mode>3_compare1): Allow stack pointer for source register.
23304 * config/aarch64/predicates.md (aarch64_general_reg): New predicate.
23305
23306 2019-02-22 Martin Sebor <msebor@redhat.com>
23307
23308 PR tree-optimization/88993
23309 PR tree-optimization/88853
23310 * gimple-ssa-sprintf.c (sprintf_dom_walker::call_info::is_file_func):
23311 New helper.
23312 (sprintf_dom_walker::call_info::is_string_func): New helper.
23313 (format_directive): Only issue "may exceed" 4095/INT_MAX warnings
23314 for formatted string functions.
23315 (sprintf_dom_walker::handle_gimple_call): Fix a typo in a comment.
23316
23317 2019-02-22 Martin Sebor <msebor@redhat.com>
23318
23319 PR c/89425
23320 * c-parser.c (sizeof_ptr_memacc_comptypes): Avoid warning in
23321 unreachable subexpressions.
23322
23323 2019-02-22 H.J. Lu <hongjiu.lu@intel.com>
23324 Hongtao Liu <hongtao.liu@intel.com>
23325 Sunil K Pandey <sunil.k.pandey@intel.com>
23326
23327 PR target/87007
23328 * config/i386/i386-passes.def: Add
23329 pass_remove_partial_avx_dependency.
23330 * config/i386/i386-protos.h
23331 (make_pass_remove_partial_avx_dependency): New.
23332 * config/i386/i386.c (make_pass_remove_partial_avx_dependency):
23333 New function.
23334 (pass_data_remove_partial_avx_dependency): New.
23335 (pass_remove_partial_avx_dependency): Likewise.
23336 (make_pass_remove_partial_avx_dependency): Likewise.
23337 * config/i386/i386.md (avx_partial_xmm_update): New attribute.
23338 (*extendsfdf2): Add avx_partial_xmm_update.
23339 (truncdfsf2): Likewise.
23340 (*float<SWI48:mode><MODEF:mode>2): Likewise.
23341 (SF/DF conversion splitters): Disabled for TARGET_AVX.
23342
23343 2019-02-22 Aldy Hernandez <aldyh@redhat.com>
23344
23345 PR middle-end/85598
23346 * gimple-ssa-sprintf.c (pass_sprintf_length::execute): Enable loop
23347 analysis for pass.
23348
23349 2019-02-22 Thiago Macieira <thiago.macieira@intel.com>
23350
23351 PR target/89444
23352 * config/i386/i386.h (PTA_WESTMERE): Remove PTA_AES.
23353 (PTA_SKYLAKE): Add PTA_AES.
23354 (PTA_GOLDMONT): Likewise.
23355
23356 2019-02-22 Sudakshina Das <sudi.das@arm.com>
23357
23358 * config/aarch64/aarch64.c (aarch64_output_mi_thunk): Add bti
23359 instruction if enabled.
23360 (aarch64_override_options): Remove reference to return address key.
23361
23362 2019-02-22 Richard Biener <rguenther@suse.de>
23363
23364 PR tree-optimization/89440
23365 * tree-vect-loop.c (vect_create_epilog_for_reduction): Remove
23366 not necessary assert.
23367
23368 2019-02-22 Thomas Schwinge <thomas@codesourcery.com>
23369
23370 PR fortran/72741
23371 * omp-general.c (oacc_replace_fn_attrib): Mostly split out into...
23372 (oacc_replace_fn_attrib_attr): ... this new function.
23373 * omp-general.h (oacc_replace_fn_attrib_attr): New prototype.
23374 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims_1): Revert workaround.
23375
23376 2019-02-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23377
23378 * config/arm/arm-cpus.in (ares): Rename to...
23379 (neoverse-n1): ... This. Add ares as alias.
23380 * config/arm/arm-tables.opt: Regenerate.
23381 * config/arm/arm-tune.md: Likewise.
23382 * doc/invoke.txt (ARM Options): Document neoverse-n1.
23383
23384 2019-02-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23385
23386 * config/aarch64/aarch64-cores.def (neoverse-e1): Define.
23387 * config/aarch64/aarch64-tune.md: Regenerate.
23388 * doc/invoke.texi (AArch64 Options): Document neoverse-e1 -mcpu option.
23389
23390 2019-02-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23391
23392 * config/aarch64/aarch64.c (ares_tunings): Rename to...
23393 (neoversen1_tunings): ... This.
23394 * config/aarch64/aarch64-cores.def (ares): Change tuning to the above.
23395 (neoverse-n1): New CPU.
23396 * config/aarch64/aarch64-tune.md: Regenerate.
23397 * doc/invoke.txt (AArch64 Options): Document neoverse-n1.
23398
23399 2019-02-22 Richard Biener <rguenther@suse.de>
23400
23401 PR middle-end/87609
23402 * cfghooks.h (dependence_hash): New typedef.
23403 (struct copy_bb_data): New type.
23404 (cfg_hooks::duplicate_block): Adjust to take a copy_bb_data argument.
23405 (duplicate_block): Likewise.
23406 * cfghooks.c (duplicate_block): Pass down copy_bb_data.
23407 (copy_bbs): Create and pass down copy_bb_data.
23408 * cfgrtl.c (cfg_layout_duplicate_bb): Adjust.
23409 (rtl_duplicate_bb): Likewise.
23410 * tree-cfg.c (gimple_duplicate_bb): If the copy_bb_data arg is not NULL
23411 remap dependence info.
23412
23413 2019-02-22 Richard Biener <rguenther@suse.de>
23414
23415 PR tree-optimization/87609
23416 * tree-core.h (tree_base): Document special clique values.
23417 * tree-inline.c (remap_dependence_clique): Do not use the
23418 special clique value of one.
23419 (maybe_set_dependence_info): Use clique one.
23420 (clear_dependence_clique): New callback.
23421 (compute_dependence_clique): Clear clique one from all refs
23422 before assigning it (again).
23423
23424 2019-02-21 Martin Sebor <msebor@redhat.com>
23425
23426 * doc/extend.texi (__clear_cache): Correct signature.
23427
23428 2019-02-21 Ian Lance Taylor <iant@golang.org>
23429
23430 PR go/89170
23431 * varasm.c (decode_addr_const): Call lookup_constant_def rather
23432 than output_constant_def.
23433 (add_constant_to_table): New static function.
23434 (output_constant_def): Call add_constant_to_table.
23435 (tree_output_constant_def): Likewise.
23436
23437 2019-02-21 Jakub Jelinek <jakub@redhat.com>
23438
23439 PR c++/89285
23440 * builtins.c (fold_builtin_arith_overflow): If first two args are
23441 INTEGER_CSTs, set intres and ovfres to constants rather than calls
23442 to ifn.
23443
23444 2019-02-21 H.J. Lu <hongjiu.lu@intel.com>
23445
23446 PR target/87412
23447 * config/i386/i386.c (ix86_set_indirect_branch_type): Issue an
23448 error for -mindirect-branch/-mfunction-return with incompatible
23449 -fcf-protection.
23450
23451 2019-02-21 Jakub Jelinek <jakub@redhat.com>
23452
23453 PR bootstrap/88714
23454 * constraints.md (q): Remove.
23455 * config/arm/ldrdstrd.md (*arm_ldrd, *arm_strd): Use rk constraint
23456 instead of q.
23457
23458 2019-02-21 Martin Jambor <mjambor@suse.cz>
23459
23460 PR hsa/89302
23461 * omp-general.c (omp_extract_for_data): Removed a duplicate call
23462 to omp_adjust_for_condition, moved NE_EXPR code_cond processing...
23463 (omp_adjust_for_condition): ...here. Added necessary parameters.
23464 * omp-general.h (omp_adjust_for_condition): Updated declaration.
23465 * omp-grid.c (grid_attempt_target_gridification): Adjust to pass
23466 proper values to new parameters of omp_adjust_for_condition.
23467
23468 2019-02-20 Jakub Jelinek <jakub@redhat.com>
23469
23470 PR middle-end/89412
23471 * expr.c (expand_assignment): If result is a MEM, use change_address
23472 instead of simplify_gen_subreg.
23473
23474 2019-02-20 Jakub Jelinek <jakub@redhat.com>
23475 David Malcolm <dmalcolm@redhat.com>
23476
23477 PR middle-end/89091
23478 * fold-const.c (decode_field_reference): Return NULL_TREE if
23479 lang_hooks.types.type_for_size returns NULL. Check it before
23480 overwriting *exp_. Use return NULL_TREE instead of return 0.
23481
23482 2019-02-20 Jakub Jelinek <jakub@redhat.com>
23483
23484 PR middle-end/88074
23485 PR middle-end/89415
23486 * toplev.c (do_compile): Double the emin/emax exponents to workaround
23487 buggy mpc_norm.
23488
23489 2019-02-20 Uroš Bizjak <ubizjak@gmail.com>
23490
23491 PR target/89397
23492 * config/i386/i386.c (ix86_atomic_assign_expand_fenv): Check
23493 TARGET_SSE in addition to TARGET_SSE_MATH.
23494
23495 (ix86_excess_precision): Ditto.
23496 (ix86_float_exceptions_rounding_supported_p): Ditto.
23497 (use_rsqrt_p): Ditto.
23498 * config/i386/sse.md (rsqrt<mode>2): Ditto.
23499
23500 2019-02-20 David Malcolm <dmalcolm@redhat.com>
23501
23502 PR c/89410
23503 * diagnostic-show-locus.c (layout::calculate_line_spans): Use
23504 linenum_arith_t when determining if two adjacent line spans are
23505 close enough to merge.
23506 (diagnostic_show_locus): Use linenum_arith_t when iterating over
23507 lines within each line_span.
23508
23509 2019-02-20 Andre Vieira <andre.simoesdiasvieira@arm.com>
23510
23511 PR target/86487
23512 * lra-constraints.c(uses_hard_regs_p): Fix handling of
23513 paradoxical SUBREGS.
23514
23515 2019-02-20 Li Jia He <helijia@linux.ibm.com>
23516
23517 PR target/88100
23518 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin)
23519 <case ALTIVEC_BUILTIN_VSPLTISB, ALTIVEC_BUILTIN_VSPLTISH,
23520 ALTIVEC_BUILTIN_VSPLTISW>: Don't convert the operand before
23521 range checking it.
23522
23523 2019-02-19 Jonathan Wakely <jwakely@redhat.com>
23524
23525 * config/gcn/gcn.c (print_operand): Fix typo.
23526
23527 2019-02-19 Richard Biener <rguenther@suse.de>
23528
23529 PR middle-end/88074
23530 * toplev.c (do_compile): Initialize mpfr's exponent range
23531 based on available float modes.
23532
23533 2019-02-19 Eric Botcazou <ebotcazou@adacore.com>
23534
23535 * rtlanal.c (get_initial_register_offset): Fall back to the estimate
23536 as long as the epilogue isn't completed.
23537
23538 2019-02-18 Martin Sebor <msebor@redhat.com>
23539
23540 * doc/cpp.texi (Conditional syntax): Add __has_attribute,
23541 __has_cpp_attribute, and __has_include.
23542
23543 2019-02-18 Martin Sebor <msebor@redhat.com>
23544
23545 * doc/invoke.texi (-Wreturn-type): Correct and expand.
23546
23547 2019-02-18 Martin Sebor <msebor@redhat.com>
23548
23549 PR middle-end/89294
23550 * tree.c (valid_constant_size_p): Avoid assuming size is a constant
23551 expression.
23552 * tree.h (cst_size_error): Add the cst_size_not_constant enumerator.
23553
23554 2019-02-18 Richard Biener <rguenther@suse.de>
23555
23556 PR tree-optimization/89296
23557 * tree-ssa-loop-ch.c (ch_base::copy_headers): Restrict setting
23558 of no-warning flag to cases that might emit the bogus warning.
23559
23560 2019-02-18 Jakub Jelinek <jakub@redhat.com>
23561
23562 PR bootstrap/88714
23563 * config/arm/arm.md (*arm_movdi, *movdf_soft_insn): Use "r" instead of
23564 "q" constraint.
23565 * config/arm/vfp.md (*movdi_vfp): Likewise.
23566 * config/arm/ldrdstrd.md (*arm_ldrd, *arm_strd): Use "r" instead of
23567 "q" constraint for operands[0].
23568
23569 PR target/89369
23570 * config/s390/s390.md (*r<noxa>sbg_<mode>_srl_bitmask,
23571 *r<noxa>sbg_<mode>_sll, *r<noxa>sbg_<mode>_srl): Don't construct
23572 pattern in a temporary buffer.
23573 (*r<noxa>sbg_sidi_srl): Likewise. Always use 32 as I3 rather
23574 than 64-operands[2].
23575
23576 PR target/89361
23577 * config/s390/s390.c (s390_indirect_branch_attrvalue,
23578 s390_indirect_branch_settings): Define unconditionally.
23579 (s390_set_current_function): Likewise, but guard the whole body except
23580 the s390_indirect_branch_settings call with
23581 #if S390_USE_TARGET_ATTRIBUTE.
23582 (TARGET_SET_CURRENT_FUNCTION): Redefine unconditionally.
23583
23584 * config/s390/s390.md (*<risbg_n>_ior_and_sr_ze,
23585 *<risbg_n>_<mode>_ior_and_lshiftrt, *<risbg_n>_sidi_ior_and_lshiftrt):
23586 Use HOST_WIDE_INT_M1U instead of ~(0ULL).
23587 (*<risbg_n>_and_subregdi_rotr, *<risbg_n>_and_subregdi_rotl): Use
23588 HOST_WIDE_INT_1U instead of 1ULL.
23589 (*pre_z10_extzv<mode>, *pre_z10_extv<mode>): Change mask type from int
23590 to unsigned HOST_WIDE_INT, use HOST_WIDE_INT_1U instead of 1ul.
23591 (*insv<mode><clobbercc_or_nocc>_appendbitsleft,
23592 z = (x << c) | (y >> d) splitters): Use HOST_WIDE_INT_1U
23593 instead of 1UL.
23594 (*insv<mode>_mem_reg, *insvdi_mem_reghigh): Use HOST_WIDE_INT_1U
23595 instead of 1ul.
23596
23597 2019-02-18 Martin Jambor <mjambor@suse.cz>
23598
23599 PR tree-optimization/89209
23600 * tree-sra.c (create_access_replacement): New optional parameter
23601 reg_tree. Use it as a type if non-NULL and access type is not of
23602 a register type.
23603 (get_repl_default_def_ssa_name): New parameter REG_TYPE, pass it
23604 to create_access_replacement.
23605 (sra_modify_assign): Pass LHS type to get_repl_default_def_ssa_name.
23606 Check lacc is non-NULL before attempting to re-create it on the RHS.
23607
23608 2019-02-18 Martin Liska <mliska@suse.cz>
23609
23610 PR ipa/89306
23611 * cgraph.c (symbol_table::create_edge): Set m_summary_id to -1
23612 by default.
23613 (symbol_table::free_edge): Recycle m_summary_id.
23614 * cgraph.h (get_summary_id): New.
23615 (symbol_table::release_symbol): Set m_summary_id to -1
23616 by default.
23617 (symbol_table::allocate_cgraph_symbol): Recycle m_summary_id.
23618 * ipa-fnsummary.c (ipa_fn_summary_t): Switch from
23619 function_summary to fast_function_summary.
23620 * ipa-fnsummary.h (ipa_fn_summary_t): Likewise.
23621 * ipa-pure-const.c (class funct_state_summary_t):
23622 Switch from function_summary to fast_function_summary.
23623 * ipa-reference.c (class ipa_ref_var_info_summary_t): Likewise.
23624 (class ipa_ref_opt_summary_t): Switch from function_summary
23625 to fast_function_summary.
23626 * symbol-summary.h (class function_summary_base): New class
23627 that is created from base of former function_summary.
23628 (function_summary_base::unregister_hooks): New.
23629 (class function_summary): Inherit from function_summary_base.
23630 (class call_summary_base): New class
23631 that is created from base of former call_summary.
23632 (class call_summary): Inherit from call_summary_base.
23633 (struct is_same): New.
23634 (class fast_function_summary): New summary class.
23635 (class fast_call_summary): New summary class.
23636 * vec.h (vec_safe_grow_cleared): New function.
23637
23638 2019-02-18 Martin Liska <mliska@suse.cz>
23639
23640 * config/i386/i386.c (ix86_get_multilib_abi_name): New function.
23641 (TARGET_GET_MULTILIB_ABI_NAME): New macro defined.
23642 * doc/tm.texi: Document new target hook.
23643 * doc/tm.texi.in: Likewise.
23644 * target.def: Add new target macro.
23645 * gcc.c (find_fortran_preinclude_file): Do not search multilib
23646 suffixes.
23647
23648 2019-02-17 Alan Modra <amodra@gmail.com>
23649
23650 PR target/89271
23651 * config/rs6000/rs6000.md (<bd>_<mode> split): Check for an int
23652 output reg on add insn.
23653 (<bd>tf_<mode> split): Likewise. Match predicates with insn.
23654
23655 2019-02-16 H.J. Lu <hongjiu.lu@intel.com>
23656
23657 PR target/89372
23658 * config/i386/sse.md (ssedoublemode): Remove V4HI.
23659 (PMULHRSW): Likewise.
23660 (<ssse3_avx2>_pmulhrsw<mode>3): Require TARGET_SSSE3, not
23661 TARGET_AVX2.
23662 (ssse3_pmulhrswv4hi3): New expander.
23663
23664 2019-02-16 H.J. Lu <hongjiu.lu@intel.com>
23665
23666 * config/i386/mmx.md (*vec_extractv2si_zext_mem): Doesn't require
23667 MMX. Add isa attribute.
23668
23669 2019-02-16 Jakub Jelinek <jakub@redhat.com>
23670
23671 PR rtl-optimization/66152
23672 * builtins.h (c_readstr): Declare.
23673 * builtins.c (c_readstr): Remove forward declaration. Add
23674 null_terminated_p argument, if false, read all bytes from the
23675 string instead of stopping after '\0'.
23676 * expr.c (string_cst_read_str): New function.
23677 (store_expr): Use string_cst_read_str instead of
23678 builtin_strncpy_read_str. Try to store by pieces the whole
23679 exp_len first, and only if that fails, split it up into
23680 store by pieces followed by clear_storage. Formatting fix.
23681
23682 * config/i386/i386.md (*movqi_internal): Remove static from
23683 buf variable. Use output_asm_insn (buf, operands); return "";
23684 instead of return buf;.
23685 * config/i386/sse.md (<sse>_andnot<mode>3<mask_name>,
23686 *<code><mode>3<mask_name>, *andnot<mode>3, *andnottf3, *<code><mode>3,
23687 *<code>tf3, <mask_codefor><code><mode>3<mask_name>): Likewise.
23688
23689 2019-02-15 Eric Botcazou <ebotcazou@adacore.com>
23690
23691 * config/sparc/linux.h (ASAN_CC1_SPEC): Define.
23692 (CC1_SPEC): Use GNU_USER_TARGET_CC1_SPEC and ASAN_CC1_SPEC.
23693 * config/sparc/linux64.h (ASAN_CC1_SPEC): Likewise.
23694 (CC1_SPEC): Likewise.
23695 * config/sparc/sparc.c (sparc_asan_shadow_offset): Adjust for 64-bit.
23696
23697 2019-02-15 Eric Botcazou <ebotcazou@adacore.com>
23698
23699 * asan.c (asan_emit_stack_protection): Use full-sized mask to align
23700 the base address on 64-bit strict-alignment platforms.
23701
23702 2019-02-15 H.J. Lu <hongjiu.lu@intel.com>
23703
23704 * config/i386/i386.h (VALID_MMX_REG_MODE): Correct the misplaced ')'.
23705
23706 2019-02-15 Uroš Bizjak <ubizjak@gmail.com>
23707
23708 * config/i386/darwin.h (TARGET_FPMATH_DEFAULT_P): New define.
23709
23710 2019-02-15 Aaron Sawdey <acsawdey@linux.ibm.com>
23711
23712 PR rtl-optimization/88308
23713 * shrink-wrap.c (move_insn_for_shrink_wrap): Fix LABEL_NUSES counts
23714 on copied instruction.
23715
23716 2019-02-15 Eric Botcazou <ebotcazou@adacore.com>
23717
23718 * final.c (insn_current_reference_address): Replace test on JUMP_P
23719 with test on jump_to_label_p.
23720 * config/visium/visium-passes.def: New file.
23721 * config/visium/t-visium (PASSES_EXTRA): Define.
23722 * config/visium/visium-protos.h (make_pass_visium_reorg): Declare.
23723 * config/visium/visium.h (TRAMPOLINE_SIZE): Adjust.
23724 (TRAMPOLINE_ALIGNMENT): Define.
23725 * config/visium/visium.c (visium_option_override): Do not register
23726 the machine-specific reorg pass here.
23727 (visium_trampoline_init): Align the BRA insn on a 64-bit boundary
23728 for the GR6.
23729 (output_branch): Adjust threshold for long branch instruction.
23730 * config/visium/visium.md (cpu): Move around.
23731 (length): Adjust for the GR6.
23732
23733 2019-02-15 Richard Biener <rguenther@suse.de>
23734 Jakub Jelinek <jakub@redhat.com>
23735
23736 PR tree-optimization/89278
23737 * tree-loop-distribution.c: Include tree-eh.h.
23738 (generate_memset_builtin, generate_memcpy_builtin): Call
23739 rewrite_to_non_trapping_overflow on builtin->size before passing it
23740 to force_gimple_operand_gsi.
23741
23742 2019-02-15 Jakub Jelinek <jakub@redhat.com>
23743
23744 PR other/89342
23745 * optc-save-gen.awk: Handle optimize_fast like optimize_size or
23746 optimize_debug.
23747 * opth-gen.awk: Likewise.
23748
23749 2019-02-15 Uroš Bizjak <ubizjak@gmail.com>
23750
23751 * config/i386/i386.h (TARGET_SUBTARGET64_ISA_DEFAULT):
23752 Enable MMX, SSE and SSE2 by default.
23753 * config/i386/i386.c (ix86_option_override_internal): Do not
23754 explicitly set MMX, SSE and SSE2 flags for TARGET_64BIT here.
23755
23756 2019-02-14 Jakub Jelinek <jakub@redhat.com>
23757
23758 PR rtl-optimization/89354
23759 * combine.c (make_extraction): Punt if extraction_mode is narrower
23760 than len bits.
23761
23762 2019-02-14 Maya Rashish <coypu@sdf.org>
23763
23764 * config.gcc (*-*-netbsd*): Add netbsd-d.o.
23765 * config/netbsd-d.c: New file.
23766 * config/t-netbsd: Add netbsd-d.o
23767
23768 2018-02-14 Steve Ellcey <sellcey@marvell.com>
23769
23770 * config/aarch64/aarch64.c (aarch64_attribute_table): Change
23771 affects_type_identity to true for aarch64_vector_pcs.
23772 (aarch64_comp_type_attributes): New function.
23773 (TARGET_COMP_TYPE_ATTRIBUTES): New macro.
23774
23775 2019-02-14 Tamar Christina <tamar.christina@arm.com>
23776
23777 PR target/88850
23778 * config/arm/iterators.md (ANY64): Add V4HF.
23779
23780 2019-02-14 Martin Liska <mliska@suse.cz>
23781
23782 PR rtl-optimization/89242
23783 * dce.c (delete_unmarked_insns): Call free_dominance_info we
23784 process a transformation.
23785
23786 2019-02-14 Jakub Jelinek <jakub@redhat.com>
23787
23788 PR tree-optimization/89314
23789 * fold-const.c (fold_binary_loc): Cast strlen argument to
23790 const char * before dereferencing it. Formatting fixes.
23791
23792 PR middle-end/89284
23793 * passes.def: Swap pass_ubsan and pass_early_warn_uninitialized.
23794
23795 2019-02-13 Ian Lance Taylor <iant@golang.org>
23796
23797 * optc-save-gen.awk: Set var_opt_hash for initial optimizations
23798 and set current index for other optimizations.
23799
23800 2019-02-13 Uroš Bizjak <ubizjak@gmail.com>
23801
23802 * config/i386/sse.md (vec_set<VI4F_256_512:mode>_0): Use
23803 nonimmediate_operand as operand 2 predicate.
23804 (vec_set<VF2_512_256:mode>_0): Ditto.
23805 (vec_set<VI8_AVX_AVX512F:mode>_0): Ditto.
23806 (*vec_concatv2si): Remove alternative 2.
23807 (*vec_concatv4si_0): Use vm constraint for alternative 0.
23808 (*vec_concatv4si_0): Remove preferred_for_speed attribute.
23809 (vec_concatv2di): Split alternatives 4,5,6 to ...
23810 (*vec_concatv2di_0) ... new pattern.
23811
23812 2019-02-13 Wilco Dijkstra <wdijkstr@arm.com>
23813
23814 PR target/89190
23815 * config/arm/arm.c (ldm_stm_operation_p) Set
23816 addr_reg_in_reglist correctly for first register.
23817 (load_multiple_sequence): Remove dead base check.
23818 (gen_ldm_seq): Correctly set write_back for Thumb-1.
23819
23820 2019-02-13 Tamar Christina <tamar.christina@arm.com>
23821
23822 PR target/88847
23823 * config/aarch64/aarch64-sve.md (*pred_mov<mode>, pred_mov<mode>):
23824 Expose as @aarch64_pred_mov.
23825 * config/aarch64/aarch64.c (aarch64_classify_address):
23826 Use expand_insn which legitimizes operands.
23827
23828 2019-02-13 Martin Liska <mliska@suse.cz>
23829
23830 * builtins.h (expand_builtin_with_bounds): Remove declaration.
23831 * calls.c (struct arg_data): Remove special_slot, pointer_arg
23832 and pointer_offset fields.
23833 (initialize_argument_information): Remove usage of dead
23834 fields.
23835 * cgraph.h (struct cgraph_thunk_info): Remove
23836 add_pointer_bounds_args.
23837 * cgraphunit.c (cgraph_node::expand_thunk): Remove usage of dead
23838 fields.
23839 (cgraph_node::assemble_thunks_and_aliases): Remove usage of dead
23840 fields.
23841 * config/i386/i386.c (ix86_function_arg_advance): Remove
23842 unrelated comment.
23843 (struct builtin_isa): Remove leaf_p and nothrow_p fields.
23844 (def_builtin): Remove usage of dead fields.
23845 (ix86_add_new_builtins): Likewise.
23846 * ipa-fnsummary.c (compute_fn_summary): Likewise.
23847 * ipa-icf.c (sem_function::equals_wpa): Likewise.
23848 (sem_function::init): Likewise.
23849 (sem_variable::merge): Likewise.
23850 * ipa-visibility.c (function_and_variable_visibility): Likewise.
23851 * ipa.c (symbol_table::remove_unreachable_nodes): Likewise.
23852 * lto-cgraph.c (lto_output_node): Likewise.
23853 (lto_output_varpool_node): Likewise.
23854 (input_node): Likewise.
23855 (input_varpool_node): Likewise.
23856 * lto-streamer-out.c (lto_output): Likewise.
23857 * tree-inline.c (expand_call_inline): Remove usage of
23858 assign_stmts.
23859 * tree-inline.h (struct copy_body_data): Likewise.
23860 * varpool.c (varpool_node::dump): Likewise.
23861
23862 2019-02-13 Jakub Jelinek <jakub@redhat.com>
23863
23864 PR middle-end/89303
23865 * tree-ssa-structalias.c (set_uids_in_ptset): Or in vi->is_heap_var
23866 into pt->vars_contains_escaped_heap instead of setting
23867 pt->vars_contains_escaped_heap to it.
23868
23869 PR middle-end/89281
23870 * optabs.c (prepare_cmp_insn): Use UINTVAL (size) instead of
23871 INTVAL (size), compare it to GET_MODE_MASK instead of
23872 1 << GET_MODE_BITSIZE.
23873
23874 PR target/89290
23875 * config/i386/predicates.md (x86_64_immediate_operand): Allow
23876 TLS UNSPECs offsetted by signed 32-bit CONST_INT even with
23877 -mcmodel=large.
23878
23879 2019-02-13 Martin Liska <mliska@suse.cz>
23880
23881 PR lto/88858
23882 * cfgrtl.c (remove_barriers_from_footer): New function.
23883 (try_redirect_by_replacing_jump): Use it.
23884 (cfg_layout_redirect_edge_and_branch): Likewise.
23885
23886 2019-02-13 Xiong Hu Luo <luoxhu@linux.vnet.ibm.com>
23887
23888 * config/rs6000/altivec.h (vec_sbox_be, vec_cipher_be,
23889 vec_cipherlast_be, vec_ncipher_be, vec_ncipherlast_be): New #defines.
23890 * config/rs6000/crypto.md (CR_vqdi): New define_mode_iterator.
23891 (crypto_vsbox_<mode>, crypto_<CR_insn>_<mode>): New define_insns.
23892 * config/rs6000/rs6000-builtin.def (VSBOX_BE): New BU_CRYPTO_1.
23893 (VCIPHER_BE, VCIPHERLAST_BE, VNCIPHER_BE, VNCIPHERLAST_BE):
23894 New BU_CRYPTO_2.
23895 * config/rs6000/rs6000.c (builtin_function_type)
23896 <CRYPTO_BUILTIN_VSBOX_BE, CRYPTO_BUILTIN_VCIPHER_BE,
23897 CRYPTO_BUILTIN_VCIPHERLAST_BE, CRYPTO_BUILTIN_VNCIPHER_BE,
23898 CRYPTO_BUILTIN_VNCIPHERLAST_BE>: New switch options.
23899 * doc/extend.texi (vec_sbox_be, vec_cipher_be, vec_cipherlast_be,
23900 vec_ncipher_be, vec_ncipherlast_be): New builtin functions.
23901
23902 2019-02-12 Pat Haugen <pthaugen@us.ibm.com>
23903
23904 * doc/invoke.texi (RS/6000 and PowerPC Options): Remove duplicate
23905 -maltivec. Delete -maltivec=be and -maltivec=le documentation.
23906
23907 2019-02-12 H.J. Lu <hongjiu.lu@intel.com>
23908
23909 PR target/89229
23910 * config/i386/i386.md (*movoi_internal_avx): Revert revision
23911 268678 and revision 268657.
23912 (*movti_internal): Likewise.
23913
23914 2019-02-12 Ilya Leoshkevich <iii@linux.ibm.com>
23915
23916 PR target/89233
23917 * config/s390/s390.c (s390_decompose_address): Update comment.
23918 (s390_check_qrst_address): Reject invalid address forms after
23919 LRA.
23920
23921 2019-02-12 Martin Liska <mliska@suse.cz>
23922
23923 PR lto/88876
23924 * ipa-pure-const.c (propagate_pure_const): Revert hunk as
23925 we need default values of funct_state for a function that
23926 is not optimized.
23927
23928 2019-02-12 Eric Botcazou <ebotcazou@adacore.com>
23929
23930 * asan.c (asan_expand_mark_ifn): Take into account the alignment of
23931 the object to pick the size of stores on strict-alignment platforms.
23932
23933 * config/sparc/sparc.md (*movsi_insn): Minor tweak.
23934 (*movdi_insn_sp32): Likewise.
23935 (*movdi_insn_sp64): Likewise.
23936
23937 2019-02-12 Jan Hubicka <hubicka@ucw.cz>
23938
23939 PR lto/88677
23940 * cgraphunit.c (analyze_functions): Clear READONLY flag for external
23941 types that needs constructiong.
23942 * tree.h (may_be_aliased): Do not check TYPE_NEEDS_CONSTRUCTING.
23943
23944 2019-02-12 Richard Biener <rguenther@suse.de>
23945
23946 PR tree-optimization/89253
23947 * tree-ssa-loop-split.c (tree_ssa_split_loops): Check we can
23948 duplicate the loop.
23949
23950 2019-02-11 David Malcolm <dmalcolm@redhat.com>
23951
23952 PR lto/88147
23953 * input.c (selftest::test_line_offset_overflow): New selftest.
23954 (selftest::input_c_tests): Call it.
23955
23956 2019-02-11 Martin Sebor <msebor@redhat.com>
23957
23958 PR tree-optimization/88771
23959 * gimple-ssa-warn-restrict.c (pass_wrestrict::gate): Also enable
23960 when -Wstringop-overflow is set.
23961 (builtin_memref::builtin_memref): Adjust excessive upper bound
23962 only when lower bound is not excessive.
23963 (maybe_diag_overlap): Detect and diagnose excessive bounds via
23964 -Wstringop-ovefflow.
23965 (maybe_diag_offset_bounds): Rename...
23966 (maybe_diag_access_bounds): ...to this.
23967 (check_bounds_or_overlap): Adjust for name change above.
23968
23969 2019-02-11 Martin Sebor <msebor@redhat.com>
23970
23971 PR c++/87996
23972 * builtins.c (max_object_size): Move from here...
23973 * builtins.h (max_object_size): ...and here...
23974 * tree.c (max_object_size): ...to here...
23975 * tree.h (max_object_size): ...and here.
23976
23977 2019-02-11 Bill Schmidt <wschmidt@linux.ibm.com>
23978
23979 * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Shift-right
23980 and shift-left vector built-ins need to include a TRUNC_MOD_EXPR
23981 for correct semantics.
23982
23983 2019-02-11 Alan Modra <amodra@gmail.com>
23984
23985 * doc/invoke.texi (man page RS/6000 and PowerPC Options): Mention
23986 -mlongcall and -mpltseq.
23987 (RS/6000 and PowerPC Options <-mlongcall>): Mention inline PLT calls.
23988 (RS/6000 and PowerPC Options <-mpltseq>): Document.
23989 * config/rs6000/rs6000.h (TARGET_PLTSEQ): Define.
23990 * config/rs6000/sysv4.opt (mpltseq): New option.
23991 * config/rs6000/sysv4.h (TARGET_PLTSEQ): Redefine.
23992 (SUBTARGET_OVERRIDE_OPTIONS): Error if given -mpltseq when assembler
23993 support is lacking. Don't allow -mpltseq with -mbss-plt.
23994 * config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Warn if
23995 -mpltseq given for ELFv1.
23996 * config/rs6000/rs6000.c (rs6000_call_aix): Comment on UNSPEC_PLTSEQ.
23997 Only use UNSPEC_PLTSEQ for inline PLT calls.
23998 (rs6000_call_sysv, rs6000_sibcall_sysv): Expand comments. Only
23999 use UNSPEC_PLTSEQ for inline PLT calls.
24000 (rs6000_indirect_call_template_1, rs6000_longcall_ref),
24001 (rs6000_call_aix, rs6000_call_sysv, rs6000_sibcall_sysv): Replace
24002 uses of HAVE_AS_PLTSEQ with TARGET_PLTSEQ, simplifying.
24003 * config/rs6000/rs6000.md (pltseq_tocsave_<mode>),
24004 (pltseq_plt16_ha_<mode>, pltseq_plt16_lo_<mode>),
24005 (pltseq_mtctr_<mode>): Likewise.
24006
24007 2019-02-11 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
24008
24009 * acinclude.m4 (gcc_AC_INITFINI_ARRAY): Use 8-byte strings with
24010 Solaris ld.
24011 * configure: Regenerate.
24012
24013 2019-02-11 Jakub Jelinek <jakub@redhat.com>
24014
24015 PR bootstrap/88714
24016 * config/arm/ldrdstrd.md (*arm_ldrd, *arm_strd): Use q constraint
24017 instead of r.
24018
24019 2019-02-11 Hans-Peter Nilsson <hp@axis.com>
24020
24021 * function.c (assign_parm_setup_block): Use the stored
24022 size, not the passed size, when allocating stack-space,
24023 also for a parameter with alignment larger than
24024 MAX_SUPPORTED_STACK_ALIGNMENT.
24025
24026 2019-02-11 Martin Liska <mliska@suse.cz>
24027
24028 PR ipa/89009
24029 * ipa-cp.c (build_toporder_info): Remove usage of a param.
24030 * ipa-inline.c (inline_small_functions): Likewise.
24031 * ipa-pure-const.c (propagate_pure_const): Likewise.
24032 (propagate_nothrow): Likewise.
24033 * ipa-reference.c (propagate): Likewise.
24034 * ipa-utils.c (struct searchc_env): Remove unused field.
24035 (searchc): Always search across AVAIL_INTERPOSABLE.
24036 (ipa_reduced_postorder): Always allow AVAIL_INTERPOSABLE as
24037 the only called IPA pure const can properly not propagate
24038 across interposable boundary.
24039 * ipa-utils.h (ipa_reduced_postorder): Remove param.
24040
24041 2019-02-11 Chung-Ju Wu <jasonwucj@gmail.com>
24042
24043 * config/nds32/nds32.md (call_internal, call_value_internal,
24044 sibcall_internal, sibcall_value_internal): Use SImode for mem rtx.
24045
24046 2019-02-11 Hans-Peter Nilsson <hp@axis.com>
24047
24048 * config/cris/cris.c (cris_preferred_minimum_alignment): Fix name
24049 typo.
24050
24051 2019-02-10 H.J. Lu <hongjiu.lu@intel.com>
24052
24053 * config/i386/constraints.md (Yd): Replace AVX512BW with AVX512DQ
24054 in comments
24055
24056 2019-02-10 Chung-Ju Wu <jasonwucj@gmail.com>
24057
24058 * config.gcc (with_nds32_lib): Set default --with-nds32-lib correctly.
24059
24060 2019-02-10 Jakub Jelinek <jakub@redhat.com>
24061
24062 PR tree-optimization/89268
24063 * tree-if-conv.c (version_loop_for_if_conversion): Push to preds only
24064 if preds is non-NULL.
24065
24066 2019-02-09 Jan Hubicka <hubicka@ucw.cz>
24067
24068 PR lto/89272
24069 * tree.c (fld_simplified_type_name): Also keep TYPE_DECL for
24070 polymorphic types.
24071
24072 2019-02-10 Monk Chiang <sh.chiang04@gmail.com>
24073
24074 * config/nds32/nds32.md (trap): New pattern.
24075
24076 2019-02-10 Monk Chiang <sh.chiang04@gmail.com>
24077
24078 * config/nds32/nds32.c (nds32_dwarf_register_span): Refine register
24079 dwarf span.
24080
24081 2019-02-10 Chung-Ju Wu <jasonwucj@gmail.com>
24082
24083 * config/nds32/nds32-md-auxiliary.c (nds32_spilt_doubleword): Support
24084 to split POST_INC.
24085
24086 2019-02-09 Jan Hubicka <hubicka@ucw.cz>
24087
24088 * ipa-visibility.c (localize_node): Also do not localize
24089 LDPR_PREVAILING_DEF_IRONLY_EXP.
24090
24091 2019-02-09 Jan Hubicka <hubicka@ucw.cz>
24092
24093 PR lto/87957
24094 * tree.c (fld_simplified_type_name): Use DECL_ASSEMBLER_NAME_SET_P
24095 instead of type_with_linkage.
24096
24097 2019-02-09 Jan Hubicka <hubicka@ucw.cz>
24098
24099 PR ipa/88755
24100 * params.def (uninlined-function-insns, uninlined-function-time,
24101 uninlined-thunk-insns, uninlined-thunk-time): Add artificial upper
24102 bound so we don't get overflows.
24103
24104 2019-02-09 Aaron Sawdey <acsawdey@linux.ibm.com>
24105
24106 * config/rs6000/rs6000-string.c (expand_compare_loop,
24107 expand_block_compare): Insert REG_BR_PROB notes in inline expansion of
24108 memcmp/strncmp.
24109
24110 2019-02-09 Jakub Jelinek <jakub@redhat.com>
24111
24112 PR middle-end/89246
24113 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
24114 If !node->definition and TYPE_ARG_TYPES is non-NULL, use
24115 TYPE_ARG_TYPES instead of DECL_ARGUMENTS.
24116
24117 2019-02-09 Alan Modra <amodra@gmail.com>
24118
24119 PR target/88343
24120 * config/rs6000/rs6000.c (save_reg_p): Correct calls_eh_return
24121 case. Match logic in rs6000_emit_prologue emitting pic_offset_table
24122 setup.
24123
24124 2019-02-08 Vladimir Makarov <vmakarov@redhat.com>
24125
24126 PR middle-end/88560
24127 * lra-constraints.c (process_alt_operands): Don't increase reject
24128 for memory when offset memory is required.
24129
24130 2019-02-08 Robin Dapp <rdapp@linux.ibm.com>
24131
24132 * config/s390/vector.md: Implement vector copysign.
24133
24134 2019-02-08 H.J. Lu <hongjiu.lu@intel.com>
24135
24136 * expr.c (expand_constructor): Correct indentations.
24137
24138 2019-02-08 Richard Biener <rguenther@suse.de>
24139
24140 PR tree-optimization/89247
24141 * tree-if-conv.c: Include tree-cfgcleanup.h.
24142 (version_loop_for_if_conversion): Record LOOP_VECTORIZED call.
24143 (tree_if_conversion): Pass through predicate vector.
24144 (pass_if_conversion::execute): Do CFG cleanup and SSA update
24145 inline, see if any if-converted loops we refrece in
24146 LOOP_VECTORIZED calls vanished and fixup.
24147 * tree-if-conv.h (tree_if_conversion): Adjust prototype.
24148
24149 2019-02-08 Ilya Leoshkevich <iii@linux.ibm.com>
24150
24151 * config/s390/constraints.md (jdd): New constraint.
24152
24153 2019-02-08 H.J. Lu <hongjiu.lu@intel.com>
24154
24155 PR target/89229
24156 * config/i386/i386.md (*movoi_internal_avx): Set mode to XI for
24157 upper 16 vector registers without TARGET_AVX512VL.
24158 (*movti_internal): Likewise.
24159
24160 2019-02-08 Jakub Jelinek <jakub@redhat.com>
24161
24162 PR rtl-optimization/89234
24163 * except.c (copy_reg_eh_region_note_forward): Return if note_or_insn
24164 is a NOTE, CODE_LABEL etc. - rtx_insn * other than INSN_P.
24165 (copy_reg_eh_region_note_backward): Likewise.
24166
24167 2019-02-08 Richard Biener <rguenther@suse.de>
24168
24169 PR middle-end/89223
24170 * tree-data-ref.c (initialize_matrix_A): Fail if constant
24171 doesn't fit in HWI.
24172 (analyze_subscript_affine_affine): Handle failure from
24173 initialize_matrix_A.
24174
24175 2019-02-08 Jakub Jelinek <jakub@redhat.com>
24176
24177 * cfganal.c (pre_and_rev_post_order_compute_fn): Use fn instead of
24178 cfun everywhere.
24179
24180 2019-02-07 David Malcolm <dmalcolm@redhat.com>
24181
24182 PR tree-optimization/86637
24183 PR tree-optimization/89235
24184 * tree-vect-loop.c (optimize_mask_stores): Add an
24185 auto_purge_vect_location sentinel to ensure that vect_location is
24186 purged on exit.
24187 * tree-vectorizer.c
24188 (auto_purge_vect_location::~auto_purge_vect_location): New dtor.
24189 (try_vectorize_loop_1): Add an auto_purge_vect_location sentinel
24190 to ensure that vect_location is purged on exit.
24191 (pass_slp_vectorize::execute): Likewise, replacing the manual
24192 reset.
24193 * tree-vectorizer.h (class auto_purge_vect_location): New class.
24194
24195 2019-02-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
24196
24197 * config/aarch64/iterators.md (max_opp): New code_attr.
24198 (USMAX): New code iterator.
24199 * config/aarch64/predicates.md (aarch64_smin): New predicate.
24200 (aarch64_smax): Likewise.
24201 * config/aarch64/aarch64-simd.md (abd<mode>_3): Rename to...
24202 (*aarch64_<su>abd<mode>_3): ... Change RTL representation to
24203 MINUS (MAX MIN).
24204
24205 2019-02-07 H.J. Lu <hongjiu.lu@intel.com>
24206
24207 PR target/89229
24208 * config/i386/i386.md (*movoi_internal_avx): Set mode to OI
24209 for TARGET_AVX512VL.
24210 (*movti_internal): Set mode to TI for TARGET_AVX512VL.
24211
24212 2019-02-07 Andreas Krebbel <krebbel@linux.ibm.com>
24213
24214 * config/s390/s390-builtin-types.def: Add new types.
24215 * config/s390/s390-builtins.def: (s390_vec_xl, s390_vec_xld2)
24216 (s390_vec_xlw4): Make the memory operand into a const pointer.
24217 (s390_vec_xld2, s390_vec_xlw4): Add a variant for single precision
24218 float.
24219 * config/s390/s390-c.c (s390_expand_overloaded_builtin): Generate
24220 a new vector type with the alignment of the scalar memory operand.
24221
24222 2019-02-07 Matthew Malcomson <matthew.malcomson@arm.com>
24223 Jakub Jelinek <jakub@redhat.com>
24224
24225 PR bootstrap/88714
24226 * config/arm/arm-protos.h (valid_operands_ldrd_strd,
24227 arm_count_ldrdstrd_insns): New declarations.
24228 * config/arm/arm.c (mem_ok_for_ldrd_strd): Remove broken handling of
24229 MINUS.
24230 (valid_operands_ldrd_strd): New function.
24231 (arm_count_ldrdstrd_insns): New function.
24232 * config/arm/ldrdstrd.md: Change peepholes to generate PARALLEL SImode
24233 sets instead of single DImode set and define new insns to match this.
24234
24235 2019-02-07 Tamar Christina <tamar.christina@arm.com>
24236
24237 * config/aarch64/aarch64-builtins.c (aarch64_fcmla_lane_builtin_data):
24238 Make it a C initializer.
24239
24240 2019-02-07 Tamar Christina <tamar.christina@arm.com>
24241
24242 PR/target 88850
24243 * config/arm/neon.md (*neon_mov<mode>): Add r -> r case.
24244
24245 2019-02-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
24246
24247 * config/arm/neon.md (neon_<sup>dot<vsi2qi>):
24248 Use neon_dot<q> for type.
24249 (neon_<sup>dot_lane<vsi2qi>): Likewise.
24250
24251 2019-02-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
24252
24253 * config/aarch64/aarch64-simd.md (aarch64_<sur>dot<vsi2qi>):
24254 Use neon_dot<q> for type.
24255 (aarch64_<sur>dot_lane<vsi2qi>): Likewise.
24256 (aarch64_<sur>dot_laneq<vsi2qi>): Likewise.
24257
24258 2019-02-06 Vladimir Makarov <vmakarov@redhat.com>
24259
24260 PR rtl-optimization/89225
24261 * lra-constaints.c (simplify_operand_subreg): Add subreg mode
24262 sizes check.
24263
24264 2019-02-06 Eric Botcazou <ebotcazou@adacore.com>
24265
24266 * config/i386/i386.c (ix86_expand_prologue): Emit a memory blockage
24267 after restoring registers saved to allocate the frame on Windows.
24268
24269 2019-02-06 Richard Biener <rguenther@suse.de>
24270
24271 PR tree-optimization/89182
24272 * graphite.h (cached_scalar_evolution_in_region): Declare.
24273 * graphite.c (struct seir_cache_key): New.
24274 (struct sese_scev_hash): Likewise.
24275 (seir_cache): New global.
24276 (cached_scalar_evolution_in_region): New function.
24277 (graphite_transform_loops): Allocate and release seir_cache.
24278 * graphite-isl-ast-to-gimple.c (get_rename_from_scev): Use
24279 cached_scalar_evolution_in_region.
24280 * graphite-scop-detection.c (scop_detection::can_represent_loop):
24281 Simplify.
24282 (scop_detection::graphite_can_represent_expr: Use
24283 cached_scalar_evolution_in_region.
24284 (scop_detection::stmt_simple_for_scop_p): Likewise.
24285 (find_params_in_bb): Likewise.
24286 (gather_bbs::before_dom_children): Likewise.
24287 * graphite-sese-to-poly.c (create_pw_aff_from_tree): Likewise.
24288 (add_loop_constraints): Likewise.
24289
24290 2019-02-06 Jakub Jelinek <jakub@redhat.com>
24291
24292 PR middle-end/89210
24293 * fold-const-call.c (fold_const_vec_convert): Pass true as last
24294 operand to new_unary_operation only if both element types are integral
24295 and it isn't a widening conversion. Return NULL_TREE if
24296 new_unary_operation failed.
24297
24298 2019-02-05 Andreas Krebbel <krebbel@linux.ibm.com>
24299
24300 PR target/88856
24301 * config/s390/s390.md: Remove load and test FP splitter.
24302
24303 2019-02-05 Aaron Sawdey <acsawdey@linux.ibm.com>
24304
24305 PR target/89112
24306 * config/rs6000/rs6000-string.c (do_ifelse, expand_cmp_vec_sequence,
24307 expand_compare_loop, expand_block_compare_gpr,
24308 expand_strncmp_align_check, expand_strncmp_gpr_sequence): Insert
24309 REG_BR_PROB notes in inline expansion of memcmp/strncmp. Add
24310 #include "profile-count.h" and "predict.h" for types and functions
24311 needed to work with REG_BR_PROB notes.
24312
24313 2019-02-05 Aaron Sawdey <acsawdey@linux.ibm.com>
24314
24315 PR target/89112
24316 * config/rs6000/rs6000.md (<bd>tf_<mode>): Generate a local label
24317 for the long branch case.
24318
24319 2019-02-05 Jakub Jelinek <jakub@redhat.com>
24320
24321 PR target/89188
24322 * dce.c (delete_unmarked_insns): Don't remove no-op moves if they
24323 can throw, non-call exceptions are enabled and we can't delete
24324 dead exceptions or alter cfg. Set must_clean if
24325 delete_insn_and_edges returns true, don't set it blindly for calls.
24326 Assert that delete_unreachable_blocks is called only if can_alter_cfg.
24327
24328 PR rtl-optimization/89195
24329 * combine.c (make_extraction): For MEMs, don't extract bytes outside
24330 of the original MEM.
24331
24332 2019-02-05 Martin Liska <mliska@suse.cz>
24333
24334 PR gcov-profile/89000
24335 * gcov.c (function_summary): Remove argument.
24336 (file_summary): New function.
24337 (print_usage): Replace tabs with spaces.
24338 (generate_results): Use new function file_summary.
24339
24340 2019-02-05 Jakub Jelinek <jakub@redhat.com>
24341
24342 PR target/89186
24343 * optabs.c (prepare_cmp_insn): Pass x and y to
24344 emit_block_comp_via_libcall rather than XEXP (x, 0) and XEXP (y, 0).
24345
24346 2019-02-05 Richard Biener <rguenther@suse.de>
24347
24348 PR middle-end/89150
24349 * bitmap.h (struct bitmap_obstack): Do not mark GTY.
24350 (struct bitmap_element): Drop chain_prev so we properly recurse on
24351 the prev member, supporting tree views.
24352 (struct bitmap_head): GTY skip the obstack member.
24353
24354 2019-02-04 Alexander Monakov <amonakov@ispras.ru>
24355
24356 PR c/88698
24357 * doc/extend.texi (Vector Extensions): Add an example of using vector
24358 types together with x86 intrinsics.
24359
24360 2019-02-04 Alan Modra <amodra@gmail.com>
24361
24362 * config/rs6000/rs6000.c (rs6000_indirect_call_template_1): Increase
24363 str[] size to 160, and comment.
24364
24365 2019-02-04 Alan Modra <amodra@gmail.com>
24366
24367 * config/rs6000/rs6000.c (rs6000_indirect_call_template_1),
24368 (rs6000_pltseq_template): Guard output of TLS markers with
24369 TARGET_TLS_MARKERS.
24370 (rs6000_longcall_ref, rs6000_call_aix, rs6000_call_sysv),
24371 (rs6000_sibcall_sysv): Ignore TARGET_TLS_MARKERS when deciding
24372 to use inline PLT sequences.
24373 * config/rs6000/rs6000.md (pltseq_tocsave_<mode>),
24374 (pltseq_plt16_ha_<mode>, pltseq_plt16_lo_<mode>),
24375 (pltseq_mtctr_<mode>): Don't test TARGET_TLS_MARKERS in predicate.
24376
24377 2019-02-04 Martin Liska <mliska@suse.cz>
24378
24379 PR ipa/88985
24380 * ipa-fnsummary.c (estimate_edge_devirt_benefit): Bail
24381 out when ipa_fn_summaries does not contain entry for callee.
24382
24383 2019-02-04 Eric Botcazou <ebotcazou@adacore.com>
24384
24385 * config/sparc/sparc.h: Remove superfluous blank lines.
24386 * config/sparc/sparc.c (global_offset_table_rtx): Rename into...
24387 (got_register_rtx): ...this.
24388 (sparc_got): Adjust to above renaming.
24389 (sparc_tls_got): Likewise.
24390 (sparc_delegitimize_address): Likewise.
24391 (sparc_output_mi_thunk): Likewise.
24392 (sparc_init_pic_reg): Likewise.
24393 (save_local_or_in_reg_p): Fix test on the GOT register.
24394 (USE_HIDDEN_LINKONCE): Move around.
24395 (get_pc_thunk_name): Likewise.
24396 (gen_load_pcrel_sym): Likewise.
24397 (load_got_register): Likewise.
24398
24399 2019-02-04 Kito Cheng <kito.cheng@gmail.com>
24400
24401 * config/nds32/linux.h (GLIBC_DYNAMIC_LINKER): Define the naming rule
24402 of the dynamic linker: "ld-linux-nds32[le|be][f].so.1".
24403
24404 2019-02-04 Chung-Ju Wu <jasonwucj@gmail.com>
24405
24406 * config/nds32/nds32.c (nds32_legitimate_address_p): Add TLS model
24407 into consideration.
24408
24409 2019-02-04 Chung-Ju Wu <jasonwucj@gmail.com>
24410
24411 * config.gcc (with_nds32_lib, glibc):
24412 Remove TARGET_DEFAULT_TLSDESC_TRAMPOLINE=0 setting.
24413 * config/nds32/linux.h (TARGET_DEFAULT_TLSDESC_TRAMPOLINE): Delete.
24414 (NDS32_TLSDESC_TRAMPOLINE_SPEC): Delete.
24415
24416 2019-02-03 Uroš Bizjak <ubizjak@gmail.com>
24417
24418 PR target/89071
24419 * config/i386/i386.md (*sqrt<mode>2_sse): Add (v,0) alternative.
24420 Do not prefer (v,v) alternative for non-AVX targets and (m,v)
24421 alternative for speed when TARGET_SSE_PARTIAL_REG_DEPENDENCY is set.
24422 (*rcpsf2_sse): Ditto.
24423 (*rsqrtsf2_sse): Ditto.
24424 (sse4_1_round<mode<2): Ditto.
24425
24426 2019-02-03 Richard Biener <rguenther@suse.de>
24427
24428 PR debug/87295
24429 * dwarf2out.c (copy_ancestor_tree): Register non-stubs as
24430 orig.
24431
24432 2019-02-02 Jakub Jelinek <jakub@redhat.com>
24433
24434 PR middle-end/87887
24435 * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
24436 Punt with warning on aggregate return or argument types. Ignore
24437 type/mode checking for uniform arguments.
24438
24439 2019-02-01 Segher Boessenkool <segher@kernel.crashing.org>
24440
24441 * combine.c (try_combine): Do not print "Can't combine" messages unless
24442 printing failed combination attempts.
24443
24444 2019-02-01 Martin Jambor <mjambor@suse.cz>
24445
24446 PR hsa/87863
24447 * omp-grid.c (grid_mark_variable_segment): Set assembler name of group
24448 segment and global segment variables before making them static.
24449
24450 2019-02-01 Martin Jambor <mjambor@suse.cz>
24451
24452 * omp-grid.c (grid_target_follows_gridifiable_pattern): Guard two
24453 missed optimization dump with dump_enabled_p.
24454
24455 2019-02-01 Richard Biener <rguenther@suse.de>
24456
24457 PR middle-end/88597
24458 * tree-scalar-evolution.c (analyze_scalar_evolution): Set up
24459 the instantiate cache.
24460 (instantiate_scev_binary): Elide second operand procesing
24461 if equal to the first.
24462 * tree-chrec.c (chrec_contains_symbols): Add visited set.
24463 (chrec_contains_undetermined): Likewise.
24464 (tree_contains_chrecs): Likewise.
24465
24466 2019-02-01 Jan Hubicka <hubicka@ucw.cz>
24467
24468 * parms.def (MAX_INLINE_INSNS_SINGLE): Reduce from 400 to 200.
24469
24470 2019-02-01 Jakub Jelinek <jakub@redhat.com>
24471
24472 PR tree-optimization/89143
24473 * wide-int-range.h (wide_int_range_absu): Declare.
24474 * wide-int-range.cc (wide_int_range_absu): New function.
24475 * tree-vrp.c (extract_range_from_unary_expr): Handle ABSU_EXPR.
24476
24477 PR tree-optimization/88107
24478 * tree-cfg.c (find_outermost_region_in_block): Add ALL argument,
24479 instead of assertion that eh_region_outermost is non-NULL, if it
24480 is NULL, set *ALL to true and return NULL.
24481 (move_sese_region_to_fn): Adjust caller, if all is set, call
24482 duplicate_eh_regions with NULL region.
24483
24484 2019-02-01 Richard Biener <rguenth@suse.de>
24485
24486 PR rtl-optimization/88593
24487 * mode-switching.c (optimize_mode_switching): Free dominators before
24488 calling cleanup_cfg.
24489
24490 2019-02-01 Bin Cheng <bin.cheng@linux.alibaba.com>
24491
24492 PR tree-optimization/88932
24493 * tree-predcom.c (try_combine_chains): Get loop bbs in dom order.
24494
24495 2019-01-31 Jakub Jelinek <jakub@redhat.com>
24496
24497 PR middle-end/89137
24498 * omp-low.c (lower_omp_task_reductions): Drop redundant test to avoid
24499 bogus clang warning.
24500
24501 2019-01-31 Uroš Bizjak <ubizjak@gmail.com>
24502
24503 PR target/89071
24504 * config/i386/i386.md (*extendsfdf2): Split out reg->reg
24505 alternative to avoid partial SSE register stall for TARGET_AVX.
24506 (truncdfsf2): Ditto.
24507 (sse4_1_round<mode>2): Ditto.
24508
24509 2018-01-31 Bill Schmidt <wschmidt@linux.ibm.com>
24510
24511 PR tree-optimization/89008
24512 * gimple-ssa-strength-reduction.c (slsr_process_mul): Don't
24513 process anything of the form X * 0.
24514
24515 2019-01-31 Richard Biener <rguenther@suse.de>
24516
24517 PR tree-optimization/89135
24518 * tree-ssa-phiprop.c (pass_phiprop::execute): Skip blocks
24519 with abnormal preds.
24520
24521 2019-01-31 Jakub Jelinek <jakub@redhat.com>
24522
24523 PR sanitizer/89124
24524 * ipa-inline.c (sanitize_attrs_match_for_inline_p): Allow inlining
24525 always_inline callees into no_sanitize_address callers.
24526
24527 2019-01-31 Richard Biener <rguenther@suse.de>
24528
24529 PR rtl-optimization/89115
24530 * lra.c (lra_rtx_hash): Properly hash CONST_INT values.
24531
24532 2019-01-30 Martin Sebor <msebor@redhat.com>
24533
24534 PR other/89106
24535 * doc/extend.texi (cast to a union): Correct and expand.
24536
24537 2019-01-30 Vladimir Makarov <vmakarov@redhat.com>
24538
24539 PR rtl-optimization/87246
24540 * lra-constraints.c (simplify_operand_subreg): Reload memory
24541 in subreg if the address became invalid.
24542
24543 2019-01-30 Bill Schmidt <wschmidt@linux.ibm.com>
24544
24545 PR target/87064
24546 * config/rs6000/vsx.md (*vsx_reduc_<VEC_reduc_name>_v4sf_scalar):
24547 Disable for little-endian.
24548
24549 2019-01-30 Richard Biener <rguenther@suse.de>
24550
24551 PR rtl-optimization/89115
24552 * opts.c (default_options_optimization): Reduce
24553 PARAM_MAX_DSE_ACTIVE_LOCAL_STORES by a factor of 10 at -O1.
24554 Make PARAM_LOOP_INVARIANT_MAX_BBS_IN_LOOP reduction relative
24555 to the default.
24556
24557 2019-01-30 Kelvin Nilsen <kelvin@gcc.gnu.org>
24558
24559 * config/rs6000/rs6000-c.c (altivec-resolve_overloaded_builtin):
24560 Change handling of ALTIVEC_BUILTIN_VEC_EXTRACT. Coerce result to
24561 type of vector element when vec_extract is implemented by direct
24562 move.
24563
24564 2019-01-30 Thomas Schwinge <thomas@codesourcery.com>
24565
24566 * doc/invoke.texi (C Language Options): List "-fopenacc-dim".
24567
24568 2019-01-30 Richard Biener <rguenther@suse.de>
24569
24570 PR tree-optimization/89111
24571 * tree-ssa-loop-im.c (gather_mem_refs_stmt): Restrict
24572 canonicalization to appropriately sized access types.
24573
24574 2019-01-30 Jakub Jelinek <jakub@redhat.com>
24575
24576 PR c++/89105
24577 * config/i386/i386.c (ix86_warn_parameter_passing_abi): Don't warn
24578 for arguments to functions that are TU-local and shouldn't be
24579 referenced by assembly.
24580
24581 2019-01-30 Ulrich Drepper <drepper@redhat.com>
24582
24583 * dumpfile.c (opt_info_switch_p_1): Ignore '-' if it appears
24584 after '='.
24585
24586 2019-01-29 Martin Sebor <msebor@redhat.com>
24587
24588 PR c/88956
24589 * gimple-fold.c (fold_array_ctor_reference): Avoid zero-length arrays.
24590
24591 2019-01-29 Jakub Jelinek <jakub@redhat.com>
24592
24593 PR c++/66676
24594 PR ipa/89104
24595 * omp-simd-clone.c (simd_clone_clauses_extract)
24596 <case OMP_CLAUSE_ALIGNED>: Ignore clauses with NULL
24597 OMP_CLAUSE_ALIGNED_ALIGNMENT.
24598
24599 2019-01-29 Vineet Gupta <vgupta@synopsys.com>
24600
24601 * config.gcc: Force .init_array for ARC.
24602
24603 2019-01-29 Richard Biener <rguenther@suse.de>
24604
24605 PR debug/87295
24606 * dwarf2out.c (collect_skeleton_dies): New helper.
24607 (copy_decls_for_unworthy_types): Call it.
24608 (build_abbrev_table): Assert we do not try to replace
24609 DW_AT_signature refs with local refs.
24610
24611 2019-01-28 Jakub Jelinek <jakub@redhat.com>
24612
24613 PR middle-end/89002
24614 * gimplify.c (gimplify_omp_for): When adding OMP_CLAUSE_*_GIMPLE_SEQ
24615 for lastprivate/linear IV, push gimplify context around gimplify_assign
24616 and, if it needed any temporaries, pop it into a gimple bind around the
24617 sequence.
24618
24619 2019-01-28 Bernd Edlinger <bernd.edlinger@hotmail.de>
24620
24621 * common.opt (-Wattribute-alias): Remove "no-" from name.
24622 Make -Wattribute-alias command line option and
24623 #pragma GCC diagnostic ignored "-Wattribute-alias" work again.
24624
24625 2019-01-28 Jakub Jelinek <jakub@redhat.com>
24626
24627 PR target/89073
24628 * doc/invoke.texi (-mclwb, -mprfchw, -mrdpid, -mrdseed, -msgx,
24629 -madx, -mhle, -mavx5124fmaps, -mavx512vnni, -mavx5124vnniw): Document
24630 x86 ISA options.
24631 (bmi2): Add missing @opindex.
24632 * doc/extend.texi (x86 target attribute): Move fma4, lwp, ssse3
24633 options alphabetically. Add missing 3dnow, 3dnowa, adx, avx, avx2,
24634 avx5124fmaps, avx5124vnniw, avx512bitalg, avx512bw, avx512cd,
24635 avx512dq, avx512er, avx512f, avx512ifma, avx512pf, avx512vbmi,
24636 avx512vbmi2, avx512vl, avx512vnni, avx512vpopcntdq, bmi, bmi2,
24637 cldemote, clflushopt, clwb, clzero, crc32, cx16, f16c, fma, fsgsbase,
24638 fxsr, gfni, hle, lzcnt, movbe, movdir64b, movdiri, mwaitx, pconfig,
24639 pku, prefetchwt1, prfchw, ptwrite, rdpid, rdrnd, rdseed, rtm, sahf,
24640 sgx, sha, shstk, tbm, vaes, vpclmulqdq, waitpkg, wbnoinvd, xsave,
24641 xsavec, xsaveopt and xsaves options.
24642
24643 2019-01-28 Richard Biener <rguenther@suse.de>
24644
24645 PR debug/89076
24646 * dwarf2out.c (gen_subprogram_die): Remove leftover from MPX
24647 support removal.
24648
24649 2019-01-28 Richard Biener <rguenther@suse.de>
24650
24651 PR tree-optimization/88739
24652 * tree-cfg.c (verify_types_in_gimple_reference): Verify
24653 BIT_FIELD_REFs only are applied to mode-precision operands
24654 when they are integral.
24655 (verify_gimple_assign_ternary): Likewise for BIT_INSERT_EXPR.
24656 * tree-ssa-sccvn.c (vn_reference_lookup_3): Avoid generating
24657 BIT_FIELD_REFs of non-mode-precision integral operands.
24658
24659 2019-01-27 Jakub Jelinek <jakub@redhat.com>
24660
24661 PR target/87214
24662 * config/i386/sse.md
24663 (<mask_codefor>avx512dq_shuf_<shuffletype>64x2_1<mask_name>,
24664 avx512f_shuf_<shuffletype>64x2_1<mask_name>): Ensure the
24665 first constants in pairs are multiples of 2. Formatting fixes.
24666 (avx512vl_shuf_<shuffletype>32x4_1<mask_name>,
24667 avx512vl_shuf_<shuffletype>32x4_1<mask_name>): Ensure the
24668 first constants in each quadruple are multiples of 4. Formatting fixes.
24669
24670 2019-01-26 Martin Jambor <mjambor@suse.cz>
24671
24672 PR ipa/88933
24673 * tree-inline.c: Include tree-cfgcleanup.h.
24674 (delete_unreachable_blocks_update_callgraph): Move...
24675 * tree-cfgcleanup.c (delete_unreachable_blocks_update_callgraph):
24676 ...here, make externally visible, make second argument bool, adjust
24677 all callers.
24678 * tree-cfgcleanup.c: Include cgraph.h.
24679 * tree-cfgcleanup.h (delete_unreachable_blocks_update_callgraph):
24680 Declare.
24681 * ipa-prop.c: Include tree-cfgcleanup.h.
24682 (ipcp_transform_function): Call
24683 delete_unreachable_blocks_update_callgraph instead of cleaning uo CFG.
24684
24685 2019-01-25 Vladimir Makarov <vmakarov@redhat.com>
24686
24687 PR rtl-optimization/88846
24688 * ira.c (process_set_for_memref_referenced_p): New.
24689 (memref_referenced_p): Add new param. Use
24690 process_set_for_memref_referenced_p. Add new switch cases.
24691 (memref_used_between_p): Pass new arg to memref_referenced_p.
24692
24693 2019-01-25 Richard Earnshaw <rearnsha@arm.com>
24694
24695 PR target/88469
24696 * config/aarch64/aarch64.c (aarch64_function_arg_alignment): Add new
24697 argument ABI_BREAK. Set to true if the calculated alignment has
24698 changed in gcc-9. Check bit-fields for their base type alignment.
24699 (aarch64_layout_arg): Warn if argument passing has changed in gcc-9.
24700 (aarch64_function_arg_boundary): Likewise.
24701 (aarch64_gimplify_va_arg_expr): Likewise.
24702
24703 2019-01-25 Richard Sandiford <richard.sandiford@arm.com>
24704
24705 PR middle-end/89037
24706 * varasm.c (output_constructor_bitfield): Use wi::extract_uhwi
24707 instead of accessing TREE_INT_CST_ELT directly.
24708
24709 2019-01-25 Christophe Lyon <christophe.lyon@linaro.org>
24710
24711 * doc/sourcebuild.texi (Environment attributes): Add fenv and
24712 fenv_exceptions description.
24713
24714 2019-01-25 Wilco Dijkstra <wdijkstr@arm.com>
24715
24716 PR rtl-optimization/87763
24717 * config/aarch64/aarch64.c (aarch64_select_cc_mode):
24718 Allow SUBREG when matching CC_NZmode compare.
24719
24720 2019-01-25 Richard Biener <rguenther@suse.de>
24721
24722 PR tree-optimization/89049
24723 * tree-vect-loop.c (vect_compute_single_scalar_iteration_cost):
24724 Look at the pattern stmt to determine if the stmt is vectorized.
24725
24726 2019-01-25 Richard Sandiford <richard.sandiford@arm.com>
24727
24728 * config/aarch64/aarch64-sve.md (*pred_mov<mode>)
24729 (pred_mov<mode>): Handle all-register forms using both a new
24730 alternative and a split.
24731
24732 2019-01-25 Richard Biener <rguenther@suse.de>
24733
24734 PR tree-optimization/86865
24735 * graphite-scop-detection.c (scop_detection::can_represent_loop):
24736 Reject non-do-while loops.
24737
24738 2019-01-24 Peter Bergner <bergner@linux.ibm.com>
24739
24740 * config/rs6000/altivec.md (build_vector_mask_for_load): Use MEM_P.
24741 * config/rs6000/constraints.md (Q constraint): Use REG_P.
24742 * config/rs6000/darwin.h (PREFERRED_RELOAD_CLASS): Use SYMBOL_REF_P.
24743 * config/rs6000/freebsd64.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Use
24744 SYMBOL_REF_P, CONST_INT_P and CONST_DOUBLE_P.
24745 * config/rs6000/linux64.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
24746 * config/rs6000/predicates.md (altivec_register_operand, vint_operand,
24747 vsx_register_operand, vsx_reg_sfsubreg_ok, vfloat_operand,
24748 vlogical_operand, gpc_reg_operand, int_reg_operand,
24749 int_reg_operand_not_pseudo): Use SUBREG_P and HARD_REGISTER_P.
24750 (ca_operand, base_reg_operand, htm_spr_reg_operand, cc_reg_operand,
24751 cc_reg_not_cr0_operand, input_operand): Use SUBREG_P.
24752 (save_world_operation, restore_world_operation, lmw_operation,
24753 stmw_operation): Use MEM_P and REG_P.
24754 (tie_operand): Use MEM_P.
24755 (vrsave_operation, crsave_operation): Use REG_P.
24756 (mfcr_operation, mtcrf_operation): Use REG_P and CONST_INT_P.
24757 (fpr_reg_operand): Use SUBREG_P and HARD_REGISTER_NUM_P.
24758 (quad_int_reg_operand): Use HARD_REGISTER_NUM_P.
24759 (call_operand): Use HARD_REGISTER_P.
24760 (indexed_or_indirect_operand, altivec_indexed_or_indirect_operand):
24761 Use CONST_INT_P.
24762 (lwa_operand): Use SUBREG_P, REG_P and CONST_INT_P.
24763 * config/rs6000/rs6000-p8swap.c (insn_is_load_p, insn_is_store_p,
24764 quad_aligned_load_p, replace_swapped_aligned_store,
24765 recombine_lvx_pattern, replace_swapped_aligned_load,
24766 recombine_stvx_pattern): Use MEM_P.
24767 (const_load_sequence_p, adjust_vperm, replace_swapped_load_constant):
24768 Use MEM_P and SYMBOL_REF_P.
24769 (rtx_is_swappable_p): Use REG_P and CONST_INT_P.
24770 (insn_is_swappable_p): Use REG_P and MEM_P.
24771 (insn_is_swap_p, (alignment_mask): Use CONST_INT_P.
24772 * config/rs6000/rs6000-string.c (expand_block_clear, expand_block_move):
24773 Use CONST_INT_P.
24774 * config/rs6000/rs6000.c (rs6000_secondary_reload, rs6000_emit_cmove):
24775 Use CONST_DOUBLE_P.
24776 (rs6000_output_move_128bit): Use CONST_DOUBLE_P, CONST_INT_P and
24777 CONST_WIDE_INT_P.
24778 (rs6000_legitimize_address): Use CONST_DOUBLE_P, CONST_INT_P,
24779 CONST_WIDE_INT_P, REG_P and SYMBOL_REF_P.
24780 (rs6000_emit_move): Use CONST_DOUBLE_P, CONST_INT_P, HARD_REGISTER_P,
24781 HARD_REGISTER_NUM_P, MEM_P, REG_P, SUBREG_P, SYMBOL_REF_P and
24782 reg_or_subregno:
24783 (output_toc): Use CONST_DOUBLE_P, CONST_INT_P and SYMBOL_REF_P.
24784 (easy_altivec_constant, rs6000_legitimate_offset_address_p,
24785 rs6000_mode_dependent_address, rs6000_expand_mtfsf_builtin,
24786 rs6000_expand_set_fpscr_rn_builtin, rs6000_expand_set_fpscr_drn_builtin,
24787 rs6000_expand_unop_builtin, INT_P, rs6000_generate_compare,
24788 rs6000_machopic_legitimize_pic_address, rs6000_split_logical_inner,
24789 rs6000_split_logical_di): Use CONST_INT_P.
24790 (rs6000_legitimize_reload_address): Use CONST_INT_P, HARD_REGISTER_P,
24791 REG_P and SYMBOL_REF_P.
24792 (setup_incoming_varargs, rs6000_rtx_costs): Use CONST_INT_P and MEM_P.
24793 (print_operand): Use CONST_INT_P, MEM_P and REG_P.
24794 (virtual_stack_registers_memory_p, rs6000_legitimate_address_p,
24795 mems_ok_for_quad_peep): Use CONST_INT_P and REG_P.
24796 (rs6000_secondary_reload_memory): Use CONST_INT_P and SUBREG_P.
24797 (small_data_operand, print_operand_address): Use CONST_INT_P and
24798 SYMBOL_REF_P.
24799 (split_stack_arg_pointer_used_p): Use HARD_REGISTER_P.
24800 (rs6000_init_hard_regno_mode_ok, direct_move_p):
24801 Use HARD_REGISTER_NUM_P.
24802 (rs6000_secondary_reload_gpr): Use HARD_REGISTER_NUM_P and MEM_P.
24803 (rs6000_secondary_reload_class): Use HARD_REGISTER_NUM_P, REG_P,
24804 SUBREG_P and SYMBOL_REF_P.
24805 (register_to_reg_type, rs6000_secondary_reload_inner): Use SUBREG_P
24806 and HARD_REGISTER_NUM_P.
24807 (rs6000_adjust_vec_address): Use HARD_REGISTER_NUM_P and
24808 reg_or_subregno.
24809 (rs6000_adjust_cost, find_mem_ref): Use MEM_P.
24810 (macho_lo_sum_memory_operand, rs6000_eliminate_indexed_memrefs): Use
24811 MEM_P and REG_P.
24812 (legitimate_indirect_address_p, legitimate_lo_sum_address_p,
24813 registers_ok_for_quad_peep, rs6000_output_function_epilogue,
24814 find_addr_reg): Use REG_P.
24815 (altivec_expand_vec_perm_const): Use REG_P and SUBREG_P.
24816 (rs6000_emit_le_vsx_move): Use SUBREG_P.
24817 (offsettable_ok_by_alignment, constant_pool_expr_p,
24818 legitimate_small_data_p, rs6000_output_dwarf_dtprel,
24819 rs6000_delegitimize_address, rs6000_const_not_ok_for_debug_p,
24820 rs6000_cannot_force_const_mem, rs6000_output_addr_const_extra,
24821 rs6000_assemble_integer, create_TOC_reference,
24822 rs6000_emit_allocate_stack, rs6000_xcoff_encode_section_info,
24823 rs6000_call_aix, rs6000_call_aix): Use SYMBOL_REF_P.
24824 (rs6000_split_vec_extract_var): Use reg_or_subregno.
24825 * config/rs6000/rtems.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Use
24826 CONST_DOUBLE_P, CONST_INT_P and SYMBOL_REF_P.
24827 * config/rs6000/sysv4.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
24828 * config/rs6000/xcoff.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Likewise.
24829 * config/rs6000/rs6000.h (RS6000_SYMBOL_REF_TLS_P): Use SYMBOL_REF_P.
24830 (REGNO_OK_FOR_INDEX_P, REGNO_OK_FOR_BASE_P): Use HARD_REGISTER_NUM_P.
24831 (INT_REG_OK_FOR_INDEX_P, INT_REG_OK_FOR_BASE_P): Use HARD_REGISTER_P.
24832 (CONSTANT_ADDRESS_P): Use CONST_INT_P and SYMBOL_REF_P.
24833 * config/rs6000/rs6000.md (define_expands strlensi, mod<mode>3
24834 and cbranch<mode>4): Use CONST_INT_P.
24835 (multiple define_splits): Use REG_P and SUBREG_P.
24836 (define_expands call, call_value): Use MEM_P.
24837 (define_expands sibcall, sibcall_value): Use CONST_INT_P and MEM_P.
24838 (define insn *mtcrfsi): Use CONST_INT_P and REG_P.
24839 * config/rs6000/vsx.md (*vsx_le_perm_load_<mode>,
24840 *vsx_le_perm_load_v8hi, *vsx_le_perm_load_v16qi): Use HARD_REGISTER_P
24841 and HARD_REGISTER_NUM_P.
24842 (multiple define_splits): Use HARD_REGISTER_NUM_P.
24843
24844 2019-01-24 Uroš Bizjak <ubizjak@gmail.com>
24845
24846 PR rtl-optimization/88948
24847 * rtl.h (prepare_copy_insn): New prototype.
24848 * gcse.c (prepare_copy_insn): New function, split out from
24849 process_insert_insn.
24850 (process_insert_insn): Use prepare_copy_insn.
24851 * store-motion.c (replace_store_insn): Use prepare_copy_insn
24852 instead of gen_move_insn.
24853
24854 2019-01-24 Jakub Jelinek <jakub@redhat.com>
24855
24856 PR debug/89006
24857 * config/i386/i386.c (ix86_pic_register_p): Return true for
24858 UNSPEC_SET_GOT too.
24859
24860 PR tree-optimization/88964
24861 * gimple-loop-interchange.cc (loop_cand::analyze_induction_var): Also
24862 punt if HONOR_SNANS (chrec).
24863
24864 PR middle-end/89015
24865 * tree-nested.c (convert_nonlocal_reference_stmt,
24866 convert_local_reference_stmt, convert_tramp_reference_stmt,
24867 convert_gimple_call) <case GIMPLE_OMP_TEAMS>: Treat
24868 gimple_omp_teams_host teams stmts like GIMPLE_OMP_PARALLEL
24869 or GIMPLE_OMP_TASK.
24870
24871 PR tree-optimization/89027
24872 * tree-inline.c (add_clobbers_to_eh_landing_pad): Don't add clobbers
24873 for "omp simd array" variables.
24874
24875 2019-01-24 Richard Earnshaw <rearnsha@arm.com>
24876
24877 PR target/88469
24878 * profile-count.h (profile_count): On ARM systems using GCC 6/7/8
24879 force the alignment of m_val.
24880
24881 2019-01-24 Richard Biener <rguenther@suse.de>
24882
24883 PR lto/87187
24884 * tree-streamer-out.c (write_ts_decl_common_tree_pointers):
24885 When in "legacy" debug mode make sure to reset self-origins.
24886
24887 2019-01-24 Martin Liska <mliska@suse.cz>
24888
24889 PR gcov-profile/88994
24890 * gcov-io.c (mangle_path): Do not allocate a bigger buffer,
24891 result will be always smaller or equal to the original.
24892 * gcov.c (mangle_name): Fix else branch where we should
24893 also copy to PTR and shift the pointer.
24894
24895 2019-01-24 Xiong Hu Luo <luoxhu@linux.vnet.ibm.com>
24896
24897 * tree-ssa-dom.c (test_for_singularity): Fix a comment typo.
24898 * vr-values.c (find_case_label_ranges): Fix a comment typo.
24899
24900 2019-01-23 Xuepeng Guo <xuepeng.guo@intel.com>
24901
24902 * common/config/i386/i386-common.c
24903 (OPTION_MASK_ISA_ENQCMD_SET,
24904 OPTION_MASK_ISA_ENQCMD_UNSET): New macros.
24905 (ix86_handle_option): Handle -menqcmd.
24906 * config.gcc (enqcmdintrin.h): New header file.
24907 * config/i386/cpuid.h (bit_ENQCMD): New bit.
24908 * config/i386/driver-i386.c (host_detect_local_cpu): Handle
24909 -menqcmd.
24910 * config/i386/i386-builtin-types.def ((INT, PVOID, PCVOID)): New
24911 function type.
24912 * config/i386/i386-builtin.def (__builtin_ia32_enqcmd,
24913 __builtin_ia32_enqcmds): New builtins.
24914 * config/i386/i386-c.c (__ENQCMD__): New macro.
24915 * config/i386/i386-option.c (ix86_target_string): Add
24916 -menqcmd.
24917 (ix86_valid_target_attribute_inner_p): Likewise.
24918 * config/i386/i386-expand.c
24919 (ix86_expand_builtin): Expand IX86_BUILTIN_ENQCMD and
24920 IX86_BUILTIN_ENQCMDS.
24921 * config/i386/i386.h (TARGET_ENQCMD): New.
24922 * config/i386/i386.md (UNSPECV_ENQCMD, UNSPECV_ENQCMDS): New.
24923 (@enqcmd<enqcmd_sfx>_<mode>): New insn pattern.
24924 (movdir64b_<mode>): Parameterize to enable share expansion code
24925 with ENQCMD in function ix86_expand_builtin.
24926 * config/i386/i386.opt: Add -menqcmd.
24927 * config/i386/immintrin.h: Include enqcmdintrin.h.
24928 * config/i386/enqcmdintrin.h: New intrinsic file.
24929 * doc/invoke.texi: Add -menqcmd.
24930
24931 2019-01-23 Bin Cheng <bin.cheng@arm.com>
24932 Steve Ellcey <sellcey@marvell.com>
24933
24934 PR target/85711
24935 * recog.c (address_operand): Return false on wrong mode for address.
24936 (constrain_operands): Check for mode with 'p' constraint.
24937
24938 2019-01-23 Uroš Bizjak <ubizjak@gmail.com>
24939
24940 PR target/88998
24941 * config/i386/sse.md (sse2_cvtpi2pd): Add SSE alternatives.
24942 Disparage MMX alternative.
24943 (sse2_cvtpd2pi): Ditto.
24944 (sse2_cvttpd2pi): Ditto.
24945
24946 2019-01-23 David Malcolm <dmalcolm@redhat.com>
24947
24948 PR driver/89014
24949 * config/aarch64/driver-aarch64.c (host_detect_local_cpu): Fix
24950 use-after-free of the result of
24951 aarch64_get_extension_string_for_isa_flags.
24952
24953 2019-01-23 Jakub Jelinek <jakub@redhat.com>
24954
24955 PR c/44715
24956 * doc/extend.texi: Document break and continue behavior in
24957 statement expressions.
24958
24959 2019-01-23 Richard Biener <rguenther@suse.de>
24960
24961 PR tree-optimization/89008
24962 * tree-ssa-reassoc.c (eliminate_using_constants): For * 0 do
24963 not leave another stray operand.
24964
24965 2019-01-23 Jakub Jelinek <jakub@redhat.com>
24966
24967 * BASE-VER: Bump to 9.0.1.
24968
24969 2019-01-23 Eric Botcazou <ebotcazou@adacore.com>
24970
24971 * cgraphunit.c (cgraph_node::expand_thunk): When expanding a GIMPLE
24972 thunk that returns by reference, use the type of the return object
24973 of the thunk instead of that of the alias to build the dereference.
24974
24975 2019-01-23 Vineet Gupta <vgupta@synopsys.com>
24976
24977 * config/arc/atomic.md: Add operand to DMB instruction.
24978
24979 2019-01-23 Jakub Jelinek <jakub@redhat.com>
24980
24981 PR tree-optimization/88964
24982 * gimple-loop-interchange.cc (loop_cand::analyze_induction_var): Use
24983 build_zero_cst instead of build_int_cst. Return false for loop
24984 invariants which honor signed zeros.
24985
24986 2019-01-22 Segher Boessenkool <segher@kernel.crashing.org>
24987
24988 * doc/invoke.texi (-fsplit-paths): This is enabled by default at -O3.
24989
24990 2019-01-22 Jakub Jelinek <jakub@redhat.com>
24991
24992 PR target/88965
24993 * config/rs6000/rs6000.c: Include tree-vrp.h and tree-ssanames.h.
24994 (rs6000_gimple_fold_builtin): If MEM_REF address doesn't satisfy
24995 is_gimple_mem_ref_addr predicate, force it into a SSA_NAME first.
24996
24997 PR middle-end/88968
24998 * gimplify.c (gimplify_omp_atomic): Handle bitfield atomics with
24999 non-integral DECL_BIT_FIELD_REPRESENTATIVEs.
25000
25001 PR target/87064
25002 * config/rs6000/vsx.md (*vsx_reduc_<VEC_reduc_name>_v2df_scalar):
25003 Disable for little endian.
25004
25005 2019-01-22 Richard Earnshaw <rearnsha@arm.com>
25006
25007 PR target/88469
25008 * config/arm/arm.c (arm_needs_double_word_align): Check
25009 DECL_BIT_FIELD_TYPE.
25010
25011 2019-01-22 Hongtao Liu <hongtao.liu@intel.com>
25012 H.J. Lu <hongjiu.lu@intel.com>
25013
25014 PR target/88909
25015 * config/i386/i386-builtin.def: Add mask2 to all builtin
25016 initializations. Merge ARGS2 and SPECIAL_ARGS2 into ARGS and
25017 SPECIAL_ARGS.
25018 * config/i386/i386.c (BDESC): Add mask2 to the definition.
25019 (BDESC_FIRST): Likewise.
25020 (define_builtin): Add an argument for mask2. Updated to handle
25021 both ix86_isa_flags and ix86_isa_flags2.
25022 (define_builtin_const): Likewise.
25023 (define_builtin_pure): Likewise.
25024 (define_builtin2): Deleted.
25025 (define_builtin_const2): Likewise.
25026 (builtin_description): Add a member, mask2.
25027 (bdesc_*): Add mask2 to builtin initializations.
25028 (ix86_init_mmx_sse_builtins): Update calls to def_builtin,
25029 def_builtin_const and def_builtin_pure. Remove SPECIAL_ARGS2
25030 support.
25031 (ix86_get_builtin_func_type): Remove SPECIAL_ARGS2 support.
25032
25033 2019-01-22 H.J. Lu <hongjiu.lu@intel.com>
25034
25035 PR target/88954
25036 * config/i386/i386.c (ix86_force_load_from_GOT_p): Also check
25037 noplt attribute.
25038
25039 2019-01-22 Richard Earnshaw <rearnsha@arm.com>
25040
25041 PR target/88469
25042 * config/arm/arm.c (arm_needs_doubleword_align): Return 2 if a record's
25043 alignment is dominated by a bitfield with 64-bit aligned base type.
25044 (arm_function_arg): Emit a warning if the alignment has changed since
25045 earlier GCC releases.
25046 (arm_function_arg_boundary): Likewise.
25047 (arm_setup_incoming_varargs): Likewise.
25048
25049 2019-01-22 Richard Biener <rguenther@suse.de>
25050
25051 PR tree-optimization/88862
25052 * graphite-scop-detection.c
25053 (scop_detection::graphite_can_represent_scev): Reject ADDR_EXPR.
25054
25055 2019-01-22 Andrew Stubbs <ams@codesourcery.com>
25056
25057 * doc/extend.tex (AMD GCN Function Attributes): New section.
25058 * doc/install.texi (amdgcn-unknown-amdhsa): New instructions.
25059 * doc/invoke.texi (AMD GCN Options): New section.
25060 * doc/md.texi (Constraints for Particular Machines): Add AMD GCN.
25061
25062 2019-01-22 Eric Botcazou <ebotcazou@adacore.com>
25063
25064 * config/sparc/sparc.c (parc_delegitimize_address): Recognize the GOT
25065 register and decoded HIGH/LO_SUM combinations for labels in PIC mode.
25066
25067 2019-01-22 Jakub Jelinek <jakub@redhat.com>
25068
25069 PR tree-optimization/88044
25070 * tree-ssa-loop-niter.c (number_of_iterations_cond): If condition
25071 is false in the first iteration, but !every_iteration, return false
25072 instead of true with niter->niter zero.
25073
25074 PR rtl-optimization/88904
25075 * cfgcleanup.c (thread_jump): Verify cond2 doesn't mention
25076 any nonequal registers before processing BB_END (b).
25077
25078 PR target/88905
25079 * optabs.c (add_equal_note): Add op0_mode argument, use it instead of
25080 GET_MODE (op0).
25081 (expand_binop_directly, expand_doubleword_clz,
25082 expand_doubleword_popcount, expand_ctz, expand_ffs,
25083 expand_unop_direct, maybe_emit_unop_insn): Adjust callers.
25084
25085 PR rtl-optimization/49429
25086 PR target/49454
25087 PR rtl-optimization/86334
25088 PR target/88906
25089 * expr.c (emit_block_move_hints): Move marking of MEM_EXPRs
25090 addressable from here...
25091 (emit_block_op_via_libcall): ... to here.
25092
25093 2019-01-22 Richard Biener <rguenther@suse.de>
25094
25095 * tree-vect-loop.c (vect_analyze_loop_operations): Use
25096 auto_vec for cost vector to fix memleak.
25097 (vectorize_fold_left_reduction): Properly gather SLP defs.
25098 (vectorizable_comparison): Do not swap operands to properly
25099 gather SLP defs.
25100
25101 2019-01-22 Alan Modra <amodra@gmail.com>
25102
25103 PR target/88614
25104 * config/rs6000/predicates.md (unspec_tls): Ensure GOT reg
25105 stays a reg. Allow a const_int.
25106 * config/rs6000/rs6000-protos.h (rs6000_output_tlsargs): Declare.
25107 * config/rs6000/rs6000.h (IS_V4_FP_ARGS): Define.
25108 (IS_NOMARK_TLSGETADDR): Define.
25109 * config/rs6000/rs6000.c (edit_tls_call_insn): Delete.
25110 (rs6000_output_tlsargs): New function.
25111 (rs6000_legitimize_tls_address): Don't say a !TARGET_TLS_MARKERS
25112 __tls_get_addr call takes an arg.
25113 (rs6000_call_sysv): Generate sysv4 secure plt call pattern here..
25114 * config/rs6000/rs6000.md (call_nonlocal_sysv): ..rather than here,
25115 delete split..
25116 (call_value_nonlocal_sysv): ..or here, delete split.
25117 (tls_gdld_nomark): Delete.
25118 (call_value_indirect_nonlocal_sysv): Use unspec_tls as operand2
25119 predicate. Call rs6000_output_tlsargs. Adjust length to suit.
25120 (call_value_nonlocal_sysv): Likewise.
25121 (call_value_nonlocal_sysv_secure): Likewise.
25122 (call_value_nonlocal_aix): Likewise.
25123 (call_value_indirect_aix): Likewise.
25124 (call_value_indirect_elfv2): Likewise.
25125 (call_value_local32, call_value_local64): Disable for no-mark tls.
25126 (call_value_local_aix): Likewise.
25127
25128 2019-01-21 Uroš Bizjak <ubizjak@gmail.com>
25129
25130 PR target/88938
25131 * config/i386/i386.c (ix86_expand_builtin) [case IX86_BUILTIN_BEXTRI32,
25132 case IX86_BUILTIN_BEXTRI64]: Sanitize operands.
25133
25134 2019-01-21 Michael Ploujnikov <michael.ploujnikov@oracle.com>
25135
25136 * hash-map-tests.c (test_map_of_strings_to_int): Show how to use
25137 string contents as hash_map keys.
25138
25139 2019-01-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
25140
25141 PR c/88928
25142 * c-warn.c (check_alignment_of_packed_member): Add a boolean parameter
25143 for rvalue context. Handle rvalues correctly. Use min_align_of_type
25144 instead of TYPE_ALIGN.
25145 (check_address_or_pointer_of_packed_member): Handle rvalues coorrectly.
25146 Use min_align_of_type instead of TYPE_ALIGN_UNIT. Check for NULL
25147 pointer from TYPE_STUB_DECL.
25148
25149 2019-01-21 Richard Biener <rguenther@suse.de>
25150
25151 PR tree-optimization/88934
25152 * tree-vect-slp.c (vect_mask_constant_operand_p): Always look
25153 at the possibly non-constant operand.
25154 (vect_get_constant_vectors): Adjust.
25155
25156 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
25157
25158 PR target/71659
25159 * config/i386/adxintrin.h: Just check _IMMINTRIN_H_INCLUDED.
25160 * config/i386/clflushoptintrin.h: Check _IMMINTRIN_H_INCLUDED
25161 instead of _X86INTRIN_H_INCLUDED.
25162 * onfig/i386/clwbintrin.h: Likewise.
25163 * config/i386/pkuintrin.h: Likewise.
25164 * config/i386/prfchwintrin.h: Likewise.
25165 * config/i386/rdseedintrin.h: Likewise.
25166 * config/i386/wbnoinvdintrin.h: Likewise.
25167 * config/i386/xsavecintrin.h: Likewise.
25168 * config/i386/xsavesintrin.h: Likewise.
25169 * config/i386/fxsrintrin.h: Enable _IMMINTRIN_H_INCLUDED check.
25170 * config/i386/xsaveintrin.h: Likewise.
25171 * config/i386/xsaveoptintrin.h: Likewise.
25172 * config/i386/x86intrin.h: Move "#include" <rdseedintrin.h>,
25173 <prfchwintrin.h>, <fxsrintrin.h>, <xsaveintrin.h>,
25174 <xsaveoptintrin.h>, <adxintrin.h>, <clwbintrin.h>,
25175 <clflushoptintrin.h>, <xsavesintrin.h>, <xsavecintrin.h>,
25176 <wbnoinvdintrin.h> and <pkuintrin.h> to ...
25177 * config/i386/immintrin.h: Here.
25178
25179 2019-01-20 Martin Jambor <mjambor@suse.cz>
25180
25181 PR ipa/87615
25182 * ipa-prop.h (struct ipa_func_body_info): Replaced field aa_walked
25183 with aa_walk_budget.
25184 * cgraph.h (ipa_polymorphic_call_context::get_dynamic_type): Add
25185 aa_walk_budget_p parameter.
25186 * ipa-fnsummary.c (unmodified_parm_1): New parameter fbi. Limit AA
25187 walk. Updated all callers.
25188 (unmodified_parm): New parameter fbi, pass it to unmodified_parm_1.
25189 (eliminated_by_inlining_prob): New parameter fbi, pass it on to
25190 unmodified_parm.
25191 (will_be_nonconstant_expr_predicate): New parameter fbi, removed
25192 parameter info. Extract info from fbi. Pass fbi to recursive calls
25193 and to unmodified_parm.
25194 (phi_result_unknown_predicate): New parameter fbi, removed parameter
25195 info, updated call to will_be_nonconstant_expr_predicate.
25196 (param_change_prob): New parameter fbi, limit AA walking.
25197 (analyze_function_body): Initialize aa_walk_budget in fbi. Update
25198 calls to various above functions.
25199 * ipa-polymorphic-call.c (get_dynamic_type): Add aa_walk_budget_p
25200 parameter. Use it to limit AA walking.
25201 * ipa-prop.c (detect_type_change_from_memory_writes): New parameter
25202 fbi, limit AA walk.
25203 (detect_type_change): New parameter fbi, pass it on to
25204 detect_type_change_from_memory_writes.
25205 (detect_type_change_ssa): Likewise.
25206 (aa_overwalked): Removed.
25207 (parm_preserved_before_stmt_p): Assume fbi is never NULL, stream line
25208 accordingly, adjust to the neew AA limiting scheme.
25209 (parm_ref_data_preserved_p): Likewise.
25210 (ipa_compute_jump_functions_for_edge): Adjust call to
25211 get_dynamic_type.
25212 (ipa_analyze_call_uses): Likewise.
25213 (ipa_analyze_virtual_call_uses): Pass fbi to detect_type_change_ssa.
25214 (ipa_analyze_node): Initialize aa_walk_budget.
25215 (ipcp_transform_function): Likewise.
25216 * tree-ssa-sccvn.c (eliminate_dom_walker::eliminate_stmt): Update call
25217 to get_dynamic_type.
25218
25219 2019-01-19 Jakub Jelinek <jakub@redhat.com>
25220
25221 * config/aarch64/aarch64.c (aarch64_stack_protect_guard): Move
25222 outside of #if CHECKING_P code.
25223
25224 2019-01-19 Richard Sandiford <richard.sandiford@arm.com>
25225
25226 * gimple-loop-versioning.cc (loop_versioning::dump_inner_likelihood):
25227 New function, split out from...
25228 (loop_versioning::analyze_stride): ...here.
25229 (loop_versioning::find_per_loop_multiplication): Use gassign.
25230 (loop_versioning::analyze_term_using_scevs): Return a success code.
25231 (loop_versioning::analyze_arbitrary_term): New function.
25232 (loop_versioning::analyze_address_fragment): Use
25233 analyze_arbitrary_term if all else fails.
25234
25235 2019-01-18 Segher Boessenkool <segher@kernel.crashing.org>
25236
25237 PR target/88892
25238 * config/rs6000/rs6000.md (*movsi_from_df): Allow only register
25239 operands.
25240
25241 2019-01-18 Richard Biener <rguenther@suse.de>
25242
25243 PR tree-optimization/88903
25244 * tree-vect-stmts.c (vectorizable_shift): Verify we see all
25245 scalar stmts a SLP shift amount is composed of when detecting
25246 shifts by scalars.
25247
25248 2019-01-18 Richard Earnshaw <rearnsha@arm.com>
25249
25250 PR target/88799
25251 * config/arm/arm-cpus.in (mp): New feature.
25252 (sec): New feature.
25253 (fgroup ARMv7ve): Add mp and sec features.
25254 (arch armv7-a): Add options to allow mp and sec extensions.
25255 (cpu generic-armv7-a): Add options to allow mp and sec extensions.
25256 (cpu cortex-a5, cpu cortex-7, cpu cortex-a9): Add mp and sec
25257 extenstions to the base architecture.
25258 (cpu cortex-a8): Add sec extension to the base architecture.
25259 (cpu marvell-pj4): Add mp and sec extensions to the base architecture.
25260 * config/arm/t-aprofile (MULTILIB_MATCHES): Map all armv7-a arch
25261 variants down to the base v7-a varaint.
25262 * config/arm/t-multilib (v7_a_arch_variants): New variable.
25263 * doc/invoke.texi (ARM Options): Add +mp and +sec to the list
25264 of permitted extensions for -march=armv7-a and for
25265 -mcpu=generic-armv7-a.
25266
25267 2019-01-18 Martin Liska <mliska@suse.cz>
25268
25269 * params.def: Fix comment.
25270 * tree-profile.c (gimple_init_gcov_profiler): Bump function
25271 name.
25272 (gimple_gen_ic_func_profiler): Likewise.
25273
25274 2019-01-18 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
25275
25276 * config/aarch64/aarch64-opts.h (enum stack_protector_guard): New
25277 * config/aarch64/aarch64.c (aarch64_override_options_internal): Handle
25278 and put in error checks for stack protector guard options.
25279 (aarch64_stack_protect_guard): New.
25280 (TARGET_STACK_PROTECT_GUARD): Define.
25281 * config/aarch64/aarch64.md (UNSPEC_SSP_SYSREG): New.
25282 (reg_stack_protect_address<mode>): New.
25283 (stack_protect_set): Adjust for SSP_GLOBAL.
25284 (stack_protect_test): Likewise.
25285 * config/aarch64/aarch64.opt (-mstack-protector-guard-reg): New.
25286 (-mstack-protector-guard): Likewise.
25287 (-mstack-protector-guard-offset): Likewise.
25288
25289 2019-01-18 Jakub Jelinek <jakub@redhat.com>
25290
25291 PR tree-optimization/86214
25292 * tree-inline.h (struct copy_body_data): Add
25293 add_clobbers_to_eh_landing_pads member.
25294 * tree-inline.c (add_clobbers_to_eh_landing_pad): New function.
25295 (copy_edges_for_bb): Call it if EH edge destination is <
25296 id->add_clobbers_to_eh_landing_pads. Fix a comment typo.
25297 (expand_call_inline): Set id->add_clobbers_to_eh_landing_pads
25298 if flag_stack_reuse != SR_NONE and clear it afterwards.
25299
25300 2019-01-18 Christophe Lyon <christophe.lyon@linaro.org>
25301
25302 PR target/85596
25303 * doc/install.texi (with-multilib-list): Document for aarch64.
25304
25305 2019-01-18 Jakub Jelinek <jakub@redhat.com>
25306
25307 PR target/88734
25308 * config/arm/arm_neon.h: Fix #pragma GCC target syntax - replace
25309 (("..."))) with ("...").
25310
25311 2019-01-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
25312
25313 * doc/extend.texi (Built-in Functions for Memory Model Aware
25314 Atomic Operations): Document atomic fetch and nand.
25315
25316 2019-01-18 Martin Liska <mliska@suse.cz>
25317 Richard Biener <rguenther@suse.de>
25318
25319 PR middle-end/88587
25320 * cgraph.h (create_version_clone_with_body): Add new argument
25321 with attributes.
25322 * cgraphclones.c (cgraph_node::create_version_clone): Add
25323 DECL_ATTRIBUTES to a newly created decl. And call
25324 valid_attribute_p so that proper cl_target_optimization_node
25325 is set for the newly created declaration.
25326 * multiple_target.c (create_target_clone): Set DECL_ATTRIBUTES
25327 for declaration.
25328 (expand_target_clones): Do not call valid_attribute_p, it must
25329 be already done.
25330 * tree-inline.c (copy_decl_for_dup_finish): Reset mode for
25331 vector types.
25332
25333 2019-01-17 Jakub Jelinek <jakub@redhat.com>
25334
25335 PR target/88734
25336 * config/aarch64/arm_neon.h: Fix #pragma GCC target syntax - replace
25337 (("..."))) with ("..."). Use arch=armv8.2-a+sha3 instead of
25338 arch=armv8.2-a+crypto for vsha512hq_u64 etc. intrinsics.
25339
25340 2019-01-17 Martin Sebor <msebor@redhat.com>
25341
25342 PR middle-end/88273
25343 * gimple-ssa-warn-restrict.c (builtin_memref::extend_offset_range):
25344 Handle anti-ranges the same as no range at all.
25345
25346 2018-01-17 Steve Ellcey <sellcey@cavium.com>
25347
25348 * config/aarch64/aarch64.c (cgraph.h): New include.
25349 (intl.h): New include.
25350 (supported_simd_type): New function.
25351 (currently_supported_simd_type): Ditto.
25352 (aarch64_simd_clone_compute_vecsize_and_simdlen): Ditto.
25353 (aarch64_simd_clone_adjust): Ditto.
25354 (aarch64_simd_clone_usable): Ditto.
25355 (TARGET_SIMD_CLONE_COMPUTE_VECSIZE_AND_SIMDLEN): New macro.
25356 (TARGET_SIMD_CLONE_ADJUST): Ditto.
25357 (TARGET_SIMD_CLONE_USABLE): Ditto.
25358 * config/i386/i386.c (ix86_simd_clone_adjust): Add definition check.
25359 * omp-simd-clone.c (expand_simd_clones): Add targetm.simd_clone.adjust
25360 call.
25361
25362 2019-01-17 Martin Sebor <msebor@redhat.com>
25363
25364 PR tree-optimization/88800
25365 * gimple-fold.c (gimple_fold_builtin_memory_op): Avoid checking
25366 NO_WARNING bit here. Avoid folding out-of-bounds calls.
25367 * gimple-ssa-warn-restrict.c (maybe_diag_offset_bounds): Remove
25368 redundant argument. Add new argument and issue diagnostics under
25369 its control. Detect out-of-bounds access even with warnings
25370 disabled.
25371 (check_bounds_or_overlap): Change return type. Add argument.
25372 (wrestrict_dom_walker::check_call): Adjust.
25373 * gimple-ssa-warn-restrict.h (check_bounds_or_overlap): Add argument.
25374 * tree-ssa-strlen.c (handle_builtin_strcpy): Adjust to change in
25375 check_bounds_or_overlap's return value.
25376 (handle_builtin_stxncpy): Same.
25377 (handle_builtin_strcat): Same.
25378
25379 2019-01-17 Andrew Stubbs <ams@codesourcery.com>
25380 Kwok Cheung Yeung <kcy@codesourcery.com>
25381 Julian Brown <julian@codesourcery.com>
25382 Tom de Vries <tom@codesourcery.com>
25383
25384 * doc/sourcebuild.texi: Document dg-add-options sqrt_insn.
25385
25386 2019-01-17 Andrew Stubbs <ams@codesourcery.com>
25387
25388 * doc/sourcebuild.texi: Document dg-require-effective-target
25389 llvm_binutils and offload_gcn.
25390
25391 2019-01-17 Andrew Stubbs <ams@codesourcery.com>
25392 Kwok Cheung Yeung <kcy@codesourcery.com>
25393 Julian Brown <julian@codesourcery.com>
25394 Tom de Vries <tom@codesourcery.com>
25395
25396 * doc/sourcebuild.texi: Document dg-required-effective-target
25397 exceptions.
25398
25399 2019-01-17 Andrew Stubbs <ams@codesourcery.com>
25400 Kwok Cheung Yeung <kcy@codesourcery.com>
25401 Julian Brown <julian@codesourcery.com>
25402 Tom de Vries <tom@codesourcery.com>
25403 Jan Hubicka <hubicka@ucw.cz>
25404 Martin Jambor <mjambor@suse.cz>
25405
25406 * config.gcc: Add amdgcn*-*-amdhsa configuration.
25407 * configure.ac: Check for dlopen.
25408 * configure: Regenerate.
25409
25410 2019-01-17 Andrew Stubbs <ams@codesourcery.com>
25411 Kwok Cheung Yeung <kcy@codesourcery.com>
25412 Julian Brown <julian@codesourcery.com>
25413 Tom de Vries <tom@codesourcery.com>
25414 Jan Hubicka <hubicka@ucw.cz>
25415 Martin Jambor <mjambor@suse.cz>
25416
25417 * common/config/gcn/gcn-common.c: New file.
25418 * config/gcn/driver-gcn.c: New file.
25419 * config/gcn/gcn-builtins.def: New file.
25420 * config/gcn/gcn-hsa.h: New file.
25421 * config/gcn/gcn-modes.def: New file.
25422 * config/gcn/gcn-opts.h: New file.
25423 * config/gcn/gcn-passes.def: New file.
25424 * config/gcn/gcn-protos.h: New file.
25425 * config/gcn/gcn-run.c: New file.
25426 * config/gcn/gcn-tree.c: New file.
25427 * config/gcn/gcn.c: New file.
25428 * config/gcn/gcn.h: New file.
25429 * config/gcn/gcn.opt: New file.
25430 * config/gcn/t-gcn-hsa: New file.
25431
25432 2019-01-17 Andrew Stubbs <ams@codesourcery.com>
25433 Kwok Cheung Yeung <kcy@codesourcery.com>
25434 Julian Brown <julian@codesourcery.com>
25435 Tom de Vries <tom@codesourcery.com>
25436 Jan Hubicka <hubicka@ucw.cz>
25437 Martin Jambor <mjambor@suse.cz>
25438
25439 * config/gcn/constraints.md: New file.
25440 * config/gcn/gcn-valu.md: New file.
25441 * config/gcn/gcn.md: New file.
25442 * config/gcn/predicates.md: New file.
25443
25444 2019-01-17 Eric Botcazou <ebotcazou@adacore.com>
25445
25446 * gimple-ssa-isolate-paths.c (stmt_uses_name_in_undefined_way): Replace
25447 flag_non_call_exceptions with cfun->can_throw_non_call_exceptions.
25448 (stmt_uses_0_or_null_in_undefined_way): Likewise.
25449 * tree-ssa-alias.c (same_addr_size_stores_p): Likewise.
25450
25451 2019-01-17 Tamar Christina <tamar.christina@arm.com>
25452
25453 PR target/88851
25454 * config/aarch64/aarch64.md (STACK_CLASH_SVE_CFA_REGNUM): New.
25455 * config/aarch64/aarch64.c (aarch64_allocate_and_probe_stack_space): Use
25456 it and document registers.
25457
25458 2019-01-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25459
25460 * config/aarch64/aarch64.c (ares_tunings): Define.
25461 * config/aarch64/aarch64-cores.def (ares): Use the above.
25462
25463 2019-01-17 Wei Xiao <wei3.xiao@intel.com>
25464
25465 PR target/88794
25466 Revert:
25467 2018-11-06 Wei Xiao <wei3.xiao@intel.com>
25468
25469 * config/i386/avx512fintrin.h: Update VFIXUPIMM* intrinsics.
25470 (_mm512_fixupimm_round_pd): Update parameters and builtin.
25471 (_mm512_maskz_fixupimm_round_pd): Ditto.
25472 (_mm512_fixupimm_round_ps): Ditto.
25473 (_mm512_maskz_fixupimm_round_ps): Ditto.
25474 (_mm_fixupimm_round_sd): Ditto.
25475 (_mm_maskz_fixupimm_round_sd): Ditto.
25476 (_mm_fixupimm_round_ss): Ditto.
25477 (_mm_maskz_fixupimm_round_ss): Ditto.
25478 (_mm512_fixupimm_pd): Ditto.
25479 (_mm512_maskz_fixupimm_pd): Ditto.
25480 (_mm512_fixupimm_ps): Ditto.
25481 (_mm512_maskz_fixupimm_ps): Ditto.
25482 (_mm_fixupimm_sd): Ditto.
25483 (_mm_maskz_fixupimm_sd): Ditto.
25484 (_mm_fixupimm_ss): Ditto.
25485 (_mm_maskz_fixupimm_ss): Ditto.
25486 (_mm512_mask_fixupimm_round_pd): Update builtin.
25487 (_mm512_mask_fixupimm_round_ps): Ditto.
25488 (_mm_mask_fixupimm_round_sd): Ditto.
25489 (_mm_mask_fixupimm_round_ss): Ditto.
25490 (_mm512_mask_fixupimm_pd): Ditto.
25491 (_mm512_mask_fixupimm_ps): Ditto.
25492 (_mm_mask_fixupimm_sd): Ditto.
25493 (_mm_mask_fixupimm_ss): Ditto.
25494 * config/i386/avx512vlintrin.h:
25495 (_mm256_fixupimm_pd): Update parameters and builtin.
25496 (_mm256_maskz_fixupimm_pd): Ditto.
25497 (_mm256_fixupimm_ps): Ditto.
25498 (_mm256_maskz_fixupimm_ps): Ditto.
25499 (_mm_fixupimm_pd): Ditto.
25500 (_mm_maskz_fixupimm_pd): Ditto.
25501 (_mm_fixupimm_ps): Ditto.
25502 (_mm_maskz_fixupimm_ps): Ditto.
25503 (_mm256_mask_fixupimm_pd): Update builtin.
25504 (_mm256_mask_fixupimm_ps): Ditto.
25505 (_mm_mask_fixupimm_pd): Ditto.
25506 (_mm_mask_fixupimm_ps): Ditto.
25507 * config/i386/i386-builtin-types.def: Add new types and remove
25508 useless ones.
25509 * config/i386/i386-builtin.def: Update builtin definitions.
25510 * config/i386/i386.c: Handle new builtin types and remove useless ones.
25511 * config/i386/sse.md: Update VFIXUPIMM* patterns.
25512 (<avx512>_fixupimm<mode>_maskz<round_saeonly_expand_name>): Update.
25513 (<avx512>_fixupimm<mode><sd_maskz_name><round_saeonly_name>): Update.
25514 (<avx512>_fixupimm<mode>_mask<round_saeonly_name>): Update.
25515 (avx512f_sfixupimm<mode>_maskz<round_saeonly_expand_name>): Update.
25516 (avx512f_sfixupimm<mode><sd_maskz_name><round_saeonly_name>): Update.
25517 (avx512f_sfixupimm<mode>_mask<round_saeonly_name>): Update.
25518 * config/i386/subst.md:
25519 (round_saeonly_sd_mask_operand4): Add new subst_attr.
25520 (round_saeonly_sd_mask_op4): Ditto.
25521 (round_saeonly_expand_operand5): Ditto.
25522 (round_saeonly_expand): Update.
25523
25524 2019-01-17 Wei Xiao <wei3.xiao@intel.com>
25525
25526 PR target/88794
25527 Revert:
25528 2018-11-12 Wei Xiao <wei3.xiao@intel.com>
25529
25530 * config/i386/sse.md: Combine VFIXUPIMM* patterns
25531 (<avx512>_fixupimm<mode>_maskz<round_saeonly_expand_name>): Update.
25532 (<avx512>_fixupimm<mode><sd_maskz_name><round_saeonly_name>): Update.
25533 (<avx512>_fixupimm<mode>_mask<round_saeonly_name>): Remove.
25534 (avx512f_sfixupimm<mode>_maskz<round_saeonly_expand_name>): Update.
25535 (avx512f_sfixupimm<mode><sd_maskz_name><round_saeonly_name>): Update.
25536 (avx512f_sfixupimm<mode>_mask<round_saeonly_name>): Remove.
25537
25538 2019-01-17 Wei Xiao <wei3.xiao@intel.com>
25539
25540 PR target/88794
25541 Revert:
25542 2018-12-15 Jakub Jelinek <jakub@redhat.com>
25543
25544 PR target/88489
25545 * config/i386/sse.md (UNSPEC_SFIXUPIMM): New unspec enumerator.
25546 (avx512f_sfixupimm<mode><mask_name><round_saeonly_name>): Use it
25547 instead of UNSPEC_FIXUPIMM.
25548
25549 2019-01-17 Richard Biener <rguenther@suse.de>
25550
25551 PR lto/86736
25552 * dwarf2out.c (want_pubnames): Never generate pubnames sections
25553 and friends for the LTO part of debug info.
25554
25555 2019-01-17 Jakub Jelinek <jakub@redhat.com>
25556
25557 PR tree-optimization/86214
25558 * cfgexpand.c (add_stack_var_conflict): Don't add any conflicts
25559 if x == y.
25560
25561 PR rtl-optimization/88870
25562 * dce.c (deletable_insn_p): Never delete const/pure calls that can
25563 throw if we can't alter the cfg or delete dead exceptions.
25564 (mark_insn): Don't call find_call_stack_args for such calls.
25565
25566 2019-01-17 Kewen Lin <linkw@gcc.gnu.org>
25567
25568 * doc/extend.texi: Add four new prototypes for vec_ld and seven new
25569 prototypes for vec_st.
25570 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add entries
25571 for scalar address type variants of altivec_vec_ld/altivec_vec_st,
25572 mainly on signed/unsigned long long and double.
25573
25574 2019-01-16 David Malcolm <dmalcolm@redhat.com>
25575
25576 PR target/88861
25577 * combine.c (delete_noop_moves): Convert to "bool" return,
25578 returning true if any edges are eliminated.
25579 (combine_instructions): Also return true if delete_noop_moves
25580 returns true.
25581
25582 2019-01-16 Tamar Christina <tamar.christina@arm.com>
25583
25584 * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Use
25585 correct max nunits for endian swap.
25586 (aarch64_expand_fcmla_builtin): Correct subreg code.
25587 * config/aarch64/aarch64-simd.md (aarch64_fcmla_lane<rot><mode>,
25588 aarch64_fcmla_laneq<rot>v4hf, aarch64_fcmlaq_lane<rot><mode>): Correct
25589 lane endianness.
25590
25591 2019-01-16 Uroš Bizjak <ubizjak@gmail.com>
25592
25593 * config/alpha/alpha.c (alpha_gimplify_va_arg):
25594 Handle split indirect COMPLEX_TYPE arguments.
25595
25596 2019-01-16 Richard Earnshaw <rearnsha@arm.com>
25597
25598 PR target/86891
25599 * config/aarch64/aarch64-modes.def: Add comment about how the carry
25600 bit is set by add and compare.
25601 (CC_ADC): New CC_MODE.
25602 * config/aarch64/aarch64.c (aarch64_select_cc_mode): Use variables
25603 to cache the code and mode of X. Adjust the shape of a CC_Cmode
25604 comparison. Add detection for CC_ADCmode.
25605 (aarch64_get_condition_code_1): Update code support for CC_Cmode. Add
25606 CC_ADCmode.
25607 * config/aarch64/aarch64.md (uaddv<mode>4): Use LTU with CCmode.
25608 (uaddvti4): Comparison result is in CC_ADCmode and the condition is GEU.
25609 (add<mode>3_compareC_cconly_imm): Delete. Merge into...
25610 (add<mode>3_compareC_cconly): ... this. Restructure the comparison
25611 to eliminate the need for zero-extending the operands.
25612 (add<mode>3_compareC_imm): Delete. Merge into ...
25613 (add<mode>3_compareC): ... this. Restructure the comparison to
25614 eliminate the need for zero-extending the operands.
25615 (add<mode>3_carryin): Use LTU for the overflow detection.
25616 (add<mode>3_carryinC): Use CC_ADCmode for the result of the carry out.
25617 Reexpress comparison for overflow.
25618 (add<mode>3_carryinC_zero): Update for change to add<mode>3_carryinC.
25619 (add<mode>3_carryinC): Likewise.
25620 (add<mode>3_carryinV): Use LTU for carry between partials.
25621 * config/aarch64/predicates.md (aarch64_carry_operation): Update
25622 handling of CC_Cmode and add CC_ADCmode.
25623 (aarch64_borrow_operation): Likewise.
25624
25625 2019-01-16 Tamar Christina <tamar.christina@arm.com>
25626
25627 * config/arm/arm-protos.h (neon_vcmla_lane_prepare_operands):
25628 Remove patternmode.
25629 * config/arm/arm.c (neon_vcmla_lane_prepare_operands): Likewise.
25630 * config/arm/neon.md (neon_vcmla_lane<rot><mode>,
25631 neon_vcmla_laneq<rot><mode>, neon_vcmlaq_lane<rot><mode>):
25632 Remove endianness conversion.
25633
25634 2019-01-16 Martin Liska <mliska@suse.cz>
25635
25636 * Makefile.in: Set TOOL_INCLUDE_DIR and NATIVE_SYSTEM_HEADER_DIR
25637 for GCC driver.
25638 * config/gnu-user.h (TARGET_F951_OPTIONS): Add 'finclude%s/' as
25639 a new argument.
25640 * gcc.c (add_sysrooted_hdrs_prefix): New function.
25641 (path_prefix_reset): Move up in the source file.
25642 (find_fortran_preinclude_file): Make complex search for the
25643 fortran header files.
25644
25645 2019-01-15 Nikhil Benesch <nikhil.benesch@gmail.com>
25646
25647 * godump.c (go_output_typedef): When outputting a typedef, refer
25648 to the underlying type by its name and not its structure.
25649
25650 2019-01-15 David Malcolm <dmalcolm@redhat.com>
25651
25652 PR c++/88795
25653 * tree.c (build_function_type): Assert that arg_types is not
25654 error_mark_node.
25655
25656 2019-01-15 Richard Sandiford <richard.sandiford@arm.com>
25657
25658 PR inline-asm/52813
25659 * doc/extend.texi: Document that listing the stack pointer in the
25660 clobber list of an asm is a deprecated feature.
25661 * common.opt (Wdeprecated): Moved from c-family/c.opt.
25662 * cfgexpand.c (asm_clobber_reg_is_valid): Issue a -Wdeprecated
25663 warning instead of an error for clobbers of the stack pointer.
25664 Add a note explaining why.
25665
25666 2019-01-15 Richard Biener <rguenther@suse.de>
25667
25668 PR debug/88046
25669 * dwarf2out.c (gen_member_die): Do not generate inheritance
25670 DIEs late.
25671
25672 2019-01-15 Richard Biener <rguenther@suse.de>
25673
25674 PR tree-optimization/88855
25675 * tree-if-conv.c (combine_blocks): Collect
25676 SSA_NAME_OCCURS_IN_ABNORMAL_PHI from propagated out virtuals.
25677
25678 2019-01-15 Tom de Vries <tdevries@suse.de>
25679
25680 PR target/80547
25681 * config/nvptx/nvptx.c (nvptx_goacc_reduction_init): Handle
25682 lhs == NULL_TREE for gang-level reduction.
25683
25684 2019-01-15 Richard Biener <rguenther@suse.de>
25685 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
25686
25687 PR ipa/88788
25688 * ipa-pure-const.c (malloc_candidate_p_1): Add parameter visited and
25689 return true if SSA_NAME is already marked in visited bitmap.
25690 (malloc_candidate_p): Pass visited to malloc_candidate_p_1.
25691
25692 2019-01-15 Jakub Jelinek <jakub@redhat.com>
25693
25694 PR tree-optimization/88775
25695 * match.pd (cmp (convert1?@2 addr@0) (convert2? addr@1)): Optimize
25696 equal == 0 equality pointer comparisons some more if compared in
25697 integral types and either one points to an automatic var and the
25698 other to a global, or we can prove at least one points to the middle
25699 or both point to start or both point to end.
25700
25701 2019-01-14 Andi Kleen <ak@linux.intel.com>
25702
25703 * Makefile.in: Lower autofdo sampling rate by 10x.
25704 * Makefile.tpl: Dito.
25705
25706 2019-01-14 Tom Honermann <tom@honermann.net>
25707
25708 * defaults.h: Define CHAR8_TYPE.
25709
25710 2019-01-14 Martin Sebor <msebor@redhat.com>
25711
25712 PR target/88638
25713 * doc/extend.texi (Darwin Format Checks): Clarify.
25714
25715 2019-01-14 Richard Biener <rguenther@suse.de>
25716
25717 * genmatch.c (dt_simplify::gen_1): Change dumping dependent on
25718 whether we are in (simplify ...) or (match ...) context.
25719
25720 2019-01-14 Jakub Jelinek <jakub@redhat.com>
25721
25722 PR rtl-optimization/88796
25723 * emit-rtl.h (struct rtl_data): Add stack_protect_guard_decl field.
25724 * cfgexpand.c (stack_protect_prologue): Initialize
25725 crtl->stack_protect_guard_decl.
25726 * function.c (stack_protect_epilogue): Use it instead of calling
25727 targetm.stack_protect_guard again.
25728 * dse.c (check_mem_read_rtx): Ignore MEM_VOLATILE_P reads from
25729 MEMs with MEM_EXPR equal to crtl->stack_protect_guard or
25730 crtl->stack_protect_guard_decl.
25731 * config/i386/i386.c (ix86_stack_protect_guard): Set TREE_THIS_VOLATILE
25732 on the returned MEM_EXPR.
25733
25734 2019-01-12 Tom de Vries <tdevries@suse.de>
25735
25736 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims_1): Alow setting
25737 vector length using -fopenacc-dim.
25738
25739 2019-01-12 Tom de Vries <tdevries@suse.de>
25740
25741 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims): Take larger vector
25742 lengths into account.
25743
25744 2019-01-12 Svante Signell <svante.signell@gmail.com>
25745
25746 * config/i386/gnu.h (TARGET_THREAD_SSP_OFFSET): Define.
25747 (TARGET_CAN_SPLIT_STACK): Define.
25748 (TARGET_THREAD_SPLIT_STACK_OFFSET): Define.
25749
25750 2019-01-05 Jan Hubicka <hubicka@ucw.cz>
25751
25752 * params.def (inline-unit-growth): Set to 40.
25753
25754 2019-01-12 Jakub Jelinek <jakub@redhat.com>
25755
25756 * tree-ssa-loop-ivopts.c (find_inv_vars): Fix a comment typo.
25757
25758 2019-01-12 Tom de Vries <tdevries@suse.de>
25759
25760 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims_1): In offloading
25761 region calling vector-partitionable routine, set default_vector_length
25762 to WARP_SIZE.
25763
25764 2019-01-12 Tom de Vries <tdevries@suse.de>
25765
25766 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims_1): Add an use new
25767 variable default_vector_length.
25768
25769 2019-01-12 Tom de Vries <tdevries@suse.de>
25770
25771 PR middle-end/88703
25772 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims_1): Apply defaults
25773 from oacc_default_dims, as oacc_validate_dims would do it, and apply
25774 dimensions limits.
25775
25776 2019-01-12 Tom de Vries <tdevries@suse.de>
25777
25778 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims_1)
25779 (nvptx_goacc_validate_dims): Add used parameter.
25780 * doc/tm.texi: Regenerate.
25781 * omp-offload.c (oacc_parse_default_dims, oacc_validate_dims): Add
25782 argument to call to targetm.goacc.validate_dims.
25783 (default_goacc_validate_dims): Add used
25784 parameter.
25785 * target.def (validate_dims): Add used parameter in DEFHOOK.
25786 * targhooks.h (default_goacc_validate_dims): Add used parameter.
25787
25788 2019-01-11 Jakub Jelinek <jakub@redhat.com>
25789
25790 PR middle-end/85956
25791 PR lto/88733
25792 * tree-inline.h (struct copy_body_data): Add adjust_array_error_bounds
25793 field.
25794 * tree-inline.c (remap_type_1): Formatting fix. If TYPE_MAX_VALUE of
25795 ARRAY_TYPE's TYPE_DOMAIN is newly error_mark_node, replace it with
25796 a dummy "omp dummy var" variable if id->adjust_array_error_bounds.
25797 * omp-low.c (new_omp_context): Set cb.adjust_array_error_bounds.
25798
25799 2019-01-11 Vladimir Makarov <vmakarov@redhat.com>
25800
25801 PR rtl-optimization/87305
25802 * lra-assigns.c
25803 (setup_live_pseudos_and_spill_after_risky_transforms): Add code
25804 for little endian pseudos used as paradoxical subreg.
25805
25806 2019-01-11 Jakub Jelinek <jakub@redhat.com>
25807
25808 PR tree-optimization/88693
25809 * tree-ssa-strlen.c (get_min_string_length): Don't set *full_string_p
25810 for STRING_CSTs that don't contain any NUL characters in the first
25811 TREE_STRING_LENGTH bytes.
25812
25813 2019-01-11 Alan Modra <amodra@gmail.com>
25814
25815 PR 88777
25816 PR 88614
25817 * genattrtab.c (min_fn): Don't translate values.
25818 (min_attr_value): Return INT_MAX when the value can't be calculated.
25819 Return minimum among any values that can be calculated.
25820 (max_attr_value): Adjust.
25821
25822 2019-01-11 Jakub Jelinek <jakub@redhat.com>
25823
25824 * Makefile.in (PLUGIN_HEADERS): Add $(INSN_ATTR_H).
25825
25826 2019-01-11 Steve Ellcey <sellcey@marvell.com>
25827
25828 * config/aarch64/aarch64.c (aarch64_simd_call_p): New function.
25829 (aarch64_hard_regno_call_part_clobbered): Add insn argument.
25830 (aarch64_return_call_with_max_clobbers): New function.
25831 (TARGET_RETURN_CALL_WITH_MAX_CLOBBERS): New macro.
25832 * config/avr/avr.c (avr_hard_regno_call_part_clobbered): Add insn
25833 argument.
25834 * config/i386/i386.c (ix86_hard_regno_call_part_clobbered): Ditto.
25835 * config/mips/mips.c (mips_hard_regno_call_part_clobbered): Ditto.
25836 * config/rs6000/rs6000.c (rs6000_hard_regno_call_part_clobbered): Ditto.
25837 * config/s390/s390.c (s390_hard_regno_call_part_clobbered): Ditto.
25838 * cselib.c (cselib_process_insn): Add argument to
25839 targetm.hard_regno_call_part_clobbered call.
25840 * ira-conflicts.c (ira_build_conflicts): Ditto.
25841 * ira-costs.c (ira_tune_allocno_costs): Ditto.
25842 * lra-constraints.c (inherit_reload_reg): Ditto.
25843 * lra-int.h (struct lra_reg): Add call_insn field, remove call_p field.
25844 * lra-lives.c (check_pseudos_live_through_calls): Add call_insn
25845 argument. Call targetm.return_call_with_max_clobbers.
25846 Add argument to targetm.hard_regno_call_part_clobbered call.
25847 (calls_have_same_clobbers_p): New function.
25848 (process_bb_lives): Add call_insn and last_call_insn variables.
25849 Pass call_insn to check_pseudos_live_through_calls.
25850 Modify if stmt to check targetm.return_call_with_max_clobbers.
25851 Update setting of flush variable.
25852 (lra_create_live_ranges_1): Set call_insn to NULL instead of call_p
25853 to false.
25854 * lra.c (initialize_lra_reg_info_element): Set call_insn to NULL.
25855 * regcprop.c (copyprop_hardreg_forward_1): Add argument to
25856 targetm.hard_regno_call_part_clobbered call.
25857 * reginfo.c (choose_hard_reg_mode): Ditto.
25858 * regrename.c (check_new_reg_p): Ditto.
25859 * reload.c (find_equiv_reg): Ditto.
25860 * reload1.c (emit_reload_insns): Ditto.
25861 * sched-deps.c (deps_analyze_insn): Ditto.
25862 * sel-sched.c (init_regs_for_mode): Ditto.
25863 (mark_unavailable_hard_regs): Ditto.
25864 * targhooks.c (default_dwarf_frame_reg_mode): Ditto.
25865 * target.def (hard_regno_call_part_clobbered): Add insn argument.
25866 (return_call_with_max_clobbers): New target function.
25867 * doc/tm.texi: Regenerate.
25868 * doc/tm.texi.in (TARGET_RETURN_CALL_WITH_MAX_CLOBBERS): New hook.
25869 * hooks.c (hook_bool_uint_mode_false): Change to
25870 hook_bool_insn_uint_mode_false.
25871 * hooks.h (hook_bool_uint_mode_false): Ditto.
25872
25873 2019-01-11 Steve Ellcey <sellcey@marvell.com>
25874
25875 * config/aarch64/aarch64.c (aarch64_simd_call_p): New function.
25876 (aarch64_remove_extra_call_preserved_regs): New function.
25877 (TARGET_REMOVE_EXTRA_CALL_PRESERVED_REGS): New macro.
25878 * doc/tm.texi.in (TARGET_REMOVE_EXTRA_CALL_PRESERVED_REGS): New hook.
25879 * doc/tm.texi: Regenerate.
25880 * final.c (get_call_reg_set_usage): Call new hook.
25881 * target.def (remove_extra_call_preserved_regs): New hook.
25882 * targhooks.c (default_remove_extra_call_preserved_regs): New function.
25883 * targhooks.h (default_remove_extra_call_preserved_regs): New function.
25884
25885 2019-01-11 Jakub Jelinek <jakub@redhat.com>
25886
25887 PR bootstrap/88714
25888 * passes.c (finish_optimization_passes): Call print_combine_total_stats
25889 inside of pass_combine_1 dump rather than pass_profile_1.
25890
25891 2019-01-11 Tom de Vries <tdevries@suse.de>
25892
25893 * config/nvptx/nvptx.c (PTX_CTA_NUM_BARRIERS, PTX_PER_CTA_BARRIER)
25894 (PTX_NUM_PER_CTA_BARRIER, PTX_FIRST_PER_WORKER_BARRIER)
25895 (PTX_NUM_PER_WORKER_BARRIERS): Define.
25896 (nvptx_apply_dim_limits): Prevent vector_length 64 and
25897 num_workers 16.
25898
25899 2019-01-11 Tom de Vries <tdevries@suse.de>
25900
25901 * config/nvptx/nvptx.c (PTX_CTA_SIZE): Move up.
25902
25903 2019-01-11 Jan Beulich <jbeulich@suse.com>
25904
25905 * config/i386/i386.md (rex64suffix): Add L suffix for SI.
25906 * config/i386/sse.md (cvtusi2<ssescalarmodesuffix>32<round_name>,
25907 sse2_cvtsi2sd): Add {l}.
25908 (sse2_cvtsi2sdq<round_name>): Make q conditional upon AT&T
25909 syntax.
25910
25911 2019-01-10 Jakub Jelinek <jakub@redhat.com>
25912
25913 PR target/88785
25914 * config/i386/sse.md (float<floatunssuffix>v2div2sf2): Turn into
25915 define_expand.
25916 (*float<floatunssuffix>v2div2sf2): New define_insn.
25917 (float<floatunssuffix>v2div2sf2_mask): Turn into define_expand.
25918 (*float<floatunssuffix>v2div2sf2_mask): New define_insn.
25919 (*float<floatunssuffix>v2div2sf2_mask_1): Replace
25920 subrtxes (const_vector:V2SF [(const_int 0) (const_int 0)]) with
25921 match_operands with "const0_operand" "C".
25922
25923 2019-01-10 Tamar Christina <tamar.christina@arm.com>
25924
25925 * config/aarch64/aarch64-builtins.c
25926 (aarch64_init_builtins): Move aarch64_init_fcmla_laneq_builtins...
25927 (aarch64_init_simd_builtins): ...Here
25928
25929 2019-01-10 Vladimir Makarov <vmakarov@redhat.com>
25930
25931 PR rtl-optimization/87305
25932 * lra-assigns.c
25933 (setup_live_pseudos_and_spill_after_risky_transforms): Check
25934 allocation for big endian pseudos used as paradoxical subregs and
25935 spill them if it is wrong.
25936 * lra-constraints.c (lra_constraints): Add a comment.
25937
25938 2019-01-10 Richard Biener <rguenther@suse.de>
25939
25940 PR tree-optimization/88792
25941 * tree-ssa-pre.c (get_representative_for): Do not return a
25942 value-number here.
25943
25944 2019-01-10 Jakub Jelinek <jakub@redhat.com>
25945
25946 PR middle-end/84877
25947 PR bootstrap/88450
25948 * function.c (assign_stack_local_1): Revert the 2018-11-21 changes.
25949 (assign_parm_setup_block): Do the argument slot realignment here
25950 instead.
25951
25952 2019-01-10 Stefan Agner <stefan@agner.ch>
25953
25954 PR target/88648
25955 * config/arm/arm.c (arm_option_override_internal): Force
25956 opts->x_inline_asm_unified to true only if TARGET_THUMB2_P.
25957
25958 2019-01-10 Jakub Jelinek <jakub@redhat.com>
25959
25960 PR c/88568
25961 * attribs.c (handle_dll_attribute): Clear TREE_STATIC after setting
25962 DECL_EXTERNAL.
25963
25964 2019-01-10 Tamar Christina <tamar.christina@arm.com>
25965
25966 * config/arm/arm-builtins.c
25967 (enum arm_type_qualifiers): Add qualifier_lane_pair_index.
25968 (MAC_LANE_PAIR_QUALIFIERS): New.
25969 (arm_expand_builtin_args): Use it.
25970 (arm_expand_builtin_1): Likewise.
25971 * config/arm/arm-protos.h (neon_vcmla_lane_prepare_operands): New.
25972 * config/arm/arm.c (neon_vcmla_lane_prepare_operands): New.
25973 * config/arm/arm-c.c (arm_cpu_builtins): Add __ARM_FEATURE_COMPLEX.
25974 * config/arm/arm_neon.h:
25975 (vcadd_rot90_f16): New.
25976 (vcaddq_rot90_f16): New.
25977 (vcadd_rot270_f16): New.
25978 (vcaddq_rot270_f16): New.
25979 (vcmla_f16): New.
25980 (vcmlaq_f16): New.
25981 (vcmla_lane_f16): New.
25982 (vcmla_laneq_f16): New.
25983 (vcmlaq_lane_f16): New.
25984 (vcmlaq_laneq_f16): New.
25985 (vcmla_rot90_f16): New.
25986 (vcmlaq_rot90_f16): New.
25987 (vcmla_rot90_lane_f16): New.
25988 (vcmla_rot90_laneq_f16): New.
25989 (vcmlaq_rot90_lane_f16): New.
25990 (vcmlaq_rot90_laneq_f16): New.
25991 (vcmla_rot180_f16): New.
25992 (vcmlaq_rot180_f16): New.
25993 (vcmla_rot180_lane_f16): New.
25994 (vcmla_rot180_laneq_f16): New.
25995 (vcmlaq_rot180_lane_f16): New.
25996 (vcmlaq_rot180_laneq_f16): New.
25997 (vcmla_rot270_f16): New.
25998 (vcmlaq_rot270_f16): New.
25999 (vcmla_rot270_lane_f16): New.
26000 (vcmla_rot270_laneq_f16): New.
26001 (vcmlaq_rot270_lane_f16): New.
26002 (vcmlaq_rot270_laneq_f16): New.
26003 (vcadd_rot90_f32): New.
26004 (vcaddq_rot90_f32): New.
26005 (vcadd_rot270_f32): New.
26006 (vcaddq_rot270_f32): New.
26007 (vcmla_f32): New.
26008 (vcmlaq_f32): New.
26009 (vcmla_lane_f32): New.
26010 (vcmla_laneq_f32): New.
26011 (vcmlaq_lane_f32): New.
26012 (vcmlaq_laneq_f32): New.
26013 (vcmla_rot90_f32): New.
26014 (vcmlaq_rot90_f32): New.
26015 (vcmla_rot90_lane_f32): New.
26016 (vcmla_rot90_laneq_f32): New.
26017 (vcmlaq_rot90_lane_f32): New.
26018 (vcmlaq_rot90_laneq_f32): New.
26019 (vcmla_rot180_f32): New.
26020 (vcmlaq_rot180_f32): New.
26021 (vcmla_rot180_lane_f32): New.
26022 (vcmla_rot180_laneq_f32): New.
26023 (vcmlaq_rot180_lane_f32): New.
26024 (vcmlaq_rot180_laneq_f32): New.
26025 (vcmla_rot270_f32): New.
26026 (vcmlaq_rot270_f32): New.
26027 (vcmla_rot270_lane_f32): New.
26028 (vcmla_rot270_laneq_f32): New.
26029 (vcmlaq_rot270_lane_f32): New.
26030 (vcmlaq_rot270_laneq_f32): New.
26031 * config/arm/arm_neon_builtins.def (vcadd90, vcadd270, vcmla0, vcmla90,
26032 vcmla180, vcmla270, vcmla_lane0, vcmla_lane90, vcmla_lane180,
26033 vcmla_lane270, vcmla_laneq0, vcmla_laneq90, vcmla_laneq180,
26034 vcmla_laneq270, vcmlaq_lane0, vcmlaq_lane90, vcmlaq_lane180,
26035 vcmlaq_lane270): New.
26036 * config/arm/neon.md (neon_vcmla_lane<rot><mode>,
26037 neon_vcmla_laneq<rot><mode>, neon_vcmlaq_lane<rot><mode>): New.
26038 * config/arm/arm.c (arm_arch8_3, arm_arch8_4): New.
26039 * config/arm/arm.h (TARGET_COMPLEX, arm_arch8_3, arm_arch8_4): New.
26040 (arm_option_reconfigure_globals): Use them.
26041 * config/arm/iterators.md (VDF, VQ_HSF): New.
26042 (VCADD, VCMLA): New.
26043 (VF_constraint, rot, rotsplit1, rotsplit2): Add V4HF and V8HF.
26044 * config/arm/neon.md (neon_vcadd<rot><mode>, neon_vcmla<rot><mode>):
26045 New.
26046 * config/arm/unspecs.md (UNSPEC_VCADD90, UNSPEC_VCADD270,
26047 UNSPEC_VCMLA, UNSPEC_VCMLA90, UNSPEC_VCMLA180, UNSPEC_VCMLA270): New.
26048
26049 2019-01-10 Tamar Christina <tamar.christina@arm.com>
26050
26051 * config/aarch64/aarch64-builtins.c (enum aarch64_type_qualifiers):
26052 Add qualifier_lane_pair_index.
26053 (emit-rtl.h): Include.
26054 (TYPES_QUADOP_LANE_PAIR): New.
26055 (aarch64_simd_expand_args): Use it.
26056 (aarch64_simd_expand_builtin): Likewise.
26057 (AARCH64_SIMD_FCMLA_LANEQ_BUILTINS, aarch64_fcmla_laneq_builtin_datum):
26058 New.
26059 (FCMLA_LANEQ_BUILTIN, AARCH64_SIMD_FCMLA_LANEQ_BUILTIN_BASE,
26060 AARCH64_SIMD_FCMLA_LANEQ_BUILTINS, aarch64_fcmla_lane_builtin_data,
26061 aarch64_init_fcmla_laneq_builtins, aarch64_expand_fcmla_builtin): New.
26062 (aarch64_init_builtins): Add aarch64_init_fcmla_laneq_builtins.
26063 (aarch64_expand_buildin): Add AARCH64_SIMD_BUILTIN_FCMLA_LANEQ0_V2SF,
26064 AARCH64_SIMD_BUILTIN_FCMLA_LANEQ90_V2SF,
26065 AARCH64_SIMD_BUILTIN_FCMLA_LANEQ180_V2SF,
26066 AARCH64_SIMD_BUILTIN_FCMLA_LANEQ2700_V2SF,
26067 AARCH64_SIMD_BUILTIN_FCMLA_LANEQ0_V4HF,
26068 AARCH64_SIMD_BUILTIN_FCMLA_LANEQ90_V4HF,
26069 AARCH64_SIMD_BUILTIN_FCMLA_LANEQ180_V4HF,
26070 AARCH64_SIMD_BUILTIN_FCMLA_LANEQ270_V4HF.
26071 * config/aarch64/iterators.md (FCMLA_maybe_lane): New.
26072 * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins):
26073 Add __ARM_FEATURE_COMPLEX.
26074 * config/aarch64/aarch64-simd-builtins.def (fcadd90, fcadd270, fcmla0,
26075 fcmla90, fcmla180, fcmla270, fcmla_lane0, fcmla_lane90, fcmla_lane180,
26076 fcmla_lane270, fcmla_laneq0, fcmla_laneq90, fcmla_laneq180,
26077 fcmla_laneq270, fcmlaq_lane0, fcmlaq_lane90, fcmlaq_lane180,
26078 fcmlaq_lane270): New.
26079 * config/aarch64/aarch64-simd.md (aarch64_fcmla_lane<rot><mode>,
26080 aarch64_fcmla_laneq<rot>v4hf, aarch64_fcmlaq_lane<rot><mode>,
26081 aarch64_fcadd<rot><mode>, aarch64_fcmla<rot><mode>): New.
26082 * config/aarch64/arm_neon.h:
26083 (vcadd_rot90_f16): New.
26084 (vcaddq_rot90_f16): New.
26085 (vcadd_rot270_f16): New.
26086 (vcaddq_rot270_f16): New.
26087 (vcmla_f16): New.
26088 (vcmlaq_f16): New.
26089 (vcmla_lane_f16): New.
26090 (vcmla_laneq_f16): New.
26091 (vcmlaq_lane_f16): New.
26092 (vcmlaq_rot90_lane_f16): New.
26093 (vcmla_rot90_laneq_f16): New.
26094 (vcmla_rot90_lane_f16): New.
26095 (vcmlaq_rot90_f16): New.
26096 (vcmla_rot90_f16): New.
26097 (vcmlaq_laneq_f16): New.
26098 (vcmla_rot180_laneq_f16): New.
26099 (vcmla_rot180_lane_f16): New.
26100 (vcmlaq_rot180_f16): New.
26101 (vcmla_rot180_f16): New.
26102 (vcmlaq_rot90_laneq_f16): New.
26103 (vcmlaq_rot270_laneq_f16): New.
26104 (vcmlaq_rot270_lane_f16): New.
26105 (vcmla_rot270_laneq_f16): New.
26106 (vcmlaq_rot270_f16): New.
26107 (vcmla_rot270_f16): New.
26108 (vcmlaq_rot180_laneq_f16): New.
26109 (vcmlaq_rot180_lane_f16): New.
26110 (vcmla_rot270_lane_f16): New.
26111 (vcadd_rot90_f32): New.
26112 (vcaddq_rot90_f32): New.
26113 (vcaddq_rot90_f64): New.
26114 (vcadd_rot270_f32): New.
26115 (vcaddq_rot270_f32): New.
26116 (vcaddq_rot270_f64): New.
26117 (vcmla_f32): New.
26118 (vcmlaq_f32): New.
26119 (vcmlaq_f64): New.
26120 (vcmla_lane_f32): New.
26121 (vcmla_laneq_f32): New.
26122 (vcmlaq_lane_f32): New.
26123 (vcmlaq_laneq_f32): New.
26124 (vcmla_rot90_f32): New.
26125 (vcmlaq_rot90_f32): New.
26126 (vcmlaq_rot90_f64): New.
26127 (vcmla_rot90_lane_f32): New.
26128 (vcmla_rot90_laneq_f32): New.
26129 (vcmlaq_rot90_lane_f32): New.
26130 (vcmlaq_rot90_laneq_f32): New.
26131 (vcmla_rot180_f32): New.
26132 (vcmlaq_rot180_f32): New.
26133 (vcmlaq_rot180_f64): New.
26134 (vcmla_rot180_lane_f32): New.
26135 (vcmla_rot180_laneq_f32): New.
26136 (vcmlaq_rot180_lane_f32): New.
26137 (vcmlaq_rot180_laneq_f32): New.
26138 (vcmla_rot270_f32): New.
26139 (vcmlaq_rot270_f32): New.
26140 (vcmlaq_rot270_f64): New.
26141 (vcmla_rot270_lane_f32): New.
26142 (vcmla_rot270_laneq_f32): New.
26143 (vcmlaq_rot270_lane_f32): New.
26144 (vcmlaq_rot270_laneq_f32): New.
26145 * config/aarch64/aarch64.h (TARGET_COMPLEX): New.
26146 * config/aarch64/iterators.md (UNSPEC_FCADD90, UNSPEC_FCADD270,
26147 UNSPEC_FCMLA, UNSPEC_FCMLA90, UNSPEC_FCMLA180, UNSPEC_FCMLA270): New.
26148 (FCADD, FCMLA): New.
26149 (rot): New.
26150 * config/arm/types.md (neon_fcadd, neon_fcmla): New.
26151
26152 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
26153
26154 PR other/16615
26155
26156 * config/pa/pa.c: Change "can not" to "cannot".
26157 * gimple-ssa-evrp-analyze.c: Likewise.
26158 * ipa-icf.c: Likewise.
26159 * ipa-polymorphic-call.c: Likewise.
26160 * ipa-pure-const.c: Likewise.
26161 * lra-constraints.c: Likewise.
26162 * lra-remat.c: Likewise.
26163 * reload1.c: Likewise.
26164 * reorg.c: Likewise.
26165 * tree-ssa-uninit.c: Likewise.
26166
26167 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
26168
26169 PR other/16615
26170
26171 * Makefile.in: Mechanically replace "can not" with "cannot".
26172 * alias.c: Likewise.
26173 * builtins.c: Likewise.
26174 * calls.c: Likewise.
26175 * cgraph.c: Likewise.
26176 * cgraph.h: Likewise.
26177 * cgraphclones.c: Likewise.
26178 * cgraphunit.c: Likewise.
26179 * combine-stack-adj.c: Likewise.
26180 * combine.c: Likewise.
26181 * common/config/i386/i386-common.c: Likewise.
26182 * config/aarch64/aarch64.c: Likewise.
26183 * config/alpha/sync.md: Likewise.
26184 * config/arc/arc.c: Likewise.
26185 * config/arc/predicates.md: Likewise.
26186 * config/arm/arm-c.c: Likewise.
26187 * config/arm/arm.c: Likewise.
26188 * config/arm/arm.h: Likewise.
26189 * config/arm/arm.md: Likewise.
26190 * config/arm/cortex-r4f.md: Likewise.
26191 * config/csky/csky.c: Likewise.
26192 * config/csky/csky.h: Likewise.
26193 * config/darwin-f.c: Likewise.
26194 * config/epiphany/epiphany.md: Likewise.
26195 * config/i386/i386.c: Likewise.
26196 * config/i386/sol2.h: Likewise.
26197 * config/m68k/m68k.c: Likewise.
26198 * config/mcore/mcore.h: Likewise.
26199 * config/microblaze/microblaze.md: Likewise.
26200 * config/mips/20kc.md: Likewise.
26201 * config/mips/sb1.md: Likewise.
26202 * config/nds32/nds32.c: Likewise.
26203 * config/nds32/predicates.md: Likewise.
26204 * config/pa/pa.c: Likewise.
26205 * config/rs6000/e300c2c3.md: Likewise.
26206 * config/rs6000/rs6000.c: Likewise.
26207 * config/s390/s390.h: Likewise.
26208 * config/sh/sh.c: Likewise.
26209 * config/sh/sh.md: Likewise.
26210 * config/spu/vmx2spu.h: Likewise.
26211 * cprop.c: Likewise.
26212 * dbxout.c: Likewise.
26213 * df-scan.c: Likewise.
26214 * doc/cfg.texi: Likewise.
26215 * doc/extend.texi: Likewise.
26216 * doc/fragments.texi: Likewise.
26217 * doc/gty.texi: Likewise.
26218 * doc/invoke.texi: Likewise.
26219 * doc/lto.texi: Likewise.
26220 * doc/md.texi: Likewise.
26221 * doc/objc.texi: Likewise.
26222 * doc/rtl.texi: Likewise.
26223 * doc/tm.texi: Likewise.
26224 * dse.c: Likewise.
26225 * emit-rtl.c: Likewise.
26226 * emit-rtl.h: Likewise.
26227 * except.c: Likewise.
26228 * expmed.c: Likewise.
26229 * expr.c: Likewise.
26230 * fold-const.c: Likewise.
26231 * genautomata.c: Likewise.
26232 * gimple-fold.c: Likewise.
26233 * hard-reg-set.h: Likewise.
26234 * ifcvt.c: Likewise.
26235 * ipa-comdats.c: Likewise.
26236 * ipa-cp.c: Likewise.
26237 * ipa-devirt.c: Likewise.
26238 * ipa-fnsummary.c: Likewise.
26239 * ipa-icf.c: Likewise.
26240 * ipa-inline-transform.c: Likewise.
26241 * ipa-inline.c: Likewise.
26242 * ipa-polymorphic-call.c: Likewise.
26243 * ipa-profile.c: Likewise.
26244 * ipa-prop.c: Likewise.
26245 * ipa-pure-const.c: Likewise.
26246 * ipa-reference.c: Likewise.
26247 * ipa-split.c: Likewise.
26248 * ipa-visibility.c: Likewise.
26249 * ipa.c: Likewise.
26250 * ira-build.c: Likewise.
26251 * ira-color.c: Likewise.
26252 * ira-conflicts.c: Likewise.
26253 * ira-costs.c: Likewise.
26254 * ira-int.h: Likewise.
26255 * ira-lives.c: Likewise.
26256 * ira.c: Likewise.
26257 * ira.h: Likewise.
26258 * loop-invariant.c: Likewise.
26259 * loop-unroll.c: Likewise.
26260 * lower-subreg.c: Likewise.
26261 * lra-assigns.c: Likewise.
26262 * lra-constraints.c: Likewise.
26263 * lra-eliminations.c: Likewise.
26264 * lra-lives.c: Likewise.
26265 * lra-remat.c: Likewise.
26266 * lra-spills.c: Likewise.
26267 * lra.c: Likewise.
26268 * lto-cgraph.c: Likewise.
26269 * lto-streamer-out.c: Likewise.
26270 * postreload-gcse.c: Likewise.
26271 * predict.c: Likewise.
26272 * profile-count.h: Likewise.
26273 * profile.c: Likewise.
26274 * recog.c: Likewise.
26275 * ree.c: Likewise.
26276 * reload.c: Likewise.
26277 * reload1.c: Likewise.
26278 * reorg.c: Likewise.
26279 * resource.c: Likewise.
26280 * rtl.def: Likewise.
26281 * rtl.h: Likewise.
26282 * rtlanal.c: Likewise.
26283 * sched-deps.c: Likewise.
26284 * sched-ebb.c: Likewise.
26285 * sched-rgn.c: Likewise.
26286 * sel-sched-ir.c: Likewise.
26287 * sel-sched.c: Likewise.
26288 * shrink-wrap.c: Likewise.
26289 * simplify-rtx.c: Likewise.
26290 * symtab.c: Likewise.
26291 * target.def: Likewise.
26292 * toplev.c: Likewise.
26293 * tree-call-cdce.c: Likewise.
26294 * tree-cfg.c: Likewise.
26295 * tree-complex.c: Likewise.
26296 * tree-core.h: Likewise.
26297 * tree-eh.c: Likewise.
26298 * tree-inline.c: Likewise.
26299 * tree-loop-distribution.c: Likewise.
26300 * tree-nrv.c: Likewise.
26301 * tree-profile.c: Likewise.
26302 * tree-sra.c: Likewise.
26303 * tree-ssa-alias.c: Likewise.
26304 * tree-ssa-dce.c: Likewise.
26305 * tree-ssa-dom.c: Likewise.
26306 * tree-ssa-forwprop.c: Likewise.
26307 * tree-ssa-loop-im.c: Likewise.
26308 * tree-ssa-loop-ivcanon.c: Likewise.
26309 * tree-ssa-loop-ivopts.c: Likewise.
26310 * tree-ssa-loop-niter.c: Likewise.
26311 * tree-ssa-phionlycprop.c: Likewise.
26312 * tree-ssa-phiopt.c: Likewise.
26313 * tree-ssa-propagate.c: Likewise.
26314 * tree-ssa-threadedge.c: Likewise.
26315 * tree-ssa-threadupdate.c: Likewise.
26316 * tree-ssa-uninit.c: Likewise.
26317 * tree-ssanames.c: Likewise.
26318 * tree-streamer-out.c: Likewise.
26319 * tree.c: Likewise.
26320 * tree.h: Likewise.
26321 * vr-values.c: Likewise.
26322
26323 2019-01-09 Uroš Bizjak <ubizjak@gmail.com>
26324
26325 * config/i386/i386-protos.h (ix86_expand_xorsign): New prototype.
26326 (ix86_split_xorsign): Ditto.
26327 * config/i386/i386.c (ix86_expand_xorsign): New function.
26328 (ix86_split_xorsign): Ditto.
26329 * config/i386/i386.md (UNSPEC_XORSIGN): New unspec.
26330 (xorsign<mode>3): New expander.
26331 (xorsign<mode>3_1): New insn_and_split pattern.
26332 * config/i386/sse.md (xorsign<mode>3): New expander.
26333
26334 2019-01-09 Eric Botcazou <ebotcazou@adacore.com>
26335
26336 * config/sparc/sparc.md (*tablejump_sp32): Merge into...
26337 (*tablejump_sp64): Likewise.
26338 (*tablejump<P:mode>): ...this.
26339 (*call_address_sp32): Merge into...
26340 (*call_address_sp64): Likewise.
26341 (*call_address<P:mode>): ...this.
26342 (*call_symbolic_sp32): Merge into...
26343 (*call_symbolic_sp64): Likewise.
26344 (*call_symbolic<P:mode>): ...this.
26345 (call_value): Remove constraint and add predicate.
26346 (*call_value_address_sp32): Merge into...
26347 (*call_value_address_sp64): Likewise.
26348 (*call_value_address<P:mode>): ...this.
26349 (*call_value_symbolic_sp32): Merge into...
26350 (*call_value_symbolic_sp64): Likewise.
26351 (*call_value_symbolic<P:mode>): ...this.
26352 (*sibcall_symbolic_sp32): Merge into...
26353 (*sibcall_symbolic_sp64): Likewise.
26354 (*sibcall_symbolic<P:mode>): ...this.
26355 (sibcall_value): Remove constraint and add predicate.
26356 (*sibcall_value_symbolic_sp32): Merge into...
26357 (*sibcall_value_symbolic_sp64): Likewise.
26358 (*sibcall_value_symbolic<P:mode>): ...this.
26359 (window_save): Minor tweak.
26360 (*branch_sp32): Merge into...
26361 (*branch_sp64): Likewise.
26362 (*branch<P:mode>): ...this.
26363
26364 2019-01-09 Eric Botcazou <ebotcazou@adacore.com>
26365 James Clarke <jrtc27@jrtc27.com>
26366
26367 PR target/84010
26368 * config/sparc/sparc.c (sparc_legitimize_tls_address): Only use Pmode
26369 consistently in TLS address generation and adjust code to the renaming
26370 of patterns. Mark calls to __tls_get_addr as const.
26371 * config/sparc/sparc.md (tgd_hi22): Turn into...
26372 (tgd_hi22<P:mode>): ...this and use Pmode throughout.
26373 (tgd_lo10): Turn into...
26374 (tgd_lo10<P:mode>): ...this and use Pmode throughout.
26375 (tgd_add32): Merge into...
26376 (tgd_add64): Likewise.
26377 (tgd_add<P:mode>): ...this and use Pmode throughout.
26378 (tldm_hi22): Turn into...
26379 (tldm_hi22<P:mode>): ...this and use Pmode throughout.
26380 (tldm_lo10): Turn into...
26381 (tldm_lo10<P:mode>): ...this and use Pmode throughout.
26382 (tldm_add32): Merge into...
26383 (tldm_add64): Likewise.
26384 (tldm_add<P:mode>): ...this and use Pmode throughout.
26385 (tldm_call32): Merge into...
26386 (tldm_call64): Likewise.
26387 (tldm_call<P:mode>): ...this and use Pmode throughout.
26388 (tldo_hix22): Turn into...
26389 (tldo_hix22<P:mode>): ...this and use Pmode throughout.
26390 (tldo_lox10): Turn into...
26391 (tldo_lox10<P:mode>): ...this and use Pmode throughout.
26392 (tldo_add32): Merge into...
26393 (tldo_add64): Likewise.
26394 (tldo_add<P:mode>): ...this and use Pmode throughout.
26395 (tie_hi22): Turn into...
26396 (tie_hi22<P:mode>): ...this and use Pmode throughout.
26397 (tie_lo10): Turn into...
26398 (tie_lo10<P:mode>): ...this and use Pmode throughout.
26399 (tie_ld64): Use DImode throughout.
26400 (tie_add32): Merge into...
26401 (tie_add64): Likewise.
26402 (tie_add<P:mode>): ...this and use Pmode throughout.
26403 (tle_hix22_sp32): Merge into...
26404 (tle_hix22_sp64): Likewise.
26405 (tle_hix22<P:mode>): ...this and use Pmode throughout.
26406 (tle_lox22_sp32): Merge into...
26407 (tle_lox22_sp64): Likewise.
26408 (tle_lox22<P:mode>): ...this and use Pmode throughout.
26409 (*tldo_ldub_sp32): Merge into...
26410 (*tldo_ldub_sp64): Likewise.
26411 (*tldo_ldub<P:mode>): ...this and use Pmode throughout.
26412 (*tldo_ldub1_sp32): Merge into...
26413 (*tldo_ldub1_sp64): Likewise.
26414 (*tldo_ldub1<P:mode>): ...this and use Pmode throughout.
26415 (*tldo_ldub2_sp32): Merge into...
26416 (*tldo_ldub2_sp64): Likewise.
26417 (*tldo_ldub2<P:mode>): ...this and use Pmode throughout.
26418 (*tldo_ldsb1_sp32): Merge into...
26419 (*tldo_ldsb1_sp64): Likewise.
26420 (*tldo_ldsb1<P:mode>): ...this and use Pmode throughout.
26421 (*tldo_ldsb2_sp32): Merge into...
26422 (*tldo_ldsb2_sp64): Likewise.
26423 (*tldo_ldsb2<P:mode>): ...this and use Pmode throughout.
26424 (*tldo_ldub3_sp64): Use DImode throughout.
26425 (*tldo_ldsb3_sp64): Likewise.
26426 (*tldo_lduh_sp32): Merge into...
26427 (*tldo_lduh_sp64): Likewise.
26428 (*tldo_lduh<P:mode>): ...this and use Pmode throughout.
26429 (*tldo_lduh1_sp32): Merge into...
26430 (*tldo_lduh1_sp64): Likewise.
26431 (*tldo_lduh1<P:mode>): ...this and use Pmode throughout.
26432 (*tldo_ldsh1_sp32): Merge into...
26433 (*tldo_ldsh1_sp64): Likewise.
26434 (*tldo_ldsh1<P:mode>): ...this and use Pmode throughout.
26435 (*tldo_lduh2_sp64): Use DImode throughout.
26436 (*tldo_ldsh2_sp64): Likewise.
26437 (*tldo_lduw_sp32): Merge into...
26438 (*tldo_lduw_sp64): Likewise.
26439 (*tldo_lduw<P:mode>): ...this and use Pmode throughout.
26440 (*tldo_lduw1_sp64): Use DImode throughout.
26441 (*tldo_ldsw1_sp64): Likewise.
26442 (*tldo_ldx_sp64): Likewise.
26443 (*tldo_stb_sp32): Merge into...
26444 (*tldo_stb_sp64): Likewise.
26445 (*tldo_stb<P:mode>): ...this and use Pmode throughout.
26446 (*tldo_sth_sp32): Merge into...
26447 (*tldo_sth_sp64): Likewise.
26448 (*tldo_sth<P:mode>): ...this and use Pmode throughout.
26449 (*tldo_stw_sp32): Merge into...
26450 (*tldo_stw_sp64): Likewise.
26451 (*tldo_stw<P:mode>): ...this and use Pmode throughout.
26452 (*tldo_stx_sp64): Use DImode throughout.
26453
26454 2018-01-09 Sudakshina Das <sudi.das@arm.com>
26455
26456 * config/aarch64/aarch64.c (aarch64_override_options): Add case to
26457 check configure option to set BTI and Return Address Signing.
26458 * configure.ac: Add --enable-standard-branch-protection and
26459 --disable-standard-branch-protection.
26460 * configure: Regenerated.
26461 * doc/install.texi: Document the same.
26462
26463 2018-01-09 Sudakshina Das <sudi.das@arm.com>
26464 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
26465
26466 * config.gcc (aarch64*-*-*): Add aarch64-bti-insert.o.
26467 * config/aarch64/aarch64.h: Update comment for TRAMPOLINE_SIZE.
26468 * config/aarch64/aarch64.c (aarch64_asm_trampoline_template): Update
26469 if bti is enabled.
26470 * config/aarch64/aarch64-bti-insert.c: New file.
26471 * config/aarch64/aarch64-passes.def (INSERT_PASS_BEFORE): Insert bti
26472 pass.
26473 * config/aarch64/aarch64-protos.h (make_pass_insert_bti): Declare the
26474 new bti pass.
26475 * config/aarch64/aarch64.md (unspecv): Add UNSPECV_BTI_NOARG,
26476 UNSPECV_BTI_C, UNSPECV_BTI_J and UNSPECV_BTI_JC.
26477 (bti_noarg, bti_j, bti_c, bti_jc): New define_insns.
26478 * config/aarch64/t-aarch64: Add rule for aarch64-bti-insert.o.
26479
26480 2018-01-09 Sudakshina Das <sudi.das@arm.com>
26481
26482 * config/aarch64/aarch64-protos.h (aarch64_bti_enabled): Declare.
26483 * config/aarch64/aarch64.c (aarch64_handle_no_branch_protection):
26484 Disable bti for -mbranch-protection=none.
26485 (aarch64_handle_standard_branch_protection): Enable bti for
26486 -mbranch-protection=standard.
26487 (aarch64_handle_bti_protection): Enable bti for "bti" in the string to
26488 -mbranch-protection.
26489 (aarch64_bti_enabled): Check if bti is enabled.
26490 * config/aarch64/aarch64.opt: Declare target variable.
26491 * doc/invoke.texi: Add bti to the -mbranch-protection documentation.
26492
26493 2018-01-09 Sudakshina Das <sudi.das@arm.com>
26494
26495 * config/aarch64/aarch64.c (aarch64_expand_prologue): Use new
26496 epilogue/prologue scratch registers EP0_REGNUM and EP1_REGNUM.
26497 (aarch64_expand_epilogue): Likewise.
26498 (aarch64_output_mi_thunk): Likewise.
26499 * config/aarch64/aarch64.h (REG_CLASS_CONTENTS): Change
26500 TAILCALL_ADDR_REGS to x16 and x17.
26501 * config/aarch64/aarch64.md: Define EP0_REGNUM and EP1_REGNUM.
26502
26503 2018-01-09 Sudakshina Das <sudi.das@arm.com>
26504
26505 * config/aarch64/aarch64-option-extensions.def: Define
26506 AARCH64_OPT_EXTENSION for memtag, rng, sb, ssbs and predres.
26507 * config/aarch64/aarch64.h (AARCH64_FL_RNG): New.
26508 (AARCH64_FL_MEMTAG, ARCH64_FL_SB, AARCH64_FL_SSBS): New.
26509 (AARCH64_FL_PREDRES): New.
26510 (AARCH64_FL_FOR_ARCH8_5): Add AARCH64_FL_SB, AARCH64_FL_SSBS and
26511 AARCH64_FL_PREDRES by default.
26512 * doc/invoke.texi: Document rng, memtag, sb, ssbs and predres.
26513
26514 2018-01-09 Sudakshina Das <sudi.das@arm.com>
26515
26516 * config/aarch64/aarch64-arches.def: Define AARCH64_ARCH for
26517 ARMv8.5-A.
26518 * config/aarch64/aarch64.h (AARCH64_FL_V8_5): New.
26519 (AARCH64_FL_FOR_ARCH8_5, AARCH64_ISA_V8_5): New.
26520 * doc/invoke.texi: Document ARMv8.5-A.
26521
26522 2019-01-09 Alejandro Martinez <alejandro.martinezvicente@arm.com>
26523
26524 * config/aarch64/aarch64-sve.md (copysign<mode>3): New define_expand.
26525 (xorsign<mode>3): Likewise.
26526
26527 2019-01-09 Jelinek <jakub@redhat.com>
26528
26529 PR middle-end/88758
26530 * tree.c (initializer_each_zero_or_onep) <case VECTOR_CST>: Use
26531 vector_cst_elt instead of VECTOR_CST_ENCODED_ELT.
26532
26533 PR rtl-optimization/88331
26534 * function.c (assign_stack_local_1): Don't set dynamic_align_addr if
26535 not currently_expanding_to_rtl.
26536
26537 2019-01-09 Eric Botcazou <ebotcazou@adacore.com>
26538
26539 * doc/invoke.texi (-Os): Remove trailing spaces.
26540 (-finline-functions): Remove reference to -O2.
26541
26542 2019-01-08 Jakub Jelinek <jakub@redhat.com>
26543
26544 PR rtl-optimization/79593
26545 * config/i386/i386.md (reg = mem; mem = reg): New define_peephole2.
26546
26547 * config/rs6000/rs6000.c (rs6000_delegitimize_address): Delegitimize
26548 UNSPEC_FUSION_GPR to its argument. Formatting fixes.
26549
26550 2019-01-08 Eric Botcazou <ebotcazou@adacore.com>
26551
26552 PR bootstrap/88721
26553 * config/sparc/sparc.c (function_arg_slotno): Set *PPREGNO & *PPADDING
26554 to -1 on entry.
26555
26556 PR debug/88723
26557 * config/sparc/sparc.c (sparc_delegitimize_address): Deal with naked
26558 UNSPECs and UNSPEC_MOVE_GOTDATA specifically.
26559
26560 2019-01-08 H.J. Lu <hongjiu.lu@intel.com>
26561
26562 PR target/88717
26563 * config/i386/i386.c (ix86_avx_u128_mode_exit): Call
26564 ix86_avx_u128_mode_entry.
26565
26566 2019-01-08 Martin Liska <mliska@suse.cz>
26567
26568 PR tree-optimization/88753
26569 * tree-switch-conversion.c (switch_conversion::build_one_array):
26570 Come up with local variable constructor. Convert first to
26571 type of constructor values.
26572
26573 2019-01-08 Richard Biener <rguenther@suse.de>
26574
26575 PR tree-optimization/86554
26576 * tree-ssa-sccvn.c (eliminate_dom_walker, rpo_elim,
26577 rpo_avail): Move earlier.
26578 (visit_nary_op): When value-numbering to expressions
26579 with different overflow behavior make sure there's an
26580 available expression on the path.
26581
26582 2019-01-08 Sam Tebbs <sam.tebbs@arm.com>
26583
26584 * config/aarch64/aarch64.c (BRANCH_PROTECT_STR_MAX,
26585 aarch64_parse_branch_protection,
26586 struct aarch64_branch_protect_type,
26587 aarch64_handle_no_branch_protection,
26588 aarch64_handle_standard_branch_protection,
26589 aarch64_validate_mbranch_protection,
26590 aarch64_handle_pac_ret_protection,
26591 aarch64_handle_attr_branch_protection,
26592 accepted_branch_protection_string,
26593 aarch64_pac_ret_subtypes,
26594 aarch64_branch_protect_types,
26595 aarch64_handle_pac_ret_leaf): Define.
26596 (aarch64_override_options_after_change_1, aarch64_override_options):
26597 Add check for accepted_branch_protection_string.
26598 (aarch64_option_save): Save accepted_branch_protection_string.
26599 (aarch64_option_restore): Save accepted_branch_protection_string.
26600 * config/aarch64/aarch64.c (aarch64_attributes): Add branch-protection.
26601 * config/aarch64/aarch64.opt: Add mbranch-protection. Deprecate
26602 msign-return-address.
26603 * doc/invoke.texi: Add mbranch-protection.
26604
26605 2019-01-08 Alan Modra <amodra@gmail.com>
26606
26607 PR target/88614
26608 * genattrtab.c (max_attr_value, min_attr_value, or_attr_value):
26609 Delete "unknownp" parameter. Adjust callers. Handle
26610 CONST_INT, PLUS, MINUS, and MULT.
26611 (attr_value_aligned): Renamed from or_attr_value.
26612 (min_attr_value): Return INT_MIN for unhandled rtl case..
26613 (min_fn): ..and translate to INT_MAX here.
26614 (write_length_unit_log): Modify to cope without "unknown".
26615 (write_attr_value): Handle IF_THEN_ELSE.
26616
26617 2019-01-07 Richard Sandiford <richard.sandiford@arm.com>
26618
26619 * tree-vect-stmts.c (vectorizable_store): Don't use the dataref_offset
26620 optimization for masked stores.
26621
26622 2019-01-07 Richard Sandiford <richard.sandiford@arm.com>
26623
26624 PR middle-end/88567
26625 * tree-vect-loop.c (get_initial_defs_for_reduction): Pass the
26626 output vector directly to duplicate_and_interleave instead of
26627 going through a temporary. Postpone insertion of ctor_seq to
26628 the end of the loop.
26629
26630 2019-01-07 Richard Earnshaw <rearnsha@arm.com>
26631
26632 PR target/86891
26633 * config/aarch64/aarch64.c (aarch64_expand_subvti): New parameter
26634 unsigned_p. Handle signed and unsigned overflow correction as
26635 required.
26636 * config/aarch64/aarch64-protos.h (aarch64_expand_subvti): Update
26637 prototype.
26638 * config/aarch64/aarch64.md (addv<mode>4): Use aarch64_plus_operand
26639 for operand 2.
26640 (add<mode>3_compareV_imm): Make this callable for expanding.
26641 (subv<GPI:mode>4): Use register_operand for operand 1. Use
26642 aarch64_plus_operand for operand 2.
26643 (subv<GPI:mode>_insn): New insn pattern.
26644 (subv<GPI:mode>_imm): Likewise.
26645 (negv<GPI:mode>3): New expand pattern.
26646 (negv<GPI:mode>_insn): New insn pattern.
26647 (negv<GPI:mode>_cmp_only): Likewise.
26648 (cmpv<GPI:mode>_insn): Likewise.
26649 (subvti4): Use register_operand for operand 1. Update call to
26650 aarch64_expand_subvti.
26651 (usubvti4): Likewise.
26652 (negvti3): New expand pattern.
26653 (negdi_carryout): New insn pattern.
26654 (negvdi_carryinV): New insn pattern.
26655 (sub<mode3>_compare1_imm): Delete named insn pattern, make anonymous
26656 version the named version.
26657 (peepholes to convert to sub<mode3>_compare1_imm): Adjust order of
26658 operands.
26659 (usub<GPI:mode>3_carryinC, usub<GPI:mode>3_carryinC_z1): New insn
26660 patterns.
26661 (usub<GPI:mode>3_carryinC_z2, usub<GPI:mode>3_carryinC): New insn
26662 patterns.
26663 (sub<mode>3_carryinCV, sub<mode>3_carryinCV_z1_z2): Delete.
26664 (sub<mode>3_carryinCV_z1, sub<mode>3_carryinCV_z2): Delete.
26665 (sub<mode>3_carryinCV): Delete.
26666 (sub<GPI:mode>3_carryinV): New expand pattern.
26667 sub<mode>3_carryinV, sub<mode>3_carryinV_z2): New insn patterns.
26668
26669 2019-01-07 Richard Biener <rguenther@suse.de>
26670
26671 * tree-ssa-uncprop.c (ssa_equip_hash_traits): Remove in favor
26672 of tree_operand_hash.
26673
26674 2019-01-07 Richard Sandiford <richard.sandiford@arm.com>
26675
26676 PR tree-optimization/88598
26677 * tree.h (single_nonzero_element): Declare.
26678 * tree.c (single_nonzero_element): New function.
26679 * match.pd: Fold certain reductions of X & CST to X[I] & CST[I]
26680 if I is the only nonzero element of CST.
26681
26682 2019-01-07 Richard Sandiford <richard.sandiford@arm.com>
26683
26684 PR tree-optimization/88598
26685 * tree.h (initializer_each_zero_or_onep): Declare.
26686 * tree.c (initializer_each_zero_or_onep): New function.
26687 (signed_or_unsigned_type_for): Handle float types too.
26688 (unsigned_type_for, signed_type_for): Update comments accordingly.
26689 * match.pd: Fold x * { 0 or 1, 0 or 1, ...} to
26690 x & { 0 or -1, 0 or -1, ... }.
26691
26692 2019-01-07 Jonathan Wakely <jwakely@redhat.com>
26693
26694 * doc/install.texi: Replace references to x86_64-unknown-linux-gnu
26695 with x86_64-pc-linux-gnu.
26696
26697 2019-01-07 Tom de Vries <tdevries@suse.de>
26698
26699 PR target/85486
26700 * config/nvptx/nvptx.c (has_vector_partitionable_routine_calls_p): New
26701 function.
26702 (nvptx_goacc_validate_dims): Force vl32 if calling vector-partitionable
26703 routines.
26704
26705 2019-01-07 Jakub Jelinek <jakub@redhat.com>
26706
26707 * config/i386/sse.md (vec_extract<mode><ssehalfvecmodelower>): Use
26708 V_256_512 iterator instead of V_512 and TARGET_AVX instead of
26709 TARGET_AVX512F as condition.
26710
26711 PR debug/88723
26712 * dwarf2out.c (const_ok_for_output_1): Remove redundant call to
26713 const_not_ok_for_debug_p target hook.
26714 (mem_loc_descriptor) <case UNSPEC>: Only call const_ok_for_output_1
26715 on UNSPEC and subexpressions thereof if all subexpressions of the
26716 UNSPEC are CONSTANT_P.
26717
26718 PR tree-optimization/88676
26719 * tree-ssa-phiopt.c (two_value_replacement): New function.
26720 (tree_ssa_phiopt_worker): Call it.
26721
26722 PR sanitizer/88619
26723 * cfgexpand.c (expand_stack_vars): Only align prev_offset to
26724 ASAN_MIN_RED_ZONE_SIZE, not to maximum of that and alignb.
26725
26726 PR c++/85052
26727 * tree-vect-generic.c: Include insn-config.h and recog.h.
26728 (expand_vector_piecewise): Add defaulted ret_type argument,
26729 if non-NULL, use that in preference to type for the result type.
26730 (expand_vector_parallel): Formatting fix.
26731 (do_vec_conversion, do_vec_narrowing_conversion,
26732 expand_vector_conversion): New functions.
26733 (expand_vector_operations_1): Call expand_vector_conversion
26734 for VEC_CONVERT ifn calls.
26735 * internal-fn.def (VEC_CONVERT): New internal function.
26736 * internal-fn.c (expand_VEC_CONVERT): New function.
26737 * fold-const-call.c (fold_const_vec_convert): New function.
26738 (fold_const_call): Use it for CFN_VEC_CONVERT.
26739 * doc/extend.texi (__builtin_convertvector): Document.
26740
26741 2019-01-07 Tom de Vries <tdevries@suse.de>
26742
26743 * config/nvptx/nvptx-protos.h (nvptx_output_red_partition): Declare.
26744 * config/nvptx/nvptx.c (vector_red_size, vector_red_align,
26745 vector_red_partition, vector_red_sym): New global variables.
26746 (nvptx_option_override): Initialize vector_red_sym.
26747 (nvptx_declare_function_name): Restore red_partition register.
26748 (nvptx_file_end): Emit code to declare the vector reduction variables.
26749 (nvptx_output_red_partition): New function.
26750 (nvptx_expand_shared_addr): Add vector argument. Use it to handle
26751 large vector reductions.
26752 (enum nvptx_builtins): Add NVPTX_BUILTIN_VECTOR_ADDR.
26753 (nvptx_init_builtins): Add VECTOR_ADDR.
26754 (nvptx_expand_builtin): Update call to nvptx_expand_shared_addr.
26755 Handle nvptx_expand_shared_addr.
26756 (nvptx_get_shared_red_addr): Add vector argument and handle large
26757 vectors.
26758 (nvptx_goacc_reduction_setup): Add offload_attrs argument and handle
26759 large vectors.
26760 (nvptx_goacc_reduction_init): Likewise.
26761 (nvptx_goacc_reduction_fini): Likewise.
26762 (nvptx_goacc_reduction_teardown): Likewise.
26763 (nvptx_goacc_reduction): Update calls to nvptx_goacc_reduction_{setup,
26764 init,fini,teardown}.
26765 (nvptx_init_axis_predicate): Initialize vector_red_partition.
26766 (nvptx_set_current_function): Init vector_red_partition.
26767 * config/nvptx/nvptx.md (UNSPECV_RED_PART): New unspecv.
26768 (nvptx_red_partition): New insn.
26769 * config/nvptx/nvptx.h (struct machine_function): Add red_partition.
26770
26771 2019-01-07 Tom de Vries <tdevries@suse.de>
26772
26773 PR target/85381
26774 * config/nvptx/nvptx.c (nvptx_process_pars): Don't emit barriers for
26775 empty loops.
26776
26777 2019-01-07 Tom de Vries <tdevries@suse.de>
26778
26779 * config/nvptx/nvptx.c (oacc_bcast_partition): Declare.
26780 (nvptx_option_override): Init oacc_bcast_partition.
26781 (nvptx_init_oacc_workers): New function.
26782 (nvptx_declare_function_name): Call nvptx_init_oacc_workers.
26783 (nvptx_needs_shared_bcast): New function.
26784 (nvptx_find_par): Generalize to enable vectors to use shared-memory
26785 to propagate state.
26786 (nvptx_shared_propagate): Initialize vector bcast partition and
26787 synchronization state.
26788 (nvptx_single): Generalize to enable vectors to use shared-memory
26789 to propagate state.
26790 (nvptx_process_pars): Likewise.
26791 (nvptx_set_current_function): Initialize oacc_broadcast_partition.
26792 * config/nvptx/nvptx.h (struct machine_function): Add
26793 bcast_partition and sync_bar members.
26794
26795 2019-01-07 Tom de Vries <tdevries@suse.de>
26796
26797 * config/nvptx/nvptx.c (nvptx_welformed_vector_length_p)
26798 (nvptx_apply_dim_limits): New function.
26799 (nvptx_goacc_validate_dims_1): Allow PTX_MAX_VECTOR_LENGTH larger than
26800 PTX_WARP_SIZE.
26801
26802 2019-01-07 Tom de Vries <tdevries@suse.de>
26803
26804 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims_1): Move warnings to
26805 as late as possible.
26806
26807 2019-01-07 Tom de Vries <tdevries@suse.de>
26808
26809 * config/nvptx/nvptx.c (PTX_VECTOR_LENGTH): Remove.
26810 (PTX_DEFAULT_VECTOR_LENGTH, PTX_MAX_VECTOR_LENGTH): Define.
26811 (nvptx_goacc_validate_dims_1, nvptx_dim_limit)
26812 (nvptx_goacc_reduction_fini): Use PTX_DEFAULT_VECTOR_LENGTH,
26813 PTX_MAX_VECTOR_LENGTH and PTX_WARP_SIZE instead of PTX_VECTOR_LENGTH.
26814
26815 2019-01-07 Tom de Vries <tdevries@suse.de>
26816
26817 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims): Add asserts.
26818
26819 2019-01-07 Tom de Vries <tdevries@suse.de>
26820
26821 * omp-offload.c (oacc_get_min_dim): New function.
26822 * omp-offload.h (oacc_get_min_dim): Declare.
26823
26824 2018-12-26 Mateusz B <mateuszb@poczta.onet.pl>
26825
26826 PR target/88521
26827 * config/i386/i386.c (function_value_ms_64): Return small sturct in
26828 AX_REG and float/double in FIRST_SSE_REG for 4 or 8 byte modes.
26829
26830 2019-01-05 Jan Hubicka <hubicka@ucw.cz>
26831
26832 PR tree-opt/86020
26833 Revert:
26834 2017-05-22 Jan Hubicka <hubicka@ucw.cz>
26835
26836 * ipa-inline.c (edge_badness): Use inlined_time instead of
26837 inline_summaries->get.
26838
26839 2019-01-05 Jan Hubicka <hubicka@ucw.cz>
26840
26841 * opts.c (enable_fdo_optimizations): Enable
26842 version-loops-for-strides, loop-interchange, unrol-and-jam
26843 and tree-loop-distribution.
26844 * invoke.texi: Document newly enabled options.
26845
26846 2019-01-05 Jan Hubicka <hubicka@ucw.cz>
26847
26848 * doc/invoke.texi (max-inline-insns-small): New parameters.
26849 * ipa-inline.c (want_early_inline_function_p): simplify.
26850 (want_inline_small_function_p): Fix pasto from previous patch;
26851 use max-inline-insns-small bound.
26852 * params.def (max-inline-insns-small): New param.
26853 * ipa-fnsummary.c (analyze_function_body): Initialize time/size
26854 variables correctly.
26855
26856 2019-01-05 Jan Hubicka <hubicka@ucw.cz>
26857
26858 * doc/invoke.texi: Document max-inline-insns-size,
26859 uninlined-function-insns, uninlined-function-time,
26860 uninlined-thunk-insns and uninlined-thunk-time.
26861 * params.def: Add max-inline-insns-size,
26862 uninlined-function-insns, uninlined-function-time,
26863 uninlined-thunk-insns and uninlined-thunk-time.
26864 * ipa-fnsummary.c (compute_fn_summary, analyze_function_body): Use
26865 new parameters.
26866 * ipa-inline.c (can_inline_edge_by_limits_p,
26867 want_inline_small_function_p): Use new parameters.
26868
26869 2019-01-05 Jan Hubicka <hubicka@ucw.cz>
26870
26871 * ipa-fnsummary.c (analyze_function_body): Fix accounting of time.
26872
26873 2019-01-05 Jakub Jelinek <jakub@redhat.com>
26874
26875 PR middle-end/82564
26876 PR target/88620
26877 * expr.c (expand_assignment): For calls returning VLA structures
26878 if to_rtx is not a MEM, force it into a stack temporary.
26879
26880 PR debug/88635
26881 * dwarf2out.c (const_ok_for_output_1): Reject MINUS that contains
26882 SYMBOL_REF, CODE_LABEL or UNSPEC in subexpressions of second argument.
26883 Reject PLUS that contains SYMBOL_REF, CODE_LABEL or UNSPEC in
26884 subexpressions of both operands.
26885 (mem_loc_descriptor): Handle UNSPEC if target hook acks it and all the
26886 subrtxes are CONSTANT_P.
26887 * config/i386/i386.c (ix86_const_not_ok_for_debug_p): Revert
26888 2018-11-09 changes.
26889
26890 2019-01-04 Jan Hubicka <hubicka@ucw.cz>
26891
26892 * params.def (hot-bb-count-ws-permille): Set to 990.
26893
26894 2019-01-04 Martin Sebor <msebor@redhat.com>
26895
26896 PR c/88546
26897 * attribs.c (decls_mismatched_attributes): Avoid warning for attribute
26898 leaf.
26899
26900 2019-01-04 Martin Sebor <msebor@redhat.com>
26901
26902 PR c/88363
26903 * doc/extend.texi (attribute alloc_align, alloc_size): Update.
26904
26905 2019-01-04 Jakub Jelinek <jakub@redhat.com>
26906
26907 * gdbinit.in: Turn off pagination for the skip commands, restore
26908 it to previous state afterwards.
26909
26910 2019-01-04 Jakub Jelinek <jakub@redhat.com>
26911
26912 PR target/88594
26913 * config/i386/i386.c (ix86_expand_divmod_libfunc): Use mode instead
26914 of GET_MODE (opN) as modes of the libcall arguments.
26915
26916 2019-01-04 Jan Beulich <jbeulich@suse.com>
26917
26918 * config/i386/sse.md
26919 (<avx512>_cmp<mode>3<mask_scalar_merge_name><round_saeonly_name>,
26920 <avx512>_cmp<mode>3<mask_scalar_merge_name>,
26921 <avx512>_ucmp<mode>3<mask_scalar_merge_name>,
26922 <avx512>_ucmp<mode>3<mask_scalar_merge_name>,
26923 avx512f_vmcmp<mode>3<round_saeonly_name>,
26924 avx512f_vmcmp<mode>3_mask<round_saeonly_name>,
26925 avx512f_maskcmp<mode>3,
26926 <avx512>_cvt<ssemodesuffix>2mask<mode>,
26927 <avx512>_cvt<ssemodesuffix>2mask<mode>,
26928 *<avx512>_cvtmask2<ssemodesuffix><mode>,
26929 *<avx512>_cvtmask2<ssemodesuffix><mode>,
26930 <avx512>_eq<mode>3<mask_scalar_merge_name>_1,
26931 <avx512>_eq<mode>3<mask_scalar_merge_name>_1,
26932 <avx512>_gt<mode>3<mask_scalar_merge_name>,
26933 <avx512>_gt<mode>3<mask_scalar_merge_name>,
26934 <avx512>_testm<mode>3<mask_scalar_merge_name>,
26935 <avx512>_testnm<mode>3<mask_scalar_merge_name>,
26936 *<avx512>_testm<VI1248_AVX512VLBW:mode>3_zext,
26937 *<avx512>_testm<VI1248_AVX512VLBW:mode>3_zext_mask,
26938 *<avx512>_testnm<VI1248_AVX512VLBW:mode>3_zext,
26939 *<avx512>_testnm<VI1248_AVX512VLBW:mode>3_zext_mask,
26940 avx512cd_maskb_vec_dup<mode>,
26941 avx512cd_maskw_vec_dup<mode>,
26942 avx512dq_fpclass<mode><mask_scalar_merge_name>,
26943 avx512dq_vmfpclass<mode>,
26944 avx512vl_vpshufbitqmb<mode><mask_scalar_merge_name>): Use =k
26945 instead of =Yk.
26946
26947 2019-01-03 Martin Sebor <msebor@redhat.com>
26948
26949 PR tree-optimization/88659
26950 * calls.c (maybe_warn_nonstring_arg): Avoid assuming maxlen is set.
26951
26952 2019-01-03 Aaron Sawdey <acsawdey@linux.ibm.com>
26953
26954 * config/rs6000/rs6000-string.c (expand_block_move): Don't use
26955 unaligned vsx and avoid lxvd2x/stxvd2x.
26956 (gen_lvx_v4si_move): New function.
26957
26958 2019-01-03 Tom de Vries <tdevries@suse.de>
26959
26960 * config/nvptx/nvptx.c (MACH_VECTOR_LENGTH, MACH_MAX_WORKERS): Define.
26961 (init_axis_dim, nvptx_mach_max_workers, nvptx_mach_vector_length): New
26962 function.
26963 * config/nvptx/nvptx.h (struct machine_function): Add axis_dims.
26964
26965 2019-01-03 Tom de Vries <tdevries@suse.de>
26966
26967 * config/nvptx/nvptx.c (struct offload_attrs): New.
26968 (populate_offload_attrs): New function. Factor mask extraction out of
26969 nvptx_reorg. Add extraction of dimensions.
26970 (nvptx_reorg): Use populate_offload_attrs.
26971
26972 2019-01-03 Tom de Vries <tdevries@suse.de>
26973
26974 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims_1): Add early-out
26975 cases for oacc_min_dims_p and routine_p. Add asserts for
26976 oacc_default_dims_p and offload_region_p.
26977
26978 2019-01-03 Tom de Vries <tdevries@suse.de>
26979
26980 * config/nvptx/nvptx.c (nvptx_goacc_validate_dims_1): New function,
26981 factored out of ...
26982 (nvptx_goacc_validate_dims): ... here.
26983
26984 2019-01-03 Jan Hubicka <hubicka@ucw.cz>
26985
26986 PR tree-optimization/85574
26987 * tree-ssa-uncprop.c (struct equiv_hash_elt): Remove unused
26988 structure.
26989 (struct ssa_equip_hash_traits): Declare.
26990 (val_ssa_equiv): Use custom hash traits using operand_equal_p.
26991
26992 2019-01-03 Jakub Jelinek <jakub@redhat.com>
26993
26994 PR debug/88644
26995 * dwarf2out.c (modified_type_die): If type is equal to sizetype,
26996 change it to qualified_type.
26997
26998 2019-01-03 Jan Hubicka <hubicka@ucw.cz>
26999
27000 * ipa-utils.c (scale_ipa_profile_for_fn): Break out from ...
27001 (ipa_merge_profiles): ... here; do not ICE on thunks and aliases.
27002
27003 2019-01-02 Martin Sebor <msebor@redhat.com>
27004 Jeff Law <law@redhat.com>
27005
27006 * gimple-fold.c (strlen_range_kind): Remove SRK_LENRANGE_2.
27007 (get_range_strlen_tree): Update appropriately.
27008 (get_range_strlen)
27009 * gimple-fold.h (get_range_strlen): Drop unused last argument.
27010
27011 * gimple-fold.c (gimple_fold_builtin_strlen): Use set_strlen_range
27012 rather than set_range_info.
27013 * tree-ssa-strlen.c (set_strlen_range): Extracted from
27014 maybe_set_strlen_range. Handle potentially boundary crossing
27015 cases more conservatively.
27016 (maybe_set_strlen_range): Parts refactored into set_strlen_range.
27017 Call set_strlen_range.
27018 * tree-ssa-strlen.h (set_strlen_range): Add prototype.
27019
27020 PR middle-end/88663
27021 * gimple-fold.c (get_range_strlen): Update prototype to no longer
27022 need the flexp argument.
27023 (get_range_strlen_tree): Drop flexp argument. Drop flexp argument
27024 from calls to get_range_strlen. Update comments. Just update
27025 VAL for an unterminated const char array and let the reset of the
27026 code handle it normally. No longer try to set *flexp. Adjust
27027 return value.
27028 (get_range_strlen): Update for the new get_range_strlen API.
27029 (get_maxval_strlen): Similarly.
27030 (gimple_fold_builtin_strlen): Handle update meaning of return value
27031 from get_range_strlen.
27032 * gimple-ssa-sprintf.c (get_string_length): Update for the new
27033 get_range_strlen API.
27034
27035 2019-01-02 Jan Hubicka <hubicka@ucw.cz>
27036
27037 PR lto/88130
27038 * varpool.c (varpool_node::ctor_useable_for_folding_p): Also return
27039 false at WPA time when body was removed.
27040
27041 2019-01-02 Martin Liska <mliska@suse.cz>
27042
27043 PR tree-optimization/88650
27044 * predict.c (set_even_probabilities): Calculate probability
27045 remainer only when really used.
27046
27047 2019-01-02 Richard Biener <rguenther@suse.de>
27048
27049 PR middle-end/88651
27050 * tree-data-ref.c (analyze_subscript_affine_affine): Use
27051 widest_ints when mangling max_stmt_execution results.
27052
27053 2019-01-02 Richard Biener <rguenther@suse.de>
27054
27055 PR tree-optimization/88621
27056 * tree-ssa-loop-im.c (gather_mem_refs_stmt): Fix pastos, avoid
27057 bitfields when canoncalizing.
27058
27059 2019-01-02 Richard Biener <rguenther@suse.de>
27060
27061 PR target/87545
27062 * config/i386/x86-tune-costs.h (intel_cost): Adjust
27063 cost of cheap SSE instruction.
27064
27065 2019-01-02 Richard Biener <rguenther@suse.de>
27066
27067 PR ipa/85574
27068 * ipa-icf.h (sem_item_optimizer::sort_congruence_split): Declare.
27069 * ipa-icf.c (sem_item_optimizer::sort_congruence_split): New
27070 function.
27071 (sem_item_optimizer::do_congruence_step_f): Sort the congruence
27072 set after UIDs before splitting them.
27073
27074 2019-01-01 Martin Sebor <msebor@redhat.com>
27075 Jeff Law <law@redhat.com>
27076
27077 * gimple-fold.c (get_range_strlen_tree): Record if the computed
27078 length is optimistic. If it is, then arrange to compute the
27079 conservative length as well.
27080
27081 * gimple-fold.h (get_range_strlen): Update prototype.
27082 * builtins.c (check_access): Update call to get_range_strlen to use
27083 c_strlen_data pointer. Change various variable accesses to instead
27084 pull data from the c_strlen_data structure.
27085 (check_strncat_sizes, expand_builtin_strncat): Likewise.
27086 * calls.c (maybe_warn_nonstring_arg): Likewise.
27087 * tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Likewise. Reset
27088 minimum length if maximum lengh is unknown.
27089 * gimple-ssa-sprintf.c (get_string_length): Likewise. Drop code
27090 that used c_strlen, it's no longer needed. Restructure slightly.
27091 (format_string): Set unlikely range appropriately.
27092 * gimple-fold.c (get_range_strlen): Update comments. Fix minor
27093 formatting issues.
27094 (get_range_strlen): Accept c_strlen_data pointer for external
27095 call sites as well. Pass through to call to internal get_range_strlen.
27096 Adjust minlen, maxlen and maxbound as needed.
27097 (get_maxval_strlen): Update comments.
27098 (gimple_fold_builtin_strlen): Update call to get_range_strlen
27099 to use c_strlen_data pointer. Change variable accesses to instead
27100 use c_strlen_data data members.
27101
27102 * gimple-fold.c (get_range_strlen): Update prototype.
27103 (get_range_strlen_tree): Update prototype. Drop minlen/maxlen
27104 local variables. Use pdata to return information to caller.
27105 Update calls to get_range_strlen. Update pdata->maxbound.
27106 (get_range_strlen -- static version): Similarly.
27107 (get_range_strlen -- extern version): Update for internal
27108 get_range_strlen API change. Convert to external data format.
27109 (get_maxval_strlen): Similarly.
27110
27111 2019-01-01 Jan Hubicka <hubicka@ucw.cz>
27112
27113 * coverage.c (get_coverage_counts): Use current_function_decl.
27114 * profile.c (read_thunk_profile): New function.
27115 (branch_prob): Add THUNK parameter.
27116 * tree-profile.c (tree_profiling): Handle thunks.
27117 * value-prof.c (init_node_map): Handle thunks.
27118 * value-prof.h (branch_prob): Upate prototype.
27119 (read_thunk_profile): Declare.
27120
27121 2019-01-01 Jakub Jelinek <jakub@redhat.com>
27122
27123 Update copyright years.
27124
27125 * gcc.c (process_command): Update copyright notice dates.
27126 * gcov-dump.c (print_version): Ditto.
27127 * gcov.c (print_version): Ditto.
27128 * gcov-tool.c (print_version): Ditto.
27129 * gengtype.c (create_file): Ditto.
27130 * doc/cpp.texi: Bump @copying's copyright year.
27131 * doc/cppinternals.texi: Ditto.
27132 * doc/gcc.texi: Ditto.
27133 * doc/gccint.texi: Ditto.
27134 * doc/gcov.texi: Ditto.
27135 * doc/install.texi: Ditto.
27136 * doc/invoke.texi: Ditto.
27137 \f
27138 Copyright (C) 2019 Free Software Foundation, Inc.
27139
27140 Copying and distribution of this file, with or without modification,
27141 are permitted in any medium without royalty provided the copyright
27142 notice and this notice are preserved.