RISC-V: Add patterns to convert AND mask to two shifts.
[official-gcc.git] / gcc / ChangeLog
blob509af92f3d4d75f476df639bfb065ad1e35098a3
1 2018-06-30  Jim Wilson  <jimw@sifive.com>
3         * config/riscv/predicates.md (p2m1_shift_operand): New.
4         (high_mask_shift_operand): New.
5         * config/riscv/riscv.md (lshrsi3_zero_extend_3+1): New combiner
6         pattern using p2m1_shift_operand.
7         (lshsi3_zero_extend_3+2): New combiner pattern using
8         high_mask_shift_operand.
10 2018-06-30  Richard Sandiford  <richard.sandiford@arm.com>
12         * tree-vect-patterns.c (vect_get_external_def_edge): New function,
13         split out from...
14         (vect_recog_rotate_pattern): ...here.
15         (vect_convert_input): Try to insert casts of invariants in the
16         preheader.
17         * tree-vect-loop-manip.c (vect_loop_versioning): Don't require the
18         preheader to be empty.
20 2018-06-30  Richard Sandiford  <richard.sandiford@arm.com>
22         * tree-vect-patterns.c (append_pattern_def_seq): Take an optional
23         vector type.  If given, install it in the new statement's
24         STMT_VINFO_VECTYPE.
25         (vect_element_precision): New function.
26         (vect_unpromoted_value): New struct.
27         (vect_unpromoted_value::vect_unpromoted_value): New function.
28         (vect_unpromoted_value::set_op): Likewise.
29         (vect_look_through_possible_promotion): Likewise.
30         (vect_joust_widened_integer, vect_joust_widened_type): Likewise.
31         (vect_widened_op_tree, vect_convert_input): Likewise.
32         (vect_convert_inputs, vect_convert_output): Likewise.
33         (vect_recog_dot_prod_pattern): Use vect_look_through_possible_promotion
34         to handle the optional cast of the multiplication result and
35         vect_widened_op_tree to detect the widened multiplication itself.
36         Do not require the input and output of promotion casts to have
37         the same sign, but base the signedness of the operation on the
38         input rather than the result.  If the pattern includes two
39         promotions, check that those promotions have the same sign.
40         Do not restrict the MULT_EXPR handling to a double-width result;
41         handle quadruple-width results and wider.  Use vect_convert_inputs
42         to convert the inputs to the common type.
43         (vect_recog_sad_pattern):  Use vect_look_through_possible_promotion
44         to handle the optional cast of the ABS result.  Also allow a sign
45         change or a sign extension between the ABS and MINUS.
46         Use vect_widened_op_tree to detect the widened subtraction and use
47         vect_convert_inputs to convert the inputs to the common type.
48         (vect_handle_widen_op_by_const): Delete.
49         (vect_recog_widen_op_pattern): New function.
50         (vect_recog_widen_mult_pattern): Use it.
51         (vect_recog_widen_shift_pattern): Likewise.
52         (vect_recog_widen_sum_pattern): Use
53         vect_look_through_possible_promotion to handle the promoted
54         PLUS_EXPR operand.
56 2018-06-30  Richard Sandiford  <richard.sandiford@arm.com>
58         * gimple-iterator.c (gsi_for_stmt): Add a new overload that takes
59         the containing gimple_seq *.
60         * gimple-iterator.h (gsi_for_stmt): Declare it.
61         * tree-vect-patterns.c (vect_recog_dot_prod_pattern)
62         (vect_recog_sad_pattern, vect_recog_widen_sum_pattern)
63         (vect_recog_widen_shift_pattern, vect_recog_rotate_pattern)
64         (vect_recog_vector_vector_shift_pattern, vect_recog_divmod_pattern)
65         (vect_recog_mask_conversion_pattern): Remove STMT_VINFO_IN_PATTERN_P
66         checks.
67         (vect_init_pattern_stmt, vect_set_pattern_stmt): New functions,
68         split out from...
69         (vect_mark_pattern_stmts): ...here.  Handle cases in which the
70         statement being replaced is part of an existing pattern
71         definition sequence, inserting the new pattern statements before
72         the original one.
73         (vect_pattern_recog_1): Don't return a bool.  If the statement
74         is already part of a pattern, instead apply pattern matching
75         to the pattern definition statements.  Don't clear the
76         STMT_VINFO_RELATED_STMT if is_pattern_stmt_p.
77         (vect_pattern_recog): Don't break after the first match;
78         continue processing the pattern definition statements instead.
79         Don't bail out for STMT_VINFO_IN_PATTERN_P here.
81 2018-06-30  Richard Sandiford  <richard.sandiford@arm.com>
83         * tree-vect-patterns.c (vect_reassociating_reduction_p): New function.
84         (vect_recog_dot_prod_pattern, vect_recog_sad_pattern)
85         (vect_recog_widen_sum_pattern): Use it.
87 2018-06-30  Richard Sandiford  <richard.sandiford@arm.com>
89         * tree-vect-loop.c (vectorizable_reduction): Assert that the
90         phi is not a pattern statement and has not been replaced by
91         a pattern statement.
92         * tree-vect-patterns.c (type_conversion_p): Don't check
93         STMT_VINFO_IN_PATTERN_P.
94         (vect_recog_vector_vector_shift_pattern): Likewise.
95         (vect_recog_dot_prod_pattern): Expect vect_is_simple_use to return
96         the pattern statement rather than the original statement; check
97         directly for a WIDEN_MULT_EXPR here.
98         * tree-vect-slp.c (vect_get_and_check_slp_defs): Expect
99         vect_is_simple_use to return the pattern statement rather
100         than the original statement; use is_pattern_stmt_p to check
101         for such a pattern statement.
102         * tree-vect-stmts.c (process_use): Expect vect_is_simple_use
103         to return the pattern statement rather than the original statement;
104         don't do the same transformation here.
105         (vect_is_simple_use): If the defining statement has been replaced
106         by a pattern statement, return the pattern statement instead.
107         Remove the corresponding (local) transformation from the vectype
108         overload.
110 2018-06-30  Richard Sandiford  <richard.sandiford@arm.com>
112         * tree-vectorizer.h (vect_is_simple_use): Move the gimple ** to the
113         end and default to null.
114         * tree-vect-loop.c (vect_create_epilog_for_reduction)
115         (vectorizable_reduction): Update calls accordingly, dropping the
116         gimple ** argument if the passed-back statement isn't needed.
117         * tree-vect-patterns.c (vect_get_internal_def, type_conversion_p)
118         (vect_recog_rotate_pattern): Likewise.
119         (vect_recog_mask_conversion_pattern): Likewise.
120         * tree-vect-slp.c (vect_get_and_check_slp_defs): Likewise.
121         (vect_mask_constant_operand_p): Likewise.
122         * tree-vect-stmts.c (is_simple_and_all_uses_invariant, process_use):
123         (vect_model_simple_cost, vect_get_vec_def_for_operand): Likewise.
124         (get_group_load_store_type, get_load_store_type): Likewise.
125         (vect_check_load_store_mask, vect_check_store_rhs): Likewise.
126         (vectorizable_call, vectorizable_simd_clone_call): Likewise.
127         (vectorizable_conversion, vectorizable_assignment): Likewise.
128         (vectorizable_shift, vectorizable_operation): Likewise.
129         (vectorizable_store, vect_is_simple_cond): Likewise.
130         (vectorizable_condition, vectorizable_comparison): Likewise.
131         (get_same_sized_vectype, vect_get_mask_type_for_stmt): Likewise.
132         (vect_is_simple_use): Rename the def_stmt argument to def_stmt_out
133         and move it to the end.  Cope with null def_stmt_outs.
135 2018-06-30  Bernd Edlinger  <bernd.edlinger@hotmail.de>
137         * Makefile.in (FLAGS_TO_PASS): Add RANLIB_FOR_TARGET.
139 2018-06-29  Jeff Law  <law@redhat.com>
141         * config/v850/v850.c (v850_legitimate_address_p): Handle large
142         displacements for TARGET_V850E2V3 and newer.
143         (TARGET_LRA_P): Remove.  Defaults to LRA now.
144         * config/v850/v850.md (sign23byte_load): Remove.
145         (unsign23byte_load, sign23hword_load, unsign23hword_load): Likewise.
146         (23word_load, 23byte_store, 23hword_store, 23word_store): Likewise.
148 2018-06-29  Martin Liska  <mliska@suse.cz>
150         PR lto/85759
151         * coverage.c (coverage_init): Mangle full path name.
152         * doc/invoke.texi: Document the change.
153         * gcov-io.c (mangle_path): New.
154         * gcov-io.h (mangle_path): Likewise.
155         * gcov.c (mangle_name): Use mangle_path for path mangling.
157 2018-06-29  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
159         * config/arm/arm.c (output_move_double): Don't allow STRD instructions
160         if starting source register is not even.
162 2018-06-29  Martin Liska  <mliska@suse.cz>
164         PR tree-optimization/86263
165         * tree-switch-conversion.c (switch_decision_tree::try_switch_expansion):
166         Make edge redirection.
168 2018-06-29  David Malcolm  <dmalcolm@redhat.com>
170         * dumpfile.c (dump_loc): Add indentation based on scope depth.
171         (dump_scope_depth): New variable.
172         (get_dump_scope_depth): New function.
173         (dump_begin_scope): New function.
174         (dump_end_scope): New function.
175         * dumpfile.h (get_dump_scope_depth): New declaration.
176         (dump_begin_scope): New declaration.
177         (dump_end_scope): New declaration.
178         (class auto_dump_scope): New class.
179         (AUTO_DUMP_SCOPE): New macro.
180         * tree-vectorizer.h (DUMP_VECT_SCOPE): Reimplement in terms of
181         AUTO_DUMP_SCOPE.
183 2018-06-29  Richard Biener  <rguenther@suse.de>
185         * tree-vect-data-refs.c (vect_analyze_data_ref_dependences): Assert
186         compute_all_dependences succeeds.
187         * tree-vect-loop.c (vect_get_datarefs_in_loop): Fail early if we
188         exceed --param loop-max-datarefs-for-datadeps.
190 2018-06-29  Jakub Jelinek  <jakub@redhat.com>
192         * config/rs6000/t-rs6000: Append rs6000-modes.h to TM_H.
194 2018-06-28  Uros Bizjak  <ubizjak@gmail.com>
196         PR target/86348
197         * config/i386/sse.md (*vec_extractv4si_0_zext_sse4): Use
198         alternative 0 in preferred_for_speed attribute.
200 2018-06-28  Paul Koning  <ni1d@arrl.net>
202         * config/pdp11/pdp11-protos.h (pdp11_shift_length): New function.
203         * config/pdp11/pdp11.c (pdp11_shift_length): New function.
204         * config/pdp11/pdp11.h (ADJUST_INSN_LENGTH): Remove.
205         * config/pdp11/pdp11.md: Correct "length" attribute calculation
206         for shift insn patterns.
208 2018-06-28  David Malcolm  <dmalcolm@redhat.com>
210         * cgraph.c (cgraph_node::get_body): Replace assignments to
211         "dump_file" with calls to set_dump_file.
212         * dumpfile.c (alt_dump_file): Make static, and group with...
213         (alt_flags): ...this definition.
214         (dumps_are_enabled): New variable.
215         (refresh_dumps_are_enabled): New function.
216         (set_dump_file): New function.
217         (set_alt_dump_file): New function.
218         (gcc::dump_manager::dump_start): Replace assignments to
219         "dump_file" and "alt_dump_file" with calls to set_dump_file and
220         set_alt_dump_file.
221         (gcc::dump_manager::dump_finish): Likewise.
222         * dumpfile.h (alt_dump_file): Delete decl.
223         (dumps_are_enabled): New variable decl.
224         (set_dump_file): New function decl.
225         (dump_enabled_p): Rewrite in terms of new "dumps_are_enabled"
226         global.
227         * tree-nested.c (lower_nested_functions): Replace assignments to
228         "dump_file" with calls to set_dump_file.
230 2018-06-28  Eric Botcazou  <ebotcazou@adacore.com>
232         * tree-cfg.c (verify_gimple_in_cfg): Call verify_location on the
233         goto_locus of each outgoing edge of each basic block.
235 2018-06-28  Richard Biener  <rguenther@suse.de>
237         * dwarf2out.c (decl_scope_table): Remove.
238         (push_decl_scope): Likewise.
239         (pop_decl_scope): Likewise.
240         (gen_type_die_for_member): Do not call push/pop_decl_scope.
241         (gen_struct_or_union_type_die): Likewise.
242         (gen_tagged_type_die): Likewise.
243         (dwarf2out_init): Do not initialize decl_scope_table.
244         (dwarf2out_c_finalize): Do not free it.
246 2018-06-28  Richard Biener  <rguenther@suse.de>
248         * dwarf2out.c (gen_subprogram_die): Use is_unit_die when
249         deciding whether to not re-use a DIE.
251 2018-06-28  Richard Biener  <rguenther@suse.de>
253         * dwarf2out.c (gen_subprogram_die): Always re-use DIEs with an
254         DW_AT_abstract_origin attribute.
256 2018-06-28  Martin Liska  <mliska@suse.cz>
258         * tree-switch-conversion.c (jump_table_cluster::can_be_handled):
259         Use newly introduced constants.
260         * tree-switch-conversion.h (struct jump_table_cluster):
261         Define max_ratio_for_size and max_ratio_for_speed.
263 2018-06-28  Martin Liska  <mliska@suse.cz>
265         * tree-switch-conversion.c (jump_table_cluster::find_jump_tables):
266         Add new checking assert to catch invalid state.
267         (jump_table_cluster::can_be_handled): Handle single case
268         clusters.
269         (jump_table_cluster::is_beneficial): Bail out for such case.
270         (bit_test_cluster::find_bit_tests):
271         Add new checking assert to catch invalid state.
272         (bit_test_cluster::can_be_handled): Handle single case
273         clusters.
274         (bit_test_cluster::is_beneficial): Bail out for such case.
275         (switch_decision_tree::analyze_switch_statement):
276         Fix comment.
278 2018-06-28  Martin Liska  <mliska@suse.cz>
280         * common.opt: Introduce -completion option.
281         * gcc.c (driver_handle_option): Handle it.
282         (driver::main): Print completions if completion
283         is set.
284         * opt-suggestions.c (option_proposer::get_completions):
285         New function.
286         (option_proposer::suggest_completion): Likewise.
287         (option_proposer::find_param_completions): Likewise.
288         (verify_autocompletions): Likewise.
289         (test_completion_valid_options): Likewise.
290         (test_completion_valid_params): Likewise.
291         (in_completion_p): Likewise.
292         (empty_completion_p): Likewise.
293         (test_completion_partial_match): Likewise.
294         (test_completion_garbage): Likewise.
295         (opt_proposer_c_tests): Likewise.
296         * opt-suggestions.h: Declare new functions.
297         * opts.c (common_handle_option): Handle OPT__completion_.
298         * selftest-run-tests.c (selftest::run_tests): Add
299         opt_proposer_c_tests.
300         * selftest.c (assert_str_startswith): New.
301         * selftest.h (assert_str_startswith): Likewise.
302         (opt_proposer_c_tests): New.
303         (ASSERT_STR_STARTSWITH): Likewise.
305 2018-06-28  Martin Liska  <mliska@suse.cz>
307         * Makefile.in: Add opt-suggestions.o.
308         * gcc-main.c: Include opt-suggestions.h.
309         * gcc.c (driver::driver): Likewise.
310         (driver::~driver): Remove m_option_suggestions.
311         (driver::build_option_suggestions): Moved to option_proposer.
312         (driver::suggest_option): Likewise.
313         (driver::handle_unrecognized_options): Use option_proposer.
314         * gcc.h (class driver): Add new memver m_option_proposer.
315         * opt-suggestions.c: New file.
316         * opt-suggestions.h: New file.
318 2018-06-28  Martin Liska  <mliska@suse.cz>
320         * vec.h (class auto_string_vec): New (moved from auto_argvec).
321         (auto_string_vec::~auto_string_vec): Likewise.
323 2018-06-28  Eric Botcazou  <ebotcazou@adacore.com>
325         * tree-inline.c (remap_gimple_stmt): Force input_location on the new
326         statement if id->reset_location is true.
327         (copy_edges_for_bb): Do not set goto_locus on the new edges if
328         id->reset_location is true.
329         (copy_phis_for_bb): Force input_location on the arguments if
330         id->reset_location is true.
331         (expand_call_inline): Set id->reset_location if DECL_IGNORED_P
332         is set on the function to be inlined.
333         * tree-inline.h (struct copy_body_data): Move remapping_type_depth and
334         prevent_decl_creation_for_types fields up and add reset_location field.
336 2018-06-27  Stephan Bergmann  <sbergman@redhat.com>
338         * doc/invoke.texi (Debugging Options): Add -gsplit-dwarf.
340 2018-06-27  Dimitar Dimitrov  <dimitar@dinux.eu>
342         * lra-eliminations.c (update_reg_eliminate): Mark all spanning hard
343         registers for Pmode.
344         * lra-lives.c (check_pseudos_live_through_calls): Mark all spanning
345         hard registers for the clobbered pseudo.
347 2018-06-27  Paul Koning  <ni1d@arrl.net>
349         * common/config/pdp11/pdp11-common.c (pdp11_handle_option): Handle
350         mutually exclusive options.
351         * config/pdp11/constraints.md (h): New constraint.
352         (O): Update definition to match shift code generation.
353         (D): New constraint.
354         * config/pdp11/pdp11-modes.def (CCNZ): Define mode.
355         (CCFP): Remove.
356         * config/pdp11/pdp11-protos.h (int_no_side_effect_operand): New
357         function.
358         (output_jump): Change arguments.
359         (pdp11_fixed_cc_regs): New function.
360         (pdp11_cc_mode): Ditto.
361         (pdp11_expand_shift): Ditto.
362         (pdp11_assemble_shift): Ditto.
363         (pdp11_small_shift): Ditto.
364         (pdp11_branch_cost): Remove.
365         * config/pdp11/pdp11.c (pdp11_assemble_integer): Remove comments
366         from output.
367         (pdp11_register_move_cost): Update for CC registers.
368         (pdp11_rtx_costs): Add case for LSHIFTRT.
369         (pdp11_output_jump): Add CCNZ mode conditional branches.
370         (notice_update_cc_on_set): Remove.
371         (pdp11_cc_mode): New function.
372         (simple_memory_operand): Correct pre/post decrement case.
373         (no_side_effect_operand): New function.
374         (pdp11_regno_reg_class): Add CC_REGS class.
375         (pdp11_fixed_cc_regs): New function.
376         (pdp11_small_shift): New function.
377         (pdp11_expand_shift): New function to expand shift insns.
378         (pdp11_assemble_shift): New function to output shifts.
379         (pdp11_branch_cost): Remove.
380         (pdp11_modes_tieable_p): Make QI/HI modes tieable.
381         * config/pdp11/pdp11.h (SIZE_TYPE): Ensure 16-bit type.
382         (WCHAR_TYPE): Ditto.
383         (PTRDIFF_TYPE): Ditto.
384         (ADJUST_INSN_LENGTH): New macro.
385         (FIXED_REGISTERS): Add CC registers.
386         (CALL_USED_REGISTERS): Ditto.
387         (reg_class): Ditto.
388         (REG_CLASS_NAMES): Ditto.
389         (REG_CLASS_CONTENTS): Ditto.
390         (SELECT_CC_MODE): Use new function.
391         (TARGET_FLAGS_REGNUM): New macro.
392         (TARGET_FIXED_CONDITION_CODE_REGS): Ditto.
393         (cc0_reg_rtx): Remove.
394         (CC_STATUS_MDEP): Remove.
395         (CC_STATUS_MDEFP_INIT): Remove.
396         (CC_IN_FPU): Remove.
397         (NOTICE_UPDATE_CC): Remove.
398         (REGISTER_NAMES): Add CC registers.
399         (BRANCH_COST): Change to constant 1.
400         * config/pdp11/pdp11.md: Rewrite for CCmode condition code
401         handling.
402         * config/pdp11/pdp11.opt (mbcopy): Remove.
403         (mbcopy-builtin): Remove.
404         (mbranch-cheap): Remove.
405         (mbranch-expensive): Remove.
406         * config/pdp11/predicates.md (expand_shift_operand): Update to
407         match shift code generation.
408         (ccnz_operator): New predicate.
409         * doc/invoke.texi (PDP-11 Options): Remove deleted options
410         -mbcopy, -mbcopy-builtin, -mbranch-cheap, -mbranch-expensive.
411         Remove non-existent option -mabshi, -mno-abshi.  Document mutually
412         exclusive options.
413         * doc/md.texi (PDP-11): Document new D and h constraints.  Update
414         description of O constraint.
416 2018-06-27  Jeff Law  <law@redhat.com>
417             Austin Law  <austinklaw@gmail.com>
419         * config/v850/v850.md (addsi3_set_flags): New pattern.
420         (subsi3_set_flags, negsi2_set_flags, andsi3_set_flags): Likewise.
421         (iorsi3_set_flags, xorsi3_set_flags, one_cmplsi2_set_flags): Likewise.
422         (zero_extendhisi2_v850_set_flags): Likewise.
423         (zero_extendqisi2_v850_set_flags): Likewise.
424         (ashlsi3_set_flags, ashlsi3_v850e2_set_flags): Likewise.
425         (lshrsi3_set_flags, lshrsi3_v850e2_set_flags): Likewise.
426         (ashrsi3_set_flags, ashrsi3_v850e2_set_flags): Likewise.
428         * config/v850/v850-protos.h (notice_update_cc): Remove.
429         * config/v850/v850.c (v850_compare_op0, v850_compare_op1): Remove.
430         (v850_print_operand): Handle 'D' and "d".
431         (v850_select_cc_mode): Remove ATTRIBUTE_UNUSED for last argument.
432         Add handling of arithmetic/logical operations compared against zero.
433         (v850_gen_float_compare): Remove ATTRIBUTE_UNUSED for last argument.
434         Do not look at v850_compare_op, instead get mode from last argument.
435         (v850_gen_compare): Remove
436         (increment_stack): Use addsi3_clobber_flags to avoid splitting failure
437         after reload for prologue insns.
438         (expand_prologue): Account for CLOBBER of CC_REGNUM in various
439         patterns.
440         (construct_save_jarl): Likewise.
441         (TARGET_FLAGS_REGNUM): Define.
442         * config/v850/v850.h (v850_compare_op0, v850_compare_op1): Remove.
443         (NOTICE_UPDATE_CC): Remove.
444         * config/v850/v850.md (v850_tst1): Use (reg:CCZ CC_REGNUM) rather
445         than cc0.  Conditionalize on reload_completed.
446         (cmpsi_insn, setfcc_insn): Likewise.
447         (tst1 splitter): Turn into define_and_split which sets the flags
448         after reload.
449         (cstoresi4, cbranchsf4, cbranchdf4, cbranchsi4_insn): Likewise.
450         (cbranchsi4, branch_normal, branch_invert): Do not expose cc0 here.
451         (cstoresf4, cstoredf4): Clobber the flags.
452         (cmpsi, cmpsf, cmpdf): Remove expanders.
453         (setf_insn): Remove pattern.
454         (addsi3): Turn into define_and_split which clobbers the flags after
455         reload and a suitable pattern (addsi3_clobber_flags) for use after
456         reload.
457         (subsi3, negsi2, andsi3, iorsi3, xorsi3, one_cmplsi2) Likewise.
458         (ashlsi3, ashlsi3_v850e2, lshrsi3, lsh4si3_v850e2): Likewise.
459         (ashrsi3, ashrsi3_v850e2): Likewise.
460         (bins): Clobber the flags.
461         (movsicc_normal_cc, movsicc_normal, movsicc_tst1): Likewise.
462         (movsicc_tst1_revesed, sasf, swap and rotate patterns): Likewise.
463         (fix_loop_counter, call_internal_short, call_internal_long): Likewise.
464         (call_value_internal_short, call_value_internal_long): Likewise.
465         (callt_save_interrupt, callt_return_interrupt): Likewise.
466         (save_interrupt, return_interrupt): Likewise.
467         (callt_save_all_interrupt, save_all_interrupt): Likewise.
468         (_save_all_interrupt, callt_restore_all_interrupt): Likewise.
469         (restore_all_interrupt, _restore_all_interrupt): Likewise.
470         (All FP comparisons): Only allow after reload has completed.
471         (trfsr): Likewise.
472         (divh, divhu): Tweak output template.
473         (branch_z_normal, branch_z_invert): Remove
474         (branch_nz_normal, branch_nz_invert): Likewise.
475         (extendhisi_insn, extendqisi_insn): Do not clobber flags.
477         * config/v850/v850-modes.def (CCZ, CCNZ): Add new modes.
478         * config/v850/v850.c (notice_update_cc): Remove.
479         * config/v850/v850.h  (CC_OVERFLOW_UNUSABLE): Remove
480         (CC_NO_CARRY): Likewise.
481         (NOTICE_UPDATE_CC): Define to nothing.
482         * config/v850/v850.md: Remove block comment on cc0 handling
483         Remove "cc" attribute from all patterns.  Remove cc_status handling
484         from all patterns.  Minor formatting fixes.
486 2018-06-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
488         * config/aarch64/aarch64-cores.def (cortex-a76): New entry.
489         (cortex-a76.cortex-a55): Likewise.
490         * config/aarch64/aarch64-tune.md: Regenerate.
491         * doc/invoke.texi (AArch64 Options): Document cortex-a76 and
492         cortex-a76.cortex-a55.
494 2018-06-27  Jeff Law  <law@redhat.com>
496         * config/v850/t-v850 (MULTILIB_OPTIONS): Remove 8byte-align.
497         (MULTILIB_DIRNAMES): Similarly.
499 2018-06-27  Eric Botcazou  <ebotcazou@adacore.com>
501         * gimple.h (gimple_return_retbnd): Delete.
502         (gimple_return_set_retbnd): Likewise.
503         * cgraphunit.c (cgraph_node::expand_thunk): Remove call to
504         gimple_return_set_retbnd.
505         * gimple-pretty-print.c (dump_gimple_return): Remove call to
506         gimple_return_retbnd and adjust.
507         * tree-inline.h (struct copy_body_data): Remove retbnd field.
508         * tree-inline.c (remap_gimple_stmt): Remove handling of retbnd.
509         Explicitly return NULL in a couple more cases.  Move assertion
510         on debug statements and remove unreachable code.
511         (reset_debug_binding): Do not test id->retbnd.
512         (expand_call_inline): Do not set it.
514 2018-06-27  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
516         * configure.ac: Add --disable-gcov option.
517         * configure: Regenerate.
518         * Makefile.in: Honour @enable_gcov@.
519         * doc/install.texi: Document --disable-gcov.
521 2018-06-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
523         * config/arm/arm-cpus.in (cortex-a76): New entry.
524         (cortex-a76.cortex-a55): Likewise.
525         * config/arm/arm-tables.opt: Regenerate.
526         * config/arm/arm-tune.md: Likewise.
527         * config/arm/driver-arm.c (arm_cpu_table): Add Cortex-A76 entry.
528         * doc/invoke.texi (ARM Options): Document cortex-a76 and
529         cortex-a76.cortex-a55.
531 2018-06-27 Tamar Christina  <tamar.christina@arm.com>
533         PR target/85769
534         * config/aarch64/aarch64.md (*movhf_aarch64): Add dup v0.4h pattern.
536 2018-06-27  Siddhesh Poyarekar  <siddhesh@sourceware.org>
538         * config/aarch64/aarch64.h (CALL_USE_REGISTERS): Fix obsolete
539         comment.
540         (EPILOGUE_USES): Likewise.
542 2018-06-26  Eric Botcazou  <ebotcazou@adacore.com>
544         * tree-inline.c (remap_location): New function extracted from...
545         (copy_edges_for_bb): Add ID parameter.  Remap goto_locus.
546         (copy_phis_for_bb): ...here.  Call remap_location.
547         (copy_cfg_body): Adjust call to copy_edges_for_bb.
549 2018-06-26  Aaron Sawdey  <acsawdey@linux.ibm.com>
551         * config/rs6000/rs6000-string.c (expand_block_clear): Don't use
552         unaligned vsx for 16B memset.
554 2018-06-26  Segher Boessenkool  <segher@kernel.crashing.org>
556         PR target/86285
557         * config/rs6000/rs6000.c (rs6000_init_builtins): Do not set
558         ieee128_float_type_node to long_double_type_node unless
559         TARGET_LONG_DOUBLE_128 is set.
561 2018-06-26  David Malcolm  <dmalcolm@redhat.com>
563         * cfgloop.c (get_loop_location): Convert return type from
564         location_t to dump_user_location_t, replacing INSN_LOCATION lookups
565         by implicit construction from rtx_insn *, and using
566         dump_user_location_t::from_function_decl for the fallback case.
567         * cfgloop.h (get_loop_location): Convert return type from
568         location_t to dump_user_location_t.
569         * cgraphunit.c (walk_polymorphic_call_targets): Update call to
570         dump_printf_loc to pass in a dump_location_t rather than a
571         location_t, via the gimple stmt.
572         * coverage.c (get_coverage_counts): Update calls to
573         dump_printf_loc to pass in dump_location_t rather than a
574         location_t.
575         * doc/optinfo.texi (Dump types): Convert example of
576         dump_printf_loc from taking "locus" to taking "insn".  Update
577         description of the "_loc" calls to cover dump_location_t.
578         * dumpfile.c: Include "backend.h", "gimple.h", "rtl.h", and
579         "selftest.h".
580         (dump_user_location_t::dump_user_location_t): New constructors,
581         from gimple *stmt and rtx_insn *.
582         (dump_user_location_t::from_function_decl): New function.
583         (dump_loc): Make static.
584         (dump_gimple_stmt_loc): Convert param "loc" from location_t to
585         const dump_location_t &.
586         (dump_generic_expr_loc): Delete.
587         (dump_printf_loc): Convert param "loc" from location_t to
588         const dump_location_t &.
589         (selftest::test_impl_location): New function.
590         (selftest::dumpfile_c_tests): New function.
591         * dumpfile.h: Include "profile-count.h".
592         (class dump_user_location_t): New class.
593         (struct dump_impl_location_t): New struct.
594         (class dump_location_t): New class.
595         (dump_printf_loc): Convert 2nd param from source_location to
596         const dump_location_t &.
597         (dump_generic_expr_loc): Delete.
598         (dump_gimple_stmt_loc): Convert 2nd param from source_location to
599         const dump_location_t &.
600         * gimple-fold.c (fold_gimple_assign): Update call to
601         dump_printf_loc to pass in a dump_location_t rather than a
602         location_t, via the gimple stmt.
603         (gimple_fold_call): Likewise.
604         * gimple-loop-interchange.cc
605         (loop_cand::analyze_iloop_reduction_var): Update for change to
606         check_reduction_path.
607         (tree_loop_interchange::interchange): Update for change to
608         find_loop_location.
609         * graphite-isl-ast-to-gimple.c (scop_to_isl_ast): Update for
610         change in return-type of find_loop_location.
611         (graphite_regenerate_ast_isl): Likewise.
612         * graphite-optimize-isl.c (optimize_isl): Likewise.
613         * graphite.c (graphite_transform_loops): Likewise.
614         * ipa-devirt.c (ipa_devirt): Update call to dump_printf_loc to
615         pass in a dump_location_t rather than a location_t, via the
616         gimple stmt.
617         * ipa-prop.c (ipa_make_edge_direct_to_target): Likewise.
618         * ipa.c (walk_polymorphic_call_targets): Likewise.
619         * loop-unroll.c (report_unroll): Convert "locus" param from
620         location_t to dump_location_t.
621         (decide_unrolling): Update for change to get_loop_location's
622         return type.
623         * omp-grid.c (struct grid_prop): Convert field "target_loc" from
624         location_t to dump_user_location_t.
625         (grid_find_single_omp_among_assignments_1): Updates calls to
626         dump_printf_loc to pass in a dump_location_t rather than a
627         location_t, via the gimple stmt.
628         (grid_parallel_clauses_gridifiable): Convert "tloc" from
629         location_t to dump_location_t.  Updates calls to dump_printf_loc
630         to pass in a dump_location_t rather than a location_t, via the
631         gimple stmt.
632         (grid_inner_loop_gridifiable_p): Likewise.
633         (grid_dist_follows_simple_pattern): Likewise.
634         (grid_gfor_follows_tiling_pattern): Likewise.
635         (grid_target_follows_gridifiable_pattern): Likewise.
636         (grid_attempt_target_gridification): Convert initialization
637         of local "grid" from memset to zero-initialization; FIXME: does
638         this require C++11?  Update call to dump_printf_loc to pass in a
639         optinfo_location rather than a location_t, via the gimple stmt.
640         * profile.c (read_profile_edge_counts): Updates call to
641         dump_printf_loc to pass in a dump_location_t rather than a
642         location_t
643         (compute_branch_probabilities): Likewise.
644         * selftest-run-tests.c (selftest::run_tests): Call
645         dumpfile_c_tests.
646         * selftest.h (dumpfile_c_tests): New decl.
647         * tree-loop-distribution.c (pass_loop_distribution::execute):
648         Update for change in return type of find_loop_location.
649         * tree-parloops.c (parallelize_loops): Likewise.
650         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Convert
651         "locus" from location_t to dump_user_location_t.
652         (canonicalize_loop_induction_variables): Likewise.
653         * tree-ssa-loop-ivopts.c (tree_ssa_iv_optimize_loop): Update
654         for change in return type of find_loop_location.
655         * tree-ssa-loop-niter.c (number_of_iterations_exit): Update call
656         to dump_printf_loc to pass in a dump_location_t rather than a
657         location_t, via the stmt.
658         * tree-ssa-sccvn.c (eliminate_dom_walker::before_dom_children):
659         Likewise.
660         * tree-vect-loop-manip.c (find_loop_location): Convert return
661         type from source_location to dump_user_location_t.
662         (vect_do_peeling): Update for above change.
663         (vect_loop_versioning): Update for change in type of
664         vect_location.
665         * tree-vect-loop.c (check_reduction_path): Convert "loc" param
666         from location_t to dump_user_location_t.
667         (vect_estimate_min_profitable_iters): Update for change in type
668         of vect_location.
669         * tree-vect-slp.c (vect_print_slp_tree): Convert param "loc" from
670         location_t to dump_location_t.
671         (vect_slp_bb): Update for change in type of vect_location.
672         * tree-vectorizer.c (vect_location): Convert from source_location
673         to dump_user_location_t.
674         (try_vectorize_loop_1): Update for change in vect_location's type.
675         (vectorize_loops): Likewise.
676         (increase_alignment): Likewise.
677         * tree-vectorizer.h (vect_location): Convert from source_location
678         to dump_user_location_t.
679         (find_loop_location): Convert return type from source_location to
680         dump_user_location_t.
681         (check_reduction_path): Convert 1st param from location_t to
682         dump_user_location_t.
683         * value-prof.c (check_counter): Update call to dump_printf_loc to
684         pass in a dump_user_location_t rather than a location_t; update
685         call to error_at for change in type of "locus".
686         (check_ic_target): Update call to dump_printf_loc to
687         pass in a dump_user_location_t rather than a location_t, via the
688         call_stmt.
690 2018-06-26  Robin Dapp  <rdapp@linux.vnet.ibm.com>
692         * config/s390/s390.h (enum processor_flags): Do not use
693         default tune parameter when -march was specified.
695 2018-06-26  Jakub Jelinek  <jakub@redhat.com>
697         PR target/86314
698         * config/i386/i386.md (setcc + movzbl to xor + setcc peephole2s):
699         Check reg_overlap_mentioned_p in addition to reg_set_p with the same
700         operands.
702 2018-06-26  Richard Biener  <rguenther@suse.de>
704         PR tree-optimization/86287
705         PR bootstrap/86316
706         * tree-vect-loop.c (vect_transform_loop_stmt): Fix read-after-free.
707         (vect_analyze_loop): Initialize n_stmts.
709 2018-06-26  Richard Biener  <rguenther@suse.de>
711         PR middle-end/86271
712         * fold-const.c (fold_convertible_p): Pointer extension
713         isn't valid.
715 2018-06-26  Alexandre Oliva <aoliva@redhat.com>
717         PR debug/86064
718         * dwarf2out.c (loc_list_has_views): Adjust comments.
719         (dw_loc_list): Split single cross-partition range with
720         nonzero locview.
722 2018-06-25  Jeff Law  <law@redhat.com>
724         * common/config/v850/v850-common.c (TARGET_DEFAULT_TARGET_FLAGS): Turn
725         on -mbig-switch by default.
727         * config/v850/predicates.md (const_float_1_operand): Fix match_code
728         test.
729         (const_float_0_operand): Remove unused predicate.
730         * config/v850/v850.md (define_constants): Remove UNSPEC_LOOP.
731         (define_c_enum unspec): Add LOOP, RCP and RSQRT constants.
732         (recipsf2): New expander.  Original pattern now called
733         (recipsf2_insn).
734         (recipdf2, recipdf2_insn): Similarly.
735         (rsqrtsf2, rsqrtsf2_insn): Similarly
736         (rsqrtdf2, rsqrtdf2_insn): Similarly
738 2018-06-26  Gerald Pfeifer  <gerald@pfeifer.com>
740         * ginclude/stddef.h: Remove an obsolete comment on FreeBSD 5.
741         Simplify logic for FreeBSD (twice).
743 2018-06-25  Martin Sebor  <msebor@redhat.com>
745         PR tree-optimization/86204
746         * tree-ssa-strlen.c (handle_builtin_strlen): Avoid storing
747         a strnlen result if it's less than the length of the string.
749 2018-06-25  Martin Sebor  <msebor@redhat.com>
751         PR tree-optimization/85700
752         * gimple-fold.c (gimple_fold_builtin_strncat): Adjust comment.
753         * tree-ssa-strlen.c (is_strlen_related_p): Handle integer subtraction.
754         (maybe_diag_stxncpy_trunc): Distinguish strncat from strncpy.
756 2018-06-25  Martin Sebor  <msebor@redhat.com>
758         * doc/extend.texi (Zero-length arrays): Update and clarify.
760 2018-06-25  Michael Meissner  <meissner@linux.ibm.com>
762         * config.gcc (powerpc64le*): Revert January 16th, 2018 patch that
763         added IEEE/IBM long double multilib support on PowerPC little
764         endian Linux systems.
765         * config/rs6000/linux64.h (MULTILIB_DEFAULTS_IEEE): Likewise.
766         (MULTILIB_DEFAULTS): Likewise.
767         * config/rs6000/rs6000.c (rs6000_option_override_internal):
768         Likewise.
769         * config/rs6000/rs6000.h (TARGET_IEEEQUAD_MULTILIB): Likewise.
770         * config/rs6000/t-ldouble-linux64le-ibm: Delete, no longer used.
771         * config/rs6000/t-ldouble-linux64le-ieee: Delete, no longer used.
773 2018-06-25  Alexander Monakov  <amonakov@ispras.ru>
775         PR middle-end/86311
776         * sort.cc (REORDER_23): Avoid memcpy with same destination and source.
777         (REORDER_45): Likewise.
779 2018-06-25  Jeff Law  <law@redhat.com>
781         * config/v850/v850.md (divmodhi4): Make sure to sign extend the
782         dividend to 32 bits.  Adjust length.
783         (udivmodhi4): Cleanup output template.  Fix length.
785 2018-06-25  Carl Love  <cel@us.ibm.com>
787         * config/rs6000/vsx.md: Change word selector to prefered location.
789 2018-06-25  Richard Biener  <rguenther@suse.de>
791         PR tree-optimization/86304
792         * tree-vectorizer.c (vectorize_loops): Walk over new possibly
793         epilogue-if-converted loops as well.
795 2018-06-25  Jan Hubicka  <hubicka@ucw.cz>
797         * lto-section-out.c (lto_begin_section): Do not print section
798         name for noaddr and unnumbered dumps.
800 2018-06-25  Richard Biener  <rguenther@suse.de>
802         * tree-vectorizer.h (struct vec_info_shared): New structure
803         with parts split out from struct vec_info and loop_nest from
804         struct _loop_vec_info.
805         (struct vec_info): Adjust accordingly.
806         (struct _loop_vec_info): Likewise.
807         (LOOP_VINFO_LOOP_NEST): Adjust.
808         (LOOP_VINFO_DATAREFS): Likewise.
809         (LOOP_VINFO_DDRS): Likewise.
810         (struct _bb_vec_info): Likewise.
811         (BB_VINFO_DATAREFS): Likewise.
812         (BB_VINFO_DDRS): Likewise.
813         (struct _stmt_vec_info): Add dr_aux member.
814         (DR_VECT_AUX): Adjust to refer to member of DR_STMTs vinfo.
815         (DR_MISALIGNMENT_UNINITIALIZED): New.
816         (set_dr_misalignment): Adjust.
817         (dr_misalignment): Assert misalign isn't DR_MISALIGNMENT_UNINITIALIZED.
818         (vect_analyze_loop): Adjust prototype.
819         (vect_analyze_loop_form): Likewise.
820         * tree-vect-data-refs.c (vect_analyze_data_ref_dependences):
821         Compute dependences lazily.
822         (vect_record_base_alignments): Use shared datarefs/ddrs.
823         (vect_verify_datarefs_alignment): Likewise.
824         (vect_analyze_data_refs_alignment): Likewise.
825         (vect_analyze_data_ref_accesses): Likewise.
826         (vect_analyze_data_refs): Likewise.
827         * tree-vect-loop.c (_loop_vec_info::_loop_vec_info): Add
828         constructor parameter for shared part.
829         (vect_analyze_loop_form): Pass in shared part and adjust.
830         (vect_analyze_loop_2): Pass in storage for the number of
831         stmts.  Move loop nest finding to the caller.  Compute
832         datarefs lazily.
833         (vect_analyze_loop): Pass in shared part.
834         (vect_transform_loop): Verify shared datarefs are unchanged.
835         * tree-vect-slp.c (_bb_vec_info::_bb_vec_info): Add
836         constructor parameter for shared part.
837         (vect_slp_analyze_bb_1): Pass in shared part and adjust.
838         (vect_slp_bb): Verify shared datarefs are unchanged before
839         transform.
840         * tree-vect-stmts.c (ensure_base_align): Adjust for DR_AUX
841         change.
842         (new_stmt_vec_info): Initialize DR_AUX misalignment to
843         DR_MISALIGNMENT_UNINITIALIZED.
844         * tree-vectorizer.c (vec_info::vec_info): Add constructor
845         parameter for shared part.
846         (vec_info::~vec_info): Adjust.
847         (vec_info_shared::vec_info_shared): New.
848         (vec_info_shared::~vec_info_shared): Likewise.
849         (vec_info_shared::save_datarefs): Likewise.
850         (vec_info_shared::check_datarefs): Likewise.
851         (try_vectorize_loop_1): Construct shared part live for analyses
852         of a single loop for multiple vector sizes.
853         * tree-parloops.c (gather_scalar_reductions): Adjust.
855 2018-06-25  Richard Biener  <rguenther@suse.de>
857         * tree-vect-data-refs.c (vect_find_stmt_data_reference): Modify
858         DR for SIMD lane accesses here and mark DR with (void *)-1 aux.
859         (vect_analyze_data_refs): Remove similar code from here and
860         simplify accordingly.
862 2018-06-25  Richard Biener  <rguenther@suse.de>
864         * tree-vect-data-refs.c (vect_check_gather_scatter): Fail
865         for reverse storage order accesses rather than asserting
866         they cannot happen here.
868 2018-06-25  Tom de Vries  <tdevries@suse.de>
870         PR debug/86257
871         * config/i386/i386.md (define_insn "*tls_global_dynamic_64_<mode>"):
872         Use data16 instead of .byte for insn prefix.
874 2018-06-25  Andreas Krebbel  <krebbel@linux.ibm.com>
876         PR C++/86082
877         * parser.c (make_char_string_pack): Pass this literal chars
878         through cpp_interpret_string.
879         (cp_parser_userdef_numeric_literal): Check the result of
880         make_char_string_pack.
882 2018-06-24  Maya Rashish  <coypu@sdf.org>
884         * ginclude/stddef.h: Simplify conditions around avoiding
885         re-definition of __size_t.
887 2018-06-22  Jan Hubicka  <hubicka@ucw.cz>
889         * lto-streamer-out.c (tree_is_indexable): Make LABEL_DECL nonindexable
890         unless it is forced or nonlocal; assert that we stream no IMPORTED_DECL.
892 2018-06-22  Maya Rashish  <coypu@sdf.org>
894         * doc/invoke.texi (mno-fancy-math-387): Update for changes
895         made to OpenBSD and NetBSD through the years.
897 2018-06-22  Kelvin Nilsen  <kelvin@gcc.gnu.org>
899         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Change
900         behavior of vec_pack (vector double, vector double) to match
901         behavior of vec_float2 (vector double, vector double).
903 2018-06-22  Olivier Hainque  <hainque@adacore.com>
905         * gimplify.c (gimplify_function_tree): Prevent creation
906         of a trampoline for the address of the current function
907         passed to entry/exit instrumentation hooks.
909 2018-06-22  Aaron Sawdey  <acsawdey@linux.ibm.com>
911         PR target/86222
912         * config/rs6000/rs6000-string.c (expand_strn_compare): Handle -m32
913         correctly.
915 2018-06-22  Martin Liska  <mliska@suse.cz>
917         PR tree-optimization/86263
918         * tree-switch-conversion.c (jump_table_cluster::find_jump_tables):
919         Bail out if is_enabled is false.
920         * tree-switch-conversion.h (jump_table_cluster::is_enabled):
921         New declaration.
922         (jump_table_cluster::is_enabled): New function.
924 2018-06-22  Jan Hubicka  <hubicka@ucw.cz>
926         * lto-streamer-out.c (DFS::DFS_write_tree_body): Do not stream
927         BINFO_BASE_ACCESSES and BINFO_VPTR_FIELD.
928         * tree-streamer-in.c (streamer_read_tree_bitfields): Likewise.
929         (lto_input_ts_binfo_tree_pointers): Likewise.
930         * tree-streamer-out.c (streamer_write_tree_bitfields,
931         write_ts_binfo_tree_pointers): Likewise.
932         * tree.c (free_lang_data_in_binfo): Clear BINFO_VPTR_FIELD.
934 2018-06-22  Jan Hubicka  <hubicka@ucw.cz>
936         * tree.c (free_lang_data_in_type): Free all TYPE_VFIELDs.
938 2018-06-22  Martin Liska  <mliska@suse.cz>
940         * symbol-summary.h (get): Make it pure and inline move
941         functionality from ::get function.
942         (get): Remove and inline into ::get and ::get_create.
943         (get_create): Move code from ::get function.
945 2018-06-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
947         PR target/85994
948         * config/i386/sol2.h (CPP_SPEC): Don't pass -P for
949         -x assembler-with-cpp.
951 2018-06-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
953         * config/sol2.h (TARGET_OS_CPP_BUILTINS): Define
954         _FILE_OFFSET_BITS=64 for C++.
956 2018-06-21  Michael Meissner  <meissner@linux.ibm.com>
958         * config/rs6000/rs6000.md (extendtfif2): Add missing 128-bit
959         conversion insn that shows up when pr85657-3.c is compiled using
960         IEEE 128-bit long double.
961         (neg<mode>2_internal): Use the correct mode to check whether the
962         mode is IBM extended.
963         * config/rs6000/rs6000.c (init_float128_ieee): Prevent complex
964         multiply and divide external functions from being created more
965         than once.
967 2018-06-21  Eric Botcazou  <ebotcazou@adacore.com>
969         * cfgrtl.c (fixup_reorder_chain): Do not emit NOPs in DECL_IGNORED_P
970         functions.
971         (rtl_merge_blocks): Likewise.  Do not emit a NOP if the location of
972         the edge can be forwarded.
973         (cfg_layout_merge_blocks): Likewise.
975 2018-06-21  Eric Botcazou  <ebotcazou@adacore.com>
977         * except.c (finish_eh_generation): Commit edge insertions only after
978         the EH edges have been redirected from post-landing to landing pads.
980 2018-06-21  Eric Botcazou  <ebotcazou@adacore.com>
982         * tree-nested.c (get_frame_type): Use create_tmp_var_raw instead of
983         create_tmp_var_for to create the FRAME decl.
984         (finalize_nesting_tree_1): Do not unchain the FRAME decl.
986 2018-06-21  Eric Botcazou  <ebotcazou@adacore.com>
988         * tree-inline.c (copy_edges_for_bb): Minor tweak.
989         (maybe_move_debug_stmts_to_successors): Also reset the locus of the
990         debug statement when resetting its value.
991         (expand_call_inline): Copy the locus of the call onto the assignment
992         of the return value, if any.  Use local variable in more cases.
994 2018-06-21  Martin Liska  <mliska@suse.cz>
996         * ipa-pure-const.c (propagate_nothrow): Use
997         funct_state_summaries->get.
998         (dump_malloc_lattice): Likewise.
999         (propagate_malloc): Likewise.
1001 2018-06-21  Richard Biener  <rguenther@suse.de>
1003         * lto-streamer-out.c (DFS::DFS_write_tree_body): Update outdated
1004         comment.  Follow BLOCK_ABSTRACT_ORIGIN unconditionally.
1005         * tree-streamer-in.c (lto_input_ts_block_tree_pointers): Update
1006         comment.
1007         * tree-streamer-out.c (write_ts_block_tree_pointers): Stream
1008         BLOCK_ABSTRACT_ORIGIN unconditionally.
1010 2018-06-21  David Malcolm  <dmalcolm@redhat.com>
1012         * ipa-cp.c (ipcp_driver): Set edge_clone_summaries to NULL after
1013         deleting it.
1014         * ipa-reference.c (ipa_reference_c_finalize): Delete
1015         ipa_ref_opt_sum_summaries and set it to NULL.
1017 2018-06-21  Tom de Vries  <tdevries@suse.de>
1019         PR tree-optimization/85859
1020         * tree-ssa-tail-merge.c (stmt_local_def): Copy gimple_is_call
1021         test with comment from bb_no_side_effects_p.
1023 2018-06-21  Richard Biener  <rguenther@suse.de>
1025         PR tree-optimization/86232
1026         * tree-ssa-loop-niter.c (number_of_iterations_popcount): Adjust
1027         max for constant niter.
1029 2018-06-21  Andre Vieira  <andre.simoesdiasvieira@arm.com>
1031         * config/aarch64/aarch64-simd.md
1032         (*aarch64_crypto_aes<aes_op>v16qi_xor_combine): New.
1034 2018-06-21  Andre Vieira  <andre.simoesdiasvieira@arm.com>
1036         * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aes_op>v16qi):
1037         Make opernads of the unspec commutative.
1039 2018-06-21  Richard Biener  <rguenther@suse.de>
1041         * tree-data-ref.c (dr_step_indicator): Handle NULL DR_STEP.
1042         * tree-vect-data-refs.c (vect_analyze_possibly_independent_ddr):
1043         Avoid calling vect_mark_for_runtime_alias_test with gathers or scatters.
1044         (vect_analyze_data_ref_dependence): Re-order checks to deal with
1045         NULL DR_STEP.
1046         (vect_record_base_alignments): Do not record base alignment
1047         for gathers or scatters.
1048         (vect_compute_data_ref_alignment): Drop return value that is always
1049         true.  Bail out early for gathers or scatters.
1050         (vect_enhance_data_refs_alignment): Bail out early for gathers
1051         or scatters.
1052         (vect_find_same_alignment_drs): Likewise.
1053         (vect_analyze_data_refs_alignment): Remove dead code.
1054         (vect_slp_analyze_and_verify_node_alignment): Likewise.
1055         (vect_analyze_data_refs): For possible gathers or scatters do
1056         not create an alternate DR, just check their possible validity
1057         and mark them.  Adjust DECL_NONALIASED handling to not rely
1058         on DR_BASE_ADDRESS.
1059         * tree-vect-loop-manip.c (vect_update_inits_of_drs): Do not
1060         update inits of gathers or scatters.
1061         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern):
1062         Also copy gather/scatter flag to pattern vinfo.
1064 2018-06-20  Kelvin Nilsen  <kelvin@gcc.gnu.org>
1066         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Change
1067         behavior of vec_packsu (vector unsigned long long, vector unsigned
1068         long long) to match behavior of vec_packs with same signature.
1070 2018-06-20  Chung-Lin Tang <cltang@codesourcery.com>
1071             Thomas Schwinge <thomas@codesourcery.com>
1072             Cesar Philippidis  <cesar@codesourcery.com>
1074         * gimplify.c (gimplify_scan_omp_clauses): Add support for
1075         OMP_CLAUSE_{IF_PRESENT,FINALIZE}.
1076         (gimplify_adjust_omp_clauses): Likewise.
1077         (gimplify_oacc_declare_1): Add support for GOMP_MAP_RELEASE, remove
1078         support for GOMP_MAP_FORCE_{ALLOC,TO,FROM,TOFROM}.
1079         (gimplify_omp_target_update): Update handling of acc update and
1080         enter/exit data.
1081         * omp-low.c (install_var_field): Remove unused parameter
1082         base_pointers_restrict.
1083         (scan_sharing_clauses): Remove base_pointers_restrict parameter.
1084         Update call to install_var_field. Handle OMP_CLAUSE_{IF_PRESENT,
1085         FINALIZE}
1086         (omp_target_base_pointers_restrict_p): Delete.
1087         (scan_omp_target): Update call to scan_sharing_clauses.
1088         * tree-core.h (enum omp_clause_code): Add OMP_CLAUSE_{IF_PRESENT,
1089         FINALIZE}.
1090         * tree-nested.c (convert_nonlocal_omp_clauses): Handle
1091         OMP_CLAUSE_{IF_PRESENT,FINALIZE}.
1092         (convert_local_omp_clauses): Likewise.
1093         * tree-pretty-print.c (dump_omp_clause): Likewise.
1094         * tree.c (omp_clause_num_ops): Add entries for  OMP_CLAUSE_{IF_PRESENT,
1095         FINALIZE}.
1096         (omp_clause_code_name): Likewise.
1098 2018-06-20  Jakub Jelinek  <jakub@redhat.com>
1100         PR debug/86194
1101         * var-tracking.c (use_narrower_mode_test): Check if shift amount can
1102         be narrowed.
1104         PR tree-optimization/86231
1105         * tree-vrp.c (union_ranges): For (  [  )  ] or (   )[   ] range and
1106         anti-range don't overwrite *vr0min before using it to compute *vr0max.
1108 2018-06-20  Tom de Vries  <tdevries@suse.de>
1110         PR tree-optimization/86097
1111         * tree-ssa-loop-manip.c (canonicalize_loop_ivs): Also convert *nit to
1112         iv type if signedness of iv type is not the same as that of *nit.
1114 2018-06-20  Jakub Jelinek  <jakub@redhat.com>
1116         * cfgrtl.c (rtl_verify_edges): Formatting fix.  If bb->preds has any
1117         EDGE_EH edges, verify they are all EDGE_EH.
1119 2018-06-20  Maya Rashish  <coypu@sdf.org>
1121         * ginclude/stddef.h: Limit #include <machine/ansi.h> to NetBSD.
1123 2018-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1125         * config/aarch64/aarch64-tuning-flags.def (no_ldp_stp_qregs): New.
1126         * config/aarch64/aarch64.c (xgene1_tunings): Add
1127         AARCH64_EXTRA_TUNE_NO_LDP_STP_QREGS to tune_flags.
1128         (aarch64_mode_valid_for_sched_fusion_p):
1129         Allow 16-byte modes.
1130         (aarch64_classify_address): Allow 16-byte modes for load_store_pair_p.
1131         * config/aarch64/aarch64-ldpstp.md: Add peepholes for LDP STP of
1132         128-bit modes.
1133         * config/aarch64/aarch64-simd.md (load_pair<VQ:mode><VQ2:mode>):
1134         New pattern.
1135         (vec_store_pair<VQ:mode><VQ2:mode>): Likewise.
1136         * config/aarch64/iterators.md (VQ2): New mode iterator.
1138 2018-06-20  Martin Liska  <mliska@suse.cz>
1140         * tree-switch-conversion.c (jump_table_cluster::can_be_handled):
1141         Change default ratio from 10 to 8.
1143 2018-06-20  Martin Liska  <mliska@suse.cz>
1145         * tree-switch-conversion.c (jump_table_cluster::find_jump_tables):
1146         New.
1147         (bit_test_cluster::find_bit_tests): Likewise.
1148         (switch_decision_tree::analyze_switch_statement): Find clusters.
1149         * tree-switch-conversion.h (struct jump_table_cluster): Document
1150         hierarchy.
1152 2018-06-20  Martin Liska  <mliska@suse.cz>
1154         * tree-switch-conversion.c (switch_conversion::collect):
1155         Record m_uniq property.
1156         (switch_conversion::expand): Bail out for special conditions.
1157         (group_cluster::~group_cluster): New.
1158         (group_cluster::group_cluster): Likewise.
1159         (group_cluster::dump): Likewise.
1160         (jump_table_cluster::emit): New.
1161         (switch_decision_tree::fix_phi_operands_for_edges): New.
1162         (struct case_node): Remove struct.
1163         (jump_table_cluster::can_be_handled): New.
1164         (case_values_threshold): Moved to header.
1165         (reset_out_edges_aux): Likewise.
1166         (jump_table_cluster::is_beneficial): New.
1167         (bit_test_cluster::can_be_handled): Likewise.
1168         (add_case_node): Remove.
1169         (bit_test_cluster::is_beneficial): New.
1170         (case_bit_test::cmp): New.
1171         (bit_test_cluster::emit): New.
1172         (expand_switch_as_decision_tree_p): Remove.
1173         (bit_test_cluster::hoist_edge_and_branch_if_true): New.
1174         (fix_phi_operands_for_edge): Likewise.
1175         (switch_decision_tree::analyze_switch_statement): New.
1176         (compute_cases_per_edge): Move ...
1177         (switch_decision_tree::compute_cases_per_edge): ... here.
1178         (try_switch_expansion): Likewise.
1179         (switch_decision_tree::try_switch_expansion): Likewise.
1180         (record_phi_operand_mapping): Likewise.
1181         (switch_decision_tree::record_phi_operand_mapping): Likewise.
1182         (emit_case_decision_tree): Likewise.
1183         (switch_decision_tree::emit): Likewise.
1184         (balance_case_nodes): Likewise.
1185         (switch_decision_tree::balance_case_nodes): Likewise.
1186         (dump_case_nodes): Likewise.
1187         (switch_decision_tree::dump_case_nodes): Likewise.
1188         (emit_jump): Likewise.
1189         (switch_decision_tree::emit_jump): Likewise.
1190         (emit_cmp_and_jump_insns): Likewise.
1191         (switch_decision_tree::emit_cmp_and_jump_insns): Likewise.
1192         (emit_case_nodes): Likewise.
1193         (switch_decision_tree::emit_case_nodes): Likewise.
1194         (conditional_probability): Remove.
1195         * tree-switch-conversion.h (enum cluster_type): New.
1196         (PRINT_CASE): New.
1197         (struct cluster): Likewise.
1198         (cluster::cluster): Likewise.
1199         (struct simple_cluster): Likewise.
1200         (simple_cluster::simple_cluster): Likewise.
1201         (struct group_cluster): Likewise.
1202         (struct jump_table_cluster): Likewise.
1203         (struct bit_test_cluster): Likewise.
1204         (struct min_cluster_item): Likewise.
1205         (struct case_tree_node): Likewise.
1206         (case_tree_node::case_tree_node): Likewise.
1207         (jump_table_cluster::case_values_threshold): Likewise.
1208         (struct case_bit_test): Likewise.
1209         (struct switch_decision_tree): Likewise.
1210         (struct switch_conversion): Likewise.
1211         (switch_decision_tree::reset_out_edges_aux): Likewise.
1213 2018-06-20  Martin Liska  <mliska@suse.cz>
1215         * tree-switch-conversion.c (MAX_CASE_BIT_TESTS): Remove.
1216         (hoist_edge_and_branch_if_true): Likewise.
1217         (expand_switch_using_bit_tests_p): Likewise.
1218         (struct case_bit_test): Likewise.
1219         (case_bit_test_cmp): Likewise.
1220         (emit_case_bit_tests): Likewise.
1221         (switch_conversion::switch_conversion): New class.
1222         (struct switch_conv_info): Remove old struct.
1223         (collect_switch_conv_info): More to ...
1224         (switch_conversion::collect): ... this.
1225         (check_range): Likewise.
1226         (switch_conversion::check_range): Likewise.
1227         (check_all_empty_except_final): Likewise.
1228         (switch_conversion::check_all_empty_except_final): Likewise.
1229         (check_final_bb): Likewise.
1230         (switch_conversion::check_final_bb): Likewise.
1231         (create_temp_arrays): Likewise.
1232         (switch_conversion::create_temp_arrays): Likewise.
1233         (free_temp_arrays): Likewise.
1234         (gather_default_values): Likewise.
1235         (switch_conversion::gather_default_values): Likewise.
1236         (build_constructors): Likewise.
1237         (switch_conversion::build_constructors): Likewise.
1238         (constructor_contains_same_values_p): Likewise.
1239         (switch_conversion::contains_same_values_p): Likewise.
1240         (array_value_type): Likewise.
1241         (switch_conversion::array_value_type): Likewise.
1242         (build_one_array): Likewise.
1243         (switch_conversion::build_one_array): Likewise.
1244         (build_arrays): Likewise.
1245         (switch_conversion::build_arrays): Likewise.
1246         (gen_def_assigns): Likewise.
1247         (switch_conversion::gen_def_assigns): Likewise.
1248         (prune_bbs): Likewise.
1249         (switch_conversion::prune_bbs): Likewise.
1250         (fix_phi_nodes): Likewise.
1251         (switch_conversion::fix_phi_nodes): Likewise.
1252         (gen_inbound_check): Likewise.
1253         (switch_conversion::gen_inbound_check): Likewise.
1254         (process_switch): Use the newly created class.
1255         (switch_conversion::expand): New.
1256         (switch_conversion::~switch_conversion): New.
1257         * tree-switch-conversion.h: New file.
1259 2018-06-20  Richard Sandiford  <richard.sandiford@arm.com>
1261         * tree-vectorizer.h (NUM_PATTERNS, vect_recog_func_ptr): Move to
1262         tree-vect-patterns.c.
1263         * tree-vect-patterns.c (vect_supportable_direct_optab_p): New function.
1264         (vect_recog_dot_prod_pattern): Use it.  Remove the type_in argument.
1265         (vect_recog_sad_pattern): Likewise.
1266         (vect_recog_widen_sum_pattern): Likewise.
1267         (vect_recog_pow_pattern): Likewise.  Check for a null vectype.
1268         (vect_recog_widen_shift_pattern): Remove the type_in argument.
1269         (vect_recog_rotate_pattern): Likewise.
1270         (vect_recog_mult_pattern): Likewise.
1271         (vect_recog_vector_vector_shift_pattern): Likewise.
1272         (vect_recog_divmod_pattern): Likewise.
1273         (vect_recog_mixed_size_cond_pattern): Likewise.
1274         (vect_recog_bool_pattern): Likewise.
1275         (vect_recog_mask_conversion_pattern): Likewise.
1276         (vect_try_gather_scatter_pattern): Likewise.
1277         (vect_recog_widen_mult_pattern): Likewise.  Check for a null vectype.
1278         (vect_recog_over_widening_pattern): Likewise.
1279         (vect_recog_gather_scatter_pattern): Likewise.
1280         (vect_recog_func_ptr): Move from tree-vectorizer.h
1281         (vect_vect_recog_func_ptrs): Move further down the file.
1282         (vect_recog_func): Likewise.  Remove the third argument.
1283         (NUM_PATTERNS): Define based on vect_vect_recog_func_ptrs.
1284         (vect_pattern_recog_1): Expect the pattern function to do any
1285         necessary target tests.  Also expect it to provide a vector type.
1286         Remove the type_in handling.
1288 2018-06-20  Richard Sandiford  <richard.sandiford@arm.com>
1290         * tree-vect-patterns.c (vect_pattern_detected): New function.
1291         (vect_recog_dot_prod_patternm, vect_recog_sad_pattern)
1292         (vect_recog_widen_mult_pattern, vect_recog_widen_sum_pattern)
1293         (vect_recog_over_widening_pattern, vect_recog_widen_shift_pattern
1294         (vect_recog_rotate_pattern, vect_recog_vector_vector_shift_pattern)
1295         (vect_recog_mult_pattern, vect_recog_divmod_pattern)
1296         (vect_recog_mixed_size_cond_pattern, vect_recog_bool_pattern)
1297         (vect_recog_mask_conversion_pattern)
1298         (vect_try_gather_scatter_pattern): Likewise.
1300 2018-06-20  Richard Sandiford  <richard.sandiford@arm.com>
1302         * tree-vect-patterns.c (vect_get_internal_def): New function.
1303         (vect_recog_dot_prod_pattern, vect_recog_sad_pattern)
1304         (vect_recog_vector_vector_shift_pattern, check_bool_pattern)
1305         (search_type_for_mask_1): Use it.
1307 2018-06-20  Richard Sandiford  <richard.sandiford@arm.com>
1309         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): Remove
1310         redundant WIDEN_SUM_EXPR handling.
1311         (vect_recog_sad_pattern): Likewise.
1313 2018-06-20  Richard Sandiford  <richard.sandiford@arm.com>
1315         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): Remove
1316         redundant check that the types of a PLUS_EXPR or MULT_EXPR agree.
1317         (vect_recog_sad_pattern): Likewise PLUS_EXPR, ABS_EXPR and MINUS_EXPR.
1318         (vect_recog_widen_mult_pattern): Likewise MULT_EXPR.
1319         (vect_recog_widen_sum_pattern): Likewise PLUS_EXPR.
1321 2018-06-20  Richard Sandiford  <richard.sandiford@arm.com>
1323         * tree-vect-stmts.c (vectorizable_call): Make sure that we
1324         use the stmt_vec_info of the original bb statement for the
1325         new zero assignment, even if the call is part of a pattern.
1327 2018-06-20  Richard Sandiford  <richard.sandiford@arm.com>
1329         * tree-vectorizer.h (_stmt_vec_info): Note above pattern_def_seq
1330         that the sequence is attached to the original statement rather
1331         than the pattern statement.
1332         * tree-vect-loop.c (vect_determine_vf_for_stmt): Take the
1333         PATTERN_DEF_SEQ from the original statement rather than
1334         the main pattern statement.
1335         * tree-vect-stmts.c (free_stmt_vec_info): Likewise.
1336         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): Likewise.
1337         (vect_mark_pattern_stmts): Don't copy the PATTERN_DEF_SEQ.
1339 2018-06-20  Richard Sandiford  <richard.sandiford@arm.com>
1341         * tree-vect-stmts.c (vect_analyze_stmt): Move the handling of pattern
1342         definition statements before the early exit for statements that aren't
1343         live or relevant.
1344         * tree-vect-loop.c (vect_transform_loop_stmt): New function,
1345         split out from...
1346         (vect_transform_loop): ...here.  Process pattern definition
1347         statements without first checking whether the main pattern
1348         statement is live or relevant.
1350 2018-06-19  Eric Botcazou  <ebotcazou@adacore.com>
1352         * tree-cfgcleanup.c (tree_forwarder_block_p): Do not return false at
1353         -O0 if the locus represent UNKNOWN_LOCATION but have different values.
1354         
1355 2018-06-19  Aaron Sawdey  <acsawdey@linux.ibm.com>
1357         * config/rs6000/rs6000-string.c (select_block_compare_mode): Check
1358         TARGET_EFFICIENT_OVERLAPPING_UNALIGNED here instead of in caller.
1359         (do_and3, do_and3_mask, do_compb3, do_rotl3): New functions.
1360         (expand_block_compare): Change select_block_compare_mode call.
1361         (expand_strncmp_align_check): Use new functions, fix comment.
1362         (emit_final_str_compare_gpr): New function.
1363         (expand_strn_compare): Refactor and clean up code.
1364         * config/rs6000/vsx.md (vsx_mov<mode>_64bit): Remove *.
1366 2018-06-19  Tony Reix  <tony.reix@atos.com>
1367             Damien Bergamini  <damien.bergamini@atos.com>
1368             David Edelsohn  <dje.gcc@gmail.com>
1370         * collect2.c (static_obj): New variable.
1371         (static_libs): New variable.
1372         (is_in_list): Uncomment declaration.
1373         (main): Track AIX libraries linked statically.
1374         (is_in_list): Uncomment definition.
1375         (scan_prog_file): Don't add AIX shared libraries initializer
1376         to constructor list if linking statically.
1378 2018-06-19  Max Filippov  <jcmvbkbc@gmail.com>
1380         * config/xtensa/xtensa.md (UNSPEC_FRAME_BLOCKAGE): New unspec
1381         constant.
1382         (allocate_stack, frame_blockage, *frame_blockage): New patterns.
1384 2018-06-19  Jan Hubicka  <hubicka@ucw.cz>
1386         * tree.c (find_decls_types_r): Remove all non-VAR_DECLs from
1387         blocks.
1389 2018-06-19  Martin Liska  <mliska@suse.cz>
1391         * config/i386/i386.c (ix86_can_inline_p): Do not use
1392         ipa_fn_summaries::get_create.
1393         * ipa-cp.c (ipcp_cloning_candidate_p): Replace get_create with
1394         get.
1395         (devirtualization_time_bonus): Likewise.
1396         (ipcp_propagate_stage): Likewise.
1397         * ipa-fnsummary.c (redirect_to_unreachable): Likewise.
1398         (edge_set_predicate): Likewise.
1399         (evaluate_conditions_for_known_args): Likewise.
1400         (evaluate_properties_for_edge): Likewise.
1401         (ipa_call_summary::reset): Tranform to ...
1402         (ipa_call_summary::~ipa_call_summary): ... this.
1403         (ipa_fn_summary::reset): Transform to ...
1404         (ipa_fn_summary::~ipa_fn_summary): ... this.
1405         (ipa_fn_summary_t::remove): Rename to ...
1406         (ipa_fn_summary_t::remove_callees): ... this.
1407         (ipa_fn_summary_t::duplicate): Use placement new
1408         instead of memory copy.
1409         (ipa_call_summary_t::duplicate): Likewise.
1410         (ipa_call_summary_t::remove): Remove.
1411         (dump_ipa_call_summary): Change get_create to get.
1412         (ipa_dump_fn_summary): Dump only when summary exists.
1413         (analyze_function_body): Use symbol_summary::get instead
1414         of get_create.
1415         (compute_fn_summary): Likewise.
1416         (estimate_edge_devirt_benefit): Likewise.
1417         (estimate_edge_size_and_time): Likewise.
1418         (inline_update_callee_summaries): Likewise.
1419         (remap_edge_change_prob): Likewise.
1420         (remap_edge_summaries): Likewise.
1421         (ipa_merge_fn_summary_after_inlining): Likewise.
1422         (write_ipa_call_summary): Likewise.
1423         (ipa_fn_summary_write): Likewise.
1424         (ipa_free_fn_summary): Likewise.
1425         * ipa-fnsummary.h (struct GTY): Add new ctor and copy ctor.
1426         (struct ipa_call_summary): Likewise.
1427         * ipa-icf.c (sem_function::merge): Use symbol_summary::get instead
1428         of get_create.
1429         * ipa-inline-analysis.c (do_estimate_edge_time): Likewise.
1430         (estimate_size_after_inlining): Likewise.
1431         (estimate_growth): Likewise.
1432         (growth_likely_positive): Likewise.
1433         * ipa-inline-transform.c (clone_inlined_nodes): Likewise.
1434         (inline_call): Likewise.
1435         * ipa-inline.c (caller_growth_limits): Likewise.
1436         (can_inline_edge_p): Likewise.
1437         (can_inline_edge_by_limits_p): Likewise.
1438         (compute_uninlined_call_time): Likewise.
1439         (compute_inlined_call_time): Likewise.
1440         (want_inline_small_function_p): Likewise.
1441         (edge_badness): Likewise.
1442         (update_caller_keys): Likewise.
1443         (update_callee_keys): Likewise.
1444         (inline_small_functions): Likewise.
1445         (inline_to_all_callers_1): Likewise.
1446         (dump_overall_stats): Likewise.
1447         (early_inline_small_functions): Likewise.
1448         (early_inliner): Likewise.
1449         * ipa-profile.c (ipa_propagate_frequency_1): Likewise.
1450         * ipa-prop.c (ipa_make_edge_direct_to_target): Likewise.
1451         * ipa-pure-const.c (malloc_candidate_p): Likewise.
1452         * ipa-split.c (execute_split_functions): Likewise.
1453         * symbol-summary.h: Likewise.
1454         * tree-sra.c (ipa_sra_preliminary_function_checks): Likewise.
1456 2018-06-19  Richard Biener  <rguenther@suse.de>
1458         * tree-vectorizer.c (try_vectorize_loop_1): Split out of ...
1459         (vectorize_loops): ... here.  Fix dbgcnt handling.
1460         (try_vectorize_loop): Wrap try_vectorize_loop_1.
1462 2018-06-19  Segher Boessenkool  <segher@kernel.crashing.org>
1464         PR target/86197
1465         * config/rs6000/rs6000.md (rs6000_discover_homogeneous_aggregate): An
1466         ieee128 argument takes up only one (vector) register, not two (floating
1467         point) registers.
1469 2018-06-19  Eric Botcazou  <ebotcazou@adacore.com>
1471         * gimplify.c (gimplify_init_constructor): Really never clear for an
1472         incomplete constructor if CONSTRUCTOR_NO_CLEARING is set.
1474 2018-06-19  Richard Biener  <rguenther@suse.de>
1476         PR tree-optimization/86179
1477         * tree-vect-patterns.c (vect_pattern_recog_1): Clean up
1478         after failed recognition.
1480 2018-06-18  Martin Sebor  <msebor@redhat.com>
1482         PR middle-end/85602
1483         * calls.c (maybe_warn_nonstring_arg): Handle strncat.
1484         * tree-ssa-strlen.c (is_strlen_related_p): Make extern.
1485         Handle integer subtraction.
1486         (maybe_diag_stxncpy_trunc): Handle nonstring source arguments.
1487         * tree-ssa-strlen.h (is_strlen_related_p): Declare.
1489 2018-06-18  David Malcolm  <dmalcolm@redhat.com>
1491         * config/frv/frv-protos.h (frv_ifcvt_modify_insn): Strengthen 3rd
1492         param from rtx to rtx_insn *.
1493         * config/frv/frv.c (frv_ifcvt_add_insn): Likewise for "insn"
1494         param.
1495         (frv_ifcvt_modify_insn): Likwise.
1496         (frv_ifcvt_modify_final): Likwise for local "existing_insn",
1497         adding an as_a <rtx_insn *> cast.  Likewise for local "insn".
1498         * config/mips/mips.c (r10k_insert_cache_barriers): Add an
1499         as_a <rtx_insn *> cast to local "unprotected_region" once
1500         it's been established that it's not NULL or pc_rtx.
1501         * config/nds32/nds32-relax-opt.c (nds32_group_insns): Strengthen
1502         param "sethi" from rtx to rtx_insn *.
1503         (nds32_group_float_insns): Likewise for param "insn".
1504         * config/vax/vax-protos.h (vax_output_int_add): Likewise for 1st
1505         param.
1506         (vax_output_int_subtract): Likewise.
1507         * config/vax/vax.c (vax_output_int_add): Likewise for param
1508         "insn".
1509         (vax_output_int_subtract): Likewise.
1510         * emit-rtl.c (set_insn_deleted): Likewise, removing cast.
1511         (emit_pattern_after): Likewise for param "after".
1512         (emit_insn_after): Likewise.
1513         (emit_jump_insn_after): Likewise.
1514         (emit_call_insn_after): Likewise.
1515         (emit_debug_insn_after): Likewise.
1516         (emit_pattern_before): Likewise for param "before".
1517         (emit_insn_before): Likewise.
1518         (emit_jump_insn_before): Likewise.
1519         * final.c (get_insn_template): Likewise for param "insn", removing
1520         a cast.
1521         * output.h (get_insn_template): Likewise for 2nd param.
1522         * rtl.h (emit_insn_before): Likewise.
1523         (emit_jump_insn_before): Likewise.
1524         (emit_debug_insn_before_noloc): Likewise.
1525         (emit_insn_after): Likewise.
1526         (emit_jump_insn_after): Likewise.
1527         (emit_call_insn_after): Likewise.
1528         (emit_debug_insn_after): Likewise.
1529         (set_insn_deleted): Likewise for param.
1531 2018-06-18  Michael Meissner  <meissner@linux.ibm.com>
1533         PR target/85358
1534         * config/rs6000/rs6000-modes.def (toplevel): Rework the 128-bit
1535         floating point modes, so that IFmode is numerically greater than
1536         TFmode, which is greater than KFmode using FRACTIONAL_FLOAT_MODE
1537         to declare the ordering.  This prevents IFmode from being
1538         converted to TFmode when long double is IEEE 128-bit on an ISA 3.0
1539         machine.  Include rs6000-modes.h to share the fractional values
1540         between genmodes* and the rest of the compiler.
1541         (IFmode): Likewise.
1542         (KFmode): Likewise.
1543         (TFmode): Likewise.
1544         * config/rs6000/rs6000-modes.h: New file.
1545         * config/rs6000/rs6000.c (rs6000_debug_reg_global): Change the
1546         meaning of rs6000_long_double_size so that 126..128 selects an
1547         appropriate 128-bit floating point type.
1548         (rs6000_option_override_internal): Likewise.
1549         * config/rs6000/rs6000.h (toplevel): Include rs6000-modes.h.
1550         (TARGET_LONG_DOUBLE_128): Change the meaning of
1551         rs6000_long_double_size so that 126..128 selects an appropriate
1552         128-bit floating point type.
1553         (LONG_DOUBLE_TYPE_SIZE): Update comment.
1554         * config/rs6000/rs6000.md (trunciftf2): Correct the modes of the
1555         source and destination to match the standard usage.
1556         (truncifkf2): Likewise.
1557         (copysign<mode>3, IEEE iterator): Rework copysign of float128 on
1558         ISA 2.07 to use an explicit clobber, instead of passing in a
1559         temporary.
1560         (copysign<mode>3_soft): Likewise.
1562 2018-06-18  David Malcolm  <dmalcolm@redhat.com>
1564         * tree-vect-data-refs.c (vect_analyze_data_ref_dependences):
1565         Replace dump_printf_loc call with DUMP_VECT_SCOPE.
1566         (vect_slp_analyze_instance_dependence): Likewise.
1567         (vect_enhance_data_refs_alignment): Likewise.
1568         (vect_analyze_data_refs_alignment): Likewise.
1569         (vect_slp_analyze_and_verify_instance_alignment
1570         (vect_analyze_data_ref_accesses): Likewise.
1571         (vect_prune_runtime_alias_test_list): Likewise.
1572         (vect_analyze_data_refs): Likewise.
1573         * tree-vect-loop-manip.c (vect_update_inits_of_drs): Likewise.
1574         * tree-vect-loop.c (vect_determine_vectorization_factor): Likewise.
1575         (vect_analyze_scalar_cycles_1): Likewise.
1576         (vect_get_loop_niters): Likewise.
1577         (vect_analyze_loop_form_1): Likewise.
1578         (vect_update_vf_for_slp): Likewise.
1579         (vect_analyze_loop_operations): Likewise.
1580         (vect_analyze_loop): Likewise.
1581         (vectorizable_induction): Likewise.
1582         (vect_transform_loop): Likewise.
1583         * tree-vect-patterns.c (vect_pattern_recog): Likewise.
1584         * tree-vect-slp.c (vect_analyze_slp): Likewise.
1585         (vect_make_slp_decision): Likewise.
1586         (vect_detect_hybrid_slp): Likewise.
1587         (vect_slp_analyze_operations): Likewise.
1588         (vect_slp_bb): Likewise.
1589         * tree-vect-stmts.c (vect_mark_stmts_to_be_vectorized): Likewise.
1590         (vectorizable_bswap): Likewise.
1591         (vectorizable_call): Likewise.
1592         (vectorizable_simd_clone_call): Likewise.
1593         (vectorizable_conversion): Likewise.
1594         (vectorizable_assignment): Likewise.
1595         (vectorizable_shift): Likewise.
1596         (vectorizable_operation): Likewise.
1597         * tree-vectorizer.h (DUMP_VECT_SCOPE): New macro.
1599 2018-06-18  Martin Sebor  <msebor@redhat.com>
1601         PR tree-optimization/81384
1602         * builtin-types.def (BT_FN_SIZE_CONST_STRING_SIZE): New.
1603         * builtins.c (expand_builtin_strnlen): New function.
1604         (expand_builtin): Call it.
1605         (fold_builtin_n): Avoid setting TREE_NO_WARNING.
1606         * builtins.def (BUILT_IN_STRNLEN): New.
1607         * calls.c (maybe_warn_nonstring_arg): Handle BUILT_IN_STRNLEN.
1608         Warn for bounds in excess of maximum object size.
1609         * tree-ssa-strlen.c (maybe_set_strlen_range): Return tree representing
1610         single-value ranges.  Handle strnlen.
1611         (handle_builtin_strlen): Handle strnlen.
1612         (strlen_check_and_optimize_stmt): Same.
1613         * doc/extend.texi (Other Builtins): Document strnlen.
1615 2018-06-18  Maya Rashish  <coypu@sdf.org>
1617         * config/alpha/openbsd.h (TARGET_DEFAULT): Define.
1618         (LINK_SPEC, STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
1619         (INTMAX_TYPE, UINTMAX_TYPE, WINT_TYPE): Likewise.
1621         * config/alpha/elf.h (STARTFILE_SPEC, ENDFILE_SPEC): Move from
1622         here to ...
1623         * config/alpha/linux.h (STARTFILE_SPEC, ENDFILE_SPEC): Here.
1625 2018-06-18  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
1627         * tree.c (escaped_string::escape): Replace cast to char * by
1628         const_cast<char *> (unescaped).
1630 2018-06-18  Nick Clifton  <nickc@redhat.com>
1632         PR 84195
1633         * tree.c (escaped_string): New class.  Converts an unescaped
1634         string into its escaped equivalent.
1635         (warn_deprecated_use): Use the new class to convert the
1636         deprecation message, if present.
1637         (test_escaped_strings): New self test.
1638         (test_c_tests): Add test_escaped_strings.
1639         * doc/extend.texi (deprecated): Add a note that the
1640         deprecation message is affected by the -fmessage-length
1641         option, and that control characters will be escaped.
1642         (#pragma GCC error): Document this pragma.
1643         (#pragma GCC warning): Likewise.
1644         * doc/invoke.texi (-fmessage-length): Document this option's
1645         effect on the #warning and #error preprocessor directives and
1646         the deprecated attribute.
1648 2018-06-18  Eric Botcazou  <ebotcazou@adacore.com>
1650         * tree.c (decl_value_expr_lookup): Revert latest change.
1651         (decl_value_expr_insert): Likewise.
1653 2018-06-17  Eric Botcazou  <ebotcazou@adacore.com>
1655         * gimplify.c (nonlocal_vlas): Delete.
1656         (nonlocal_vla_vars): Likewise.
1657         (gimplify_var_or_parm_decl): Do not add debug VAR_DECLs for non-local
1658         referenced VLAs.
1659         (gimplify_body): Do not create and destroy nonlocal_vlas.
1660         * tree-nested.c: Include diagnostic.h.
1661         (use_pointer_in_frame): Tweak.
1662         (lookup_field_for_decl): Add assertion and declare the transformation.
1663         (convert_nonlocal_reference_op) <PARM_DECL>: Rework and issue an
1664         internal error when the reference is in a wrong context.  Do not
1665         create a debug decl by default.
1666         (note_nonlocal_block_vlas): Delete.
1667         (convert_nonlocal_reference_stmt) <GIMPLE_BIND>: Do not call it.
1668         (convert_local_reference_op) <PARM_DECL>: Skip the frame decl.  Do not
1669         create a debug decl by default.
1670         (convert_gimple_call) <GIMPLE_CALL>: Issue an internal error when the
1671         call is in a wrong context.
1672         (fixup_vla_decls): New function.
1673         (finalize_nesting_tree_1): Adjust comment.  Call fixup_vla_decls if no
1674         debug variables were created.
1675         * tree.c (decl_value_expr_lookup): Add checking assertion.
1676         (decl_value_expr_insert): Likewise.
1678 2018-06-16  Kugan Vivekanandarajah  <kuganv@linaro.org>
1680         PR middle-end/82479
1681         * ipa-fnsummary.c (will_be_nonconstant_expr_predicate): Handle CALL_EXPR.
1682         * tree-scalar-evolution.c (interpret_expr): Likewise.
1683         (expression_expensive_p): Likewise.
1684         * tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Likewise.
1685         * tree-ssa-loop-niter.c (number_of_iterations_popcount): New.
1686         (number_of_iterations_exit_assumptions): Use number_of_iterations_popcount.
1687         (ssa_defined_by_minus_one_stmt_p): New.
1689 2018-06-16  Kugan Vivekanandarajah  <kuganv@linaro.org>
1691         PR middle-end/64946
1692         * cfgexpand.c (expand_debug_expr): Hande ABSU_EXPR.
1693         * config/i386/i386.c (ix86_add_stmt_cost): Likewise.
1694         * dojump.c (do_jump): Likewise.
1695         * expr.c (expand_expr_real_2): Check operand type's sign.
1696         * fold-const.c (const_unop): Handle ABSU_EXPR.
1697         (fold_abs_const): Likewise.
1698         * gimple-pretty-print.c (dump_unary_rhs): Likewise.
1699         * gimple-ssa-backprop.c (backprop::process_assign_use): Likesie.
1700         (strip_sign_op_1): Likesise.
1701         * match.pd: Add new pattern to generate ABSU_EXPR.
1702         * optabs-tree.c (optab_for_tree_code): Handle ABSU_EXPR.
1703         * tree-cfg.c (verify_gimple_assign_unary): Likewise.
1704         * tree-eh.c (operation_could_trap_helper_p): Likewise.
1705         * tree-inline.c (estimate_operator_cost): Likewise.
1706         * tree-pretty-print.c (dump_generic_node): Likewise.
1707         * tree-vect-patterns.c (vect_recog_sad_pattern): Likewise.
1708         * tree.def (ABSU_EXPR): New.
1710 2018-06-16  Jakub Jelinek  <jakub@redhat.com>
1712         PR middle-end/86095
1713         * common.opt (Wunsafe-loop-optimizations): Add Ignore, remove Var,
1714         documented as preserved for backward compatibility only.
1715         * doc/invoke.texi: Remove -Wunsafe-loop-optimizations documentation.
1717         PR rtl-optimization/86108
1718         * bb-reorder.c (create_forwarder_block): Renamed to ...
1719         (create_eh_forwarder_block): ... this.  Split OLD_BB after labels and
1720         jump from new landing pad to the second part.
1721         (sjlj_fix_up_crossing_landing_pad, dw2_fix_up_crossing_landing_pad):
1722         Adjust callers.
1724 2018-06-15  Jakub Jelinek  <jakub@redhat.com>
1726         PR middle-end/85878
1727         * expr.c (expand_assignment): Remove now redundant COMPLEX_MODE_P
1728         check from first store_expr, use to_mode instead of GET_MODE (to_rtx).
1729         Only call store_expr for halves if the mode is the same.
1731         PR middle-end/86123
1732         * match.pd ((X / Y) == 0 -> X < Y): Don't transform complex divisions.
1733         Fix up comment formatting.
1735 2018-06-15  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1737         * typed-splay-tree.h (typed_splay_tree::remove): New function.
1738         (typed_splay_tree::closure,
1739         typed_splay_tree::inner_foreach_fn, typed_splay_tree::m_inner): Deleted.
1740         (typed_splay_tree::typed_splay_tree,
1741         typed_splay_tree::operator =): Declared private.
1742         (typed_splay_tree::splay_tree_key, typed_splay_tree::splay_tree_value,
1743         typed_splay_tree::splay_tree_node_s, typed_splay_tree::KDEL,
1744         typed_splay_tree::VDEL, typed_splay_tree::splay_tree_delete_helper,
1745         typed_splay_tree::rotate_left, typed_splay_tree::rotate_right,
1746         typed_splay_tree::splay_tree_splay,
1747         typed_splay_tree::splay_tree_foreach_helper,
1748         typed_splay_tree::splay_tree_insert,
1749         typed_splay_tree::splay_tree_remove,
1750         typed_splay_tree::splay_tree_lookup,
1751         typed_splay_tree::splay_tree_predecessor,
1752         typed_splay_tree::splay_tree_successor,
1753         typed_splay_tree::splay_tree_min,
1754         typed_splay_tree::splay_tree_max): Took over from splay-tree.c/.h.
1755         (typed_splay_tree::root, typed_splay_tree::comp,
1756         typed_splay_tree::delete_key,
1757         typed_splay_tree::delete_value): New data members.
1758         * typed-splay-tree.c (selftest::test_str_to_int): Add a test for
1759         typed_splay_tree::remove.
1761 2018-06-15  Matthew Fortune  <matthew.fortune@mips.com>
1763         * config/mips/mips.h (ASM_SPEC): Pass through -mcrc, -mno-crc,
1764         -mginv and -mno-ginv to the assembler.
1765         * config/mips/mips.opt (-mcrc): New option.
1766         (-mginv): Likewise.
1767         * doc/invoke.text (-mcrc): Document.
1768         (-mginv): Likewise.
1770 2018-06-15  Nick Clifton  <nickc@redhat.com>
1772         PR 84195
1773         * tree.c (escaped_string): New class.  Converts an unescaped
1774         string into its escaped equivalent.
1775         (warn_deprecated_use): Use the new class to convert the
1776         deprecation message, if present.
1777         (test_escaped_strings): New self test.
1778         (test_c_tests): Add test_escaped_strings.
1779         * doc/extend.texi (deprecated): Add a note that the
1780         deprecation message is affected by the -fmessage-length
1781         option, and that control characters will be escaped.
1782         (#pragma GCC error): Document this pragma.
1783         (#pragma GCC warning): Likewise.
1784         * doc/invoke.texi (-fmessage-length): Document this option's
1785         effect on the #warning and #error preprocessor directives and
1786         the deprecated attribute.
1788 2018-06-15  Richard Biener  <rguenther@suse.de>
1790         * tree-vect-slp.c (vect_slp_bb): Dump MSG_OPTIMIZED_LOCATIONS
1791         here, also noting vector size used.
1792         * tree-vectorizer.c (vectorize_loops): Adjust.  Note vector
1793         size used in MSG_OPTIMIZED_LOCATIONS dump.
1794         (pass_slp_vectorize::execute): Adjust.
1796 2018-06-15  Claudiu Zissulescu  <claziss@synopsys.com>
1798         PR target/85968
1799         * config/arc/arc.c (arc_return_address_register): Fix
1800         if-condition.
1802 2018-06-15  Richard Biener  <rguenther@suse.de>
1804         PR middle-end/86159
1805         * tree-cfg.c (gimplify_build3): Do not strip sign conversions,
1806         leave useless conversion stripping to force_gimple_operand_gsi.
1807         (gimplify_build2): Likewise.
1808         (gimplify_build1): Likewise.
1810 2018-06-15  Richard Biener  <rguenther@suse.de>
1812         PR middle-end/86076
1813         * tree-cfg.c (move_stmt_op): unshare invariant addresses
1814         before adjusting their block.
1816 2018-06-15  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1818         * config.gcc (riscv*-*-elf* | riscv*-*-rtems*): Use custom
1819         multilibs for *-*-rtems*.
1820         * config/riscv/t-rtems: New file.
1822 2018-06-14  Jakub Jelinek  <jakub@redhat.com>
1824         PR middle-end/86122
1825         * match.pd ((A +- CST1) +- CST2): Punt if last resort
1826         unsigned_type_for returns NULL.
1828         PR target/85945
1829         * lower-subreg.c (find_decomposable_subregs): Don't decompose float
1830         subregs of multi-word pseudos unless the float mode has word size.
1832 2018-06-14  Richard Biener  <rguenther@suse.de>
1834         PR middle-end/86139
1835         * tree-vect-generic.c (build_word_mode_vector_type): Remove
1836         duplicate and harmful type_hash_canon.
1837         * tree.c (type_hash_canon): Assert we didn't find ourselves.
1839 2018-06-14  Richard Biener  <rguenther@suse.de>
1841         PR ipa/86124
1842         * tree-ssa-struct-alias.c (create_variable_info_for): Handle
1843         NULL cgraph_node.
1845 2018-06-14  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1847         * config/rtems.h (STDINT_LONG32): Define.
1849 2018-06-13  Matthew Fortune  <matthew.fortune@mips.com>
1850             Prachi Godbole  <prachi.godbole@imgtec.com>
1852         * config/mips/mips-cpus.def: Define P6600.
1853         * config/mips/mips-tables.opt: Regenerate.
1854         * config/mips/mips.c (mips_ucbranch_type): New enum.
1855         (mips_rtx_cost_data): Add support for P6600.
1856         (mips_issue_rate): Likewise.
1857         (mips_multipass_dfa_lookahead): Likewise.
1858         (mips_avoid_hazard): Likewise.
1859         (mips_reorg_process_insns): Likewise.
1860         (mips_classify_branch_p6600): New function.
1861         * config/mips/mips.h (TUNE_P6600): New define.
1862         (MIPS_ISA_LEVEL_SPEC): Infer mips64r6 from p6600.
1863         (ENABLE_LD_ST_PAIRS): Enable load/store bonding for p6600.
1864         * config/mips/mips.md: Include p6600.md.
1865         (processor): Add p6600.
1866         * config/mips/p6600.md: New file.
1867         * doc/invoke.texi: Add p6600 to supported architectures.
1869 2018-06-13  Martin Sebor  <msebor@redhat.com>
1871         PR tree-optimization/86114
1872         * gimple-fold.c (gimple_fold_builtin_strlen): Only handle LHS
1873         of integer types.
1874         * tree-ssa-strlen.c (maybe_set_strlen_range): Same.
1876 2018-06-13  Richard Biener  <rguenther@suse.de>
1878         * tree-vect-patterns.c (vect_recog_vector_vector_shift_pattern):
1879         Properly set vector type of the intermediate stmt.
1880         * tree-vect-stmts.c (vectorizable_operation): The destination
1881         var always has vectype_out type.
1883 2018-06-13  Jeff Law  <law@redhat.com>
1885         * config/rl78/rl78.c (move_elim_pass): Use TDF_NONE rather than
1886         integer 0 for argument to print_rtl_with_bb.
1887         (rl78_reorg): Likewise.
1889 2018-06-13  David Malcolm  <dmalcolm@redhat.com>
1891         * config/arc/arc.c (hwloop_optimize): Strengthen local "end_label"
1892         from rtx to rtx_insn *.
1893         * config/bfin/bfin.c (hwloop_optimize): Likewise for local
1894         "label".
1895         (add_sched_insns_for_speculation): Likewise for local "target",
1896         converting usage of JUMP_LABEL to JUMP_LABEL_AS_INSN.
1897         * config/c6x/c6x.c (reorg_split_calls): Strengthen param "call_labels"
1898         from rtx_insn ** to rtx_code_label **.
1899         (reorg_emit_nops): Likewise.
1900         (c6x_reorg): Likewise for local "call_labels".
1901         * config/sh/sh-protos.h (get_dest_uid): Strengthen 1st param from
1902         rtx to rtx_insn *.
1903         * config/sh/sh.c (dump_table): Strengthen local "lab" from rtx to
1904         rtx_code_label *, adding safe_as_a <rtx_code_label *> casts to
1905         the loops over LABEL_REFS.
1906         (fixup_addr_diff_vecs): Add as_a <rtx_insn *> to usage of
1907         braf_label.
1908         (barrier_align): Convert usage of JUMP_LABEL to JUMP_LABEL_AS_INSN.
1909         (get_dest_uid): Strengthen param "label" from rtx to rtx_insn *.
1910         (split_branches): Strengthen local "olabel" from rtx to
1911         rtx_insn *, adding a safe_as_a cast.
1912         * emit-rtl.c (next_real_insn): Strengthen param from "rtx"
1913         to "rtx_insn *".
1914         (add_insn_after): Likewise for first two params.
1915         (add_insn_before): Likewise.
1916         (remove_insn): Likewise for param.
1917         (emit_pattern_before_noloc): Likewise for second and third params.
1918         (emit_jump_insn_before_noloc): Convert NULL_RTX to NULL.
1919         (emit_call_insn_before_noloc): Likewise.
1920         (emit_debug_insn_before_noloc): Strengthen "before" param from "rtx"
1921         to "rtx_insn *".
1922         (emit_barrier_before): Likewise.
1923         (emit_label_before): Strengthen "label" param from "rtx" to
1924         "rtx_code_label *".  Strengthen "before" param from "rtx" to
1925         "rtx_insn *".
1926         (emit_insn_after_1): Strengthen "after" param from "rtx" to
1927         "rtx_insn *".
1928         (emit_pattern_after_noloc): Likewise.
1929         (emit_insn_after_noloc): Likewise.
1930         (emit_jump_insn_after_noloc): Likewise.
1931         (emit_call_insn_after_noloc): Likewise.
1932         (emit_debug_insn_after_noloc): Likewise.
1933         (emit_barrier_after): Likewise.
1934         (emit_label_after): Likewise for both params.
1935         (emit_pattern_after_setloc): Likewise for "after" param.  Convert
1936         "loc" param from "int" to "location_t".
1937         (emit_insn_after_setloc): Likewise.
1938         (emit_jump_insn_after_setloc): Likewise.
1939         (emit_call_insn_after_setloc): Likewise.
1940         (emit_debug_insn_after_setloc): Likewise.
1941         (emit_pattern_before_setloc): Likewise for "before" param.  Convert
1942         "loc" param from "int" to "location_t".
1943         (emit_pattern_before): Convert NULL_RTX to NULL.
1944         (emit_insn_before_setloc): Convert "loc" param from "int" to
1945         "location_t".
1946         (emit_jump_insn_before_setloc): Likewise.
1947         (emit_call_insn_before_setloc): Likewise.
1948         (emit_debug_insn_before_setloc): Strengthen "before" param from rtx to
1949         rtx_insn *.  Convert "loc" param from "int" to "location_t".
1950         * rtl.h (emit_insn_before_setloc, emit_jump_insn_before_setloc,
1951         emit_call_insn_before_setloc, emit_debug_insn_before_setloc):
1952         Convert 3rd param from "int" to "location_t".
1953         (emit_barrier_before, emit_barrier_after, next_real_insn):
1954         Strengthen param from rtx to rtx_insn *.
1955         (emit_label_before): Strengthen 1st param from "rtx" to
1956         "rtx_code_label *".  Strengthen 2nd param from "rtx" to
1957         "rtx_insn *".
1958         (emit_insn_after_noloc, emit_jump_insn_after_noloc,
1959         emit_call_insn_after_noloc, emit_debug_insn_after_noloc):
1960         Strengthen 2nd param from "rtx" to "rtx_insn *".
1961         (emit_insn_after_setloc, emit_jump_insn_after_setloc)
1962         emit_call_insn_after_setloc, emit_debug_insn_after_setloc):
1963         Likewise. Convert 3rd param from "int" to "location_t".
1964         (emit_label_after): Strengthen 1st param from "rtx" to
1965         "rtx_code_label *".
1966         (next_real_insn, remove_insn): Strengthen param from "rtx" to
1967         "rtx_insn *".
1968         (add_insn_before, add_insn_after): Strengthen 1st and 2nd params
1969         from "rtx" to "rtx_insn *".
1971 2018-06-13  Jan Hubicka  <hubicka@gcc.gnu.org>
1973         * cgraph.c (cgraph_node::get_untransformed_body): Dump function
1974         bodies streamed in with -Q.
1975         * dumpfile.c (dump_files): Add lto-stream-out dump file.
1976         * dumpfile.h (tree_dump_index): Add lto_stream_out.
1977         * gimple-streamer-out.c: Include gimple-pretty-print.h
1978         (output_bb): Dump stmts streamed.
1979         * lto-section-out.c: Include print-tree.h
1980         (lto_begin_section): Dump sections created.
1981         (lto_output_decl_index): Dump decl encoded.
1982         * lto-streamer-out.c: Include print-tree.h
1983         (create_output_block): Dump output block created.
1984         (DFS::DFS_write_tree_body): Dump DFS SCCs streamed.
1985         (output_function): Dump function output.
1986         (output_constructor): Dump constructor streamed.
1987         (write_global_stream): Output indexes encoded.
1988         (produce_asm_for_decls): Dump streams encoded.
1989         * lto-streamer.c (streamer_dump_file): New global var.
1990         * lto-streamer.h (streamer_dump_file): Declare.
1991         * passes.c (ipa_write_summaries): Initialize streamer dump.
1992         * varpool.c (varpool_node::get_constructor): Dump constructors streamed
1993         in.
1995 2018-06-13  Eric Botcazou  <ebotcazou@adacore.com>
1997         PR target/86048
1998         * config/i386/winnt.c (i386_pe_seh_cold_init): Do not emit negative
1999         offsets for register save directives.  Emit a second batch of save
2000         directives, if need be, when the function accesses prior frames.
2002 2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
2004         * config/arc/fpu.md (fmasf4): Force operand to register.
2005         (fnmasf4): Likewise.
2007 2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
2009         * config/arc/arc-protos.h (arc_pad_return): Remove.
2010         * config/arc/arc.c (machine_function): Remove force_short_suffix
2011         and size_reason.
2012         (arc_print_operand): Adjust printing of '&'.
2013         (arc_verify_short): Remove conditional printing of short suffix.
2014         (arc_final_prescan_insn): Remove reference to size_reason.
2015         (pad_return): New function.
2016         (arc_reorg): Call pad_return.
2017         (arc_pad_return): Remove.
2018         (arc_init_machine_status): Remove reference to force_short_suffix.
2019         * config/arc/arc.md (vunspec): Add VUNSPEC_ARC_BLOCKAGE.
2020         (attr length): When attribute iscompact is true force to 2
2021         regardless; in the case of maybe check if we want to force the
2022         instruction to have 4 bytes length.
2023         (nopv): Change it to generate 4 byte long nop as well.
2024         (blockage): New pattern.
2025         (simple_return): Remove call to arc_pad_return.
2026         (p_return_i): Likewise.
2028 2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
2030         * config/arc/elf.h (LINK_GCC_C_SEQUENCE_SPEC): Define.
2032 2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
2034         * config/arc/builtins.def (SYNC): SYNC instruction is valid on all
2035         ARC cores.
2037 2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
2039         * config/arc/arc.c (atomic_exchangesi): EX instruction is default
2040         for ARC700 and ARCv2.
2042 2018-06-13  Chenghua Xu <paul.hua.gm@gmail.com>
2044         PR target/86076
2045         * config/mips/loongson.md (vec_setv4hi): Gen_lowpart for
2046         operands[2] instead of operands[1].
2049 2018-06-12  Richard Sandiford  <richard.sandiford@linaro.org>
2051         * lra-constraints.c (simplify_operand_subreg): In the paradoxical
2052         case, check whether the outer register overlaps an unallocatable
2053         register, not just whether it fits the required class.
2055 2018-06-12  Richard Sandiford  <richard.sandiford@linaro.org>
2057         * poly-int.h (can_div_trunc_p): Add new overload in which all values
2058         are poly_ints.
2059         * alias.c (get_addr): Extend CONST_INT handling to poly_int_rtx_p.
2060         (memrefs_conflict_p): Likewise.
2061         (init_alias_analysis): Likewise.
2062         * cfgexpand.c (expand_debug_expr): Likewise.
2063         * combine.c (combine_simplify_rtx, force_int_to_mode): Likewise.
2064         * cse.c (fold_rtx): Likewise.
2065         * explow.c (adjust_stack, anti_adjust_stack): Likewise.
2066         * expr.c (emit_block_move_hints): Likewise.
2067         (clear_storage_hints, push_block, emit_push_insn): Likewise.
2068         (store_expr_with_bounds, reduce_to_bit_field_precision): Likewise.
2069         (emit_group_load_1): Use rtx_to_poly_int64 for group offsets.
2070         (emit_group_store): Likewise.
2071         (find_args_size_adjust): Use strip_offset.  Use rtx_to_poly_int64
2072         to read the PRE/POST_MODIFY increment.
2073         * calls.c (store_one_arg): Use strip_offset.
2074         * rtlanal.c (rtx_addr_can_trap_p_1): Extend CONST_INT handling to
2075         poly_int_rtx_p.
2076         (set_noop_p): Use rtx_to_poly_int64 for the elements selected
2077         by a VEC_SELECT.
2078         * simplify-rtx.c (avoid_constant_pool_reference): Use strip_offset.
2079         (simplify_binary_operation_1): Extend CONST_INT handling to
2080         poly_int_rtx_p.
2081         * var-tracking.c (compute_cfa_pointer): Take a poly_int64 rather
2082         than a HOST_WIDE_INT.
2083         (hard_frame_pointer_adjustment): Change from HOST_WIDE_INT to
2084         poly_int64.
2085         (adjust_mems, add_stores): Update accodingly.
2086         (vt_canonicalize_addr): Track polynomial offsets.
2087         (emit_note_insn_var_location): Likewise.
2088         (vt_add_function_parameter): Likewise.
2089         (vt_initialize): Likewise.
2091 2018-06-12  Jeff Law  <law@redhat.com>
2093         * config.gcc (alpha*-*-freebsd*): Remove.
2094         * config/alpha/freebsd.h: Remove.
2096 2018-06-12  David Malcolm  <dmalcolm@redhat.com>
2098         PR other/69968
2099         * spellcheck-tree.c (levenshtein_distance): Rename to...
2100         (get_edit_distance): ...this, and update for underlying renaming.
2101         * spellcheck-tree.h (levenshtein_distance): Rename to...
2102         (get_edit_distance): ...this.
2103         * spellcheck.c (levenshtein_distance): Rename to...
2104         (get_edit_distance): ...this.  Convert from Levenshtein distance
2105         to Damerau-Levenshtein distance by supporting transpositions of
2106         adjacent characters.  Rename "v1" to "v_next" and "v0" to
2107         "v_one_ago".
2108         (selftest::levenshtein_distance_unit_test_oneway): Rename to...
2109         (selftest::test_edit_distance_unit_test_oneway): ...this, and
2110         update for underlying renaming.
2111         (selftest::levenshtein_distance_unit_test): Rename to...
2112         (selftest::test_get_edit_distance_unit): ...this, and update for
2113         underlying renaming.
2114         (selftest::test_find_closest_string): Add example from PR 69968
2115         where transposition helps
2116         (selftest::test_metric_conditions): Update for renaming.
2117         (selftest::test_metric_conditions): Likewise.
2118         (selftest::spellcheck_c_tests): Likewise.
2119         * spellcheck.h (levenshtein_distance): Rename both overloads to...
2120         (get_edit_distance): ...this.
2121         (best_match::consider): Update for renaming.
2123 2018-06-12  Martin Sebor  <msebor@redhat.com>
2125         PR tree-optimization/85259
2126         * builtins.c (compute_objsize): Handle constant offsets.
2127         * gimple-ssa-warn-restrict.c (maybe_diag_offset_bounds): Return
2128         true iff a warning has been issued.
2129         * gimple.h (gimple_nonartificial_location): New function.
2130         * tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Call
2131         gimple_nonartificial_location and handle -Wno-system-headers.
2132         (handle_builtin_stxncpy): Same.
2134 2018-06-12  Martin Sebor  <msebor@redhat.com>
2136         PR c/85931
2137         * fold-const.c (operand_equal_p): Handle SAVE_EXPR.
2139 2018-06-12  Will Schmidt  <will_schmidt@vnet.ibm.com>
2141         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
2142         BUILTIN_VEC_XST entries for pointer to double and long long.
2144 2018-06-12  H.J. Lu  <hongjiu.lu@intel.com>
2146         PR target/85990
2147         * config/i386/gnu-user.h (TARGET_THREAD_SPLIT_STACK_OFFSET):
2148         Update comments.
2149         * config/i386/gnu-user64.h (TARGET_THREAD_SPLIT_STACK_OFFSET):
2150         Likewise.
2152 2018-06-12  Martin Liska  <mliska@suse.cz>
2154         * doc/options.texi: Document IntegerRange.
2156 2018-06-12  Martin Liska  <mliska@suse.cz>
2158         * config/i386/i386.opt: Make MPX-related options as Deprecated.
2159         * opt-functions.awk: Handle Deprecated flag.
2160         * opts-common.c (decode_cmdline_option): Handle cl_deprecated
2161         and report error.
2162         (read_cmdline_option): Report warning for a deprecated option.
2163         * opts.h (struct cl_option): Add new field cl_deprecated.
2164         (CL_ERR_DEPRECATED): New.
2166 2018-06-12  Martin Liska  <mliska@suse.cz>
2168         * doc/options.texi: Document Deprecated option flag.
2170 2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
2172         * config/arc/arc-arch.h (arc_extras): New enum.
2173         (arc_cpu_t):Add field extra.
2174         (arc_cpu_types): Consider the extras.
2175         * config/arc/arc-cpus.def: Add extras info.
2176         * config/arc/arc-opts.h (processor_type): Consider extra field.
2177         * config/arc/arc.c (arc_override_options): Handle extra field.
2179 2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
2181         * config/arc/arc-arch.h: Update ARC_OPTX macro.
2182         * config/arc/arc-options.def (ARC_OPTX): Introduce a new doc
2183         field.
2184         * config/arc/arc.c (arc_init): Update pic warning.
2185         (irq_range): Update irq range parsing warnings.
2186         (arc_override_options): Update various warning messages.
2187         (arc_handle_aux_attribute): Likewise.
2189 2018-06-12  Robert Suchanek  <robert.suchanek@mips.com>
2191         * config/mips/i6400.md (i6400_fpu_fadd): Remove frint.
2193 2018-06-12  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
2195         * doc/sourcebuild.texi: Document usage of line number 0 in verify
2196         compiler messages directives.
2198 2018-06-12  Matthew Fortune  <mfortune@gmail.com>
2200         * config/mips/mips-cpus.def: New MIPS_CPU for i6500.
2201         * config/mips/mips-tables.opt: Regenerate.
2202         * config/mips/mips.h (MIPS_ISA_LEVEL_SPEC): Mark i6500 as
2203         mips64r6.
2204         * doc/invoke.texi: Document -march=i6500.
2206 2018-06-12  Prachi Godbole  <prachi.godbole@imgtec.com>
2208         * config/mips/i6400.md (i6400_gpmuldiv): Remove cpu_unit.
2209         (i6400_gpmul): Add cpu_unit.
2210         (i6400_gpdiv): Likewise.
2211         (i6400_msa_add_d): Update reservations.
2212         (i6400_msa_int_add) Likewise.
2213         (i6400_msa_short_logic3) Likewise.
2214         (i6400_msa_short_logic2) Likewise.
2215         (i6400_msa_short_logic) Likewise.
2216         (i6400_msa_move) Likewise.
2217         (i6400_msa_cmp) Likewise.
2218         (i6400_msa_short_float2) Likewise.
2219         (i6400_msa_div_d) Likewise.
2220         (i6400_msa_long_logic1) Likewise.
2221         (i6400_msa_long_logic2) Likewise.
2222         (i6400_msa_mult) Likewise.
2223         (i6400_msa_long_float2) Likewise.
2224         (i6400_msa_long_float4) Likewise.
2225         (i6400_msa_long_float5) Likewise.
2226         (i6400_msa_long_float8) Likewise.
2227         (i6400_fpu_fadd): Include frint type.
2228         (i6400_fpu_store): New define_insn_reservation.
2229         (i6400_fpu_load): Likewise.
2230         (i6400_fpu_move): Likewise.
2231         (i6400_fpu_fcmp): Likewise.
2232         (i6400_fpu_fmadd): Likewise.
2233         (i6400_int_mult): Include imul3nc type and update reservation.
2234         (i6400_int_div): Include idiv3 type and update reservation.
2235         (i6400_int_load): Update to check type not move_type.
2236         (i6400_int_store): Likewise.
2237         (i6400_int_prefetch): Set zero latency.
2239 2018-06-12  Eric Botcazou  <ebotcazou@adacore.com>
2241         * gcc.c: Document new %@{...} sequence.
2242         (LINK_COMMAND_SPEC): Use it for the -L switches.
2243         (cpp_unique_options): Use it for the -I switches.
2244         (at_file_argbuf): New global variable.
2245         (in_at_file): Likewise.
2246         (alloc_args): Create at_file_argbuf.
2247         (clear_args): Truncate at_file_argbuf.
2248         (store_arg): If in_at_file, push the argument onto at_file_argbuf.
2249         (open_at_file): New function.
2250         (close_at_file): Likewise.
2251         (create_at_file): Delete.
2252         (do_spec_1) <'i'>: Use open_at_file/close_at_file.
2253         <'o'>: Likewise.
2254         <'@'>: New case.
2255         (validate_switches_from_spec): Deal with %@{...} sequence.
2256         (validate_switches): Likewise.
2257         (driver::finalize): Call clear_args.
2259 2018-06-11  Rasmus Villemoes  <rasmus.villemoes@prevas.dk>
2261         * config/vx-common.h (USE_TM_CLONE_REGISTRY): #define to 0.
2263 2018-06-11  Martin Sebor  <msebor@redhat.com>
2265         * doc/invoke.texi (-Wall): List -Wc++17-compat.
2266         (Wno-class-memaccess): Add @opindex.
2267         (Wno-templates, Wno-multiple-inheritance): Same.
2268         (Wno-virtual-inheritance, Wno-namespaces): Same.
2269         (Wno-pedantic, Wno-chkp, Wcoverage-mismatch): Same.
2270         (Wno-format-overflow, Wno-format-truncation): Same.
2271         (Wno-unused-local-typedefs, Walloc-size-larger-than): Same.
2272         (Wno-alloc-size-larger-than, Wframe-larger-than): Same
2273         (Wno-stack-usage, Wno-c++-compat, Wno-c++11-compat): Same.
2274         (Wno-c++14-compat, Wno-c++17-compat, Wno-openmp-simd): Same.
2275         (Wno-unsuffixed-float-constants, Wno-addr-space-convert): Same.
2276         (Wno-misspelled-isr): Same.
2278 2018-06-11  Martin Sebor  <msebor@redhat.com>
2280         * PR tree-optimization/86083
2281         * tree-ssa-strlen.c (handle_char_store): Use tree_expr_nonzero_p.
2283 2018-06-11 Zhouyi Zhou <zhouzhouyi@gmail.com>
2285         * tree-eh.c (lower_eh_constructs_2): Add a comma to comment.
2287 2018-06-11  Segher Boessenkool  <segher@kernel.crashing.org>
2289         PR target/85755
2290         * config/rs6000/rs6000.md (*movdi_internal32): Put constraint modifiers
2291         on the correct operand.
2292         (*movdi_internal64): Ditto.
2294 2018-06-11  Martin Liska  <mliska@suse.cz>
2296         PR tree-optimization/86089
2297         * tree-ssa-strlen.c (get_string_length): Move back removed hunk.
2299 2018-06-11  Julia Koval  <julia.koval@intel.com>
2301         * config/i386/vaesintrin.h (_mm_aesdec_epi128, _mm_aesdeclast_epi128)
2302         _mm_aesenc_epi128, _mm_aesenclast_epi128: Remove.
2303         * config/i386/vpclmulqdqintrin.h (_mm_clmulepi64_epi128): Remove.
2305 2018-06-11  Olivier Hainque  <hainque@adacore.com>
2307         * dwarf2out.c (gen_compile_unit_die): Fallout to DW_LANG_Ada83
2308         for Ada with strict dwarf2.
2310 2018-06-08  Peter Bergner  <bergner@vnet.ibm.com>
2312         PR target/85755
2313         * config/rs6000/rs6000.c (mem_operand_gpr): Enable PRE_INC and PRE_DEC
2314         addresses.
2316 2018-06-08  Jan Hubicka  <hubicka@ucw.cz>
2318         * dumpfile.c (FIRST_ME_AUTO_NUMBERED_DUMP): Bump to 4.
2320 2018-06-08  David Edelsohn  <dje.gcc@gmail.com>
2322         * config/rs6000/rs6000.c (rs6000_passes_ieee128): Protect with #if
2323         TARGET_ELF.
2325 2018-06-08  Martin Liska  <mliska@suse.cz>
2327         * tree-cfg.h (debug_function): Fix argument type to match
2328         implementation.
2330 2018-06-08  Martin Liska  <mliska@suse.cz>
2332         * config/powerpcspe/powerpcspe.c (rs6000_xcoff_visibility):
2333         Remove usage of MPX-related (and removed) fields.
2334         * config/rs6000/rs6000.c (rs6000_xcoff_visibility): Likewise.
2336 2018-06-08  David Malcolm  <dmalcolm@redhat.com>
2338         * cfg.c (debug): Use TDF_NONE rather than 0.
2339         * cfghooks.c (debug): Likewise.
2340         * dumpfile.c (DUMP_FILE_INFO): Likewise; also for OPTGROUP.
2341         (struct dump_option_value_info): Convert to...
2342         (struct kv_pair): ...this template type.
2343         (dump_options): Convert to kv_pair<dump_flags_t>; use TDF_NONE
2344         rather than 0.
2345         (optinfo_verbosity_options): Likewise.
2346         (optgroup_options): Convert to kv_pair<optgroup_flags_t>; use
2347         OPTGROUP_NONE.
2348         (gcc::dump_manager::dump_register): Use optgroup_flags_t rather
2349         than int for "optgroup_flags" param.
2350         (dump_generic_expr_loc): Use dump_flags_t rather than int for
2351         "dump_kind" param.
2352         (dump_dec): Likewise.
2353         (dump_finish): Use TDF_NONE rather than 0.
2354         (gcc::dump_manager::opt_info_enable_passes): Use optgroup_flags_t
2355         rather than int for "optgroup_flags" param.  Use TDF_NONE rather
2356         than 0.  Update for change to option_ptr.
2357         (opt_info_switch_p_1): Convert "optgroup_flags" param from int *
2358         to optgroup_flags_t *.  Use TDF_NONE and OPTGROUP_NONE rather than
2359         0.  Update for changes to optinfo_verbosity_options and
2360         optgroup_options.
2361         (opt_info_switch_p): Convert optgroup_flags from int to
2362         optgroup_flags_t.
2363         (dump_basic_block): Use dump_flags_t rather than int
2364         for "dump_kind" param.
2365         * dumpfile.h (TDF_ADDRESS, TDF_SLIM, TDF_RAW, TDF_DETAILS,
2366         TDF_STATS, TDF_BLOCKS, TDF_VOPS, TDF_LINENO, TDF_UID)
2367         TDF_STMTADDR, TDF_GRAPH, TDF_MEMSYMS, TDF_RHS_ONLY, TDF_ASMNAME,
2368         TDF_EH, TDF_NOUID, TDF_ALIAS, TDF_ENUMERATE_LOCALS, TDF_CSELIB,
2369         TDF_SCEV, TDF_GIMPLE, TDF_FOLDING, MSG_OPTIMIZED_LOCATIONS,
2370         MSG_MISSED_OPTIMIZATION, MSG_NOTE, MSG_ALL, TDF_COMPARE_DEBUG,
2371         TDF_NONE): Convert from macros to...
2372         (enum dump_flag): ...this new enum.
2373         (dump_flags_t): Update to use enum.
2374         (operator|, operator&, operator~, operator|=, operator&=):
2375         Implement for dump_flags_t.
2376         (OPTGROUP_NONE, OPTGROUP_IPA, OPTGROUP_LOOP, OPTGROUP_INLINE,
2377         OPTGROUP_OMP, OPTGROUP_VEC, OPTGROUP_OTHER, OPTGROUP_ALL):
2378         Convert from macros to...
2379         (enum optgroup_flag): ...this new enum.
2380         (optgroup_flags_t): New typedef.
2381         (operator|, operator|=): Implement for optgroup_flags_t.
2382         (struct dump_file_info): Convert field "alt_flags" to
2383         dump_flags_t.  Convert field "optgroup_flags" to
2384         optgroup_flags_t.
2385         (dump_basic_block): Use dump_flags_t rather than int for param.
2386         (dump_generic_expr_loc): Likewise.
2387         (dump_dec): Likewise.
2388         (dump_register): Convert param "optgroup_flags" to
2389         optgroup_flags_t.
2390         (opt_info_enable_passes): Likewise.
2391         * early-remat.c (early_remat::dump_edge_list): Use TDF_NONE rather
2392         than 0.
2393         * gimple-pretty-print.c (debug): Likewise.
2394         * gimple-ssa-store-merging.c (bswap_replace): Likewise.
2395         (merged_store_group::apply_stores): Likewise.
2396         * gimple-ssa-strength-reduction.c (insert_initializers): Likewise.
2397         * gimple.c (verify_gimple_pp): Likewise.
2398         * graphite-poly.c (print_pbb_body): Likewise.
2399         * passes.c (pass_manager::register_one_dump_file): Convert
2400         local "optgroup_flags" to optgroup_flags_t.
2401         * print-tree.c (print_node): Use TDF_NONE rather than 0.
2402         (debug): Likewise.
2403         (debug_body): Likewise.
2404         * tree-pass.h (struct pass_data): Convert field "optgroup_flags"
2405         to optgroup_flags_t.
2406         * tree-pretty-print.c (print_struct_decl): Use TDF_NONE rather
2407         than 0.
2408         * tree-ssa-math-opts.c (convert_mult_to_fma_1): Likewise.
2409         (convert_mult_to_fma): Likewise.
2410         * tree-ssa-reassoc.c (undistribute_ops_list): Likewise.
2411         * tree-ssa-sccvn.c (vn_eliminate): Likewise.
2412         * tree-vect-data-refs.c (dump_lower_bound): Convert param
2413         "dump_kind" to dump_flags_t.
2415 2018-06-08  Segher Boessenkool  <segher@kernel.crashing.org>
2417         * config/rs6000/rs6000.c (min, max): Delete.
2419 2018-06-08  Segher Boessenkool  <segher@kernel.crashing.org>
2421         * doc/invoke.texi (RS/6000 and PowerPC Options): Delete mention of
2422         -mabi=spe and -mabi=no-spe.
2424 2018-06-08  Martin Liska  <mliska@suse.cz>
2426         * ipa-pure-const.c (propagate_pure_const): Use ::get at places
2427         where we expect an existing summary.
2429 2018-06-08  Martin Liska  <mliska@suse.cz>
2431         * ipa-inline-analysis.c (simple_edge_hints): Use ::get method.
2432         * ipa-inline.h (estimate_edge_growth): Likewise.
2434 2018-06-08  Martin Liska  <mliska@suse.cz>
2436         * cgraph.c (function_version_hasher::hash): Use
2437         cgraph_node::get_uid ().
2438         (function_version_hasher::equal):
2439         * cgraph.h (cgraph_node::get_uid): New method.
2440         * ipa-inline.c (update_caller_keys): Use
2441         cgraph_node::get_uid ().
2442         (update_callee_keys): Likewise.
2443         * ipa-utils.c (searchc): Likewise.
2444         (ipa_reduced_postorder): Likewise.
2445         * lto-cgraph.c (input_node): Likewise.
2446         * passes.c (is_pass_explicitly_enabled_or_disabled): Likewise.
2447         * symbol-summary.h (symtab_insertion): Likewise.
2448         (symtab_removal): Likewise.
2449         (symtab_duplication): Likewise.
2450         * tree-pretty-print.c (dump_function_header): Likewise.
2451         * tree-sra.c (convert_callers_for_node): Likewise.
2453 2018-06-08  Martin Liska  <mliska@suse.cz>
2455         * cgraph.c (symbol_table::create_edge): Always assign a new
2456         unique number.
2457         (symbol_table::free_edge): Do not recycle numbers.
2458         * cgraph.h (cgraph_edge::get): New method.
2459         * symbol-summary.h (symtab_removal): Use it.
2460         (symtab_duplication): Likewise.
2461         (call_summary::hashable_uid): Remove.
2463 2018-06-08  Martin Liska  <mliska@suse.cz>
2465         * ipa-inline-analysis.c (inline_edge_removal_hook): Remove.
2466         (initialize_growth_caches): Remove.
2467         (free_growth_caches): Likewise.
2468         (do_estimate_edge_time): Use edge_growth_cache.
2469         (do_estimate_edge_size): Likewise.
2470         (do_estimate_edge_hints): Likewise.
2471         * ipa-inline.c (reset_edge_caches): Likewise.
2472         (recursive_inlining): Likewise.
2473         (inline_small_functions): Likewise.
2474         * ipa-inline.h (initialize_growth_caches): Remove.
2475         (estimate_edge_size): Likewise.
2476         (estimate_edge_time): Likewise.
2477         (estimate_edge_hints): Likewise.
2478         (reset_edge_growth_cache): Likewise.
2479         * symbol-summary.h (call_summary::remove): New method.
2481 2018-06-08  Martin Liska  <mliska@suse.cz>
2483         * ipa-cp.c (class edge_clone_summary): New summary.
2484         (grow_edge_clone_vectors): Remove.
2485         (ipcp_edge_duplication_hook): Remove.
2486         (class edge_clone_summary_t): New call_summary class.
2487         (ipcp_edge_removal_hook): Remove.
2488         (edge_clone_summary_t::duplicate): New function.
2489         (get_next_cgraph_edge_clone): Use edge_clone_summaries.
2490         (create_specialized_node): Likewise.
2491         (ipcp_driver): Initialize edge_clone_summaries and do not
2492         register hooks.
2494 2018-06-08  Martin Liska  <mliska@suse.cz>
2496         * symbol-summary.h (get): New function.
2497         (call_summary::m_initialize_when_cloning): New class member.
2499 2018-06-08  Martin Liska  <mliska@suse.cz>
2501         * cgraph.c (cgraph_node::remove): Do not recycle uid.
2502         * cgraph.h (symbol_table::release_symbol): Do not pass uid.
2503         (symbol_table::allocate_cgraph_symbol): Do not set uid.
2504         * passes.c (uid_hash_t): Record removed_nodes by their uids.
2505         (remove_cgraph_node_from_order): Use the removed_nodes set.
2506         (do_per_function_toporder): Likwise.
2507         * symbol-summary.h (symtab_insertion): Use cgraph_node::uid
2508         instead of summary_uid.
2509         (symtab_removal): Likewise.
2510         (symtab_duplication): Likewise.
2512 2018-06-08  Martin Liska  <mliska@suse.cz>
2514         * ipa-cp.c (ipcp_store_bits_results): Use
2515         ipcp_transformation_sum.
2516         (ipcp_store_vr_results): Likewise.
2517         * ipa-prop.c (ipcp_grow_transformations_if_necessary): Renamed
2518         to ...
2519         (ipcp_transformation_initialize): ... this.
2520         (ipa_set_node_agg_value_chain):
2521         (ipa_node_params_t::duplicate): Use ipcp_transformation_sum.
2522         (write_ipcp_transformation_info): Likewise.
2523         (read_ipcp_transformation_info): Likewise.
2524         (ipcp_update_bits): Likewise.
2525         (ipcp_update_vr): Likewise.
2526         (ipcp_transform_function): Likewise.
2527         * ipa-prop.h: Rename ipcp_transformation_summary to
2528         ipcp_transformation.
2529         (class ipcp_transformation_t): New function summary.
2530         (ipcp_get_transformation_summary): Use ipcp_transformation_sum.
2531         (ipa_get_agg_replacements_for_node): Likewise.
2533 2018-06-08  Martin Liska  <mliska@suse.cz>
2535         * ipa-pure-const.c (struct funct_state_d): Do it class instead
2536         of struct.
2537         (class funct_state_summary_t): New function_summary class.
2538         (has_function_state): Remove.
2539         (get_function_state): Likewise.
2540         (set_function_state): Likewise.
2541         (add_new_function): Likewise.
2542         (funct_state_summary_t::insert): New function.
2543         (duplicate_node_data): Remove.
2544         (remove_node_data): Remove.
2545         (funct_state_summary_t::duplicate): New function.
2546         (register_hooks): Create new funct_state_summaries.
2547         (pure_const_generate_summary): Use it.
2548         (pure_const_write_summary): Likewise.
2549         (pure_const_read_summary): Likewise.
2550         (propagate_pure_const): Likewise.
2551         (propagate_nothrow): Likewise.
2552         (dump_malloc_lattice): Likewise.
2553         (propagate_malloc): Likewise.
2554         (execute): Do not register hooks, just remove summary
2555         instead.
2556         (pass_ipa_pure_const::pass_ipa_pure_const): Simplify
2557         constructor.
2559 2018-06-08  Martin Liska  <mliska@suse.cz>
2561         * ipa-reference.c (remove_node_data): Remove.
2562         (duplicate_node_data): Likewise.
2563         (class ipa_ref_var_info_summary_t): New class.
2564         (class ipa_ref_opt_summary_t): Likewise.
2565         (get_reference_vars_info): Use ipa_ref_var_info_summaries.
2566         (get_reference_optimization_summary): Use
2567         ipa_ref_opt_sum_summaries.
2568         (set_reference_vars_info): Remove.
2569         (set_reference_optimization_summary): Likewise.
2570         (ipa_init): Create summaries.
2571         (init_function_info): Use function summary.
2572         (ipa_ref_opt_summary_t::duplicate): New function.
2573         (ipa_ref_opt_summary_t::remove): New function.
2574         (get_read_write_all_from_node): Fix GNU coding style.
2575         (propagate): Use function summary.
2576         (write_node_summary_p): Fix GNU coding style.
2577         (stream_out_bitmap): Likewise.
2578         (ipa_reference_read_optimization_summary): Use function summary.
2579         (ipa_reference_c_finalize): Do not release hooks.
2581 2018-06-08  Martin Liska  <mliska@suse.cz>
2583         * ipa-fnsummary.c (dump_ipa_call_summary): Use ::get method.
2584         (analyze_function_body): Extract multiple calls of get_create.
2585         * ipa-inline-analysis.c (simple_edge_hints): Likewise.
2586         * ipa-inline.c (recursive_inlining): Use ::get method.
2587         * ipa-inline.h (estimate_edge_growth): Likewise.
2589 2018-06-08  Martin Liska  <mliska@suse.cz>
2591         * hsa-common.h (enum hsa_function_kind): Rename HSA_NONE to
2592         HSA_INVALID.
2593         (hsa_function_summary::hsa_function_summary): Use the new enum
2594         value.
2595         (hsa_gpu_implementation_p): Use hsa_summaries::get.
2596         * hsa-gen.c (hsa_get_host_function): Likewise.
2597         (get_brig_function_name): Likewise.
2598         * ipa-hsa.c (process_hsa_functions): Likewise.
2599         (ipa_hsa_write_summary): Likewise.
2600         * symbol-summary.h (symtab_duplication): Use ::get function/
2601         (get): New function.
2603 2018-06-08  Martin Liska  <mliska@suse.cz>
2605         * config/i386/i386.c (ix86_can_inline_p): Use get_create instead
2606         of get.
2607         * hsa-common.c (hsa_summary_t::link_functions): Likewise.
2608         (hsa_register_kernel): Likewise.
2609         * hsa-common.h (hsa_gpu_implementation_p): Likewise.
2610         * hsa-gen.c (hsa_get_host_function): Likewise.
2611         (get_brig_function_name): Likewise.
2612         (generate_hsa): Likewise.
2613         (pass_gen_hsail::execute): Likewise.
2614         * ipa-cp.c (ipcp_cloning_candidate_p): Likewise.
2615         (devirtualization_time_bonus): Likewise.
2616         (ipcp_propagate_stage): Likewise.
2617         * ipa-fnsummary.c (redirect_to_unreachable): Likewise.
2618         (edge_set_predicate): Likewise.
2619         (evaluate_conditions_for_known_args): Likewise.
2620         (evaluate_properties_for_edge): Likewise.
2621         (ipa_fn_summary::reset): Likewise.
2622         (ipa_fn_summary_t::duplicate): Likewise.
2623         (dump_ipa_call_summary): Likewise.
2624         (ipa_dump_fn_summary): Likewise.
2625         (analyze_function_body): Likewise.
2626         (compute_fn_summary): Likewise.
2627         (estimate_edge_devirt_benefit): Likewise.
2628         (estimate_edge_size_and_time): Likewise.
2629         (estimate_calls_size_and_time): Likewise.
2630         (estimate_node_size_and_time): Likewise.
2631         (inline_update_callee_summaries): Likewise.
2632         (remap_edge_change_prob): Likewise.
2633         (remap_edge_summaries): Likewise.
2634         (ipa_merge_fn_summary_after_inlining): Likewise.
2635         (ipa_update_overall_fn_summary): Likewise.
2636         (read_ipa_call_summary): Likewise.
2637         (inline_read_section): Likewise.
2638         (write_ipa_call_summary): Likewise.
2639         (ipa_fn_summary_write): Likewise.
2640         (ipa_free_fn_summary): Likewise.
2641         * ipa-hsa.c (process_hsa_functions): Likewise.
2642         (ipa_hsa_write_summary): Likewise.
2643         (ipa_hsa_read_section): Likewise.
2644         * ipa-icf.c (sem_function::merge): Likewise.
2645         * ipa-inline-analysis.c (simple_edge_hints): Likewise.
2646         (do_estimate_edge_time): Likewise.
2647         (estimate_size_after_inlining): Likewise.
2648         (estimate_growth): Likewise.
2649         (growth_likely_positive): Likewise.
2650         * ipa-inline-transform.c (clone_inlined_nodes): Likewise.
2651         (inline_call): Likewise.
2652         * ipa-inline.c (caller_growth_limits): Likewise.
2653         (can_inline_edge_p): Likewise.
2654         (can_inline_edge_by_limits_p): Likewise.
2655         (compute_uninlined_call_time): Likewise.
2656         (compute_inlined_call_time): Likewise.
2657         (want_inline_small_function_p): Likewise.
2658         (edge_badness): Likewise.
2659         (update_caller_keys): Likewise.
2660         (update_callee_keys): Likewise.
2661         (recursive_inlining): Likewise.
2662         (inline_small_functions): Likewise.
2663         (inline_to_all_callers_1): Likewise.
2664         (dump_overall_stats): Likewise.
2665         (early_inline_small_functions): Likewise.
2666         (early_inliner): Likewise.
2667         * ipa-inline.h (estimate_edge_growth): Likewise.
2668         * ipa-profile.c (ipa_propagate_frequency_1): Likewise.
2669         * ipa-prop.c (ipa_make_edge_direct_to_target): Likewise.
2670         * ipa-prop.h (IPA_NODE_REF): Likewise.
2671         (IPA_EDGE_REF): Likewise.
2672         * ipa-pure-const.c (malloc_candidate_p): Likewise.
2673         (propagate_malloc): Likewise.
2674         * ipa-split.c (execute_split_functions): Likewise.
2675         * symbol-summary.h: Rename get to get_create.
2676         (get): Likewise.
2677         (get_create): Likewise.
2678         * tree-sra.c (ipa_sra_preliminary_function_checks): Likewise.
2680 2018-06-08  Martin Liska  <mliska@suse.cz>
2682         * symbol-summary.h (release): Move definition out of class
2683         declaration.
2684         (symtab_removal): Likewise.
2685         (symtab_duplication): Likewise.
2687 2018-06-08  Martin Liska  <mliska@suse.cz>
2689         * symbol-summary.h (function_summary): Move constructor
2690         implementation out of class declaration.
2691         (release): Likewise.
2692         (symtab_insertion): Likewise.
2693         (symtab_removal): Likewise.
2694         (symtab_duplication): Likewise.
2695         (get): Likewise.
2697 2018-06-08  Martin Liska  <mliska@suse.cz>
2699         * Makefile.in: Remove support for MPX (macros, related functions,
2700         fields in cgraph_node, ...).
2701         * builtin-types.def (BT_BND): Likewise.
2702         (BT_FN_BND_CONST_PTR): Likewise.
2703         (BT_FN_CONST_PTR_BND): Likewise.
2704         (BT_FN_VOID_PTR_BND): Likewise.
2705         (BT_FN_BND_CONST_PTR_SIZE): Likewise.
2706         (BT_FN_VOID_CONST_PTR_BND_CONST_PTR): Likewise.
2707         * builtins.c (expand_builtin_memcpy_with_bounds): Likewise.
2708         (expand_builtin_mempcpy_with_bounds): Likewise.
2709         (expand_builtin_memset_with_bounds): Likewise.
2710         (expand_builtin_memset_args): Likewise.
2711         (std_expand_builtin_va_start): Likewise.
2712         (expand_builtin): Likewise.
2713         (expand_builtin_with_bounds): Likewise.
2714         * builtins.def (DEF_BUILTIN_CHKP): Likewise.
2715         (DEF_LIB_BUILTIN_CHKP): Likewise.
2716         (DEF_EXT_LIB_BUILTIN_CHKP): Likewise.
2717         (DEF_CHKP_BUILTIN): Likewise.
2718         (BUILT_IN_MEMCPY): Likewise.
2719         (BUILT_IN_MEMMOVE): Likewise.
2720         (BUILT_IN_MEMPCPY): Likewise.
2721         (BUILT_IN_MEMSET): Likewise.
2722         (BUILT_IN_STPCPY): Likewise.
2723         (BUILT_IN_STRCAT): Likewise.
2724         (BUILT_IN_STRCHR): Likewise.
2725         (BUILT_IN_STRCPY): Likewise.
2726         (BUILT_IN_STRLEN): Likewise.
2727         (BUILT_IN_MEMCPY_CHK): Likewise.
2728         (BUILT_IN_MEMMOVE_CHK): Likewise.
2729         (BUILT_IN_MEMPCPY_CHK): Likewise.
2730         (BUILT_IN_MEMSET_CHK): Likewise.
2731         (BUILT_IN_STPCPY_CHK): Likewise.
2732         (BUILT_IN_STRCAT_CHK): Likewise.
2733         (BUILT_IN_STRCPY_CHK): Likewise.
2734         * calls.c (store_bounds): Likewise.
2735         (emit_call_1): Likewise.
2736         (special_function_p): Likewise.
2737         (maybe_warn_nonstring_arg): Likewise.
2738         (initialize_argument_information): Likewise.
2739         (finalize_must_preallocate): Likewise.
2740         (compute_argument_addresses): Likewise.
2741         (expand_call): Likewise.
2742         * cfgexpand.c (expand_call_stmt): Likewise.
2743         (expand_return): Likewise.
2744         (expand_gimple_stmt_1): Likewise.
2745         (pass_expand::execute): Likewise.
2746         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Likewise.
2747         (cgraph_node::remove): Likewise.
2748         (cgraph_node::dump): Likewise.
2749         (cgraph_node::verify_node): Likewise.
2750         * cgraph.h (chkp_function_instrumented_p): Likewise.
2751         (symtab_node::get_alias_target): Likewise.
2752         (cgraph_node::can_remove_if_no_direct_calls_and_refs_p): Likewise.
2753         (cgraph_local_p): Likewise.
2754         * cgraphbuild.c (cgraph_edge::rebuild_edges): Likewise.
2755         (cgraph_edge::rebuild_references): Likewise.
2756         * cgraphunit.c (varpool_node::finalize_decl): Likewise.
2757         (walk_polymorphic_call_targets): Likewise.
2758         (cgraph_node::expand_thunk): Likewise.
2759         (symbol_table::output_weakrefs): Likewise.
2760         * common/config/i386/i386-common.c (OPTION_MASK_ISA2_GENERAL_REGS_ONLY_UNSET): Likewise.
2761         (ix86_handle_option): Likewise.
2762         * config/i386/constraints.md: Likewise.
2763         * config/i386/i386-builtin-types.def (BND): Likewise.
2764         (VOID): Likewise.
2765         (PVOID): Likewise.
2766         (ULONG): Likewise.
2767         * config/i386/i386-builtin.def (BDESC_END): Likewise.
2768         (BDESC_FIRST): Likewise.
2769         (BDESC): Likewise.
2770         * config/i386/i386-c.c (ix86_target_macros_internal): Likewise.
2771         * config/i386/i386-protos.h (ix86_bnd_prefixed_insn_p): Likewise.
2772         * config/i386/i386.c (enum reg_class): Likewise.
2773         (ix86_target_string): Likewise.
2774         (ix86_option_override_internal): Likewise.
2775         (ix86_conditional_register_usage): Likewise.
2776         (ix86_valid_target_attribute_inner_p): Likewise.
2777         (ix86_set_indirect_branch_type): Likewise.
2778         (ix86_set_current_function): Likewise.
2779         (ix86_function_arg_regno_p): Likewise.
2780         (init_cumulative_args): Likewise.
2781         (ix86_function_arg_advance): Likewise.
2782         (ix86_function_arg): Likewise.
2783         (ix86_pass_by_reference): Likewise.
2784         (ix86_function_value_regno_p): Likewise.
2785         (ix86_function_value_1): Likewise.
2786         (ix86_function_value_bounds): Likewise.
2787         (ix86_return_in_memory): Likewise.
2788         (ix86_setup_incoming_vararg_bounds): Likewise.
2789         (ix86_va_start): Likewise.
2790         (indirect_thunk_need_prefix): Likewise.
2791         (print_reg): Likewise.
2792         (ix86_print_operand): Likewise.
2793         (ix86_expand_call): Likewise.
2794         (ix86_output_function_return): Likewise.
2795         (reg_encoded_number): Likewise.
2796         (BDESC_VERIFYS): Likewise.
2797         (ix86_init_mpx_builtins): Likewise.
2798         (ix86_init_builtins): Likewise.
2799         (ix86_emit_cmove): Likewise.
2800         (ix86_emit_move_max): Likewise.
2801         (ix86_expand_builtin): Likewise.
2802         (ix86_builtin_mpx_function): Likewise.
2803         (ix86_get_arg_address_for_bt): Likewise.
2804         (ix86_load_bounds): Likewise.
2805         (ix86_store_bounds): Likewise.
2806         (ix86_load_returned_bounds): Likewise.
2807         (ix86_store_returned_bounds): Likewise.
2808         (ix86_class_likely_spilled_p): Likewise.
2809         (ix86_hard_regno_mode_ok): Likewise.
2810         (x86_order_regs_for_local_alloc): Likewise.
2811         (ix86_mitigate_rop): Likewise.
2812         (ix86_bnd_prefixed_insn_p): Likewise.
2813         (ix86_mpx_bound_mode): Likewise.
2814         (ix86_make_bounds_constant): Likewise.
2815         (ix86_initialize_bounds): Likewise.
2816         (TARGET_LOAD_BOUNDS_FOR_ARG): Likewise.
2817         (TARGET_STORE_BOUNDS_FOR_ARG): Likewise.
2818         (TARGET_LOAD_RETURNED_BOUNDS): Likewise.
2819         (TARGET_STORE_RETURNED_BOUNDS): Likewise.
2820         (TARGET_CHKP_BOUND_MODE): Likewise.
2821         (TARGET_BUILTIN_CHKP_FUNCTION): Likewise.
2822         (TARGET_CHKP_FUNCTION_VALUE_BOUNDS): Likewise.
2823         (TARGET_CHKP_MAKE_BOUNDS_CONSTANT): Likewise.
2824         (TARGET_CHKP_INITIALIZE_BOUNDS): Likewise.
2825         * config/i386/i386.h (TARGET_MPX): Likewise.
2826         (TARGET_MPX_P): Likewise.
2827         (VALID_BND_REG_MODE): Likewise.
2828         (FIRST_BND_REG): Likewise.
2829         (LAST_BND_REG): Likewise.
2830         (enum reg_class): Likewise.
2831         (BND_REG_P): Likewise.
2832         (BND_REGNO_P): Likewise.
2833         (BNDmode): Likewise.
2834         (ADJUST_INSN_LENGTH): Likewise.
2835         * config/i386/i386.md: Likewise.
2836         * config/i386/i386.opt: Likewise.
2837         * config/i386/linux-common.h (LIBMPX_LIBS): Likewise.
2838         (defined): Likewise.
2839         (LINK_MPX): Likewise.
2840         (MPX_SPEC): Likewise.
2841         (LIBMPX_SPEC): Likewise.
2842         (LIBMPXWRAPPERS_SPEC): Likewise.
2843         (CHKP_SPEC): Likewise.
2844         * config/i386/predicates.md: Likewise.
2845         * dbxout.c (dbxout_type): Likewise.
2846         * doc/extend.texi: Likewise.
2847         * doc/invoke.texi: Likewise.
2848         * doc/md.texi: Likewise.
2849         * doc/tm.texi: Likewise.
2850         * doc/tm.texi.in: Likewise.
2851         * dwarf2out.c (is_base_type): Likewise.
2852         (gen_formal_types_die): Likewise.
2853         (gen_subprogram_die): Likewise.
2854         (gen_type_die_with_usage): Likewise.
2855         (gen_decl_die): Likewise.
2856         (dwarf2out_late_global_decl): Likewise.
2857         * expr.c (expand_assignment): Likewise.
2858         (emit_storent_insn): Likewise.
2859         (store_expr_with_bounds): Likewise.
2860         (store_expr): Likewise.
2861         (expand_expr_real_1): Likewise.
2862         * expr.h (store_expr_with_bounds): Likewise.
2863         * function.c (use_register_for_decl): Likewise.
2864         (struct bounds_parm_data): Likewise.
2865         (assign_parms_augmented_arg_list): Likewise.
2866         (assign_parm_find_entry_rtl): Likewise.
2867         (assign_parm_is_stack_parm): Likewise.
2868         (assign_parm_load_bounds): Likewise.
2869         (assign_bounds): Likewise.
2870         (assign_parms): Likewise.
2871         (expand_function_start): Likewise.
2872         * gcc.c (CHKP_SPEC): Likewise.
2873         * gimple-fold.c (gimple_fold_builtin_memory_op): Likewise.
2874         * gimple-ssa-warn-restrict.c (builtin_access::builtin_access): Likewise.
2875         (wrestrict_dom_walker::check_call): Likewise.
2876         * gimple.c (gimple_build_call_from_tree): Likewise.
2877         * gimple.h (enum gf_mask): Likewise.
2878         (gimple_call_with_bounds_p): Likewise.
2879         (gimple_call_set_with_bounds): Likewise.
2880         * gimplify.c (gimplify_init_constructor): Likewise.
2881         * ipa-cp.c (initialize_node_lattices): Likewise.
2882         (propagate_constants_across_call): Likewise.
2883         (find_more_scalar_values_for_callers_subset): Likewise.
2884         * ipa-hsa.c (process_hsa_functions): Likewise.
2885         * ipa-icf-gimple.c (func_checker::compare_gimple_call): Likewise.
2886         * ipa-icf.c (sem_function::merge): Likewise.
2887         * ipa-inline.c (early_inliner): Likewise.
2888         * ipa-pure-const.c (warn_function_noreturn): Likewise.
2889         (warn_function_cold): Likewise.
2890         (propagate_pure_const): Likewise.
2891         * ipa-ref.h (enum GTY): Likewise.
2892         * ipa-split.c (find_retbnd): Likewise.
2893         (consider_split): Likewise.
2894         (split_function): Likewise.
2895         * ipa-visibility.c (cgraph_externally_visible_p): Likewise.
2896         * ipa.c (walk_polymorphic_call_targets): Likewise.
2897         (symbol_table::remove_unreachable_nodes): Likewise.
2898         (process_references): Likewise.
2899         (cgraph_build_static_cdtor_1): Likewise.
2900         * lto-cgraph.c (lto_output_node): Likewise.
2901         (output_refs): Likewise.
2902         (compute_ltrans_boundary): Likewise.
2903         (input_overwrite_node): Likewise.
2904         (input_node): Likewise.
2905         (input_cgraph_1): Likewise.
2906         * params.def (PARAM_CHKP_MAX_CTOR_SIZE): Likewise.
2907         * passes.c (pass_manager::execute_early_local_passes): Likewise.
2908         (class pass_chkp_instrumentation_passes): Likewise.
2909         (make_pass_chkp_instrumentation_passes): Likewise.
2910         * passes.def: Likewise.
2911         * rtl.h (struct GTY): Likewise.
2912         (CALL_EXPR_WITH_BOUNDS_P): Likewise.
2913         * stor-layout.c (layout_type): Likewise.
2914         * symtab.c: Likewise.
2915         * target.def: Likewise.
2916         * targhooks.c (default_chkp_bound_type): Likewise.
2917         (default_chkp_bound_mode): Likewise.
2918         (default_builtin_chkp_function): Likewise.
2919         (default_chkp_function_value_bounds): Likewise.
2920         (default_chkp_make_bounds_constant): Likewise.
2921         (default_chkp_initialize_bounds): Likewise.
2922         * targhooks.h (default_chkp_bound_type): Likewise.
2923         (default_chkp_bound_mode): Likewise.
2924         (default_builtin_chkp_function): Likewise.
2925         (default_chkp_function_value_bounds): Likewise.
2926         (default_chkp_make_bounds_constant): Likewise.
2927         (default_chkp_initialize_bounds): Likewise.
2928         * toplev.c (compile_file): Likewise.
2929         (process_options): Likewise.
2930         * tree-core.h (DEF_BUILTIN): Likewise.
2931         (DEF_BUILTIN_CHKP): Likewise.
2932         * tree-inline.c (declare_return_variable): Likewise.
2933         (remap_gimple_stmt): Likewise.
2934         (copy_bb): Likewise.
2935         (initialize_inlined_parameters): Likewise.
2936         (expand_call_inline): Likewise.
2937         * tree-pass.h (make_pass_ipa_chkp_versioning): Likewise.
2938         (make_pass_ipa_chkp_early_produce_thunks): Likewise.
2939         (make_pass_ipa_chkp_produce_thunks): Likewise.
2940         (make_pass_chkp): Likewise.
2941         (make_pass_chkp_opt): Likewise.
2942         (make_pass_chkp_instrumentation_passes): Likewise.
2943         * tree-pretty-print.c (dump_generic_node): Likewise.
2944         * tree-ssa-ccp.c (insert_clobber_before_stack_restore): Likewise.
2945         * tree-ssa-dce.c (propagate_necessity): Likewise.
2946         (eliminate_unnecessary_stmts): Likewise.
2947         * tree-ssa-pre.c (create_expression_by_pieces): Likewise.
2948         * tree-ssa-sccvn.c (copy_reference_ops_from_call): Likewise.
2949         * tree-ssa-sccvn.h: Likewise.
2950         * tree-ssa-strlen.c (get_string_length): Likewise.
2951         (valid_builtin_call): Likewise.
2952         (adjust_last_stmt): Likewise.
2953         (handle_builtin_strchr): Likewise.
2954         (handle_builtin_strcpy): Likewise.
2955         (handle_builtin_stxncpy): Likewise.
2956         (handle_builtin_memcpy): Likewise.
2957         (handle_builtin_strcat): Likewise.
2958         (strlen_check_and_optimize_stmt): Likewise.
2959         * tree-stdarg.c (expand_ifn_va_arg_1): Likewise.
2960         * tree-streamer-in.c: Likewise.
2961         * tree-streamer.c (record_common_node): Likewise.
2962         * tree.c (tree_code_size): Likewise.
2963         (wide_int_to_tree_1): Likewise.
2964         (type_contains_placeholder_1): Likewise.
2965         (build_common_tree_nodes): Likewise.
2966         * tree.def (POINTER_BOUNDS_TYPE): Likewise.
2967         * tree.h (POINTER_BOUNDS_TYPE_P): Likewise.
2968         (POINTER_BOUNDS_P): Likewise.
2969         (BOUNDED_TYPE_P): Likewise.
2970         (BOUNDED_P): Likewise.
2971         (CALL_WITH_BOUNDS_P): Likewise.
2972         (pointer_bounds_type_node): Likewise.
2973         * value-prof.c (gimple_ic): Likewise.
2974         * var-tracking.c (vt_add_function_parameters): Likewise.
2975         * varasm.c (make_decl_rtl): Likewise.
2976         (assemble_start_function): Likewise.
2977         (output_constant): Likewise.
2978         (maybe_assemble_visibility): Likewise.
2979         * varpool.c (ctor_for_folding): Likewise.
2980         * chkp-builtins.def: Remove.
2981         * ipa-chkp.c: Remove.
2982         * ipa-chkp.h: Remove.
2983         * rtl-chkp.c: Remove.
2984         * rtl-chkp.h: Remove.
2985         * tree-chkp-opt.c: Remove.
2986         * tree-chkp.c: Remove.
2987         * tree-chkp.h: Remove.
2989 2018-06-07  Carl Love  <cel@us.ibm.com>
2991         * gcc/config/rs6000/vsx.md (vextract_fp_from_shorth,
2992         vextract_fp_from_shortl): Add BE support.
2994 2018-06-07  Paul Koning  <ni1d@arrl.net>
2996         * compare-elim.c (try_merge_compare): Don't merge compare if
2997         address contains a side effect.
2998         (try_eliminate_compare): Likewise.
3000 2018-06-07  Olga Makhotina  <olga.makhotina@intel.com>
3002         * config.gcc: Support "tremont".
3003         * config/i386/driver-i386.c (host_detect_local_cpu): Detect "tremont".
3004         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
3005         PROCESSOR_TREMONT.
3006         * config/i386/i386.c (m_TREMONT): Define.
3007         (processor_target_table): Add "tremont".
3008         (PTA_TREMONT): Define.
3009         (ix86_lea_outperforms): Add TARGET_TREMONT.
3010         (get_builtin_code_for_version): Handle PROCESSOR_TREMONT.
3011         (fold_builtin_cpu): Add M_INTEL_TREMONT, replace M_INTEL_GOLDMONT
3012         and M_INTEL_GOLDMONT_PLUS.
3013         (fold_builtin_cpu): Add "tremont".
3014         (ix86_add_stmt_cost): Add TARGET_TREMONT.
3015         (ix86_option_override_internal): Add "tremont".
3016         * config/i386/i386.h (processor_costs): Define TARGET_TREMONT.
3017         (processor_type): Add PROCESSOR_TREMONT.
3018         * config/i386/x86-tune.def: Add m_TREMONT.
3019         * doc/invoke.texi: Add tremont as x86 -march=/-mtune= CPU type.
3021 2018-06-07  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
3023         * gcc/config/msp430/msp430.c (msp430_mcu_name): Set the "i" in the
3024         symbol defined for msp430i* devices to be lower case.
3026         gcc/testsuite/gcc.target/msp430/
3027         * msp430i-device-symbol.c: New test.
3028         * msp430f-device-symbol.c: New test.
3029         * msp430.h: New test header file.
3031 2018-06-07  Richard Biener  <rguenther@suse.de>
3033         * graphite-sese-to-poly.c (extract_affine): Avoid unneded
3034         wrapping.  Properly wrap the result of a BIT_NOT_EXPR.
3035         Properly wrap signed arithmetic if overflow wraps.
3037 2018-06-07  Jakub Jelinek  <jakub@redhat.com>
3039         PR tree-optimization/69615
3040         * tree-ssa-reassoc.c (optimize_range_tests_var_bound): If rhs2 is lhs
3041         of a cast from a same precision integral SSA_NAME in a bb dominated
3042         by first_bb, retry with rhs2 set to the rhs1 of the cast.  Don't emit
3043         cast to utype if rhs2 has already a compatible type.
3045 2018-06-07  Richard Biener  <rguenther@suse.de>
3047         PR tree-optimization/85935
3048         * graphite-scop-detection.c (find_params_in_bb): Analyze
3049         condition operands with respect to the correct loop.  Assert
3050         the analysis doesn't fail.
3052 2018-06-04  Carl Love  <cel@us.ibm.com>
3054         * gcc/config/rs6000/vsx.md (first_match_index_<mode>): Calculate index
3055         using natural element order.  Use gen_lshrsi3 instead of gen_ashrsi3
3056         as it is slightly cheaper.
3057         (first_match_or_eos_index_<mode>):
3058         Calculate index using natural element order.
3059         (first_match_index_<mode>):
3060         Calculate index using natural element order.
3061         (first_match_or_eos_index_<mode>):
3062         Calculate index using natural order.
3063         (define_insn vclzlsbb): Change to define_insn vclzlsbb_<mode>.
3064         for BE and LE modes.
3065         * gcc/config/rs6000/rs6000-c.c: Rename P9V_BUILTIN_VCLZLSBB,
3066         P9V_BUILTIN_VCLZLSBB_V16QI.
3067         * gcc/config/rs6000/rs6000-builtin.def: Make VCLZLSBB mode
3068         specific.
3070 2018-06-06  Kelvin Nilsen  <kelvin@gcc.gnu.org>
3072         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Adjust
3073         indentation and line wrap for many prototypes.  Add missing
3074         @smallexample directives around block of prototypes for vec_xl and
3075         vec_xst.
3077 2018-06-05  Michael Meissner  <meissner@linux.ibm.com>
3079         * config/rs6000/rs6000.c (rs6000_passes_ieee128): New boolean to
3080         track if we pass or return IEEE 128-bit floating point.
3081         (ieee128_mangling_gcc_8_1): New boolean to say whether to generate
3082         C++ mangling that is compatible with GCC 8.1.
3083         (TARGET_ASM_GLOBALIZE_DECL_NAME): Override target hook.
3084         (init_cumulative_args): Note if we pass or return IEEE 128-bit
3085         floating point types.
3086         (rs6000_function_arg_advance_1): Likewise.
3087         (rs6000_mangle_type): Optionally generate mangled names that match
3088         what GCC 8.1 generated for IEEE 128-bit floating point types.
3089         (rs6000_globalize_decl_name): If we have an external function that
3090         passes or returns IEEE 128-bit types, generate a weak reference
3091         from the mangled name used in GCC 8.1 to the current mangled
3092         name.
3093         (rs6000_init_builtins): Make __ibm128 use the long double type if
3094         long double is IBM extended double.  Make __float128 use the long
3095         double type if long double is IEEE 128-bit.
3097         PR target/85657
3098         * config/rs6000/rs6000-builtin.def (BU_IBM128_2): New helper
3099         macro for __ibm128 built-in functions.
3100         (PACK_IF): Add __ibm128 pack/unpack functions.
3101         (UNPACK_IF): Likewise.
3102         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Do not
3103         enable long double built-in functions if long double is IEEE
3104         128-bit floating point.
3105         (rs6000_invalid_builtin): Update long double built-in function
3106         error message.
3107         (rs6000_expand_builtin): For PACK_IF and UNPACK_IF built-in
3108         functions, adjust the built-in function to use the long double
3109         built-in function if __ibm128 and long double are the same type.
3110         * doc/extend.texi (PowerPC builtins): Update documention for
3111         __builtin_{,un}pack_longdouble.  Add documentation for
3112         __builtin_{,un}pack_ibm128.
3114 2018-06-06  Jim Wilson  <jimw@sifive.com>
3116         * config/riscv/riscv.c (enum riscv_privilege_levels): New.
3117         (struct machine_function): New field interrupt_mode.
3118         (riscv_handle_type_attribute): New function.  Add forward declaration.
3119         (riscv_attribute_table) <interrupt>: Use riscv_handle_type_attribute.
3120         (riscv_expand_epilogue): Check interrupt_mode field.
3121         (riscv_set_current_function): Check interrupt attribute args and
3122         set interrupt_mode field.
3123         * config/riscv/riscv.md (UNSPECV_SRET, UNSPECV_URET): New.
3124         (riscv_sret, riscv_uret): New.
3125         * doc/extend.texi (RISC-V Function Attributes) <interrupt>: Document
3126         new arguments to interrupt attribute.
3128 2018-06-06  Peter Bergner  <bergner@vnet.ibm.com>
3130         PR target/63177
3131         * /config/rs6000/rs6000.h (ASM_CPU_SPEC): Add support for -mpower9.
3132         Don't handle -mcpu=power8 if -mpower9-vector is also used.
3134 2018-06-06  Kelvin Nilsen  <kelvin@gcc.gnu.org>
3136         * config/rs6000/rs6000-builtin.def (VSX_BUILTIN_VEC_LD,
3137         VSX_BUILTIN_VEC_ST): Add comment to explain non-traditional uses.
3138         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
3139         several redundant entries.
3141 2018-06-06  David Malcolm  <dmalcolm@redhat.com>
3143         * config/i386/i386-protos.h (ix86_expand_call): Strengthen return
3144         type from "rtx" to "rtx_insn *".
3145         * config/i386/i386.c (ix86_expand_split_stack_prologue): Likewise
3146         for local "call_insn", removing cast.
3147         (ix86_expand_call): Likewise, introducing a "call_insn" local.
3149 2018-06-06  Eric Botcazou  <ebotcazou@adacore.com>
3151         PR tree-optimization/86066
3152         * gimple-ssa-store-merging.c (process_store): Do not bypass BIT_NOT_EXPR
3153         for BIT_INSERT_EXPR stores.
3155 2018-06-06  Richard Biener  <rguenther@suse.de>
3157         PR tree-optimization/86062
3158         * tree-ssa-sccvn.c (vn_reference_lookup_3): Handle arbitrary
3159         component refs ontop
3160         of to be offsetted base.
3162 2018-06-06  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
3164         * gcc/config/msp430/msp430.c (msp430_attr): Allow interrupt handlers
3165         to be static and remove check on interrupt attribute name.
3167         gcc/testsuite/gcc.target/msp430/
3168         * function-attributes-4.c: New test.
3169         * static-interrupts.c: New test.
3171 2018-06-05  Kelvin Nilsen  <kelvin@gcc.gnu.org>
3173         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Remove
3174         volatile qualifier from vec_lvsl and vec_lvsr argument prototypes.
3176 2018-06-05  Steve Ellcey  <sellcey@cavium.com>
3178         PR target/79924
3179         * config/aarch64/aarch64-protos.h (aarch64_err_no_fpadvsimd): Remove
3180         second argument.
3181         * config/aarch64/aarch64-protos..c (aarch64_err_no_fpadvsimd):
3182         Remove second argument, change how error is called.
3183         (aarch64_layout_arg): Remove second argument from
3184         aarch64_err_no_fpadvsimd call.
3185         (aarch64_init_cumulative_args): Ditto.
3186         (aarch64_gimplify_va_arg_expr): Ditto.
3187         * config/aarch64/aarch64.md (mov<mode>): Ditto.
3189 2018-06-05  Uros Bizjak  <ubizjak@gmail.com>
3191         * config/i386/i386.md (simple_return_indirect_internal): New expander.
3192         (*simple_return_indirect_internal<mode>): Rename from
3193         simple_return_indirect_internal.  Use W mode iterator.
3194         (rstorssp): New expander.
3195         (*rstorssp<mode>): Rename from rstorssp.  Use P mode iterator.
3196         (clrssbsy): New expander.
3197         (*clrssbsy<mode>): Rename from clrssbsy.  Use P mode iterator.
3199 2018-06-05  Andre Vieira  <andre.simoesdiasvieira@arm.com>
3201         * config/arm/arm_cmse.h (cmse_nsfptr_create): Change typeof to
3202         __typeof__.
3203         (cmse_check_pointed_object): Likewise.
3205 2018-06-05  Martin Liska  <mliska@suse.cz>
3207         PR gcov-profile/47618
3208         * doc/invoke.texi: Document how -fprofile-dir format
3209         is extended.
3211 2018-06-05  Richard Biener  <rguenther@suse.de>
3213         * tree-cfgcleanup.c (cleanup_control_flow_pre): For edge
3214         removal pretend DOM info isn't available so we do not update
3215         it and only remove edges, not dominated blocks.  Actually free
3216         DOM info in case we removed something.  Remove unreachable blocks.
3217         (mfb_keep_latches): Work with either DOM info or marked backedges.
3218         (cleanup_tree_cfg_noloop): Do not remove unreachable blocks
3219         first.  Mark backedges if DOM info isn't available.
3220         (Re-)compute DOM info after cleanup_control_flow_pre.
3222 2018-06-05  Richard Biener  <rguenther@suse.de>
3224         * tree-cfg.c (struct locus_discrim_map): Store line, not location.
3225         (locus_discrim_hasher::hash): Adjust.
3226         (locus_discrim_hasher::equal): Likewise.
3227         (next_discriminator_for_locus): Work on line directly.
3228         (same_line_p): Pass in expanded locus1 as well.
3229         (assign_discriminators): Avoid redundant location expansions.
3231 2018-06-05  Richard Biener  <rguenther@suse.de>
3233         PR tree-optimization/86046
3234         * tree-ssa.c (maybe_optimize_var): Clear DECL_GIMPLE_REG_P
3235         if required after clearing TREE_ADDRESSABLE.
3237 2018-06-05  Richard Biener  <rguenther@suse.de>
3239         PR tree-optimization/86047
3240         * tree-ssa-loop.c (for_each_index): Glob handling of all
3241         decls and constants and really handle all of them.
3243 2018-06-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3245         PR target/81497
3246         * config/arm/arm-builtins.c (arm_type_qualifiers): Add
3247         qualifier_void_pointer and qualifier_const_void_pointer.
3248         (arm_ldc_qualifiers, arm_stc_qualifiers): Use the above.
3249         (arm_init_builtins): Handle the above.
3250         * config/arm/arm_acle.h (__arm_cdp, __arm_ldc, __arm_ldcl, __arm_stc,
3251         __arm_stcl, __arm_mcr, __arm_cdp2, __arm_ldc2, __arm_ldcl2, __arm_stc2,
3252         __arm_stcl2,__arm_mcr2, __arm_mcrr, __arm_mcrr2): Remove return for
3253         void intrinsics.
3255 2018-06-05  Martin Liska  <mliska@suse.cz>
3257         * auto-profile.c (read_autofdo_file): Do not use
3258         gcov_ctr_summary struct.
3259         (afdo_callsite_hot_enough_for_early_inline): Likewise.
3260         * coverage.c (struct counts_entry): Likewise.
3261         (read_counts_file): Read just single summary entry.
3262         (get_coverage_counts): Use gcov_summary struct.
3263         * coverage.h (get_coverage_counts): Likewise.
3264         * gcov-dump.c (dump_working_sets): Likewise.
3265         (tag_summary): Dump just single summary.
3266         * gcov-io.c (gcov_write_summary): Write just histogram
3267         summary.
3268         (gcov_read_summary): Read just single summary.
3269         (compute_working_sets): Use gcov_summary struct.
3270         * gcov-io.h (GCOV_TAG_SUMMARY_LENGTH): Remove usage
3271         of GCOV_COUNTERS_SUMMABLE.
3272         (GCOV_COUNTERS_SUMMABLE): Remove.
3273         (GCOV_FIRST_VALUE_COUNTER): Replace with
3274         GCOV_COUNTER_V_INTERVAL.
3275         (struct gcov_ctr_summary): Remove.
3276         (struct gcov_summary): Directly use fields of former
3277         gcov_ctr_summary.
3278         (compute_working_sets): Use gcov_summary struct.
3279         * gcov.c (read_count_file): Do not use ctrs fields.
3280         * lto-cgraph.c (merge_profile_summaries): Use gcov_summary
3281         struct.
3282         * lto-streamer.h (struct GTY): Make profile_info gcov_summary
3283         struct.
3284         * profile.c: Likewise.
3285         * profile.h: Likewise.
3287 2018-06-05  Martin Liska  <mliska@suse.cz>
3289         PR gcov-profile/84846
3290         * gcov.c (output_lines): Print working directory only
3291         in intermediate format.
3293 2018-06-05  Andreas Krebbel  <krebbel@linux.ibm.com>
3295         * config/s390/s390-builtin-types.def: Add void function type.
3296         * config/s390/s390-builtins.def: Use the function type for the
3297         tbeginc builtin.
3299 2018-06-04  Jim Wilson  <jimw@sifive.com>
3301         * config/riscv/riscv-protos.h (riscv_expand_epilogue): Change bool arg
3302         to int.
3303         * config/riscv/riscv.c (riscv_for_each_saved_reg): New args epilogue
3304         and maybe_eh_return.  Change regno to unsigned int.  Use new args to
3305         handle EH_RETURN_DATA_REGNO registers properly.
3306         (riscv_expand_prologue): Pass new args to riscv_for_each_saved_reg.
3307         (riscv_expand_epilogue): Update comment.  Change argument name and
3308         type.  Update code to use new name and type.  Pass new args to
3309         riscv_for_each_saved_reg.  Only use EH_RETURN_STACKADJ_RTX when
3310         EXCEPTION_RETURN.
3311         * config/riscv/riscv.md (NORMAL_RETURN): New.
3312         (SIBCALL_RETURN, EXCEPTION_RETURN): New.
3313         (epilogue, sibcall_epilogue): Update riscv_expand_epilogue arg.
3314         (eh_return): Call gen_eh_return_internal and emit barrier.
3315         (eh_return_internal): Call riscv_expand_epilogue.
3317 2018-06-04  Eric Botcazou  <ebotcazou@adacore.com>
3319         * gimple-ssa-store-merging.c (struct merged_store_group): Move up
3320         bit_insertion field and declare can_be_merged_into method.
3321         (merged_store_group::can_be_merged_into): New method.
3322         (imm_store_chain_info::coalesce_immediate): Call it to decide whether
3323         consecutive non-overlapping stores can be merged.  Turn MEM_REF stores
3324         into BIT_INSERT_EXPR stores if the group contains a non-MEM_REF store.
3326 2018-06-04  Richard Biener  <rguenther@suse.de>
3328         PR tree-optimization/85955
3329         * builtins.c (fold_builtin_sincos): Convert pointers to
3330         destination to appropriate type before dereferencing.
3332 2018-06-04  Segher Boessenkool  <segher@kernel.crashing.org>
3334         * config/rs6000/rs6000.md (abs<mode>2 for FLOAT128): Handle IFmode.
3336 2018-06-04  Richard Sandiford  <richard.sandiford@linaro.org>
3338         * expr.c (expand_expr_real_1): Force the operand into memory if
3339         its TYPE_MODE is BLKmode and if there is no integer mode for
3340         the number of bits being extracted.
3342 2018-06-04  Jakub Jelinek  <jakub@redhat.com>
3344         PR target/85832
3345         PR target/86036
3346         * config/i386/sse.md (<avx512>_eq<mode>3<mask_scalar_merge_name>_1):
3347         Use vptestnm rather than vptestm in (=Yc,v,C) variant.
3349 2018-06-04  Richard Biener  <rguenther@suse.de>
3351         * tree-cfgcleanup.c (cleanup_tree_cfg_1): Fold into...
3352         (cleanup_tree_cfg_noloop): ... single caller.  Do
3353         start_recording_case_labels later.
3355 2018-06-04  Sebastian Peryt  <sebastian.peryt@intel.com>
3357         * config/i386/cldemoteintrin.h: Change define from _X86INTRIN_H_INCLUDED
3358         to _IMMINTRIN_H_INCLUDED.
3359         * config/i386/pconfigintrin.h: Ditto.
3360         * config/i386/waitpkgintrin.h: Ditto.
3361         * config/i386/immintrin.h: Add includes for sgxintrin.h,
3362         pconfigintrin.h, waitpkgintrin.h and cldemoteintrin.h.
3363         * config/i386/x86intrin.h: Remove includes for mintrin.h, xmmintrin.h,
3364         emmintrin.h, pmmintrin.h, tmmintrin.h, smmintrin.h, wmmintrin.h,
3365         bmiintrin.h, bmi2intrin.h, lzcntintrin.h, sgxintrin.h, pconfigintrin.h,
3366         waitpkgintrin.h and cldemoteintrin.h.
3368 2018-06-04  Richard Biener  <rguenther@suse.de>
3370         PR tree-optimization/86038
3371         * tracer.c (find_best_successor): Check probability for
3372         being initialized, bail out if not.
3374 2018-06-04  Richard Earnshaw  <rearnsha@arm.com>
3376         PR target/86003
3377         * config/arm/arm-cpus.in (ALL_QUIRKS): Add xscale feature to the list
3378         of bits to ignore when comparing architectures.
3380 2018-06-04  Jakub Jelinek  <jakub@redhat.com>
3382         PR tree-optimization/69615
3383         * fold-const.c (merge_ranges): If range1 is - [x, x] and x is the
3384         maximum or minimum of the type, try to merge it also as if
3385         range1 is + [-, x - 1] or + [x + 1, -].
3387         PR c++/86025
3388         * tree.c (inchash::add_expr): Handle IDENTIFIER_NODE.
3390 2018-06-03  Eric Botcazou  <ebotcazou@adacore.com>
3392         PR tree-optimization/86034
3393         * gimple-ssa-store-merging.c (output_merged_store): Convert the RHS to
3394         the unsigned bitfield type in a bit insertion sequence if it does not
3395         have a larger precision than the bitfield size.
3396         (process_store): Also bypass widening conversions for BIT_INSERT_EXPR.
3398 2018-06-03  Kito Cheng  <kito.cheng@gmail.com>
3400         * config/nds32/nds32-peephole2.md: Add new patterns for code size.
3402 2018-06-03  Chung-Ju Wu  <jasonwucj@gmail.com>
3404         * config/nds32/nds32-opts.h (nds32_arch_type): Add ARCH_V3J.
3405         * config/nds32/nds32.c (nds32_option_override): Consider ARCH_V3J.
3406         * config/nds32/nds32.h (TARGET_ISA_V3): Add ARCH_V3J checking.
3407         * config/nds32/nds32.opt (march): Add enum value Value(ARCH_V3J).
3409 2018-06-03  Chung-Ju Wu  <jasonwucj@gmail.com>
3411         * common/config/nds32/nds32-common.c (nds32_option_optimization_table):
3412         Disable -fdelete-null-pointer-checks for ELF toolchain.
3414 2018-06-02  Chung-Ju Wu  <jasonwucj@gmail.com>
3415             Kito Cheng  <kito.cheng@gmail.com>
3417         * config.gcc (nds32*): Use nds32-linux.opt and nds32-elf.opt.
3418         (nds32le-*-*, nds32be-*-*): Integrate checking process.
3419         (nds32*-*-*): Add glibc and uclibc conditions.
3420         * common/config/nds32/nds32-common.c (nds32_except_unwind_info): New.
3421         (TARGET_EXCEPT_UNWIND_INFO): Define.
3422         * config/nds32/elf.h: New file.
3423         * config/nds32/linux.h: New file.
3424         * config/nds32/nds32-elf.opt: New file.
3425         * config/nds32/nds32-linux.opt: New file.
3426         * config/nds32/nds32-fp-as-gp.c
3427         (pass_nds32_fp_as_gp::gate): Consider TARGET_LINUX_ABI.
3428         * config/nds32/nds32.c (nds32_conditional_register_usage): Consider
3429         TARGET_LINUX_ABI.
3430         (nds32_asm_file_end): Ditto.
3431         (nds32_print_operand): Ditto.
3432         (nds32_insert_attributes): Ditto.
3433         (nds32_init_libfuncs): New function.
3434         (TARGET_HAVE_TLS): Define.
3435         (TARGET_INIT_LIBFUNCS): Define.
3436         * config/nds32/nds32.h (TARGET_DEFAULT_RELAX): Apply different relax
3437         spec content.
3438         (TARGET_ELF): Apply different mcmodel setting.
3439         (LINK_SPEC, LIB_SPEC, STARTFILE_SPEC, ENDFILE_SPEC): The content has
3440         been migrated into elf.h and linux.h files.
3441         * config/nds32/nds32.md (add_pc): Consider TARGET_LINUX_ABI.
3442         * config/nds32/nds32.opt (mvh): Consider TARGET_LINUX_ABI.
3443         (mcmodel): The content has been migrated into nds32-elf.opt and
3444         nds32-linux.opt files.
3445         * config/nds32/t-elf: New file.
3446         * config/nds32/t-linux: New file.
3448 2018-06-02  Chung-Ju Wu  <jasonwucj@gmail.com>
3449             Shiva Chen  <shiva0217@gmail.com>
3451         * config/nds32/constants.md (unspec_volatile_element): Add
3452         UNSPEC_VOLATILE_OMIT_FP_BEGIN and UNSPEC_VOLATILE_OMIT_FP_END.
3453         * config/nds32/nds32-fp-as-gp.c: New implementation of fp_as_gp
3454         optimization.
3455         * config/nds32/nds32-protos.h (nds32_naked_function_p): Declare.
3456         (make_pass_nds32_fp_as_gp): Declare.
3457         * config/nds32/nds32.c (nds32_register_passes): Add fp_as_gp as one
3458         optmization pass.
3459         (nds32_asm_function_end_prologue): Remove unused asm output.
3460         (nds32_asm_function_begin_epilogue): Remove unused asm output.
3461         (nds32_asm_file_start): Output necessary fp_as_gp information.
3462         (nds32_option_override): Adjust register usage.
3463         (nds32_expand_prologue): Consider fp_as_gp situation.
3464         (nds32_expand_prologue_v3push): Consider fp_as_gp situation.
3465         * config/nds32/nds32.md (prologue): Check fp_as_gp_p and naked_p.
3466         (epilogue): Ditto.
3467         (return): Ditto.
3468         (simple_return): Ditto.
3469         (omit_fp_begin): Output special directive for fp_as_gp.
3470         (omit_fp_end): Output special directive for fp_as_gp.
3471         * config/nds32/nds32.opt (mfp-as-gp, mno-fp-as-gp, mforce-fp-as-gp,
3472         mforbid-fp-as-gp): New options.
3474 2018-06-01  Mark Wielaard  <mark@klomp.org>
3476         * dwarf2out.c (dwarf2out_finish): Remove generation of
3477         DW_AT_loclists_base.
3479 2018-06-01  Eric Botcazou  <ebotcazou@adacore.com>
3481         * gimple-ssa-store-merging.c: Include gimple-fold.h.
3482         (struct store_immediate_info): Document BIT_INSERT_EXPR stores.
3483         (struct merged_store_group): Add bit_insertion field.
3484         (dump_char_array): Use standard hexadecimal format.
3485         (merged_store_group::merged_store_group): Set bit_insertion to false.
3486         (merged_store_group::apply_stores): Use optimal buffer size.  Deal
3487         with BIT_INSERT_EXPR stores.  Move up code updating the mask and
3488         also print the mask in the dump file.
3489         (pass_store_merging::gate): Minor tweak.
3490         (imm_store_chain_info::coalesce_immediate): Fix wrong association
3491         of stores with groups in dump.  Allow coalescing of BIT_INSERT_EXPR
3492         stores with INTEGER_CST stores.
3493         (count_multiple_uses) <BIT_INSERT_EXPR>: New case.
3494         (imm_store_chain_info::output_merged_store): Add try_bitpos variable
3495         and use it throughout.  Generate bit insertion sequences if need be.
3496         (pass_store_merging::process_store): Remove redundant condition.
3497         Record stores from a SSA name to a bit-field with BIT_INSERT_EXPR.
3499 2018-06-01  Segher Boessenkool  <segher@kernel.crashing.org>
3501         * config/rs6000/rs6000.c (rs6000_mangle_type): Change the mangling of
3502         the 128-bit floating point types.  Fix function comment.
3504 2018-06-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
3506         * config/aarch64/aarch64-simd.md
3507         (aarch64_simd_vec_unpack<su>_lo_<mode>): Use UXTL and SXTL assembler
3508         mnemonics.
3509         (aarch64_simd_vec_unpack<su>_hi_<mode>): Use UXTL2 and SXTL2 assembler
3510         mnemonics.
3512 2018-06-01  Richard Sandiford  <richard.sandiford@linaro.org>
3514         PR tree-optimization/85989
3515         * gimple-ssa-backprop.c (backprop::m_visited_phis): New member
3516         variable.
3517         (backprop::intersect_uses): Check it when deciding whether this
3518         is a backedge reference.
3519         (backprop::process_block): Add each phi to m_visited_phis
3520         after visiting it, then clear it at the end.
3522 2018-06-01  Richard Biener  <rguenther@suse.de>
3524         * tree-vectorizer.h (vect_dr_stmt): New function.
3525         (vect_get_load_cost): Adjust.
3526         (vect_get_store_cost): Likewise.
3527         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence):
3528         Use vect_dr_stmt instead of DR_SMTT.
3529         (vect_record_base_alignments): Likewise.
3530         (vect_calculate_target_alignment): Likewise.
3531         (vect_compute_data_ref_alignment): Likewise and make static.
3532         (vect_update_misalignment_for_peel): Likewise.
3533         (vect_verify_datarefs_alignment): Likewise.
3534         (vector_alignment_reachable_p): Likewise.
3535         (vect_get_data_access_cost): Likewise.  Pass down
3536         vinfo to vect_get_load_cost/vect_get_store_cost instead of DR.
3537         (vect_get_peeling_costs_all_drs): Likewise.
3538         (vect_peeling_hash_get_lowest_cost): Likewise.
3539         (vect_enhance_data_refs_alignment): Likewise.
3540         (vect_find_same_alignment_drs): Likewise.
3541         (vect_analyze_data_refs_alignment): Likewise.
3542         (vect_analyze_group_access_1): Likewise.
3543         (vect_analyze_group_access): Likewise.
3544         (vect_analyze_data_ref_access): Likewise.
3545         (vect_analyze_data_ref_accesses): Likewise.
3546         (vect_vfa_segment_size): Likewise.
3547         (vect_small_gap_p): Likewise.
3548         (vectorizable_with_step_bound_p): Likewise.
3549         (vect_prune_runtime_alias_test_list): Likewise.
3550         (vect_analyze_data_refs): Likewise.
3551         (vect_supportable_dr_alignment): Likewise.
3552         * tree-vect-loop-manip.c (get_misalign_in_elems): Likewise.
3553         (vect_gen_prolog_loop_niters): Likewise.
3554         * tree-vect-loop.c (vect_analyze_loop_2): Likewise.
3555         * tree-vect-patterns.c (vect_recog_bool_pattern): Do not
3556         modify DR_STMT.
3557         (vect_recog_mask_conversion_pattern): Likewise.
3558         (vect_try_gather_scatter_pattern): Likewise.
3559         * tree-vect-stmts.c (vect_model_store_cost): Pass stmt_info
3560         to vect_get_store_cost.
3561         (vect_get_store_cost): Get stmt_info instead of DR.
3562         (vect_model_load_cost): Pass stmt_info to vect_get_load_cost.
3563         (vect_get_load_cost): Get stmt_info instead of DR.
3565 2018-06-01  Richard Biener  <rguenther@suse.de>
3567         PR middle-end/86017
3568         * gimple-fold.c (var_decl_component_p): Also allow offsetted
3569         vars wrapped in MEM_REFs.
3571 2018-06-01  Richard Sandiford  <richard.sandiford@linaro.org>
3573         * config/aarch64/aarch64.c (aarch64_ira_change_pseudo_allocno_class):
3574         Fix subreg tests so that we only return a choice between
3575         GENERAL_REGS and FP_REGS if the original classes included both.
3577 2018-06-01  Richard Biener  <rguenther@suse.de>
3579         PR ipa/85960
3580         * tree-ssa-structalias.c (get_function_part_constraint):
3581         Handle NULL fi->decl.
3582         (find_func_aliases_for_call): Properly handle indirect
3583         fi from direct call.
3584         (find_func_clobbers): Likewise.
3585         (ipa_pta_execute): Likewise.
3586         (create_variable_info_for): For functions that are ifunc_resolver
3587         resolve to a varinfo that contains the result of the resolver call.
3588         (associate_varinfo_to_alias): Do not treat ifunc resolvers as
3589         aliases.
3591 2018-05-31  Michael Collison  <michael.collison@arm.com>
3593         * config/aarch64/aarch64.md:
3594         (*fix_to_zero_extenddfdi2): New pattern.
3595         * gcc.target/aarch64/fix_extend1.c: New testcase.
3597 2018-05-31  Qing Zhao <qing.zhao@oracle.com>
3599         PR middle-end/78809
3600         PR middle-end/83026
3601         * builtins.c (expand_builtin): Add the handling of BUILT_IN_STRCMP_EQ
3602         and BUILT_IN_STRNCMP_EQ.
3603         * builtins.def: Add new builtins BUILT_IN_STRCMP_EQ and
3604         BUILT_IN_STRNCMP_EQ.
3605         * gimple-fold.c (gimple_fold_builtin_string_compare): Add the
3606         handling of BUILTIN_IN_STRCMP_EQ and BUILT_IN_STRNCMP_EQ.
3607         (gimple_fold_builtin): Likewise.
3608         * tree-ssa-strlen.c (compute_string_length): New function.
3609         (determine_min_obsize): New function.
3610         (handle_builtin_string_cmp): New function to handle calls to
3611         string compare functions.
3612         (strlen_optimize_stmt): Add handling to builtin string compare
3613         calls.
3614         * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
3615         Add the handling of BUILT_IN_STRCMP_EQ and BUILT_IN_STRNCMP_EQ.
3616         * tree.c (build_common_builtin_nodes): Add new defines of
3617         BUILT_IN_STRNCMP_EQ and BUILT_IN_STRCMP_EQ.
3619 2018-05-31  Jakub Jelinek  <jakub@redhat.com>
3621         PR target/85984
3622         * bb-reorder.c (pass_partition_blocks::gate): Return false for
3623         functions with naked attribute.
3625 2018-05-31  Uros Bizjak  <ubizjak@gmail.com>
3627         * config/i386/sse.md (avx_vec_concat<mode>):
3628         Substitute concat_tg_mode mode attribute with xtg_mode.
3629         (<mask_codefor>avx512dq_broadcast<mode><mask_name>_1): Ditto.
3630         (concat_tg_mode): Remove mode attribute.
3632 2018-05-31  Martin Sebor  <msebor@redhat.com>
3634         PR c/82063
3635         * calls.c (alloc_max_size): Correct a logic error/typo.
3636         Treat excessive arguments as infinite.  Warn for invalid arguments.
3637         * doc/invoke.texi (-Walloc-size-larger-than): Update.
3639 2018-05-31  H.J. Lu  <hongjiu.lu@intel.com>
3641         PR target/85829
3642         * config/i386/x86-tune.def: Re-enable partial_reg_dependency
3643         and movx for Haswell.
3645 2018-05-31  Chung-Lin Tang  <cltang@codesourcery.com>
3646             Cesar Philippidis  <cesar@codesourcery.com>
3648         PR middle-end/85879
3649         * gimplify.c (gimplify_adjust_omp_clauses): Add 'remove = true'
3650         when emitting error on private/firstprivate reductions.
3651         * omp-low.c (lower_omp_target): Avoid reference-type processing
3652         on pointers for firstprivate clause.
3654 2018-05-31 Sameera Deshpande <sameera.deshpande@linaro.org>
3656         * config/aarch64/aarch64-simd-builtins.def (ld1x3): New.
3657         (st1x2): Likewise.
3658         (st1x3): Likewise.
3659         * config/aarch64/aarch64-simd.md
3660         (aarch64_ld1x3<VALLDIF:mode>): New pattern.
3661         (aarch64_ld1_x3_<mode>): Likewise
3662         (aarch64_st1x2<VALLDIF:mode>): Likewise
3663         (aarch64_st1_x2_<mode>): Likewise
3664         (aarch64_st1x3<VALLDIF:mode>): Likewise
3665         (aarch64_st1_x3_<mode>): Likewise
3666         * config/aarch64/arm_neon.h (vld1_u8_x3): New function.
3667         (vld1_s8_x3): Likewise.
3668         (vld1_u16_x3): Likewise.
3669         (vld1_s16_x3): Likewise.
3670         (vld1_u32_x3): Likewise.
3671         (vld1_s32_x3): Likewise.
3672         (vld1_u64_x3): Likewise.
3673         (vld1_s64_x3): Likewise.
3674         (vld1_f16_x3): Likewise.
3675         (vld1_f32_x3): Likewise.
3676         (vld1_f64_x3): Likewise.
3677         (vld1_p8_x3): Likewise.
3678         (vld1_p16_x3): Likewise.
3679         (vld1_p64_x3): Likewise.
3680         (vld1q_u8_x3): Likewise.
3681         (vld1q_s8_x3): Likewise.
3682         (vld1q_u16_x3): Likewise.
3683         (vld1q_s16_x3): Likewise.
3684         (vld1q_u32_x3): Likewise.
3685         (vld1q_s32_x3): Likewise.
3686         (vld1q_u64_x3): Likewise.
3687         (vld1q_s64_x3): Likewise.
3688         (vld1q_f16_x3): Likewise.
3689         (vld1q_f32_x3): Likewise.
3690         (vld1q_f64_x3): Likewise.
3691         (vld1q_p8_x3): Likewise.
3692         (vld1q_p16_x3): Likewise.
3693         (vld1q_p64_x3): Likewise.
3694         (vst1_s64_x2): Likewise.
3695         (vst1_u64_x2): Likewise.
3696         (vst1_f64_x2): Likewise.
3697         (vst1_s8_x2): Likewise.
3698         (vst1_p8_x2): Likewise.
3699         (vst1_s16_x2): Likewise.
3700         (vst1_p16_x2): Likewise.
3701         (vst1_s32_x2): Likewise.
3702         (vst1_u8_x2): Likewise.
3703         (vst1_u16_x2): Likewise.
3704         (vst1_u32_x2): Likewise.
3705         (vst1_f16_x2): Likewise.
3706         (vst1_f32_x2): Likewise.
3707         (vst1_p64_x2): Likewise.
3708         (vst1q_s8_x2): Likewise.
3709         (vst1q_p8_x2): Likewise.
3710         (vst1q_s16_x2): Likewise.
3711         (vst1q_p16_x2): Likewise.
3712         (vst1q_s32_x2): Likewise.
3713         (vst1q_s64_x2): Likewise.
3714         (vst1q_u8_x2): Likewise.
3715         (vst1q_u16_x2): Likewise.
3716         (vst1q_u32_x2): Likewise.
3717         (vst1q_u64_x2): Likewise.
3718         (vst1q_f16_x2): Likewise.
3719         (vst1q_f32_x2): Likewise.
3720         (vst1q_f64_x2): Likewise.
3721         (vst1q_p64_x2): Likewise.
3722         (vst1_s64_x3): Likewise.
3723         (vst1_u64_x3): Likewise.
3724         (vst1_f64_x3): Likewise.
3725         (vst1_s8_x3): Likewise.
3726         (vst1_p8_x3): Likewise.
3727         (vst1_s16_x3): Likewise.
3728         (vst1_p16_x3): Likewise.
3729         (vst1_s32_x3): Likewise.
3730         (vst1_u8_x3): Likewise.
3731         (vst1_u16_x3): Likewise.
3732         (vst1_u32_x3): Likewise.
3733         (vst1_f16_x3): Likewise.
3734         (vst1_f32_x3): Likewise.
3735         (vst1_p64_x3): Likewise.
3736         (vst1q_s8_x3): Likewise.
3737         (vst1q_p8_x3): Likewise.
3738         (vst1q_s16_x3): Likewise.
3739         (vst1q_p16_x3): Likewise.
3740         (vst1q_s32_x3): Likewise.
3741         (vst1q_s64_x3): Likewise.
3742         (vst1q_u8_x3): Likewise.
3743         (vst1q_u16_x3): Likewise.
3744         (vst1q_u32_x3): Likewise.
3745         (vst1q_u64_x3): Likewise.
3746         (vst1q_f16_x3): Likewise.
3747         (vst1q_f32_x3): Likewise.
3748         (vst1q_f64_x3): Likewise.
3749         (vst1q_p64_x3): Likewise.
3751 2018-05-30  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
3753         * config/msp430/msp430.c (msp430_output_labelref): Prepend
3754         user_label_prefix to name.
3756         * tree-core.h: Update comment about the format of NAME string
3757         passed to handler in attribute_spec.
3759         * config/msp430/msp430.md: Remove erroneous subreg expression from
3760         zero_extendqisi2 insn pattern. Remove msp430x ISA restriction on
3761         zero_extend{q,h}isi2.
3763 2018-05-30  Borislav Petkov  <bp@suse.de>
3765         * doc/extend.texi: Document some architecture specific
3766         constraints and sort entries.
3768 2018-05-30  Martin Sebor  <msebor@redhat.com>
3770         PR middle-end/85369
3771         * builtins.c (expand_builtin_stpcpy_1): New function.
3772         (expand_builtin_stpcpy): Call it, and call maybe_warn_nonstring_arg
3773         only if the former succeeds.
3775 2018-05-31 Sameera Deshpande <sameera.deshpande@linaro.org>
3777         * config/aarch64/aarch64-cores.def (saphira) : Add support for ARMv8.4
3778         in saphira.
3780 2018-05-30  Jan Hubicka  <hubicka@ucw.cz>
3782         * doc/invoke.texi (-flinker-output): Document
3784 2018-05-30  Jan Hubicka  <hubicka@ucw.cz>
3786         * passes.c (ipa_write_summaries): Only modify statements if body
3787         is in memory.
3788         * cgraphunit.c (ipa_passes): Also produce intermeidate code when
3789         incrementally linking.
3790         (ipa_passes): Likewise.
3791         * lto-cgraph.c (lto_output_node): When incrementally linking do not
3792         pass down resolution info.
3793         * common.opt (flag_incremental_link): Update info.
3794         * gcc.c (plugin specs): Turn flinker-output=* to
3795         -plugin-opt=-linker-output-known
3796         * toplev.c (compile_file): Also cut compilation when doing incremental
3797         link.
3798         * flag-types. (enum lto_partition_model): Add
3799         LTO_LINKER_OUTPUT_NOLTOREL.
3800         (invoke.texi): Add -flinker-output docs.
3801         * ipa.c (symbol_table::remove_unreachable_nodes): Handle LTO incremental
3802         link same way as WPA; do not stream in dead initializers.
3804         * dwarf2out.c (dwarf2out_die_ref_for_decl,
3805         darf2out_register_external_decl): Support incremental link.
3807 2018-05-30  Jan Hubicka  <hubicka@ucw.cz>
3809         * lto-opts.c (lto_write_options): Skip OPT_dumpdir, OPT_fresolution_.
3811 2018-05-30  Jan Hubicka  <hubicka@ucw.cz>
3813         * lto-wrapper.c (debug_objcopy): Add rename parameter; pass
3814         it down to simple_object_copy_lto_debug_sections.
3815         (run_gcc): Determine incremental LTO link time and configure
3816         lto1 into non-wpa mode, disable renaming of debug sections.
3818 2018-05-30  Kelvin Nilsen  <kelvin@gcc.gnu.org>
3820         * doc/extend.texi (PowerPC AltiVec Built-in Functions): Remove
3821         descriptions of various incorrectly documented functions.
3823 2018-05-30  Andre Vieira  <andre.simoesdiasvieira@arm.com>
3825         Revert:
3826         * config/aarch64/predicates.md (aarch64_mem_pair_lanes_operand): Make
3827         address check not strict.
3829 2018-05-30  Richard Biener  <rguenther@suse.de>
3831         PR tree-optimization/85964
3832         * tracer.c (better_p): Drop initialized count check, we only
3833         call the function with initialized counts now.
3834         (find_best_successor): Do find a best edge if one
3835         has uninitialized count.
3836         (find_best_predecessor): Likewise.  Do BB frequency check only
3837         if count is initialized.
3839 2017-05-30  Jackson Woodruff  <jackson.woodruff@arm.com>
3841         * config/aarch64/aarch64.c (aarch64_host_wide_int_compare): New.
3842         (aarch64_ldrstr_offset_compare): New.
3843         (aarch64_operands_adjust_ok_for_ldpstp): Update to consider all
3844         load/store orderings.
3845         (aarch64_gen_adjusted_ldpstp): Likewise.
3847 2018-05-30  Wilco Dijkstra  <wdijkstr@arm.com>
3849         * config/aarch64/aarch64.c (aarch64_ira_change_pseudo_allocno_class):
3850         Check for subset of GENERAL_REGS and FP_REGS.
3851         * config/aarch64/aarch64-simd.md (aarch64_get_lane): Increase cost of
3852         r=w alternative.
3854 2018-05-30  Richard Sandiford  <richard.sandiford@linaro.org>
3856         * alias.c (adjust_offset_for_component_ref): Use poly_int_tree_p
3857         and wi::to_poly_offset.  Add the current offset and then check
3858         whether the sum fits, rather than using an unchecked addition of
3859         a checked term.  Check for a shwi rather than a uhwi.
3860         * expr.c (get_bit_range): Use tree_to_poly_uint64.
3861         (store_constructor): Use poly_int_tree_p.
3862         (expand_expr_real_1): Likewise.
3863         * function.c (assign_temp): Likewise.
3864         * fold-const.c (const_binop): Use poly_int_tree_p and
3865         wi::to_poly_offset.
3866         (fold_indirect_ref_1): Likewise.  Use multiple_p to attempt an exact
3867         division.
3868         * ipa-icf-gimple.c (func_checker::compare_operand): Use
3869         to_poly_offset for MEM offsets.
3870         * ipa-icf.c (sem_variable::equals): Likewise.
3871         * stor-layout.c (compute_record_mode): Use poly_int_tree_p.
3872         * tree-ssa-sccvn.c (ao_ref_init_from_vn_reference): Use
3873         wi::to_poly_offset for BIT_FIELD_REF offsets.
3874         (vn_reference_maybe_forwprop_address): Use poly_int_tree_p and
3875         wi::to_poly_offset.
3876         * var-tracking.c (emit_note_insn_var_location): Use
3877         tree_to_poly_uint64.
3879 2018-05-29  Jim Wilson  <jimw@sifive.com>
3881         * config/riscv/riscv.c (riscv_interrupt_type): Fix comment typo.
3883 2018-05-29  Uros Bizjak  <ubizjak@gmail.com>
3885         PR target/85950
3886         * config/i386/i386.md (l<rounding_insn><MODEF:mode><SWI48:mode>2):
3887         Enable for TARGET_SSE4_1 and generate rounds{s,d} and cvtts{s,d}2si{,q}
3888         sequence.
3889         (sse4_1_round<mode>2): Use nonimmediate_operand
3890         for operand 1 predicate.
3892 2018-05-29  Martin Sebor  <msebor@redhat.com>
3893             Richard Biener  <rguenther@suse.de>
3895         PR testsuite/85888
3896         * calls.c (get_size_range): Call determine_value_range instead
3897         of get_value_range..
3898         * tree-vrp.h (determine_value_range): Declared new function.
3899         * tree-vrp.c (determine_value_range_1, determine_value_range): New.
3901 2018-05-29  Richard Biener  <rguenther@suse.de>
3903         * tree-vect-data-refs.c (vect_preserves_scalar_order_p): Make
3904         sure to use non-pattern stmts for get_earlier_stmt arguments.
3905         * tree-vectorizer.h (get_earlier_stmt): Assert we do not get
3906         called on pattern stmts.
3907         (get_later_stmt): Likewise.
3909 2018-05-29  Martin Liska  <mliska@suse.cz>
3911         PR gcov-profile/85759
3912         * doc/gcov.texi: Document GCOV_ERROR_FILE and GCOV_EXIT_AT_ERROR
3913         env variables.
3915 2018-05-29  Jakub Jelinek  <jakub@redhat.com>
3917         * tree-cfg.c (verify_gimple_assign_unary): Add checking for
3918         VEC_UNPACK_*_EXPR.
3919         (verify_gimple_assign_binary): Check TYPE_VECTOR_SUBPARTS for
3920         VEC_PACK_*_EXPR.
3922         PR target/85918
3923         * tree.def (VEC_UNPACK_FIX_TRUNC_HI_EXPR, VEC_UNPACK_FIX_TRUNC_LO_EXPR,
3924         VEC_PACK_FLOAT_EXPR): New tree codes.
3925         * tree-pretty-print.c (op_code_prio): Handle
3926         VEC_UNPACK_FIX_TRUNC_HI_EXPR and VEC_UNPACK_FIX_TRUNC_LO_EXPR.
3927         (dump_generic_node): Handle VEC_UNPACK_FIX_TRUNC_HI_EXPR,
3928         VEC_UNPACK_FIX_TRUNC_LO_EXPR and VEC_PACK_FLOAT_EXPR.
3929         * tree-inline.c (estimate_operator_cost): Likewise.
3930         * gimple-pretty-print.c (dump_binary_rhs): Handle VEC_PACK_FLOAT_EXPR.
3931         * fold-const.c (const_binop): Likewise.
3932         (const_unop): Handle VEC_UNPACK_FIX_TRUNC_HI_EXPR and
3933         VEC_UNPACK_FIX_TRUNC_LO_EXPR.
3934         * tree-cfg.c (verify_gimple_assign_unary): Likewise.
3935         (verify_gimple_assign_binary): Handle VEC_PACK_FLOAT_EXPR.
3936         * cfgexpand.c (expand_debug_expr): Handle VEC_UNPACK_FIX_TRUNC_HI_EXPR,
3937         VEC_UNPACK_FIX_TRUNC_LO_EXPR and VEC_PACK_FLOAT_EXPR.
3938         * expr.c (expand_expr_real_2): Likewise.
3939         * optabs.def (vec_packs_float_optab, vec_packu_float_optab,
3940         vec_unpack_sfix_trunc_hi_optab, vec_unpack_sfix_trunc_lo_optab,
3941         vec_unpack_ufix_trunc_hi_optab, vec_unpack_ufix_trunc_lo_optab): New
3942         optabs.
3943         * optabs.c (expand_widen_pattern_expr): For
3944         VEC_UNPACK_FIX_TRUNC_HI_EXPR and VEC_UNPACK_FIX_TRUNC_LO_EXPR use
3945         sign from result type rather than operand's type.
3946         (expand_binop_directly): For vec_packu_float_optab and
3947         vec_packs_float_optab allow result type to be different from operand's
3948         type.
3949         * optabs-tree.c (optab_for_tree_code): Handle
3950         VEC_UNPACK_FIX_TRUNC_HI_EXPR, VEC_UNPACK_FIX_TRUNC_LO_EXPR and
3951         VEC_PACK_FLOAT_EXPR.  Formatting fixes.
3952         * tree-vect-generic.c (expand_vector_operations_1):  Handle
3953         VEC_UNPACK_FIX_TRUNC_HI_EXPR, VEC_UNPACK_FIX_TRUNC_LO_EXPR and
3954         VEC_PACK_FLOAT_EXPR.
3955         * tree-vect-stmts.c (supportable_widening_operation): Handle
3956         FIX_TRUNC_EXPR.
3957         (supportable_narrowing_operation): Handle FLOAT_EXPR.
3958         * config/i386/i386.md (fixprefix, floatprefix): New code attributes.
3959         * config/i386/sse.md (*float<floatunssuffix>v2div2sf2): Rename to ...
3960         (float<floatunssuffix>v2div2sf2): ... this.  Formatting fix.
3961         (vpckfloat_concat_mode, vpckfloat_temp_mode, vpckfloat_op_mode): New
3962         mode attributes.
3963         (vec_pack<floatprefix>_float_<mode>): New expander.
3964         (vunpckfixt_mode, vunpckfixt_model, vunpckfixt_extract_mode): New mode
3965         attributes.
3966         (vec_unpack_<fixprefix>fix_trunc_lo_<mode>,
3967         vec_unpack_<fixprefix>fix_trunc_hi_<mode>): New expanders.
3968         * doc/md.texi (vec_packs_float_@var{m}, vec_packu_float_@var{m},
3969         vec_unpack_sfix_trunc_hi_@var{m}, vec_unpack_sfix_trunc_lo_@var{m},
3970         vec_unpack_ufix_trunc_hi_@var{m}, vec_unpack_ufix_trunc_lo_@var{m}):
3971         Document.
3972         * doc/generic.texi (VEC_UNPACK_FLOAT_HI_EXPR,
3973         VEC_UNPACK_FLOAT_LO_EXPR): Fix pasto in description.
3974         (VEC_UNPACK_FIX_TRUNC_HI_EXPR, VEC_UNPACK_FIX_TRUNC_LO_EXPR,
3975         VEC_PACK_FLOAT_EXPR): Document.
3977 2018-05-29  Richard Biener  <rguenther@suse.de>
3979         * tree-vectorizer.h (struct vec_info): Add stmt_vec_infos
3980         member.
3981         (stmt_vec_info_vec): Make pointer.
3982         (init_stmt_vec_info_vec): Remove.
3983         (free_stmt_vec_info_vec): Likewise.
3984         (set_stmt_vec_info_vec): New function.
3985         (free_stmt_vec_infos): Likewise.
3986         (vinfo_for_stmt): Adjust for stmt_vec_info_vec indirection.
3987         (set_vinfo_for_stmt): Likewise.
3988         (get_earlier_stmt): Likewise.
3989         (get_later_stmt): Likewise.
3990         * tree-vectorizer.c (stmt_vec_info_vec): Make pointer.
3991         (vec_info::vec_info): Allocate stmt_vec_infos and set the global.
3992         (vec_info::~vec_info): Free stmt_vec_infos.
3993         (vectorize_loops): Set the global stmt_vec_info_vec to NULL.
3994         Remove old init_stmt_vec_info_vec/free_stmt_vec_info_vec calls.
3995         (pass_slp_vectorize::execute): Likewise.
3996         * tree-vect-stmts.c (init_stmt_vec_info_vec): Remove.
3997         (free_stmt_vec_info_vec): Likewise.
3998         (set_stmt_vec_info_vec): New function.
3999         (free_stmt_vec_infos): Likewise.
4000         * tree-vect-loop.c (_loop_vec_info::~_loop_vec_info): Set
4001         the global stmt_vec_info_vec.
4002         * tree-parloops.c (gather_scalar_reductions): Use
4003         set_stmt_vec_info_vec/free_stmt_vec_infos and maintain a local
4004         vector.
4006 2018-05-29  Richard Biener  <rguenther@suse.de>
4008         * dominance.c (iterate_fix_dominators): Push/pop TV_DOMINANCE.
4010 2018-05-29  Martin Liska  <mliska@suse.cz>
4011             David Malcolm  <dmalcolm@redhat.com>
4013         * vec.c (test_reverse): New.
4014         (vec_c_tests): Add new test.
4015         * vec.h (vl_ptr>::reverse): New function.
4017 2018-05-29  Gerald Pfeifer  <gerald@pfeifer.com>
4019         * config.gcc: Identify FreeBSD 3.x and 4.x as unsupported.
4021         * config/freebsd-spec.h (FBSD_LIB_SPEC): Only consider FreeBSD 5
4022         and later.
4024 2018-05-28  Bernd Edlinger  <bernd.edlinger@hotmail.de>
4026         * tree-dump.c (dump_node): Use splay_tree_delete_pointers.
4028 2018-05-28  Richard Biener  <rguenther@suse.de>
4030         PR tree-optimization/85933
4031         * tree-vect-data-refs.c (vect_record_base_alignments): Only
4032         look at stmts marked as vectorizable.
4034 2018-05-28  Richard Biener  <rguenther@suse.de>
4036         PR tree-optimization/85934
4037         * tree-vect-generic.c (expand_vector_operations_1): Hoist
4038         vector boolean check before scalar optimization.
4040 2018-05-28  Jakub Jelinek  <jakub@redhat.com>
4042         * doc/invoke.texi (ARM Options): Use @item instead of @itemx
4043         for armv5te.
4045 2018-05-28  Mark Wielaard  <mark@klomp.org>
4047         * dwarf2asm.c (dw2_asm_output_delta_uleb128): Add brackets around lab2
4048         if it is an expression containing a minus sign.
4050 2018-05-27  John David Anglin  <danglin@gcc.gnu.org>
4052         * config/pa/pa-linux.h (NEED_INDICATE_EXEC_STACK): Define to 0.
4054 2018-05-27  Paul Koning  <ni1d@arrl.net>
4056         * config/pdp11/pdp11.md (truncsihi2): Remove.
4058 2018-05-27  Monk Chiang  <sh.chiang04@gmail.com>
4059             Chung-Ju Wu  <jasonwucj@gmail.com>
4061         * config/nds32/nds32-intrinsic.md (unaligned_storedi): Modify patterns
4062         implementation.
4063         (unaligned_store_dw): Ditto.
4064         * config/nds32/nds32-memory-manipulation.c
4065         (nds32_expand_movmemsi_loop_known_size): Refactoring implementation.
4066         (nds32_gen_dup_4_byte_to_word_value): Rename to ...
4067         (nds32_gen_dup_4_byte_to_word_value_aux): ... this.
4068         (emit_setmem_word_loop): Rename to ...
4069         (emit_setmem_doubleword_loop): ... this.
4070         (nds32_gen_dup_4_byte_to_word_value): New function.
4071         (nds32_gen_dup_8_byte_to_double_word_value): New function.
4072         (nds32_expand_setmem_loop): Refine implementation.
4073         (nds32_expand_setmem_loop_v3m): Ditto.
4074         * config/nds32/nds32-multiple.md (unaligned_store_update_base_dw): New
4075         pattern.
4077 2018-05-27  Chung-Ju Wu  <jasonwucj@gmail.com>
4079         * config/nds32/nds32.md (bswapsi2, bswaphi2): New patterns.
4081 2018-05-27  Chung-Ju Wu  <jasonwucj@gmail.com>
4083         * config/nds32/nds32.c (nds32_attribute_table): Add "no_prologue".
4084         (nds32_init_machine_status): Initialize machine->attr_naked_p and
4085         machine->attr_no_prologue_p.
4086         (nds32_compute_stack_frame): Check "naked" and "no_prologue" attributes.
4087         (nds32_naked_function_p): Handle "naked" and "no_prologue" attributes.
4088         (nds32_expand_epilogue): Consider attr_naked_p.
4089         (nds32_expand_epilogue_v3pop): Likewise.
4090         (nds32_can_use_return_insn): Likewise.
4091         * config/nds32/nds32.h (machine_function): Add attr_naked_p and
4092         attr_no_prologue_p fields.
4093         * config/nds32/nds32.opt (mret-in-naked-func): New option.
4095 2018-05-27  Jakub Jelinek  <jakub@redhat.com>
4097         PR target/85918
4098         * config/i386/i386.md (fixunssuffix, floatunssuffix): New code
4099         attributes.
4100         * config/i386/sse.md
4101         (<floatsuffix>float<sseintvecmodelower><mode>2<mask_name><round_name>):
4102         Rename to ...
4103         (float<floatunssuffix><sseintvecmodelower><mode>2<mask_name><round_name>):
4104         ... this.
4105         (<floatsuffix>float<sselongvecmodelower><mode>2<mask_name><round_name>):
4106         Rename to ...
4107         (float<floatunssuffix><sselongvecmodelower><mode>2<mask_name><round_name>):
4108         ... this.
4109         (*<floatsuffix>floatv2div2sf2): Rename to ...
4110         (*float<floatunssuffix>v2div2sf2): ... this.
4111         (<floatsuffix>floatv2div2sf2_mask): Rename to ...
4112         (float<floatunssuffix>v2div2sf2_mask): ... this.
4113         (*<floatsuffix>floatv2div2sf2_mask_1): Rename to ...
4114         (*float<floatunssuffix>v2div2sf2_mask_1): ... this.
4115         (<fixsuffix>fix_truncv8dfv8si2<mask_name><round_saeonly_name>): Rename
4116         to ...
4117         (fix<fixunssuffix>_truncv8dfv8si2<mask_name><round_saeonly_name>):
4118         ... this.
4119         (<fixsuffix>fix_trunc<mode><sseintvecmodelower>2<mask_name><round_saeonly_name>):
4120         Rename to ...
4121         (fix<fixunssuffix>_trunc<mode><sseintvecmodelower>2<mask_name><round_saeonly_name>):
4122         ... this.
4123         (<fixsuffix>fix_trunc<mode><sselongvecmodelower>2<mask_name><round_saeonly_name>):
4124         Rename to ...
4125         (fix<fixunssuffix>_trunc<mode><sselongvecmodelower>2<mask_name><round_saeonly_name>):
4126         ... this.
4127         (<fixsuffix>fix_truncv2sfv2di2<mask_name>): Rename to ...
4128         (fix<fixunssuffix>_truncv2sfv2di2<mask_name>): ... this.
4129         (vec_pack_ufix_trunc_<mode>): Use gen_fixuns_truncv8dfv8si2 instead of
4130         gen_ufix_truncv8dfv8si2.
4131         * config/i386/i386-builtin.def (__builtin_ia32_cvttpd2uqq256_mask,
4132         __builtin_ia32_cvttpd2uqq128_mask, __builtin_ia32_cvttps2uqq256_mask,
4133         __builtin_ia32_cvttps2uqq128_mask, __builtin_ia32_cvtuqq2ps256_mask,
4134         __builtin_ia32_cvtuqq2ps128_mask, __builtin_ia32_cvtuqq2pd256_mask,
4135         __builtin_ia32_cvtuqq2pd128_mask, __builtin_ia32_cvttpd2udq512_mask,
4136         __builtin_ia32_cvtuqq2ps512_mask, __builtin_ia32_cvtuqq2pd512_mask,
4137         __builtin_ia32_cvttps2uqq512_mask, __builtin_ia32_cvttpd2uqq512_mask):
4138         Use fixuns instead ufix or floatuns instead ufloat in CODE_FOR_ names.
4140 2018-05-24  H.J. Lu  <hongjiu.lu@intel.com>
4142         PR target/85900
4143         PR target/85345
4144         * varasm.c (assemble_alias): Lookup ifunc attribute on error.
4146 2018-05-25  Jim Wilson  <jimw@sifive.com>
4148         * config/riscv/riscv-protos.h (riscv_epilogue_uses): New.
4149         * config/riscv/riscv.c (struct machine_function): Add
4150         interrupt_handler_p and attribute_checked_p fields.
4151         (riscv_attribute_table): Add interrupt.
4152         (riscv_interrupt_type_p): New.
4153         (riscv_save_reg_p): Save extra regs for interrupt handler.
4154         (riscv_use_save_libcall): Return false  for interrupt handler.
4155         (riscv_first_stack_step): Add forward declaration.
4156         (riscv_compute_frame_info): New local interrupt_save_t1.  Set it
4157         for interrupt handler with large frame.  Use it for saved reg list.
4158         (riscv_expand_prologue): Move flag_stack_usage_info support to
4159         eliminate duplication.
4160         (riscv_expand_epilogue): Generate mret for interrupt handler.
4161         (riscv_epilogue_uses): New.
4162         (riscv_can_use_return_insn): Return false for interrupt handler.
4163         (riscv_function_ok_for_sibcall): Likewise.
4164         (riscv_set_current_function): Add interrupt handler support.
4165         * config/riscv/riscv.h (EPILOGUE_USES): Call riscv_epilogue_uses.
4166         * config/riscv/riscv.md (UNSPECV_MRET): New.
4167         (GP_REGNUM): New.
4168         (riscv_frflags, riscv_fsflags): Use tab after opcode.
4169         (riscv_mret): New.
4170         * doc/extend.texi (RISC-V Function Attributes) <interrupt>: New.
4172 2018-05-25  Bill Schmidt  <wschmidt@linux.ibm.com>
4174         PR tree-optimization/85712
4175         * gimple-ssa-strength-reduction.c (replace_one_candidate): Skip if
4176         this candidate has already been replaced in-situ by a copy.
4178 2018-05-25  Jason Merrill  <jason@redhat.com>
4180         PR c++/80485 - inline function non-zero address.
4181         * symtab.c (nonzero_address): Check DECL_COMDAT.
4183 2018-05-25  Uros Bizjak  <ubizjak@gmail.com>
4185         PR target/83628
4186         * config/alpha/alpha.md (ashlsi3): New insn pattern.
4187         (*ashlsi_se): Rename from *ashldi_se.  Define as sign
4188         extension of SImode operation.  Use const123_operand predicate.
4189         (*saddsi_1): Remove.
4190         (*saddl_se_1): Ditto.
4191         (*ssubsi_1): Ditto.
4192         (*ssubl_se_1): Ditto.
4193         * config/alpha/predicates.md (const123_operand): New predicate.
4194         * config/alpha/constraints.md (P): Use IN_RANGE.
4196 2018-05-25  Richard Biener  <rguenther@suse.de>
4198         * tree-ssa-alias.h (refs_may_alias_p): Add tbaa_p bool parameter,
4199         defaulted to true.
4200         (ref_maybe_used_by_stmt_p): Likewise.
4201         (stmt_may_clobber_ref_p): Likewise.
4202         (stmt_may_clobber_ref_p_1): Likewise.
4203         * tree-ssa-alias.c (refs_may_alias_p): Add tbaa_p bool parameter
4204         and pass it along.
4205         (ref_maybe_used_by_stmt_p): Likewise.
4206         (stmt_may_clobber_ref_p): Likewise.
4207         (stmt_may_clobber_ref_p_1): Likewise.
4208         * tree-vect-data-refs.c (vect_slp_analyze_node_dependences): Use
4209         the alias oracle to disambiguate DRs with stmts DR analysis
4210         couldn't handle.
4211         (vect_analyze_data_refs): Do not give up on not analyzable
4212         DRs for BB vectorization.  Remove code truncating the dataref
4213         vector.
4215 2018-05-25  Jakub Jelinek  <jakub@redhat.com>
4217         PR target/85832
4218         * config/i386/sse.md (<avx512>_eq<mode>3<mask_scalar_merge_name>_1):
4219         Add (=Yk,v,C) variant using vptestm insn.  Use TARGET_AVX512BW
4220         in test instead of TARGET_AVX512F for VI12_AVX512VL iterator.
4222 2018-05-25  Richard Biener  <rguenther@suse.de>
4224         * tree-vect-data-refs.c (vect_find_stmt_data_reference): New
4225         function, combining stmt data ref gathering and fatal analysis
4226         parts.
4227         (vect_analyze_data_refs): Remove now redudnant code and simplify.
4228         * tree-vect-loop.c (vect_get_datarefs_in_loop): Factor out from
4229         vect_analyze_loop_2 and use vect_find_stmt_data_reference.
4230         * tree-vect-slp.c (vect_slp_bb): Use vect_find_stmt_data_reference.
4231         * tree-vectorizer.h (vect_find_stmt_data_reference): Declare.
4233 2018-05-25  Bin Cheng  <bin.cheng@arm.com>
4235         PR tree-optimization/85720
4236         * tree-loop-distribution.c (break_alias_scc_partitions): Don't merge
4237         SCC if all partitions are builtins.
4238         (version_loop_by_alias_check): New parameter.  Generate cancelable
4239         runtime alias check if all partitions are builtins.
4240         (distribute_loop): Update call to above function.
4242 2018-05-25  Bin Cheng  <bin.cheng@arm.com>
4244         * tree-outof-ssa.c (tree-ssa.h, tree-dfa.h): Include header files.
4245         (create_default_def, for_all_parms): Moved from tree-ssa-coalesce.c.
4246         (parm_default_def_partition_arg): Ditto.
4247         (set_parm_default_def_partition): Ditto.
4248         (get_parm_default_def_partitions): Ditto and make it static.
4249         (get_undefined_value_partitions): Ditto and make it static.
4250         (remove_ssa_form): Refactor call to init_var_map here.
4251         * tree-ssa-coalesce.c (build_ssa_conflict_graph): Support live range
4252         computation for loop region.
4253         (coalesce_partitions, compute_optimized_partition_bases): Ditto.
4254         (register_default_def): Delete.
4255         (for_all_parms, create_default_def): Move to tree-outof-ssa.c.
4256         (parm_default_def_partition_arg): Ditto.
4257         (set_parm_default_def_partition): Ditto.
4258         (get_parm_default_def_partitions): Ditto and make it static.
4259         (get_undefined_value_partitions): Ditto and make it static.
4260         (coalesce_with_default, coalesce_with_default): Update comment.
4261         (create_coalesce_list_for_region): New func factored out from
4262         create_outofssa_var_map.
4263         (populate_coalesce_list_for_outofssa): New func factored out from
4264         create_outofssa_var_map and coalesce_ssa_name.
4265         (create_outofssa_var_map): Delete.
4266         (coalesce_ssa_name): Refactor to support live range computation.
4267         * tree-ssa-coalesce.h (coalesce_ssa_name): Change decl.
4268         (get_parm_default_def_partitions): Delete.
4269         (get_undefined_value_partitions): Ditto.
4270         * tree-ssa-live.c (init_var_map, delete_var_map): Support live range
4271         computation for loop region.
4272         (new_tree_live_info, loe_visit_block): Ditto.
4273         (live_worklist, set_var_live_on_entry): Ditto.
4274         (calculate_live_on_exit, verify_live_on_entry): Ditto.
4275         * tree-ssa-live.h (struct _var_map): New fields.
4276         (init_var_map): Change decl.
4277         (region_contains_p): New.
4279 2018-05-25  Bin Cheng  <bin.cheng@arm.com>
4281         * tree-ssa-live.h (live_merge_and_clear): Delete.
4283 2018-05-25  Richard Biener  <rguenther@suse.de>
4285         PR c++/85912
4286         * tree-dump.c (dequeue_and_dump): Remove access to removed
4287         operand 2 of a SWITCH_EXPR.
4289 2018-05-25  Richard Sandiford  <richard.sandiford@linaro.org>
4291         * doc/sourcebuild.texi (vect_double_cond_arith): Include
4292         multiplication and division.
4293         * doc/md.texi (cond_mul@var{m}, cond_div@var{m}, cond_mod@var{m})
4294         (cond_udiv@var{m}, cond_umod@var{m}): Document.
4295         * optabs.def (cond_smul_optab, cond_sdiv_optab, cond_smod_optab)
4296         (cond_udiv_optab, cond_umod_optab): New optabs.
4297         * internal-fn.def (IFN_COND_MUL, IFN_COND_DIV, IFN_COND_MOD)
4298         (IFN_COND_RDIV): New internal functions.
4299         * internal-fn.c (get_conditional_internal_fn): Handle TRUNC_DIV_EXPR,
4300         TRUNC_MOD_EXPR and RDIV_EXPR.
4301         * match.pd (UNCOND_BINARY, COND_BINARY): Handle them.
4302         * config/aarch64/iterators.md (UNSPEC_COND_MUL, UNSPEC_COND_DIV):
4303         New unspecs.
4304         (SVE_INT_BINARY): Include mult.
4305         (SVE_COND_FP_BINARY): Include UNSPEC_MUL and UNSPEC_DIV.
4306         (optab, sve_int_op): Handle mult.
4307         (optab, sve_fp_op, commutative): Handle UNSPEC_COND_MUL and
4308         UNSPEC_COND_DIV.
4309         * config/aarch64/aarch64-sve.md (cond_<optab><mode>): New pattern
4310         for SVE_INT_BINARY_SD.
4312 2018-05-25  Richard Sandiford  <richard.sandiford@linaro.org>
4314         * config/aarch64/iterators.md (SVE_INT_BINARY_SD): New code iterator.
4315         (optab, sve_int_op): Handle div and udiv.
4316         * config/aarch64/aarch64-sve.md (<optab><mode>3): New expander
4317         for SVE_INT_BINARY_SD.
4318         (*<optab><mode>3): New insn for the same.
4320 2018-05-25  Richard Sandiford  <richard.sandiford@linaro.org>
4322         * tree-vect-patterns.c: Include predict.h.
4323         (vect_recog_divmod_pattern): Restrict check for division support
4324         to when optimizing for size.
4326 2018-05-25  Richard Sandiford  <richard.sandiford@linaro.org>
4328         * doc/sourcebuild.texi (vect_double_cond_arith: Document.
4329         * gimple-match.h (gimple_match_op::MAX_NUM_OPS): Bump to 4.
4330         (gimple_match_op::gimple_match_op): Add an overload for 4 operands.
4331         (gimple_match_op::set_op): Likewise.
4332         (gimple_resimplify4): Declare.
4333         * genmatch.c (get_operand_type): Handle CFN_COND_* functions.
4334         (expr::gen_transform): Likewise.
4335         (decision_tree::gen): Generate a simplification routine for 4 operands.
4336         * gimple-match-head.c (gimple_simplify): Add an overload for
4337         4 operands.  In the top-level function, handle up to 4 call
4338         arguments and call gimple_resimplify4.
4339         (gimple_resimplify4): New function.
4340         (build_call_internal): Pass a fourth operand.
4341         (maybe_push_to_seq): Likewise.
4342         * match.pd (UNCOND_BINARY, COND_BINARY): New operator lists.
4343         Fold VEC_COND_EXPRs of an operation and a default value into
4344         an IFN_COND_* function if possible.
4345         * config/aarch64/iterators.md (UNSPEC_COND_MAX, UNSPEC_COND_MIN):
4346         New unspecs.
4347         (SVE_COND_FP_BINARY): Include them.
4348         (optab, sve_fp_op): Handle them.
4349         (SVE_INT_BINARY_REV): New code iterator.
4350         (SVE_COND_FP_BINARY_REV): New int iterator.
4351         (commutative): New int attribute.
4352         * config/aarch64/aarch64-protos.h (aarch64_sve_prepare_conditional_op):
4353         Declare.
4354         * config/aarch64/aarch64.c (aarch64_sve_prepare_conditional_op): New
4355         function.
4356         * config/aarch64/aarch64-sve.md (cond_<optab><mode>): Use it.
4357         (*cond_<optab><mode>): New patterns for reversed operands.
4359 2018-05-25  Richard Biener  <rguenther@suse.de>
4361         * tree-vectorizer.h (STMT_VINFO_GROUP_*, GROUP_*): Remove.
4362         (DR_GROUP_*): New, assert we have non-NULL ->data_ref_info.
4363         (REDUC_GROUP_*): New, assert we have NULL ->data_ref_info.
4364         (STMT_VINFO_GROUPED_ACCESS): Adjust.
4365         * tree-vect-data-refs.c (everywhere): Adjust users.
4366         * tree-vect-loop.c (everywhere): Likewise.
4367         * tree-vect-slp.c (everywhere): Likewise.
4368         * tree-vect-stmts.c (everywhere): Likewise.
4369         * tree-vect-patterns.c (vect_reassociating_reduction_p): Likewise.
4371 2018-05-25  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
4373         * configure.ac (gcc_cv_as_section_has_e): Move to common section.
4374         Rename to...
4375         (gcc_cv_as_section_exclude): ... this.
4376         Try Solaris as #exclude syntax.
4377         * configure: Regenerate.
4378         * config.in: Regenerate.
4379         * config/i386/i386.c (i386_solaris_elf_named_section): Handle
4380         SECTION_EXCLUDE.
4381         * config/sparc/sparc.c (sparc_solaris_elf_asm_named_section)
4382         [HAVE_GAS_SECTION_EXCLUDE]: Handle SECTION_EXCLUDE.
4384         * varasm.c (default_elf_asm_named_section): Don't check if
4385         HAVE_GAS_SECTION_EXCLUDE is defined.
4387 2018-05-25  Richard Sandiford  <richard.sandiford@linaro.org>
4389         * doc/md.texi: Update the documentation of the cond_* optabs
4390         to mention the new final operand.  Fix GET_MODE_NUNITS call.
4391         Describe the scalar case too.
4392         * internal-fn.def (IFN_EXTRACT_LAST): Change type to fold_left.
4393         * internal-fn.c (expand_cond_unary_optab_fn): Expect 3 operands
4394         instead of 2.
4395         (expand_cond_binary_optab_fn): Expect 4 operands instead of 3.
4396         (get_conditional_internal_fn): Update comment.
4397         * tree-vect-loop.c (vectorizable_reduction): Pass the original
4398         accumulator value as a final argument to conditional functions.
4399         * config/aarch64/aarch64-sve.md (cond_<optab><mode>): Turn into
4400         a define_expand and add an "else" operand.  Assert for now that
4401         the else operand is equal to operand 2.  Use SVE_INT_BINARY and
4402         SVE_COND_FP_BINARY instead of SVE_COND_INT_OP and SVE_COND_FP_OP.
4403         (*cond_<optab><mode>): New patterns.
4404         * config/aarch64/iterators.md (UNSPEC_COND_SMAX, UNSPEC_COND_UMAX)
4405         (UNSPEC_COND_SMIN, UNSPEC_COND_UMIN, UNSPEC_COND_AND, UNSPEC_COND_ORR)
4406         (UNSPEC_COND_EOR): Delete.
4407         (optab): Remove associated mappings.
4408         (SVE_INT_BINARY): New code iterator.
4409         (sve_int_op): Remove int attribute and add "minus" to the code
4410         attribute.
4411         (SVE_COND_INT_OP): Delete.
4412         (SVE_COND_FP_OP): Rename to...
4413         (SVE_COND_FP_BINARY): ...this.
4415 2018-05-25  Richard Sandiford  <richard.sandiford@linaro.org>
4417         * optabs.c (can_reuse_operands_p): New function.
4418         (maybe_legitimize_operands): Try to reuse the results for
4419         earlier operands.
4421 2018-05-24  Uros Bizjak  <ubizjak@gmail.com>
4423         * config/i386/sse.md (cvtusi2<ssescalarmodesuffix>64<round_name>):
4424         Add {q} suffix to insn mnemonic.
4426 2018-05-23  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
4428         * config/msp430/msp430.c (TARGET_WARN_FUNC_RETURN): Define.
4429         (msp430_warn_func_return): New.
4431 2018-05-24  Roger Sayle  <roger@nextmovesoftware.com>
4433         * fold-const.c (tree_nonzero_bits): New function.
4434         * fold-const.h (tree_nonzero_bits): Likewise.
4435         * match.pd (POPCOUNT): New patterns to fold BUILTIN_POPCOUNT and
4436         friends.  POPCOUNT(x&1) => x&1, POPCOUNT(x)==0 => x==0, etc.
4438 2018-05-24  H.J. Lu  <hongjiu.lu@intel.com>
4440         PR target/85900
4441         PR target/85345
4442         * varasm.c (assemble_alias): Check ifunc_resolver only on
4443         FUNCTION_DECL.
4445 2018-05-24  Uros Bizjak  <ubizjak@gmail.com>
4447         PR target/85903
4448         * config/i386/sse.md (movdi_to_sse): Do not generate pseudo
4449         when memory input operand is handled.
4451 2018-05-24  Luis Machado  <luis.machado@linaro.org>
4453         * config/aarch64/aarch64.c (qdf24xx_addrcost_table): New static
4454         global.
4455         (qdf24xx_tunings) <addr_costs>: Set to qdf24xx_addrcost_table.
4457 2018-05-24  Richard Sandiford  <richard.sandiford@linaro.org>
4459         * match.pd: Delay FMA folds until after vectorization.
4461 2018-05-24  Andre Vieira  <andre.simoesdiasvieira@arm.com>
4463         PR target/83009
4464         * config/aarch64/predicates.md (aarch64_mem_pair_lanes_operand): Make
4465         address check not strict.
4467 2018-05-24  Richard Sandiford  <richard.sandiford@linaro.org>
4469         * gimple-match.h (gimple_match_op): New class.
4470         (mprts_hook): Replace parameters with a gimple_match_op *.
4471         (maybe_build_generic_op): Likewise.
4472         (gimple_simplified_result_is_gimple_val): Replace parameters with
4473         a const gimple_match_op *.
4474         (gimple_simplify): Replace code_helper * and tree * parameters with
4475         a gimple_match_op * parameter.
4476         (gimple_resimplify1): Replace code_helper *, tree and tree *
4477         parameters with a gimple_match_op * parameter.
4478         (gimple_resimplify2): Likewise.
4479         (gimple_resimplify3): Likewise.
4480         (maybe_push_res_to_seq): Replace code_helper, tree and tree *
4481         parameters with a gimple_match_op * parameter.
4482         * gimple-match-head.c (gimple_simplify): Change prototypes of
4483         auto-generated functions to take a gimple_match_op * instead of
4484         separate code_helper * and tree * parameters.  Make the same
4485         change in the top-level overload and update calls to the
4486         gimple_resimplify routines.  Update calls to the auto-generated
4487         functions and to maybe_push_res_to_seq in the publicly-facing
4488         operation-specific gimple_simplify overloads.
4489         (gimple_match_op::MAX_NUM_OPS): Define.
4490         (gimple_resimplify1): Replace rcode and ops with a single res_op
4491         parameter.  Update call to gimple_simplify.
4492         (gimple_resimplify2): Likewise.
4493         (gimple_resimplify3): Likewise.
4494         (mprts_hook): Replace parameters with a gimple_match_op *.
4495         (maybe_build_generic_op): Likewise.
4496         (build_call_internal): Replace type, nargs and ops with
4497         a gimple_match_op *.
4498         (maybe_push_res_to_seq): Replace res_code, type and ops parameters
4499         with a single gimple_match_op *.  Update calls to mprts_hook,
4500         build_call_internal and gimple_simplified_result_is_gimple_val.
4501         Factor out code that is common to the tree_code and combined_fn cases.
4502         * genmatch.c (expr::gen_transform): Replace tem_code and
4503         tem_ops with a gimple_match_op called tem_op.  Update calls
4504         to the gimple_resimplify functions and maybe_push_res_to_seq.
4505         (dt_simplify::gen_1): Manipulate res_op instead of res_code and
4506         res_ops.  Update call to the gimple_resimplify functions.
4507         (dt_simplify::gen): Pass res_op instead of res_code and res_ops.
4508         (decision_tree::gen): Make the functions take a gimple_match_op *
4509         called res_op instead of separate res_code and res_ops parameters.
4510         Update call accordingly.
4511         * gimple-fold.c (replace_stmt_with_simplification): Replace rcode
4512         and ops with a single res_op parameter.  Update calls to
4513         maybe_build_generic_op and maybe_push_res_to_seq.
4514         (fold_stmt_1): Update calls to gimple_simplify and
4515         replace_stmt_with_simplification.
4516         (gimple_fold_stmt_to_constant_1): Update calls to gimple_simplify
4517         and gimple_simplified_result_is_gimple_val.
4518         * tree-cfgcleanup.c (cleanup_control_expr_graph): Update call to
4519         gimple_simplify.
4520         * tree-ssa-sccvn.c (vn_lookup_simplify_result): Replace parameters
4521         with a gimple_match_op *.
4522         (vn_nary_build_or_lookup): Likewise.  Update call to
4523         vn_nary_build_or_lookup_1.
4524         (vn_nary_build_or_lookup_1): Replace rcode, type and ops with a
4525         gimple_match_op *.  Update calls to the gimple_resimplify routines
4526         and to gimple_simplified_result_is_gimple_val.
4527         (vn_nary_simplify): Update call to vn_nary_build_or_lookup_1.
4528         Use gimple_match_op::MAX_NUM_OPS instead of a hard-coded 3.
4529         (vn_reference_lookup_3): Update call to vn_nary_build_or_lookup.
4530         (visit_nary_op): Likewise.
4531         (visit_reference_op_load): Likewise.
4533 2018-05-23  Luis Machado  <luis.machado@linaro.org>
4535         * tree-ssa-loop-prefetch.c (should_issue_prefetch_p): Use correct type
4536         modifier for printing the step amount.
4538 2018-05-23  Jozef Lawrynowicz  <jozef.l@somniumtech.com>
4540         PR target/78849
4541         * gcc/tree.c (build_common_tree_nodes): Dont set TYPE_SIZE for __intN
4542         types.
4544 2018-05-23  Segher Boessenkool  <segher@kernel.crashing.org>
4546         * doc/sourcebuild.texi (Endianness): New subsubsection.
4548 2018-05-23  Luis Machado  <luis.machado@linaro.org>
4550         * config/aarch64/aarch64-protos.h (cpu_prefetch_tune)
4551         <prefetch_dynamic_strides>: New const bool field.
4552         * config/aarch64/aarch64.c (generic_prefetch_tune): Update to include
4553         prefetch_dynamic_strides.
4554         (exynosm1_prefetch_tune): Likewise.
4555         (thunderxt88_prefetch_tune): Likewise.
4556         (thunderx_prefetch_tune): Likewise.
4557         (thunderx2t99_prefetch_tune): Likewise.
4558         (qdf24xx_prefetch_tune): Likewise. Set prefetch_dynamic_strides to
4559         false.
4560         (aarch64_override_options_internal): Update to set
4561         PARAM_PREFETCH_DYNAMIC_STRIDES.
4562         * doc/invoke.texi (prefetch-dynamic-strides): Document new option.
4563         * params.def (PARAM_PREFETCH_DYNAMIC_STRIDES): New.
4564         * params.h (PARAM_PREFETCH_DYNAMIC_STRIDES): Define.
4565         * tree-ssa-loop-prefetch.c (should_issue_prefetch_p): Account for
4566         prefetch-dynamic-strides setting.
4568 2018-05-23  Luis Machado  <luis.machado@linaro.org>
4570         * config/aarch64/aarch64-protos.h (cpu_prefetch_tune)
4571         <minimum_stride>: New const int field.
4572         * config/aarch64/aarch64.c (generic_prefetch_tune): Update to include
4573         minimum_stride field defaulting to -1.
4574         (exynosm1_prefetch_tune): Likewise.
4575         (thunderxt88_prefetch_tune): Likewise.
4576         (thunderx_prefetch_tune): Likewise.
4577         (thunderx2t99_prefetch_tune): Likewise.
4578         (qdf24xx_prefetch_tune) <minimum_stride>: Set to 2048.
4579         <default_opt_level>: Set to 3.
4580         (aarch64_override_options_internal): Update to set
4581         PARAM_PREFETCH_MINIMUM_STRIDE.
4582         * doc/invoke.texi (prefetch-minimum-stride): Document new option.
4583         * params.def (PARAM_PREFETCH_MINIMUM_STRIDE): New.
4584         * params.h (PARAM_PREFETCH_MINIMUM_STRIDE): Define.
4585         * tree-ssa-loop-prefetch.c (should_issue_prefetch_p): Return false if
4586         stride is constant and is below the minimum stride threshold.
4588 2018-05-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4590         * config/arm/arm-cpus.in (mode26): Delete.
4591         (armv4): Delete mode26 reference.
4592         * config/arm/arm.c (arm_configure_build_target): Delete use of
4593         isa_bit_mode26.
4595 2018-05-23  Uros Bizjak  <ubizjak@gmail.com>
4597         * config/i386/i386.md (*floatuns<SWI48:mode><MODEF:mode>2_avx512):
4598         New insn pattern.
4599         (floatunssi<mode>2): Also enable for AVX512F and TARGET_SSE_MATH.
4600         Rewrite expander pattern.  Emit gen_floatunssi<mode>2_i387_with_xmm
4601         for non-SSE modes.
4602         (floatunsdisf2): Rewrite expander pattern.  Hanlde TARGET_AVX512F.
4603         (floatunsdidf2): Ditto.
4605 2018-05-23  Uros Bizjak  <ubizjak@gmail.com>
4607         * config/i386/i386.md (fixuns_trunc<mode>di2): New insn pattern.
4608         (fixuns_trunc<mode>si2_avx512f): Ditto.
4609         (*fixuns_trunc<mode>si2_avx512f_zext): Ditto.
4610         (fixuns_trunc<mode>si2): Also enable for AVX512F and TARGET_SSE_MATH.
4611         Emit fixuns_trunc<mode>si2_avx512f for AVX512F targets.
4613 2018-05-23  Alexander Monakov  <amonakov@ispras.ru>
4615         PR rtl-optimization/79985
4616         * df-scan.c (df_insn_refs_collect): Remove special case for
4617         global registers and asm statements.
4619 2018-05-23  Alexander Monakov  <amonakov@ispras.ru>
4621         * extend.texi (Global Register Variables): Rewrite the bullet list.
4622         Note that the register is available for allocation. Note that access
4623         via inline asm must use constraints. Add note about async-signal
4624         handlers. Remove paragraph about automagic register selection.
4626 2018-05-23  Richard Biener  <rguenther@suse.de>
4628         * tree-ssa-sccvn.c (vn_reference_lookup_3): Remove restriction
4629         of fixed offset from memset VN.
4631 2018-05-23  Bill Schmidt  <wschmidt@linux.ibm.com>
4633         * gimple-ssa-strength-reduction.c (struct slsr_cand_d): Add
4634         first_interp field.
4635         (alloc_cand_and_find_basis): Initialize first_interp field.
4636         (slsr_process_mul): Modify first_interp field.
4637         (slsr_process_add): Likewise.
4638         (slsr_process_cast): Modify first_interp field for each new
4639         interpretation.
4640         (slsr_process_copy): Likewise.
4641         (dump_candidate): Dump first_interp field.
4642         (replace_mult_candidate): Process all interpretations, not just
4643         subsequent ones.
4644         (replace_rhs_if_not_dup): Likewise.
4645         (replace_one_candidate): Likewise.
4647 2018-05-23  Wilco Dijkstra  <wdijkstr@arm.com>
4649         * config/aarch64/aarch64.c (aarch64_use_frame_pointer):
4650         Add new boolean.
4651         (aarch64_needs_frame_chain): New function.
4652         (aarch64_parse_override_string): Set aarch64_use_frame_pointer.
4654 2018-05-23  Sudakshina Das  <sudi.das@arm.com>
4656         PR target/84882
4657         * common/config/aarch64/aarch64-common.c (aarch64_handle_option):
4658         Check val before adding MASK_STRICT_ALIGN to opts->x_target_flags.
4659         * config/aarch64/aarch64.opt (mstrict-align): Remove RejectNegative.
4660         * config/aarch64/aarch64.c (aarch64_attributes): Mark allow_neg
4661         as true for strict-align.
4662         (aarch64_can_inline_p): Perform checks even when callee has no
4663         attributes to check for strict alignment.
4664         * doc/extend.texi (AArch64 Function Attributes): Document
4665         no-strict-align.
4666         * doc/invoke.texi: (AArch64 Options): Likewise.
4668 2018-05-23  Richard Sandiford  <richard.sandiford@linaro.org>
4670         PR tree-optimization/85853
4671         * tree-vect-slp.c (vect_slp_analyze_node_operations): Split out
4672         the handling of the root of the node to...
4673         (vect_slp_analyze_node_operations_1): ...this new function,
4674         and run the whole thing with the child nodes' def types
4675         set according to their SLP node's def type.
4677 2018-05-23  Richard Biener  <rguenther@suse.de>
4679         PR middle-end/85874
4680         * tree-data-ref.c (create_runtime_alias_checks): Defer
4681         and ignore overflow warnings.
4683 2018-05-23  Yury Gribov  <tetra2005@gmail.com>
4685         PR tree-optimization/85822
4686         * tree-vrp.c (is_masked_range_test): Fix handling of negative
4687         constants.
4689 2018-05-23  Richard Biener  <rguenther@suse.de>
4691         * tree-ssa-sccvn.c (vn_reference_lookup_3): Handle arbitrary
4692         memset constants via native_interpret_expr.
4694 2018-05-22  H.J. Lu  <hongjiu.lu@intel.com>
4696         PR target/85345
4697         * cgraph.h (cgraph_node::create): Set ifunc_resolver for ifunc
4698         attribute.
4699         (cgraph_node::create_alias): Likewise.
4700         (cgraph_node::get_availability): Check ifunc_resolver instead
4701         of looking up ifunc attribute.
4702         * cgraphunit.c (maybe_diag_incompatible_alias): Likewise.
4703         * varasm.c (do_assemble_alias): Likewise.
4704         (assemble_alias): Likewise.
4705         (default_binds_local_p_3): Likewise.
4706         * cgraph.h (cgraph_node): Add ifunc_resolver.
4707         (cgraph_node::only_called_directly_or_aliased_p): Return false
4708         for IFUNC resolver.
4709         * lto-cgraph.c (input_node): Set ifunc_resolver for ifunc
4710         attribute.
4711         * symtab.c (symtab_node::verify_base): Verify that ifunc_resolver
4712         is equivalent to lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)).
4713         (symtab_node::binds_to_current_def_p): Check ifunc_resolver
4714         instead of looking up ifunc attribute.
4716 2018-05-22  Luis Machado  <luis.machado@linaro.org>
4718         * config/aarch64/aarch64.md (*ashift<mode>_extv_bfiz): New pattern.
4720 2018-05-22  Martin Sebor  <msebor@redhat.com>
4722         PR middle-end/85359
4723         * builtins.c (expand_builtin_strcpy): Call maybe_warn_nonstring_arg
4724         only when expasion succeeds.
4725         (expand_builtin_strcmp): Same.
4726         (expand_builtin_strncmp): Same.
4728 2018-05-22  Martin Sebor  <msebor@redhat.com>
4730         * calls.c (maybe_warn_nonstring_arg): Fix a typo in a comment.
4732 2018-05-22  Jackson Woodruff  <jackson.woodruff@arm.com>
4733             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4735         * config/aarch64/aarch64-ldpstp.md: Replace uses of
4736         aarch64_mem_pair_operand with memory_operand and delete operand swapping
4737         code.
4738         * config/aarch64/aarch64.c (aarch64_operands_ok_for_ldpstp):
4739         Add check for legitimate_address.
4740         (aarch64_gen_adjusted_ldpstp): Swap operands where appropriate.
4741         (aarch64_swap_ldrstr_operands): New.
4742         * config/aarch64/aarch64-protos.h (aarch64_swap_ldrstr_operands):
4743         Define prototype.
4745 2018-05-22  Jackson Woodruff  <jackson.woodruff@arm.com>
4746             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4748         * config/aarch64/aarch64.md: New patterns to generate stp
4749         and ldp.
4750         (store_pair_sw, store_pair_dw): New patterns to generate stp for
4751         single words and double words.
4752         (load_pair_sw, load_pair_dw): Likewise.
4753         (store_pair_sf, store_pair_df, store_pair_si, store_pair_di):
4754         Delete.
4755         (load_pair_sf, load_pair_df, load_pair_si, load_pair_di):
4756         Delete.
4757         * config/aarch64/aarch64-ldpstp.md: Modify peephole
4758         for different mode ldpstp and add peephole for merged zero stores.
4759         Likewise for loads.
4760         * config/aarch64/aarch64.c (aarch64_operands_ok_for_ldpstp):
4761         Add size check.
4762         (aarch64_gen_store_pair): Rename calls to match new patterns.
4763         (aarch64_gen_load_pair): Rename calls to match new patterns.
4764         * config/aarch64/aarch64-simd.md (load_pair<mode>): Rename to...
4765         (load_pair<DREG:mode><DREG2:mode>): ... This.
4766         (store_pair<mode>): Rename to...
4767         (vec_store_pair<DREG:mode><DREG2:mode>): ... This.
4768         * config/aarch64/iterators.md (DREG, DREG2, DX2, SX, SX2, DSX):
4769         New mode iterators.
4770         (V_INT_EQUIV): Handle SImode.
4771         * config/aarch64/predicates.md (aarch64_reg_zero_or_fp_zero):
4772         New predicate.
4774 2018-05-22  Martin Sebor  <msebor@redhat.com>
4776         PR c/85623
4777         * calls.c (maybe_warn_nonstring_arg): Use string length to set
4778         or ajust the presumed bound on an operation to avoid unnecessary
4779         warnings.
4781 2018-05-22  Martin Sebor  <msebor@redhat.com>
4783         PR tree-optimization/85826
4784         * gimple-ssa-warn-restrict.c (builtin_memref::builtin_memref): Avoid
4785         assuming that a DECL necesarily has a constant size.
4787 2018-05-22  Richard Sandiford  <richard.sandiford@linaro.org>
4789         PR middle-end/85862
4790         * internal-fn.c (expand_direct_optab_fn): Cope with a null lhs.
4792 2018-05-22  Richard Biener  <rguenther@suse.de>
4794         PR tree-optimization/85834
4795         * tree-ssa-sccvn.c (vn_reference_lookup_3): Properly handle
4796         non-constant and non-zero memset arguments.
4798 2018-05-22  Martin Liska  <mliska@suse.cz>
4800         PR ipa/85607
4801         * ipa-icf.c (sem_item::add_type): Do not ICE for incomplete types.
4803 2018-05-22  Richard Biener  <rguenther@suse.de>
4805         PR tree-optimization/85863
4806         * tree-vect-stmts.c (vect_is_simple_cond): Only widen invariant
4807         comparisons when vectype is specified.
4808         (vectorizable_condition): Do not specify vectype for
4809         vect_is_simple_cond when SLP vectorizing.
4811 2018-05-21  Michael Meissner  <meissner@linux.ibm.com>
4813         PR target/85657
4814         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Do not
4815         define __ibm128 as long double.
4816         * config/rs6000/rs6000.c (rs6000_init_builtins): Create __ibm128
4817         as a distinct type when IEEE 128-bit support is enabled.
4818         (init_float128_ieee): Fix up conversions between IFmode and IEEE
4819         128-bit types to use the correct functions.
4820         (rs6000_expand_float128_convert): Use explicit FLOAT_EXTEND to
4821         convert between 128-bit floating point types that have different
4822         modes but the same representation, instead of using gen_lowpart to
4823         makean alias.
4824         * config/rs6000/rs6000.md (IFKF): New iterator for IFmode and
4825         KFmode.
4826         (IFKF_reg): New attributes to give the register constraints for
4827         IFmode and KFmode.
4828         (extend<mode>tf2_internal): New insns to mark an explicit
4829         conversion between 128-bit floating point types that have a
4830         different mode but share the same representation.
4832 2018-05-21  Richard Sandiford  <richard.sandiford@linaro.org>
4834         PR tree-optimization/85814
4835         * tree-ssa-strlen.c (get_stridx_plus_constant): Cope with
4836         a null return from get_strinfo when unsharing the next
4837         strinfo in the chain.
4839 2018-05-21  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>
4841         PR gcc/84923
4842         * varasm.c (weak_finish): Clean up weak_decls.
4844 2018-05-21  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
4846         * config/aarch64/aarch64.md ("unspec"): Define UNSPEC_SABAL,
4847         UNSPEC_SABDL2, UNSPEC_SADALP, UNSPEC_UABAL, UNSPEC_UABDL2,
4848         UNSPEC_UADALP values.
4849         * config/aarch64/iterators.md (ABAL): New int iterator.
4850         (ABDL2): Likewise.
4851         (ADALP): Likewise.
4852         (sur): Add mappings for the above.
4853         * config/aarch64/aarch64-simd.md (aarch64_<sur>abdl2<mode>_3):
4854         New define_insn.
4855         (aarch64_<sur>abal<mode>_4): Likewise.
4856         (aarch64_<sur>adalp<mode>_3): Likewise.
4857         (<sur>sadv16qi): New define_expand.
4859 2018-05-21  Alexander Nesterovskiy  <alexander.nesterovskiy@intel.com>
4861         * config/i386/i386.md (*movsf_internal): AVX falsedep fix.
4862         (*movdf_internal): Ditto.
4863         (*rcpsf2_sse): Ditto.
4864         (*rsqrtsf2_sse): Ditto.
4865         (*sqrt<mode>2_sse): Ditto.
4867 2018-05-21  Tamar Christina  <tamar.christina@arm.com>
4869         * config/aarch64/aarch64-simd.md (aarch64_eor3qv8hi): Change to
4870         eor3q<mode>4.
4871         (aarch64_bcaxqv8hi): Change to bcaxq<mode>4.
4872         * config/aarch64/aarch64-simd-builtins.def (veor3q_u8, veor3q_u32,
4873         veor3q_u64, veor3q_s8, veor3q_s16, veor3q_s32, veor3q_s64, vbcaxq_u8,
4874         vbcaxq_u32, vbcaxq_u64, vbcaxq_s8, vbcaxq_s16, vbcaxq_s32,
4875         vbcaxq_s64): New.
4876         * config/aarch64/arm_neon.h: Likewise.
4877         * config/aarch64/iterators.md (VQ_I): New.
4879 2018-05-21  Alexey Brodkin <abrodkin@synopsys.com>
4881         * config.gcc: Add arc/t-multilib-linux to tmake_file for
4882         arc*-*-linux*.
4883         * config/arc/t-multilib-linux: Specify MULTILIB_OPTIONS and
4884         MULTILIB_DIRNAMES
4886 2018-05-20  Chung-Ju Wu  <jasonwucj@gmail.com>
4888         * config/nds32/constraints.md (S): New constraint.
4889         * config/nds32/nds32.md (call_internal): Use constraint S.
4890         (call_value_internal): Likewise.
4891         (sibcall_internal): Likewise.
4892         (sibcall_value_internal): Likewise.
4894 2018-05-20  Kito Cheng  <kito.cheng@gmail.com>
4895             Chung-Ju Wu  <jasonwucj@gmail.com>
4897         * config/nds32/nds32.c (nds32_register_move_cost): Take garywolf cpu
4898         into consideration.
4900 2018-05-20  Kito Cheng  <kito.cheng@gmail.com>
4901             Chung-Ju Wu  <jasonwucj@gmail.com>
4903         * config/nds32/nds32-cost.c (rtx_cost_model_t): New structure.
4904         (insn_size_16bit, insn_size_32bit): New variables for cost evaluation.
4905         (nds32_rtx_costs_impl): Simplify.
4906         (nds32_address_cost_impl): Simplify.
4907         (nds32_init_rtx_costs): New function.
4908         (nds32_rtx_costs_speed_prefer): Likewise.
4909         (nds32_rtx_costs_size_prefer): Likewise.
4910         (nds32_address_cost_speed_prefer): Likewise.
4911         (nds32_address_cost_speed_fwprop): Likewise.
4912         (nds32_address_cost_size_prefer): Likewise.
4913         * config/nds32/nds32-protos.h (nds32_init_rtx_costs): Declare.
4914         * config/nds32/nds32.c (nds32_option_override): Use
4915         nds32_init_rtx_costs function.
4917 2018-05-20  Chung-Ju Wu  <jasonwucj@gmail.com>
4919         * config/nds32/nds32.c (nds32_asm_file_start): Output pipeline model.
4920         * config/nds32/nds32.h (TARGET_PIPELINE_N7): Define.
4921         (TARGET_PIPELINE_N8): Likewise.
4922         (TARGET_PIPELINE_N10): Likewise.
4923         (TARGET_PIPELINE_N13): Likewise.
4924         (TARGET_PIPELINE_GRAYWOLF): Likewise.
4926 2018-05-19  Monk Chiang  <sh.chiang04@gmail.com>
4928         * config/nds32/nds32-fpu.md: Update copyright year.
4930 2018-05-19  Chung-Ju Wu  <jasonwucj@gmail.com>
4932         * config/nds32/nds32.h (ASM_SPEC): Adjust spec rule.
4934 2018-05-19  Chung-Ju Wu  <jasonwucj@gmail.com>
4936         * config/nds32/nds32.c
4937         (nds32_md_asm_adjust): Consider flag_inline_asm_r15 variable.
4938         * config/nds32/nds32.opt (minline-asm-r15): New option.
4940 2018-05-19  Chung-Ju Wu  <jasonwucj@gmail.com>
4942         * common/config/nds32/nds32-common.c (TARGET_DEFAULT_TARGET_FLAGS): Add
4943         MASK_HW_ABS.
4944         * config/nds32/nds32.md (abssi2): New pattern.
4946 2018-05-19  Uros Bizjak  <ubizjak@gmail.com>
4948         * config/i386/i386.md (rex64namesuffix): New mode attribute.
4949         * config/i386/sse.md (sse_cvtsi2ss<rex64namesuffix><round_name>):
4950         Merge insn pattern from sse_cvtsi2ss<round_name> and
4951         sse_cvtsi2ssq<round_name> using SWI48 mode iterator.
4952         (sse_cvtss2si<rex64namesuffix><round_name>): Merge insn pattern
4953         from sse_cvtss2si<round_name> and sse_cvtss2siq<round_name>
4954         using SWI48 mode iterator.
4955         (sse_cvtss2si<rex64namesuffix>_2): Merge insn pattern from
4956         sse_cvtss2si_2 and sse_cvtss2siq_2 using SWI48 mode iterator.
4957         (sse_cvttss2si<rex64namesuffix><round_saeonly_name>): Merge insn
4958         pattern from sse_cvttss2si<round_saeonly_name>
4959         and sse_cvttss2siq<round_saeonly_name> using SWI48 mode iterator.
4960         (avx512f_vcvtss2usi<rex64namesuffix><round_name>): Merge insn pattern
4961         from avx512f_vcvtss2usi<round_name> and avx512f_vcvtss2usiq<round_name>
4962         using SWI48 mode iterator.
4963         (avx512f_vcvttss2usi<rex64namesuffix><round_saeonly_name>): Merge
4964         insn pattern from avx512f_vcvttss2usi<round_saeonly_name> and
4965         avx512f_vcvttss2usiq<round_saeonly_name> using SWI48 mode iterator.
4966         (avx512f_vcvtsd2usi<rex64namesuffix><round_name>): Merge insn pattern
4967         from avx512f_vcvtsd2usi<round_name> and avx512f_vcvtsd2usiq<round_name>
4968         using SWI48 mode iterator.
4969         (avx512f_vcvttsd2usi<rex64namesuffix><round_saeonly_name>): Merge
4970         insn pattern from avx512f_vcvttsd2usi<round_saeonly_name> and
4971         avx512f_vcvttsd2usiq<round_saeonly_name> using SWI48 mode iterator.
4972         (sse2_cvtsd2si<rex64namesuffix><round_name>): Merge insn pattern from
4973         sse2_cvtsd2si<round_name> and sse2_cvtsd2siq<round_name> using
4974         SWI48 mode iterator.
4975         (sse2_cvtsd2si<rex64namesuffix>_2): Merge insn pattern from
4976         sse2_cvtsd2si_2 and sse2_cvtsd2siq_2 using SWI48 mode iterator.
4977         (sse_cvttsd2si<rex64namesuffix><round_saeonly_name>): Merge insn
4978         pattern from sse_cvttsd2si<round_saeonly_name>
4979         and sse_cvttsd2siq<round_saeonly_name> using SWI48 mode iterator.
4981 2018-05-19  Chung-Ju Wu  <jasonwucj@gmail.com>
4983         * config/nds32/nds32-md-auxiliary.c
4984         (nds32_valid_smw_lwm_base_p): Refine.
4985         (nds32_output_smw_single_word): Refine.
4986         (nds32_output_smw_double_word): New.
4987         * config/nds32/nds32-protos.h (nds32_output_smw_double_word): New.
4989 2018-05-19  Chung-Ju Wu  <jasonwucj@gmail.com>
4991         * config/nds32/nds32-md-auxiliary.c (nds32_output_stack_push): Refine.
4992         (nds32_output_stack_pop): Refine.
4993         (nds32_expand_unaligned_load): Refine.
4994         (nds32_expand_unaligned_store): Refine.
4996 2018-05-19  Kuan-Lin Chen <kuanlinchentw@gmail.com>
4997             Chung-Ju Wu  <jasonwucj@gmail.com>
4999         * config/nds32/constants.md: Add TP_REGNUM constant.
5000         (unspec_element): Add UNSPEC_GOTINIT, UNSPEC_GOT, UNSPEC_GOTOFF,
5001         UNSPEC_PLT, UNSPEC_TLSGD, UNSPEC_TLSLD, UNSPEC_TLSIE, UNSPEC_TLSLE and
5002         UNSPEC_ADD32.
5003         * config/nds32/nds32-doubleword.md: Consider flag_pic.
5004         * config/nds32/nds32-dspext.md (mov<mode>): Expand TLS and PIC cases.
5005         * config/nds32/nds32-predicates.c (nds32_const_unspec_p): New.
5006         * config/nds32/nds32-md-auxiliary.c: Implementation that support TLS
5007         and PIC code generation.
5008         * config/nds32/nds32-protos.h: Declarations that support TLS and PIC
5009         code generation.
5010         * config/nds32/nds32-relax-opt.c: Consider TLS and PIC for relax
5011         optimization.
5012         * config/nds32/nds32.md: Support TLS and PIC.
5013         * config/nds32/nds32.c: Support TLS and PIC.
5014         * config/nds32/nds32.h (nds32_relax_insn_type): New enum type.
5015         * config/nds32/predicates.md (nds32_nonunspec_symbolic_operand): New
5016         predicate.
5018 2018-05-19  Chung-Ju Wu  <jasonwucj@gmail.com>
5020         * config/nds32/nds32-predicates.c (const_vector_to_hwint): Use machine
5021         mode with E_ prefix.
5023 2018-05-19  Kuan-Lin Chen <kuanlinchentw@gmail.com>
5024             Chung-Ju Wu  <jasonwucj@gmail.com>
5026         * config/nds32/constants.md (unspec_element): Add UNSPEC_ICT.
5027         * config/nds32/nds32-md-auxiliary.c
5028         (symbolic_reference_mentioned_p): New.
5029         (nds32_legitimize_ict_address): New.
5030         (nds32_expand_ict_move): New.
5031         (nds32_indirect_call_referenced_p): New.
5032         (nds32_symbol_binds_local_p): Delete.
5033         (nds32_long_call_p): Modify.
5034         * config/nds32/nds32-opts.h (nds32_ict_model_type): New enum type.
5035         * config/nds32/nds32-protos.h
5036         (symbolic_reference_mentioned_p): Declare.
5037         (nds32_legitimize_ict_address): Declare.
5038         (nds32_expand_ict_move): Declare.
5039         (nds32_indirect_call_referenced_p): Declare.
5040         * config/nds32/nds32-relax-opt.c (nds32_ict_const_p): New.
5041         (nds32_relax_group): Use nds32_ict_const_p as condition.
5042         * config/nds32/nds32.c (nds32_attribute_table): Add "indirect_call".
5043         (nds32_asm_file_start): Output ict_model directive in asm code.
5044         (nds32_legitimate_address_p): Consider indirect call.
5045         (nds32_print_operand): Consider indirect call.
5046         (nds32_print_operand_address): Consider indirect call.
5047         (nds32_insert_attributes): Handle "indirect_call" attribute.
5048         (TARGET_LEGITIMATE_ADDRESS_P): Define.
5049         (TARGET_LEGITIMATE_CONSTANT_P): Define.
5050         (TARGET_CANNOT_FORCE_CONST_MEM): Define.
5051         (TARGET_DELEGITIMIZE_ADDRESS): Define.
5052         (TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA): Define.
5053         * config/nds32/nds32.h (SYMBOLIC_CONST_P): Define.
5054         (TARGET_ICT_MODEL_SMALL): Define.
5055         (TARGET_ICT_MODEL_LARGE): Define.
5056         * config/nds32/nds32.md (movsi): Consider ict model.
5057         (call, call_value): Consider ict model.
5058         (sibcall, sibcall_value): Consider ict model.
5059         * config/nds32/nds32.opt (mict-model): New option.
5060         * config/nds32/predicates.md (nds32_symbolic_operand): Consider ict
5061         model.
5063 2018-05-18  Kito Cheng  <kito.cheng@gmail.com>
5064             Monk Chiang  <sh.chiang04@gmail.com>
5065             Jim Wilson <jimw@sifive.com>
5067         * common/config/riscv/riscv-common.c (riscv_parse_arch_string):
5068         Add support to parse rv32e*.  Clear MASK_RVE for rv32i and rv64i.
5069         * config.gcc (riscv*-*-*): Add support for rv32e* and ilp32e.
5070         * config/riscv/riscv-c.c (riscv_cpu_cpp_builtins): Define
5071         __riscv_32e when TARGET_RVE.  Handle ABI_ILP32E as soft-float ABI.
5072         * config/riscv/riscv-opts.h (riscv_abi_type): Add ABI_ILP32E.
5073         * config/riscv/riscv.c (riscv_compute_frame_info): When TARGET_RVE,
5074         compute save_libcall_adjustment properly.
5075         (riscv_option_override): Call error if TARGET_RVE and not ABI_ILP32E.
5076         (riscv_conditional_register_usage): Handle TARGET_RVE and ABI_ILP32E.
5077         * config/riscv/riscv.h (UNITS_PER_FP_ARG): Handle ABI_ILP32E.
5078         (STACK_BOUNDARY, ABI_STACK_BOUNDARY): Handle TARGET_RVE.
5079         (GP_REG_LAST, MAX_ARGS_IN_REGISTERS): Likewise.
5080         (ABI_SPEC): Handle mabi=ilp32e.
5081         * config/riscv/riscv.opt (abi_type): Add ABI_ILP32E.
5082         (RVE): Add RVE mask.
5083         * doc/invoke.texi (RISC-V options) <-mabi>: Add ilp32e info.
5084         <-march>: Add rv32e as an example.
5086 2018-05-18  Marc Glisse  <marc.glisse@inria.fr>
5088         PR c++/82899
5089         * tree-ssa-structalias.c (create_variable_info_for_1): Extra argument.
5090         (intra_create_variable_infos): Handle C++ constructors.
5092 2018-05-18  Martin Liska  <mliska@suse.cz>
5094         * passes.def: Remove a redundant pass.
5096 2018-05-18  Eric Botcazou  <ebotcazou@adacore.com>
5098         PR bootstrap/85838
5099         * config/sparc/sparc.c (sparc_expand_builtin): Always initialize op[0].
5101 2018-05-18  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5103         * config/arm/arm-cpus.in (armv3m, mode32): Delete features.
5104         (ARMv4): Update.
5105         (ARMv2, ARMv3, ARMv3m): Delete fgroups.
5106         (ARMv6m): Update.
5107         (armv2, armv2a, armv3, armv3m): Delete architectures.
5108         (arm2, arm250, arm3, arm6, arm60, arm600, arm610, arm620,
5109         arm7, arm7d, arm7di, arm70, arm700, arm700i, arm710, arm720,
5110         arm710c, arm7100, arm7500, arm7500fe, arm7m, arm7dm, arm7dmi):
5111         Delete cpus.
5112         * config/arm/arm.md (maddsidi4): Remove check for arm_arch3m.
5113         (*mulsidi3adddi): Likewise.
5114         (mulsidi3): Likewise.
5115         (*mulsidi3_nov6): Likewise.
5116         (umulsidi3): Likewise.
5117         (umulsidi3_nov6): Likewise.
5118         (umaddsidi4): Likewise.
5119         (*umulsidi3adddi): Likewise.
5120         (smulsi3_highpart): Likewise.
5121         (*smulsi3_highpart_nov6): Likewise.
5122         (umulsi3_highpart): Likewise.
5123         (*umulsi3_highpart_nov6): Likewise.
5124         * config/arm/arm.h (arm_arch3m): Delete.
5125         * config/arm/arm.c (arm_arch3m): Delete.
5126         (arm_option_override_internal): Update armv3-related comment.
5127         (arm_configure_build_target): Delete use of isa_bit_mode32.
5128         (arm_option_reconfigure_globals): Delete set of arm_ach3m.
5129         (arm_rtx_costs_internal): Delete check of arm_arch3m.
5130         * config/arm/arm-fixed.md (mulsq3): Delete check for arm_arch3m.
5131         (mulsa3): Likewise.
5132         (mulusa3): Likewise.
5133         * config/arm/arm-protos.h (arm_arch3m): Delete.
5134         * config/arm/arm-tables.opt: Regenerate.
5135         * config/arm/arm-tune.md: Likewise.
5136         * config/arm/t-arm-elf (all_early_nofp): Delete mentions of
5137         deleted architectures.
5139 2018-05-18  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5141         * config/arm/arm-cpus.in (armv5, armv5e): Delete features.
5142         (armv5t, armv5te): New features.
5143         (ARMv5, ARMv5e): Delete fgroups.
5144         (ARMv5t, ARMv5te): Adjust for above changes.
5145         (ARMv6m): Likewise.
5146         (armv5, armv5e): Delete arches.
5147         * config/arm/arm.md (*call_reg_armv5): Use arm_arch5t instead of
5148         arm_arch5.
5149         (*call_reg_arm): Likewise.
5150         (*call_value_reg_armv5): Likewise.
5151         (*call_value_reg_arm): Likewise.
5152         (*call_symbol): Likewise.
5153         (*call_value_symbol): Likewise.
5154         (*sibcall_insn): Likewise.
5155         (*sibcall_value_insn): Likewise.
5156         (clzsi2): Likewise.
5157         (prefetch): Likewise.
5158         (define_split and define_peephole2 dependent on arm_arch5):
5159         Likewise.
5160         * config/arm/arm.h (TARGET_LDRD): Use arm_arch5te instead of
5161         arm_arch5e.
5162         (TARGET_ARM_QBIT): Likewise.
5163         (TARGET_DSP_MULTIPLY): Likewise.
5164         (enum base_architecture): Delete BASE_ARCH_5, BASE_ARCH_5E.
5165         (arm_arch5, arm_arch5e): Delete.
5166         (arm_arch5t, arm_arch5te): Declare.
5167         * config/arm/arm.c (arm_arch5, arm_arch5e): Delete.
5168         (arm_arch5t): Declare.
5169         (arm_option_reconfigure_globals): Update for the above.
5170         (arm_options_perform_arch_sanity_checks): Update comment, replace
5171         use of arm_arch5 with arm_arch5t.
5172         (use_return_insn): Likewise.
5173         (arm_emit_call_insn): Likewise.
5174         (output_return_instruction): Likewise.
5175         (arm_final_prescan_insn): Likewise.
5176         (arm_coproc_builtin_available): Likewise.
5177         * config/arm/arm-c.c (arm_cpu_builtins): Replace arm_arch5 and
5178         arm_arch5e with arm_arch5t and arm_arch5te.
5179         * config/arm/arm-protos.h (arm_arch5, arm_arch5e): Delete.
5180         (arm_arch5t, arm_arch5te): Declare.
5181         * config/arm/arm-tables.opt: Regenerate.
5182         * config/arm/t-arm-elf: Remove references to armv5, armv5e.
5183         * config/arm/t-multilib: Likewise.
5184         * config/arm/thumb1.md (*call_reg_thumb1_v5): Check arm_arch5t
5185         instead of arm_arch5.
5186         (*call_reg_thumb1): Likewise.
5187         (*call_value_reg_thumb1_v5): Likewise.
5188         (*call_value_reg_thumb1): Likewise.
5189         * config/arm/vxworks.h (TARGET_OS_CPP_BUILTINS): Remove now
5190         unreachable path.
5191         * doc/invoke.texi (ARM Options): Remove references to armv5, armv5e.
5193 2018-05-18  Martin Liska  <mliska@suse.cz>
5195         PR gcov-profile/84846
5196         * doc/gcov.texi: Document -t option of gcov tool.
5198 2018-05-18  Martin Liska  <mliska@suse.cz>
5200         PR gcov-profile/84846
5201         * gcov.c (print_usage): Add new -t option.
5202         (process_args): Handle the option.
5203         (generate_results): Use stdout as output when requested by
5204         the option.
5206 2018-05-18  Martin Liska  <mliska@suse.cz>
5208         PR gcov-profile/84846
5209         * coverage.c (coverage_init): Write PWD to .gcno file.
5210         * doc/gcov.texi: Document how working directory is printed.
5211         * gcov-dump.c (dump_gcov_file): Print PWD.
5212         * gcov.c (output_intermediate_file): Likewise.
5213         (read_graph_file): Read PWD string.
5214         (output_lines): Print PWD.
5216 2018-05-18  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
5218         PR middle-end/85817
5219         * ipa-pure-const.c (malloc_candidate_p): Remove the check integer_zerop
5220         for retval and return false if all args to phi are zero.
5222 2018-05-18  Richard Biener  <rguenther@suse.de>
5224         * gimple-ssa-evrp.c (class evrp_folder): Add simplify_stmt_using_ranges
5225         method.
5226         (evrp_dom_walker::before_dom_children): Call it.
5228 2018-05-18  Richard Biener  <rguenther@suse.de>
5230         * tree-dfa.c (get_ref_base_and_extent): Use range-info to refine
5231         results when processing array refs with variable index.
5233 2018-05-18  Toon Moene  <toon@moene.org>
5235         * doc/invoke.texi: Move -floop-unroll-and-jam documentation
5236         directly after that of -floop-interchange. Indicate that both
5237         options are enabled by default when specifying -O3.
5239 2018-05-18  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5241         * config/aarch64/aarch64-simd.md (vec_set<mode>): Use VALL_F16 mode
5242         iterator.  Delete separate integer-mode vec_set<mode> expander.
5243         (aarch64_simd_vec_setv2di): Delete.
5244         (vec_setv2di): Delete.
5245         (aarch64_simd_vec_set<mode>): Delete all other patterns with that name.
5246         Use VALL_F16 mode iterator.  Add LD1 alternative and use vwcore for
5247         the "w, r" alternative.
5249 2018-05-18  Martin Liska  <mliska@suse.cz>
5251         * passes.def: Add pass_lower_switch and pass_lower_switch_O0.
5252         * tree-pass.h (make_pass_lower_switch_O0): New function.
5253         * tree-switch-conversion.c (node_has_low_bound): Remove.
5254         (node_has_high_bound): Likewise.
5255         (node_is_bounded): Likewise.
5256         (class pass_lower_switch): Make it a template type and create
5257         two instances.
5258         (pass_lower_switch::execute): Add template argument.
5259         (make_pass_lower_switch): New function.
5260         (make_pass_lower_switch_O0): New function.
5261         (do_jump_if_equal): Remove.
5262         (emit_case_nodes): Simplify to just handle all 3 cases and leave
5263         all the hard work to tree optimization passes.
5265 2018-05-18  Martin Liska  <mliska@suse.cz>
5267         * dbgcnt.c (limit_low): Renamed from limit.
5268         (limit_high): New variable.
5269         (dbg_cnt_is_enabled): Check for upper limit.
5270         (dbg_cnt): Adjust dumping.
5271         (dbg_cnt_set_limit_by_index): Add new argument for high
5272         value.
5273         (dbg_cnt_set_limit_by_name): Likewise.
5274         (dbg_cnt_process_single_pair): Parse new format.
5275         (dbg_cnt_process_opt): Use strtok.
5276         (dbg_cnt_list_all_counters): Remove 'value' and add
5277         'limit_high'.
5278         * doc/invoke.texi: Document changes.
5280 2018-05-18  Richard Sandiford  <richard.sandiford@linaro.org>
5282         * doc/sourcebuild.texi (scalar_all_fma): Document.
5283         * tree.def (FMA_EXPR): Delete.
5284         * internal-fn.def (FMA, FMS, FNMA, FNMS): New internal functions.
5285         * internal-fn.c (ternary_direct): New macro.
5286         (expand_ternary_optab_fn): Likewise.
5287         (direct_ternary_optab_supported_p): Likewise.
5288         * Makefile.in (build/genmatch.o): Depend on case-fn-macros.h.
5289         * builtins.c (fold_builtin_fma): Delete.
5290         (fold_builtin_3): Don't call it.
5291         * cfgexpand.c (expand_debug_expr): Remove FMA_EXPR handling.
5292         * expr.c (expand_expr_real_2): Likewise.
5293         * fold-const.c (operand_equal_p): Likewise.
5294         (fold_ternary_loc): Likewise.
5295         * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
5296         * gimple.c (DEFTREECODE): Likewise.
5297         * gimplify.c (gimplify_expr): Likewise.
5298         * optabs-tree.c (optab_for_tree_code): Likewise.
5299         * tree-cfg.c (verify_gimple_assign_ternary): Likewise.
5300         * tree-eh.c (operation_could_trap_p): Likewise.
5301         (stmt_could_throw_1_p): Likewise.
5302         * tree-inline.c (estimate_operator_cost): Likewise.
5303         * tree-pretty-print.c (dump_generic_node): Likewise.
5304         (op_code_prio): Likewise.
5305         * tree-ssa-loop-im.c (stmt_cost): Likewise.
5306         * tree-ssa-operands.c (get_expr_operands): Likewise.
5307         * tree.c (commutative_ternary_tree_code, add_expr): Likewise.
5308         * fold-const-call.h (fold_fma): Delete.
5309         * fold-const-call.c (fold_const_call_ssss): Handle CFN_FMS,
5310         CFN_FNMA and CFN_FNMS.
5311         (fold_fma): Delete.
5312         * genmatch.c (combined_fn): New enum.
5313         (commutative_ternary_tree_code): Remove FMA_EXPR handling.
5314         (commutative_op): New function.
5315         (commutate): Use it.  Handle more than 2 operands.
5316         (dt_operand::gen_gimple_expr): Use commutative_op.
5317         (parser::parse_expr): Allow :c to be used with non-binary
5318         operators if the commutative operand is known.
5319         * gimple-ssa-backprop.c (backprop::process_builtin_call_use): Handle
5320         CFN_FMS, CFN_FNMA and CFN_FNMS.
5321         (backprop::process_assign_use): Remove FMA_EXPR handling.
5322         * hsa-gen.c (gen_hsa_insns_for_operation_assignment): Likewise.
5323         (gen_hsa_fma): New function.
5324         (gen_hsa_insn_for_internal_fn_call): Use it for IFN_FMA, IFN_FMS,
5325         IFN_FNMA and IFN_FNMS.
5326         * match.pd: Add folds for IFN_FMS, IFN_FNMA and IFN_FNMS.
5327         * gimple-fold.h (follow_all_ssa_edges): Declare.
5328         * gimple-fold.c (follow_all_ssa_edges): New function.
5329         * tree-ssa-math-opts.c (convert_mult_to_fma_1): Use the
5330         gimple_build interface and use follow_all_ssa_edges to fold the result.
5331         (convert_mult_to_fma): Use direct_internal_fn_suppoerted_p
5332         instead of checking for optabs directly.
5333         * config/i386/i386.c (ix86_add_stmt_cost): Recognize FMAs as calls
5334         rather than FMA_EXPRs.
5335         * config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Create a
5336         call to IFN_FMA instead of an FMA_EXPR.
5338 2018-05-17  Jim Wilson  <jimw@sifive.com>
5340         * expr.c (do_tablejump): When converting index to Pmode, if we have a
5341         sign extended promoted subreg, and the range does not have the sign bit
5342         set, then do a sign extend.
5344         * config/riscv/riscv.c (riscv_extend_comparands): In unsigned QImode
5345         test, check for sign extended subreg and/or constant operands, and
5346         do a sign extend in that case.
5348 2018-05-17  Steve Ellcey  <sellcey@cavium.com>
5350         * config/aarch64/thunderx2t99.md (thunderx2t99_ls_both): Delete.
5351         (thunderx2t99_multiple): Delete psuedo-units from used cpus.
5352         Add untyped.
5353         (thunderx2t99_alu_shift): Remove alu_shift_reg, alus_shift_reg.
5354         Change logics_shift_reg to logics_shift_imm.
5355         (thunderx2t99_fp_loadpair_basic): Delete.
5356         (thunderx2t99_fp_storepair_basic): Delete.
5357         (thunderx2t99_asimd_int): Add neon_sub and neon_sub_q types.
5358         (thunderx2t99_asimd_polynomial): Delete.
5359         (thunderx2t99_asimd_fp_simple): Add neon_fp_mul_s_scalar_q
5360         and neon_fp_mul_d_scalar_q.
5361         (thunderx2t99_asimd_fp_conv): Add *int_to_fp* types.
5362         (thunderx2t99_asimd_misc): Delete neon_dup and neon_dup_q.
5363         (thunderx2t99_asimd_recip_step): Add missing *sqrt* types.
5364         (thunderx2t99_asimd_lut): Add missing tbl types.
5365         (thunderx2t99_asimd_ext): Delete.
5366         (thunderx2t99_asimd_load1_1_mult): Delete.
5367         (thunderx2t99_asimd_load1_2_mult): Delete.
5368         (thunderx2t99_asimd_load1_ldp): New.
5369         (thunderx2t99_asimd_load1): New.
5370         (thunderx2t99_asimd_load2): Add missing *load2* types.
5371         (thunderx2t99_asimd_load3): New.
5372         (thunderx2t99_asimd_load4): New.
5373         (thunderx2t99_asimd_store1_1_mult): Delete.
5374         (thunderx2t99_asimd_store1_2_mult): Delete.
5375         (thunderx2t99_asimd_store2_mult): Delete.
5376         (thunderx2t99_asimd_store2_onelane): Delete.
5377         (thunderx2t99_asimd_store_stp): New.
5378         (thunderx2t99_asimd_store1): New.
5379         (thunderx2t99_asimd_store2): New.
5380         (thunderx2t99_asimd_store3): New.
5381         (thunderx2t99_asimd_store4): New.
5383 2018-05-17  Jerome Lambourg  <lambourg@adacore.com>
5385         * config/arm/arm_cmse.h (cmse_nsfptr_create, cmse_is_nsfptr): Remove
5386         #include <stdint.h>.  Replace intptr_t with __INTPTR_TYPE__.
5388 2018-05-17  Pat Haugen  <pthaugen@us.ibm.com>
5389             Segher Boessenkool  <segher@kernel.crashing.org>
5391         PR target/85698
5392         * config/rs6000/rs6000.c (rs6000_output_move_128bit): Check dest
5393         operand.
5395 2018-05-17  Richard Biener  <rguenther@suse.de>
5397         * tree-ssa-dse.c (dse_classify_store): Fix iterator increment
5398         for pruning loop and prune defs feeding only already visited PHIs.
5400 2018-05-17  Richard Biener  <rguenther@suse.de>
5402         * tree-ssa-sccvn.c (vn_reference_lookup_3): Improve memset handling.
5404 2018-05-17  Bin Cheng  <bin.cheng@arm.com>
5405             Richard Biener  <rguenther@suse.de>
5407         PR tree-optimization/85793
5408         * tree-vect-stmts.c (vectorizable_load): Handle 1 element-wise load
5409         for VMAT_ELEMENTWISE.
5411 2018-05-17  Richard Sandiford  <richard.sandiford@linaro.org>
5413         * internal-fn.h (lookup_internal_fn): Declare
5414         * internal-fn.c (lookup_internal_fn): New function.
5415         * gimple.c (gimple_build_call_from_tree): Handle calls to
5416         internal functions.
5417         * gimple-pretty-print.c (dump_gimple_call): Print "." before
5418         internal function names.
5419         * tree-pretty-print.c (dump_generic_node): Likewise.
5420         * tree-ssa-scopedtables.c (expr_hash_elt::print): Likewise.
5422 2018-05-17  Richard Sandiford  <richard.sandiford@linaro.org>
5424         * gimple-fold.h (gimple_build): Make the function forms take
5425         combined_fn rather than built_in_function.
5426         (gimple_simplify): Likewise.
5427         * gimple-match-head.c (gimple_simplify): Likewise.
5428         * gimple-fold.c (gimple_build): Likewise.
5429         * tree-vect-loop.c (get_initial_def_for_reduction): Use gimple_build
5430         rather than gimple_build_call_internal.
5431         (get_initial_defs_for_reduction): Likewise.
5432         (vect_create_epilog_for_reduction): Likewise.
5433         (vectorizable_live_operation): Likewise.
5435 2018-05-17  Martin Liska  <mliska@suse.cz>
5437         * gimple-ssa-sprintf.c (format_directive): Do not use
5438         space in between 'G_' and '('.
5440 2018-05-17  Jakub Jelinek  <jakub@redhat.com>
5442         PR target/85323
5443         * config/i386/i386.c (ix86_fold_builtin): Handle masked shifts
5444         even if the mask is not all ones.
5446         PR target/85323
5447         * config/i386/i386.c (ix86_fold_builtin): Fold shift builtins by
5448         vector.
5449         (ix86_gimple_fold_builtin): Likewise.
5451         PR target/85323
5452         * config/i386/i386.c: Include tree-vector-builder.h.
5453         (ix86_vector_shift_count): New function.
5454         (ix86_fold_builtin): Fold shift builtins by scalar count.
5455         (ix86_gimple_fold_builtin): Likewise.
5457         * config/i386/avx512fintrin.h (_mm512_set_epi16, _mm512_set_epi8,
5458         _mm512_setzero): New intrinsics.
5460 2018-05-17  James Greenhalgh  <james.greenhalgh@arm.com>
5461             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5463         * config/aarch64/aarch64.c (aarch64_expand_vector_init): Modify
5464         code generation for cases where splatting a value is not useful.
5465         * simplify-rtx.c (simplify_ternary_operation): Simplify
5466         vec_merge across a vec_duplicate and a paradoxical subreg forming
5467         a vector mode to a vec_concat.
5469 2018-05-17  Olga Makhotina  <olga.makhotina@intel.com>
5471         * config.gcc: Support "goldmont-plus".
5472         * config/i386/driver-i386.c (host_detect_local_cpu): Detect
5473         "goldmont-plus".
5474         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
5475         PROCESSOR_GOLDMONT_PLUS.
5476         * config/i386/i386.c (m_GOLDMONT_PLUS): Define.
5477         (processor_target_table): Add "goldmont-plus".
5478         (PTA_GOLDMONT_PLUS): Define.
5479         (ix86_lea_outperforms): Add TARGET_GOLDMONT_PLUS.
5480         (get_builtin_code_for_version): Handle PROCESSOR_GOLDMONT_PLUS.
5481         (fold_builtin_cpu): Add M_INTEL_GOLDMONT_PLUS.
5482         (fold_builtin_cpu): Add "goldmont-plus".
5483         (ix86_add_stmt_cost): Add TARGET_GOLDMONT_PLUS.
5484         (ix86_option_override_internal): Add "goldmont-plus".
5485         * config/i386/i386.h (processor_costs): Define TARGET_GOLDMONT_PLUS.
5486         (processor_type): Add PROCESSOR_GOLDMONT_PLUS.
5487         * config/i386/x86-tune.def: Add m_GOLDMONT_PLUS.
5488         * doc/invoke.texi: Add goldmont-plus as x86 -march=/-mtune= CPU type.
5490 2018-05-17  Richard Biener  <rguenther@suse.de>
5492         PR tree-optimization/85757
5493         * tree-ssa-dse.c (dse_classify_store): Record a PHI def and
5494         remove defs that only feed that PHI from further processing.
5496 2018-05-16  Jim Wilson  <jimw@sifive.com>
5498         * config/riscv/riscv.md (<optab>si3_mask, <optab>si3_mask_1): Prepend
5499         asterisk to name.
5500         (<optab>di3_mask, <optab>di3_mask_1): Likewise.
5502 2018-05-16  Mark Wielaard  <mark@klomp.org>
5504         * dwarf2out.c (count_index_strings): New function.
5505         (output_indirect_strings): Call count_index_strings and generate
5506         header for dwarf_version >= 5.
5508 2018-05-16  Mark Wielaard  <mark@klomp.org>
5510         * dwarf2out.c (dwarf_FORM): New function.
5511         (set_indirect_string): Use dwarf_FORM.
5512         (reset_indirect_string): Likewise.
5513         (size_of_die): Likewise.
5514         (value_format): Likewise.
5515         (output_die): Likewise.
5516         (add_skeleton_AT_string): Likewise.
5517         (output_macinfo_op): Likewise.
5518         (index_string): Likewise.
5519         (output_index_string_offset): Likewise.
5520         (output_index_string): Likewise.
5521         (count_index_strings): Likewise.
5523 2018-05-16  Carl Love  <cel@us.ibm.com>
5525         * config/rs6000/rs6000.md (prefetch): Generate ISA 2.06 instructions
5526         dcbt and dcbtstt with TH=16 if operands[2] is 0 and Power 8 or newer.
5528 2018-05-16  Martin Jambor  <mjambor@suse.cz>
5530         * ipa-prop.c (ipa_free_all_edge_args): Remove.
5531         * ipa-prop.h (ipa_free_all_edge_args): Likewise.
5533 2018-05-16  Wilco Dijkstra  <wdijkstr@arm.com>
5535         * config/aarch64/aarch64.md (fma<mode>4): Change into expand pattern.
5536         (fnma<mode>4): Likewise.
5537         (fms<mode>4): Likewise.
5538         (fnms<mode>4): Likewise.
5539         (aarch64_fma<mode>4): Rename insn, reorder accumulator operand.
5540         (aarch64_fnma<mode>4): Likewise.
5541         (aarch64_fms<mode>4): Likewise.
5542         (aarch64_fnms<mode>4): Likewise.
5543         (aarch64_fnmadd<mode>4): Likewise.
5545 2018-05-16  Jason Merrill  <jason@redhat.com>
5547         * tree.c (warn_deprecated_use): Return bool.  Simplify logic.
5549 2018-05-16  Richard Biener  <rguenther@suse.de>
5551         * tree-vectorizer.h (struct stmt_info_for_cost): Add where member.
5552         (dump_stmt_cost): Declare.
5553         (add_stmt_cost): Dump cost we add.
5554         (add_stmt_costs): New function.
5555         (vect_model_simple_cost, vect_model_store_cost, vect_model_load_cost):
5556         No longer exported.
5557         (vect_analyze_stmt): Adjust prototype.
5558         (vectorizable_condition): Likewise.
5559         (vectorizable_live_operation): Likewise.
5560         (vectorizable_reduction): Likewise.
5561         (vectorizable_induction): Likewise.
5562         * tree-vect-loop.c (vect_analyze_loop_operations): Create local
5563         cost vector to pass to vectorizable_ and record afterwards.
5564         (vect_model_reduction_cost): Take cost vector argument and adjust.
5565         (vect_model_induction_cost): Likewise.
5566         (vectorizable_reduction): Likewise.
5567         (vectorizable_induction): Likewise.
5568         (vectorizable_live_operation): Likewise.
5569         * tree-vect-slp.c (vect_create_new_slp_node): Initialize
5570         SLP_TREE_NUMBER_OF_VEC_STMTS.
5571         (vect_analyze_slp_cost_1): Remove.
5572         (vect_analyze_slp_cost): Likewise.
5573         (vect_slp_analyze_node_operations): Take visited args and
5574         a target cost vector.  Avoid processing already visited stmt sets.
5575         (vect_slp_analyze_operations): Use a local cost vector to gather
5576         costs and register those of non-discarded instances.
5577         (vect_bb_vectorization_profitable_p): Use add_stmt_costs.
5578         (vect_schedule_slp_instance): Remove copying of
5579         SLP_TREE_NUMBER_OF_VEC_STMTS.  Instead assert that it is not
5580         zero.
5581         * tree-vect-stmts.c (record_stmt_cost): Remove path directly
5582         adding cost.  Record cost entry location.
5583         (vect_prologue_cost_for_slp_op): Function to compute cost of
5584         a constant or invariant generated for SLP vect in the prologue,
5585         split out from vect_analyze_slp_cost_1.
5586         (vect_model_simple_cost): Make static.  Adjust for SLP costing.
5587         (vect_model_promotion_demotion_cost): Likewise.
5588         (vect_model_store_cost): Likewise, make static.
5589         (vect_model_load_cost): Likewise.
5590         (vectorizable_bswap): Add cost vector arg and adjust.
5591         (vectorizable_call): Likewise.
5592         (vectorizable_simd_clone_call): Likewise.
5593         (vectorizable_conversion): Likewise.
5594         (vectorizable_assignment): Likewise.
5595         (vectorizable_shift): Likewise.
5596         (vectorizable_operation): Likewise.
5597         (vectorizable_store): Likewise.
5598         (vectorizable_load): Likewise.
5599         (vectorizable_condition): Likewise.
5600         (vectorizable_comparison): Likewise.
5601         (can_vectorize_live_stmts): Likewise.
5602         (vect_analyze_stmt): Likewise.
5603         (vect_transform_stmt): Adjust calls to vectorizable_*.
5604         * tree-vectorizer.c: Include gimple-pretty-print.h.
5605         (dump_stmt_cost): New function.
5607 2018-05-16  Richard Biener  <rguenther@suse.de>
5609         * params.def (PARAM_DSE_MAX_ALIAS_QUERIES_PER_STORE): New param.
5610         * doc/invoke.texi (dse-max-alias-queries-per-store): Document.
5611         * tree-ssa-dse.c: Include tree-ssa-loop.h.
5612         (check_name): New callback.
5613         (dse_classify_store): Track cycles via a visited bitmap of PHI
5614         defs and simplify handling of in-loop and across loop dead stores
5615         and properly fail for loop-variant refs.  Handle byte-tracking with
5616         multiple defs.  Use PARAM_DSE_MAX_ALIAS_QUERIES_PER_STORE for
5617         limiting the walk.
5619 2018-05-16  Richard Sandiford  <richard.sandiford@linaro.org>
5621         * tree-vectorizer.h (vect_get_vector_types_for_stmt): Declare.
5622         (vect_get_mask_type_for_stmt): Likewise.
5623         * tree-vect-slp.c (vect_two_operations_perm_ok_p): New function,
5624         split out from...
5625         (vect_build_slp_tree_1): ...here.  Use vect_get_vector_types_for_stmt
5626         to determine the statement's vector type and the vector type that
5627         should be used for calculating nunits.  Deal with cases in which
5628         the type has to be deferred.
5629         (vect_slp_analyze_node_operations): Use vect_get_vector_types_for_stmt
5630         and vect_get_mask_type_for_stmt to calculate STMT_VINFO_VECTYPE.
5631         * tree-vect-loop.c (vect_determine_vf_for_stmt_1)
5632         (vect_determine_vf_for_stmt): New functions, split out from...
5633         (vect_determine_vectorization_factor): ...here.
5634         * tree-vect-stmts.c (vect_get_vector_types_for_stmt)
5635         (vect_get_mask_type_for_stmt): New functions, split out from
5636         vect_determine_vectorization_factor.
5638 2018-05-16  Richard Biener  <rguenther@suse.de>
5640         * tree-cfg.c (verify_gimple_assign_ternary): Properly
5641         verify the [VEC_]COND_EXPR embedded comparison.
5643 2018-05-15  Martin Sebor  <msebor@redhat.com>
5645         PR tree-optimization/85753
5646         * gimple-ssa-warn-restrict.c (builtin_memref::builtin_memref): Handle
5647         RECORD_TYPE in addition to ARRAY_TYPE.
5649 2018-05-15  Martin Sebor  <msebor@redhat.com>
5651         PR middle-end/85643
5652         * calls.c (get_attr_nonstring_decl): Handle MEM_REF.
5654 2018-05-15  Richard Biener  <rguenther@suse.de>
5656         * tree-ssa-dse.c (dse_classify_store): Remove use_stmt parameter,
5657         add by_clobber_p one.  Change algorithm to collect all defs
5658         representing uses we need to walk and try reducing them to
5659         a single one before failing.
5660         (dse_dom_walker::dse_optimize_stmt): Adjust.
5662 2018-05-13  Mark Wielaard  <mark@klomp.org>
5664         * dwarf2out.c (dwarf_OP): Handle DW_OP_addrx and DW_OP_constx.
5665         (size_of_loc_descr): Likewise.
5666         (output_loc_operands): Likewise.
5667         (output_loc_operands_raw): Likewise.
5668         (dw_addr_op): Use dwarf_OP () for DW_OP_constx and DW_OP_addrx.
5669         (resolve_addr_in_expr): Handle DW_OP_addrx and DW_OP_constx.
5670         (hash_loc_operands): Likewise.
5671         (compare_loc_operands): Likewise.
5673 2018-05-14  Mark Wielaard  <mark@klomp.org>
5675         * dwarf2out.c (count_index_addrs): New function.
5676         (dwarf2out_finish): Use count_index_addrs to calculate addrs_length.
5678 2018-05-15  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
5680         PR tree-optimization/83648
5681         * ipa-pure-const.c (malloc_candidate_p): Allow function with NULL
5682         return value as malloc candidate.
5684 2018-05-15  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
5686         PR ipa/85734
5687         * ipa-pure-const.c (warn_function_malloc): Pass value of known_finite
5688         param as true in call to suggest_attribute.
5690 2018-05-14  Segher Boessenkool  <segher@kernel.crashing.org>
5692         * doc/invoke.texi (RS/6000 and PowerPC Options): Delete @itemx for
5693         -mreadonly-in-sdata.
5695 2018-05-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
5697         * config/aarch64/aarch64-simd.md (*aarch64_crypto_aese_fused):
5698         New pattern.
5699         (aarch64_crypto_aesd_fused): Likewise.
5701 2018-05-14  Wilco Dijkstra  <wdijkstr@arm.com>
5703         * config/aarch64/aarch64.md (mov<mode>): Remove '*' in alternatives.
5704         (movsi_aarch64): Likewise.
5705         (load_pairsi): Likewise.
5706         (load_pairdi): Likewise.
5707         (store_pairsi): Likewise.
5708         (store_pairdi): Likewise.
5709         (load_pairsf): Likewise.
5710         (load_pairdf): Likewise.
5711         (store_pairsf): Likewise.
5712         (store_pairdf): Likewise.
5713         (zero_extend): Likewise.
5714         (trunc): Swap alternatives.
5715         (fcvt_target): Add '?' to prefer w over r.
5717 2018-05-14  Jakub Jelinek  <jakub@redhat.com>
5719         PR target/85756
5720         * config/i386/i386.md: Disallow non-commutative arithmetics in
5721         last twpeephole for mem {+,-,&,|,^}= x; mem != 0 after cmpelim
5722         optimization.  Use COMMUTATIVE_ARITH_P test rather than != MINUS
5723         in the peephole2 before it.
5725 2018-05-14  Sebastian Peryt  <sebastian.peryt@intel.com>
5727         * common/config/i386/i386-common.c (OPTION_MASK_ISA_CLDEMOTE_SET,
5728         OPTION_MASK_ISA_CLDEMOTE_UNSET): New defines.
5729         (ix86_handle_option): Handle -mcldemote.
5730         * config.gcc: New header.
5731         * config/i386/cldemoteintrin.h: New file.
5732         * config/i386/cpuid.h (bit_CLDEMOTE): New bit.
5733         * config/i386/driver-i386.c (host_detect_local_cpu): Detect
5734         -mcldemote.
5735         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
5736         OPTION_MASK_ISA_CLDEMOTE.
5737         * config/i386/i386.c (ix86_target_string): Add -mcldemote.
5738         (ix86_valid_target_attribute_inner_p): Ditto.
5739         (enum ix86_builtins): Add IX86_BUILTIN_CLDEMOTE.
5740         (ix86_init_mmx_sse_builtins): Define __builtin_ia32_cldemote.
5741         (ix86_expand_builtin): Expand IX86_BUILTIN_CLDEMOTE.
5742         * config/i386/i386.h (TARGET_CLDEMOTE, TARGET_CLDEMOTE_P): New.
5743         * config/i386/i386.md (UNSPECV_CLDEMOTE): New.
5744         (cldemote): New.
5745         * config/i386/i386.opt: Add -mcldemote.
5746         * config/i386/x86intrin.h: New header.
5747         * doc/invoke.texi: Add -mcldemote.
5749 2018-05-14  Richard Biener  <rguenther@suse.de>
5751         * doc/match-and-simplify.texi: Adjust :s documentation.
5753 2018-05-14  Alexander Monakov  <amonakov@ispras.ru>
5755         * sort.cc (REORDER_23): Pass the type for the temporaries instead of
5756         intended memcpy size.
5757         (REORDER_45): Likewise.
5759 2018-05-13  Alexander Monakov  <amonakov@ispras.ru>
5761         * sort.cc: New file.
5762         * system.h [!CHECKING_P] (qsort): Redirect to gcc_qsort.
5763         * vec.c (qsort_chk): Use gcc_qsort.
5764         * Makefile.in (OBJS-libcommon): Add sort.o.
5765         (build/sort.o): New target.  Use it...
5766         (BUILD_RTL): ... here, and...
5767         (build/gencfn-macros): ... here, and...
5768         (build/genmatch): ... here.
5770 2018-05-13  Kito Cheng  <kito.cheng@gmail.com>
5771             Chung-Ju Wu  <jasonwucj@gmail.com>
5773         * config.gcc (nds32*-*-*): Check that n15 is valid to --with-cpu.
5774         * config/nds32/nds32-graywolf.md: New file.
5775         * config/nds32/nds32-opts.h (nds32_cpu_type): Add CPU_GRAYWOLF.
5776         * config/nds32/nds32-pipelines-auxiliary.c: Implementation for n15
5777         pipeline.
5778         * config/nds32/nds32-protos.h: More declarations for n15 pipeline.
5779         * config/nds32/nds32-utils.c: More implementations for n15 pipeline.
5780         * config/nds32/nds32.md (pipeline_model): Add graywolf.
5781         * config/nds32/nds32.opt (mcpu): Support n15 pipeline cpus.
5782         * config/nds32/pipelines.md: Include n15 settings.
5784 2018-05-13  Kito Cheng  <kito.cheng@gmail.com>
5785             Chung-Ju Wu  <jasonwucj@gmail.com>
5787         * config.gcc (nds32*-*-*): Check that n12/n13 are valid to --with-cpu.
5788         * config/nds32/nds32-n13.md: New file.
5789         * config/nds32/nds32-opts.h (nds32_cpu_type): Add CPU_N12 and CPU_N13.
5790         * config/nds32/nds32-pipelines-auxiliary.c: Implementation for n12/n13
5791         pipeline.
5792         * config/nds32/nds32-protos.h: More declarations for n12/n13 pipeline.
5793         * config/nds32/nds32.md (pipeline_model): Add n13.
5794         * config/nds32/nds32.opt (mcpu): Support n12/n13 pipeline cpus.
5795         * config/nds32/pipelines.md: Include n13 settings.
5797 2018-05-13  Kito Cheng  <kito.cheng@gmail.com>
5798             Chung-Ju Wu  <jasonwucj@gmail.com>
5800         * config.gcc (nds32*-*-*): Check that n10/d10 are valid to --with-cpu.
5801         * config/nds32/nds32-n10.md: New file.
5802         * config/nds32/nds32-opts.h (nds32_cpu_type): Add CPU_N10.
5803         * config/nds32/nds32-pipelines-auxiliary.c: Implementation for n10
5804         pipeline.
5805         * config/nds32/nds32-protos.h: More declarations for n10 pipeline.
5806         * config/nds32/nds32-utils.c: More implementations for n10 pipeline.
5807         * config/nds32/nds32.md (pipeline_model): Add n10.
5808         * config/nds32/nds32.opt (mcpu): Support n10 pipeline cpus.
5809         * config/nds32/pipelines.md: Include n10 settings.
5811 2018-05-13  Monk Chiang  <sh.chiang04@gmail.com>
5812             Kito Cheng  <kito.cheng@gmail.com>
5813             Chung-Ju Wu  <jasonwucj@gmail.com>
5815         * config.gcc (nds32be-*-*): Handle --with-ext-dsp.
5816         * config/nds32/constants.md (unspec_element, unspec_volatile_element):
5817         Add enum values for DSP extension instructions.
5818         * config/nds32/constraints.md (Iu06, IU06, CVp5, CVs5, CVs2, CVhi):
5819         New constraints.
5820         * config/nds32/iterators.md (shifts, shiftrt, sat_plus, all_plus,
5821         sat_minus, all_minus, plus_minus, extend, sumax, sumin, sumin_max):
5822         New code iterators.
5823         (su, zs, uk, opcode, add_rsub, add_sub): New code attributes.
5824         * config/nds32/nds32-dspext.md: New file for DSP implementation.
5825         * config/nds32/nds32-intrinsic.c: Implementation of DSP extension.
5826         * config/nds32/nds32-intrinsic.md: Likewise.
5827         * config/nds32/nds32_intrinsic.h: Likewise.
5828         * config/nds32/nds32-md-auxiliary.c: Likewise.
5829         * config/nds32/nds32-memory-manipulation.c: Consider DSP extension.
5830         * config/nds32/nds32-predicates.c (const_vector_to_hwint): New.
5831         (nds32_valid_CVp5_p, nds32_valid_CVs5_p): New.
5832         (nds32_valid_CVs2_p, nds32_valid_CVhi_p): New.
5833         * config/nds32/nds32-protos.h: New declarations for DSP extension.
5834         * config/nds32/nds32-utils.c (extract_mac_non_acc_rtx): New case
5835         TYPE_DMAC in switch statement.
5836         * config/nds32/nds32.c: New checking and implementation for DSP
5837         extension instructions.
5838         * config/nds32/nds32.h: Likewise.
5839         * config/nds32/nds32.md: Likewise.
5840         * config/nds32/nds32.opt (mhw-abs, mext-dsp): New options.
5841         * config/nds32/predicates.md: Implement new predicates for DSP
5842         extension.
5844 2018-05-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
5846         * config/rs6000/rs6000.md (mov<mode>_softfloat, FMOVE32):
5847         Reformat alternatives and attributes so it is easier to identify
5848         which constraints/attributes go with which instruction.
5849         (mov<mode>_hardfloat32, FMOVE64): Likewise.
5850         (mov<mode>_softfloat32, FMOVE64): Likewise.
5851         (mov<mode>_hardfloat64, FMOVE64): Likewise.
5852         (mov<mode>_softfloat64, FMOVE64): Likewise.
5854 2018-05-11  Kelvin Nilsen  <kelvin@gcc.gnu.org>
5856         * doc/extend.texi (PowerPC Built-in Functions): Rename this
5857         subsection.
5858         (Basic PowerPC Built-in Functions): The new name of the
5859         subsection previously known as "PowerPC Built-in Functions".
5860         (Basic PowerPC Built-in Functions Available on all Configurations):
5861         New subsubsection.
5862         (Basic PowerPC Built-in Functions Available on ISA 2.05): Likewise.
5863         (Basic PowerPC Built-in Functions Available on ISA 2.06): Likewise.
5864         (Basic PowerPC Built-in Functions Available on ISA 2.07): Likewise.
5865         (Basic PowerPC Built-in Functions Available on ISA 3.0): Likewise.
5867 2018-05-11  Martin Jambor  <mjambor@suse.cz>
5869         PR ipa/85655
5870         * ipa-cp.c (intersect_with_plats): Check that the lattice contains
5871         single const.
5873 2018-05-11  Richard Earnshaw  <rearnsha@arm.com>
5875         PR target/85733
5876         * config/arm/arm-cpus.in (fgroup ARMv6m): Add be8 feature.
5878 2018-05-11  Sebastian Peryt  <sebastian.peryt@intel.com>
5880         * common/config/i386/i386-common.c (OPTION_MASK_ISA_WAITPKG_SET,
5881         OPTION_MASK_ISA_WAITPKG_UNSET): New defines.
5882         (ix86_handle_option): Handle -mwaitpkg.
5883         * config.gcc: New header.
5884         * config/i386/cpuid.h (bit_WAITPKG): New bit.
5885         * config/i386/driver-i386.c (host_detect_local_cpu): Detect -mwaitpkg.
5886         * config/i386/i386-builtin-types.def ((UINT8, UNSIGNED, UINT64)): New
5887         function type.
5888         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
5889         OPTION_MASK_ISA_WAITPKG.
5890         * config/i386/i386.c (ix86_target_string): Add -mwaitpkg.
5891         (ix86_option_override_internal): Add PTA_WAITPKG.
5892         (ix86_valid_target_attribute_inner_p): Add -mwaitpkg.
5893         (enum ix86_builtins): Add IX86_BUILTIN_UMONITOR, IX86_BUILTIN_UMWAIT,
5894         IX86_BUILTIN_TPAUSE.
5895         (ix86_init_mmx_sse_builtins): Define __builtin_ia32_umonitor,
5896         __builtin_ia32_umwait and __builtin_ia32_tpause.
5897         (ix86_expand_builtin): Expand IX86_BUILTIN_UMONITOR,
5898         IX86_BUILTIN_UMWAIT, IX86_BUILTIN_TPAUSE.
5899         * config/i386/i386.h (TARGET_WAITPKG, TARGET_WAITPKG_P): New.
5900         * config/i386/i386.md (UNSPECV_UMWAIT, UNSPECV_UMONITOR,
5901         UNSPECV_TPAUSE): New.
5902         (umwait, umwait_rex64, umonitor_<mode>, tpause, tpause_rex64): New.
5903         * config/i386/i386.opt: Add -mwaitpkg.
5904         * config/i386/waitpkgintrin.h: New file.
5905         * config/i386/x86intrin.h: New header.
5906         * doc/invoke.texi: Add -mwaitpkg.
5908 2018-05-11  Richard Earnshaw  <rearnsha@arm.com>
5910         PR target/85606
5911         * config/arm/arm-cpus.in: Add comment that ARMv6-m and ARMv6S-m are now
5912         equivalent.
5913         (cortex-m0): Use armv6s-m isa.
5914         (cortex-m0plus): Likewise.
5915         (cortex-m1): Likewise.
5916         (cortex-m0.small-multiply): Likewise.
5917         (cortex-m0plus.small-multiply): Likewise.
5918         (cortex-m1.small-multiply): Likewise.
5920 2018-05-11  Allan Sandfeld Jensen  <allan.jensen@qt.io>
5921             Jakub Jelinek  <jakub@redhat.com>
5923         PR tree-optimization/85692
5924         * tree-ssa-forwprop.c (simplify_vector_constructor): Try two
5925         source permute as well.
5927 2018-05-11  Martin Liska  <mliska@suse.cz>
5929         PR sanitizer/85556
5930         * doc/extend.texi: Document LLVM style format for no_sanitize
5931         attribute.
5933 2018-05-10  Michael Meissner  <meissner@linux.vnet.ibm.com>
5935         * config/rs6000/rs6000.c (mode_supports_dq_form): Rename
5936         mode_supports_vsx_dform_quad to mode_supports_dq_form.
5937         (mode_supports_vsx_dform_quad): Likewise.
5938         (mode_supports_vmx_dform): Move these functions to be next to the
5939         other mode_supports functions.
5940         (mode_supports_dq_form): Likewise.
5941         (quad_address_p): Change calls of mode_supports_vsx_dform_quad to
5942         mode_supports_dq_form.
5943         (reg_offset_addressing_ok_p): Likewise.
5944         (offsettable_ok_by_alignment): Likewise.
5945         (rs6000_legitimate_offset_address_p): Likewise.
5946         (legitimate_lo_sum_address_p): Likewise.
5947         (rs6000_legitimize_address): Likewise.
5948         (rs6000_legitimize_reload_address): Likewise.
5949         (rs6000_secondary_reload_inner): Likewise.
5950         (rs6000_preferred_reload_class): Likewise.
5951         (rs6000_output_move_128bit): Likewise.
5953 2018-05-10  Uros Bizjak  <ubizjak@gmail.com>
5955         * config/i386/i386.c (ix86_expand_builtin) <case IX86_BUILTIN_RDPID>:
5956         Generate SImode target register for null target.
5957         <case IX86_BUILTIN_XGETBV>: Ditto.
5958         <case IX86_BUILTIN_XSETBV>: Optimize LSHIFTRT generation.
5959         * config/i386/xsaveintrin.h (_xgetbv): Add missing return.
5961 2018-05-10  Carl Love  <cel@us.ibm.com>
5963         * config/rs6000/rs6000.md (prefetch): Generate ISA 2.06 instructions
5964         dcbtt and dcbtstt if operands[2] is 0.
5966 2018-05-10  Uros Bizjak  <ubizjak@gmail.com>
5968         PR target/85693
5969         * config/i386/sse.md (usadv64qi): New expander.
5971 2018-05-10  Segher Boessenkool  <segher@kernel.crashing.org>
5973         * config/rs6000/altivec.md (altivec_vmrghb, altivec_vmrghh,
5974         altivec_vmrghw, altivec_vmrglb, altivec_vmrglh, altivec_vmrglw): Remove
5975         -maltivec=be support.
5976         (vec_widen_umult_even_v16qi, vec_widen_smult_even_v16qi,
5977         vec_widen_umult_even_v8hi, vec_widen_smult_even_v8hi,
5978         vec_widen_umult_even_v4si, vec_widen_smult_even_v4si,
5979         vec_widen_umult_odd_v16qi, vec_widen_smult_odd_v16qi,
5980         vec_widen_umult_odd_v8hi, vec_widen_smult_odd_v8hi,
5981         vec_widen_umult_odd_v4si, vec_widen_smult_odd_v4si, altivec_vpkpx,
5982         altivec_vpks<VI_char>ss, altivec_vpks<VI_char>us,
5983         altivec_vpku<VI_char>us, altivec_vpku<VI_char>um, altivec_vsum2sws,
5984         altivec_vsumsws): Adjust.
5985         (altivec_vspltb *altivec_vspltb_internal, altivec_vsplth,
5986         *altivec_vsplth_internal, altivec_vspltw, *altivec_vspltw_internal,
5987         altivec_vspltsf, *altivec_vspltsf_internal): Remove -maltivec=be
5988         support.
5989         (altivec_vperm_<mode>, altivec_vperm_<mode>_uns,
5990         altivec_vupkhs<VU_char>, altivec_vupkls<VU_char>, altivec_vupkhpx,
5991         altivec_vupklpx, altivec_lvsl, altivec_lvsr): Adjust.
5992         (altivec_lve<VI_char>x): Delete expand.
5993         (*altivec_lve<VI_char>x_internal): Rename to...
5994         (altivec_lve<VI_char>x): ... this.
5995         (altivec_lvxl_<mode>): Delete expand.
5996         (*altivec_lvxl_<mode>_internal): Rename to ...
5997         (altivec_lvxl_<mode>): ... this.
5998         (altivec_stvxl_<mode>): Delete expand.
5999         (*altivec_stvxl_<mode>_internal): Rename to ...
6000         (altivec_stvxl_<mode>): ... this.
6001         (altivec_stve<VI_char>x): Delete expand.
6002         (*altivec_stve<VI_char>x_internal): Rename to ...
6003         (altivec_stve<VI_char>x): ... this.
6004         (doublee<mode>2, unsdoubleev4si2, doubleo<mode>2, unsdoubleov4si2,
6005         doubleh<mode>2, unsdoublehv4si2, doublel<mode>2, unsdoublelv4si2,
6006         reduc_plus_scal_<mode>): Adjust.
6007         * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Adjust
6008         comment.
6009         (rs6000_cpu_cpp_builtins): Adjust.
6010         (altivec_resolve_overloaded_builtin): Remove -maltivec=be support.
6011         * config/rs6000/rs6000-protos.h (altivec_expand_lvx_be,
6012         altivec_expand_stvx_be, altivec_expand_stvex_be): Delete.
6013         * config/rs6000/rs6000.c (rs6000_option_override_internal): Remove
6014         -maltivec=be support.
6015         (rs6000_split_vec_extract_var): Adjust.
6016         (rs6000_split_v4si_init): Adjust.
6017         (swap_selector_for_mode): Delete.
6018         (altivec_expand_lvx_be, altivec_expand_stvx_be,
6019         altivec_expand_stvex_be): Delete.
6020         (altivec_expand_lv_builtin, altivec_expand_stv_builtin): Remove
6021         -maltivec=be support.
6022         (rs6000_gimple_fold_builtin): Ditto.
6023         (rs6000_generate_float2_double_code, rs6000_generate_float2_code):
6024         Adjust.
6025         * config/rs6000/rs6000.h (VECTOR_ELT_ORDER_BIG): Delete.
6026         (TARGET_DIRECT_MOVE_64BIT): Adjust.
6027         * config/rs6000/rs6000.md (split for extendsidi2 for vectors): Adjust.
6028         * config/rs6000/rs6000.opt (maltivec=le, maltivec=be): Delete.
6029         * config/rs6000/vsx.md (floate<mode>, unsfloatev2di, floato<mode>,
6030         unsfloatov2di, vsignedo_v2df, vsignede_v2df, vunsignedo_v2df,
6031         vunsignede_v2df, vsx_extract_<mode>_p9, *vsx_extract_si,
6032         *vsx_extract_<mode>_p8, *vsx_extract_si_<uns>float_df,
6033         *vsx_extract_si_<uns>float_<mode>, vsx_set_<mode>_p9, vsx_set_v4sf_p9,
6034         *vsx_insert_extract_v4sf_p9, *vsx_insert_extract_v4sf_p9_2, and an
6035         anonymous split): Adjust.
6036         (vsx_mergel_<mode>, vsx_mergeh_<mode>): Remove -maltivec=be support.
6037         (vsx_xxspltd_<mode>, extract4b, insert4b): Adjust.
6039 2018-05-10  Eric Botcazou  <ebotcazou@adacore.com>
6041         * configure.ac (gcc_gxx_include_dir_add_sysroot): Set it to 1 only
6042         when --with-gxx-include-dir is also specified.
6043         * configure: Regenerate.
6045 2018-05-09  Jim Wilson  <jimw@sifive.com>
6047         PR target/84797
6048         * config.gcc (riscv*-*-*): Handle --with-multilib-list.
6049         * config/riscv/t-withmultilib: New.
6050         * config/riscv/withmultilib.h: New.
6051         * doc/install.texi: Document RISC-V --with-multilib-list support.
6053 2018-05-09  Richard Biener  <rguenther@suse.de>
6055         * tree-vect-slp.c (vect_bb_slp_scalar_cost): Fill a cost
6056         vector.
6057         (vect_bb_vectorization_profitable_p): Adjust.  Compute
6058         actual scalar cost using the cost vector and the add_stmt_cost
6059         machinery.
6061 2018-05-09  Segher Boessenkool  <segher@kernel.crashing.org>
6063         PR rtl-optimization/85645
6064         * config/rs6000/rs6000.c (rs6000_emit_prologue_components): Put a SET
6065         in the REG_CFA_REGISTER note for LR, don't leave it empty.
6067 2018-05-09  Segher Boessenkool  <segher@kernel.crashing.org>
6069         PR rtl-optimization/85645
6070         * shrink-wrap.c (spread_components): Return a boolean saying if
6071         anything was changed.
6072         (try_shrink_wrapping_separate): Iterate spread_components until
6073         nothing changes anymore.
6075 2018-05-09  Segher Boessenkool  <segher@kernel.crashing.org>
6077         PR rtl-optimization/85645
6078         * regrename.c (build_def_use): Also kill the chains that include the
6079         destination of a REG_CFA_REGISTER note.
6081 2018-05-09  Segher Boessenkool  <segher@kernel.crashing.org>
6083         PR rtl-optimization/85645
6084         *  regcprop.c (copyprop_hardreg_forward_1): Don't propagate into an
6085         insn that has a REG_CFA_REGISTER note.
6087 2018-05-09  Richard Sandiford  <richard.sandiford@linaro.org>
6089         * cfgexpand.c (expand_clobber): New function.
6090         (expand_gimple_stmt_1): Use it.
6091         * tree-vect-stmts.c (vect_clobber_variable): New function,
6092         split out from...
6093         (vectorizable_simd_clone_call): ...here.
6094         (vectorizable_store): Emit a clobber either side of an
6095         IFN_STORE_LANES sequence.
6096         (vectorizable_load): Emit a clobber after an IFN_LOAD_LANES sequence.
6098 2018-05-09  Tom de Vries  <tom@codesourcery.com>
6100         PR target/85626
6101         * config/nvptx/nvptx.md (define_insn "trap", define_insn "trap_if_true")
6102         (define_insn "trap_if_false"): Add exit after trap.
6104 2018-05-09  Eric Botcazou  <ebotcazou@adacore.com>
6106         PR rtl-optimization/85638
6107         * bb-reorder.c: Include common/common-target.h.
6108         (create_forwarder_block): New function extracted from...
6109         (fix_up_crossing_landing_pad): ...here.  Rename into...
6110         (dw2_fix_up_crossing_landing_pad): ...this.
6111         (sjlj_fix_up_crossing_landing_pad): New function.
6112         (find_rarely_executed_basic_blocks_and_crossing_edges): In SJLJ mode,
6113         call sjlj_fix_up_crossing_landing_pad if there are incoming EH edges
6114         from both partitions and exit the loop after one iteration.
6116 2018-05-08  Kelvin Nilsen  <kelvin@gcc.gnu.org>
6118         Revert:
6119         * doc/extend.texi (PowerPC Built-in Functions): Rename this
6120         subsection.
6121         (Basic PowerPC Built-in Functions): The new name of the
6122         subsection previously known as "PowerPC Built-in Functions".
6123         (Basic PowerPC Built-in Functions Available on all Configurations):
6124         New subsubsection.
6125         (Basic PowerPC Built-in Functions Available on ISA 2.05): New
6126         subsubsection.
6127         (Basic PowerPC Built-in Functions Available on ISA 2.06): New
6128         subsubsection.
6129         (Basic PowerPC Built-in Functions Available on ISA 2.07): New
6130         subsubsection.
6131         (Basic PowerPC Built-in Functions Available on ISA 3.0): New
6132         subsubsection.
6134 2018-05-08  Jim Wilson  <jimw@sifive.com>
6136         * config/riscv/linux.h (MUSL_ABI_SUFFIX): Delete unnecessary backslash.
6137         (LD_EMUL_SUFFIX): New.
6138         (LINK_SPEC): Use it.
6140 2018-05-08  Kelvin Nilsen  <kelvin@gcc.gnu.org>
6142         * doc/extend.texi (PowerPC Built-in Functions): Rename this
6143         subsection.
6144         (Basic PowerPC Built-in Functions): The new name of the
6145         subsection previously known as "PowerPC Built-in Functions".
6146         (Basic PowerPC Built-in Functions Available on all Configurations):
6147         New subsubsection.
6148         (Basic PowerPC Built-in Functions Available on ISA 2.05): New
6149         subsubsection.
6150         (Basic PowerPC Built-in Functions Available on ISA 2.06): New
6151         subsubsection.
6152         (Basic PowerPC Built-in Functions Available on ISA 2.07): New
6153         subsubsection.
6154         (Basic PowerPC Built-in Functions Available on ISA 3.0): New
6155         subsubsection.
6157 2018-05-08  Jakub Jelinek  <jakub@redhat.com>
6159         PR target/85683
6160         * config/i386/i386.md: Add peepholes for mem {+,-,&,|,^}= x; mem != 0
6161         after cmpelim optimization.
6163 2018-05-08  Olga Makhotina  <olga.makhotina@intel.com>
6165         * config.gcc: Support "goldmont".
6166         * config/i386/driver-i386.c (host_detect_local_cpu): Detect "goldmont".
6167         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
6168         PROCESSOR_GOLDMONT.
6169         * config/i386/i386.c (m_GOLDMONT): Define.
6170         (processor_target_table): Add "goldmont".
6171         (PTA_GOLDMONT): Define.
6172         (ix86_lea_outperforms): Add TARGET_GOLDMONT.
6173         (get_builtin_code_for_version): Handle PROCESSOR_GOLDMONT.
6174         (fold_builtin_cpu): Add M_INTEL_GOLDMONT.
6175         (fold_builtin_cpu): Add "goldmont".
6176         (ix86_add_stmt_cost): Add TARGET_GOLDMONT.
6177         (ix86_option_override_internal): Add "goldmont".
6178         * config/i386/i386.h (processor_costs): Define TARGET_GOLDMONT.
6179         (processor_type): Add PROCESSOR_GOLDMONT.
6180         * config/i386/i386.md: Add CPU "glm".
6181         * config/i386/glm.md: New file.
6182         * config/i386/x86-tune.def: Add m_GOLDMONT.
6183         * doc/invoke.texi: Add goldmont as x86 -march=/-mtune= CPU type.
6185 2018-05-08  Jakub Jelinek  <jakub@redhat.com>
6187         PR target/85572
6188         * config/i386/i386.c (ix86_expand_sse2_abs): Handle E_V2DImode and
6189         E_V4DImode.
6190         * config/i386/sse.md (abs<mode>2): Use VI_AVX2 iterator instead of
6191         VI1248_AVX512VL_AVX512BW.  Handle V2DImode and V4DImode if not
6192         TARGET_AVX512VL using ix86_expand_sse2_abs.  Formatting fixes.
6194         PR target/85317
6195         * config/i386/i386.c (ix86_fold_builtin): Handle
6196         IX86_BUILTIN_{,P}MOVMSK{PS,PD,B}{,128,256}.
6198         PR target/85480
6199         * config/i386/sse.md (ssequaterinsnmode): New mode attribute.
6200         (*<extract_type>_vinsert<shuffletype><extract_suf>_0): New pattern.
6202 2018-05-08  Richard Earnshaw  <rearnsha@arm.com>
6204         PR target/85658
6205         * config/arm/parsecpu.awk (check_cpu): Fix operator precedence.
6206         (check_arch): Likewise.
6207         (check_fpu): Return the result rather than printing it.
6208         (end arch): Fix operator precedence.
6209         (end cpu): Likewise.
6210         (END): Print the result from check_fpu.
6212 2018-05-08  Richard Sandiford  <richard.sandiford@linaro.org>
6213             Alan Hayward  <alan.hayward@arm.com>
6214             David Sherwood  <david.sherwood@arm.com>
6216         * config/aarch64/aarch64-sve.md (*pred_cmp<cmp_op><mode>_combine)
6217         (*pred_cmp<cmp_op><mode>, *fcm<cmp_op><mode>_and_combine)
6218         (*fcmuo<mode>_and_combine, *fcm<cmp_op><mode>_and)
6219         (*fcmuo<mode>_and): New patterns.
6221 2018-05-08  Richard Sandiford  <richard.sandiford@linaro.org>
6223         * config/aarch64/iterators.md (UNSPEC_COND_LO, UNSPEC_COND_LS)
6224         (UNSPEC_COND_HI, UNSPEC_COND_HS, UNSPEC_COND_UO): Delete.
6225         (SVE_INT_CMP, SVE_FP_CMP): New code iterators.
6226         (cmp_op, sve_imm_con): New code attributes.
6227         (SVE_COND_INT_CMP, imm_con): Delete.
6228         (cmp_op): Remove above unspecs from int attribute.
6229         * config/aarch64/aarch64-sve.md (*vec_cmp<cmp_op>_<mode>): Rename
6230         to...
6231         (*cmp<cmp_op><mode>): ...this.  Use UNSPEC_MERGE_PTRUE instead of
6232         comparison-specific unspecs.
6233         (*vec_cmp<cmp_op>_<mode>_ptest): Rename to...
6234         (*cmp<cmp_op><mode>_ptest): ...this and adjust likewise.
6235         (*vec_cmp<cmp_op>_<mode>_cc): Rename to...
6236         (*cmp<cmp_op><mode>_cc): ...this and adjust likewise.
6237         (*vec_fcm<cmp_op><mode>): Rename to...
6238         (*fcm<cmp_op><mode>): ...this and adjust likewise.
6239         (*vec_fcmuo<mode>): Rename to...
6240         (*fcmuo<mode>): ...this and adjust likewise.
6241         (*pred_fcm<cmp_op><mode>): New pattern.
6242         * config/aarch64/aarch64.c (aarch64_emit_unop, aarch64_emit_binop)
6243         (aarch64_emit_sve_ptrue_op, aarch64_emit_sve_ptrue_op_cc): New
6244         functions.
6245         (aarch64_unspec_cond_code): Remove handling of LTU, GTU, LEU, GEU
6246         and UNORDERED.
6247         (aarch64_gen_unspec_cond, aarch64_emit_unspec_cond): Delete.
6248         (aarch64_emit_sve_predicated_cond): New function.
6249         (aarch64_expand_sve_vec_cmp_int): Use aarch64_emit_sve_ptrue_op_cc.
6250         (aarch64_emit_unspec_cond_or): Replace with...
6251         (aarch64_emit_sve_or_conds): ...this new function.  Use
6252         aarch64_emit_sve_ptrue_op for the individual comparisons and
6253         aarch64_emit_binop to OR them together.
6254         (aarch64_emit_inverted_unspec_cond): Replace with...
6255         (aarch64_emit_sve_inverted_cond): ...this new function.  Use
6256         aarch64_emit_sve_ptrue_op for the comparison and
6257         aarch64_emit_unop to invert the result.
6258         (aarch64_expand_sve_vec_cmp_float): Update after the above
6259         changes.  Use aarch64_emit_sve_ptrue_op for native comparisons.
6261 2018-05-07  Nathan Sidwell  <nathan@acm.org>
6263         * doc/invoke.texi (C++ Dialect Options): Remove -ffor-scope.
6264         * doc/extend.texi (Deprecated Features): Remove -fno-for-scope
6265         (Backwards Compatibility): Likewise.
6267 2018-05-07  Luis Machado  <luis.machado@linaro.org>
6269         PR bootstrap/85681
6270         Revert:
6271         2018-05-07  Luis Machado  <luis.machado@linaro.org>
6273         * config/aarch64/aarch64-protos.h (cpu_prefetch_tune)
6274         <prefetch_dynamic_strides>: New const bool field.
6275         * config/aarch64/aarch64.c (generic_prefetch_tune): Update to include
6276         prefetch_dynamic_strides.
6277         (exynosm1_prefetch_tune): Likewise.
6278         (thunderxt88_prefetch_tune): Likewise.
6279         (thunderx_prefetch_tune): Likewise.
6280         (thunderx2t99_prefetch_tune): Likewise.
6281         (qdf24xx_prefetch_tune): Likewise. Set prefetch_dynamic_strides
6282         to false.
6283         (aarch64_override_options_internal): Update to set
6284         PARAM_PREFETCH_DYNAMIC_STRIDES.
6285         * doc/invoke.texi (prefetch-dynamic-strides): Document new option.
6286         * params.def (PARAM_PREFETCH_DYNAMIC_STRIDES): New.
6287         * params.h (PARAM_PREFETCH_DYNAMIC_STRIDES): Define.
6288         * tree-ssa-loop-prefetch.c (should_issue_prefetch_p): Account for
6289         prefetch-dynamic-strides setting.
6291         2018-05-07  Luis Machado  <luis.machado@linaro.org>
6293         * config/aarch64/aarch64-protos.h (cpu_prefetch_tune)
6294         <minimum_stride>: New const int field.
6295         * config/aarch64/aarch64.c (generic_prefetch_tune): Update to include
6296         minimum_stride field.
6297         (exynosm1_prefetch_tune): Likewise.
6298         (thunderxt88_prefetch_tune): Likewise.
6299         (thunderx_prefetch_tune): Likewise.
6300         (thunderx2t99_prefetch_tune): Likewise.
6301         (qdf24xx_prefetch_tune): Likewise. Set minimum_stride to 2048.
6302         (aarch64_override_options_internal): Update to set
6303         PARAM_PREFETCH_MINIMUM_STRIDE.
6304         * doc/invoke.texi (prefetch-minimum-stride): Document new option.
6305         * params.def (PARAM_PREFETCH_MINIMUM_STRIDE): New.
6306         * params.h (PARAM_PREFETCH_MINIMUM_STRIDE): Define.
6307         * tree-ssa-loop-prefetch.c (should_issue_prefetch_p): Return false if
6308         stride is constant and is below the minimum stride threshold.
6310 2018-05-07  Luis Machado  <luis.machado@linaro.org>
6312         * config/aarch64/aarch64.c (qdf24xx_prefetch_tune) <l2_cache_size>: Set
6313         to 512.
6315 2018-05-07  Luis Machado  <luis.machado@linaro.org>
6317         * config/aarch64/aarch64-protos.h (cpu_prefetch_tune)
6318         <prefetch_dynamic_strides>: New const bool field.
6319         * config/aarch64/aarch64.c (generic_prefetch_tune): Update to include
6320         prefetch_dynamic_strides.
6321         (exynosm1_prefetch_tune): Likewise.
6322         (thunderxt88_prefetch_tune): Likewise.
6323         (thunderx_prefetch_tune): Likewise.
6324         (thunderx2t99_prefetch_tune): Likewise.
6325         (qdf24xx_prefetch_tune): Likewise. Set prefetch_dynamic_strides
6326         to false.
6327         (aarch64_override_options_internal): Update to set
6328         PARAM_PREFETCH_DYNAMIC_STRIDES.
6329         * doc/invoke.texi (prefetch-dynamic-strides): Document new option.
6330         * params.def (PARAM_PREFETCH_DYNAMIC_STRIDES): New.
6331         * params.h (PARAM_PREFETCH_DYNAMIC_STRIDES): Define.
6332         * tree-ssa-loop-prefetch.c (should_issue_prefetch_p): Account for
6333         prefetch-dynamic-strides setting.
6335 2018-05-07  Luis Machado  <luis.machado@linaro.org>
6337         * config/aarch64/aarch64-protos.h (cpu_prefetch_tune)
6338         <minimum_stride>: New const int field.
6339         * config/aarch64/aarch64.c (generic_prefetch_tune): Update to include
6340         minimum_stride field.
6341         (exynosm1_prefetch_tune): Likewise.
6342         (thunderxt88_prefetch_tune): Likewise.
6343         (thunderx_prefetch_tune): Likewise.
6344         (thunderx2t99_prefetch_tune): Likewise.
6345         (qdf24xx_prefetch_tune): Likewise. Set minimum_stride to 2048.
6346         (aarch64_override_options_internal): Update to set
6347         PARAM_PREFETCH_MINIMUM_STRIDE.
6348         * doc/invoke.texi (prefetch-minimum-stride): Document new option.
6349         * params.def (PARAM_PREFETCH_MINIMUM_STRIDE): New.
6350         * params.h (PARAM_PREFETCH_MINIMUM_STRIDE): Define.
6351         * tree-ssa-loop-prefetch.c (should_issue_prefetch_p): Return false if
6352         stride is constant and is below the minimum stride threshold.
6354 2018-05-06  Jakub Jelinek  <jakub@redhat.com>
6356         PR c++/85659
6357         * cfgexpand.c (expand_asm_stmt): Don't create a temporary if
6358         the type is addressable.  Don't force op into register if it has
6359         BLKmode.
6361 2018-05-05  Roland McGrath  <mcgrathr@google.com>
6363         PR other/77609
6364         * varasm.c (default_section_type_flags): Set SECTION_NOTYPE for
6365         any section for which we don't know a specific type it should have,
6366         regardless of name.  Previously this was done only for the exact
6367         names ".init_array", ".fini_array", and ".preinit_array".
6368         (default_elf_asm_named_section): Add comment about
6369         relationship with default_section_type_flags and SECTION_NOTYPE.
6370         (get_section): Don't consider it a type conflict if one side has
6371         SECTION_NOTYPE and the other doesn't, as long as neither has the
6372         SECTION_BSS et al used in the default_section_type_flags logic.
6374 2018-05-05  Tom de Vries  <tom@codesourcery.com>
6376         PR target/85653
6377         * config/nvptx/nvptx.c (WORKAROUND_PTXJIT_BUG_3): Define.
6378         (workaround_barsyncs): New function.
6379         (nvptx_reorg): Use workaround_barsyncs.
6380         * config/nvptx/nvptx.md (define_c_enum "unspecv"): Add UNSPECV_MEMBAR.
6381         (define_expand "nvptx_membar_cta"): New define_expand.
6382         (define_insn "*nvptx_membar_cta"): New insn.
6384 2018-05-04  Pekka Jääskeläinen  <pekka.jaaskelainen@parmance.com>
6386         * brig-builtins.def: Add consts to ptrs etc. in BRIG builtin defs.
6387         To improve optimization opportunities.
6388         * builtin-types.def: The new needed builtin types for the above.
6390 2018-05-04  Richard Biener  <rguenther@suse.de>
6392         * bb-reorder.c (sanitize_hot_paths): Release hot_bbs_to_check.
6393         * gimple-ssa-store-merging.c
6394         (imm_store_chain_info::output_merged_store): Remove redundant create,
6395         release split_store vector contents on failure.
6396         * tree-vect-slp.c (vect_schedule_slp_instance): Avoid leaking
6397         scalar stmt vector on cache hit.
6399 2018-05-04  Segher Boessenkool  <segher@kernel.crashing.org>
6401         * common/config/rs6000/rs6000-common.c (rs6000_handle_option): Remove
6402         Xilinx FP support.
6403         * config.gcc (powerpc-xilinx-eabi*): Remove.
6404         * config/rs6000/predicates.md (easy_fp_constant): Remove Xilinx FP
6405         support.
6406         (fusion_addis_mem_combo_load): Ditto.
6407         * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Remove Xilinx
6408         FP support.
6409         (rs6000_cpu_cpp_builtins): Ditto.
6410         * config/rs6000/rs6000-linux.c
6411         (rs6000_linux_float_exceptions_rounding_supported_p): Ditto.
6412         * config/rs6000/rs6000-opts.h (enum fpu_type_t): Delete.
6413         * config/rs6000/rs6000.c (rs6000_debug_reg_global): Remove Xilinx FP
6414         support.
6415         (rs6000_setup_reg_addr_masks): Ditto.
6416         (rs6000_init_hard_regno_mode_ok): Ditto.
6417         (rs6000_option_override_internal): Ditto.
6418         (legitimate_lo_sum_address_p): Ditto.
6419         (rs6000_legitimize_address): Ditto.
6420         (rs6000_legitimize_reload_address): Ditto.
6421         (rs6000_legitimate_address_p): Ditto.
6422         (abi_v4_pass_in_fpr): Ditto.
6423         (setup_incoming_varargs): Ditto.
6424         (rs6000_gimplify_va_arg): Ditto.
6425         (rs6000_split_multireg_move): Ditto.
6426         (rs6000_savres_strategy): Ditto.
6427         (rs6000_emit_prologue_components): Ditto.
6428         (rs6000_emit_epilogue_components): Ditto.
6429         (rs6000_emit_prologue): Ditto.
6430         (rs6000_emit_epilogue): Ditto.
6431         (rs6000_elf_file_end): Ditto.
6432         (rs6000_function_value): Ditto.
6433         (rs6000_libcall_value): Ditto.
6434         * config/rs6000/rs6000.h: Ditto.
6435         (TARGET_MINMAX_SF, TARGET_MINMAX_DF): Delete, merge to ...
6436         (TARGET_MINMAX): ... this.  New.
6437         (TARGET_SF_FPR, TARGET_DF_FPR, TARGET_SF_INSN, TARGET_DF_INSN): Delete.
6438         * config/rs6000/rs6000.md: Remove Xilinx FP support.
6439         (*movsi_internal1_single): Delete.
6440         * config/rs6000/rs6000.opt (msingle-float, mdouble-float, msimple-fpu,
6441         mfpu=, mxilinx-fpu): Delete.
6442         * config/rs6000/singlefp.h: Delete.
6443         * config/rs6000/sysv4.h: Remove Xilinx FP support.
6444         * config/rs6000/t-rs6000: Ditto.
6445         * config/rs6000/t-xilinx: Delete.
6446         * gcc/config/rs6000/titan.md: Adjust for fp_type removal.
6447         * gcc/config/rs6000/vsx.md: Remove Xilinx FP support.
6448         (VStype_simple): Delete.
6449         (VSfptype_simple, VSfptype_mul, VSfptype_div, VSfptype_sqrt): Delete.
6450         * config/rs6000/xfpu.h: Delete.
6451         * config/rs6000/xfpu.md: Delete.
6452         * config/rs6000/xilinx.h: Delete.
6453         * config/rs6000/xilinx.opt: Delete.
6454         * gcc/doc/invoke.texi (RS/6000 and PowerPC Options): Remove
6455         -msingle-float, -mdouble-float, -msimple-fpu, -mfpu=, and -mxilinx-fpu.
6457 2018-05-04  Tom de Vries  <tom@codesourcery.com>
6459         PR libgomp/85639
6460         * builtins.c (expand_builtin_goacc_parlevel_id_size): Handle null target
6461         if ignore == 0.
6463 2018-05-04  Richard Biener  <rguenther@suse.de>
6465         PR middle-end/85627
6466         * tree-complex.c (update_complex_assignment): We are always in SSA form.
6467         (expand_complex_div_wide): Likewise.
6468         (expand_complex_operations_1): Likewise.
6469         (expand_complex_libcall): Preserve EH info of the original stmt.
6470         (tree_lower_complex): Handle removed blocks.
6471         * tree.c (build_common_builtin_nodes): Do not set ECF_NOTRHOW
6472         on complex multiplication and division libcall builtins.
6474 2018-05-04  Richard Biener  <rguenther@suse.de>
6476         PR middle-end/85574
6477         * fold-const.c (negate_expr_p): Restrict negation of operand
6478         zero of a division to when we know that can happen without
6479         overflow.
6480         (fold_negate_expr_1): Likewise.
6482 2018-05-04  Jakub Jelinek  <jakub@redhat.com>
6484         PR libstdc++/85466
6485         * real.h (real_nextafter): Declare.
6486         * real.c (real_nextafter): New function.
6487         * fold-const-call.c (fold_const_nextafter): New function.
6488         (fold_const_call_sss): Call it for CASE_CFN_NEXTAFTER and
6489         CASE_CFN_NEXTTOWARD.
6490         (fold_const_call_1): For CASE_CFN_NEXTTOWARD call fold_const_call_sss
6491         even when arg1_mode is different from arg0_mode.
6493 2018-05-03  Nathan Sidwell  <nathan@acm.org>
6495         * doc/extend.texi (Deprecated Features): Remove
6496         -ffriend-injection.
6497         (Backwards Compatibility): Likewise.
6498         * doc/invoke.texi (C++ Language Options): Likewise.
6499         (C++ Dialect Options): Likewise.
6501 2018-05-03  Jakub Jelinek  <jakub@redhat.com>
6503         PR target/85530
6504         * config/i386/avx512fintrin.h (_mm512_mullox_epi64,
6505         _mm512_mask_mullox_epi64): New intrinsics.
6507 2018-05-03  Tom de Vries  <tom@codesourcery.com>
6509         PR testsuite/85106
6510         * doc/sourcebuild.texi (Commands for use in dg-final, Scan optimization
6511         dump files): Add offload-tree.
6513 2018-05-03  Richard Biener  <rguenther@suse.de>
6515         PR tree-optimization/85615
6516         * tree-ssa-threadupdate.c (thread_block_1): Only allow exits
6517         to loops not nested in BBs loop father to avoid creating multi-entry
6518         loops.
6520 2018-05-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
6522         PR tree-optimization/70291
6523         * tree-complex.c (expand_complex_libcall): Add type, inplace_p
6524         arguments.  Change return type to tree.  Emit libcall as a new
6525         statement rather than replacing existing one when inplace_p is true.
6526         (expand_complex_multiplication_components): New function.
6527         (expand_complex_multiplication): Expand floating-point complex
6528         multiplication using the above.
6529         (expand_complex_division): Rename inner_type parameter to type.
6530         Update expand_complex_libcall call-site.
6531         (expand_complex_operations_1): Update expand_complex_multiplication
6532         and expand_complex_division call-sites.
6534 2018-05-02  Jakub Jelinek  <jakub@redhat.com>
6536         PR target/85582
6537         * config/i386/i386.md (*ashl<dwi>3_doubleword_mask,
6538         *ashl<dwi>3_doubleword_mask_1, *<shift_insn><dwi>3_doubleword_mask,
6539         *<shift_insn><dwi>3_doubleword_mask_1): In condition require that
6540         the highest significant bit of the shift count mask is clear.  In
6541         check whether and[sq]i3 is needed verify that all significant bits
6542         of the shift count other than the highest are set.
6544 2018-05-02  Tom de Vries  <tom@codesourcery.com>
6546         PR libgomp/82428
6547         * builtins.def (DEF_GOACC_BUILTIN_ONLY): Define.
6548         * omp-builtins.def (BUILT_IN_GOACC_PARLEVEL_ID)
6549         (BUILT_IN_GOACC_PARLEVEL_SIZE): New builtin.
6550         * builtins.c (expand_builtin_goacc_parlevel_id_size): New function.
6551         (expand_builtin): Call expand_builtin_goacc_parlevel_id_size.
6552         * doc/extend.texi (Other Builtins): Add __builtin_goacc_parlevel_id and
6553         __builtin_goacc_parlevel_size.
6555 2018-05-02  Richard Biener  <rguenther@suse.de>
6557         PR tree-optimization/85597
6558         * tree-vect-stmts.c (vectorizable_operation): For ternary SLP
6559         do not use split vect_get_vec_defs call but call vect_get_slp_defs
6560         directly.
6562 2018-05-02  Tom de Vries  <tom@codesourcery.com>
6564         PR testsuite/85106
6565         * doc/sourcebuild.texi (Commands for use in dg-final, Scan optimization
6566         dump files): Add ltrans-tree.
6568 2018-05-02  Tom de Vries  <tom@codesourcery.com>
6570         PR testsuite/85106
6571         * doc/sourcebuild.texi (Commands for use in dg-final, Scan optimization
6572         dump files): Add wpa-ipa.
6574 2018-05-02  Segher Boessenkool  <segher@kernel.crashing.org>
6576         * config.gcc (powerpc*-*-*): Remove paired.h.  Unsupport the
6577         powerpc*-*-linux*paired* target.
6578         * config/rs6000/750cl.h: Delete.
6579         * config/rs6000/paired.h: Delete.
6580         * config/rs6000/paired.md: Delete.
6581         * config/rs6000/predicates.md (easy_vector_constant): Remove paired
6582         float support.
6583         * config/rs6000/rs6000-builtin.def: Remove paired float support.
6584         * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Update
6585         comment.  Remove paired float support.
6586         * config/rs6000/rs6000-modes.def: Remove V2SF and V2SI.
6587         * config/rs6000/rs6000-opts.h (enum rs6000_vector): Delete
6588         VECTOR_PAIRED.
6589         * config/rs6000/rs6000-protos.h (paired_expand_vector_init,
6590         paired_emit_vector_cond_expr, paired_expand_vector_move): Delete
6591         declarations.
6592         * config/rs6000/rs6000.c: Remove paired float support.
6593         (paired_expand_vector_init, paired_expand_vector_move,
6594         paired_emit_vector_compare, paired_emit_vector_cond_expr,
6595         (paired_expand_lv_builtin, paired_expand_stv_builtin,
6596         paired_expand_builtin, paired_expand_predicate_builtin,
6597         paired_init_builtins): Delete.
6598         * config/rs6000/rs6000.h: Remove paired float support.
6599         * config/rs6000/rs6000.md: Remove paired float support.
6600         (move_from_CR_ov_bit): Delete.
6601         * config/rs6000/rs6000.opt (mpaired): Delete.
6602         * config/rs6000/t-rs6000: Remove paired.md from MD_INCLUDES.
6603         * doc/invoke.texi (RS/6000 and PowerPC Options): Delete -mpaired.
6605 2018-05-02  Richard Biener  <rguenther@suse.de>
6607         PR middle-end/85567
6608         * gimplify.c (gimplify_save_expr): When in SSA form allow
6609         SAVE_EXPRs to compute to SSA vars.
6611 2018-05-02  Jakub Jelinek  <jakub@redhat.com>
6613         PR target/85582
6614         * config/i386/i386.md (*ashl<dwi>3_doubleword_mask,
6615         *ashl<dwi>3_doubleword_mask_1, *<shift_insn><dwi>3_doubleword_mask,
6616         *<shift_insn><dwi>3_doubleword_mask_1): If and[sq]i3 is needed, don't
6617         clobber operands[2], instead use a new pseudo.  Formatting fixes.
6619 2018-05-02  Richard Sandiford  <richard.sandiford@linaro.org>
6621         PR tree-optimization/85586
6622         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Only
6623         exit early for statements in the same group if the accesses are
6624         not strided.
6626 2018-05-02  Tom de Vries  <tom@codesourcery.com>
6628         PR lto/85451
6629         * lto-wrapper.c (compile_offload_image): Add "could not find mkoffload"
6630         error message.
6632 2018-05-01  Marc Glisse  <marc.glisse@inria.fr>
6634         PR tree-optimization/85143
6635         * match.pd (A<B&A<C): Extend to BIT_IOR_EXPR.
6637 2018-05-01  Tom de Vries  <tom@codesourcery.com>
6639         PR lto/85451
6640         * config/nvptx/mkoffload.c (main): Suggest using -B in "offload compiler
6641         not found" error message.
6643 2018-05-01  Tom de Vries  <tom@codesourcery.com>
6645         PR other/83786
6646         * vec.h (VEC_ORDERED_REMOVE_IF, VEC_ORDERED_REMOVE_IF_FROM_TO): Define.
6647         * vec.c (test_ordered_remove_if): New function.
6648         (vec_c_tests): Call test_ordered_remove_if.
6649         * dwarf2cfi.c (connect_traces): Use VEC_ORDERED_REMOVE_IF_FROM_TO.
6650         * lto-streamer-out.c (prune_offload_funcs): Use VEC_ORDERED_REMOVE_IF.
6651         * tree-vect-patterns.c (vect_pattern_recog_1): Use
6652         VEC_ORDERED_REMOVE_IF.
6654 2018-05-01  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
6656         PR tree-optimization/82665
6657         * vr-values.c (vr_values::extract_range_from_binary_expr): Handle
6658         pointer subtraction where arguments come from a memchr call.
6660 2018-05-01  Jakub Jelinek  <jakub@redhat.com>
6662         * configure.ac (LD_AS_NEEDED_OPTION, LD_NO_AS_NEEDED_OPTION): Use
6663         --push-state --as-needed and --pop-state instead of --as-needed and
6664         --no-as-needed if ld supports it.
6665         * configure: Regenerated.
6667         PR web/85578
6668         * doc/install.texi2html: Replace _002d with - and _002a with * in
6669         generated html files using sed.
6671 2018-04-30  David Malcolm  <dmalcolm@redhat.com>
6673         PR c++/85523
6674         * gcc-rich-location.c (blank_line_before_p): New function.
6675         (use_new_line): New function.
6676         (gcc_rich_location::add_fixit_insert_formatted): New function.
6677         * gcc-rich-location.h
6678         (gcc_rich_location::add_fixit_insert_formatted): New function.
6680 2018-04-30  David Malcolm  <dmalcolm@redhat.com>
6682         * selftest.c (assert_streq): Rename "expected" and "actual" to
6683         "val1" and "val2".  Extend NULL-handling to cover both inputs
6684         symmetrically, while still requiring both to be non-NULL for a pass.
6685         * selftest.h (assert_streq): Rename "expected" and "actual" to
6686         "val1" and "val2".
6687         (ASSERT_EQ): Likewise.
6688         (ASSERT_EQ_AT): Likewise.
6689         (ASSERT_KNOWN_EQ): Likewise.
6690         (ASSERT_KNOWN_EQ_AT): Likewise.
6691         (ASSERT_NE): Likewise.
6692         (ASSERT_MAYBE_NE): Likewise.
6693         (ASSERT_MAYBE_NE_AT): Likewise.
6694         (ASSERT_STREQ): Likewise.  Clarify that both must be non-NULL for
6695         the assertion to pass.
6696         (ASSERT_STREQ_AT): Likewise.
6698 2018-04-30  Jonathan Wakely  <jwakely@redhat.com>
6700         * doc/invoke.texi (-fpie, -fPIE): Fix grammar and clarify
6701         interaction with -pie.
6703 2018-04-30  David Malcolm  <dmalcolm@redhat.com>
6705         * selftest.h: Fix alphabetization of per-source-file selftest
6706         declarations.
6708 2018-04-30  Jason Merrill  <jason@redhat.com>
6710         PR c++/61982 - dead stores to destroyed objects.
6711         * gimplify.c (gimplify_modify_expr): Simplify complex lvalue on LHS
6712         of clobber.
6714 2018-04-30  Jason Merrill  <jason@redhat.com>
6716         * tree.c (build_clobber): New.
6717         * tree.h: Declare it.
6718         * gimplify.c (gimplify_bind_expr, gimplify_target_expr): Use it.
6720 2018-04-30  David Malcolm  <dmalcolm@redhat.com>
6722         * diagnostic-show-locus.c (layout::layout): Update for
6723         location_get_source_line returning a char_span.
6724         (struct char_span): Move to input.h.
6725         (struct correction): Update for fields in char_span becoming
6726         private.
6727         (struct source_line): Update for location_get_source_line
6728         returning a char_span.
6729         (layout::print_line): Likewise.
6730         * edit-context.c (edited_file::print_content): Likewise.
6731         (edited_file::print_diff_hunk): Likewise.
6732         (edited_file::print_run_of_changed_lines): Likewise.
6733         (edited_file::get_num_lines): Likewise.
6734         (edited_line::edited_line): Likewise.
6735         * final.c (asm_show_source): Likewise.
6736         * input.c (location_get_source_line): Convert return type
6737         from const char * to char_span, losing the final "line_len"
6738         param.
6739         (dump_location_info): Update for the above.
6740         (get_substring_ranges_for_loc): Likewise.  Use a char_span
6741         when handling the literal within the line.
6742         (test_reading_source_line): Update for location_get_source_line
6743         returning a char_span.
6744         * input.h (class char_span): Move here from
6745         diagnostic-show-locus.c, converting from a struct to a class.
6746         Make data members private.
6747         (char_span::operator bool): New.
6748         (char_span::length): New.
6749         (char_span::get_buffer): New.
6750         (char_span::operator[]): New.
6751         (char_span::subspan): Make const.
6752         (char_span::xstrdup): New.
6753         (location_get_source_line): Convert return type from const char *
6754         to char_span, losing the final "line_size" param.
6756 2018-04-30  Jan Hubicka  <jh@suse.cz>
6758         * lto-wrapper.c (ltrans_priorities): New static var.
6759         (cmp_priority): New.
6760         (run_gcc): Read priorities and if doing parallel build order
6761         the Makefile by them.
6763 2018-04-30  David Malcolm  <dmalcolm@redhat.com>
6765         * input.h (builtins_location_check): Convert to a STATIC_ASSERT.
6767 2018-04-30  Richard Biener  <rguenther@suse.de>
6769         * tree-cfg.c (verify_address): Remove base argument, add
6770         flag whether to check TREE_ADDRESSABLE and do that.
6771         (verify_expr): Remove.
6772         (verify_types_in_gimple_reference): Add pieces from verify_expr.
6773         (verify_gimple_assign_single): Likewise.
6774         (verify_gimple_switch): Likewise.
6775         (verify_expr_location_1): Dereference tp once.  Add (disabled)
6776         piece from verify_expr.
6777         (verify_gimple_in_cfg): Do not call verify_expr on all ops.
6779 2018-04-30  Claudiu Zissulescu  <claziss@synopsys.com>
6781         * config/arc/linux.h (CLEAR_INSN_CACHE): Define.
6783 2018-04-30  Claudiu Zissulescu  <claziss@synopsys.com>
6785         * config/arc/arc-protos.h (prepare_extend_operands): Remove.
6786         (small_data_pattern): Likewise.
6787         (arc_rewrite_small_data): Likewise.
6788         * config/arc/arc.c (LEGITIMATE_SMALL_DATA_OFFSET_P): Remove.
6789         (LEGITIMATE_SMALL_DATA_ADDRESS_P): Likewise.
6790         (get_symbol_alignment): New function.
6791         (legitimate_small_data_address_p): Likewise.
6792         (legitimate_scaled_address): Update, call
6793         legitimate_small_data_address_p.
6794         (output_sdata): New static variable.
6795         (arc_print_operand): Update how we handle small data operands.
6796         (arc_print_operand_address): Likewise.
6797         (arc_legitimate_address_p): Update, use
6798         legitimate_small_data_address_p.
6799         (arc_rewrite_small_data_p): Remove.
6800         (arc_rewrite_small_data_1): Likewise.
6801         (arc_rewrite_small_data): Likewise.
6802         (small_data_pattern): Likewise.
6803         (compact_sda_memory_operand): Update to use
6804         legitimate_small_data_address_p and get_symbol_alignment.
6805         (prepare_move_operands): Don't rewite sdata pattern.
6806         (prepare_extend_operands): Remove.
6807         * config/arc/arc.md (zero_extendqihi2): Don't rewrite sdata
6808         pattern.
6809         (zero_extendqisi2): Likewise.
6810         (zero_extendhisi2): Likewise.
6811         (extendqihi2): Likewise.
6812         (extendqisi2): Likewise.
6813         (extendhisi2): Likewise.
6814         (addsi3): Likewise.
6815         (subsi3): Likewise.
6816         (andsi3): Likewise.
6817         * config/arc/constraints.md (Usd): Change it to memory constraint.
6819 2018-04-30  Claudiu Zissulescu  <claziss@synopsys.com>
6821         * config/arc/arc.c (arc_split_move): Allow signed 6-bit constants
6822         as source of std instructions.
6823         * config/arc/arc.md (movsi_insn): Update pattern predicate to
6824         allow 6-bit constants as source for store instructions.
6825         (movdi_insn): Update instruction pattern to allow 6-bit constants
6826         as source for store instructions.
6828 2018-04-30  Jonathan Wakely  <jwakely@redhat.com>
6830         * doc/invoke.texi (-fdebug-types-section): Fix grammar.
6832 2018-04-30  Nathan Sidwell  <nathan@acm.org>
6833             Sandra Loosemore <sandra@codesourcery.com>
6835         * dumpfile.c (dump_open): Allow '-' for stdout.
6836         * doc/invoke.texi (Developer Options): Document dump filename
6837         determination early.  Document stdin/stdout selection.
6839 2018-04-30 Andrew Sadek  <andrew.sadek.se@gmail.com>
6841         Microblaze Target: PIC data text relative
6843         * config/microblaze/microblaze.opt: add new option -mpic-data-text-rel.
6844         * config/microblaze/microblaze-protos.h (microblaze_constant_address_p):
6845         Add declaration.
6846         * gcc/config/microblaze/microblaze.h (microblaze_constant_address_p):
6847         CONSTANT_ADDRESS_P definition to microblaze_constant_address_p.
6848         * config/microblaze/microblaze.c (TARGET_PIC_DATA_TEXT_REL):
6849         New addressing mode for data-text relative position indepenedent code.
6850         (microblaze_classify_unspec): add 'UNSPEC_TEXT' case ->
6851         'ADDRESS_SYMBOLIC_TXT_REL'.
6852         (microblaze_classify_address): Add handling for UNSPEC + CONST_INT.
6853         (microblaze_legitimate_pic_operand): Exclude function calls from
6854         pic operands in case of TARGET_PIC_DATA_TEXT_REL option.
6855         (microblaze_legitimize_address): Generate 'UNSPEC_TEXT' for all possible
6856         addresses cases.
6857         (microblaze_address_insns): Add 'ADDRESS_SYMBOLIC_TXT_REL' case.
6858         (print_operand): Add 'ADDRESS_SYMBOLIC_TXT_REL' case.
6859         (print_operand_address): Add 'ADDRESS_SYMBOLIC_TXT_REL' case + handling
6860         for 'address + offset'.
6861         (microblaze_expand_prologue): Add new function prologue call for
6862         'r20' assignation.
6863         (microblaze_asm_generate_pic_addr_dif_vec): Override new target hook
6864         'TARGET_ASM_GENERATE_PIC_ADDR_DIFF_VEC' to disable address diff vector
6865         table in case of TARGET_PIC_DATA_TEXT_REL.
6866         (expand_pic_symbol_ref): Add handling for 'UNSPEC_TEXT'.
6867         * gcc/config/microblaze/microblaze.md (TARGET_PIC_DATA_TEXT_REL):
6868         Add new macros 'UNSPEC_TEXT',
6869         'UNSPEC_SET_TEXT' + add rule for setting r20 in function prologue
6870         + exclude function calls from 'UNSPEC_PLT' in case of data text
6871         relative mode.
6872         * doc/tm.texi.in (TARGET_ASM_GENERATE_PIC_ADDR_DIFF_VEC): Add
6873         new target hook for generating address diff vector tables in case of
6874         flag_pic.
6875         * doc/tm.texi : Regenerate.
6876         * stmt.c (TARGET_ASM_GENERATE_PIC_ADDR_DIFF_VEC): Append new condition
6877         'targetm.asm_out.generate_pic_addr_diff_vec' to flag_pic in case
6878         of addr diff vector generation.
6879         * target.def (TARGET_ASM_GENERATE_PIC_ADDR_DIFF_VEC): Add
6880         target hook definition.
6881         * targhooks.h, gcc/targhooks.c (TARGET_ASM_GENERATE_PIC_ADDR_DIFF_VEC):
6882         Add default function for generate_pic_addr_diff_vec -> flag_pic.
6883         * doc/invoke.texi (Add new pic option): Add new microblaze pic
6884         option for data text relative.
6886 2018-04-30  Richard Biener  <rguenther@suse.de>
6888         * tree-chrec.h (evolution_function_is_constant_p): Remove
6889         redundant check.
6890         * tree-cfg.c (tree_node_can_be_shared): Re-order checks.
6892 2018-04-30  Richard Biener  <rguenther@suse.de>
6894         PR bootstrap/85571
6895         * dwarf2out.c (gen_producer_string): Ignore -fchecking[=].
6897 2018-04-30  Richard Biener  <rguenther@suse.de>
6899         PR tree-optimization/28364
6900         PR tree-optimization/85275
6901         * tree-ssa-loop-ch.c (ch_base::copy_headers): Stop after
6902         copying first exit test.
6904 2018-04-28  Mark Wielaard  <mark@klomp.org>
6906         * dwarf2out.c (dwarf2out_finish): Add .debug_addr table header for
6907         dwarf_version >= 5.
6908         (dwarf_AT): Handle DW_AT_addr_base.
6909         (add_top_level_skeleton_die_attrs): Use dwarf_AT for DW_AT_addr_base.
6911 2018-04-28  Uros Bizjak  <ubizjak@gmail.com>
6913         PR target/84431
6914         * config/i386/i386.md (*ashl<dwi>3_doubleword_mask): New pattern.
6915         (*ashl<dwi>3_doubleword_mask_1): Ditto.
6916         (*<shift_insn><dwi>3_doubleword_mask): Ditto.
6917         (*<shift_insn><dwi>3_doubleword_mask_1): Ditto.
6919 2018-04-28  Richard Biener  <rguenther@suse.de>
6921         * tree-cfg.c (verify_gimple_phi): Take a gphi * argument.
6922         (verify_gimple_in_cfg): Rename visited_stmts to visited_throwing_stmts
6923         to reflect use.  Only add interesting stmts.
6925 2018-04-27  Martin Jambor  <mjambor@suse.cz>
6927         PR ipa/85549
6928         * ipa-cp.c (find_aggregate_values_for_callers_subset): Make sure
6929         the jump function allows for passing through aggregate values.
6931 2018-04-27  David Malcolm  <dmalcolm@redhat.com>
6933         * input.h (in_system_header_at): Convert from macro to inline
6934         function.
6935         (from_macro_expansion_at): Likewise.
6936         (from_macro_definition_at): Likewise.
6938 2018-04-27  Jeff Law  <law@redhat.com>
6940         * config.gcc: Mark tile* targets as deprecated/obsolete.
6942 2018-04-27  Richard Biener  <rguenther@suse.de>
6944         * config/aarch64/aarch64.c: Simplify ap.__stack advance and
6945         fix for ILP32.
6947 2018-04-27  Richard Biener  <rguenther@suse.de>
6949         * tree-cfg.c (verify_expr): Make dead code hit gcc_unreachable.
6951 2018-04-27  Uros Bizjak  <ubizjak@gmail.com>
6953         * config/i386/i386.md (*movti_internal): Substitute Ye constraint
6954         with Yd constraint. Set "preferred_for_speed" attribute from
6955         TARGET_INTER_UNIT_MOVES_{FROM,TO}_VEC for alternatives
6956         with Yd constraint.
6957         (*movdi_internal): Ditto.
6958         (movti_interunit splitters): Remove
6959         TARGET_INTER_UNIT_MOVES_{FROM,TO}_VEC from insn condition.
6960         (movdi_interunit splitters): Ditto.
6961         * config/i386/constraints.md (Ye): Remove.
6962         (Yd): Do not depend on TARGET_INTER_UNIT_MOVES_{FROM,TO}_VEC.
6964 2018-04-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
6966         PR target/85512
6967         * config/aarch64/constraints.md (Usg): Limit to 31.
6968         (Usj): Limit to 63.
6970 2018-04-27  Jakub Jelinek  <jakub@redhat.com>
6972         PR tree-optimization/85529
6973         * tree-ssa-reassoc.c (optimize_range_tests_var_bound): Add FIRST_BB
6974         argument.  Don't call get_nonzero_bits if opcode is ERROR_MARK_NODE,
6975         rhs2 def stmt's bb is dominated by first_bb and it isn't an obvious
6976         zero extension or masking of the MSB bit.
6977         (optimize_range_tests): Add FIRST_BB argument, pass it through
6978         to optimize_range_tests_var_bound.
6979         (maybe_optimize_range_tests, reassociate_bb): Adjust
6980         optimize_range_tests callers.
6982 2018-04-26  Richard Biener  <rguenther@suse.de>
6983             Jakub Jelinek  <jakub@redhat.com>
6985         * cgraph.h (symbol_table): Just declare debug method here.
6986         * symtab.c (symbol_table::debug): Define.
6988 2018-04-26  Eric Botcazou  <ebotcazou@adacore.com>
6990         * loop-invariant.c (may_assign_reg_p): Return false for frame pointer.
6992 2018-04-26  Uros Bizjak  <ubizjak@gmail.com>
6994         * config/i386/i386.md ("isa" attribute): Add x64_sse2.
6995         ("enabled" attribute): Handle x64_sse2 "isa" attribute.
6996         (*movdi_internal): Substitute Yi and Yj constraint with x
6997         and Ym and Yn constraint with y constraint.  Update "isa"
6998         attribute and set "preferred_for_speed" attribute from
6999         TARGET_INTER_UNIT_MOVES_{FROM,TO}_VEC for updated alternatives.
7000         (*movsi_internal): Ditto.
7001         (*movdf_internal): Ditto.
7002         (*movsf_internal): Ditto.
7003         (*zero_extendsidi2): Ditto.
7004         * config/i386/sse.md (vec_set<mode>_0): Ditto.
7005         (sse2_loadld): Ditto.
7006         (*vec_extract<ssevecmodelower>_0): Ditto.
7007         (*vec_extractv4si_0_zext_sse4): Ditto.
7008         (vec_concatv2di): Ditto.
7009         (*vec_dup<mode>): Ditto.
7010         * config/i386/mmx.md (*mov<mode>_internal): Ditto.
7011         * config/i386/constraints.md (Yi): Remove.
7012         (Yj): Remove.
7013         (Ym): Remove.
7014         (Yn): Remove.
7016 2018-04-26  Nathan Sidwell  <nathan@acm.org>
7018         * dumpfile.c (dump_open): New.
7019         (dump_open_alternate_stream, dump_start, dump_begin): Call it.
7020         (dump_finish): Detect stdio/stderr by value not name.
7022 2018-04-26  Jonathan Wakely  <jwakely@redhat.com>
7024         * doc/invoke.texi (-Wreturn-type): Document default status for C++.
7026 2018-04-26  Tom de Vries  <tom@codesourcery.com>
7028         PR target/84952
7029         * config/nvptx/nvptx.c (verify_neutering_jumps)
7030         (verify_neutering_labels): New function
7031         (nvptx_single): Use verify_neutering_jumps and verify_neutering_labels.
7033 2018-04-26  Tom de Vries  <tom@codesourcery.com>
7035         PR target/84025
7036         * config/nvptx/nvptx.c (needs_neutering_p): New function.
7037         (nvptx_single): Use needs_neutering_p to skip over insns that do not
7038         need neutering.
7040 2018-04-26  Richard Biener <rguenther@suse.de>
7041             Tom de Vries  <tom@codesourcery.com>
7043         PR lto/85422
7044         * lto-streamer-out.c (output_function): Fixup loops if required to match
7045         discovery done in the reader.
7047 2018-04-26  Richard Biener  <rguenther@suse.de>
7049         PR tree-optimization/85116
7050         * tree-ssa-loop-ch.c (do_while_loop_p): A do-while loop should
7051         have a loop exit from the single latch predecessor.  Remove
7052         case of header with just condition.
7053         (ch_base::copy_headers): Exclude infinite loops from any
7054         processing.
7055         (pass_ch::execute): Record exits.
7057 2018-04-26  Richard Biener  <rguenther@suse.de>
7059         * tree-vect-data-refs.c (vect_get_data_access_cost): Get
7060         prologue cost vector and pass it to vect_get_load_cost.
7061         (vect_get_peeling_costs_all_drs): Likewise.
7062         (vect_peeling_hash_get_lowest_cost): Likewise.
7063         (vect_enhance_data_refs_alignment): Likewise.
7065 2018-04-26  Richard Biener  <rguenther@suse.de>
7067         PR middle-end/85450
7068         * tree-cfg.c (verify_gimple_assign_unary): Restore proper
7069         checking of integer<->pointer conversions.
7070         * omp-expand.c (expand_omp_for_static_nochunk): Avoid
7071         sign-/zero-extending pointer types.
7072         (expand_omp_for_static_chunk): Likewise.
7074 2018-03-22  Hans-Peter Nilsson  <hp@axis.com>
7075             Jean Lee  <xiaoyur347@gmail.com>
7077         * config/mips/mips.c (mips_asan_shadow_offset): New function.
7078         (TARGET_ASAN_SHADOW_OFFSET): Define.
7079         * config/mips/mips.h (FRAME_GROWS_DOWNWARD): Augment to also be
7080         true for -fsanitize=address.
7082 2018-04-25  Mark Wielaard  <mark@klomp.org>
7084         * dwarf2out.c (file_info_cmp): Sort longer dir prefixes before
7085         shorter ones.
7087 2018-04-25  Jakub Jelinek  <jakub@redhat.com>
7089         * config/i386/i386.md (*x86_mov<mode>cc_0_m1): Use type "alu1" rather
7090         than "alu", remove explicit "memory" and "imm_disp" attributes.
7091         (*x86_mov<mode>cc_0_m1_se, *x86_mov<mode>cc_0_m1_neg): Likewise.
7093         PR middle-end/85414
7094         * simplify-rtx.c (simplify_unary_operation_1) <case SIGN_EXTEND,
7095         case ZERO_EXTEND>: Pass SUBREG_REG (op) rather than op to
7096         gen_lowpart_no_emit.
7098 2018-04-25  Sebastian Peryt  <sebastian.peryt@intel.com>
7100         PR target/85473
7101         * config/i386/i386.c (ix86_expand_builtin): Change memory
7102         operand to XI, extend p0 to Pmode.
7103         * config/i386/i386.md: Change unspec volatile and operand
7104         1 mode to XI, change operand 0 mode to P.
7106 2018-04-25  Chung-Ju Wu  <jasonwucj@gmail.com>
7108         * config/nds32/nds32-predicates.c (nds32_can_use_bclr_p): Mask with
7109         GET_MODE_MASK before any checking.
7110         (nds32_can_use_bset_p): Likewise.
7111         (nds32_can_use_btgl_p): Likewise.
7113 2018-04-25  Chung-Ju Wu  <jasonwucj@gmail.com>
7115         * config/nds32/nds32-doubleword.md: New define_split pattern for
7116         illegal register number.
7118 2018-04-25  Chung-Ju Wu  <jasonwucj@gmail.com>
7120         * config/nds32/nds32.c (nds32_print_operand): Set op_value ealier.
7122 2018-04-25  Chung-Ju Wu  <jasonwucj@gmail.com>
7124         * config/nds32/nds32.h (ASM_APP_ON): Add missing newline character.
7126 2018-04-25  Richard Biener  <rguenther@suse.de>
7128         * lto-streamer.h (LTO_major_version): Bump to 8.
7130 2018-04-25  Jakub Jelinek  <jakub@redhat.com>
7132         * BASE-VER: Set to 9.0.0.
7134 2018-04-24  Segher Boessenkool  <segher@kernel.crashing.org>
7136         * config/rs6000/rs6000.c (init_float128_ieee): Fix spelling mistakes
7137         in __abskf2 and __powikf2.
7139 2018-04-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
7141         PR target/85512
7142         * config/aarch64/constraints.md (Usg, Usj): New constraints.
7143         * config/aarch64/iterators.md (cmode_simd): New mode attribute.
7144         * config/aarch64/aarch64.md (*aarch64_ashr_sisd_or_int_<mode>3):
7145         Use the above on operand 2.  Reindent.
7146         (*aarch64_lshr_sisd_or_int_<mode>3): Likewise.
7148 2018-04-24  H.J. Lu  <hongjiu.lu@intel.com>
7150         PR target/85485
7151         * common/config/i386/i386-common.c (ix86_handle_option): Don't
7152         handle OPT_mcet.
7153         * config/i386/i386.opt (mcet): Removed.
7154         * doc/install.texi: Remove -mcet documentation.
7155         * doc/invoke.texi: Likewise.
7157 2018-04-24  H.J. Lu  <hongjiu.lu@intel.com>
7159         PR target/85485
7160         * doc/install.texi: Remove -mcet from bootstrap-cet.
7162 2018-04-24  Jakub Jelinek  <jakub@redhat.com>
7164         PR target/85511
7165         * config/i386/i386.c (ix86_init_mmx_sse_builtins): Don't define
7166         __builtin_ia32_readeflags_u32 and __builtin_ia32_writeeflags_u32
7167         if TARGET_64BIT.
7169         PR target/85503
7170         * config/rs6000/rs6000-p8swap.c (const_load_sequence_p): Punt if
7171         const_vector is not CONST_VECTOR or SYMBOL_REF for a constant pool
7172         containing a CONST_VECTOR.
7174 2018-04-24  Cesar Philippidis  <cesar@codesourcery.com>
7176         * doc/install.texi: Update newlib dependency for nvptx.
7178 2018-04-24  Jakub Jelinek  <jakub@redhat.com>
7180         PR target/85508
7181         * config/i386/i386.c (ix86_expand_vector_init_one_var): Use UINTVAL
7182         instead of INTVAL when shifting x left.
7184 2018-04-24  Andreas Krebbel  <krebbel@linux.ibm.com>
7186         PR tree-optimization/85478
7187         * tree-vect-loop.c (vect_analyze_loop_2): Do not call
7188         vect_grouped_store_supported for single element vectors.
7190 2018-04-24  Richard Biener  <rguenther@suse.de>
7192         PR target/85491
7193         * config/i386/i386.c (ix86_add_stmt_cost): Restrict strided
7194         load cost increase to the case of non-constant step.
7196 2018-04-24  Jakub Jelinek  <jakub@redhat.com>
7198         PR target/84828
7199         * reg-stack.c (move_for_stack_reg): Don't fail assertion about dead
7200         destination if any_malformed_asm.
7202 2018-04-23  Eric Botcazou  <ebotcazou@adacore.com>
7204         PR middle-end/85496
7205         * expr.c (store_field): In the bitfield case, if the value comes from
7206         a function call and is returned in registers by means of a PARALLEL,
7207         do not change the mode of the temporary unless BLKmode and VOIDmode.
7209 2018-04-23  Andrey Belevantsev  <abel@ispras.ru>
7211         PR rtl-optimization/85423
7212         * sel-sched-ir.c (has_dependence_note_mem_dep): Only discard
7213         dependencies to debug insns when the previous insn is non-debug.
7215 2018-04-23  Claudiu Zissulescu  <claziss@synopsys.com>
7217         * config/arc/arc.md ("vunspec"): Delete it, unify all the unspec
7218         enums into a single definition.
7219         (fls): Fix predicates and printing.
7220         (seti): Likewise.
7222 2018-04-23  Claudiu Zissulescu  <claziss@synopsys.com>
7224         * config/arc/arc-protos.h (check_if_valid_sleep_operand): Remove.
7225         * config/arc/arc.c (arc_expand_builtin): Sleep accepts registers
7226         and short u6 immediate.
7227         (check_if_valid_sleep_operand): Remove.
7228         * config/arc/arc.md (Sleep): Accepts registers and u6 immediates.
7230 2018-04-22  Chung-Ju Wu  <jasonwucj@gmail.com>
7232         * config/nds32/nds32.c (nds32_compute_stack_frame): Consider
7233         flag_always_save_lp condition.
7234         * config/nds32/nds32.opt (malways-save-lp): New option.
7236 2018-04-22  Shiva Chen  <shiva0217@gmail.com>
7238         * config/nds32/nds32-protos.h (nds32_use_load_post_increment): Declare.
7239         * config/nds32/nds32.c (nds32_use_load_post_increment): New.
7240         * config/nds32/nds32.h
7241         (USE_LOAD_POST_INCREMENT, USE_LOAD_POST_DECREMENT): Define.
7242         (USE_STORE_POST_INCREMENT, USE_STORE_POST_DECREMENT): Define.
7244 2018-04-22  Shiva Chen  <shiva0217@gmail.com>
7246         * config/nds32/nds32-protos.h (nds32_ls_333_p): Remove.
7247         * config/nds32/nds32.c (nds32_ls_333_p): Remove.
7249 2018-04-22  Shiva Chen  <shiva0217@gmail.com>
7250             Chung-Ju Wu  <jasonwucj@gmail.com>
7252         * config/nds32/nds32-protos.h (nds32_case_vector_shorten_mode):
7253         Declare.
7254         * config/nds32/nds32.c (nds32_case_vector_shorten_mode): New function.
7255         * config/nds32/nds32.h (CASE_VECTOR_SHORTEN_MODE): Modify.
7257 2018-04-22  Chung-Ju Wu  <jasonwucj@gmail.com>
7259         * config/nds32/nds32.c (nds32_compute_stack_frame): Fix wrong value.
7261 2018-04-22  Chung-Ju Wu  <jasonwucj@gmail.com>
7263         * config/nds32/nds32-protos.h (nds32_data_alignment,
7264         nds32_local_alignment): Declare.
7265         * config/nds32/nds32.c (nds32_data_alignment, nds32_constant_alignment,
7266         nds32_local_alignment): New functions.
7267         (TARGET_CONSTANT_ALIGNMENT): Define.
7268         * config/nds32/nds32.h (DATA_ALIGNMENT, LOCAL_ALIGNMENT): Define.
7270 2018-04-22  Chung-Ju Wu  <jasonwucj@gmail.com>
7272         * config/nds32/nds32.c
7273         (TARGET_HARD_REGNO_MODE_OK): Move to the bottom of file.
7274         (TARGET_MODES_TIEABLE_P): Likewise.
7276 2018-04-22  Chung-Ju Wu  <jasonwucj@gmail.com>
7278         * config/nds32/nds32.c (nds32_asm_file_start): Display optimization
7279         level Ofast and Og.
7281 2018-04-22  Monk Chiang  <sh.chiang04@gmail.com>
7282             Chung-Ju Wu  <jasonwucj@gmail.com>
7284         * config/nds32/constants.md (unspec_volatile_element): Add enum values
7285         for unaligned access.
7286         * config/nds32/nds32-intrinsic.c: Implementation of expanding
7287         unaligned access.
7288         * config/nds32/nds32-intrinsic.md: Likewise.
7289         * config/nds32/nds32_intrinsic.h: Likewise.
7290         * config/nds32/nds32.h (nds32_builtins): Likewise.
7291         * config/nds32/nds32.opt (munaligned-access): New option.
7292         * config/nds32/nds32.c (nds32_asm_file_start): Display
7293         flag_unaligned_access status.
7295 2018-04-20  Kito Cheng  <kito.cheng@gmail.com>
7297         * config/riscv/elf.h (LINK_SPEC): Pass --no-relax if
7298         -mno-relax is present.
7299         * config/riscv/linux.h (LINK_SPEC): Ditto.
7301 2018-04-20  Martin Sebor  <msebor@redhat.com>
7303         PR c/85365
7304         * gimple-fold.c (gimple_fold_builtin_strcpy): Suppress -Wrestrict
7305         for null pointers.
7306         (gimple_fold_builtin_stxcpy_chk): Same.
7307         * gimple-ssa-warn-restrict.c (check_bounds_or_overlap): Same.
7309 2018-04-20  Michael Meissner  <meissner@linux.ibm.com>
7311         PR target/85456
7312         * config/rs6000/rs6000.c (init_float128_ieee): Add support to call
7313         __powikf2 when long double is IEEE 128-bit.
7315 2018-04-20  Kito Cheng  <kito.cheng@gmail.com>
7317         * config/riscv/riscv.c (riscv_first_stack_step): Round up min
7318         step to make sure stack always aligned.
7320 2018-04-20  Carl Love  <cel@us.ibm.com>
7322         PR target/83402
7323         * config/rs6000/rs6000-c.c (rs6000_gimple_fold_builtin): Add
7324         size check for arg0.
7326 2018-04-20  Nathan Sidwell  <nathan@codesourcery.com>
7327             Tom de Vries  <tom@codesourcery.com>
7329         PR target/85445
7330         * config/nvptx/nvptx.c (nvptx_emit_forking, nvptx_emit_joining):
7331         Emit insns for calls too.
7332         (nvptx_find_par): Always look for worker-level predecessor insn.
7333         (nvptx_propagate): Add is_call parm, return bool.  Copy frame for
7334         calls.
7335         (nvptx_vpropagate, nvptx_wpropagate): Adjust.
7336         (nvptx_process_pars): Propagate frames for calls.
7338 2018-04-20  H.J. Lu  <hongjiu.lu@intel.com>
7340         PR target/85469
7341         * common/config/i386/i386-common.c (OPTION_MASK_ISA_IBT_SET):
7342         Removed.
7343         (OPTION_MASK_ISA_IBT_UNSET): Likewise.
7344         (ix86_handle_option): Don't handle OPT_mibt.
7345         * config/i386/cet.h: Check __CET__ instead of __IBT__ and
7346         __SHSTK__.
7347         * config/i386/driver-i386.c (host_detect_local_cpu): Remove
7348         has_ibt and ibt.
7349         * config/i386/i386-c.c (ix86_target_macros_internal): Don't
7350         check OPTION_MASK_ISA_IBT nor flag_cf_protection.
7351         (ix86_target_macros): Define __CET__ with flag_cf_protection
7352         for -fcf-protection.
7353         * config/i386/i386.c (isa2_opts): Remove -mibt.
7354         * config/i386/i386.h (TARGET_IBT): Removed.
7355         (TARGET_IBT_P): Likewise.
7356         (ix86_valid_target_attribute_inner_p): Don't check OPT_mibt.
7357         * config/i386/i386.md (nop_endbr): Don't check TARGET_IBT.
7358         * config/i386/i386.opt (mcet): Update help message.
7359         (mshstk): Likewise.
7360         (mibt): Removed.
7361         * doc/invoke.texi: Remove -mibt.  Document __CET__.  Document
7362         -mcet as an alias for -mshstk.
7364 2018-04-20  Richard Biener <rguenther@suse.de>
7366         PR middle-end/85475
7367         * match.pd ((X * CST) * Y -> (X * Y) * CST): Avoid exponential
7368         complexity by forcing a single use of the multiply operand.
7370 2018-04-20  Martin Jambor  <mjambor@suse.cz>
7372         ipa/85449
7373         * ipa-cp.c (cgraph_edge_brings_value_p): Move check for self-feeding
7374         recursion dependency to only apply to non-clones.
7376 2018-04-20  Martin Jambor  <mjambor@suse.cz>
7378         ipa/85447
7379         * ipa-cp.c (create_specialized_node): Check that clones of
7380         self-recursive edges exist during IPA-CP.
7382 2018-04-19  Toon Moene  <toon@moene.org>
7384         * doc/invoke.texi: Add -floop-unroll-and-jam to options enabled
7385         by -O3.
7387 2018-04-19  Jakub Jelinek  <jakub@redhat.com>
7389         PR tree-optimization/85467
7390         * fold-const.c (fold_ternary_loc) <case BIT_FIELD_REF>: Use
7391         VECTOR_TYPE_P macro.  If type is vector type, VIEW_CONVERT_EXPR the
7392         VECTOR_CST element to type.
7394 2018-04-19  H.J. Lu  <hongjiu.lu@intel.com>
7396         PR target/85397
7397         * config/i386/i386.h (STACK_SAVEAREA_MODE): New.
7398         * config/i386/i386.md (builtin_setjmp_setup): Removed.
7399         (builtin_longjmp): Likewise.
7400         (save_stack_nonlocal): New pattern.
7401         (restore_stack_nonlocal): Likewise.
7403 2018-04-19  H.J. Lu  <hongjiu.lu@intel.com>
7405         PR target/85404
7406         * config/i386/cet.c (file_end_indicate_exec_stack_and_cet):
7407         Replace ASM_OUTPUT_LABEL with fprintf.
7409 2018-04-19  H.J. Lu  <hongjiu.lu@intel.com>
7411         PR target/85417
7412         * config/i386/cet.c (file_end_indicate_exec_stack_and_cet):
7413         Check flag_cf_protection instead of TARGET_IBT and TARGET_SHSTK.
7414         * config/i386/i386-c.c (ix86_target_macros_internal): Also
7415         define __IBT__ and __SHSTK__ for -fcf-protection.
7416         * config/i386/i386.c (pass_insert_endbranch::gate): Don't check
7417         TARGET_IBT.
7418         (ix86_trampoline_init): Likewise.
7419         (x86_output_mi_thunk): Likewise.
7420         (ix86_notrack_prefixed_insn_p): Likewise.
7421         (ix86_option_override_internal): Don't disallow -fcf-protection.
7422         * config/i386/i386.md (rdssp<mode>): Also enable for
7423         -fcf-protection.
7424         (incssp<mode>): Likewise.
7425         (nop_endbr): Likewise.
7426         * config/i386/i386.opt (mcet): Change help message to built-in
7427         functions only.
7428         (mibt): Likewise.
7429         (mshstk): Likewise.
7430         * doc/invoke.texi: Remove -mcet, -mibt and -mshstk condition
7431         on -fcf-protection.  Change -mcet, -mibt and -mshstk to only
7432         enable CET built-in functions.
7434 2018-04-19  Sebastian Peryt  <sebastian.peryt@intel.com>
7436         * common/config/i386/i386-common.c
7437         (OPTION_MASK_ISA_MOVDIRI_SET, OPTION_MASK_ISA_MOVDIR64B_SET,
7438         OPTION_MASK_ISA_MOVDIRI_UNSET,
7439         OPTION_MASK_ISA_MOVDIR64B_UNSET): New defines.
7440         (ix86_handle_option): Handle -mmovdiri and -mmovdir64b.
7441         * config.gcc (movdirintrin.h): New header.
7442         * config/i386/cpuid.h (bit_MOVDIRI,
7443         bit_MOVDIR64B): New bits.
7444         * config/i386/driver-i386.c (host_detect_local_cpu): Detect -mmovdiri
7445         and -mmvodir64b.
7446         * config/i386/i386-builtin-types.def ((VOID, PUNSIGNED, UNSIGNED),
7447         (VOID, PVOID, PCVOID)): New function types.
7448         * config/i386/i386-builtin.def (__builtin_ia32_directstoreu_u32,
7449         __builtin_ia32_directstoreu_u64,
7450         __builtin_ia32_movdir64b): New builtins.
7451         * config/i386/i386-c.c (__MOVDIRI__, __MOVDIR64B__): New.
7452         * config/i386/i386.c (ix86_target_string): Added -mmovdir64b
7453         and -mmovdiri.
7454         (ix86_valid_target_attribute_inner_p): Ditto.
7455         (ix86_expand_special_args_builtin): Added VOID_FTYPE_PUNSIGNED_UNSIGNED
7456         and VOID_FTYPE_PUNSIGNED_UNSIGNED.
7457         (ix86_expand_builtin): Expand IX86_BUILTIN_MOVDIR64B.
7458         * config/i386/i386.h (TARGET_MOVDIRI, TARGET_MOVDIRI_P,
7459         TARGET_MOVDIR64B, TARGET_MOVDIR64B_P): New.
7460         * config/i386/i386.md (UNSPECV_MOVDIRI, UNSPECV_MOVDIR64B): New.
7461         (movdiri<mode>, movdir64b_<mode>): New.
7462         * config/i386/i386.opt: Add -mmovdiri and -mmovdir64b.
7463         * config/i386/immintrin.h: Include movdirintrin.h.
7464         * config/i386/movdirintrin.h: New file.
7465         * doc/invoke.texi: Added -mmovdiri and -mmovdir64b.
7467 2018-04-19  Richard Biener  <rguenther@suse.de>
7469         PR middle-end/85455
7470         * cfg.c (clear_bb_flags): When loop state says we have
7471         marked irreducible regions also preserve BB_IRREDUCIBLE_LOOP.
7473 2018-04-19  Richard Biener  <rguenther@suse.de>
7475         PR tree-optimization/84737
7476         * tree-vect-data-refs.c (vect_copy_ref_info): New function
7477         copying restrict info.
7478         (vect_setup_realignment): Use it.
7479         * tree-vectorizer.h (vect_copy_ref_info): Declare.
7480         * tree-vect-stmts.c (vectorizable_store): Copy ref info from
7481         the first DR to all generated stores.
7482         (vectorizable_load): Likewise for loads.
7484 2018-04-19  Jakub Jelinek  <jakub@redhat.com>
7486         PR tree-optimization/85446
7487         * match.pd ((intptr_t) x eq/ne CST to x eq/ne (typeof x) cst): Require
7488         the integral and pointer types to have the same precision.
7490         * doc/install.texi: Document --disable-cet being the default and
7491         --enable-cet=auto.
7493 2018-04-18  Martin Liska  <mliska@suse.cz>
7495         * ipa-devirt.c (odr_subtypes_equivalent_p): Fix GNU coding
7496         style.
7498 2018-04-18  Martin Liska  <mliska@suse.cz>
7500         Revert
7501         2018-03-02  Eric Botcazou  <ebotcazou@adacore.com>
7503         PR ipa/83983
7504         * ipa-devirt.c (odr_subtypes_equivalent_p): Get the ODR type of both
7505         arguments if they are comparable.
7507 2018-04-18  Martin Liska  <mliska@suse.cz>
7509         Revert
7510         2018-03-13  Eric Botcazou  <ebotcazou@adacore.com>
7512         PR lto/84805
7513         * ipa-devirt.c (odr_subtypes_equivalent_p): Do not get the ODR type of
7514         incomplete types.
7516 2018-04-18  H.J. Lu  <hongjiu.lu@intel.com>
7518         PR target/85388
7519         * config/i386/i386.c (ix86_expand_split_stack_prologue): Insert
7520         ENDBR after calling __morestack.
7522 2018-04-18  David Malcolm  <dmalcolm@redhat.com>
7524         PR jit/85384
7525         * configure.ac (gcc-driver-name.h): Honor --with-gcc-major-version
7526         by using gcc_base_ver to generate a gcc_driver_version, and use
7527         it when generating GCC_DRIVER_NAME.
7528         * configure: Regenerate.
7530 2018-04-18  Jakub Jelinek  <jakub@redhat.com>
7532         PR target/81084
7533         * config.gcc: Obsolete powerpc*-*-*spe*.
7535 2018-04-17  Jakub Jelinek  <jakub@redhat.com>
7537         PR debug/84637
7538         * dbxout.c (dbxout_int): Perform negation in unsigned int type.
7539         (stabstr_D): Change type of unum from unsigned int to
7540         unsigned HOST_WIDE_INT.  Perform negation in unsigned HOST_WIDE_INT
7541         type.
7543 2018-04-17  Jim Wilson  <jimw@sifive.com>
7545         PR 84856
7546         * config/riscv/riscv.c (riscv_compute_frame_info): Add calls to
7547         RISCV_STACK_ALIGN when using outgoing_args_size and pretend_args_size.
7548         Set arg_pointer_offset after using pretend_args_size.
7550 2018-04-17  Jakub Jelinek  <jakub@redhat.com>
7552         PR rtl-optimization/85431
7553         * dse.c (record_store): Ignore zero width stores.
7555         PR sanitizer/85230
7556         * asan.c (handle_builtin_stack_restore): Adjust comment.  Emit
7557         __asan_allocas_unpoison call and last_alloca_addr = new_sp before
7558         __builtin_stack_restore rather than after it.
7559         * builtins.c (expand_asan_emit_allocas_unpoison): Pass
7560         arg1 + (virtual_dynamic_stack_rtx - stack_pointer_rtx) as second
7561         argument instead of virtual_dynamic_stack_rtx.
7563 2018-04-17  Kelvin Nilsen  <kelvin@gcc.gnu.org>
7565         * config/rs6000/rs6000-protos.h (rs6000_builtin_is_supported_p):
7566         New prototype.
7567         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
7568         Add note to error message to explain internal mapping of overloaded
7569         built-in function name to non-overloaded built-in function name.
7570         * config/rs6000/rs6000.c (rs6000_builtin_is_supported_p): New
7571         function.
7573 2018-04-17  Michael Meissner  <meissner@linux.vnet.ibm.com>
7575         PR target/85424
7576         * config/rs6000/rs6000.md (pack<mode>): Do not try handle a pack
7577         where the inputs overlap with the output.
7579 2018-04-17  Jakub Jelinek  <jakub@redhat.com>
7581         * config/i386/sse.md (vec_extract_lo_<mode><mask_name>): Add
7582         (=v, v) alternative and explicit "memory" attribute.
7583         (vec_extract_lo_<mode><mask_name>): Likewise.  Also add
7584         "type", "prefix", "prefix_extra", "length_immediate" and "mode"
7585         attributes.
7586         (vec_extract_lo_<mode><mask_name>): Add (=v, v) alternative and use
7587         "sselog1" type instead of "sselog".
7588         (vec_extract_hi_<mode><mask_name>): Use "sselog1" type instead of
7589         "sselog".  Remove explicit "memory" attribute.
7590         (vec_extract_lo_v32hi): Add (=v, v) alternative and explicit "memory",
7591         "type", "prefix", "prefix_extra", "length_immediate" and "mode"
7592         attributes.
7593         (vec_extract_hi_v32hi): Merge all alternatives into one, use
7594         "sselog1" type instead of "sselog".  Remove explicit "memory"
7595         attribute.
7596         (vec_extract_hi_v16hi): Merge each pair of alternatives into one,
7597         use "sselog1" type instead of "sselog".  Remove explicit "memory"
7598         attribute.
7599         (vec_extract_lo_v64qi): Add (=v, v) alternative and explicit "memory",
7600         "type", "prefix", "prefix_extra", "length_immediate" and "mode"
7601         attributes.
7602         (vec_extract_hi_v64qi): Merge all alternatives into one, use
7603         "sselog1" type instead of "sselog".  Remove explicit "memory"
7604         attribute.
7605         (vec_extract_hi_v32qi): Merge each pair of alternatives into one,
7606         use "sselog1" type instead of "sselog".  Remove explicit "memory"
7607         attribute.
7609         PR target/85430
7610         * config/i386/i386.md (*ashlqi3_1_slp): Use alu1 type instead of alu.
7612         PR middle-end/85414
7613         * rtlhooks.c (gen_lowpart_if_possible): Don't call gen_lowpart_SUBREG
7614         on a SUBREG.
7616 2018-04-17  Martin Jambor  <mjambor@suse.cz>
7618         PR ipa/85421
7619         * ipa-cp.c (create_specialized_node): Call
7620         expand_all_artificial_thunks if necessary.
7622 2018-04-17  Martin Liska  <mliska@suse.cz>
7624         PR lto/85405
7625         * ipa-devirt.c (odr_types_equivalent_p): Remove trailing
7626         in message, remote space in between '_G' and '('.
7628 2018-04-17  Jakub Jelinek  <jakub@redhat.com>
7630         PR target/85281
7631         * config/i386/sse.md (reduces<mode><mask_scalar_name>,
7632         avx512f_vmcmp<mode>3<round_saeonly_name>,
7633         avx512f_vmcmp<mode>3_mask<round_saeonly_name>,
7634         avx512f_sgetexp<mode><mask_scalar_name><round_saeonly_scalar_name>,
7635         avx512f_rndscale<mode><round_saeonly_name>,
7636         avx512dq_ranges<mode><mask_scalar_name><round_saeonly_scalar_name>,
7637         avx512f_vgetmant<mode><mask_scalar_name><round_saeonly_scalar_name>):
7638         Use %<iptr>2 instead of %2 for -masm=intel.
7639         (avx512f_vcvtss2usi<round_name>, avx512f_vcvtss2usiq<round_name>,
7640         avx512f_vcvttss2usi<round_saeonly_name>,
7641         avx512f_vcvttss2usiq<round_saeonly_name>): Use %k1 instead of %1 for
7642         -masm=intel.
7643         (avx512f_vcvtsd2usi<round_name>, avx512f_vcvtsd2usiq<round_name>,
7644         avx512f_vcvttsd2usi<round_saeonly_name>,
7645         avx512f_vcvttsd2usiq<round_saeonly_name>, ufloatv2siv2df2<mask_name>):
7646         Use %q1 instead of %1 for -masm=intel.
7647         (avx512f_sfixupimm<mode><sd_maskz_name><round_saeonly_name>,
7648         avx512f_sfixupimm<mode>_mask<round_saeonly_name>): Use %<iptr>3 instead
7649         of %3 for -masm=intel.
7650         (sse2_shufpd_v2df_mask): Fix a typo, change %{6%} to %{%6%} for
7651         -masm=intel.
7652         (*avx512vl_<code>v2div2qi2_store): Use %w0 instead of %0 for
7653         -masm=intel.
7654         (*avx512vl_<code><mode>v4qi2_store): Use %k0 instead of %0 for
7655         -masm=intel.
7656         (avx512vl_<code><mode>v4qi2_mask_store): Use a single pattern with
7657         %k0 and %1 for -masm=intel rather than two patterns, one with %0 and
7658         %g1.
7659         (*avx512vl_<code><mode>v8qi2_store): Use %q0 instead of %0 for
7660         -masm=intel.
7661         (avx512vl_<code><mode>v8qi2_mask_store): Use a single pattern with
7662         %q0 and %1 for -masm=intel rather than two patterns, one with %0 and
7663         %g1 and one with %0 and %1.
7664         (avx512er_vmrcp28<mode><round_saeonly_name>,
7665         avx512er_vmrsqrt28<mode><round_saeonly_name>): Use %<iptr>1 instead of
7666         %1 for -masm=intel.
7667         (avx5124fmaddps_4fmaddps_mask, avx5124fmaddps_4fmaddss_mask,
7668         avx5124fmaddps_4fnmaddps_mask, avx5124fmaddps_4fnmaddss_mask,
7669         avx5124vnniw_vp4dpwssd_mask, avx5124vnniw_vp4dpwssds_mask): Swap order
7670         of %0 and %{%4%} for -masm=intel.
7671         (avx5124fmaddps_4fmaddps_maskz, avx5124fmaddps_4fmaddss_maskz,
7672         avx5124fmaddps_4fnmaddps_maskz, avx5124fmaddps_4fnmaddss_maskz,
7673         avx5124vnniw_vp4dpwssd_maskz, avx5124vnniw_vp4dpwssds_maskz): Swap
7674         order of %0 and %{%5%}%{z%} for -masm=intel.
7676 2018-04-17  Jan Hubicka  <jh@suse.cz>
7678         PR lto/85405
7679         * ipa-devirt.c (odr_types_equivalent_p): Handle bit fields.
7681 2018-04-17  Martin Liska  <mliska@suse.cz>
7683         PR ipa/85329
7684         * multiple_target.c (create_dispatcher_calls): Set apostrophes
7685         for target_clone error message.  Make default implementation
7686         clone to be a local declaration.
7687         (separate_attrs): Add new argument and check for an empty
7688         string.
7689         (expand_target_clones): Handle it.
7690         (ipa_target_clone): Make redirection just for target_clones
7691         functions.
7693 2018-04-16  Cesar Philippidis  <cesar@codesourcery.com>
7694             Tom de Vries  <tom@codesourcery.com>
7696         PR middle-end/84955
7697         * omp-expand.c (expand_oacc_for): Add dummy false branch for
7698         tiled basic blocks without omp continue statements.
7700 2018-04-16  Aaron Sawdey  <acsawdey@linux.ibm.com>
7702         PR target/83660
7703         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Mark
7704         vec_extract expression as having side effects to make sure it gets
7705         a cleanup point.
7707 2018-04-16  H.J. Lu  <hongjiu.lu@intel.com>
7709         PR target/85403
7710         * config/i386/i386.c (get_builtin_code_for_version): Check
7711         error_mark_node.
7713 2018-04-16  Olga Makhotina  <olga.makhotina@intel.com>
7715         PR target/84331
7716         * gcc/config.gcc: Support "skylake".
7717         * gcc/config/i386/i386-c.c (ix86_target_macros_internal): Handle
7718         PROCESSOR_SKYLAKE.
7719         * gcc/config/i386/i386.c (m_SKYLAKE): Define.
7720         (processor_target_table): Add "skylake".
7721         (ix86_option_override_internal): Add "skylake".
7722         (get_builtin_code_for_version): Handle PROCESSOR_SKYLAKE,
7723         PROCESSOR_CANNONLAKE.
7724         (get_builtin_code_for_version): Fix priority for
7725         PROCESSOR_ICELAKE_CLIENT, PROCESSOR_ICELAKE_SERVER,
7726         PROCESSOR_SKYLAKE-AVX512.
7727         * gcc/config/i386/i386.h (processor_costs): Define TARGET_SKYLAKE.
7728         (processor_type): Add PROCESSOR_SKYLAKE.
7730 2018-04-16  Paolo Carlini  <paolo.carlini@oracle.com>
7731             Jason Merrill  <jason@redhat.com>
7733         PR c++/85112
7734         * convert.c (convert_to_integer_1): Use direct recursion for
7735         enumeral types and types with a precision less than the number
7736         of bits in their mode.
7738 2018-04-16  Julia Koval  <julia.koval@intel.com>
7740         PR target/84413
7741         * config/i386/x86-tune.def (X86_TUNE_SSE_UNALIGNED_LOAD_OPTIMAL,
7742         X86_TUNE_SSE_UNALIGNED_STORE_OPTIMAL): Add m_SKYLAKE_AVX512
7744 2018-04-14  Segher Boessenkool  <segher@kernel.crashing.org>
7746         PR target/85293
7747         * config/rs6000/rs6000.opt (mdirect-move): Make deprecated.
7748         * doc/invoke.texi (RS/6000 and PowerPC Options): Remove -mdirect-move
7749         and -mno-direct-move.
7751 2018-04-13  Paul A. Clarke  <pc@us.ibm.com>
7753         PR target/83402
7754         * config/rs6000/emmintrin.h (_mm_slli_epi{16,32,64}):
7755         Ensure that vec_splat_s32 is only called with 0 <= shift < 16.
7756         Ensure negative shifts result in {0}.
7758 2018-04-13  Vladimir Makarov  <vmakarov@redhat.com>
7760         PR rtl-optimization/79916
7761         * config/rs6000/rs6000.c (rs6000_emit_move): Use assigned hard
7762         regs (if any) to define how to gnerate SD moves when LRA is in
7763         progress.
7765 2018-04-13  Jakub Jelinek  <jakub@redhat.com>
7767         PR rtl-optimization/85393
7768         * except.h (expand_dw2_landing_pad_for_region): Remove declaration.
7769         * except.c (expand_dw2_landing_pad_for_region): Make static.
7770         * bb-reorder.c (fix_up_crossing_landing_pad): In new_bb emit just
7771         a label and unconditional jump to old_bb, rather than
7772         expand_dw2_landing_pad_for_region insn(s) and jump to single_succ
7773         basic block.
7775         PR rtl-optimization/85376
7776         * simplify-rtx.c (simplify_const_unary_operation): For CLZ and CTZ and
7777         zero op0, if C?Z_DEFINED_VALUE_AT_ZERO is false, return NULL_RTX
7778         instead of a specific value.
7780 2018-04-13  Jan Hubicka  <hubicka@ucw.cz>
7781             Bin Cheng  <bin.cheng@arm.com>
7783         PR tree-optimization/82965
7784         PR tree-optimization/83991
7785         * cfgloopanal.c (expected_loop_iterations_unbounded): Add
7786         by_profile_only parameter.
7787         * cfgloopmanip.c (scale_loop_profile): Further scale loop's profile
7788         information if the loop was predicted to iterate too many times.
7789         * cfgloop.h (expected_loop_iterations_unbounded): Update prototype
7791 2018-04-13  Jan Hubicka  <hubicka@ucw.cz>
7793         PR lto/71991
7794         * config/i386/i386.c (ix86_can_inline_p): Allow safe transitions for
7795         always inline.
7797 2018-04-13  Martin Liska  <mliska@suse.cz>
7798             Jakub Jelinek  <jakub@redhat.com>
7800         PR middle-end/81657
7801         * expr.h (enum block_op_methods): Add BLOCK_OP_NO_LIBCALL_RET.
7802         * expr.c (emit_block_move_hints): Handle BLOCK_OP_NO_LIBCALL_RET.
7803         * builtins.c (expand_builtin_memory_copy_args): Use
7804         BLOCK_OP_NO_LIBCALL_RET method for mempcpy with non-ignored target,
7805         handle dest_addr == pc_rtx.
7807 2018-04-12  Segher Boessenkool  <segher@kernel.crashing.org>
7809         PR target/85291
7810         * config/rs6000/rs6000.md (fix_trunc<mode>si2): Use legacy code if
7811         asked to not generate direct moves.
7812         (fix_trunc<mode>si2_stfiwx): Similar.
7813         (fix_trunc<mode>si2_internal): Similar.
7815 2018-04-12  Jakub Jelinek  <jakub@redhat.com>
7817         PR debug/83157
7818         * var-tracking.c (add_stores): Handle STRICT_LOW_PART SET_DEST.
7819         * cselib.c (cselib_record_sets): For STRICT_LOW_PART dest,
7820         lookup if dest in some wider mode is known to be const0_rtx and
7821         if so, record permanent equivalence for it to be ZERO_EXTEND of
7822         the narrower mode destination.
7824 2018-04-12  Cesar Philippidis  <cesar@codesourcery.com>
7826         * lto-streamer-out.c (output_function): Revert 259346.
7827         * omp-expand.c (expand_oacc_for): Likewise.
7829 2018-04-12  Alexander Monakov  <amonakov@ispras.ru>
7831         PR rtl-optimization/85354
7832         * sel-sched-ir.c (sel_init_pipelining): Move cfg_cleanup call...
7833         * sel-sched.c (sel_global_init): ... here.
7835 2018-04-12  Eric Botcazou  <ebotcazou@adacore.com>
7837         PR target/85238
7838         * lto-wrapper.c (debug_objcopy): Open the files in binary mode.
7839         * dwarf2out.c (dwarf2out_early_finish): Do not generate assembly in LTO
7840         mode for PE-COFF targets.
7841         * config/i386/i386-protos.h (i386_pe_asm_lto_start): Declare.
7842         (i386_pe_asm_lto_end): Likewise.
7843         * config/i386/cygming.h (TARGET_ASM_LTO_START): Define.
7844         (TARGET_ASM_LTO_END): Likewise.
7845         * config/i386/winnt.c (saved_debug_info_level): New static variable.
7846         (i386_pe_asm_lto_start): New function.
7847         (i386_pe_asm_lto_end): Likewise.
7849 2018-04-12  Cesar Philippidis  <cesar@codesourcery.com>
7850             Richard Biener  <rguenther@suse.de>
7852         PR middle-end/84955
7853         * lto-streamer-out.c (output_function): Fix CFG loop state before
7854         streaming out.
7855         * omp-expand.c (expand_oacc_for): Handle calls to internal
7856         functions like regular functions.
7858 2018-04-12  Richard Biener  <rguenther@suse.de>
7860         PR lto/85371
7861         * dwarf2out.c (init_sections_and_labels): Use debug_line_section[_label]
7862         for the early LTO debug to properly generate references to it
7863         during DIE emission.  Do not re-use that for the skeleton for
7864         split-dwarf.
7865         (dwarf2out_early_finish): Likewise.
7867 2018-04-12  Jakub Jelinek  <jakub@redhat.com>
7869         PR target/85328
7870         * config/i386/sse.md
7871         (<mask_codefor>avx512dq_vextract<shuffletype>64x2_1<mask_name> split,
7872         <mask_codefor>avx512f_vextract<shuffletype>32x4_1<mask_name> split,
7873         vec_extract_lo_<mode><mask_name> split, vec_extract_lo_v32hi,
7874         vec_extract_lo_v64qi): For non-AVX512VL if input is xmm16+ reg
7875         and output is a reg, avoid creating invalid lowpart subreg, but
7876         instead split into a 512-bit move.  Don't split if not AVX512VL,
7877         input is xmm16+ reg and output is a mem.
7878         (vec_extract_lo_<mode><mask_name>, vec_extract_lo_v32hi,
7879         vec_extract_lo_v64qi): Don't require split if not AVX512VL, input is
7880         xmm16+ reg and output is a mem.
7882 2018-04-12  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
7884         * config/s390/s390.c (s390_output_indirect_thunk_function): Check
7885         also for flag_dwarf2_cfi_asm.
7887 2018-04-12  Jakub Jelinek  <jakub@redhat.com>
7889         PR rtl-optimization/85342
7890         * regcprop.c (copyprop_hardreg_forward_1): Remove replaced array, use
7891         a bool scalar var inside of the loop instead.  Don't try to update
7892         recog_data.operand after failed apply_change_group.
7894 2018-04-12  Tom de Vries  <tom@codesourcery.com>
7896         PR target/85296
7897         * config/nvptx/nvptx.c (flexible_array_member_type_p): New function.
7898         (nvptx_assemble_decl_begin): Add undefined param.  Declare undefined
7899         array with flexible array member as array without given dimension.
7900         (nvptx_assemble_undefined_decl): Set nvptx_assemble_decl_begin call
7901         argument for undefined param to true.
7903 2018-04-11  Aaron Sawdey  <acsawdey@linux.ibm.com>
7905         PR target/85321
7906         * doc/invoke.texi (RS/6000 and PowerPC Options): Document options
7907         -mcall- and -mtraceback=. Remove options -mabi=spe and -mabi=no-spe
7908         from PowerPC section.
7909         * config/rs6000/sysv4.opt (mcall-): Improve help text.
7910         * config/rs6000/rs6000.opt (mblock-compare-inline-limit=): Trim
7911         help text that is too long.
7912         * config/rs6000/rs6000.opt (mblock-compare-inline-loop-limit=): Trim
7913         help text that is too long.
7914         * config/rs6000/rs6000.opt (mstring-compare-inline-limit=): Trim
7915         help text that is too long.
7917 2018-04-11  Uros Bizjak  <ubizjak@gmail.com>
7919         * config/alpha/alpha.md (stack_probe_internal): Rename
7920         from "probe_stack".  Update all callers.
7922 2018-04-11  Alexander Monakov  <amonakov@ispras.ru>
7924         PR rtl-optimization/84566
7925         * sched-deps.c (sched_analyze_insn): Check deps->readonly when invoking
7926         sched_macro_fuse_insns.
7928 2018-04-11  Alexander Monakov  <amonakov@ispras.ru>
7930         PR target/84301
7931         * sched-rgn.c (add_branch_dependences): Move sel_sched_p check here...
7932         (compute_block_dependences): ... from here.
7934 2018-04-11  Jakub Jelinek  <jakub@redhat.com>
7936         PR tree-optimization/85331
7937         * vec-perm-indices.h (vec_perm_indices::clamp): Change input type
7938         from int to HOST_WIDE_INT.
7940 2018-04-11  Martin Jambor  <mjambor@suse.cz>
7942         PR ipa/84149
7943         * ipa-cp.c (propagate_vals_across_pass_through): Expand comment.
7944         (cgraph_edge_brings_value_p): New parameter dest_val, check if it is
7945         not the same as the source val.
7946         (cgraph_edge_brings_value_p): New parameter.
7947         (gather_edges_for_value): Pass destination value to
7948         cgraph_edge_brings_value_p.
7949         (perhaps_add_new_callers): Likewise.
7950         (get_info_about_necessary_edges): Likewise and exclude values brought
7951         only by self-recursive edges.
7952         (create_specialized_node): Redirect only clones of self-calling edges.
7953         (+self_recursive_pass_through_p): New function.
7954         (find_more_scalar_values_for_callers_subset): Use it.
7955         (find_aggregate_values_for_callers_subset): Likewise.
7956         (known_aggs_to_agg_replacement_list): Removed.
7957         (decide_whether_version_node): Re-calculate known constants for all
7958         remaining context clones.
7960 2018-04-11  Richard Biener  <rguenther@suse.de>
7962         PR lto/85339
7963         * dwarf2out.c (dwarf2out_finish): Remove DW_AT_stmt_list attribute
7964         from early DWARF output.
7965         (dwarf2out_early_finish): Output line info unconditionally into
7966         early DWARF and add reference to it.
7968 2018-04-11  Jakub Jelinek  <jakub@redhat.com>
7970         PR target/85281
7971         * config/i386/sse.md (iptr): Add V16SFmode and V8DFmode cases.
7972         (<avx512>_vec_dup<mode><mask_name>): Use a single pattern for modes
7973         other than V2DFmode using iptr mode attribute.
7974         (<avx512>_vec_dup<mode><mask_name>): Use iptr mode attribute.
7976 2018-04-11  Alexander Monakov  <amonakov@ispras.ru>
7978         PR rtl-optimization/84659
7979         * sel-sched-ir.c (sel_init_pipelining): Invoke cleanup_cfg.
7981 2018-04-11  Jakub Jelinek  <jakub@redhat.com>
7983         PR debug/85302
7984         * dwarf2out.c (skip_loc_list_entry): Don't call size_of_locs if
7985         SIZEP is NULL.
7986         (output_loc_list): Pass address of a dummy size variable even in the
7987         locview handling loop.
7988         (index_location_lists): Add comment on why skip_loc_list_entry can't
7989         call size_of_locs.
7991 2018-04-11  Thomas Preud'homme  <thomas.preudhomme@arm.com>
7993         PR target/85261
7994         * config/arm/arm-builtins.c (arm_expand_builtin): Force input operand
7995         into register.
7997 2018-04-10  Aaron Sawdey  <acsawdey@linux.ibm.com>
7999         PR target/85321
8000         * doc/invoke.texi (RS/6000 and PowerPC Options): Document options
8001         -mblock-compare-inline-limit, -mblock-compare-inline-loop-limit,
8002         and -mstring-compare-inline-limit.
8004 2018-04-10  Segher Boessenkool  <segher@kernel.crashing.org>
8006         PR target/85287
8007         * gcc/config/rs6000/rs6000.md (allocate_stack): Put the residual size
8008         for stack clash protection in a register whenever we need it to be in
8009         a register.
8011 2018-04-10  Segher Boessenkool  <segher@kernel.crashing.org>
8013         * common/config/rs6000/rs6000-common.c (rs6000_option_init_struct):
8014         Enable -fasynchronous-unwind-tables by default if OBJECT_FORMAT_ELF.
8016 2018-04-10  Segher Boessenkool  <segher@kernel.crashing.org>
8018         PR target/85321
8019         * config/rs6000/rs6000.opt (mtraceback=): Show the allowed values in
8020         the help text.
8021         (mlong-double-): Ditto.
8022         * config/rs6000/sysv4.opt (msdata=): Ditto.
8023         (mtls-size=): Ditto.
8025 2018-04-10  Kelvin Nilsen  <kelvin@gcc.gnu.org>
8027         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
8028         erroneous entries for
8029         "vector int vec_ldl (int, long int *)", and
8030         "vector unsigned int vec_ldl (int, unsigned long int *)".
8031         Add comments and entries for
8032         "vector bool char vec_ldl (int, bool char *)",
8033         "vector bool short vec_ldl (int, bool short *)",
8034         "vector bool int vec_ldl (int, bool int *)",
8035         "vector bool long long vec_ldl (int, bool long long *)",
8036         "vector pixel vec_ldl (int, pixel *)",
8037         "vector long long vec_ldl (int, long long *)",
8038         "vector unsigned long long vec_ldl (int, unsigned long long *)".
8039         * config/rs6000/rs6000.c (rs6000_init_builtins): Initialize new
8040         type tree bool_long_long_type_node and correct definition of
8041         bool_V2DI_type_node to make reference to this new type tree.
8042         (rs6000_mangle_type): Replace erroneous reference to
8043         bool_long_type_node with bool_long_long_type_node.
8044         * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add
8045         comments to emphasize sign distinctions for char and int types and
8046         replace RS6000_BTI_bool_long constant with
8047         RS6000_BTI_bool_long_long constant.  Also add comment to restrict
8048         use of RS6000_BTI_pixel.
8049         (bool_long_type_node): Remove this macro definition.
8050         (bool_long_long_type_node): New macro definition
8052 2018-04-10  Jakub Jelinek  <jakub@redhat.com>
8054         PR rtl-optimization/85300
8055         * combine.c (subst): Handle subst of CONST_SCALAR_INT_P new_rtx also
8056         into FLOAT and UNSIGNED_FLOAT like ZERO_EXTEND, return a CLOBBER if
8057         simplify_unary_operation fails.
8059 2018-04-10  Martin Liska  <mliska@suse.cz>
8061         * gdbhooks.py: Add pretty-printers for varpool_node, symtab_node,
8062         cgraph_edge and ipa_ref.
8064 2018-04-10  Jakub Jelinek  <jakub@redhat.com>
8066         PR target/85177
8067         PR target/85255
8068         * config/i386/sse.md
8069         (<extract_type>_vinsert<shuffletype><extract_suf>_mask): Fix
8070         computation of the VEC_MERGE selector from mask.
8071         (<extract_type>_vinsert<shuffletype><extract_suf>_1<mask_name>):
8072         Fix decoding of the VEC_MERGE selector into mask.
8074 2018-04-10  Richard Sandiford  <richard.sandiford@linaro.org>
8076         PR tree-optimization/85286
8077         * tree-vect-data-refs.c (vect_get_smallest_scalar_type):
8079 2018-04-10  Richard Sandiford  <richard.sandiford@linaro.org>
8081         * final.c (final_1): Set insn_last_address as well as
8082         insn_current_address.
8084 2018-04-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
8086         PR target/85173
8087         * explow.c (emit_stack_probe): Call validize_mem on memory location
8088         before passing it to gen_probe_stack.  Create address operand and
8089         legitimize it for the probe_stack_address case.
8091 2018-04-09  Jan Hubicka  <jh@suse.cz>
8093         PR lto/85078
8094         * ipa-devirt.c (rebuild_type_inheritance-hash): New.
8095         * ipa-utils.h (rebuild_type_inheritance-hash): Declare.
8096         * tree.c (free_lang_data_in_type): Fix handling of binfos;
8097         walk basetypes.
8098         (free_lang_data): Rebuild type inheritance graph.
8100 2018-04-09  Martin Sebor  <msebor@redhat.com>
8102         * invoke.texi (-finline-small-functions): Mention other optimization
8103         options.
8104         (-findirect-inlining, -fpartial-inlining): Same.
8105         (-finline-functions-called-once): Same.
8106         (-freorder-blocks-and-partition): Same.
8108 2018-04-09  Jan Hubicka  <jh@suse.cz>
8110         PR rtl/84058
8111         * cfgcleanup.c (try_forward_edges): Do not give up on crossing
8112         jumps; choose last target that matches the criteria (i.e.
8113         no partition changes for non-crossing jumps).
8114         * cfgrtl.c (cfg_layout_redirect_edge_and_branch): Add basic
8115         support for redirecting crossing jumps to non-crossing.
8117 2018-04-09  Alexey Brodkin  <abrodkin@synopsys.com>
8119         * config/arc/arc.c (arc_expand_prologue): Set stack usage info
8120         also for naked functions.
8122 2018-04-09  Claudiu Zissulescu  <claziss@synopsys.com>
8124         * config/arc/arc.md (add_shift): New pattern.
8125         (add_shift2): Likewise.
8126         (sub_shift): Likewise.
8127         (sub_shift_cmp0_noout): Likewise.
8128         (compare_si_ashiftsi): Likewise.
8129         (xbfu_cmp0_noout): New combine pattern.
8130         (xbfu_cmp0"): Likewise.
8131         (movsi_set_cc_insn): Place the predicable variant first.
8132         (commutative_binary_cmp0_noout): Remove clobber.
8133         (commutative_binary_cmp0): New pattern.
8134         (noncommutative_binary_cmp0): Likewise.
8135         (noncommutative_binary_cmp0_noout): Likewise.
8136         (noncommutative_binary_comparison_result_used): Removed.
8137         (rsub_cmp0): New pattern.
8138         (rsub_cmp0_noout): Likewise.
8139         (extzvsi): Changed, keep only meaningful variants.
8140         (SQH, SEZ): New iterators.
8141         (SQH_postfix): New mode attribute.
8142         (SEZ_prefix): New code attribute.
8143         (<SEZ_prefix>xt<SQH_postfix>_cmp0_noout): New instruction pattern.
8144         (<SEZ_prefix>xt<SQH_postfix>_cmp0): Likewise.
8145         * config/arc/predicates.md (cc_set_register): Use CC_REG instead
8146         of numerical value.
8147         (noncommutative_operator): Check the availability of barrel
8148         shifter option.
8150 2018-04-09  Richard Biener  <rguenther@suse.de>
8152         PR tree-optimization/85284
8153         * tree-ssa-loop-niter.c (number_of_iterations_exit_assumptions):
8154         Only use the niter constraining form of simple_iv when the exit
8155         is always executed.
8157 2018-04-09  Tom de Vries  <tom@codesourcery.com>
8159         PR target/84041
8160         * config/nvptx/nvptx.md (define_c_enum "unspecv"): Add UNSPECV_MEMBAR.
8161         (define_expand "*memory_barrier"): New define_expand.
8162         (define_insn "memory_barrier"): New insn.
8164 2018-04-09  Andrey Belevantsev  <abel@ispras.ru>
8166         PR rtl-optimization/80463
8167         PR rtl-optimization/83972
8168         PR rtl-optimization/83480
8170         * sel-sched-ir.c (has_dependence_note_mem_dep): Take into account the
8171         correct producer for the insn.
8172         (tidy_control_flow): Fixup seqnos in case of debug insns.
8174 2018-04-09  Andrey Belevantsev  <abel@ispras.ru>
8176         PR rtl-optimization/83913
8178         * sel-sched-ir.c (merge_expr_data): Choose the middle between two
8179         different sched-times when merging exprs.
8181 2018-04-09  Andrey Belevantsev  <abel@ispras.ru>
8183         PR rtl-optimization/83962
8185         * sel-sched-ir.c (tidy_control_flow): Correct the order in which we call
8186         tidy_fallthru_edge and tidy_control_flow.
8188 2018-04-09  Andrey Belevantsev  <abel@ispras.ru>
8190         PR rtl-optimization/83530
8192         * sel-sched.c (force_next_insn): New global variable.
8193         (remove_insn_for_debug): When force_next_insn is true, also leave only
8194         next insn in the ready list.
8195         (sel_sched_region): When the region wasn't scheduled, make another pass
8196         over it with force_next_insn set to 1.
8198 2018-04-08  Monk Chiang  <sh.chiang04@gmail.com>
8200         * config.gcc (nds32le-*-*, nds32be-*-*): Add nds32/nds32_intrinsic.h
8201         into tm_file.
8202         * config/nds32/constants.md (unspec_volatile_element): Add enum values
8203         for interrupt control.
8204         * config/nds32/nds32-intrinsic.c: Implementation of intrinsic
8205         functions for interrupt control.
8206         * config/nds32/nds32-intrinsic.md: Likewise.
8207         * config/nds32/nds32_intrinsic.h: Likewise.
8208         * config/nds32/nds32.h (nds32_builtins): Likewise.
8210 2018-04-08  Chung-Ju Wu  <jasonwucj@gmail.com>
8212         * config/nds32/nds32.c (nds32_init_machine_status,
8213         nds32_legitimate_index_p, nds32_legitimate_address_p): Consider
8214         strict_aligned_p field.
8215         (nds32_expand_to_rtl_hook): New function.
8216         (TARGET_EXPAND_TO_RTL_HOOK): Define.
8217         * config/nds32/nds32.h (machine_function): Add strict_aligned_p field.
8219 2018-04-08  Kito Cheng  <kito.cheng@gmail.com>
8220             Chung-Ju Wu  <jasonwucj@gmail.com>
8222         * config.gcc (nds32*-*-*): Check that n7 is valid to --with-cpu.
8223         * config/nds32/nds32-n7.md: New file.
8224         * config/nds32/nds32-opts.h (nds32_cpu_type): Add CPU_N7.
8225         * config/nds32/nds32-pipelines-auxiliary.c: Implementation for n7
8226         pipeline.
8227         * config/nds32/nds32-protos.h: More declarations for n7 pipeline.
8228         * config/nds32/nds32.md (pipeline_model): Add n7.
8229         * config/nds32/nds32.opt (mcpu): Support n7 pipeline cpus.
8230         * config/nds32/pipelines.md: Include n7 settings.
8232 2018-04-08  Kito Cheng  <kito.cheng@gmail.com>
8233             Chung-Ju Wu  <jasonwucj@gmail.com>
8235         * config.gcc (nds32*-*-*): Check that e8 is valid to --with-cpu.
8236         * config/nds32/nds32-e8.md: New file.
8237         * config/nds32/nds32-opts.h (nds32-cpu_type): Add CPU_E8.
8238         * config/nds32/nds32-pipelines-auxiliary.c: Implementation for e8
8239         pipeline.
8240         * config/nds32/nds32-protos.h: More declarations for e8 pipeline.
8241         * config/nds32/nds32.md (pipeline_model): Add e8.
8242         * config/nds32/nds32.opt (mcpu): Support e8 pipeline cpus.
8243         * config/nds32/pipelines.md: Include e8 settings.
8245 2018-04-08  Kito Cheng  <kito.cheng@gmail.com>
8246             Chung-Ju Wu  <jasonwucj@gmail.com>
8248         * config.gcc (nds32*-*-*): Check that n6/n8/s8 are valid to --with-cpu.
8249         * config/nds32/nds32-n8.md: New file.
8250         * config/nds32/nds32-opts.h (nds32_cpu_type): Add CPU_N6 and CPU_N8.
8251         * config/nds32/nds32-pipelines-auxiliary.c: Implementation for n8
8252         pipeline.
8253         * config/nds32/nds32-protos.h: More declarations for n8 pipeline.
8254         * config/nds32/nds32-utils.c: More implementations for n8 pipeline.
8255         * config/nds32/nds32.md (pipeline_model): Add n8.
8256         * config/nds32/nds32.opt (mcpu): Support n8 pipeline cpus.
8257         * config/nds32/pipelines.md: Include n8 settings.
8259 2018-04-08  Kito Cheng  <kito.cheng@gmail.com>
8260             Chung-Ju Wu  <jasonwucj@gmail.com>
8262         * config.gcc (nds32*): Add nds32-utils.o into extra_objs.
8263         * config/nds32/nds32-n9-2r1w.md: New file.
8264         * config/nds32/nds32-n9-3r2w.md: New file.
8265         * config/nds32/nds32-opts.h (nds32_cpu_type, nds32_mul_type,
8266         nds32_register_ports): New or modify for cpu n9.
8267         * config/nds32/nds32-pipelines-auxiliary.c: Implementation for n9
8268         pipeline.
8269         * config/nds32/nds32-protos.h: More declarations for n9 pipeline.
8270         * config/nds32/nds32-utils.c: New file.
8271         * config/nds32/nds32.h (TARGET_PIPELINE_N9, TARGET_PIPELINE_SIMPLE,
8272         TARGET_MUL_SLOW): Define.
8273         * config/nds32/nds32.md (pipeline_model): New attribute.
8274         * config/nds32/nds32.opt (mcpu, mconfig-mul, mconfig-register-ports):
8275         New options that support cpu n9.
8276         * config/nds32/pipelines.md: Include n9 settings.
8277         * config/nds32/t-nds32 (nds32-utils.o): Add dependency.
8279 2018-04-08  Chung-Ju Wu  <jasonwucj@gmail.com>
8281         * config/nds32/nds32-md-auxiliary.c (output_cond_branch): Output align
8282         information if necessary.
8283         (output_cond_branch_compare_zero): Likewise.
8284         * config/nds32/nds32.c (nds32_adjust_insn_length): Consider align case.
8285         (nds32_target_alignment): Refine for alignment.
8286         * config/nds32/nds32.h (NDS32_ALIGN_P): Define.
8287         (FUNCTION_BOUNDARY): Modify.
8288         * config/nds32/nds32.md (call_internal, call_value_internal): Consider
8289         align case.
8290         * config/nds32/nds32.opt (malways-align, malign-functions): New.
8292 2018-04-08  Monk Chiang  <sh.chiang04@gmail.com>
8294         * config/nds32/constants.md (unspec_volatile_element): Add values for
8295         TLB operation and data prefetch.
8296         * config/nds32/nds32-intrinsic.c: Implementation of intrinsic
8297         functions for TLB operation and data prefetch.
8298         * config/nds32/nds32-intrinsic.md: Likewise.
8299         * config/nds32/nds32_intrinsic.h: Likewise.
8300         * config/nds32/nds32.c (nds32_dpref_names): Likewise.
8301         (nds32_print_operand): Likewise.
8302         * config/nds32/nds32.h (nds32_builtins): Likewise.
8304 2018-04-07  Thomas Koenig  <tkoenig@gcc.gnu.org>
8305         Andrew Pinski <pinsika@gcc.gnu.org>
8307         PR middle-end/82976
8308         * match.pd: Use constant_boolean_node of correct type instead of
8309         boolean_true_node or boolean_false_node for simplifying
8310         pointer comparisons to zero.
8312 2018-04-07  Jakub Jelinek  <jakub@redhat.com>
8314         PR tree-optimization/80021
8315         * tree.c (verify_type_variant): Make error call in verify_variant_match
8316         translatable and remove final full stop.
8318 2018-04-07  Chung-Ju Wu  <jasonwucj@gmail.com>
8320         * config/nds32/constants.md (unspec_volatile_element): Add
8321         UNSPEC_VOLATILE_EH_RETURN.
8322         * config/nds32/nds32-md-auxiliary.c (nds32_output_stack_push,
8323         nds32_output_stack_pop): Support dwarf exception handling process.
8324         * config/nds32/nds32-protos.h (nds32_dynamic_chain_address): Declare.
8325         * config/nds32/nds32.c (nds32_init_machine_status): Support dwarf
8326         exception handling process.
8327         (nds32_compute_stack_frame): Likewise.
8328         (nds32_return_addr_rtx): Likewise.
8329         (nds32_initial_elimination_offset): Likewise.
8330         (nds32_expand_prologue): Likewise.
8331         (nds32_expand_epilogue): Likewise.
8332         (nds32_dynamic_chain_address): New function.
8333         * config/nds32/nds32.h (machine_function): Add fields for dwarf
8334         exception handling.
8335         (DYNAMIC_CHAIN_ADDRESS): Define.
8336         (EH_RETURN_DATA_REGNO): Define.
8337         (EH_RETURN_STACKADJ_RTX): Define.
8338         * config/nds32/nds32.md (eh_return, nds32_eh_return): Implement
8339         patterns for dwarf exception handling.
8341 2018-04-07  Chung-Ju Wu  <jasonwucj@gmail.com>
8343         * config/nds32/nds32.h: Clean up obsolete macros.
8345 2018-04-07  Monk Chiang  <sh.chiang04@gmail.com>
8347         * config/nds32/constants.md (unspec_element, unspec_volatile_element):
8348         Add enum values for particular instructions.
8349         * config/nds32/nds32-intrinsic.c: Implementation of expanding
8350         particular intrinsic functions.
8351         * config/nds32/nds32-intrinsic.md: Likewise.
8352         * config/nds32/nds32_intrinsic.h: Likewise.
8353         * config/nds32/nds32.h (nds32_builtins): Likewise.
8354         * config/nds32/nds32.md (type): Add pbsad and pbsada.
8355         (btst, ave): New patterns for particular instructions.
8357 2018-04-07  Monk Chiang  <sh.chiang04@gmail.com>
8359         * config/nds32/constants.md (unspec_element, unspec_volatile_element):
8360         Add enum values for atomic load/store and memory sync.
8361         * config/nds32/nds32-intrinsic.c: Implementation for atomic load/store
8362         and memory sync.
8363         * config/nds32/nds32-intrinsic.md: Likewise.
8364         * config/nds32/nds32_intrinsic.h: Likewise.
8365         * config/nds32/nds32.h (nds32_builtins): Likewise.
8367 2018-04-07  Jakub Jelinek  <jakub@redhat.com>
8369         PR tree-optimization/85257
8370         * fold-const.c (native_encode_vector): If not all elts could fit
8371         and off is -1, return 0 rather than offset.
8372         * tree-ssa-sccvn.c (vn_reference_lookup_3): Pass
8373         (offseti - offset2) / BITS_PER_UNIT as 4th argument to
8374         native_encode_expr.  Verify len * BITS_PER_UNIT >= maxsizei.  Don't
8375         adjust buffer in native_interpret_expr call.
8377 2018-04-07  Monk Chiang  <sh.chiang04@gmail.com>
8379         * config/nds32/constants.md (unspec_volatile_element): Add cache
8380         control enum values.
8381         * config/nds32/nds32-intrinsic.c: Add cache control expand functions.
8382         * config/nds32/nds32-intrinsic.md: Add cache control patterns.
8383         * config/nds32/nds32.c (nds32_cctl_names): New.
8384         (nds32_print_operand): Handle cache control register names.
8385         * config/nds32/nds32.h (nds32_builtins): New enum values.
8386         * config/nds32/nds32_intrinsic.h: Add cache control enum types and
8387         macros.
8388         * config/nds32/nds32.md (type): Add mmu.
8389         * config/nds32/pipelines.md (simple_insn): Add mmu.
8391 2018-04-07  Chung-Ju Wu  <jasonwucj@gmail.com>
8393         * config/nds32/nds32.md (type): Remove call.
8394         * config/nds32/pipelines.md (simple_insn): Likewise.
8396 2018-04-07  Monk Chiang  <sh.chiang04@gmail.com>
8398         * config/nds32/constants.md (unspec_volatile_element): Add
8399         UNSPEC_VOLATILE_FMFCSR, UNSPEC_VOLATILE_FMTCSR and
8400         UNSPEC_VOLATILE_FMFCFG.
8401         * config/nds32/nds32-intrinsic.c (bdesc_noarg): New builtin
8402         description for fmfcfg and fmfcsr.
8403         (bdesc_1arg): Add fmtcsr.
8404         (bdesc_2arg): Add fcpynss, fcpyss, fcpynsd and fcpysd.
8405         (nds32_expand_builtin_impl): Deal with FPU intrinsic functions.
8406         * config/nds32/nds32-intrinsic.md (unspec_fcpynsd, unspec_fcpysd,
8407         unspec_fcpynss, unspec_fcpysd, unspec_fcpyss, unspec_fmfcsr,
8408         unspec_fmfcfg): New patterns.
8409         * config/nds32/nds32.h (nds32_builtins): Add NDS32_BUILTIN_FMFCFG,
8410         NDS32_BUILTIN_FMFCSR, NDS32_BUILTIN_FMTCSR, NDS32_BUILTIN_FCPYNSS,
8411         NDS32_BUILTIN_FCPYSS,NDS32_BUILTIN_FCPYNSD and NDS32_BUILTIN_FCPYSD.
8412         * config/nds32/nds32_intrinsic.h (__nds32__fcpynsd, __nds32__fcpynss,
8413         __nds32__fcpysd, __nds32__fcpyss, __nds32__fmfcsr, __nds32__fmtcsr,
8414         __nds32__fmfcfg): Define.
8416 2018-04-07  Monk Chiang  <sh.chiang04@gmail.com>
8418         * config/nds32/nds32.c (nds32_intrinsic_register_names): Add more
8419         intrinsic register names.
8420         * config/nds32/nds32_intrinsic.h (nds32_intrinsic_registers): Add more
8421         intrinsic register enum values and macros.
8423 2018-04-07  Chung-Ju Wu  <jasonwucj@gmail.com>
8425         * config/nds32/nds32.c (nds32_legitimate_index_p): Modify condition
8426         for load/store addressing form.
8427         (nds32_print_operand_address): Likewise.
8429 2018-04-06  Eric Botcazou  <ebotcazou@adacore.com>
8431         PR target/85196
8432         * config/sparc/sparc.c (sparc_expand_move): Deal with symbolic operands
8433         based on LABEL_REF.  Remove useless assertion.
8434         (pic_address_needs_scratch): Fix formatting.
8435         (sparc_legitimize_pic_address): Minor tweaks.
8436         (sparc_delegitimize_address): Adjust assertion accordingly.
8437         * config/sparc/sparc.md (movsi_pic_label_ref): Change label_ref_operand
8438         into symbolic_operand.
8439         (movsi_high_pic_label_ref): Likewise.
8440         (movsi_lo_sum_pic_label_ref): Likewise.
8441         (movdi_pic_label_ref): Likewise.
8442         (movdi_high_pic_label_ref): Likewise.
8443         (movdi_lo_sum_pic_label_ref): Likewise.
8445 2018-04-06  Amaan Cheval  <amaan.cheval@gmail.com>
8447         * config.gcc (x86_64-*-rtems*): Add rtems.h to tm_file for
8448         custom LIB_SPEC setup.
8450 2018-04-06  Ruslan Bukin  <br@bsdpad.com>
8451             Kito Cheng  <kito.cheng@gmail.com>
8453         * config.gcc (riscv*-*-freebsd*): Add RISC-V FreeBSD support.
8454         * config/riscv/freebsd.h: New.
8456 2018-04-06  Chung-Ju Wu  <jasonwucj@gmail.com>
8458         * config/nds32/nds32.c (nds32_adjust_insn_length): Refine.
8459         * config/nds32/nds32.h (ADJUST_INSN_LENGTH): Change the location in
8460         file.
8462 2018-04-06  Chung-Ju Wu  <jasonwucj@gmail.com>
8463             Kito Cheng  <kito.cheng@gmail.com>
8465         * config/nds32/nds32-md-auxiliary.c (nds32_output_return,
8466         nds32_output_call, nds32_symbol_binds_local_p): New functions.
8467         * config/nds32/nds32-protos.h (nds32_output_call,
8468         nds32_output_return): Declare.
8469         * config/nds32/nds32.md: Refine all the call and return patterns.
8471 2018-04-06  Jakub Jelinek  <jakub@redhat.com>
8473         PR debug/85252
8474         * dwarf2out.c (rtl_for_decl_init): For STRING_CST initializer only
8475         build CONST_STRING if TYPE_MAX_VALUE is non-NULL and is INTEGER_CST.
8477         PR rtl-optimization/84872
8478         * cfgloopmanip.c (create_preheader): Use make_forwarder_block even if
8479         nentry == 1 when CP_FALLTHRU_PREHEADERS and single_entry is
8480         EDGE_CROSSING edge.
8482 2018-04-06  Tamar Christina  <tamar.christina@arm.com>
8484         * expr.c (copy_blkmode_to_reg): Revert 254862.
8485         * doc/sourcebuild.texi (word_mode_no_slow_unalign): Likewise.
8487 2018-04-06  Richard Biener  <rguenther@suse.de>
8489         PR middle-end/85244
8490         * tree-dfa.c (get_ref_base_and_extent): Reset seen_variable_array_ref
8491         after seeing a component reference with an adjacent field.  Treat
8492         refs to arrays at struct end of external decls similar to
8493         refs to unconstrained commons.
8495 2018-04-06  Jakub Jelinek  <jakub@redhat.com>
8497         PR sanitizer/85213
8498         * fold-const.c (twoval_comparison_p): Remove SAVE_P argument and don't
8499         look through SAVE_EXPRs with non-side-effects argument.  Adjust
8500         recursive calls.
8501         (fold_comparison): Adjust twoval_comparison_p caller, don't handle
8502         save_p here.
8504 2018-04-06  Richard Biener  <rguenther@suse.de>
8506         PR middle-end/85180
8507         * alias.c (find_base_term): New wrapper around find_base_term
8508         unwinding CSELIB_VAL_PTR changes.
8509         (find_base_term): Do not restore CSELIB_VAL_PTR during the
8510         recursion.
8512 2018-04-06  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
8514         * config/s390/s390.c (s390_z10_optimize_cmp): Expand dedicated NOP
8515         instructions.
8516         * config/s390/s390.md (UNSPECV_NOP_LR_0, UNSPECV_NOP_LR_1): New
8517         constant definitions.
8518         ("nop"): lr 0,0 -> nopr r0
8519         ("nop_lr0", "nop_lr1"): New insn definitions.
8521 2018-04-06  Chung-Ju Wu  <jasonwucj@gmail.com>
8523         * config/nds32/nds32.md (*stack_push, *stack_pop): Use
8524         NDS32_V3PUSH_AVAILABLE_P macro.
8526 2018-04-06  Monk Chiang  <sh.chiang04@gmail.com>
8527             Chung-Ju Wu  <jasonwucj@gmail.com>
8529         * config.gcc (nds32*-*-*): Add v2j v3f v3s checking.
8530         (nds32*-*-*): Add float and fpu_config into supported_defaults.
8531         * common/config/nds32/nds32-common.c (TARGET_DEFAULT_TARGET_FLAGS):
8532         Include TARGET_DEFAULT_FPU_ISA and TARGET_DEFAULT_FPU_FMA.
8533         * config/nds32/constants.md (unspec_element): Add UNSPEC_COPYSIGN,
8534         UNSPEC_FCPYNSD, UNSPEC_FCPYNSS, UNSPEC_FCPYSD and UNSPEC_FCPYSS.
8535         * config/nds32/constraints.md: New constraints and checking for hard
8536         float configuration.
8537         * config/nds32/iterators.md: New mode iterator and attribute for hard
8538         float configuration.
8539         * config/nds32/nds32-doubleword.md: Use hard float alternatives and
8540         patterns.
8541         * config/nds32/nds32-fpu.md: New file.
8542         * config/nds32/nds32-md-auxiliary.c: New functions and checkings to
8543         deal with hard float code generation.
8544         * config/nds32/nds32-opts.h (nds32_arch_type): Add ARCH_V3F and
8545         ARCH_V3S.
8546         (abi_type, float_reg_number): New enum type.
8547         * config/nds32/nds32-predicates.c: New predicates for hard float.
8548         * config/nds32/nds32-protos.h: Declare functions for hard float.
8549         * config/nds32/nds32.c: Implementation for hard float configuration.
8550         * config/nds32/nds32.h: Definitions for hard float configuration.
8551         * config/nds32/nds32.md: Include hard float machine description and
8552         modify patterns for hard float configuration.
8553         * config/nds32/nds32.opt: New options for hard float configuration.
8554         * config/nds32/predicates.md: New predicates for hard float
8555         configuration.
8557 2018-04-06  Kuan-Lin Chen  <kuanlinchentw@gmail.com>
8559         * common/config/nds32/nds32-common.c
8560         (nds32_option_optimization_table): Enable -mreleax-hint by default.
8562 2018-04-05  Jakub Jelinek  <jakub@redhat.com>
8564         PR middle-end/85195
8565         * match.pd (BIT_FIELD_REF CONSTRUCTOR@0 @1 @2): Use view_convert around
8566         CONSTRUCTOR_ELT (ctor, ...)->value.
8568 2018-04-05  Uros Bizjak  <ubizjak@gmail.com>
8570         PR target/85193
8571         * config/i386/i386.md (define_attr "memory"): Handle rotate1 type.
8573 2018-04-05  Tom de Vries  <tom@codesourcery.com>
8575         PR target/85204
8576         * config/nvptx/nvptx.c (nvptx_single): Fix neutering of bb with only
8577         cond jump.
8579 2018-04-05  Shiva Chen  <shiva0217@gmail.com>
8580             Kito Cheng  <kito.cheng@gmail.com>
8582         * config/nds32/constraints.md (U33): Fine-tune checking condition.
8583         * config/nds32/nds32-md-auxiliary.c (nds32_mem_format): Ditto.
8584         * config/nds32/nds32.h (nds32_16bit_address_type): Add
8585         ADDRESS_POST_MODIFY_LO_REG_IMM3U.
8587 2018-04-05  Shiva Chen  <shiva0217@gmail.com>
8588             Kito Cheng  <kito.cheng@gmail.com>
8590         * config/nds32/constraints.md (Ufe): New memory constraint.
8591         * config/nds32/nds32-md-auxiliary.c (nds32_mem_format,
8592         nds32_output_16bit_load): Consider r8 register for lwi45.fe format.
8593         * config/nds32/nds32.c (nds32_print_operand): Output lwi45.fe
8594         operands.
8595         * config/nds32/nds32.h (nds32_16bit_address_type): Add ADDRESS_R8_IMM7U.
8596         * config/nds32/nds32.md (*mov<mode>): Adjust pattern.
8598 2018-04-05  Chung-Ju Wu  <jasonwucj@gmail.com>
8600         * config/nds32/nds32.md: Use optimize_size in the condition for
8601         alu-shift instructions.
8603 2018-04-05  Chung-Ju Wu  <jasonwucj@gmail.com>
8605         * config/nds32/nds32.md (divsi4, udivsi4): New patterns.
8607 2018-04-05  Chung-Ju Wu  <jasonwucj@gmail.com>
8609         * config/nds32/nds32.md (negsi2): Refine pattern.
8611 2018-04-05  Kito Cheng  <kito.cheng@gmail.com>
8612             Chung-Ju Wu  <jasonwucj@gmail.com>
8614         * config/nds32/iterators.md (shift_rotate): New code iterator.
8615         (shift): New code attribute.
8616         * config/nds32/nds32-md-auxiliary.c (nds32_expand_constant): New.
8617         * config/nds32/nds32-protos.h (nds32_expand_constant): Declare.
8618         * config/nds32/nds32.c (nds32_print_operand): Deal with more cases.
8619         * config/nds32/nds32.md (addsi3, *add_srli): Refine implementation for
8620         bit-wise operations.
8621         (andsi3, *andsi3): Ditto.
8622         (iorsi3, *iorsi3, *or_slli, *or_srli): Ditto.
8623         (xorsi3, *xorsi3, *xor_slli, *xor_srli): Ditto.
8624         (<shift>si3, *ashlsi3, *ashrsi3, *lshrsi3, *rotrsi3): Ditto.
8625         * config/nds32/predicates.md (nds32_rimm5u_operand, nds32_and_operand,
8626         nds32_ior_operand, nds32_xor_operand): New predicates.
8628 2018-04-05  Chung-Ju Wu  <jasonwucj@gmail.com>
8630         * config/nds32/nds32.md (add<mode>3, sub<mode>3): Rename to ...
8631         (addsi3, subsi3): ... this.
8633 2018-04-05  Chung-Ju Wu  <jasonwucj@gmail.com>
8635         * config/nds32/nds32.md (*sub_srli, *and_slli): Fine-tune predicator.
8637 2018-04-05  Chung-Ju Wu  <jasonwucj@gmail.com>
8639         * config/nds32/nds32.md: Adjust indention.
8641 2018-04-05  Kito Cheng  <kito.cheng@gmail.com>
8643         * config/nds32/nds32.md (feature): New attribute.
8645 2018-04-05  Chung-Ju Wu  <jasonwucj@gmail.com>
8647         * config/nds32/nds32.md (subtype): New attribute.
8649 2018-04-04  Thomas Preud'homme  <thomas.preudhomme@arm.com>
8651         PR target/85203
8652         * config/arm/arm-builtins.c (arm_expand_builtin): Change
8653         expansion to perform a bitwise AND of the argument followed by a
8654         boolean negation of the result.
8656 2018-04-04  Peter Bergner  <bergner@vnet.ibm.com>
8658         PR rtl-optimization/84878
8659         * ddg.c (add_cross_iteration_register_deps): Use DF_REF_BB to determine
8660         the basic block.  Assert the use reference is not artificial and that
8661         it has an associated insn.
8663 2018-04-04  Michael Matz  <matz@suse.de>
8665         * builtins.c (compute_objsize): Pass correct operand
8666         to array_at_struct_end_p.
8668 2018-04-04  Richard Biener  <rguenther@suse.de>
8670         PR lto/85176
8671         * dwarf2out.c (dwarf2out_register_external_die): Peel namespaces
8672         from contexts for DINFO_LEVEL_TERSE and below.
8674 2018-04-04  Kito Cheng  <kito.cheng@gmail.com>
8676         * config/nds32/nds32-doubleword.md (move_<mode>): Require
8677         resiter_operand condition.
8678         * config/nds32/nds32.md (*move<mode>): Ditto.
8680 2018-04-04  Kito Cheng  <kito.cheng@gmail.com>
8681             Monk Chiang  <sh.chiang04@gmail.com>
8683         * config/nds32/nds32.md (movmisalign<mode>): New pattern.
8685 2018-04-04  Chung-Ju Wu  <jasonwucj@gmail.com>
8687         * config/nds32/nds32.md (movqi, movhi): Merge into mov<mode>.
8689 2018-04-04  Chung-Ju Wu  <jasonwucj@gmail.com>
8690             Kito Cheng  <kito.cheng@gmail.com>
8692         * config/nds32/nds32-md-auxiliary.c (nds32_inverse_cond_code,
8693         nds32_cond_code_str, output_cond_branch,
8694         output_cond_branch_compare_zero, nds32_expand_cbranch,
8695         nds32_expand_cstore, nds32_expand_movcc,
8696         nds32_output_cbranchsi4_equality_zero,
8697         nds32_output_cbranchsi4_equality_reg,
8698         nds32_output_cbranchsi4_equality_reg_or_const_int,
8699         nds32_output_cbranchsi4_greater_less_zero: New functions.
8700         * config/nds32/nds32-protos.h (nds32_expand_cbranch,
8701         nds32_expand_cstore, nds32_expand_movcc,
8702         nds32_output_cbranchsi4_equality_zero,
8703         nds32_output_cbranchsi4_equality_reg,
8704         nds32_output_cbranchsi4_equality_reg_or_const_int,
8705         nds32_output_cbranchsi4_greater_less_zero): Declare.
8706         * config/nds32/predicates.md (nds32_movecc_comparison_operator,
8707         nds32_rimm11s_operand): New predicates.
8708         * config/nds32/nds32.h (nds32_expand_result_type): New enum type.
8709         * config/nds32/nds32.md: Rewrite all the branch and conditional move
8710         patterns.
8712 2018-04-04  Kito Cheng  <kito.cheng@gmail.com>
8714         * config/nds32/nds32-doubleword.md: Refine all the instruction type.
8715         * config/nds32/nds32.md: Ditto.
8716         * config/nds32/pipelines.md: Ditto.
8718 2018-04-04  Richard Biener  <rguenther@suse.de>
8720         PR tree-optimization/85168
8721         * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Avoid
8722         propagating abnormals.
8724 2018-04-04  Chung-Ju Wu  <jasonwucj@gmail.com>
8726         * config/nds32/nds32.md (enabled): Use yes/no for this attribute.
8728 2018-04-04  Chung-Ju Wu  <jasonwucj@gmail.com>
8729             Kito Cheng  <kito.cheng@gmail.com>
8731         * config/nds32/nds32-md-auxiliary.c (nds32_long_call_p): New function.
8732         * config/nds32/nds32-protos.h (nds32_long_call_p): Declare.
8733         * config/nds32/nds32.c (nds32_function_ok_for_sibcall): New function.
8734         (TARGET_FUNCTION_OK_FOR_SIBCALL): Define.
8735         * config/nds32/nds32.md (sibcall_internal): New.
8736         (sibcall_register): Remove.
8737         (sibcall_immediate): Remove.
8738         (sibcall_value_internal): New.
8739         (sibcall_value_register): Remove.
8740         (sibcall_value_immediate): Remove.
8741         * config/nds32/predicates.md (nds32_general_register_operand): New.
8742         (nds32_call_address_operand): New.
8744 2018-04-03  Jakub Jelinek  <jakub@redhat.com>
8746         PR rtl-optimization/85167
8747         * shrink-wrap.c (move_insn_for_shrink_wrap): Don't set bb_uses and
8748         bb_defs if *split_p, instead preinitialize it to NULL.
8750         PR tree-optimization/85156
8751         * builtins.c (fold_builtin_expect): Use save_expr on arg1 to avoid
8752         evaluating the argument multiple times.
8754 2018-04-03  Bill Schmidt  <wschmidt@linux.ibm.com>
8756         * config/rs6000/emmintrin.h (_mm_cvtpd_epi32): Use __vector rather
8757         than vector.
8758         (_mm_cvtpd_ps): Likewise.
8759         (_mm_cvttpd_epi32): Likewise.
8760         * config/rs6000/mmintrin.h (_mm_unpacklo_pi8): Likewise.
8761         * config/rs6000/xmmintrin.h: For strict-ANSI C++ or C11, undefine
8762         vector, pixel, and bool following altivec.h include.
8764 2018-04-03  Martin Sebor  <msebor@redhat.com>
8766         * doc/extend.texi (Common Function Attributes): Clarify.
8767         (const attribute): Likewise.
8768         (pure attribute): Likewise.
8770 2018-04-03  Jakub Jelinek  <jakub@redhat.com>
8772         PR target/85169
8773         * config/i386/i386.c (ix86_expand_vector_set): Use
8774         HOST_WIDE_INT_1U << elt instead of 1 << elt.  Formatting fix.
8776 2018-04-03  Uros Bizjak  <ubizjak@gmail.com>
8778         * config/i386/i386.c (emit_i387_cw_initialization): Always use logic
8779         instructions when changing rounding bits to preserve precision bits
8780         in the x87 control word.
8782 2018-04-03  Martin Liska  <mliska@suse.cz>
8784         PR tree-optimization/82491
8785         * rtl.h (strip_offset_and_add): Replace += suboffset with
8786         poly_uint64 () + suboffset.
8788 2018-03-29  Martin Liska  <mliska@suse.cz>
8789             Martin Jambor  <mjambor@suse.cz>
8791         PR ipa/84947
8792         * ipa-cp.c (propagate_bits_across_jump_function): Bail out if
8793         param_type is not an integral or pointer type.
8795 2018-04-03  Richard Biener  <rguenther@suse.de>
8797         * sese.h (recompute_all_dominators): Remove.
8799 2018-04-02  Martin Sebor  <msebor@redhat.com>
8801         * doc/invoke.texi (-Wrestrict): Fix typos.
8803 2018-04-02  Jim Wilson  <jimw@sifive.com>
8805         * config/riscv/riscv.h (SHIFT_COUNT_TRUNCATED): Set to zero.
8806         * config/riscv/riscv.md (<optab>si3): Use QImode shift count.
8807         (<optab>di3, <optab>si3_extend): Likewise.
8808         (<optab>si3_mask, <optab>si3_mask_1): New.
8809         (<optab>di3_mask, <optab>di3_mask_1): New.
8810         (<optab>si3_extend_mask, <optab>si3_extend_mask_1): New.
8811         (lshrsi3_zero_extend_1): Use VOIDmode shift count.
8812         * config/riscv/sync.md (atomic_test_and_set): Emit QImode shift count.
8814 2018-04-02  Gerald Pfeifer  <gerald@pfeifer.com>
8816         * doc/cpp.texi (Variadic Macros): Fix line continuation in an
8817         example.
8819 2018-04-02  Chung-Ju Wu  <jasonwucj@gmail.com>
8821         * config/nds32/nds32.c (TARGET_CANONICALIZE_COMPARISON): Define.
8822         (nds32_canonicalize_comparison): New function.
8824 2018-04-01  Chung-Ju Wu  <jasonwucj@gmail.com>
8825             Kito Cheng  <kito.cheng@gmail.com>
8826             Kuan-Lin Chen  <kuanlinchentw@gmail.com>
8828         * config.gcc (nds32): Add nds32-relax-opt.o into extra_objs.
8829         * config/nds32/constants.md (unspec_volatile_element): Add
8830         UNSPEC_VOLATILE_RELAX_GROUP.
8831         * config/nds32/nds32-relax-opt.c: New file.
8832         * config/nds32/nds32-predicates.c
8833         (nds32_symbol_load_store_p): New function.
8834         * config/nds32/nds32-protos.h
8835         (nds32_symbol_load_store_p): Declare function.
8836         (make_pass_nds32_relax_opt): Declare new rtl pass function.
8837         * config/nds32/nds32.c
8838         (nds32_register_pass): New function to register pass.
8839         (nds32_register_passes): New function to register passes.
8840         * config/nds32/nds32.md (relax_group): New pattern.
8841         * config/nds32/nds32.opt (mrelax-hint): New option.
8842         * config/nds32/t-nds32 (nds32-relax-opt.o): New dependency.
8844 2018-04-01  Kito Cheng  <kito.cheng@gmail.com>
8846         * config/nds32/t-nds32: Modify files dependency.
8848 2018-04-01  Chung-Ju Wu  <jasonwucj@gmail.com>
8850         * config/nds32/nds32.h (FUNCTION_PROFILER): Output newline character.
8851         (PROFILE_HOOK): Define its implementation.
8853 2018-04-01  Chung-Ju Wu  <jasonwucj@gmail.com>
8855         * config/nds32/nds32.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Use unsigned int
8856         type and 32-bit size.
8858 2018-04-01  Jakub Jelinek  <jakub@redhat.com>
8860         PR middle-end/85090
8861         * config/i386/sse.md (V): Add V64QI and V32HI for TARGET_AVX512F.
8862         (V_128_256): New mode iterator.
8863         (*avx512dq_vextract<shuffletype>64x2_1 splitter): New define_split.
8864         (*avx512f_vextract<shuffletype>32x4_1 splitter): Likewise.
8865         (xop_pcmov_<mode><avxsizesuffix>): Use V_128_256 mode iterator instead
8866         of V.
8867         * config/i386/i386.c (ix86_expand_vector_set): Improve V32HImode and
8868         V64QImode expansion for !TARGET_AVX512BW && TARGET_AVX512F.
8870 2018-03-31  Segher Boessenkool  <segher@kernel.crashing.org>
8872         PR target/83315
8873         * config/rs6000/xmmintrin.h (_mm_set_ps, _mm_max_ps): Handle (quiet)
8874         NaN inputs correctly.
8876 2018-03-30  Peter Bergner  <bergner@vnet.ibm.com>
8878         PR target/80546
8879         * config/rs6000/vsx.md (??r): New mode attribute.
8880         (*vsx_mov<mode>_64bit): Use it.
8881         (*vsx_mov<mode>_32bit): Likewise.
8883 2018-03-30  Martin Sebor  <msebor@redhat.com>
8885         PR tree-optimization/84818
8886         * builtins.c (check_access): Use warning_n.
8888 2018-03-30  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
8890         PR target/83822
8891         * config/rs6000/rs6000-string.c (expand_compare_loop): Fix redundant
8892         condition.
8893         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Fix redundant
8894         condition.
8896 2018-03-30  Julia Koval  <julia.koval@intel.com>
8898         PR target/84413
8899         * x86-tune.def (movx, partial_reg_dependency): Enable for
8900         m_SKYLAKE_AVX512.
8902 2018-03-29  Vladimir Makarov  <vmakarov@redhat.com>
8904         PR inline-asm/84985
8905         * lra-constraints.c (process_alt_operands): Move setting
8906         this_alternative_matches below.
8908 2018-03-29  Martin Liska  <mliska@suse.cz>
8910         PR lto/84995.
8911         * doc/invoke.texi: Document how LTO works with debug info.
8912         Describe auto-load support of binutils.  Mention 'x86-64'
8913         as valid option value of -march option.
8915 2018-03-29  Jakub Jelinek  <jakub@redhat.com>
8917         * config/i386/sse.md (<avx512>_blendm<mode>): Use <sseintprefix>.
8919         PR c/85094
8920         * fold-const.c (operand_equal_p): Handle DEBUG_BEGIN_STMT.
8921         For STATEMENT_LIST, pass down OEP_LEXICOGRAPHIC and maybe
8922         OEP_NO_HASH_CHECK for recursive call, to avoid exponential
8923         checking.
8925 2018-03-28  Peter Bergner  <bergner@vnet.ibm.com>
8927         PR target/84912
8928         * config/rs6000/rs6000.h (RS6000_BTM_POWERPC64): New define.
8929         (RS6000_BTM_COMMON): Add RS6000_BTM_POWERPC64.
8930         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add support
8931         for RS6000_BTM_POWERPC64.
8932         (rs6000_invalid_builtin): Add handling for RS6000_BTM_POWERPC64
8933         (rs6000_builtin_mask_names): Add RS6000_BTM_POWERPC64.
8934         * config/rs6000/rs6000-builtin.def (BU_P7_POWERPC64_MISC_2): New macro
8935         definition.
8936         (DIVDE): Use it.
8937         (DIVDEU): Likewise.
8939 2018-03-28 Carl Love  <cel@us.ibm.com>
8941         Revert
8942         2017-09-27  Carl Love  <cel@us.ibm.com>
8944         * config/rs6000/rs6000-builtin.def (BU_FP_1MISC_1): Add define macro.
8945         (FCTID, FCTIW): Add BU_FP_MISC_1 macro expansion for builtins.
8946         * config/rs6000/rs6000.md (lrintsfsi2): Add define_insn for the
8947         fctiw instruction.
8949 2018-03-28  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
8951         * config/rs6000/xmmintrin.h (_mm_max_pi16): Use __vector __bool
8952         instead of __vector bool.
8953         (_mm_max_pu8): Likewise.
8954         (_mm_min_pi16): Likewise.
8956 2018-03-28  Peter Bergner  <bergner@vnet.ibm.com>
8958         PR target/84912
8959         * config/rs6000/rs6000-builtin.def (DIVWEO): Delete macro expansion.
8960         (DIVWEUO): Likewise.
8961         (DIVDEO): Likewise.
8962         (DIVDEUO): Likewise.
8963         * config/rs6000/rs6000.c (builtin_function_type): Remove support for
8964         DIVWEUO and DIVDEUO.
8965         * config/rs6000/rs6000.md (UNSPEC_DIVEO, UNSPEC_DIVEUO): Delete unspecs.
8966         (UNSPEC_DIV_EXTEND): Remove deleted unspecs.
8967         (div_extend): Likewise.
8968         * doc/extend.texi (__builtin_divweo): Remove documentation for deleted
8969         builtin function.
8970         (__builtin_divweuo): Likewise.
8971         (__builtin_divdeo): Likewise.
8972         (__builtin_divdeuo): Likewise.
8974 2018-03-28  Jakub Jelinek  <jakub@redhat.com>
8976         PR target/85095
8977         * config/i386/i386.md (*add<mode>3_carry_0, *addsi3_carry_zext_0,
8978         *sub<mode>3_carry_0, *subsi3_carry_zext_0): New patterns.
8980         PR tree-optimization/82004
8981         * gimple-match-head.c (optimize_pow_to_exp): New function.
8982         * match.pd (pow(C,x) -> exp(log(C)*x)): Wrap with #if GIMPLE.
8983         Don't fold to exp if optimize_pow_to_exp is false.
8985 2018-03-28  Martin Liska  <mliska@suse.cz>
8987         PR other/84819
8988         * calls.c (initialize_argument_information): Fix trailing space.
8989         * common.opt: Fix typo and provide better explanation for
8990         -fsanitize-coverage option.
8991         * config/i386/i386.opt: Fix typo.
8993 2018-03-28  Jakub Jelinek  <jakub@redhat.com>
8994             Martin Liska  <mliska@suse.cz>
8996         PR sanitizer/85081
8997         * gimplify.c (asan_poison_variable): Don't do the check for
8998         gimplify_omp_ctxp here.
8999         (gimplify_decl_expr): Do it here.
9000         (gimplify_target_expr): Likewise.
9002 2018-03-28  Martin Liska  <mliska@suse.cz>
9004         PR target/84988
9005         * config/i386/i386.c (ix86_function_arg_advance): Do not call
9006         chkp_type_bounds_count if MPX is not enabled.
9008 2018-03-27  Chung-Ju Wu  <jasonwucj@gmail.com>
9010         * config/nds32/nds32.h (BRANCH_COST): Adjust cost.
9012 2018-03-27  Michael Meissner  <meissner@linux.vnet.ibm.com>
9014         PR target/84914
9015         * config/rs6000/rs6000.c (create_complex_muldiv): New helper
9016         function to create the function decl for complex long double
9017         multiply and divide for -mabi=ieeelongdouble.
9018         (init_float128_ieee): Call it.
9020 2018-03-27  H.J. Lu  <hongjiu.lu@intel.com>
9022         PR target/85044
9023         * config/i386/i386.c (ix86_trampoline_init): Insert ENDBR for
9024         -fcf-protection=branch -mibt.
9025         * config/i386/i386.h (TRAMPOLINE_SIZE): Increased by 4 bytes.
9027 2018-03-27  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
9029         PR target/81863
9030         * config/arm/arm.c (arm_valid_symbolic_address): Handle
9031         arm_word_relocations.
9033 2018-03-27  Cesar Philippidis  <cesar@codesourcery.com>
9035         PR target/85056
9036         * config/nvptx/nvptx.c (nvptx_assemble_decl_begin): Add '[]' to
9037         extern array declarations.
9039 2018-03-27  Richard Biener  <rguenther@suse.de>
9041         PR middle-end/84067
9042         * match.pd ((A * C) +- (B * C) -> (A+-B) * C): Guard with
9043         explicit single_use checks.
9045 2018-03-27  Richard Biener  <rguenther@suse.de>
9047         PR tree-optimization/85082
9048         * tree-ssa-sccvn.c (vn_reference_lookup_or_insert_for_pieces):
9049         Valueize the VUSE.
9051 2018-03-27  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
9053         * config.gcc (aarch64*-*-linux*): New TARGET_DEFAULT_ASYNC_UNWIND_TABLES
9054         * common/config/aarch64/aarch64-common.c (aarch64_optimization_table[]):
9055         Turn on fasynchronous-unwind-tables and funwind-tables.
9057 2018-03-26  Uros Bizjak  <ubizjak@gmail.com>
9059         PR target/85073
9060         * config/i386/i386.md (*bmi_blsr_<mode>_cmp): New insn pattern.
9061         (*bmi_blsr_<mode>_ccz): Ditto.
9063 2018-03-26  Tom de Vries  <tom@codesourcery.com>
9065         PR tree-optimization/85063
9066         * omp-general.c (offloading_function_p): New function.  Factor out
9067         of ...
9068         * omp-offload.c (pass_omp_target_link::gate): ... here.
9069         * omp-general.h (offloading_function_p): Declare.
9070         * tree-switch-conversion.c (build_one_array): Mark CSWTCH.x variable
9071         with attribute omp declare target for offloading functions.
9073 2018-03-24  Richard Sandiford  <richard.sandiford@linaro.org>
9075         PR tree-optimization/84005
9076         * tree-data-ref.h (get_base_for_alignment): Declare.
9077         * tree-data-ref.c (get_base_for_alignment_1): New function.
9078         (get_base_for_alignment): Likewise.
9079         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Use
9080         get_base_for_alignment to find a suitable base object, instead
9081         of always using drb->base_address.
9083 2018-03-23  Jakub Jelinek  <jakub@redhat.com>
9085         PR inline-asm/85022
9086         * emit-rtl.c (init_emit_regs): Indicate that VOIDmode MEMs don't have
9087         known size by default.
9089 2018-03-23  Vladimir Makarov  <vmakarov@redhat.com>
9091         PR inline-asm/85030
9092         * lra-constraints.c (process_alt_operands): Don't match BLKmode
9093         and non BLKmode operands.
9095 2018-03-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9097         PR target/85026
9098         * config/arm/arm.md (unaligned_loadhis): Remove first alternative.
9099         Clean up attributes.
9101 2018-03-23  Richard Biener  <rguenther@suse.de>
9103         PR debug/85020
9104         * dwarf2out.c (rtl_for_decl_location): Do not generate RTL early when
9105         we are going to emit early debug for LTO.
9107 2018-03-23  Jakub Jelinek  <jakub@redhat.com>
9109         PR inline-asm/85034
9110         * function.c (match_asm_constraints_1): Don't optimize if input
9111         doesn't satisfy general_operand predicate for output's mode.
9113         PR inline-asm/85022
9114         * alias.c (write_dependence_p): Don't require for x_canonicalized
9115         non-VOIDmode if x has VOIDmode.
9117         PR sanitizer/85029
9118         * sanopt.c (maybe_optimize_ubsan_ptr_ifn): If DECL_REGISTER (base),
9119         just don't try to optimize it rather than assert it never happens.
9121 2018-03-22  Kelvin Nilsen  <kelvin@gcc.gnu.org>
9123         * config/rs6000/rs6000-builtin.def: Remove various BU_ALTIVEC_X
9124         macro expansions for definition of ST_INTERNAL_<mode> and
9125         LD_INTERNAL_<mode> builtins.
9126         * config/rs6000/rs6000-protos.h (rs6000_address_for_altivec):
9127         Remove prototype.
9128         * config/rs6000/rs6000.c (altivec_expand_ld_builtin): Delete this
9129         function.
9130         (altivec_expand_st_builtin): Likewise.
9131         (altivec_expand_builtin): Remove calls to deleted functions.
9132         (rs6000_address_for_altivec): Delete this function.
9133         * config/rs6000/vector.md: Remove expands for
9134         vector_altivec_load_<mode> and vector_altivec_store_<mode>.
9136 2018-03-22  Sudakshina Das  <sudi.das@arm.com>
9138         PR target/84826
9139         * config/arm/arm.h (machine_function): Add static_chain_stack_bytes.
9140         * config/arm/arm.c (arm_compute_static_chain_stack_bytes): Avoid
9141         re-computing once computed.
9142         (arm_expand_prologue): Compute machine->static_chain_stack_bytes.
9143         (arm_init_machine_status): Initialize
9144         machine->static_chain_stack_bytes.
9146 2018-03-22  Kelvin Nilsen  <kelvin@gcc.gnu.org>
9148         PR target/84760
9149         * doc/extend.texi: Add four new prototypes for vec_ld.
9150         * config/rs6000/rs6000-builtin.def (LVX_V1TI): Reorder symbol
9151         definitions for more logical presentation.
9152         * config/rs6000/rs6000-c.c: (altivec_overloaded_builtins): Add
9153         entries for V1TI variants of __builtin_altivec_ld builtin.
9154         * config/rs6000/rs6000.c: (altivec_expand_lv_builtin): Add test and
9155         handling of V1TI variant of LVX icode pattern.
9156         (altivec_expand_builtin): Add case for ALTIVEC_BUILTIN_LVX_V1TI.
9157         (rs6000_gimple_fold_builtin): Likewise.
9158         (altivec_init_builtins): Add code to define
9159         __builtin_altivec_lvx_v1ti function.
9161 2018-03-22  Jakub Jelinek  <jakub@redhat.com>
9163         PR inline-asm/84941
9164         * function.c (match_asm_constraints_1): Don't do the optimization
9165         if input isn't a REG, SUBREG, MEM or constant.
9167 2018-03-22  Tom de Vries  <tom@codesourcery.com>
9169         PR tree-optimization/84956
9170         * tree-ssa-tail-merge.c (find_clusters_1): Skip bbs with
9171         bb_has_abnormal_pred.
9173 2018-03-22  Jakub Jelinek  <jakub@redhat.com>
9175         PR sanitizer/85018
9176         * dwarf2asm.c (dw2_output_indirect_constant_1): Set
9177         DECL_INITIAL (decl) to decl at the end.
9178         * varasm.c (use_blocks_for_decl_p): Revert the 2018-03-20 change,
9179         adjust the comment.
9181 2018-03-21  Joseph Myers  <joseph@codesourcery.com>
9183         * doc/extend.texi (__builtin_tgmath): Document when complex
9184         integer types are treated as _Complex _Float64.
9186 2018-03-21  Tom de Vries  <tom@codesourcery.com>
9188         * doc/extend.texi (__builtin_extend_pointer): Remove pasto.
9190 2018-03-21  Jakub Jelinek  <jakub@redhat.com>
9192         PR tree-optimization/84960
9193         * tree-cfg.c (remove_bb): Don't move forced labels into bb->prev_bb
9194         if it is ENTRY block, move them into single succ of ENTRY in that case.
9196 2018-03-21  Richard Sandiford  <richard.sandiford@linaro.org>
9198         PR tree-optimization/84811
9199         * poly-int.h (poly_span_traits): Remove the T3 parameter and
9200         promote HOST_WIDE_INT T2 - T1 results to unsigned HOST_WIDE_INT.
9201         (maybe_in_range_p, known_in_range_p, ranges_known_overlap_p):
9202         (known_subrange_p): Update accordingly.  Cast each value involved
9203         in the size comparison, rather than casting the result of the
9204         subtraction.
9206 2018-03-21  Jakub Jelinek  <jakub@redhat.com>
9208         PR tree-optimization/84982
9209         * gimple-ssa-store-merging.c (invert_op): Handle boolean inversion
9210         by flipping the least significant bit rather than all bits from
9211         bitpos to bitpos + bitsize - 1.
9213 2018-03-21  Nathan Sidwell  <nathan@acm.org>
9215         * doc/extend.texi (Deprecated Features): Remove mention of
9216         long-deleted deprecations.
9218 2018-03-21  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
9220         PR jit/84288
9221         * configure.ac (gcc_cv_ld_soname) <*-*-solaris2*>: Set.
9222         * configure: Regenerate.
9224 2018-03-21  Tom de Vries  <tom@codesourcery.com>
9226         PR tree-optimization/83126
9227         * tree-parloops.c (num_phis): New function.
9228         (gen_parallel_loop): Detect and handle canonicalize_loop_ivs failure.
9230 2018-03-21  Nathan Sidwell  <nathan@acm.org>
9232         * doc/extend.texi (Deprecated Features): Update deprecated flags,
9233         mention anon-struct/union members and trailing attributes.
9235 2018-03-21  Bin Cheng  <bin.cheng@arm.com>
9237         PR tree-optimization/84969
9238         * tree-loop-distribution.c (fuse_memset_builtins): Don't reorder
9239         builtin memset partitions if they set different rhs values.
9241 2018-03-21  Jakub Jelinek  <jakub@redhat.com>
9243         PR rtl-optimization/84989
9244         * simplify-rtx.c (simplify_unary_operation_1): Don't try to simplify
9245         VEC_DUPLICATE with scalar result mode.
9247 2018-03-21  Martin Liska  <mliska@suse.cz>
9249         PR ipa/84963
9250         * ipa-icf.c (sem_item_optimizer::fixup_points_to_sets): Remove
9251         not intended return statement.
9253 2018-03-21  Martin Liska  <mliska@suse.cz>
9255         PR target/84988
9256         * tree-chkp.c (CHKP_ARRAY_MAX_CHECK_STEPS): Define a new macro.
9257         (chkp_find_bound_slots_1): Limit number of iterations.
9259 2018-03-20  David H. Gutteridge  <dhgutteridge@sympatico.ca>
9261         PR target/84838
9262         * Minor grammar fixes for x86 options.
9264 2018-03-20  Jakub Jelinek  <jakub@redhat.com>
9266         PR debug/84875
9267         * dce.c (delete_unmarked_insns): Don't remove frame related noop moves
9268         holding REG_CFA_RESTORE notes, instead turn them into a USE.
9270 2018-03-20  Peter Bergner  <bergner@vnet.ibm.com>
9272         PR target/83789
9273         * config/rs6000/altivec.md (altivec_lvx_<mode>_2op): Delete define_insn.
9274         (altivec_lvx_<mode>_1op): Likewise.
9275         (altivec_stvx_<mode>_2op): Likewise.
9276         (altivec_stvx_<mode>_1op): Likewise.
9277         (altivec_lvx_<VM2:mode>): New define_expand.
9278         (altivec_stvx_<VM2:mode>): Likewise.
9279         (altivec_lvx_<VM2:mode>_2op_<P:mptrsize>): New define_insn.
9280         (altivec_lvx_<VM2:mode>_1op_<P:mptrsize>): Likewise.
9281         (altivec_stvx_<VM2:mode>_2op_<P:mptrsize>): Likewise.
9282         (altivec_stvx_<VM2:mode>_1op_<P:mptrsize>): Likewise.
9283         * config/rs6000/rs6000-p8swap.c (rs6000_gen_stvx): Use new expanders.
9284         (rs6000_gen_lvx): Likewise.
9285         * config/rs6000/rs6000.c (altivec_expand_lv_builtin): Likewise.
9286         (altivec_expand_stv_builtin): Likewise.
9287         (altivec_expand_builtin): Likewise.
9288         * config/rs6000/vector.md: Likewise.
9290 2018-03-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
9292         PR target/82518
9293         * config/arm/arm.c (arm_array_mode_supported_p): Return false for
9294         BYTES_BIG_ENDIAN.
9296 2018-03-20  Richard Biener  <rguenther@suse.de>
9298         PR target/84986
9299         * config/i386/i386.c (ix86_add_stmt_cost): Only cost
9300         sign-conversions as zero, fall back to standard scalar_stmt
9301         cost for the rest.
9303 2018-03-20  Martin Liska  <mliska@suse.cz>
9305         PR ipa/84825
9306         * predict.c (rebuild_frequencies): Handle case when we have
9307         PROFILE_ABSENT, but flag_guess_branch_prob is false.
9309 2018-03-20  Jakub Jelinek  <jakub@redhat.com>
9311         PR target/84990
9312         * dwarf2asm.c (dw2_output_indirect_constant_1): Temporarily turn off
9313         flag_section_anchors.
9314         * varasm.c (use_blocks_for_decl_p): Remove hack for
9315         dw2_force_const_mem.
9317         PR target/84845
9318         * config/aarch64/aarch64.md (*aarch64_reg_<mode>3_neg_mask2): Rename
9319         to ...
9320         (*aarch64_<optab>_reg_<mode>3_neg_mask2): ... this.  If pseudos can't
9321         be created, use lowpart_subreg of operands[0] rather than operands[0]
9322         itself.
9323         (*aarch64_reg_<mode>3_minus_mask): Rename to ...
9324         (*aarch64_ashl_reg_<mode>3_minus_mask): ... this.
9325         (*aarch64_<optab>_reg_di3_mask2): Use const_int_operand predicate
9326         and n constraint instead of aarch64_shift_imm_di and Usd.
9327         (*aarch64_reg_<optab>_minus<mode>3): Rename to ...
9328         (*aarch64_<optab>_reg_minus<mode>3): ... this.
9330 2018-03-20  Sudakshina Das  <sudi.das@arm.com>
9332         PR target/82989
9333         * config/arm/neon.md (ashldi3_neon): Update ?s for constraints
9334         to favor GPR over NEON registers.
9335         (<shift>di3_neon): Likewise.
9337 2018-03-20  Tom de Vries  <tom@codesourcery.com>
9339         PR target/84952
9340         * config/nvptx/nvptx.c (nvptx_single): Don't neuter bar.sync.
9341         (nvptx_process_pars): Emit bar.sync asap and alap.
9343 2018-03-20  Tom de Vries  <tom@codesourcery.com>
9345         PR target/84954
9346         * config/nvptx/nvptx.c (prevent_branch_around_nothing): Also update
9347         seen_label if seen_label is already set.
9349 2018-03-20  Jakub Jelinek  <jakub@redhat.com>
9351         PR target/84945
9352         * config/i386/i386.c (fold_builtin_cpu): For features above 31
9353         use __cpu_features2 variable instead of __cpu_model.__cpu_features[0].
9354         Use 1U instead of 1.  Formatting fixes.
9356         PR c/84953
9357         * builtins.c (fold_builtin_strpbrk): For strpbrk(x, "") use type
9358         instead of TREE_TYPE (s1) for the return value.
9360 2018-03-19  Jakub Jelinek  <jakub@redhat.com>
9362         PR tree-optimization/84946
9363         * gimple-ssa-store-merging.c (mem_valid_for_store_merging): Compute
9364         bitsize + bitsize in poly_uint64 rather than poly_int64.
9366         PR sanitizer/78651
9367         * dwarf2asm.c: Include fold-const.c.
9368         (dw2_output_indirect_constant_1): Set DECL_INITIAL (decl) to ADDR_EXPR
9369         of decl rather than decl itself.
9371         PR rtl-optimization/84643
9372         * memmodel.h (enum memmodel): Add MEMMODEL_MAX enumerator.
9374 2018-03-19  Maxim Ostapenko  <m.ostapenko@samsung.com>
9376         PR sanitizer/78651
9377         * dwarf2asm.c (dw2_output_indirect_constant_1): Disable ASan before
9378         calling assemble_variable.
9380 2018-03-19  Sudakshina Das  <sudi.das@arm.com>
9382         PR target/81647
9383         * config/aarch64/aarch64-simd.md (vec_cmp<mode><v_int_equiv>): Modify
9384         instructions for UNLT, UNLE, UNGT, UNGE, UNEQ, UNORDERED and ORDERED.
9386 2018-03-19  Jim Wilson  <jimw@sifive.com>
9388         PR bootstrap/84856
9389         * config/riscv/riscv.c (riscv_function_arg_boundary): Use
9390         PREFERRED_STACK_BOUNDARY instead of STACK_BOUNDARY.
9391         (riscv_first_stack_step): Likewise.
9392         (riscv_option_override): Use STACK_BOUNDARY instead of
9393         MIN_STACK_BOUNDARY.
9394         * config/riscv/riscv.h (STACK_BOUNDARY): Renamed from
9395         MIN_STACK_BOUNDARY.
9396         (BIGGEST_ALIGNMENT): Set to 128.
9397         (PREFERRED_STACK_BOUNDARY): Renamed from STACK_BOUNDARY.
9398         (RISCV_STACK_ALIGN): Use PREFERRED_STACK_BOUNDARY instead of
9399         STACK_BOUNDARY.
9401 2018-03-19  Richard Biener  <rguenther@suse.de>
9403         PR tree-optimization/84933
9404         * tree-vrp.c (set_and_canonicalize_value_range): Treat out-of-bound
9405         values as -INF/INF when canonicalizing an ANTI_RANGE to a RANGE.
9407 2018-03-19  Richard Biener  <rguenther@suse.de>
9409         PR tree-optimization/84859
9410         * tree-ssa-phiopt.c (single_trailing_store_in_bb): New function.
9411         (cond_if_else_store_replacement): Perform sinking operation on
9412         single-store BBs regardless of MAX_STORES_TO_SINK setting.
9413         Generalize what a BB with a single eligible store is.
9415 2018-03-19  Richard Biener  <rguenther@suse.de>
9417         PR tree-optimization/84929
9418         * tree-data-ref.c (analyze_siv_subscript_cst_affine): Guard
9419         chrec_is_positive against non-chrec arg.
9421 2018-03-19  Tamar Christina  <tamar.christina@arm.com>
9423         PR target/84711
9424         * config/arm/arm.c (arm_can_change_mode_class): revert r258554.
9426 2018-03-18  Martin Liska  <mliska@suse.cz>
9428         PR rtl-optimization/84635
9429         * regrename.c (build_def_use): Use matches_mode only when
9430         matches >= 0.
9432 2018-03-18  Richard Sandiford  <richard.sandiford@linaro.org>
9434         PR tree-optimization/84913
9435         * tree-vect-loop.c (vectorizable_reduction): Don't try to
9436         vectorize chains of COND_EXPRs.
9438 2018-03-18  Chung-Ju Wu  <jasonwucj@gmail.com>
9440         * config/nds32/nds32.h (MAX_REGS_PER_ADDRESS): Fix the value.
9442 2018-03-18  Chung-Ju Wu  <jasonwucj@gmail.com>
9444         * config/nds32/nds32.h (LOGICAL_OP_NON_SHORT_CIRCUIT): Define.
9446 2018-03-18  Chung-Ju Wu  <jasonwucj@gmail.com>
9448         * config/nds32/nds32.h (CLZ_DEFINED_VALUE_AT_ZERO): Define.
9450 2018-03-17  Chung-Ju Wu  <jasonwucj@gmail.com>
9451             Kito Cheng  <kito.cheng@gmail.com>
9453         * config/nds32/nds32-protos.h (nds32_adjust_reg_alloc_order): Declare.
9454         * config/nds32/nds32.c (nds32_reg_alloc_order_for_speed): New array.
9455         (nds32_adjust_reg_alloc_order): New function.
9456         * config/nds32/nds32.h (ADJUST_REG_ALLOC_ORDER): Define.
9458 2018-03-17  Kito Cheng  <kito.cheng@gmail.com>
9460         * config/nds32/nds32.c (nds32_asm_output_mi_thunk,
9461         nds32_print_operand, nds32_print_operand_address): Use
9462         HOST_WIDE_INT_PRINT_DEC instead.
9464 2018-03-17  Chung-Ju Wu  <jasonwucj@gmail.com>
9466         * config/nds32/nds32.c (nds32_register_priority): Modify cost.
9468 2018-03-17  Jakub Jelinek  <jakub@redhat.com>
9470         PR target/84902
9471         * config/i386/i386.c (initial_ix86_tune_features,
9472         initial_ix86_arch_features): Use unsigned HOST_WIDE_INT rather than
9473         unsigned long long.
9474         (set_ix86_tune_features): Change ix86_tune_mask from unsigned int
9475         to unsigned HOST_WIDE_INT, initialize to HOST_WIDE_INT_1U << ix86_tune
9476         rather than 1u << ix86_tune.  Formatting fix.
9477         (ix86_option_override_internal): Change ix86_arch_mask from
9478         unsigned int to unsigned HOST_WIDE_INT, initialize to
9479         HOST_WIDE_INT_1U << ix86_arch rather than 1u << ix86_arch.
9480         (ix86_function_specific_restore): Likewise.
9482 2018-03-16  Jakub Jelinek  <jakub@redhat.com>
9484         PR target/84899
9485         * postreload.c (reload_combine_recognize_pattern): Perform
9486         INTVAL addition in unsigned HOST_WIDE_INT type to avoid UB and
9487         truncate_int_for_mode the result for the destination's mode.
9489         PR c/84909
9490         * hsa-gen.c (mem_type_for_type): Fix comment typo.
9491         * tree-vect-loop-manip.c (vect_create_cond_for_niters_checks):
9492         Likewise.
9493         * gimple-ssa-warn-restrict.c (builtin_memref::set_base_and_offset):
9494         Likewise.
9496 2018-03-16  Vladimir Makarov  <vmakarov@redhat.com>
9498         PR target/84876
9499         * lra-assigns.c (lra_split_hard_reg_for): Don't use
9500         regno_allocno_class_array and sorted_pseudos.
9501         * lra-constraints.c (spill_hard_reg_in_range): Ignore hard regs in
9502         insns where regno is used.
9504 2018-03-16  Martin Liska  <mliska@suse.cz>
9506         PR ipa/84833
9507         * multiple_target.c (create_dispatcher_calls): Redirect
9508         reference in the symbol table.
9510 2018-03-16  Martin Liska  <mliska@suse.cz>
9512         PR ipa/84722
9513         * multiple_target.c (create_dispatcher_calls): Redirect also
9514         an alias.
9516 2018-03-16  Jakub Jelinek  <jakub@redhat.com>
9518         PR c++/79937
9519         PR c++/82410
9520         * tree.h (TARGET_EXPR_NO_ELIDE): Define.
9521         * gimplify.c (gimplify_modify_expr_rhs): Don't elide TARGET_EXPRs with
9522         TARGET_EXPR_NO_ELIDE flag set unless *expr_p is INIT_EXPR.
9524 2018-03-16  Julia Koval  <julia.koval@intel.com>
9526         * doc/invoke.texi (Skylake Server): Add CLWB.
9527         Cannonlake): Remove CLWB.
9529 2018-03-16  Jakub Jelinek  <jakub@redhat.com>
9531         PR tree-optimization/84841
9532         * tree-ssa-reassoc.c (INTEGER_CONST_TYPE): Change to 1 << 4 from
9533         1 << 3.
9534         (FLOAT_ONE_CONST_TYPE): Define.
9535         (constant_type): Return FLOAT_ONE_CONST_TYPE for -1.0 and 1.0.
9536         (sort_by_operand_rank): Put entries with higher constant_type last
9537         rather than first to match comments.
9539 2018-03-15  Sandra Loosemore  <sandra@codesourcery.com>
9541         * config/nios2/nios2.md (movsi_internal): Fix thinko in
9542         split predicate.
9544 2018-03-15  Jakub Jelinek  <jakub@redhat.com>
9546         PR c++/79085
9547         * calls.c (expand_call): For TREE_ADDRESSABLE rettype ignore alignment
9548         check and use address of target always.
9550 2018-03-15  H.J. Lu  <hongjiu.lu@intel.com>
9552         PR target/84574
9553         * config/i386/i386.c (indirect_thunk_needed): Update comments.
9554         (indirect_thunk_bnd_needed): Likewise.
9555         (indirect_thunks_used): Likewise.
9556         (indirect_thunks_bnd_used): Likewise.
9557         (indirect_return_needed): New.
9558         (indirect_return_bnd_needed): Likewise.
9559         (output_indirect_thunk_function): Add a bool argument for
9560         function return.
9561         (output_indirect_thunk_function): Don't generate alias for
9562         function return thunk.
9563         (ix86_code_end): Call output_indirect_thunk_function to generate
9564         function return thunks.
9565         (ix86_output_function_return): Set indirect_return_bnd_needed
9566         and indirect_return_needed instead of indirect_thunk_bnd_needed
9567         and indirect_thunk_needed.
9569 2018-03-15  Olga Makhotina  <olga.makhotina@intel.com>
9571         * config/i386/sgxintrin.h (_enclv_u32): New intrinsic.
9572         (__enclv_bc, __enclv_cd, __enclv_generic): New definitions.
9573         (ERDINFO, ETRACKC, ELDBC, ELDUC): New leaves.
9575 2018-03-15  David Malcolm  <dmalcolm@redhat.com>
9576             Paul Hua <paul.hua.gm@gmail.com>
9578         PR c/84852
9579         * gcc.dg/fixits-pr84852-1.c: Fix filename in dg-regexp.
9581 2018-03-15  Segher Boessenkool  <segher@kernel.crashing.org>
9583         * config/rs6000/rs6000.c (abi_v4_pass_in_fpr): Add back the
9584         TARGET_DOUBLE_FLOAT and TARGET_SINGLE_FLOAT conditions on the DFmode
9585         resp. SFmode cases.
9587 2018-03-15  Tamar Christina  <tamar.christina@arm.com>
9589         PR target/84711
9590         * config/arm/arm.c (arm_can_change_mode_class): Use GET_MODE_UNIT_SIZE
9591         instead of GET_MODE_SIZE when comparing Units.
9593 2018-03-15  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>
9595         PR target/68256
9596         * varasm.c (hash_section): Return an unchangeble hash value
9597         * config/aarch64/aarch64.c (aarch64_use_blocks_for_constant_p):
9598         Return !aarch64_can_use_per_function_literal_pools_p ().
9600 2018-03-15  Jakub Jelinek  <jakub@redhat.com>
9602         PR target/84860
9603         * optabs.c (emit_conditional_move): Pass address of cmode's copy
9604         rather than address of cmode as last argument to prepare_cmp_insn.
9606 2018-03-15  Julia Koval  <julia.koval@intel.com>
9608         * config/i386/i386.c (F_AVX512VBMI2, F_GFNI, F_VPCLMULQDQ,
9609         F_AVX512VNNI, F_AVX512BITALG): New.
9611 2018-03-14  John David Anglin  <danglin@gcc.gnu.org>
9613         PR target/83451
9614         * config/pa/pa.c (pa_emit_move_sequence):  Always emit secondary reload
9615         insn for floating-point loads and stores.
9617 2018-03-14  Carl Love  <cel@us.ibm.com>
9619         * config/rs6000/rs6000-c.c: Add macro definitions for
9620         ALTIVEC_BUILTIN_VEC_PERMXOR.
9621         * config/rs6000/rs6000.h: Add #define for vec_permxor builtin.
9622         * config/rs6000/rs6000-builtin.def: Add macro expansions for VPERMXOR.
9623         * config/rs6000/altivec.md (altivec_vpermxor): New define expand.
9624         * config/rs6000/rs6000-p8swap.c (rtx_is_swappable_p): Add case
9625         UNSPEC_VPERMXOR.
9626         * config/doc/extend.texi: Add prototypes for vec_permxor.
9628 2018-03-14  David Malcolm  <dmalcolm@redhat.com>
9630         PR c/84852
9631         * diagnostic-show-locus.c (class layout_point): Convert m_line
9632         from int to linenum_type.
9633         (line_span::comparator): Use linenum "compare" function when
9634         comparing line numbers.
9635         (test_line_span): New function.
9636         (layout_range::contains_point): Convert param "row" from int to
9637         linenum_type.
9638         (layout_range::intersects_line_p): Likewise.
9639         (layout::will_show_line_p): Likewise.
9640         (layout::print_source_line): Likewise.
9641         (layout::should_print_annotation_line_p): Likewise.
9642         (layout::print_annotation_line): Likewise.
9643         (layout::print_leading_fixits): Likewise.
9644         (layout::annotation_line_showed_range_p): Likewise.
9645         (struct line_corrections): Likewise for field m_row.
9646         (line_corrections::line_corrections): Likewise for param "row".
9647         (layout::print_trailing_fixits): Likewise.
9648         (layout::get_state_at_point): Likewise.
9649         (layout::get_x_bound_for_row): Likewise.
9650         (layout::print_line): Likewise.
9651         (diagnostic_show_locus): Likewise for locals "last_line" and "row".
9652         (selftest::diagnostic_show_locus_c_tests): Call test_line_span.
9653         * input.c (selftest::test_linenum_comparisons): New function.
9654         (selftest::input_c_tests): Call it.
9655         * selftest.c (selftest::test_assertions): Test ASSERT_GT,
9656         ASSERT_GT_AT, ASSERT_LT, and ASSERT_LT_AT.
9657         * selftest.h (ASSERT_GT): New macro.
9658         (ASSERT_GT_AT): New macro.
9659         (ASSERT_LT): New macro.
9660         (ASSERT_LT_AT): New macro.
9662 2018-03-14  Segher Boessenkool  <segher@kernel.crashing.org>
9664         PR rtl-optimization/84780
9665         * combine.c (distribute_links): Don't make a link based on pc_rtx.
9667 2018-03-14  Martin Liska  <mliska@suse.cz>
9669         * tree.c (record_node_allocation_statistics): Use
9670         get_stats_node_kind.
9671         (get_stats_node_kind): New function extracted from
9672         record_node_allocation_statistics.
9673         (free_node): Use get_stats_node_kind.
9675 2018-03-14  Richard Biener  <rguenther@suse.de>
9677         * tree-ssa-pre.c (compute_antic_aux): Remove code that asserts
9678         that the value-set of ANTIC_IN doesn't grow.
9680         Revert
9681         * tree-ssa-pre.c (struct bb_bitmap_sets): Add visited_with_visited_succs
9682         member.
9683         (BB_VISITED_WITH_VISITED_SUCCS): New define.
9684         (compute_antic): Initialize BB_VISITED_WITH_VISITED_SUCCS.
9686 2018-03-14  Julia Koval  <julia.koval@intel.com>
9688         * config.gcc (icelake-client, icelake-server): New.
9689         (icelake): Remove.
9690         * config/i386/i386.c (initial_ix86_tune_features): Extend to 64 bit.
9691         (initial_ix86_arch_features): Ditto.
9692         (PTA_SKYLAKE): Add SGX.
9693         (PTA_ICELAKE): Remove.
9694         (PTA_ICELAKE_CLIENT): New.
9695         (PTA_ICELAKE_SERVER): New.
9696         (ix86_option_override_internal): Split up icelake on icelake client and
9697         icelake server.
9698         (get_builtin_code_for_version): Ditto.
9699         (fold_builtin_cpu): Ditto.
9700         * config/i386/driver-i386.c (config/i386/driver-i386.c): Ditto.
9701         * config/i386/i386-c.c (ix86_target_macros_internal): Ditto
9702         * config/i386/i386.h (processor_type): Ditto.
9703         * doc/invoke.texi: Ditto.
9705 2018-03-14  Jakub Jelinek  <jakub@redhat.com>
9707         PR sanitizer/83392
9708         * sanopt.c (maybe_optimize_ubsan_ptr_ifn): Handle also
9709         INTEGER_CST offset, add it together with bitpos / 8 and
9710         sign extend based on POINTER_SIZE.
9712         PR target/84844
9713         Revert
9714         2017-04-20  Uros Bizjak  <ubizjak@gmail.com>
9716         PR target/78090
9717         * config/i386/constraints.md (Yc): New register constraint.
9718         * config/i386/i386.md (*float<SWI48:mode><MODEF:mode>2_mixed):
9719         Use Yc constraint for alternative 2 of operand 0.  Remove
9720         preferred_for_speed attribute.
9722 2018-03-14  Richard Biener  <rguenther@suse.de>
9724         PR tree-optimization/84830
9725         * tree-ssa-pre.c (compute_antic_aux): Intersect the new ANTIC_IN
9726         with the old one to avoid oscillations.
9728 2018-03-13  Vladimir Makarov  <vmakarov@redhat.com>
9730         PR target/83712
9731         * lra-assigns.c (find_all_spills_for): Ignore uninteresting
9732         pseudos.
9733         (assign_by_spills): Return a flag of reload assignment failure.
9734         Do not process the reload assignment failures.  Do not spill other
9735         reload pseudos if they has the same reg class.  Update n if
9736         necessary.
9737         (lra_assign): Add a return arg.  Set up from the result of
9738         assign_by_spills call.
9739         (find_reload_regno_insns, lra_split_hard_reg_for): New functions.
9740         * lra-constraints.c (split_reg): Add a new arg.  Use it instead of
9741         usage_insns if it is not NULL.
9742         (spill_hard_reg_in_range): New function.
9743         (split_if_necessary, inherit_in_ebb): Pass a new arg to split_reg.
9744         * lra-int.h (spill_hard_reg_in_range, lra_split_hard_reg_for): New
9745         function prototypes.
9746         (lra_assign): Change prototype.
9747         * lra.c (lra): Add code to deal with fails by splitting hard reg
9748         live ranges.
9750 2018-03-01  Palmer Dabbelt  <palmer@sifive.com>
9752         * config/riscv/riscv.opt (mrelax): New option.
9753         * config/riscv/riscv.c (riscv_file_start): Emit ".option
9754         "norelax" when riscv_mrelax is disabled.
9755         * doc/invoke.texi (RISC-V): Document "-mrelax" and "-mno-relax".
9757 2018-03-13  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
9759         PR target/84743
9760         * config/rs6000/rs6000.c (rs6000_reassociation_width): Disable parallel
9761         reassociation for int modes.
9763 2018-03-13  Richard Sandiford  <richard.sandiford@linaro.org>
9765         * tree-vect-loop-manip.c (vect_maybe_permute_loop_masks):
9766         Reverse the choice between VEC_UNPACK_LO_EXPR and VEC_UNPACK_HI_EXPR
9767         for big-endian.
9768         * config/aarch64/iterators.md (hi_lanes_optab): New int attribute.
9769         * config/aarch64/aarch64-sve.md
9770         (*aarch64_sve_<perm_insn><perm_hilo><mode>): Rename to...
9771         (aarch64_sve_<perm_insn><perm_hilo><mode>): ...this.
9772         (*extend<mode><Vwide>2): Rename to...
9773         (aarch64_sve_extend<mode><Vwide>2): ...this.
9774         (vec_unpack<su>_<perm_hilo>_<mode>): Turn into a define_expand,
9775         renaming the old pattern to...
9776         (aarch64_sve_punpk<perm_hilo>_<mode>): ...this.  Only define
9777         unsigned packs.
9778         (vec_unpack<su>_<perm_hilo>_<SVE_BHSI:mode>): Turn into a
9779         define_expand, renaming the old pattern to...
9780         (aarch64_sve_<su>unpk<perm_hilo>_<SVE_BHSI:mode>): ...this.
9781         (*vec_unpacku_<perm_hilo>_<mode>_no_convert): Delete.
9782         (vec_unpacks_<perm_hilo>_<mode>): Take BYTES_BIG_ENDIAN into
9783         account when deciding which SVE instruction the optab should use.
9784         (vec_unpack<su_optab>_float_<perm_hilo>_vnx4si): Likewise.
9786 2018-03-13  Richard Sandiford  <richard.sandiford@linaro.org>
9788         * config/aarch64/aarch64.md (V4_REGNUM, V8_REGNUM, V12_REGNUM)
9789         (V20_REGNUM, V24_REGNUM, V28_REGNUM, P1_REGNUM, P2_REGNUM, P3_REGNUM)
9790         (P4_REGNUM, P5_REGNUM, P6_REGNUM, P8_REGNUM, P9_REGNUM, P10_REGNUM)
9791         (P11_REGNUM, P12_REGNUM, P13_REGNUM, P14_REGNUM): New define_constants.
9792         (tlsdesc_small_<mode>): Turn a define_expand and use
9793         tlsdesc_small_sve_<mode> for SVE.  Rename original define_insn to...
9794         (tlsdesc_small_advsimd_<mode>): ...this.
9795         (tlsdesc_small_sve_<mode>): New pattern.
9797 2018-03-13  Richard Sandiford  <richard.sandiford@linaro.org>
9799         * config/aarch64/iterators.md (UNSPEC_SMUL_HIGHPART)
9800         (UNSPEC_UMUL_HIGHPART): New constants.
9801         (MUL_HIGHPART): New int iteraor.
9802         (su): Handle UNSPEC_SMUL_HIGHPART and UNSPEC_UMUL_HIGHPART.
9803         * config/aarch64/aarch64-sve.md (<su>mul<mode>3_highpart): New
9804         define_expand.
9805         (*<su>mul<mode>3_highpart): New define_insn.
9807 2018-03-13  Eric Botcazou  <ebotcazou@adacore.com>
9809         PR lto/84805
9810         * ipa-devirt.c (odr_subtypes_equivalent_p): Do not get the ODR type of
9811         incomplete types.
9813 2018-03-13  Martin Liska  <mliska@suse.cz>
9815         PR ipa/84658.
9816         * (sem_item_optimizer::sem_item_optimizer): Initialize new
9817         vector.
9818         (sem_item_optimizer::~sem_item_optimizer): Release it.
9819         (sem_item_optimizer::merge_classes): Register variable aliases.
9820         (sem_item_optimizer::fixup_pt_set): New function.
9821         (sem_item_optimizer::fixup_points_to_sets): Likewise.
9822         * ipa-icf.h: Declare new variables and functions.
9824 2018-03-13  Jakub Jelinek  <jakub@redhat.com>
9826         PR middle-end/84834
9827         * match.pd ((A & C) != 0 ? D : 0): Use INTEGER_CST@2 instead of
9828         integer_pow2p@2 and test integer_pow2p in condition.
9829         (A < 0 ? C : 0): Similarly for @1.
9831         PR middle-end/84831
9832         * stmt.c (parse_output_constraint): If the CONSTRAINT_LEN (*p, p)
9833         characters starting at p contain '\0' character, don't look beyond
9834         that.
9836         PR target/84827
9837         * config/i386/i386.md (round<mode>2): For 387 fancy math, disable
9838         pattern if -ftrapping-math -fno-fp-int-builtin-inexact.
9840         PR target/84828
9841         * reg-stack.c (change_stack): Change update_end var from int to
9842         rtx_insn *, if non-NULL don't update just BB_END (current_block), but
9843         also call set_block_for_insn on the newly added insns and rescan.
9845         PR target/84786
9846         * config/i386/sse.md (sse2_loadhpd): Use Yv constraint rather than v
9847         on the last operand.
9849         PR c++/84704
9850         * tree.c (stabilize_reference_1): Return save_expr (e) for
9851         STATEMENT_LIST even if it doesn't have side-effects.
9853 2018-03-12  Jonathan Wakely  <jwakely@redhat.com>
9855         * doc/invoke.texi (-mclflushopt): Fix spelling of option.
9857 2018-03-12  Renlin Li  <renlin.li@arm.com>
9859         * config/aarch64/aarch64.md (movhf_aarch64): Fix mode argument to
9860         aarch64_output_scalar_simd_mov_immediate.
9862 2018-03-12  Martin Sebor  <msebor@redhat.com>
9864         PR tree-optimization/83456
9865         * gimple-fold.c (gimple_fold_builtin_memory_op): Avoid warning
9866         for perfectly overlapping calls to memcpy.
9867         (gimple_fold_builtin_memory_chk): Same.
9868         (gimple_fold_builtin_strcpy): Handle no-warning.
9869         (gimple_fold_builtin_stxcpy_chk): Same.
9870         * tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Handle no-warning.
9872 2018-03-12  Segher Boessenkool  <segher@kernel.crashing.org>
9874         * config/rs6000/rs6000.c (abi_v4_pass_in_fpr): Add bool "named"
9875         parameter.  Use it for SFmode.
9876         (rs6000_function_arg_advance_1): Adjust.
9877         (rs6000_function_arg): Adjust.
9878         (rs6000_gimplify_va_arg): Pass false for that new parameter.
9880 2018-03-12  Segher Boessenkool  <segher@kernel.crashing.org>
9882         PR rtl-optimization/84169
9883         PR rtl-optimization/84780
9884         * combine.c (can_combine_p): Check for a 2-insn combination whether
9885         the destination register is used between the two insns, too.
9887 2018-03-12  Richard Biener  <rguenther@suse.de>
9889         PR tree-optimization/84803
9890         * tree-if-conv.c (ifcvt_memrefs_wont_trap): Don't do anything
9891         for refs DR analysis didn't process.
9893 2018-03-12  Richard Biener  <rguenther@suse.de>
9895         PR tree-optimization/84777
9896         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): For
9897         force-vectorize loops ignore whether we are optimizing for size.
9899 2018-03-12  Chung-Ju Wu  <jasonwucj@gmail.com>
9901         * config/nds32/nds32.c (nds32_md_asm_adjust): New function.
9902         (TARGET_MD_ASM_ADJUST): Define.
9904 2018-03-12  Monk Chiang  <sh.chiang04@gmail.com>
9905             Kito Cheng  <kito.cheng@gmail.com>
9906             Chung-Ju Wu  <jasonwucj@gmail.com>
9908         * config/nds32/nds32.c (nds32_compute_stack_frame,
9909         nds32_emit_stack_push_multiple, nds32_emit_stack_pop_multiple,
9910         nds32_emit_stack_v3push, nds32_emit_stack_v3pop,
9911         nds32_emit_adjust_frame, nds32_expand_prologue, nds32_expand_epilogue,
9912         nds32_expand_prologue_v3push, nds32_expand_epilogue_v3pop): Refine.
9913         * config/nds32/nds32.h (NDS32_FIRST_CALLEE_SAVE_GPR_REGNUM,
9914         NDS32_LAST_CALLEE_SAVE_GPR_REGNUM, NDS32_V3PUSH_AVAILABLE_P): New.
9915         * config/nds32/nds32.md (prologue, epilogue): Use macro
9916         NDS32_V3PUSH_AVAILABLE_P to do checking.
9918 2018-03-11  Jakub Jelinek  <jakub@redhat.com>
9920         PR debug/58150
9921         * dwarf2out.c (gen_enumeration_type_die): Don't guard adding
9922         DW_AT_declaration for ENUM_IS_OPAQUE on -gdwarf-4 or -gno-strict-dwarf,
9923         but on TYPE_SIZE.  Don't do anything for ENUM_IS_OPAQUE if not creating
9924         a new die.  Don't set TREE_ASM_WRITTEN if ENUM_IS_OPAQUE.  Guard
9925         addition of most attributes on !orig_type_die or the attribute not
9926         being present already.  Assert TYPE_VALUES is NULL for ENUM_IS_OPAQUE.
9928 2018-03-11  Kito Cheng  <kito.cheng@gmail.com>
9929             Chung-Ju Wu  <jasonwucj@gmail.com>
9931         * config/nds32/nds32.c (nds32_cpu_cpp_builtins): Modify to define
9932         __NDS32_VH__ macro.
9933         * config/nds32/nds32.opt (mvh): New option.
9935 2018-03-11  Kito Cheng  <kito.cheng@gmail.com>
9936             Chung-Ju Wu  <jasonwucj@gmail.com>
9938         * config/nds32/nds32-protos.h (nds32_cpu_cpp_builtins): Declare
9939         function.
9940         * config/nds32/nds32.c (nds32_cpu_cpp_builtins): New function.
9941         * config/nds32/nds32.h (TARGET_CPU_CPP_BUILTINS): Modify its
9942         definition.
9944 2018-03-11  Kito Cheng  <kito.cheng@gmail.com>
9945             Chung-Ju Wu  <jasonwucj@gmail.com>
9947         * config/nds32/nds32-memory-manipulation.c (nds32_expand_strlen): New
9948         function.
9949         * config/nds32/nds32-multiple.md (strlensi): New pattern.
9950         * config/nds32/nds32-protos.h (nds32_expand_strlen): Declare function.
9952 2018-03-11  Monk Chiang  <sh.chiang04@gmail.com>
9953             Kito Cheng  <kito.cheng@gmail.com>
9954             Chung-Ju Wu  <jasonwucj@gmail.com>
9956         * config/nds32/constants.md (unspec_element): Add UNSPEC_FFB,
9957         UNSPEC_FFMISM and UNSPEC_FLMISM.
9958         * config/nds32/nds32-intrinsic.c (bdesc_2arg): Add builtin description
9959         for ffb, ffmism and flmism.
9960         * config/nds32/nds32-intrinsic.md (unspec_ffb): Define new pattern.
9961         (unspec_ffmism): Ditto.
9962         (unspec_flmism): Ditto.
9963         (nds32_expand_builtin_impl): Check if string extension is available.
9964         * config/nds32/nds32.h (nds32_builtins): Add NDS32_BUILTIN_FFB,
9965         NDS32_BUILTIN_FFMISM and NDS32_BUILTIN_FLMISM.
9967 2018-03-10  Vladimir Makarov  <vmakarov@redhat.com>
9969         Reverting patch:
9970         2018-03-09  Vladimir Makarov  <vmakarov@redhat.com>
9972         PR target/83712
9973         * lra-assigns.c (assign_by_spills): Return a flag of reload
9974         assignment failure.  Do not process the reload assignment
9975         failures.  Do not spill other reload pseudos if they has the same
9976         reg class.
9977         (lra_assign): Add a return arg.  Set up from the result of
9978         assign_by_spills call.
9979         (find_reload_regno_insns, lra_split_hard_reg_for): New functions.
9980         * lra-constraints.c (split_reg): Add a new arg.  Use it instead of
9981         usage_insns if it is not NULL.
9982         (spill_hard_reg_in_range): New function.
9983         (split_if_necessary, inherit_in_ebb): Pass a new arg to split_reg.
9984         * lra-int.h (spill_hard_reg_in_range, lra_split_hard_reg_for): New
9985         function prototypes.
9986         (lra_assign): Change prototype.
9987         * lra.c (lra): Add code to deal with fails by splitting hard reg
9988         live ranges.
9990 2018-03-10  H.J. Lu  <hongjiu.lu@intel.com>
9992         PR target/84807
9993         * config/i386/i386.opt: Replace Enforcment with Enforcement.
9995 2018-03-10  Alexandre Oliva  <aoliva@redhat.com>
9997         PR debug/84620
9998         * dwarf2out.h (dw_val_class): Add dw_val_class_symview.
9999         (dw_val_node): Add val_symbolic_view.
10000         * dwarf2out.c (dw_line_info_table): Add symviews_since_reset.
10001         (symview_upper_bound): New.
10002         (new_line_info_table): Initialize symviews_since_reset.
10003         (dwarf2out_source_line): Count symviews_since_reset and set
10004         symview_upper_bound.
10005         (dw_val_equal_p): Handle symview.
10006         (add_AT_symview): New.
10007         (print_dw_val): Handle symview.
10008         (attr_checksum, attr_checksum_ordered): Likewise.
10009         (same_dw_val_p, size_of_die): Likewise.
10010         (value_format, output_die): Likewise.
10011         (add_high_low_attributes): Use add_AT_symview for entry_view.
10012         (dwarf2out_finish): Reset symview_upper_bound, clear
10013         zero_view_p.
10015 2018-03-09  Peter Bergner  <bergner@vnet.ibm.com>
10017         PR target/83969
10018         * config/rs6000/rs6000.c (rs6000_offsettable_memref_p): New prototype.
10019         Add strict argument and use it.
10020         (rs6000_split_multireg_move): Update for new strict argument.
10021         (mem_operand_gpr): Disallow all non-offsettable addresses.
10022         * config/rs6000/rs6000.md (*movdi_internal64): Use YZ constraint.
10024 2018-03-09  Jakub Jelinek  <jakub@redhat.com>
10026         PR target/84772
10027         * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Mark va_arg_tmp
10028         temporary TREE_ADDRESSABLE before gimplification of BUILT_IN_MEMCPY.
10029         * config/powerpcspe/powerpcspe.c (rs6000_gimplify_va_arg): Likewise.
10031         PR c++/84767
10032         * tree-inline.c (copy_tree_body_r): For INDIRECT_REF of a remapped
10033         decl, use remap_type if we want to use the type.
10035 2018-03-09  Martin Sebor  <msebor@redhat.com>
10037         PR tree-optimization/84526
10038         * gimple-ssa-warn-restrict.c (builtin_memref::set_base_and_offset):
10039         Remove dead code.
10040         (builtin_access::generic_overlap): Be prepared to handle non-array
10041         base objects.
10043 2018-03-09  Alexandre Oliva  <aoliva@redhat.com>
10045         PR rtl-optimization/84682
10046         * lra-constraints.c (process_address_1): Check is_address flag
10047         for address constraints.
10048         (process_alt_operands): Likewise.
10049         * lra.c (lra_set_insn_recog_data): Pass asm operand locs to
10050         preprocess_constraints.
10051         * recog.h (preprocess_constraints): Add oploc parameter.
10052         Adjust callers.
10053         * recog.c (preprocess_constraints): Test address_operand for
10054         CT_ADDRESS constraints.
10056 2018-03-09  Vladimir Makarov  <vmakarov@redhat.com>
10058         PR target/83712
10059         * lra-assigns.c (assign_by_spills): Return a flag of reload
10060         assignment failure.  Do not process the reload assignment
10061         failures.  Do not spill other reload pseudos if they has the same
10062         reg class.
10063         (lra_assign): Add a return arg.  Set up from the result of
10064         assign_by_spills call.
10065         (find_reload_regno_insns, lra_split_hard_reg_for): New functions.
10066         * lra-constraints.c (split_reg): Add a new arg.  Use it instead of
10067         usage_insns if it is not NULL.
10068         (spill_hard_reg_in_range): New function.
10069         (split_if_necessary, inherit_in_ebb): Pass a new arg to split_reg.
10070         * lra-int.h (spill_hard_reg_in_range, lra_split_hard_reg_for): New
10071         function prototypes.
10072         (lra_assign): Change prototype.
10073         * lra.c (lra): Add code to deal with fails by splitting hard reg
10074         live ranges.
10076 2018-03-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10078         PR target/83193
10079         * common/config/arm/arm-common.c (arm_parse_arch_option_name):
10080         Accept complain bool parameter.  Only emit errors if it is true.
10081         (arm_parse_cpu_option_name): Likewise.
10082         (arm_target_thumb_only): Adjust callers of the above.
10083         * config/arm/arm-protos.h (arm_parse_cpu_option_name): Adjust
10084         prototype to take a default true bool parameter.
10085         (arm_parse_arch_option_name): Likewise.
10087 2018-03-09  David Malcolm  <dmalcolm@redhat.com>
10088             Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
10090         PR jit/64089
10091         PR jit/84288
10092         * Makefile.in (LD_VERSION_SCRIPT_OPTION, LD_SONAME_OPTION): New.
10093         * configure: Regenerate.
10094         * configure.ac ("linker --version-script option"): New.
10095         ("linker soname option"): New.
10097 2018-03-09  Richard Biener  <rguenther@suse.de>
10099         PR tree-optimization/84775
10100         * tree-if-conv.c (add_bb_predicate_gimplified_stmts): Delink
10101         immediate uses of predicate stmts and mark them modified.
10103         Revert
10104         PR tree-optimization/84178
10105         * tree-if-conv.c (combine_blocks): Move insert_gimplified_predicates
10106         to caller.
10107         (version_loop_for_if_conversion): Delay update_ssa call.
10108         (tree_if_conversion): Delay update_ssa until after predicate
10109         insertion.
10111 2018-03-09  Eric Botcazou  <ebotcazou@adacore.com>
10113         PR target/84763
10114         * config/i386/winnt.c (i386_pe_seh_cold_init): Use small pre-allocation
10115         when the function accesses prior frames.
10117 2018-03-08  Jakub Jelinek  <jakub@redhat.com>
10119         PR debug/84456
10120         * dwarf2out.c (dw_loc_list): If list && loc_list->first->next, call
10121         gen_llsym, otherwise call maybe_gen_llsym.
10123         PR inline-asm/84742
10124         * recog.c (asm_operand_ok): Return 0 if multi-character constraint
10125         has ',' character inside of it.
10127 2018-03-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10129         PR target/84748
10130         * config/aarch64/aarch64.md (*compare_cstore<mode>_insn): Mark pattern
10131         as clobbering CC_REGNUM.
10133 2018-03-08  Richard Biener  <rguenther@suse.de>
10135         PR middle-end/84552
10136         * tree-scalar-evolution.c: Include tree-into-ssa.h.
10137         (follow_copies_to_constant): Do not follow SSA names registered
10138         for update.
10140 2018-03-08  Richard Biener  <rguenther@suse.de>
10142         PR tree-optimization/84178
10143         * tree-if-conv.c (combine_blocks): Move insert_gimplified_predicates
10144         to caller.
10145         (version_loop_for_if_conversion): Delay update_ssa call.
10146         (tree_if_conversion): Delay update_ssa until after predicate
10147         insertion.
10149 2018-03-08  David Malcolm  <dmalcolm@redhat.com>
10151         PR tree-optimization/84178
10152         * tree-if-conv.c (release_bb_predicate): Remove the
10153         the assertion that the stmts have NULL use_ops.
10154         Discard the statements, asserting that they haven't
10155         yet been added to a BB.
10157 2018-03-08  Richard Biener  <rguenther@suse.de>
10159         PR tree-optimization/84746
10160         * tree-ssa-pre.c (find_leader_in_sets): Deal with SET1 being NULL.
10161         (phi_translate): Pass in destination ANTIC_OUT set.
10162         (phi_translate_1): Likewise.  For a simplified result lookup
10163         a leader in ANTIC_OUT and AVAIL_OUT, not the ANTIC_IN sets.
10164         (phi_translate_set): Adjust.
10165         (do_pre_regular_insertion): Likewise.
10166         (do_pre_partial_partial_insertion): Likewise.
10168 2018-03-08  Martin Liska  <mliska@suse.cz>
10170         PR gcov-profile/84735
10171         * doc/gcov.texi: Document usage of profile files.
10172         * gcov-io.h: Document changes in the format.
10174 2018-03-08  Alexandre Oliva  <aoliva@redhat.com>
10176         PR debug/84404
10177         PR debug/84408
10178         * dwarf2out.c (struct dw_line_info_table): Update comments for
10179         view == -1.
10180         (FORCE_RESET_NEXT_VIEW): New.
10181         (FORCE_RESETTING_VIEW_P): New.
10182         (RESETTING_VIEW_P): Check for -1 too.
10183         (ZERO_VIEW_P): Likewise.
10184         (new_line_info_table): Force-reset next view.
10185         (dwarf2out_begin_function): Likewise.
10186         (dwarf2out_source_line): Simplify zero_view_p initialization.
10187         Test FORCE_RESETTING_VIEW_P and RESETTING_VIEW_P instead of
10188         view directly.  Omit view when omitting .loc at line 0.
10190 2018-03-08  Jakub Jelinek  <jakub@redhat.com>
10192         PR tree-optimization/84740
10193         * tree-switch-conversion.c (process_switch): Call build_constructors
10194         only if info.phi_count is non-zero.
10196         PR tree-optimization/84739
10197         * tree-tailcall.c (find_tail_calls): Check call arguments against
10198         DECL_ARGUMENTS (current_function_decl) rather than
10199         DECL_ARGUMENTS (func) when checking for tail recursion.
10201 2018-03-07  Jakub Jelinek  <jakub@redhat.com>
10203         * doc/contrib.texi: Add entries for Martin Liska, David Malcolm,
10204         Marek Polacek, extend Vladimir Makarov's, Jonathan Wakely's and
10205         Volker Reichelt's entry and add entries for people that perform
10206         GCC fuzzy testing and report numerous bugs.
10208 2018-03-07  Segher Boessenkool  <segher@kernel.crashing.org>
10210         PR target/82411
10211         * config/rs6000/rs6000.c (rs6000_elf_in_small_data_p): Don't put
10212         readonly data in sdata, if that is disabled.
10213         * config/rs6000/sysv4.opt (mreadonly-in-sdata): New option.
10214         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
10215         -mreadonly-in-sdata option.
10217 2018-03-07  Martin Sebor  <msebor@redhat.com>
10219         PR tree-optimization/84468
10220         * tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Consider successor
10221         basic block when looking for nul assignment.
10223 2018-03-07  Eric Botcazou  <ebotcazou@adacore.com>
10225         PR target/84277
10226         * except.h (output_function_exception_table): Adjust prototype.
10227         * except.c (output_function_exception_table): Remove FNNAME parameter
10228         and add SECTION parameter.  Ouput one part of the table at a time.
10229         * final.c (final_scan_insn_1) <NOTE_INSN_SWITCH_TEXT_SECTIONS>: Output
10230         the first part of the exception table and emit unwind directives.
10231         * config/i386/i386-protos.h (i386_pe_end_cold_function): Declare.
10232         (i386_pe_seh_cold_init): Likewise.
10233         * config/i386/cygming.h (ASM_DECLARE_COLD_FUNCTION_NAME): New macro.
10234         (ASM_DECLARE_COLD_FUNCTION_SIZE): Likewise.
10235         * config/i386/i386.c (x86_expand_epilogue): Fix wording in comment.
10236         (ix86_output_call_insn): Emit a nop in one more case for SEH.
10237         * config/i386/winnt.c: Include except.h.
10238         (struct seh_frame_state): Add reg_offset, after_prologue and
10239         in_cold_section fields.
10240         (i386_pe_seh_end_prologue): Set seh->after_prologue.
10241         (i386_pe_seh_cold_init): New function.
10242         (i386_pe_seh_fini): Add COLD parameter and bail out if it is not equal
10243         to seh->in_cold_section.
10244         (seh_emit_push): Record the offset of the push.
10245         (seh_emit_save): Record the offet of the save.
10246         (i386_pe_seh_unwind_emit): Deal with NOTE_INSN_SWITCH_TEXT_SECTIONS.
10247         Test seh->after_prologue to disregard the epilogue.
10248         (i386_pe_end_function): Pass FALSE to i386_pe_seh_fini.
10249         (i386_pe_end_cold_function): New function.
10251 2018-03-07  Jakub Jelinek  <jakub@redhat.com>
10253         PR fortran/84565
10254         * config/aarch64/predicates.md (aarch64_simd_reg_or_zero): Use
10255         aarch64_simd_or_scalar_imm_zero rather than aarch64_simd_imm_zero.
10257         PR c++/84704
10258         * gimple-expr.c (create_tmp_var_raw): Set DECL_NAMELESS flag
10259         on tmp_var.
10260         * tree-pretty-print.c (dump_decl_name): For TDF_COMPARE_DEBUG,
10261         don't print names of DECL_NAMELESS DECL_IGNORED_P decls.
10263         PR middle-end/84723
10264         * multiple_target.c: Include tree-inline.h and intl.h.
10265         (expand_target_clones): Diagnose and fail if node->definition and
10266         !tree_versionable_function_p (node->decl).
10268 2018-03-06  John David Anglin  <danglin@gcc.gnu.org>
10270         * config/pa/pa.h (ASM_GENERATE_INTERNAL_LABEL): Revise to use
10271         sprint_ul.
10272         (ASM_OUTPUT_ADDR_VEC_ELT): Revise for above change.
10273         (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
10274         * config/pa/pa64-hpux.h (ASM_GENERATE_INTERNAL_LABEL): Revise as above.
10276 2018-03-06  Jakub Jelinek  <jakub@redhat.com>
10278         PR target/84710
10279         * combine.c (try_combine): Use reg_or_subregno instead of handling
10280         just paradoxical SUBREGs and REGs.
10282 2018-03-06  Claudiu Zissulescu  <claziss@synopsys.com>
10284         * config/arc/arc.c (arc_finalize_pic): Remove function.
10285         (arc_must_save_register): We use single base PIC register, remove
10286         checks to save/restore the PIC register.
10287         (arc_expand_prologue): Likewise.
10288         * config/arc/arc-protos.h (arc_set_default_type_attributes):
10289         Remove.
10290         (arc_verify_short): Likewise.
10291         (arc_attr_type): Likewise.
10292         * config/arc/arc.c (arc_set_default_type_attributes): Remove.
10293         (walk_stores): Likewise.
10294         (arc_address_cost): Make it static.
10295         (arc_verify_short): Likewise.
10296         (branch_dest): Likewise.
10297         (arc_attr_type): Likewise.
10298         * config/arc/arc.c (TARGET_ADJUST_INSN_LENGTH): Remove.
10299         (TARGET_INSN_LENGTH_PARAMETERS): Likewise.
10300         (arc_final_prescan_insn): Remove inserting the nops due to
10301         hardware hazards.  It is done in reorg step.
10302         (insn_length_variant_t): Remove.
10303         (insn_length_parameters_t): Likewise.
10304         (arc_insn_length_parameters): Likewise.
10305         (arc_get_insn_variants): Likewise.
10306         * config/arc/arc.h (TARGET_UPSIZE_DBR): Remove.
10308 2018-03-06  Jakub Jelinek  <jakub@redhat.com>
10310         PR inline-asm/84683
10311         * reg-stack.c (move_for_stack_reg): If any_malformed_asm, avoid
10312         assertion failure.
10314         PR tree-optimization/84687
10315         * omp-simd-clone.c (simd_clone_create): Clear DECL_BUILT_IN_CLASS
10316         on new_node->decl.
10317         * match.pd (pow(C,x)*expN(y) -> expN(logN(C)*x+y)): New optimization.
10319 2018-03-05  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
10321         * config/rs6000/rs6000-builtin.def (rs6000_speculation_barrier):
10322         Rename to ppc_speculation_barrier.
10323         * config/rs6000/rs6000.c (rs6000_init_builtins): Rename builtin to
10324         __builtin_ppc_speculation_barrier.
10326 2018-03-05  Jakub Jelinek  <jakub@redhat.com>
10328         PR target/84700
10329         * combine.c (combine_simplify_rtx): Don't try to simplify if
10330         if_then_else_cond returned non-NULL, but either true_rtx or false_rtx
10331         are equal to x.
10333 2018-03-05  Segher Boessenkool  <segher@kernel.crashing.org>
10335         * config/rs6000/rs6000.c (rs6000_loop_align): Don't align tiny loops
10336         to 32 bytes when compiling for POWER9.
10338 2018-03-05  Jakub Jelinek  <jakub@redhat.com>
10340         PR target/84564
10341         * config/i386/i386.c (ix86_function_ok_for_sibcall): Check for
10342         regparm >= 3 with no arg reg available also for calls with
10343         flag_force_indirect_call.  Pass decl to ix86_function_regparm.
10345         PR target/84524
10346         * config/i386/sse.md (*<code><mode>3): Replace <mask_prefix3> with
10347         orig,vex.
10348         (*<plusminus_insn><mode>3): Likewise.  Remove <mask_operand3> uses.
10350 2018-03-05  Peter Bergner  <bergner@vnet.ibm.com>
10352         PR target/84264
10353         * config/rs6000/vector.md (mov<mode>): Disallow altivec memory operands.
10355 2018-03-05  Richard Biener  <rguenther@suse.de>
10357         PR tree-optimization/84486
10358         * tree-ssa-pre.c (create_expression_by_pieces): Remove dead code.
10359         When inserting a __builtin_assume_aligned call set the LHS
10360         SSA name alignment info accordingly.
10362 2018-03-05  Wilco Dijkstra  <wdijkstr@arm.com>
10364         PR tree-optimization/84114
10365         * config/aarch64/aarch64.c (aarch64_reassociation_width)
10366         Avoid reassociation of FLOAT_MODE addition.
10368 2018-03-05  Olga Makhotina  <olga.makhotina@intel.com>
10370         * common/config/i386/i386-common.c (OPTION_MASK_ISA_PCONFIG_SET,
10371         OPTION_MASK_ISA_PCONFIG_UNSET, OPTION_MASK_ISA_WBNOINVD_SET,
10372         OPTION_MASK_ISA_WBNOINVD_UNSET): New definitions.
10373         (ix86_handle_option): Handle -mpconfig and -mwbnoinvd.
10374         * config.gcc (pconfigintrin.h, wbnoinvdintrin.h) : Add headers.
10375         * config/i386/cpuid.h (bit_PCONFIG, bit_WBNOINVD): New.
10376         * config/i386/driver-i386.c (host_detect_local_cpu): Detect -mpconfig
10377         and -mwbnoinvd.
10378         * config/i386/i386-builtin.def (__builtin_ia32_wbnoinvd,
10379         __builtin_ia32_wbinvd): New builtins.
10380         (SPECIAL_ARGS2): New.
10381         * config/i386/i386-c.c (__WBNOINVD__, __PCONFIG__): New.
10382         (SPECIAL_ARGS2): New.
10383         * config/i386/i386.c (ix86_target_string): Add -mpconfig and -mwbnoinvd.
10384         (ix86_valid_target_attribute_inner_p): Ditto.
10385         (ix86_init_mmx_sse_builtins): Add special_args2.
10386         * config/i386/i386.h (TARGET_PCONFIG, TARGET_PCONFIG_P, TARGET_WBNOINVD,
10387         TARGET_WBNOINVD_P): New.
10388         * config/i386/i386.md (UNSPECV_WBINVD, UNSPECV_WBNOINVD): New.
10389         (define_insn "wbinvd", define_insn "wbnoinvd"): New.
10390         * config/i386/i386.opt: Add -mpconfig and -mwbnoinvd.
10391         * config/i386/immintrin.h (_wbinvd): New intrinsic.
10392         * config/i386/pconfigintrin.h: New file.
10393         * config/i386/wbnoinvdintrin.h: Ditto.
10394         * config/i386/x86intrin.h: Add headers pconfigintrin.h and
10395         wbnoinvdintrin.h.
10396         * doc/invoke.texi (-mpconfig, -mwbnoinvd): New.
10398 2018-03-05  Richard Biener  <rguenther@suse.de>
10400         PR tree-optimization/84670
10401         * tree-ssa-pre.c (struct bb_bitmap_sets): Add visited_with_visited_succs
10402         member.
10403         (BB_VISITED_WITH_VISITED_SUCCS): New define.
10404         (compute_antic): Initialize BB_VISITED_WITH_VISITED_SUCCS.
10405         (compute_antic_aux): Only assert the number of values in ANTIC_IN
10406         doesn't grow if all successors (recursively) were visited at least
10407         once.
10409 2018-03-05  Richard Biener  <rguenther@suse.de>
10411         PR tree-optimization/84650
10412         * tree-ssa-loop-im.c (pass_lim::execute): Reset the SCEV cache
10413         if executed in the loop pipeline.
10415 2018-03-05  Sandra Loosemore  <sandra@codesourcery.com>
10417         * doc/configfiles.texi (Configuration Files): Move info about
10418         conditionalizing $target-protos.h to...
10419         * doc/sourcebuild.texi (Back End): Here.  Explain how $target.h
10420         differs from $target-protos.h.
10422 2018-03-05  Kito Cheng  <kito.cheng@gmail.com>
10423             Chung-Ju Wu  <jasonwucj@gmail.com>
10425         * config/nds32/nds32-protos.h (nds32_expand_setmem): Declare.
10426         * config/nds32/nds32-multiple.md (setmemsi): Define.
10427         * config/nds32/nds32-memory-manipulation.c
10428         (nds32_gen_dup_4_byte_to_word_value): New.
10429         (emit_setmem_word_loop): New.
10430         (emit_setmem_byte_loop): New.
10431         (nds32_expand_setmem_loop): New.
10432         (nds32_expand_setmem_loop_v3m): New.
10433         (nds32_expand_setmem_unroll): New.
10434         (nds32_expand_setmem): New.
10436 2018-03-04  Kito Cheng  <kito.cheng@gmail.com>
10437             Chung-Ju Wu  <jasonwucj@gmail.com>
10439         * config/nds32/nds32-memory-manipulation.c
10440         (nds32_emit_load_store): New.
10441         (nds32_emit_post_inc_load_store): New.
10442         (nds32_emit_mem_move): New.
10443         (nds32_emit_mem_move_block): New.
10444         (nds32_expand_movmemsi_loop_unknown_size): New.
10445         (nds32_expand_movmemsi_loop_known_size): New.
10446         (nds32_expand_movmemsi_loop): New.
10447         (nds32_expand_movmemsi_unroll): New.
10448         (nds32_expand_movmemqi): Rename ...
10449         (nds32_expand_movmemsi): ... to this.
10450         * config/nds32/nds32-multiple.md (movmemqi): Rename ...
10451         (movmemsi): ... to this.
10452         * config/nds32/nds32-protos.h (nds32_expand_movmemqi): Rename ...
10453         (nds32_expand_movmemsi): ... to this.
10455 2018-03-04  Kito Cheng  <kito.cheng@gmail.com>
10456             Monk Chiang  <sh.chiang04@gmail.com>
10457             Chung-Ju Wu  <jasonwucj@gmail.com>
10459         * config/nds32/nds32-protos.h
10460         (nds32_expand_load_multiple): New arguments.
10461         (nds32_expand_store_multiple): Ditto.
10462         (nds32_valid_multiple_load_store): Rename ...
10463         (nds32_valid_multiple_load_store_p): ... to this.
10464         * config/nds32/nds32-memory-manipulation.c
10465         (nds32_expand_load_multiple): Refine implementation.
10466         (nds32_expand_store_multiple): Ditto.
10467         * config/nds32/nds32-multiple.md
10468         (load_multiple): Update nds32_expand_load_multiple interface.
10469         (store_multiple): Update nds32_expand_store_multiple interface.
10470         * config/nds32/nds32-predicates.c
10471         (nds32_valid_multiple_load_store): Rename ...
10472         (nds32_valid_multiple_load_store_p): ... to this and refine
10473         implementation.
10474         * config/nds32/predicates.md
10475         (nds32_load_multiple_and_update_address_operation): New predicate.
10476         (nds32_store_multiple_and_update_address_operation): New predicate.
10478 2018-03-04  Kito Cheng  <kito.cheng@gmail.com>
10479             Chung-Ju Wu  <jasonwucj@gmail.com>
10481         * config/nds32/nds32.md (type): Add load_multiple and store_multiple.
10482         (combo): New attribute.
10483         * config/nds32/nds32-multiple.md: Refine patterns with new attributes.
10485 2018-03-03  Chung-Ju Wu  <jasonwucj@gmail.com>
10487         * config/nds32/nds32.opt: Change -mcmodel= default value.
10489 2018-03-03  Kito Cheng  <kito.cheng@gmail.com>
10490             Monk Chiang  <sh.chiang04@gmail.com>
10491             Chung-Ju Wu  <jasonwucj@gmail.com>
10493         * config/nds32/constants.md (unspec_element): New enum.
10494         * config/nds32/constraints.md (Umw): New constraint.
10495         * config/nds32/nds32-intrinsic.c: Add more builtin functions.
10496         * config/nds32/nds32-intrinsic.md: Likewise.
10497         * config/nds32/nds32-md-auxiliary.c (nds32_regno_to_enable4): New.
10498         (nds32_valid_smw_lwm_base_p): New.
10499         (nds32_output_smw_single_word): New.
10500         (nds32_output_lmw_single_word): New.
10501         (nds32_expand_unaligned_load): New.
10502         (nds32_expand_unaligned_store): New.
10503         * config/nds32/nds32-protos.h (nds32_valid_smw_lwm_base_p): Declare.
10504         (nds32_output_smw_single_word): Declare.
10505         (nds32_output_lmw_single_word): Declare.
10506         (nds32_expand_unaligned_load): Declare.
10507         (nds32_expand_unaligned_store): Declare.
10508         * config/nds32/nds32.h (nds32_builtins): Add NDS32_BUILTIN_UALOAD_HW,
10509         NDS32_BUILTIN_UALOAD_W, NDS32_BUILTIN_UALOAD_DW,
10510         NDS32_BUILTIN_UASTORE_HW, NDS32_BUILTIN_UASTORE_W,
10511         NDS32_BUILTIN_UASTORE_DW.
10512         * config/nds32/predicates.md (nds32_lmw_smw_base_operand): New
10513         predicate.
10515 2018-03-03  Monk Chiang  <sh.chiang04@gmail.com>
10516             Kito Cheng  <kito.cheng@gmail.com>
10517             Chung-Ju Wu  <jasonwucj@gmail.com>
10519         * config/nds32/nds32-intrinsic.c
10520         (nds32_expand_builtin_null_ftype_reg): Delete.
10521         (nds32_expand_builtin_reg_ftype_imm): Ditto.
10522         (nds32_expand_builtin_null_ftype_reg_imm): Ditto.
10523         (nds32_read_argument): New.
10524         (nds32_legitimize_target): Ditto.
10525         (nds32_legitimize_argument): Ditto.
10526         (nds32_check_constant_argument): Ditto.
10527         (nds32_expand_unop_builtin): Ditto.
10528         (nds32_expand_unopimm_builtin): Ditto.
10529         (nds32_expand_binop_builtin): Ditto.
10530         (nds32_builtin_decl_impl): Ditto.
10531         (builtin_description): Ditto.
10532         (nds32_expand_builtin_impl): Rewrite with new infrastructure.
10533         (nds32_init_builtins_impl): Ditto.
10534         * config/nds32/nds32.c (TARGET_BUILTIN_DECL): Define.
10535         (nds32_builtin_decl): New.
10536         * config/nds32/nds32.h (nds32_builtins): Add NDS32_BUILTIN_COUNT.
10537         * config/nds32/nds32-protos.h (nds32_builtin_decl_impl): Declare.
10539 2018-03-02  Jeff Law  <law@redhat.com>
10541         * reorg.c (stop_search_p): Handle DEBUG_INSN.
10542         (redundant_insn, fill_simple_delay_slots): Likewise.
10543         (fill_slots_from_thread): Likewise.
10544         * resource.c (mark_referenced_resources): Likewise.
10545         (mark_set_resources, find_dead_or_set_registers): Likewise.
10547 2018-03-02  Jakub Jelinek  <jakub@redhat.com>
10549         * substring-locations.h (format_warning_va): Formatting fix for
10550         ATTRIBUTE_GCC_DIAG.
10551         (format_warning_at_substring): Fix up ATTRIBUTE_GCC_DIAG second
10552         argument.
10553         (format_warning_n_va, format_warning_at_substring_n): New prototypes.
10554         * substring-locations.c: Include intl.h.
10555         (format_warning_va): Turned into small wrapper around
10556         format_warning_n_va, renamed to ...
10557         (format_warning_n_va): ... this, add N and PLURAL_GMSGID arguments,
10558         rename GMSGID to SINGULAR_GMSGID, if SINGULAR_GMSGID != PLURAL_GMSGID,
10559         use ngettext.
10560         (format_warning_at_substring_n): New function.
10561         * gimple-ssa-sprintf.c: Remove GCC diagnostic ignored pragma.
10562         (fmtwarn): Add ATTRIBUTE_GCC_DIAG.  Turn into a copy of
10563         format_warning_at_substring with just a shorter name instead of
10564         const function pointer.
10565         (fmtwarn_n): New function.
10566         (maybe_warn, format_directive, parse_directive): Use fmtwarn_n where
10567         appropriate, get rid of all the fmtstr temporaries, move conditionals
10568         with G_() wrapped string literals directly into fmtwarn arguments,
10569         cast dir.len to (int), formatting fixes.
10571 2018-03-02  Thomas Schwinge  <thomas@codesourcery.com>
10573         * doc/invoke.texi: Remove "Cilk Plus" references.
10575 2018-03-02  Jakub Jelinek  <jakub@redhat.com>
10576             Richard Biener  <rguenther@suse.de>
10578         PR ipa/84628
10579         * expr.c (expand_expr_real_1) <case CALL_EXPR>: Don't emit diagnostics
10580         for error or warning attributes if CALL_FROM_THUNK_P is set.
10581         Formatting fixes.
10583 2018-03-02  Jakub Jelinek  <jakub@redhat.com>
10585         PR target/56540
10586         * config/pa/pa.h (TARGET_CPU_CPP_BUILTINS): Predefine
10587         __SIZEOF_128__ macro if HPUX_LONG_DOUBLE_LIBRARY.
10589         PR target/56540
10590         * config/ia64/ia64.h (TARGET_CPU_CPP_BUILTINS): Predefine
10591         __SIZEOF_{FPREG,FLOAT{80,128}}__ macros.
10593         * predict.c (test_prediction_value_range): Use PROB_UNINITIALIZED
10594         instead of -1U in last predictors element's probability member.
10596 2018-03-02  Eric Botcazou  <ebotcazou@adacore.com>
10598         PR ipa/83983
10599         * ipa-devirt.c (odr_subtypes_equivalent_p): Get the ODR type of both
10600         arguments if they are comparable.
10602 2018-03-02  Richard Sandiford  <richard.sandiford@linaro.org>
10604         PR tree-optimization/84634
10605         * tree-vect-stmts.c (vectorizable_store, vectorizable_load): Replace
10606         masks and masked_loop_p with a single loop_masks, making sure it's
10607         null for bb vectorization.
10609 2018-03-02  Richard Sandiford  <richard.sandiford@linaro.org>
10611         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence)
10612         (vect_analyze_data_ref_access): Use loop->safe_len rather than
10613         loop->force_vectorize to check whether there is no alias.
10615 2018-03-02  Jakub Jelinek  <jakub@redhat.com>
10617         PR target/84614
10618         * rtl.h (prev_real_nondebug_insn, next_real_nondebug_insn): New
10619         prototypes.
10620         * emit-rtl.c (next_real_insn, prev_real_insn): Fix up function
10621         comments.
10622         (next_real_nondebug_insn, prev_real_nondebug_insn): New functions.
10623         * cfgcleanup.c (try_head_merge_bb): Use prev_real_nondebug_insn
10624         instead of a loop around prev_real_insn.
10625         * combine.c (move_deaths): Use prev_real_nondebug_insn instead of
10626         prev_real_insn.
10628         PR inline-asm/84625
10629         * config/i386/i386.c (ix86_print_operand): Use conditional
10630         output_operand_lossage instead of gcc_assert if CONST_VECTOR is not
10631         zero vector.
10633 2018-03-02  Richard Biener  <rguenther@suse.de>
10635         PR tree-optimization/84427
10636         * tree-ssa-pre.c (bitmap_remove_expr_from_set): Remove.
10637         (bitmap_set_subtract_values): Rewrite to handle multiple
10638         exprs per value.
10639         (clean): Likewise.
10640         (prune_clobbered_mems): Likewise.
10641         (phi_translate): Take edge instead of pred/phiblock.
10642         (phi_translate_1): Likewise.
10643         (phi_translate_set): Likewise.  Insert all translated
10644         exprs for a value into the set, keeping possibly multiple
10645         expressions per value.
10646         (compute_antic_aux): Adjust for phi_translate changes.
10647         When intersecting union the expressions and prune those
10648         not in the final value set, keeping possibly multiple
10649         expressions per value.  Do not use value-insertion
10650         for unioning ANTIC_OUT U EXP_GEN - TMP_GEN but merge
10651         all expressions.  Add verification that the value-sets
10652         only shrink during iteration.
10653         (compute_partial_antic_aux): Adjust for the phi_translate changes.
10654         (do_pre_regular_insertion): Likewise.
10655         (do_pre_partial_partial_insertion): Likewise.
10657 2018-03-02  Richard Biener  <rguenther@suse.de>
10659         PR target/82005
10660         * config/darwin.c (saved_debug_info_level): New static global.
10661         (darwin_asm_lto_start): Disable debug info generation for LTO out.
10662         (darwin_asm_lto_end): Restore debug info generation settings.
10664 2018-03-01  Martin Liska  <mliska@suse.cz>
10666         PR sanitizer/82484
10667         * sanopt.c (sanitize_rewrite_addressable_params): Do not handle
10668         volatile arguments.
10670 2018-03-01  Richard Biener  <rguenther@suse.de>
10672         PR debug/84645
10673         * dwarf2out.c (gen_variable_die): Properly handle late VLA
10674         type annotation with LTO when debug was disabled at compile-time.
10676 2018-03-01  Matthew Fortune  <mfortune@gmail.com>
10678         * config/mips/mips.c (mips_final_prescan_insn): Fix incorrect
10679         XINT with INTVAL.
10680         (mips_final_postscan_insn): Likewise.
10682 2018-03-01  Richard Sandiford  <richard.sandiford@linaro.org>
10684         PR rtl-optimization/84528
10685         * alias.c (init_alias_target): Add commentary.
10686         (init_alias_analysis): Only give HARD_FRAME_POINTER_REGNUM
10687         a unique base value if the frame pointer is not eliminated
10688         to the stack pointer.
10690 2018-03-01  Tom de Vries  <tom@codesourcery.com>
10692         PR rtl-optimization/83327
10693         * lra-int.h (hard_regs_spilled_into): Declare.
10694         * lra.c (hard_regs_spilled_into): Define.
10695         (init_reg_info): Init hard_regs_spilled_into.
10696         * lra-spills.c (assign_spill_hard_regs): Update hard_regs_spilled_into.
10697         * lra-lives.c (make_hard_regno_born, make_hard_regno_dead)
10698         (process_bb_lives): Handle hard_regs_spilled_into.
10699         (lra_create_live_ranges_1): Before doing liveness propagation, clear
10700         regs in all_hard_regs_bitmap if set in hard_regs_spilled_into.
10702 2018-02-28  David Edelsohn  <dje.gcc@gmail.com>
10704         * config.gcc (powerpc-ibm-aix7.1.*): New stanza.
10705         (powerpc-ibm-aix[789]*): Default to AIX 7.2.
10706         * config/rs6000/aix71.h (TARGET_DEFAULT): Revert to Power4 ISA.
10707         * config/rs6000/aix72.h: New file.
10709 2018-02-28  Jakub Jelinek  <jakub@redhat.com>
10711         * gimple-ssa-warn-restrict.c (maybe_diag_overlap): Use warning_n
10712         instead of warning_at with conditional singular and plural messages
10713         where possible.
10715         PR target/52991
10716         * stor-layout.c (update_alignment_for_field): For
10717         targetm.ms_bitfield_layout_p (rli->t), if !is_bitfield
10718         && !DECL_PACKED (field), do the alignment update, just use
10719         only desired_align instead of MAX (type_align, desired_align)
10720         as the alignment.
10721         (place_field): Don't do known_align < desired_align handling
10722         early if targetm.ms_bitfield_layout_p (rli->t) and rli->prev_field
10723         is non-NULL, instead do it after rli->prev_field handling and
10724         only if not within a bitfield word.  For DECL_PACKED (field)
10725         use type_align of BITS_PER_UNIT.
10727 2018-02-28  Eric Botcazou  <ebotcazou@adacore.com>
10729         * config/aarch64/aarch64.c (aarch64_emit_probe_stack_range): Remove
10730         superfluous parentheses and trailing spaces.
10732 2018-02-28  Richard Biener  <rguenther@suse.de>
10734         PR tree-optimization/84584
10735         * graphite-scop-detection.c (scop_detection::add_scop): Discard
10736         SCoPs with fake exit edge.
10738 2018-02-28  Martin Liska  <mliska@suse.cz>
10740         PR testsuite/84597
10741         * timevar.c (timer::print): Fix format to properly print 100%
10742         values.
10744 2018-02-28  Richard Biener  <rguenther@suse.de>
10746         PR middle-end/84607
10747         * genmatch.c (capture_info::walk_match): Do not mark
10748         captured expressions without operands as expr_p given
10749         they act more like predicates and should be subject to
10750         "lost tail" side-effect preserving.
10752 2018-02-28  Alexandre Oliva  <aoliva@redhat.com>
10754         PR rtl-optimization/81611
10755         * auto-inc-dec.c (attempt_change): Move dead note from
10756         mem_insn if it's the next use of regno
10757         (find_address): Take address use of reg holding
10758         non-incremented value.  Add parm to limit search to the named
10759         reg only.
10760         (merge_in_block): Attempt to use a mem insn that is the next
10761         use of the original regno.
10763 2018-02-27  Martin Sebor  <msebor@redhat.com>
10765         PR c++/83871
10766         * gcc/doc/invoke.texi (-Wmissing-attributes): New option.
10767         * gcc/print-tree.c (print_node): Handle DECL_UNINLINABLE.
10769 2018-02-27  Martin Sebor  <msebor@redhat.com>
10771         PR translation/84207
10772         * diagnostic-core.h (warning_n, error_n, inform_n): Change
10773         n argument to unsigned HOST_WIDE_INT.
10774         * diagnostic.c (warning_n, error_n, inform_n): Ditto.
10775         (diagnostic_n_impl): Ditto.  Handle arguments in excess of LONG_MAX.
10776         * gimple-ssa-sprintf.c (format_directive): Simplify inform_n call.
10777         * tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Use warning_n.
10779 2018-02-27  Richard Biener  <rguenther@suse.de>
10781         PR tree-optimization/84512
10782         * tree-vect-loop.c (vect_compute_single_scalar_iteration_cost):
10783         Do not use the estimate returned from record_stmt_cost for
10784         the scalar iteration cost but sum properly using add_stmt_cost.
10786 2018-02-27  Richard Biener  <rguenther@suse.de>
10788         PR tree-optimization/84466
10789         * graphite-scop-detection.c (scop_detection::stmt_simple_for_scop_p):
10790         Adjust last change to less strictly validate use operands.
10792 2018-02-27  Martin Liska  <mliska@suse.cz>
10794         PR gcov-profile/84548
10795         * gcov.c (process_file): Allow partial overlap and consider it
10796         also as group functions.
10797         (output_lines): Properly calculate range of lines for a group.
10799 2018-02-27  Martin Liska  <mliska@suse.cz>
10801         * timevar.c (timer::print_row): Remove 'usr', 'sys', 'wall' and
10802         'ggc' suffixes.  Change first column width.
10803         (timer::print): Fix formatting of the column.
10805 2018-02-27  Alexandre Oliva  <aoliva@redhat.com>
10807         * tree-ssa-live.c (remove_unused_scope_block_p): Do not
10808         preserve inline entry blocks for the sake of debug inline
10809         entry point markers alone.
10810         (remove_unused_locals): Suggest in comments a better place to
10811         force the preservation of inline entry blocks that are
10812         otherwise unused, but do not preserve them.
10814 2018-02-26  H.J. Lu  <hongjiu.lu@intel.com>
10816         * config/i386/i386.c (ix86_output_indirect_jmp): Update comments.
10818 2018-02-26  H.J. Lu  <hongjiu.lu@intel.com>
10820         PR target/84039
10821         * config/i386/constraints.md (Bs): Replace
10822         ix86_indirect_branch_register with
10823         TARGET_INDIRECT_BRANCH_REGISTER.
10824         (Bw): Likewise.
10825         * config/i386/i386.md (indirect_jump): Likewise.
10826         (tablejump): Likewise.
10827         (*sibcall_memory): Likewise.
10828         (*sibcall_value_memory): Likewise.
10829         Peepholes of indirect call and jump via memory: Likewise.
10830         (*sibcall_GOT_32): Disallowed for TARGET_INDIRECT_BRANCH_REGISTER.
10831         (*sibcall_value_GOT_32): Likewise.
10832         * config/i386/predicates.md (indirect_branch_operand): Likewise.
10833         (GOT_memory_operand): Likewise.
10834         (call_insn_operand): Likewise.
10835         (sibcall_insn_operand): Likewise.
10836         (GOT32_symbol_operand): Likewise.
10837         * config/i386/i386.h (TARGET_INDIRECT_BRANCH_REGISTER): New.
10839 2018-02-26  Eric Botcazou  <ebotcazou@adacore.com>
10841         PR rtl-optimization/83496
10842         * reorg.c (steal_delay_list_from_target): Change REDUNDANT array from
10843         booleans to RTXes.  Call fix_reg_dead_note on every non-null element.
10844         (steal_delay_list_from_fallthrough): Call fix_reg_dead_note on a
10845         redundant insn, if any.
10846         (relax_delay_slots): Likewise.
10847         (update_reg_unused_notes): Rename REDUNDANT_INSN to OTHER_INSN.
10849 2018-02-26  Richard Sandiford  <richard.sandiford@linaro.org>
10851         PR tree-optimization/83965
10852         * tree-vect-patterns.c (vect_reassociating_reduction_p): Assume
10853         that grouped statements are part of a reduction chain.  Return
10854         true if the statement is not marked as a reduction itself but
10855         is part of a group.
10856         (vect_recog_dot_prod_pattern): Don't check whether the statement
10857         is part of a group here.
10858         (vect_recog_sad_pattern): Likewise.
10859         (vect_recog_widen_sum_pattern): Likewise.
10861 2018-02-26  Eric Botcazou  <ebotcazou@adacore.com>
10863         PR debug/84545
10864         * final.c (rest_of_clean_state): Also look for calls inside sequences.
10866 2018-02-26  H.J. Lu  <hongjiu.lu@intel.com>
10868         PR target/84530
10869         * config/i386/i386-protos.h (ix86_output_indirect_jmp): Remove
10870         the bool argument.
10871         (ix86_output_indirect_function_return): New prototype.
10872         (ix86_split_simple_return_pop_internal): Likewise.
10873         * config/i386/i386.c (indirect_return_via_cx): New.
10874         (indirect_return_via_cx_bnd): Likewise.
10875         (indirect_thunk_name): Handle return va CX_REG.
10876         (output_indirect_thunk_function): Create alias for
10877         __x86_return_thunk_[re]cx and __x86_return_thunk_[re]cx_bnd.
10878         (ix86_output_indirect_jmp): Remove the bool argument.
10879         (ix86_output_indirect_function_return): New function.
10880         (ix86_split_simple_return_pop_internal): Likewise.
10881         * config/i386/i386.md (*indirect_jump): Don't pass false
10882         to ix86_output_indirect_jmp.
10883         (*tablejump_1): Likewise.
10884         (simple_return_pop_internal): Change it to define_insn_and_split.
10885         Call ix86_split_simple_return_pop_internal to split it for
10886         -mfunction-return=.
10887         (simple_return_indirect_internal): Call
10888         ix86_output_indirect_function_return instead of
10889         ix86_output_indirect_jmp.
10891 2018-02-26  Jakub Jelinek  <jakub@redhat.com>
10893         PR bootstrap/84405
10894         * vec.h (vec_default_construct): For BROKEN_VALUE_INITIALIZATION use
10895         memset and value initialization afterwards.
10897 2018-02-26  Christophe Lyon  <christophe.lyon@linaro.org>
10899         * Makefile.in (lto-wrapper): Use ALL_LINKERFLAGS.
10901 2018-02-26  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
10903         PR target/84521
10904         * common/config/aarch64/aarch64-common.c
10905         (aarch_option_optimization_table[]): Switch
10906         off fomit-frame-pointer
10908 2018-02-26  Kito Cheng  <kito.cheng@gmail.com>
10909             Chung-Ju Wu  <jasonwucj@gmail.com>
10911         * config/nds32/nds32-multiple.md (load_multiple): Disallow
10912         volatile memory.
10913         (store_multiple): Ditto.
10915 2018-02-26  Kito Cheng  <kito.cheng@gmail.com>
10917         * config.gcc: Add --with-cpu support for nds32 target.
10918         * config/nds32/nds32-opts.h (nds32_cpu_type): New.
10919         * config/nds32/nds32.opt: Add -mcpu= option.
10921 2018-02-25  Segher Boessenkool  <segher@kernel.crashing.org>
10923         * config/rs6000/rs6000.opt (mvrsave=no, mvrsave=yes, isel=no,
10924         isel=yes): Warn for these deprecated options.
10926 2018-02-23  David Edelsohn  <dje.gcc@gmail.com>
10928         * config/rs6000/aix71.h (TARGET_DEFAULT): Change to
10929         ISA_2_5_MASKS_EMBEDDED.
10931 2018-02-23  Jakub Jelinek  <jakub@redhat.com>
10933         * ipa-prop.c (ipa_vr_ggc_hash_traits::hash): Hash p->min and
10934         p->max as pointers rather than using iterative_hash_expr.
10936 2018-02-23  Carl Love  <cel@us.ibm.com>
10938         * config/rs6000/rs6000-builtin.def: Change VSIGNED2 and VUNSIGNED2
10939         macro expansions from BU_VSX_2 to BU_P8V_VSX_2 and BU_VSX_OVERLOAD_2 to
10940         BU_P8V_OVERLOAD_2.
10941         * config/rs6000/rs6000-c.c: Change VSX_BUILTIN_VEC_VSIGNED2 to
10942         P8V_BUILTIN_VEC_VSIGNED2.  Change VSX_BUILTIN_VEC_VUNSIGNED2 to
10943         P8V_BUILTIN_VEC_VUNSIGNED2.
10945 2018-02-22  Vladimir Makarov  <vmakarov@redhat.com>
10947         PR target/81572
10948         * lra-int.h (LRA_UNKNOWN_ALT, LRA_NON_CLOBBERED_ALT): New macros.
10949         * lra.c (lra_set_insn_recog_data, lra_update_insn_recog_data): Use
10950         LRA_UNKNOWN_ALT.
10951         * lra-constraints.c (curr_insn_transform): Set up
10952         LRA_NON_CLOBBERED_ALT for moves processed on the fast path.  Use
10953         LRA_UNKNOWN_ALT.
10954         (remove_inheritance_pseudos): Use LRA_UNKNOWN_ALT.
10955         * lra-eliminations.c (spill_pseudos): Ditto.
10956         (process_insn_for_elimination): Ditto.
10957         * lra-lives.c (reg_early_clobber_p): Use the new macros.
10958         * lra-spills.c (spill_pseudos): Use LRA_UNKNOWN_ALT and
10959         LRA_NON_CLOBBERED_ALT.
10961 2018-02-22  Martin Sebor  <msebor@redhat.com>
10963         PR tree-optimization/84480
10964         * gimple-fold.c (gimple_fold_builtin_strcpy): Move warnings
10965         to maybe_diag_stxncpy_trunc.  Call it.
10966         * tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Integrate warnings
10967         from gimple_fold_builtin_strcpy.  Print inlining stack.
10968         (handle_builtin_stxncpy): Print inlining stack.
10969         * tree-ssa-strlen.h (maybe_diag_stxncpy_trunc): Declare.
10971 2018-02-22  H.J. Lu  <hongjiu.lu@intel.com>
10973         PR target/84176
10974         * config/i386/i386.c (ix86_set_indirect_branch_type): Issue an
10975         error when -mindirect-branch=thunk-extern, -fcf-protection=branch
10976         and -fcheck-pointer-bounds are used together.
10977         (indirect_thunk_prefix): New enum.
10978         (indirect_thunk_need_prefix): New function.
10979         (indirect_thunk_name): Replace need_bnd_p with need_prefix.  Use
10980         "_nt" instead of "_bnd" for NOTRACK prefix.
10981         (output_indirect_thunk): Replace need_bnd_p with need_prefix.
10982         (output_indirect_thunk_function): Likewise.
10983         (): Likewise.
10984         (ix86_code_end): Update output_indirect_thunk_function calls.
10985         (ix86_output_indirect_branch_via_reg): Replace
10986         ix86_bnd_prefixed_insn_p with indirect_thunk_need_prefix.
10987         (ix86_output_indirect_branch_via_push): Likewise.
10988         (ix86_output_function_return): Likewise.
10989         * doc/invoke.texi: Document -mindirect-branch=thunk-extern is
10990         incompatible with -fcf-protection=branch and
10991         -fcheck-pointer-bounds.
10993 2018-02-22  Steve Ellcey  <sellcey@cavium.com>
10995         PR target/83335
10996         * config/aarch64/aarch64.c (aarch64_print_address_internal):
10997         Change gcc_assert call to output_operand_lossage.
10999 2018-02-22  Steve Ellcey  <sellcey@cavium.com>
11001         * doc/extend.texi (__builtin_extend_pointer): Document builtin.
11003 2018-02-22  DJ Delorie  <dj@redhat.com>
11004             Sebastian Perta  <sebastian.perta@renesas.com>
11005             Oleg Endo  <olegendo@gcc.gnu.org>
11007         * config/rx/rx.c (rx_rtx_costs): New function.
11008         (TARGET_RTX_COSTS): Override to use rx_rtx_costs.
11010 2018-02-22  Thomas Preud'homme  <thomas.preudhomme@arm.com>
11012         * config/arm/t-multilib: Map Armv8-R to Armv7 multilibs.
11014 2018-02-22  Martin Liska  <mliska@suse.cz>
11016         PR driver/83193
11017         * common/config/arm/arm-common.c (arm_print_hint_for_cpu_option):
11018         Add "native" as a possible value.
11020 2018-02-22  Martin Liska  <mliska@suse.cz>
11022         PR driver/83193
11023         * config/i386/i386.c (ix86_option_override_internal):
11024         Add "native" as a possible value for -march and -mtune.
11026 2018-02-22  Jakub Jelinek  <jakub@redhat.com>
11028         PR target/84502
11029         * stor-layout.c (finalize_type_size): Propagate TYPE_EMPTY_P flag
11030         to all type variants.
11032         PR tree-optimization/84503
11033         * gimple-ssa-store-merging.c (merged_store_group::merge_into): Compute
11034         width as info->bitpos + info->bitsize - start.
11035         (merged_store_group::merge_overlapping): Simplify width computation.
11036         (check_no_overlap): New function.
11037         (imm_store_chain_info::try_coalesce_bswap): Compute expected
11038         start + width and last_order of the group, fail if check_no_overlap
11039         fails.
11040         (imm_store_chain_info::coalesce_immediate_stores): Don't merge info
11041         to group if check_no_overlap fails.
11043 2018-02-21  Segher Boessenkool  <segher@kernel.crashing.org>
11045         * config/rs6000/altivec.md: Delete contraint arguments to
11046         define_expand, define_split, and define_peephole2, and in
11047         define_insn_and_split if always unused.
11048         * config/rs6000/darwin.md: Ditto.
11049         * config/rs6000/dfp.md: Ditto.
11050         * config/rs6000/rs6000.md: Ditto.
11051         * config/rs6000/sync.md: Ditto.
11052         * config/rs6000/vector.md: Ditto.
11053         * config/rs6000/vsx.md: Ditto.
11055 2018-02-21  Segher Boessenkool  <segher@kernel.crashing.org>
11057         * config/rs6000/altivec.md: Write output control strings as braced
11058         blocks instead of double-quoted strings.
11059         * config/rs6000/darwin.md: Ditto.
11060         * config/rs6000/rs6000.md: Ditto.
11061         * config/rs6000/vector.md: Ditto.
11062         * config/rs6000/vsx.md: Ditto.
11064 2018-02-21  Jason Merrill  <jason@redhat.com>
11066         PR c++/84314 - ICE with templates and fastcall attribute.
11067         * attribs.c (build_type_attribute_qual_variant): Remove assert.
11069 2018-02-21  Jan Hubicka  <hubicka@ucw.cz>
11071         * ipa-cp.c (determine_versionability): Fix comment typos.
11073 2018-02-21  Jan Hubicka  <hubicka@ucw.cz>
11075         PR c/84229
11076         * ipa-cp.c (determine_versionability): Do not version functions caling
11077         va_arg_pack.
11079 2018-02-21  Martin Liska  <mliska@suse.cz>
11081         PR driver/83193
11082         * config/aarch64/aarch64.c (aarch64_print_hint_for_core_or_arch):
11083         Add "native" as a possible value.
11084         * config/aarch64/aarch64.h (HAVE_LOCAL_CPU_DETECT):  Define
11085         the macro when native cpu detection is available.
11087 2018-02-21  Martin Liska  <mliska@suse.cz>
11089         PR driver/83193
11090         * common/config/arm/arm-common.c (arm_print_hint_for_arch_option):
11091         Add "native" as a possible value.
11092         * config/arm/arm.h (HAVE_LOCAL_CPU_DETECT): Define the macro
11093         when native cpu detection is available.
11095 2018-02-21  Jakub Jelinek  <jakub@redhat.com>
11096             Martin Sebor  <msebor@redhat.com>
11098         PR tree-optimization/84478
11099         * gimple-fold.h (get_range_strlen): Add a bool argument defaulted to
11100         false.
11101         * gimple-fold.c (get_range_strlen): Make minlen const and assume it
11102         can't be NULL.  Change FUZZY from bool to int, for 1 add PHI/COND_EXPR
11103         support which is conservatively correct, for 2 only stay conservative
11104         for maxlen.  Formatting and comment capitalization fixes.  Add STRICT
11105         argument to the 2 argument get_range_strlen, adjust 6 arg
11106         get_range_strlen caller and clear minmaxlen[0] and [1] if it returned
11107         false.
11108         (get_maxval_strlen): Adjust 6 arg get_range_strlen caller.
11109         (gimple_fold_builtin_strlen): Pass true as last argument to
11110         get_range_strlen.
11112 2018-02-20  Martin Sebor  <msebor@redhat.com>
11114         PR middle-end/84095
11115         * gimple-ssa-warn-restrict.c (builtin_memref::extend_offset_range): New.
11116         (builtin_memref::set_base_and_offset): Same.  Handle inner references.
11117         (builtin_memref::builtin_memref): Factor out parts into
11118         set_base_and_offset and call it.
11120 2018-02-20  Richard Sandiford  <richard.sandiford@linaro.org>
11122         PR middle-end/84406
11123         * optabs-query.c (find_widening_optab_handler_and_mode): If from_mode
11124         is a scalar_int_mode, assert that to_mode is a scalar_int_mode with
11125         greater precision.  If to_mode is a MODE_PARTIAL_INT, stop the
11126         search at the associated MODE_INT.
11128 2018-02-20  Jeff Law  <law@redhat.com>
11130         PR middle-end/82123
11131         PR tree-optimization/81592
11132         PR middle-end/79257
11133         * gimple-ssa-sprintf.c (format_integer): Query EVRP range analyzer
11134         for range data rather than using global data.
11135         * gimple-ssa-sprintf.c (get_int_range): Query EVRP range analyzer for
11136         range data rather than using global data.
11137         * gimple-ssa-sprintf.c (get_int_range): Accept vr_values parameter
11138         pass it to children as needed.
11139         (struct directive::fmtresult): Similarly.
11140         (struct directive::set_width): Similarly.
11141         (struct directive::set_precision): Similarly.
11142         (format_integer, format_directive, parse_directive): Similarly.
11143         (format_none): Accept unnamed vr_values parameter.
11144         (format_percent, format_floating, format_character): Similarly.
11145         (format_string, format_plain): Similarly.
11146         * gimple-ssa-sprintf.c (sprintf_dom_walker::handle_gimple_call): Query
11147         the EVRP range analyzer for range data rather than using global data.
11148         * gimple-ssa-sprintf.c: Include alloc-pool.h, vr-values.h and
11149         gimple-ssa-evrp-analyze.h
11150         (class sprintf_dom_walker): Add after_dom_children member function.
11151         Add evrp_range_analyzer member.
11152         (sprintf_dom_walker::before_dom_children): Call into the EVRP
11153         range analyzer as needed.
11154         (sprintf_dom_walker::after_dom_children): New member function.
11155         * gimple-ssa-evrp-analyze.c (evrp_range_analyzer::enter): Do nothing
11156         if not optimizing.
11157         (evrp_range_analyzer::record_ranges_from_stmt): Likewise.
11158         (evrp_range_analyzer::pop_to_marker): Likewise.
11160 2018-02-20  Richard Sandiford  <richard.sandiford@linaro.org>
11162         PR tree-optimization/84419
11163         * internal-fn.c (expand_call_mem_ref): Create a TARGET_MEM_REF
11164         with the required type if its current type is compatible but
11165         different.
11167 2018-02-20  Jakub Jelinek  <jakub@redhat.com>
11169         PR middle-end/82004
11170         * match.pd (pow(C,x) -> exp(log(C)*x)): Delay all folding until
11171         after vectorization.
11173 2018-02-20  Martin Liska  <mliska@suse.cz>
11175         PR driver/83193
11176         * config/aarch64/aarch64.c (aarch64_print_hint_for_core_or_arch): Print
11177         possible values if we don't have a hint.
11179 2018-02-20  Martin Liska  <mliska@suse.cz>
11181         PR c/84310
11182         PR target/79747
11183         * final.c (shorten_branches): Build align_tab array with one
11184         more element.
11185         * opts.c (finish_options): Add alignment option limit check.
11186         (MAX_CODE_ALIGN): Likewise.
11187         (MAX_CODE_ALIGN_VALUE): Likewise.
11188         * doc/invoke.texi: Document maximum allowed option value for
11189         all -falign-* options.
11191 2018-02-19  Jakub Jelinek  <jakub@redhat.com>
11193         PR target/84146
11194         * reg-notes.def (REG_CALL_ARG_LOCATION): New reg note.
11195         * insn-notes.def (NOTE_INSN_CALL_ARG_LOCATION): Remove.
11196         * var-tracking.c (emit_note_insn_var_location): Remove all references
11197         to NOTE_INSN_CALL_ARG_LOCATION.
11198         (emit_notes_in_bb): Emit arguments as REG_CALL_ARG_LOCATION note on
11199         the CALL_INSN rather than separate NOTE_INSN_CALL_ARG_LOCATION note.
11200         Use copy_rtx_if_shared.
11201         * dwarf2out.c (gen_subprogram_die): Use XEXP with 0 instead of
11202         NOTE_VAR_LOCATION on ca_loc->call_arg_loc_note.
11203         (dwarf2out_var_location): Remove handling of
11204         NOTE_INSN_CALL_ARG_LOCATION, instead handle REG_CALL_ARG_LOCATION note
11205         on call_insn.
11206         * final.c (final_scan_insn): Remove all references to
11207         NOTE_INSN_CALL_ARG_LOCATION.
11208         (rest_of_clean_state): Likewise.  Remove REG_CALL_ARG_LOCATION notes
11209         before dumping final insns.
11210         * except.c (emit_note_eh_region_end): Remove all references to
11211         NOTE_INSN_CALL_ARG_LOCATION.
11212         * config/alpha/alpha.c (alpha_pad_function_end): Likewise.
11213         * config/c6x/c6x.c (c6x_gen_bundles): Likewise.
11214         * config/arc/arc.c (hwloop_optimize): Likewise.
11215         * config/arm/arm.c (create_fix_barrier): Likewise.
11216         * config/s390/s390.c (s390_chunkify_start): Likewise.
11217         * config/sh/sh.c (find_barrier): Likewise.
11218         * config/i386/i386.c (rest_of_insert_endbranch,
11219         ix86_seh_fixup_eh_fallthru): Likewise.
11220         * config/xtensa/xtensa.c (hwloop_optimize): Likewise.
11221         * config/iq2000/iq2000.c (final_prescan_insn): Likewise.
11222         * config/frv/frv.c (frv_function_prologue): Likewise.
11223         * emit-rtl.c (try_split): Likewise.  Copy over REG_CALL_ARG_LOCATION
11224         reg note.
11225         (note_outside_basic_block_p): Remove all references to
11226         NOTE_INSN_CALL_ARG_LOCATION.
11227         * gengtype.c (adjust_field_rtx_def): Likewise.
11228         * print-rtl.c (rtx_writer::print_rtx_operand_code_0, print_insn):
11229         Likewise.
11230         * jump.c (cleanup_barriers, delete_related_insns): Likewise.
11231         * cfgrtl.c (force_nonfallthru_and_redirect): Likewise.
11233         PR c++/84444
11234         * builtins.c (builtin_mathfn_code): Don't check if CALL_EXPR_FN (t)
11235         is ADDR_EXPR.
11237         PR tree-optimization/84452
11238         * tree-vect-patterns.c (vect_recog_pow_pattern): Don't call
11239         expand_simd_clones if targetm.simd_clone.compute_vecsize_and_simdlen
11240         is NULL.
11242 2018-02-19  Martin Liska  <mliska@suse.cz>
11244         PR sanitizer/82183
11245         * passes.def: Put pass_sancov_O0 before pass_lower_switch with -O0.
11247 2018-02-19  Martin Liska  <mliska@suse.cz>
11248             Richard Sandiford  <richard.sandiford@linaro.org>
11250         PR tree-optimization/82491
11251         * gimple-fold.c (get_base_constructor): Make earlier bail out
11252         to prevent ubsan.
11254 2018-02-19  Carl Love  <cel@us.ibm.com>
11256         * config/rs6000/rs6000-builtin.def: Change NEG macro expansions from
11257         BU_ALTIVEC_A to BU_P8V_AV_1 and BU_ALTIVEC_OVERLOAD_1 to
11258         BU_P8V_OVERLOAD_1.
11259         * config/rs6000/rs6000-c.c: Change ALTIVEC_BUILTIN_VEC_NEG to
11260         P8V_BUILTIN_VEC_NEG.
11262 2018-02-19  Sebastian Perta  <sebastian.perta@renesas.com>
11264         * config/rl78/rl78.md (movdf): New define expand.
11266 2018-02-19  Martin Liska  <mliska@suse.cz>
11268         PR other/80589
11269         * doc/invoke.texi: Fix typo.
11270         * params.def (PARAM_MAX_LOOP_HEADER_INSNS): Likewise.
11272 2018-02-18  Segher Boessenkool  <segher@kernel.crashing.org>
11274         * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
11275         handle rs6000_single_float and rs6000_double_float specially for
11276         e500 family CPUs.
11278 2018-02-16  Jeff Law  <law@redhat.com>
11280         * config/rx/rx.c (add_pop_cfi_notes): New function.;
11281         (pop_regs): Use it.
11283 2018-02-16  Jakub Jelinek  <jakub@redhat.com>
11285         PR ipa/84425
11286         * ipa-inline.c (inline_small_functions): Fix a typo.
11288 2018-02-16  Nathan Sidwell  <nathan@acm.org>
11290         * doc/extend.texi (Backwards Compatibility): Americanize 'behaviour'.
11292 2018-02-16  Carl Love  <cel@us.ibm.com>
11294         * config/rs6000/rs6000-builtin.def: Add BU_P8V_VSX_2 macro definition.
11295         Change FLOAT2 expansions from BU_VSX_2 to BU_P8V_VSX_2 and
11296         from BU_VSX_OVERLOAD_2 to BU_P8V_OVERLOAD_2.
11297         * config/rs6000/rs6000-c.c: Changed macro VSX_BUILTIN_VEC_FLOAT2
11298         expansion to P8V_BUILTIN_VEC_FLOAT2.
11300 2018-02-16  Vladimir Makarov  <vmakarov@redhat.com>
11302         PR rtl-optimization/70023
11303         * lra-constraints.c (inherit_in_ebb): Take hard reg mode of
11304         src_regno into account.
11306 2018-02-16  Carl Love  <cel@us.ibm.com>
11308         * config/rs6000/altivec.h: Remove vec_vextract4b and vec_vinsert4b.
11309         * config/rs6000/rs6000-builtin.def: Remove macro expansion for
11310         VEXTRACT4B, VINSERT4B, VINSERT4B_DI and VEXTRACT4B.
11311         * config/rs6000/rs6000.c: Remove case statements for
11312         P9V_BUILTIN_VEXTRACT4B, P9V_BUILTIN_VEC_VEXTRACT4B,
11313         P9V_BUILTIN_VINSERT4B, P9V_BUILTIN_VINSERT4B_DI,
11314         and P9V_BUILTIN_VEC_VINSERT4B.
11315         * config/rs6000/rs6000-c.c (altivec_expand_builtin): Remove entries for
11316         P9V_BUILTIN_VEC_VEXTRACT4B and P9V_BUILTIN_VEC_VINSERT4B.
11317         * config/rs6000/vsx.md:
11318         * doc/extend.texi: Remove vec_vextract4b, non ABI definitions for
11319         vec_insert4b.
11321 2018-02-16  Carl Love  <cel@us.ibm.com>
11323         * config/rs6000/altivec.h: Add builtin names vec_extract4b
11324         vec_insert4b.
11325         * config/rs6000/rs6000-builtin.def: Add INSERT4B and EXTRACT4B
11326         definitions.
11327         * config/rs6000/rs6000-c.c: Add the definitions for
11328         P9V_BUILTIN_VEC_EXTRACT4B and P9V_BUILTIN_VEC_INSERT4B.
11329         * config/rs6000/rs6000.c (altivec_expand_builtin): Add
11330         P9V_BUILTIN_EXTRACT4B and P9V_BUILTIN_INSERT4B case statements.
11331         * config/rs6000/vsx.md: Add define_insn extract4b.  Add define_expand
11332         definition for insert4b and define insn *insert3b_internal.
11333         * doc/extend.texi: Add documentation for vec_extract4b.
11335 2018-02-16  Nathan Sidwell  <nathan@acm.org>
11337         * doc/extend.texi (Backwards Compatibility): Mention friend
11338         injection.  Note for-scope is deprecated.
11339         * doc/invoke.texi (-ffriend-injection): Deprecate.
11341 2018-02-16  Segher Boessenkool  <segher@kernel.crashing.org>
11343         * combine.c (try_combine): When adjusting LOG_LINKS for the destination
11344         that moved to I2, also allow destinations that are a paradoxical
11345         subreg (instead of a normal reg).
11347 2018-02-16  Oleg Endo  <olegendo@gcc.gnu.org>
11349         PR target/83831
11350         * config/rx/rx.c (rx_fuse_in_memory_bitop): Convert shift operand
11351         to QImode.
11353 2018-02-16  Richard Biener  <rguenther@suse.de>
11355         PR tree-optimization/84037
11356         PR tree-optimization/84016
11357         PR target/82862
11358         * config/i386/i386.c (ix86_builtin_vectorization_cost):
11359         Adjust vec_construct for the fact we need additional higher latency
11360         128bit inserts for AVX256 and AVX512 vector builds.
11361         (ix86_add_stmt_cost): Scale vector construction cost for
11362         elementwise loads.
11364 2018-02-16  Richard Biener  <rguenther@suse.de>
11366         PR tree-optimization/84417
11367         * tree-ssa.c (non_rewritable_mem_ref_base): Properly constrain
11368         the MEM_REF offset when conversion to BIT_FIELD_REF is desired.
11369         (non_rewritable_lvalue_p): Likewise, use poly-ints.
11371 2018-02-16  Martin Liska  <mliska@suse.cz>
11373         PR sanitizer/84307
11374         * internal-fn.def (ASAN_CHECK): Set proper flags.
11375         (ASAN_MARK): Likewise.
11377 2018-02-16  Julia Koval  <julia.koval@intel.com>
11379         * config/i386/i386.c (ix86_option_override_internal): Remove PTA_CLWB
11380         from PTA_CANNONLAKE.
11382 2018-02-16  Jakub Jelinek  <jakub@redhat.com>
11384         PR target/84272
11385         * config/aarch64/cortex-a57-fma-steering.c (fma_forest::merge_forest):
11386         Use ++iter rather than iter++ for std::list iterators.
11387         (func_fma_steering::dfs): Likewise.  Don't delete nodes right away,
11388         defer deleting them until all nodes in the forest are processed.  Do
11389         free even leaf nodes.  Change to_process into auto_vec.
11391         PR bootstrap/84405
11392         * system.h (BROKEN_VALUE_INITIALIZATION): Define for GCC < 4.3.
11393         * vec.h (vec_default_construct): Use memset instead of placement new
11394         if BROKEN_VALUE_INITIALIZATION is defined.
11395         * hash-table.h (hash_table<Descriptor, Allocator>::empty_slow): Use
11396         memset instead of value initialization if BROKEN_VALUE_INITIALIZATION
11397         is defined.
11399         PR rtl-optimization/83723
11400         * lra-int.h (lra_substitute_pseudo): Add DEBUG_P argument.
11401         * lra.c (lra_substitute_pseudo): Likewise.  If true, use
11402         gen_rtx_raw_SUBREG instead of gen_rtx_SUBREG.  Pass DEBUG_P to
11403         recursive calls.
11404         (lra_substitute_pseudo_within_insn): Adjust lra_substitute_pseudo
11405         callers.
11406         * lra-constraints.c (inherit_reload_reg, split_reg): Likewise.
11408 2018-02-16  Eric Botcazou  <ebotcazou@adacore.com>
11410         PR rtl-optimization/81443
11411         * rtlanal.c (num_sign_bit_copies1) <SUBREG>: Do not propagate results
11412         from inner REGs to paradoxical SUBREGs.
11414 2018-02-16  Richard Biener  <rguenther@suse.de>
11416         PR tree-optimization/84399
11417         * graphite-scop-detection.c (scop_detection::stmt_simple_for_scop_p):
11418         For operands we can analyze at their definition make sure we can
11419         analyze them at each use as well.
11421 2018-02-16  Richard Biener  <rguenther@suse.de>
11423         PR tree-optimization/84190
11424         * tree-ssa.c (non_rewritable_mem_ref_base): Do not touch
11425         volatile accesses if the decl isn't volatile.
11427 2018-02-15  Jason Merrill  <jason@redhat.com>
11429         PR c++/84314 - ICE with templates and fastcall attribute.
11430         * attribs.c (build_type_attribute_qual_variant): Don't clobber
11431         TYPE_CANONICAL on an existing type.
11433 2018-02-15  Jakub Jelinek  <jakub@redhat.com>
11435         PR tree-optimization/84383
11436         * tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Don't look at
11437         dstoff nor call operand_equal_p if dstbase is NULL.
11439         PR tree-optimization/84334
11440         * match.pd ((A +- CST1) +- CST2 -> A + CST3): If A is
11441         also a CONSTANT_CLASS_P, punt.
11443 2018-02-14  Jim Wilson  <jimw@sifive.com>
11445         * config/riscv/riscv.c (riscv_first_stack_step): Move locals after
11446         first SMALL_OPERAND check.  New local min_second_step.  Move assert
11447         to where locals are set.  Add TARGET_RVC support.
11448         * config/riscv/riscv.h (C_SxSP_BITS, SWSP_REACH, SDSP_REACH): New.
11450 2018-02-14  Indu Bhagat  <indu.bhagat@oracle.com>
11452         * doc/invoke.texi: Correct -Wformat-overflow code sample.
11454 2018-02-14  Martin Sebor  <msebor@redhat.com>
11456         PR tree-optimization/83698
11457         * gimple-ssa-warn-restrict.c (builtin_memref::builtin_memref): For
11458         arrays constrain the offset range to their bounds.
11459         (builtin_access::strcat_overlap): Adjust the bounds of overlap offset.
11460         (builtin_access::overlap): Avoid setting the size of overlap if it's
11461         already been set.
11462         (maybe_diag_overlap): Also consider arrays when deciding what values
11463         of offsets to include in diagnostics.
11465 2018-02-14  Martin Sebor  <msebor@redhat.com>
11467         PR c/84108
11468         * attribs.c (diag_attr_exclusions): Consider the exclusion(s)
11469         that correspond to the kind of a declaration.
11471 2018-02-14  John David Anglin  <danglin@gcc.gnu.org>
11473         PR target/83984
11474         * config/pa/pa.md: Load address of PIC label using the linkage table
11475         if the label is nonlocal.
11477 2018-02-14  Kelvin Nilsen  <kelvin@gcc.gnu.org>
11479         * config/rs6000/rs6000.c (rs6000_option_override_internal): Issue
11480         warning message if user requests -maltivec=be.
11481         * doc/invoke.texi: Document deprecation of -maltivec=be.
11483 2018-02-14  Will Schmidt  <will_schmidt@vnet.ibm.com>
11485         PR target/84220
11486         * config/rs6000/rs6000-c.c: Update definitions for
11487         ALTIVEC_BUILTIN_VEC_SLD, ALTIVEC_BUILTIN_VEC_SLDW,
11488         VEC_XXSLDWI and ALTIVEC_BUILTIN_VEC_XXPERMDI builtins.
11490 2018-02-14  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
11492         PR target/84239
11493         * config/i386/cetintrin.h: Remove _rdssp[d|q] and
11494         add _get_ssp intrinsics. Remove argument from
11495         __builtin_ia32_rdssp[d|q].
11496         * config/i386/i386-builtin-types.def: Add UINT_FTYPE_VOID.
11497         * config/i386/i386-builtin.def: Remove argument from
11498         __builtin_ia32_rdssp[d|q].
11499         * config/i386/i386.c: Use UINT_FTYPE_VOID. Use
11500         ix86_expand_special_args_builtin for _rdssp[d|q].
11501         * config/i386/i386.md: Remove argument from rdssp[si|di] insn.
11502         Clear register before usage.
11503         * doc/extend.texi: Remove argument from __builtin_ia32_rdssp[d|q].
11504         Add documentation for new _get_ssp and _inc_ssp intrinsics.
11506 2018-02-14  Richard Sandiford  <richard.sandiford@linaro.org>
11508         PR tree-optimization/84357
11509         * tree-data-ref.c (object_address_invariant_in_loop_p): Check
11510         operand 1 of an ARRAY_REF too.
11512 2018-02-14  Oleg Endo  <olegendo@gcc.gnu.org>
11514         PR target/83831
11515         * config/rx/rx-protos.h (rx_reg_dead_or_unused_after_insn,
11516         rx_copy_reg_dead_or_unused_notes, rx_fuse_in_memory_bitop): New
11517         declarations.
11518         (set_of_reg): New struct.
11519         (rx_find_set_of_reg, rx_find_use_of_reg): New functions.
11520         * config/rx/rx.c (rx_reg_dead_or_unused_after_insn,
11521         rx_copy_reg_dead_or_unused_notes, rx_fuse_in_memory_bitop): New
11522         functions.
11523         * config/rx/rx.md (andsi3, iorsi3, xorsi3): Convert to insn_and_split.
11524         Split into bitclr, bitset, bitinvert patterns if appropriate.
11525         (*bitset, *bitinvert, *bitclr): Convert to named insn_and_split and
11526         use rx_fuse_in_memory_bitop.
11527         (*bitset_in_memory, *bitinvert_in_memory, *bitclr_in_memory): Convert
11528         to named insn, correct maximum insn length.
11530 2018-02-14  Jozef Lawrynowicz  <jozefl.gcc@gmail.com>
11532         PR target/79242
11533         * machmode.def: Define a complex mode for PARTIAL_INT.
11534         * genmodes.c (complex_class): Return MODE_COMPLEX_INT for
11535         MODE_PARTIAL_INT.
11536         * doc/rtl.texi: Document CSPImode.
11537         * config/msp430/msp430.c (msp430_hard_regno_nregs): Add CPSImode
11538         handling.
11539         (msp430_hard_regno_nregs_with_padding): Likewise.
11541 2018-02-13  Peter Bergner  <bergner@vnet.ibm.com>
11543         PR target/84279
11544         * config/rs6000/rs6000.c (mem_operand_gpr): Disallow altivec addresses.
11546 2018-02-13  Segher Boessenkool  <segher@kernel.crashing.org>
11548         PR rtl-optimization/84169
11549         * combine.c (try_combine): New variable split_i2i3.  Set it to true if
11550         we generated a parallel as new i3 and we split that to new i2 and i3
11551         instructions.  Handle split_i2i3 similar to swap_i2i3: scan the
11552         LOG_LINKs of i3 to see which of those need to link to i2 now.  Link
11553         those to i2, not i1.  Partially rewrite this scan code.
11555 2018-02-13  Jakub Jelinek  <jakub@redhat.com>
11557         PR c/82210
11558         * stor-layout.c (place_field): For variable length fields, adjust
11559         offset_align afterwards not just based on the field's alignment,
11560         but also on the size.
11562         PR middle-end/84309
11563         * match.pd (pow(C,x) -> exp(log(C)*x)): Use exp2s and log2s instead
11564         of exps and logs in the use_exp2 case.
11566 2018-02-13  Jeff Law  <law@redhat.com>
11568         * config/rl/rl78.c (rl78_attribute_table): Fix terminator and
11569         entry for "vector".
11571         * config/rl78/rl78.c (rl78_handle_func_attribute): Mark
11572         ARGS as unused.
11574 2018-02-13  Alexandre Oliva  <aoliva@redhat.com>
11576         PR debug/84342
11577         PR debug/84319
11578         * common.opt (gas-loc-support, gas-locview-support): New.
11579         (ginline-points, ginternal-reset-location-views): New.
11580         * doc/invoke.texi: Document them.  Use @itemx where intended.
11581         (gvariable-location-views): Adjust.
11582         * target.def (reset_location_view): New.
11583         * doc/tm.texi.in (DWARF2_ASM_VIEW_DEBUG_INFO): New.
11584         (TARGET_RESET_LOCATION_VIEW): New.
11585         * doc/tm.texi: Rebuilt.
11586         * dwarf2out.c (dwarf2out_default_as_loc_support): New.
11587         (dwarf2out_default_as_locview_support): New.
11588         (output_asm_line_debug_info): Use option variables.
11589         (dwarf2out_maybe_output_loclist_view_pair): Likewise.
11590         (output_loc_list): Likewise.
11591         (add_high_low_attributes): Check option variables.
11592         Don't output entry view attribute in strict mode.
11593         (gen_inlined_subroutine_die): Check option variables.
11594         (dwarf2out_inline_entry): Likewise.
11595         (init_sections_and_labels): Likewise.
11596         (dwarf2out_early_finish): Likewise.
11597         (maybe_reset_location_view): New, from...
11598         (dwarf2out_var_location): ... here.  Call it.
11599         * debug.h (dwarf2out_default_as_loc_support): Declare.
11600         (dwarf2out_default_as_locview_support): Declare.
11601         * hooks.c (hook_int_rtx_insn_0): New.
11602         * hooks.h (hook_int_rtx_insn_0): Declare.
11603         * toplev.c (process_options): Take -gas-loc-support and
11604         -gas-locview-support from dwarf2out.  Enable
11605         -gvariable-location-views by default only with locview
11606         assembler support.  Enable -ginternal-reset-location-views by
11607         default only if the target defines the corresponding hook.
11608         Enable -ginline-points by default if location views are
11609         enabled; force it disabled if statement frontiers are
11610         disabled.
11611         * tree-inline.c (expand_call_inline): Check option variables.
11612         * tree-ssa-live.c (remove_unused_scope_block_p): Likewise.
11614 2018-02-13  Richard Sandiford  <richard.sandiford@linaro.org>
11616         PR tree-optimization/84321
11617         * tree-vrp.c (intersect_range_with_nonzero_bits): Fix VR_ANTI_RANGE
11618         handling.  Also check whether the anti-range contains any values
11619         that satisfy the mask; switch to a VR_RANGE if not.
11621 2018-02-13  Paolo Bonzini  <bonzini@gnu.org>
11623         PR sanitizer/84340
11624         * internal-fn.def (ASAN_CHECK, ASAN_MARK): Revert changes to fnspec.
11626 2018-02-13  Martin Jambor  <mjambor@suse.cz>
11628         PR c++/83990
11629         * ipa-param-manipulation.c (ipa_modify_call_arguments): Use location
11630         of call statements, also set location of a load to a temporary.
11632 2018-02-13  Sebastian Perta  <sebastian.perta@renesas.com>
11634         * config/rl78/rl78.c (add_vector_labels): New function.
11635         * config/rl78/rl78.c (rl78_handle_vector_attribute): New function.
11636         * config/rl78/rl78.c (rl78_start_function): Call add_vector_labels.
11637         * config/rl78/rl78.c (rl78_handle_func_attribute): Removed the assert
11638         which checks that no arguments are passed.
11639         * config/rl78/rl78.c (rl78_attribute_table): Add "vector" attribute.
11640         * doc/extend.texi: Documentation for the new attribute.
11642 2018-02-13  Andreas Schwab  <schwab@suse.de>
11644         * config/riscv/linux.h (CPP_SPEC): Define.
11646 2018-02-13  Jakub Jelinek  <jakub@redhat.com>
11648         PR target/84335
11649         * config/i386/i386.c (ix86_init_mmx_sse_builtins): Pass
11650         OPTION_MASK_ISA_AES | OPTION_MASK_ISA_SSE2 instead of
11651         OPTION_MASK_ISA_AES as first argument to def_builtin_const
11652         for AES builtins.  Pass OPTION_MASK_ISA_PCLMUL | OPTION_MASK_ISA_SSE2
11653         instead of OPTION_MASK_ISA_PCLMUL as first argument to
11654         def_builtin_const for __builtin_ia32_pclmulqdq128 builtin.
11655         * config/i386/wmmintrin.h: If __SSE2__ is not defined, enable it
11656         temporarily for AES and PCLMUL builtins.
11658         PR tree-optimization/84339
11659         * gimple-fold.c (get_range_strlen): Set *FLEXP to true when handling
11660         ARRAY_REF where first operand is array_at_struct_end_p COMPONENT_REF.
11661         Formatting fixes.
11663         PR middle-end/84309
11664         * match.pd (pow(C,x) -> exp(log(C)*x)): Optimize instead into
11665         exp2(log2(C)*x) if C is a power of 2 and c99 runtime is available.
11666         * generic-match-head.c (canonicalize_math_after_vectorization_p): New
11667         inline function.
11668         * gimple-match-head.c (canonicalize_math_after_vectorization_p): New
11669         inline function.
11670         * omp-simd-clone.h: New file.
11671         * omp-simd-clone.c: Include omp-simd-clone.h.
11672         (expand_simd_clones): No longer static.
11673         * tree-vect-patterns.c: Include fold-const-call.h, attribs.h,
11674         cgraph.h and omp-simd-clone.h.
11675         (vect_recog_pow_pattern): Optimize pow(C,x) to exp(log(C)*x).
11676         (vect_recog_widen_shift_pattern): Formatting fix.
11677         (vect_pattern_recog_1): Don't check optab for calls.
11679         PR target/84336
11680         * config/i386/sse.md (<avx512>_vpermi2var<mode>3_mask): Force
11681         operands[2] into a REG before using gen_lowpart on it.
11683 2018-02-12  Jeff Law  <law@redhat.com>
11685         PR target/83760
11686         * config/sh/sh.c (find_barrier): Consider a sibling call
11687         a barrier as well.
11689         * cse.c (try_back_substitute_reg): Move any REG_ARGS_SIZE note when
11690         successfully back substituting a reg.
11692 2018-02-12  Richard Biener  <rguenther@suse.de>
11694         PR tree-optimization/84037
11695         * tree-vect-slp.c (vect_analyze_slp_cost): Add visited
11696         parameter, move visited init to caller.
11697         (vect_slp_analyze_operations): Separate cost from validity
11698         check, initialize visited once for all instances.
11699         (vect_schedule_slp): Analyze map to CSE vectorized nodes once
11700         for all instances.
11701         * tree-vect-stmts.c (vect_model_simple_cost): Make early
11702         out an assert.
11703         (vect_model_promotion_demotion_cost): Likewise.
11704         (vectorizable_bswap): Guard cost modeling with !slp_node
11705         instead of !PURE_SLP_STMT to avoid double-counting on hybrid
11706         SLP stmts.
11707         (vectorizable_call): Likewise.
11708         (vectorizable_conversion): Likewise.
11709         (vectorizable_assignment): Likewise.
11710         (vectorizable_shift): Likewise.
11711         (vectorizable_operation): Likewise.
11712         (vectorizable_store): Likewise.
11713         (vectorizable_load): Likewise.
11714         (vectorizable_condition): Likewise.
11715         (vectorizable_comparison): Likewise.
11717 2018-02-12  Paolo Bonzini  <bonzini@gnu.org>
11719         PR sanitizer/84307
11720         * internal-fn.def (ASAN_CHECK): Fix fnspec to account for return value.
11721         (ASAN_MARK): Fix fnspec to account for return value, change pointer
11722         argument from 'R' to 'W' so that the pointed-to datum is clobbered.
11724 2018-02-08  Jan Hubicka  <hubicka@ucw.cz>
11726         PR middle-end/83665
11727         * params.def (inline-min-speedup): Increase from 8 to 15.
11728         (max-inline-insns-auto): Decrease from 40 to 30.
11729         * ipa-split.c (consider_split): Add some buffer for function to
11730         be considered inlining candidate.
11731         * invoke.texi (max-inline-insns-auto, inline-min-speedup): UPdate
11732         default values.
11734 2018-02-12  Richard Biener  <rguenther@suse.de>
11736         PR tree-optimization/84037
11737         * tree-vect-slp.c (vect_build_slp_tree_2): Try swapping the
11738         matched stmts if we cannot swap the non-matched ones.
11740 2018-02-12  Olga Makhotina  <olga.makhotina@intel.com>
11742         * config/i386/avx512fintrin.h (_mm_mask_scalef_round_sd,
11743         _mm_maskz_scalef_round_sd, _mm_mask_scalef_round_ss,
11744         _mm_maskz_scalef_round_ss): New intrinsics.
11745         (__builtin_ia32_scalefsd_round, __builtin_ia32_scalefss_round): Fix.
11746         * config/i386/i386-builtin.def (__builtin_ia32_scalefsd_round,
11747         __builtin_ia32_scalefss_round): Remove.
11748         (__builtin_ia32_scalefsd_mask_round,
11749         __builtin_ia32_scalefss_mask_round): New intrinsics.
11750         * config/i386/sse.md (vmscalef<mode><round_name>): Renamed to ...
11751         (vmscalef<mode><mask_scalar_name><round_scalar_name>): ... this.
11752         ((match_operand:VF_128 2 "<round_nimm_predicate>"
11753         "<round_constraint>")): Changed to ...
11754         ((match_operand:VF_128 2 "<round_scalar_nimm_predicate>"
11755         "<round_scalar_constraint>")): ... this.
11756         ("vscalef<ssescalarmodesuffix>\t{<round_op3>%2, %1, %0|
11757         %0, %1, %2<round_op3>}"): Changed to ...
11758         ("vscalef<ssescalarmodesuffix>\t{<round_scalar_mask_op3>%2, %1,
11759         %0<mask_scalar_operand3>|%0<mask_scalar_operand3>, %1,
11760         %2<round_scalar_mask_op3>}"): ... this.
11761         * config/i386/subst.md (round_scalar_nimm_predicate): New.
11763 2018-02-12  Olga Makhotina  <olga.makhotina@intel.com>
11765         * config/i386/avx512fintrin.h (_mm_mask_sqrt_round_sd)
11766         (_mm_maskz_sqrt_round_sd, _mm_mask_sqrt_round_ss)
11767         (_mm_maskz_sqrt_round_ss): New intrinsics.
11768         (__builtin_ia32_sqrtsd_round, __builtin_ia32_sqrtss_round): Remove.
11769         (__builtin_ia32_sqrtsd_mask_round)
11770         (__builtin_ia32_sqrtss_mask_round): New builtins.
11771         * config/i386/i386-builtin.def (__builtin_ia32_sqrtsd_round)
11772         (__builtin_ia32_sqrtss_round): Remove.
11773         (__builtin_ia32_sqrtsd_mask_round)
11774         (__builtin_ia32_sqrtss_mask_round): New builtins.
11775         * config/i386/sse.md (vmsqrt<mode>2<round_name>): Renamed to ...
11776         (vmsqrt<mode>2<mask_scalar_name><round_scalar_name>): ... this.
11777         ((match_operand:VF_128 1 "vector_operand"
11778         "xBm,<round_constraint>")): Changed to ...
11779         ((match_operand:VF_128 1 "vector_operand"
11780         "xBm,<round_scalar_constraint>")): ... this.
11781         (vsqrt<ssescalarmodesuffix>\t{<round_op3>%1, %2, %0|
11782         %0, %2, %<iptr>1<round_op3>}): Changed to ...
11783         (vsqrt<ssescalarmodesuffix>\t{<round_scalar_mask_op3>%1, %2,
11784         %0<mask_scalar_operand3>|%0<mask_scalar_operand3>, %2,
11785         %<iptr>1<round_scalar_mask_op3>}): ... this.
11786         ((set_attr "prefix" "<round_prefix>")): Changed to ...
11787         ((set_attr "prefix" "<round_scalar_prefix>")): ... this.
11789 2018-02-11  Steven Munroe  <munroesj@gcc.gnu.org>
11791         PR target/84266
11792         * config/rs6000/mmintrin.h (_mm_cmpeq_pi32 [_ARCH_PWR9]):
11793         Cast vec_cmpeq result to correct type.
11794         * config/rs6000/mmintrin.h (_mm_cmpgt_pi32 [_ARCH_PWR9]):
11795         Cast vec_cmpgt result to correct type.
11797 2018-02-11  Alexandre Oliva  <aoliva@redhat.com>
11799         * final.c (final_scan_insn_1): Renamed from...
11800         (final_scan_insn): ... this.  New wrapper, to recover
11801         seen from the outermost call in recursive ones.
11802         * config/sparc/sparc.c (output_return): Drop seen from call.
11803         (output_sibcall): Likewise.
11804         * config/visium/visium.c (output_branch): Likewise.
11806 2018-02-10  John David Anglin  <danglin@gcc.gnu.org>
11808         * config/pa/pa.c (hppa_profile_hook): Mark SYMBOL_REF for _mcount as
11809         function label.
11811 2018-02-10  Alan Modra  <amodra@gmail.com>
11813         PR target/84300
11814         * config/rs6000/rs6000.md (split_stack_return): Remove (use ..).
11815         Specify LR as an input.
11817 2018-02-10  Jakub Jelinek  <jakub@redhat.com>
11819         PR sanitizer/83987
11820         * omp-low.c (maybe_remove_omp_member_access_dummy_vars,
11821         remove_member_access_dummy_vars): New functions.
11822         (lower_omp_for, lower_omp_taskreg, lower_omp_target,
11823         lower_omp_1, execute_lower_omp): Use them.
11825         PR rtl-optimization/84308
11826         * shrink-wrap.c (spread_components): Release todo vector.
11828 2018-02-09  Vladimir Makarov  <vmakarov@redhat.com>
11830         PR rtl-optimization/57193
11831         * ira-color.c (struct allocno_color_data): Add member
11832         conflict_allocno_hard_prefs.
11833         (update_conflict_allocno_hard_prefs): New.
11834         (bucket_allocno_compare_func): Add a preference based on
11835         conflict_allocno_hard_prefs.
11836         (push_allocno_to_stack): Update conflict_allocno_hard_prefs.
11837         (color_allocnos): Remove a dead code.  Initiate
11838         conflict_allocno_hard_prefs.  Call update_costs_from_prefs.
11840 2018-02-09  Jakub Jelinek  <jakub@redhat.com>
11842         PR target/84226
11843         * config/rs6000/vsx.md (p9_xxbrq_v16qi): Change input operand
11844         constraint from =wa to wa.  Avoid a subreg on the output operand,
11845         instead use a pseudo and subreg it in a move.
11846         (p9_xxbrd_<mode>): Changed to ...
11847         (p9_xxbrd_v2di): ... this insn, without VSX_D iterator.
11848         (p9_xxbrd_v2df): New expander.
11849         (p9_xxbrw_<mode>): Changed to ...
11850         (p9_xxbrw_v4si): ... this insn, without VSX_W iterator.
11851         (p9_xxbrw_v4sf): New expander.
11853 2018-02-09  Sebastian Perta  <sebastian.perta@renesas.com>
11855         * config/rx/rx.md (movsicc): Update expander to be matched by GCC.
11857 2018-02-09  Peter Bergner  <bergner@vnet.ibm.com>
11859         PR target/83926
11860         * config/rs6000/vsx.md (vsx_mul_v2di): Handle generating a 64-bit
11861         multiply in 32-bit mode.
11862         (vsx_div_v2di): Handle generating a 64-bit signed divide in 32-bit mode.
11863         (vsx_udiv_v2di): Handle generating a 64-bit unsigned divide in 32-bit
11864         mode.
11866 2018-02-09  Sebastian Perta  <sebastian.perta@renesas.com>
11868         * config/rx/constraints.md (CALL_OP_SYMBOL_REF): Added new constraint
11869         to allow or block "symbol_ref" depending on the value of TARGET_JSR.
11870         * config/rx/rx.md (call_internal): Use CALL_OP_SYMBOL_REF.
11871         * config/rx/rx.md (call_value_internal): Use CALL_OP_SYMBOL_REF.
11873 2018-02-09  Pierre-Marie de Rodat  <derodat@adacore.com>
11875         PR lto/84213
11876         * dwarf2out.c (is_trivial_indirect_ref): New function.
11877         (dwarf2out_late_global_decl): Do not generate a location
11878         attribute for variables that have a non-trivial DECL_VALUE_EXPR
11879         and that are not defined in the current unit.
11881 2018-02-09  Eric Botcazou  <ebotcazou@adacore.com>
11883         * optabs.c (prepare_cmp_insn): Try harder to emit a direct comparison
11884         instead of a libcall for UNORDERED.
11886 2018-02-09  Tamar Christina  <tamar.christina@arm.com>
11888         PR target/82641
11889         * config/arm/arm-c.c (arm_cpu_builtins): Un-define __ARM_FEATURE_LDREX,
11890         __ARM_ARCH_PROFILE, __ARM_ARCH_ISA_THUMB, __ARM_FP and __ARM_NEON_FP.
11892 2018-02-09  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
11894         PR target/PR84295
11895         * config/s390/s390.c (s390_set_current_function): Invoke
11896         s390_indirect_branch_settings also if fndecl didn't change.
11898 2018-02-09  Alexandre Oliva  <aoliva@redhat.com>
11900         * config/rs6000/rs6000.md (blockage): Set length to zero.
11902 2018-02-09  Eric Botcazou  <ebotcazou@adacore.com>
11904         * expr.c (optimize_bitfield_assignment_op): Remove obsolete assertion.
11906 2018-02-09  Jakub Jelinek  <jakub@redhat.com>
11908         PR sanitizer/84285
11909         * gcc.c (STATIC_LIBASAN_LIBS, STATIC_LIBTSAN_LIBS,
11910         STATIC_LIBLSAN_LIBS, STATIC_LIBUBSAN_LIBS): Handle -static like
11911         -static-lib*san.
11913         PR debug/84252
11914         * var-tracking.c (vt_add_function_parameter): Punt for non-onepart
11915         PARALLEL incoming that failed vt_get_decl_and_offset check.
11917         PR middle-end/84237
11918         * output.h (bss_initializer_p): Add NAMED argument, defaulted to false.
11919         * varasm.c (bss_initializer_p): Add NAMED argument, if true, ignore
11920         TREE_READONLY bit.
11921         (get_variable_section): For decls in named .bss* sections pass true as
11922         second argument to bss_initializer_p.
11924 2018-02-09  Marek Polacek  <polacek@redhat.com>
11925             Jakub Jelinek  <jakub@redhat.com>
11927         PR c++/83659
11928         * fold-const.c (fold_indirect_ref_1): Use VECTOR_TYPE_P macro.
11929         Formatting fixes.  Verify first that tree_fits_poly_int64_p (op01).
11930         Sync some changes from cxx_fold_indirect_ref.
11932 2018-02-09  Alexandre Oliva  <aoliva@redhat.com>
11934         * cfgexpand.c (expand_gimple_basic_block): Handle inline entry
11935         markers.
11936         * dwarf2out.c (dwarf2_debug_hooks): Enable inline_entry hook.
11937         (BLOCK_INLINE_ENTRY_LABEL): New.
11938         (dwarf2out_var_location): Disregard inline entry markers.
11939         (inline_entry_data): New struct.
11940         (inline_entry_data_hasher): New hashtable type.
11941         (inline_entry_data_hasher::hash): New.
11942         (inline_entry_data_hasher::equal): New.
11943         (inline_entry_data_table): New variable.
11944         (add_high_low_attributes): Add DW_AT_entry_pc and
11945         DW_AT_GNU_entry_view attributes if a pending entry is found
11946         in inline_entry_data_table.  Add old entry_pc attribute only
11947         if debug nonbinding markers are disabled.
11948         (gen_inlined_subroutine_die): Set BLOCK_DIE if nonbinding
11949         markers are enabled.
11950         (block_within_block_p, dwarf2out_inline_entry): New.
11951         (dwarf2out_finish): Check that no entries remained in
11952         inline_entry_data_table.
11953         * final.c (reemit_insn_block_notes): Handle inline entry notes.
11954         (final_scan_insn, notice_source_line): Likewise.
11955         (rest_of_clean_state): Skip inline entry markers.
11956         * gimple-pretty-print.c (dump_gimple_debug): Handle inline entry
11957         markers.
11958         * gimple.c (gimple_build_debug_inline_entry): New.
11959         * gimple.h (enum gimple_debug_subcode): Add
11960         GIMPLE_DEBUG_INLINE_ENTRY.
11961         (gimple_build_debug_inline_entry): Declare.
11962         (gimple_debug_inline_entry_p): New.
11963         (gimple_debug_nonbind_marker_p): Adjust.
11964         * insn-notes.def (INLINE_ENTRY): New.
11965         * print-rtl.c (rtx_writer::print_rtx_operand_code_0): Handle
11966         inline entry marker notes.
11967         (print_insn): Likewise.
11968         * rtl.h (NOTE_MARKER_P): Add INLINE_ENTRY support.
11969         (INSN_DEBUG_MARKER_KIND): Likewise.
11970         (GEN_RTX_DEBUG_MARKER_INLINE_ENTRY_PAT): New.
11971         * tree-inline.c (expand_call_inline): Build and insert
11972         debug_inline_entry stmt.
11973         * tree-ssa-live.c (remove_unused_scope_block_p): Preserve
11974         inline entry blocks early, if nonbind markers are enabled.
11975         (dump_scope_block): Dump fragment info.
11976         * var-tracking.c (reemit_marker_as_note): Handle inline entry note.
11977         * doc/gimple.texi (gimple_debug_inline_entry_p): New.
11978         (gimple_build_debug_inline_entry): New.
11979         * doc/invoke.texi (gstatement-frontiers, gno-statement-frontiers):
11980         Enable/disable inline entry points too.
11981         * doc/rtl.texi (NOTE_INSN_INLINE_ENTRY): New.
11982         (DEBUG_INSN): Describe inline entry markers.
11984         * common.opt (gvariable-location-views): New.
11985         (gvariable-location-views=incompat5): New.
11986         * config.in: Rebuilt.
11987         * configure: Rebuilt.
11988         * configure.ac: Test assembler for view support.
11989         * dwarf2asm.c (dw2_asm_output_symname_uleb128): New.
11990         * dwarf2asm.h (dw2_asm_output_symname_uleb128): Declare.
11991         * dwarf2out.c (var_loc_view): New typedef.
11992         (struct dw_loc_list_struct): Add vl_symbol, vbegin, vend.
11993         (dwarf2out_locviews_in_attribute): New.
11994         (dwarf2out_locviews_in_loclist): New.
11995         (dw_val_equal_p): Compare val_view_list of dw_val_class_view_lists.
11996         (enum dw_line_info_opcode): Add LI_adv_address.
11997         (struct dw_line_info_table): Add view.
11998         (RESET_NEXT_VIEW, RESETTING_VIEW_P): New macros.
11999         (DWARF2_ASM_VIEW_DEBUG_INFO): Define default.
12000         (zero_view_p): New variable.
12001         (ZERO_VIEW_P): New macro.
12002         (output_asm_line_debug_info): New.
12003         (struct var_loc_node): Add view.
12004         (add_AT_view_list, AT_loc_list): New.
12005         (add_var_loc_to_decl): Add view param.  Test it against last.
12006         (new_loc_list): Add view params.  Record them.
12007         (AT_loc_list_ptr): Handle loc and view lists.
12008         (view_list_to_loc_list_val_node): New.
12009         (print_dw_val): Handle dw_val_class_view_list.
12010         (size_of_die): Likewise.
12011         (value_format): Likewise.
12012         (loc_list_has_views): New.
12013         (gen_llsym): Set vl_symbol too.
12014         (maybe_gen_llsym, skip_loc_list_entry): New.
12015         (dwarf2out_maybe_output_loclist_view_pair): New.
12016         (output_loc_list): Output view list or entries too.
12017         (output_view_list_offset): New.
12018         (output_die): Handle dw_val_class_view_list.
12019         (output_dwarf_version): New.
12020         (output_compilation_unit_header): Use it.
12021         (output_skeleton_debug_sections): Likewise.
12022         (output_rnglists, output_line_info): Likewise.
12023         (output_pubnames, output_aranges): Update version comments.
12024         (output_one_line_info_table): Output view numbers in asm comments.
12025         (dw_loc_list): Determine current endview, pass it to new_loc_list.
12026         Call maybe_gen_llsym.
12027         (loc_list_from_tree_1): Adjust.
12028         (add_AT_location_description): Create view list attribute if
12029         needed, check it's absent otherwise.
12030         (convert_cfa_to_fb_loc_list): Adjust.
12031         (maybe_emit_file): Call output_asm_line_debug_info for test.
12032         (dwarf2out_var_location): Reset views as needed.  Precompute
12033         add_var_loc_to_decl args.  Call get_attr_min_length only if we have the
12034         attribute.  Set view.
12035         (new_line_info_table): Reset next view.
12036         (set_cur_line_info_table): Call output_asm_line_debug_info for test.
12037         (dwarf2out_source_line): Likewise.  Output view resets and labels to
12038         the assembler, or select appropriate line info opcodes.
12039         (prune_unused_types_walk_attribs): Handle dw_val_class_view_list.
12040         (optimize_string_length): Catch it.  Adjust.
12041         (resolve_addr): Copy vl_symbol along with ll_symbol.  Handle
12042         dw_val_class_view_list, and remove it if no longer needed.
12043         (hash_loc_list): Hash view numbers.
12044         (loc_list_hasher::equal): Compare them.
12045         (optimize_location_lists): Check whether a view list symbol is
12046         needed, and whether the locview attribute is present, and
12047         whether they match.  Remove the locview attribute if no longer
12048         needed.
12049         (index_location_lists): Call skip_loc_list_entry for test.
12050         (dwarf2out_finish): Call output_asm_line_debug_info for test.
12051         Use output_dwarf_version.
12052         * dwarf2out.h (enum dw_val_class): Add dw_val_class_view_list.
12053         (struct dw_val_node): Add val_view_list.
12054         * final.c (SEEN_NEXT_VIEW): New.
12055         (set_next_view_needed): New.
12056         (clear_next_view_needed): New.
12057         (maybe_output_next_view): New.
12058         (final_start_function): Rename to...
12059         (final_start_function_1): ... this.  Take pointer to FIRST,
12060         add SEEN parameter.  Emit param bindings in the initial view.
12061         (final_start_function): Reintroduce SEEN-less interface.
12062         (final): Rename to...
12063         (final_1): ... this.  Take SEEN parameter.  Output final pending
12064         next view at the end.
12065         (final): Reintroduce seen-less interface.
12066         (final_scan_insn): Output pending next view before switching
12067         sections or ending a block.  Mark the next view as needed when
12068         outputting variable locations.  Notify debug backend of section
12069         changes, and of location view changes.
12070         (rest_of_handle_final): Adjust.
12071         * toplev.c (process_options): Autodetect value for debug variable
12072         location views option.  Warn on incompat5 without -gdwarf-5.
12073         * doc/invoke.texi (gvariable-location-views): New.
12074         (gvariable-location-views=incompat5): New.
12075         (gno-variable-location-views): New.
12077 2018-02-08  David Malcolm  <dmalcolm@redhat.com>
12079         PR tree-optimization/84136
12080         * tree-cfg.c (find_taken_edge_computed_goto): Remove assertion
12081         that the result of find_edge is non-NULL.
12083 2018-02-08  Sergey Shalnov  <sergey.shalnov@intel.com>
12085         PR target/83008
12086         * config/i386/x86-tune-costs.h (skylake_cost): Fix cost of
12087         storing integer register in SImode.  Fix cost of 256 and 512
12088         byte aligned SSE register store.
12090 2018-02-08  Sergey Shalnov  <sergey.shalnov@intel.com>
12092         * config/i386/i386.c (ix86_multiplication_cost): Fix
12093         multiplication cost for TARGET_AVX512DQ.
12095 2018-02-08  Marek Polacek  <polacek@redhat.com>
12097         PR tree-optimization/84238
12098         * tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Verify the result of
12099         get_range_strlen.
12101 2018-02-08  Richard Sandiford  <richard.sandiford@linaro.org>
12103         PR tree-optimization/84265
12104         * tree-vect-stmts.c (vectorizable_store): Don't treat
12105         VMAT_CONTIGUOUS accesses as grouped.
12106         (vectorizable_load): Likewise.
12108 2018-02-08  Richard Sandiford  <richard.sandiford@linaro.org>
12110         PR tree-optimization/81635
12111         * wide-int.h (wi::round_down_for_mask, wi::round_up_for_mask): Declare.
12112         * wide-int.cc (wi::round_down_for_mask, wi::round_up_for_mask)
12113         (test_round_for_mask): New functions.
12114         (wide_int_cc_tests): Call test_round_for_mask.
12115         * tree-vrp.h (intersect_range_with_nonzero_bits): Declare.
12116         * tree-vrp.c (intersect_range_with_nonzero_bits): New function.
12117         * tree-data-ref.c (split_constant_offset_1): Use it to refine the
12118         range returned by get_range_info.
12120 2018-02-08  Jan Hubicka  <hubicka@ucw.cz>
12122         PR ipa/81360
12123         * cgraph.h (symtab_node::output_to_lto_symbol_table_p): Declare
12124         * symtab.c: Include builtins.h
12125         (symtab_node::output_to_lto_symbol_table_p): Move here
12126         from lto-streamer-out.c:output_symbol_p.
12127         * lto-streamer-out.c (write_symbol): Turn early exit to assert.
12128         (output_symbol_p): Move all logic to symtab.c
12129         (produce_symtab): Update.
12131 2018-02-08  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
12133         * config/s390/s390-opts.h (enum indirect_branch): Define.
12134         * config/s390/s390-protos.h (s390_return_addr_from_memory)
12135         (s390_indirect_branch_via_thunk)
12136         (s390_indirect_branch_via_inline_thunk): Add function prototypes.
12137         (enum s390_indirect_branch_type): Define.
12138         * config/s390/s390.c (struct s390_frame_layout, struct
12139         machine_function): Remove.
12140         (indirect_branch_prez10thunk_mask, indirect_branch_z10thunk_mask)
12141         (indirect_branch_table_label_no, indirect_branch_table_name):
12142         Define variables.
12143         (INDIRECT_BRANCH_NUM_OPTIONS): Define macro.
12144         (enum s390_indirect_branch_option): Define.
12145         (s390_return_addr_from_memory): New function.
12146         (s390_handle_string_attribute): New function.
12147         (s390_attribute_table): Add new attribute handler.
12148         (s390_execute_label): Handle UNSPEC_EXECUTE_JUMP patterns.
12149         (s390_indirect_branch_via_thunk): New function.
12150         (s390_indirect_branch_via_inline_thunk): New function.
12151         (s390_function_ok_for_sibcall): When jumping via thunk disallow
12152         sibling call optimization for non z10 compiles.
12153         (s390_emit_call): Force indirect branch target to be a single
12154         register.  Add r1 clobber for non-z10 compiles.
12155         (s390_emit_epilogue): Emit return jump via return_use expander.
12156         (s390_reorg): Handle JUMP_INSNs as execute targets.
12157         (s390_option_override_internal): Perform validity checks for the
12158         new command line options.
12159         (s390_indirect_branch_attrvalue): New function.
12160         (s390_indirect_branch_settings): New function.
12161         (s390_set_current_function): Invoke s390_indirect_branch_settings.
12162         (s390_output_indirect_thunk_function):  New function.
12163         (s390_code_end): Implement target hook.
12164         (s390_case_values_threshold): Implement target hook.
12165         (TARGET_ASM_CODE_END, TARGET_CASE_VALUES_THRESHOLD): Define target
12166         macros.
12167         * config/s390/s390.h (struct s390_frame_layout)
12168         (struct machine_function): Move here from s390.c.
12169         (TARGET_INDIRECT_BRANCH_NOBP_RET)
12170         (TARGET_INDIRECT_BRANCH_NOBP_JUMP)
12171         (TARGET_INDIRECT_BRANCH_NOBP_JUMP_THUNK)
12172         (TARGET_INDIRECT_BRANCH_NOBP_JUMP_INLINE_THUNK)
12173         (TARGET_INDIRECT_BRANCH_NOBP_CALL)
12174         (TARGET_DEFAULT_INDIRECT_BRANCH_TABLE)
12175         (TARGET_INDIRECT_BRANCH_THUNK_NAME_EXRL)
12176         (TARGET_INDIRECT_BRANCH_THUNK_NAME_EX)
12177         (TARGET_INDIRECT_BRANCH_TABLE): Define macros.
12178         * config/s390/s390.md (UNSPEC_EXECUTE_JUMP)
12179         (INDIRECT_BRANCH_THUNK_REGNUM): Define constants.
12180         (mnemonic attribute): Add values which aren't recognized
12181         automatically.
12182         ("*cjump_long", "*icjump_long", "*basr", "*basr_r"): Disable
12183         pattern for branch conversion.  Fix mnemonic attribute.
12184         ("*c<code>", "*sibcall_br", "*sibcall_value_br", "*return"): Emit
12185         indirect branch via thunk if requested.
12186         ("indirect_jump", "<code>"): Expand patterns for branch conversion.
12187         ("*indirect_jump"): Disable for branch conversion using out of
12188         line thunks.
12189         ("indirect_jump_via_thunk<mode>_z10")
12190         ("indirect_jump_via_thunk<mode>")
12191         ("indirect_jump_via_inlinethunk<mode>_z10")
12192         ("indirect_jump_via_inlinethunk<mode>", "*casesi_jump")
12193         ("casesi_jump_via_thunk<mode>_z10", "casesi_jump_via_thunk<mode>")
12194         ("casesi_jump_via_inlinethunk<mode>_z10")
12195         ("casesi_jump_via_inlinethunk<mode>", "*basr_via_thunk<mode>_z10")
12196         ("*basr_via_thunk<mode>", "*basr_r_via_thunk_z10")
12197         ("*basr_r_via_thunk", "return<mode>_prez10"): New pattern.
12198         ("*indirect2_jump"): Disable for branch conversion.
12199         ("casesi_jump"): Turn into expander and expand patterns for branch
12200         conversion.
12201         ("return_use"): New expander.
12202         ("*return"): Emit return via thunk and rename it to ...
12203         ("*return<mode>"): ... this one.
12204         * config/s390/s390.opt: Add new options and and enum for the
12205         option values.
12207 2018-02-08  Richard Sandiford  <richard.sandiford@linaro.org>
12209         * lra-constraints.c (match_reload): Unconditionally use
12210         gen_lowpart_SUBREG, rather than selecting between that
12211         and equivalent gen_rtx_SUBREG code.
12213 2018-02-08  Richard Biener  <rguenther@suse.de>
12215         PR tree-optimization/84233
12216         * tree-ssa-phiprop.c (propagate_with_phi): Use separate
12217         changed flag instead of boguously re-using phi_inserted.
12219 2018-02-08  Martin Jambor  <mjambor@suse.cz>
12221         * hsa-gen.c (get_symbol_for_decl): Set program allocation for
12222         static local variables.
12224 2018-02-08  Richard Biener  <rguenther@suse.de>
12226         PR tree-optimization/84278
12227         * tree-vect-stmts.c (vectorizable_store): When looking for
12228         smaller vector types to perform grouped strided loads/stores
12229         make sure the mode is supported by the target.
12230         (vectorizable_load): Likewise.
12232 2018-02-08  Wilco Dijkstra  <wdijkstr@arm.com>
12234         * config/aarch64/aarch64.c (aarch64_components_for_bb):
12235         Increase LDP/STP opportunities by adding adjacent callee-saves.
12237 2018-02-08  Wilco Dijkstra  <wdijkstr@arm.com>
12239         PR rtl-optimization/84068
12240         PR rtl-optimization/83459
12241         * haifa-sched.c (rank_for_schedule): Fix SCHED_PRESSURE_MODEL sorting.
12243 2018-02-08  Aldy Hernandez  <aldyh@redhat.com>
12245         PR tree-optimization/84224
12246         * gimple-ssa-warn-alloca.c (pass_walloca::execute): Remove assert.
12247         * calls.c (gimple_alloca_call_p): Only return TRUE when we have
12248         non-zero arguments.
12250 2018-02-07  Iain Sandoe  <iain@codesourcery.com>
12252         PR target/84113
12253         * config/rs6000/altivec.md (*restore_world): Remove LR use.
12254         * config/rs6000/predicates.md (restore_world_operation): Adjust op
12255         count, remove one USE.
12257 2018-02-07  Michael Meissner  <meissner@linux.vnet.ibm.com>
12259         * doc/install.texi (Configuration): Document the
12260         --with-long-double-format={ibm,ieee} PowerPC configuration
12261         options.
12263         PR target/84154
12264         * config/rs6000/rs6000.md (fix_trunc<SFDF:mode><QHI:mode>2):
12265         Convert from define_expand to be define_insn_and_split.  Rework
12266         float/double/_Float128 conversions to QI/HI/SImode to work with
12267         both ISA 2.07 (power8) or ISA 3.0 (power9).  Fix regression where
12268         conversions to QI/HImode types did a store and then a load to
12269         truncate the value.  For conversions to VSX registers, don't split
12270         the insn, instead emit the code directly.  Use the code iterator
12271         any_fix to combine signed and unsigned conversions.
12272         (fix<uns>_trunc<SFDF:mode>si2_p8): Likewise.
12273         (fixuns_trunc<SFDF:mode><QHI:mode>2): Likewise.
12274         (fix_trunc<IEEE128:mode><QHI:mode>2): Likewise.
12275         (fix<uns>_trunc<SFDF:mode><QHI:mode>2): Likewise.
12276         (fix_<mode>di2_hw): Likewise.
12277         (fixuns_<mode>di2_hw): Likewise.
12278         (fix_<mode>si2_hw): Likewise.
12279         (fixuns_<mode>si2_hw): Likewise.
12280         (fix<uns>_<IEEE128:mode><SDI:mode>2_hw): Likewise.
12281         (fix<uns>_trunc<IEEE128:mode><QHI:mode>2): Likewise.
12282         (fctiw<u>z_<mode>_smallint): Rename fctiw<u>z_<mode>_smallint to
12283         fix<uns>_trunc<SFDF:mode>si2_p8.
12284         (fix_trunc<SFDF:mode><QHI:mode>2_internal): Delete, no longer used.
12285         (fixuns_trunc<SFDF:mode><QHI:mode>2_internal): Likewise.
12286         (fix<uns>_<mode>_mem): Likewise.
12287         (fctiw<u>z_<mode>_mem): Likewise.
12288         (fix<uns>_<mode>_mem): Likewise.
12289         (fix<uns>_trunc<SFDF:mode><QHSI:mode>2_mem): On ISA 3.0, prevent
12290         the register allocator from doing a direct move to the GPRs to do
12291         a store, and instead use the ISA 3.0 store byte/half-word from
12292         vector register instruction.  For IEEE 128-bit floating point,
12293         also optimize stores of 32-bit ints.
12294         (fix<uns>_trunc<IEEE128:mode><QHSI:mode>2_mem): Likewise.
12296 2018-02-07  Alan Hayward  <alan.hayward@arm.com>
12298         * genextract.c (push_pathstr_operand): New function to support
12299         [a-zA-Z].
12300         (walk_rtx): Call push_pathstr_operand.
12301         (print_path): Support [a-zA-Z].
12303 2018-02-07  Richard Biener  <rguenther@suse.de>
12305         PR tree-optimization/84037
12306         * tree-vectorizer.h (struct _loop_vec_info): Add ivexpr_map member.
12307         (cse_and_gimplify_to_preheader): Declare.
12308         (vect_get_place_in_interleaving_chain): Likewise.
12309         * tree-vect-loop.c (_loop_vec_info::_loop_vec_info): Initialize
12310         ivexpr_map.
12311         (_loop_vec_info::~_loop_vec_info): Delete it.
12312         (cse_and_gimplify_to_preheader): New function.
12313         * tree-vect-slp.c (vect_get_place_in_interleaving_chain): Export.
12314         * tree-vect-stmts.c (vectorizable_store): CSE base and steps.
12315         (vectorizable_load): Likewise.  For grouped stores always base
12316         the IV on the first element.
12317         * tree-vect-loop-manip.c (vect_loop_versioning): Unshare versioning
12318         condition before gimplifying.
12320 2018-02-07  Jakub Jelinek  <jakub@redhat.com>
12322         * tree-eh.c (operation_could_trap_helper_p): Ignore honor_trapv for
12323         *DIV_EXPR and *MOD_EXPR.
12325 2018-02-07  H.J. Lu  <hongjiu.lu@intel.com>
12327         PR target/84248
12328         * config/i386/i386.c (ix86_option_override_internal): Mask out
12329         the CF_SET bit when checking -fcf-protection.
12331 2018-02-07  Tom de Vries  <tom@codesourcery.com>
12333         PR libgomp/84217
12334         * omp-expand.c (expand_oacc_collapse_init): Ensure diff_type is large
12335         enough.
12337 2018-02-07  Richard Biener  <rguenther@suse.de>
12339         PR tree-optimization/84204
12340         * tree-chrec.c (chrec_fold_plus_1): Remove size limiting in
12341         this place.
12343         PR tree-optimization/84205
12344         * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Also
12345         special-case isl_ast_op_zdiv_r.
12347         PR tree-optimization/84223
12348         * graphite-scop-detection.c (gather_bbs::before_dom_children):
12349         Only add conditions from within the region.
12350         (gather_bbs::after_dom_children): Adjust.
12352 2018-02-07  Georg-Johann Lay  <avr@gjlay.de>
12354         PR target/84209
12355         * config/avr/avr.h (GENERAL_REGNO_P, GENERAL_REG_P): New macros.
12356         * config/avr/avr.md: Only post-reload split REG-REG moves if
12357         either register is GENERAL_REG_P.
12359 2018-02-07  Jakub Jelinek  <jakub@redhat.com>
12361         PR tree-optimization/84235
12362         * tree-ssa-scopedtables.c
12363         (avail_exprs_stack::simplify_binary_operation): Fir MINUS_EXPR, punt
12364         if the subtraction is performed in floating point type where NaNs are
12365         honored.  For *DIV_EXPR, punt for ALL_FRACT_MODE_Ps where we can't
12366         build 1.  Formatting fix.
12368 2018-02-06  Jakub Jelinek  <jakub@redhat.com>
12370         PR target/84146
12371         * config/i386/i386.c (rest_of_insert_endbranch): Only skip
12372         NOTE_INSN_CALL_ARG_LOCATION after a call, not anything else,
12373         and skip it regardless of bb boundaries.  Use CALL_P macro,
12374         don't test INSN_P (insn) together with CALL_P or JUMP_P check
12375         unnecessarily, formatting fix.
12377 2018-02-06  Michael Collison  <michael.collison@arm.com>
12379         * config/arm/thumb2.md:
12380         (*thumb2_mov_negscc): Split only if TARGET_THUMB2 && !arm_restrict_it.
12381         (*thumb_mov_notscc): Ditto.
12383 2018-02-06  Michael Meissner  <meissner@linux.vnet.ibm.com>
12385         PR target/84154
12386         * config/rs6000/rs6000.md (su code attribute): Use "u" for
12387         unsigned_fix, not "s".
12389 2018-02-06  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12391         * configure.ac (gcc_fn_eh_frame_ro): New function.
12392         (gcc_cv_as_cfi_directive): Check both 32 and 64-bit assembler for
12393         correct .eh_frame permissions.
12394         * configure: Regenerate.
12396 2018-02-06  Andrew Jenner  <andrew@codeourcery.com>
12398         * doc/invoke.texi: Add section for the PowerPC SPE backend. Remove
12399         irrelevant options.
12401 2018-02-06  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
12403         * config/rs6000/rs6000.c (rs6000_option_override_internal):
12404         Display warning message for -mno-speculate-indirect-jumps.
12406 2018-02-06  Andrew Jenner  <andrew@codesourcery.com>
12408         * config/powerpcspe/powerpcspe.opt: (msimple-fpu, mfpu) Add
12409         Undocumented.
12410         * config/powerpcspe/sysv4.opt (mbit-align): Likewise.
12412 2018-02-06  Aldy Hernandez  <aldyh@redhat.com>
12414         PR tree-optimization/84225
12415         * tree-eh.c (find_trapping_overflow): Only call
12416         operation_no_trapping_overflow when ANY_INTEGRAL_TYPE_P.
12418 2018-02-06  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
12420         PR target/84145
12421         * config/i386/i386.c: Reimplement the check of possible options
12422         -mibt/-mshstk conbination. Change error messages.
12423         * doc/invoke.texi: Fix a typo: remove extra '='.
12425 2018-02-06  Marek Polacek  <polacek@redhat.com>
12427         PR tree-optimization/84228
12428         * tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Skip debug statements.
12430 2018-02-06  Tamar Christina  <tamar.christina@arm.com>
12432         PR target/82641
12433         * config/arm/arm.c (arm_print_asm_arch_directives): Record already
12434         emitted arch directives.
12435         * config/arm/arm-c.c (arm_cpu_builtins): Undefine __ARM_ARCH and
12436         __ARM_FEATURE_COPROC before changing architectures.
12438 2018-02-06  Richard Biener  <rguenther@suse.de>
12440         * config/i386/i386.c (print_reg): Fix typo.
12441         (ix86_loop_unroll_adjust): Do not unroll beyond the original nunroll.
12443 2018-02-06  Eric Botcazou  <ebotcazou@adacore.com>
12445         * configure: Regenerate.
12447 2018-02-05  Martin Sebor  <msebor@redhat.com>
12449         PR tree-optimization/83369
12450         * tree-ssa-ccp.c (pass_post_ipa_warn::execute): Use %G to print
12451         inlining context.
12453 2018-02-05  Martin Liska  <mliska@suse.cz>
12455         * doc/invoke.texi: Cherry-pick upstream r323995.
12457 2018-02-05  Richard Sandiford  <richard.sandiford@linaro.org>
12459         * ira.c (ira_init_register_move_cost): Adjust comment.
12461 2018-02-05  Martin Liska  <mliska@suse.cz>
12463         PR gcov-profile/84137
12464         * doc/gcov.texi: Fix typo in documentation.
12466 2018-02-05  Martin Liska  <mliska@suse.cz>
12468         PR gcov-profile/83879
12469         * doc/gcov.texi: Document necessity of --dynamic-list-data when
12470         using dlopen functionality.
12472 2018-02-05  Olga Makhotina  <olga.makhotina@intel.com>
12474         * config/i386/avx512dqintrin.h (_mm_mask_range_sd, _mm_maskz_range_sd,
12475         _mm_mask_range_round_sd, _mm_maskz_range_round_sd, _mm_mask_range_ss,
12476         _mm_maskz_range_ss, _mm_mask_range_round_ss,
12477         _mm_maskz_range_round_ss): New intrinsics.
12478         (__builtin_ia32_rangesd128_round)
12479         (__builtin_ia32_rangess128_round): Remove.
12480         (__builtin_ia32_rangesd128_mask_round,
12481         __builtin_ia32_rangess128_mask_round): New builtins.
12482         * config/i386/i386-builtin.def (__builtin_ia32_rangesd128_round,
12483         __builtin_ia32_rangess128_round): Remove.
12484         (__builtin_ia32_rangesd128_mask_round,
12485         __builtin_ia32_rangess128_mask_round): New builtins.
12486         * config/i386/sse.md (ranges<mode><round_saeonly_name>): Renamed to ...
12487         (ranges<mode><mask_scalar_name><round_saeonly_scalar_name>): ... this.
12488         ((match_operand:VF_128 2 "<round_saeonly_nimm_predicate>"
12489         "<round_saeonly_constraint>")): Changed to ...
12490         ((match_operand:VF_128 2 "<round_saeonly_scalar_nimm_predicate>"
12491         "<round_saeonly_scalar_constraint>")): ... this.
12492         ("vrange<ssescalarmodesuffix>\t{%3, <round_saeonly_op4>%2, %1, %0|
12493         %0, %1, %2<round_saeonly_op4>, %3}"): Changed to ...
12494         ("vrange<ssescalarmodesuffix>\t{%3, <round_saeonly_scalar_mask_op4>%2,
12495         %1, %0<mask_scalar_operand4>|%0<mask_scalar_operand4>, %1,
12496         %2<round_saeonly_scalar_mask_op4>, %3}"): ... this.
12498 2018-02-02  Andrew Jenner  <andrew@codesourcery.com>
12500         * config/powerpcspe/powerpcspe.opt: Add Undocumented to irrelevant
12501         options.
12502         * config/powerpcspe/powerpcspe-tables.opt (rs6000_cpu_opt_value):
12503         Remove all values except native, 8540 and 8548.
12505 2018-02-02  H.J. Lu  <hongjiu.lu@intel.com>
12507         * config/i386/i386.c (ix86_output_function_return): Pass
12508         INVALID_REGNUM, instead of -1, as invalid register number to
12509         indirect_thunk_name and output_indirect_thunk.
12511 2018-02-02  Julia Koval  <julia.koval@intel.com>
12513         * config.gcc: Add -march=icelake.
12514         * config/i386/driver-i386.c (host_detect_local_cpu): Detect icelake.
12515         * config/i386/i386-c.c (ix86_target_macros_internal): Handle icelake.
12516         * config/i386/i386.c (processor_costs): Add m_ICELAKE.
12517         (PTA_ICELAKE, PTA_AVX512VNNI, PTA_GFNI, PTA_VAES, PTA_AVX512VBMI2,
12518         PTA_VPCLMULQDQ, PTA_RDPID, PTA_AVX512BITALG): New.
12519         (processor_target_table): Add icelake.
12520         (ix86_option_override_internal): Handle new PTAs.
12521         (get_builtin_code_for_version): Handle icelake.
12522         (M_INTEL_COREI7_ICELAKE): New.
12523         (fold_builtin_cpu): Handle icelake.
12524         * config/i386/i386.h (TARGET_ICELAKE, PROCESSOR_ICELAKE): New.
12525         * doc/invoke.texi: Add -march=icelake.
12527 2018-02-02  Julia Koval  <julia.koval@intel.com>
12529         * config/i386/i386.c (ix86_option_override_internal): Change flags type
12530         to wide_int_bitmask.
12531         * wide-int-bitmask.h: New.
12533 2018-02-02  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
12535         PR target/84066
12536         * config/i386/i386.md: Replace Pmode with word_mode in
12537         builtin_setjmp_setup and builtin_longjmp to support x32.
12539 2018-02-01  Peter Bergner  <bergner@vnet.ibm.com>
12541         PR target/56010
12542         PR target/83743
12543         * config/rs6000/driver-rs6000.c: #include "diagnostic.h".
12544         #include "opts.h".
12545         (rs6000_supported_cpu_names): New static variable.
12546         (linux_cpu_translation_table): Likewise.
12547         (elf_platform) <cpu>: Define new static variable and use it.
12548         Translate kernel AT_PLATFORM name to canonical name if needed.
12549         Error if platform name is unknown.
12551 2018-02-01  Aldy Hernandez  <aldyh@redhat.com>
12553         PR target/84089
12554         * config/pa/predicates.md (base14_operand): Handle E_VOIDmode.
12556 2018-02-01  Jeff Law  <law@redhat.com>
12558         PR target/84128
12559         * config/i386/i386.c (release_scratch_register_on_entry): Add new
12560         OFFSET and RELEASE_VIA_POP arguments.  Use SP+OFFSET to restore
12561         the scratch if RELEASE_VIA_POP is false.
12562         (ix86_adjust_stack_and_probe_stack_clash): Un-constify SIZE.
12563         If we have to save a temporary register, decrement SIZE appropriately.
12564         Pass new arguments to release_scratch_register_on_entry.
12565         (ix86_adjust_stack_and_probe): Likewise.
12566         (ix86_emit_probe_stack_range): Pass new arguments to
12567         release_scratch_register_on_entry.
12569 2018-02-01  Uros Bizjak  <ubizjak@gmail.com>
12571         PR rtl-optimization/84157
12572         * combine.c (change_zero_ext): Use REG_P predicate in
12573         front of HARD_REGISTER_P predicate.
12575 2018-02-01  Georg-Johann Lay  <avr@gjlay.de>
12577         * config/avr/avr.c (avr_option_override): Move disabling of
12578         -fdelete-null-pointer-checks to...
12579         * common/config/avr/avr-common.c (avr_option_optimization_table):
12580         ...here.
12582 2018-02-01  Richard Sandiford  <richard.sandiford@linaro.org>
12584         PR tree-optimization/81635
12585         * tree-data-ref.c (split_constant_offset_1): For types that
12586         wrap on overflow, try to use range info to prove that wrapping
12587         cannot occur.
12589 2018-02-01  Renlin Li  <renlin.li@arm.com>
12591         PR target/83370
12592         * config/aarch64/aarch64.c (aarch64_class_max_nregs): Handle
12593         TAILCALL_ADDR_REGS.
12594         (aarch64_register_move_cost): Likewise.
12595         * config/aarch64/aarch64.h (reg_class): Rename CALLER_SAVE_REGS to
12596         TAILCALL_ADDR_REGS.
12597         (REG_CLASS_NAMES): Likewise.
12598         (REG_CLASS_CONTENTS): Rename CALLER_SAVE_REGS to
12599         TAILCALL_ADDR_REGS. Remove IP registers.
12600         * config/aarch64/aarch64.md (Ucs): Update register constraint.
12602 2018-02-01  Richard Biener  <rguenther@suse.de>
12604         * domwalk.h (dom_walker::dom_walker): Add additional constructor
12605         for specifying RPO order and allow NULL for that.
12606         * domwalk.c (dom_walker::dom_walker): Likewise.
12607         (dom_walker::walk): Handle NULL RPO order.
12608         * tree-into-ssa.c (rewrite_dom_walker): Do not walk dom children
12609         in RPO order.
12610         (rewrite_update_dom_walker): Likewise.
12611         (mark_def_dom_walker): Likewise.
12613 2018-02-01  Richard Sandiford  <richard.sandiford@linaro.org>
12615         * config/aarch64/aarch64-protos.h (aarch64_split_sve_subreg_move)
12616         (aarch64_maybe_expand_sve_subreg_move): Declare.
12617         * config/aarch64/aarch64.md (UNSPEC_REV_SUBREG): New unspec.
12618         * config/aarch64/predicates.md (aarch64_any_register_operand): New
12619         predicate.
12620         * config/aarch64/aarch64-sve.md (mov<mode>): Optimize subreg moves
12621         that are semantically a reverse operation.
12622         (*aarch64_sve_mov<mode>_subreg_be): New pattern.
12623         * config/aarch64/aarch64.c (aarch64_maybe_expand_sve_subreg_move):
12624         (aarch64_replace_reg_mode, aarch64_split_sve_subreg_move): New
12625         functions.
12626         (aarch64_can_change_mode_class): For big-endian, forbid changes
12627         between two SVE modes if they have different element sizes.
12629 2018-02-01  Richard Sandiford  <richard.sandiford@linaro.org>
12631         * config/aarch64/aarch64.c (aarch64_expand_sve_const_vector): Prefer
12632         the TImode handling for big-endian targets.
12634 2018-02-01  Richard Sandiford  <richard.sandiford@linaro.org>
12636         * config/aarch64/aarch64-sve.md (sve_ld1rq): Replace with...
12637         (*sve_ld1rq<Vesize>): ... this new pattern.  Handle all element sizes,
12638         not just bytes.
12639         * config/aarch64/aarch64.c (aarch64_expand_sve_widened_duplicate):
12640         Remove BSWAP handing for big-endian targets and use the form of
12641         LD1RQ appropariate for the mode.
12643 2018-02-01  Richard Sandiford  <richard.sandiford@linaro.org>
12645         * config/aarch64/aarch64.c (aarch64_simd_valid_immediate): Handle
12646         all CONST_VECTOR_DUPLICATE_P vectors, not just those with a single
12647         duplicated element.
12649 2018-02-01  Richard Sandiford  <richard.sandiford@linaro.org>
12651         PR tearget/83845
12652         * config/aarch64/aarch64.c (aarch64_secondary_reload): Tighten
12653         check for operands that need to go through aarch64_sve_reload_be.
12655 2018-02-01  Jakub Jelinek  <jakub@redhat.com>
12657         PR tree-optimization/81661
12658         PR tree-optimization/84117
12659         * tree-eh.h (rewrite_to_non_trapping_overflow): Declare.
12660         * tree-eh.c: Include gimplify.h.
12661         (find_trapping_overflow, replace_trapping_overflow,
12662         rewrite_to_non_trapping_overflow): New functions.
12663         * tree-vect-loop.c: Include tree-eh.h.
12664         (vect_get_loop_niters): Use rewrite_to_non_trapping_overflow.
12665         * tree-data-ref.c: Include tree-eh.h.
12666         (get_segment_min_max): Use rewrite_to_non_trapping_overflow.
12668 2018-01-31  Uros Bizjak  <ubizjak@gmail.com>
12670         PR rtl-optimization/84123
12671         * combine.c (change_zero_ext): Check if hard register satisfies
12672         can_change_dest_mode before calling gen_lowpart_SUBREG.
12674 2018-01-31  Vladimir Makarov  <vmakarov@redhat.com>
12676         PR target/82444
12677         * ira.c (ira_init_register_move_cost): Remove assert.
12679 2018-01-31  Eric Botcazou  <ebotcazou@adacore.com>
12681         PR rtl-optimization/84071
12682         * doc/tm.texi.in (WORD_REGISTER_OPERATIONS): Add explicit case.
12683         * doc/tm.texi: Regenerate.
12685 2018-01-31  Richard Biener  <rguenther@suse.de>
12687         PR tree-optimization/84132
12688         * tree-data-ref.c (analyze_miv_subscript): Properly
12689         check whether evolution_function_is_affine_multivariate_p
12690         before calling gcd_of_steps_may_divide_p.
12692 2018-01-31  Julia Koval  <julia.koval@intel.com>
12694         PR target/83618
12695         * config/i386/i386.c (ix86_expand_builtin): Handle IX86_BUILTIN_RDPID.
12696         * config/i386/i386.md (rdpid_rex64) New.
12697         (rdpid): Make 32bit only.
12699 2018-01-29  Aldy Hernandez  <aldyh@redhat.com>
12701         PR lto/84105
12702         * tree-pretty-print.c (dump_generic_node): Handle a TYPE_NAME with
12703         an IDENTIFIER_NODE for FUNCTION_TYPE's.
12705 2018-01-31  Eric Botcazou  <ebotcazou@adacore.com>
12707         Revert
12708         2018-01-12  Eric Botcazou  <ebotcazou@adacore.com>
12710         * config/sparc/sparc.md (vxworks_load_got): Set the GOT register.
12712 2018-01-31  Eric Botcazou  <ebotcazou@adacore.com>
12714         PR rtl-optimization/84071
12715         * combine.c (record_dead_and_set_regs_1): Record the source unmodified
12716         for a paradoxical SUBREG on a WORD_REGISTER_OPERATIONS target.
12718 2018-01-31  Claudiu Zissulescu  <claziss@synopsys.com>
12720         * config/arc/arc.c (arc_handle_aux_attribute): New function.
12721         (arc_attribute_table): Add 'aux' attribute.
12722         (arc_in_small_data_p): Consider aux like variables.
12723         (arc_is_aux_reg_p): New function.
12724         (arc_asm_output_aligned_decl_local): Ignore 'aux' like variables.
12725         (arc_get_aux_arg): New function.
12726         (prepare_move_operands): Handle aux-register access.
12727         (arc_handle_aux_attribute): New function.
12728         * doc/extend.texi (ARC Variable attributes): Add subsection.
12730 2018-01-31  Claudiu Zissulescu  <claziss@synopsys.com>
12732         * config/arc/arc-protos.h (arc_is_uncached_mem_p): Function proto.
12733         * config/arc/arc.c (arc_handle_uncached_attribute): New function.
12734         (arc_attribute_table): Add 'uncached' attribute.
12735         (arc_print_operand): Print '.di' flag for uncached memory
12736         accesses.
12737         (arc_in_small_data_p): Do not consider for small data the uncached
12738         types.
12739         (arc_is_uncached_mem_p): New function.
12740         * config/arc/predicates.md (compact_store_memory_operand): Check
12741         for uncached memory accesses.
12742         (nonvol_nonimm_operand): Likewise.
12743         * gcc/doc/extend.texi (ARC Type Attribute): New subsection.
12745 2018-01-31  Jakub Jelinek  <jakub@redhat.com>
12747         PR c/84100
12748         * common.opt (falign-functions=, falign-jumps=, falign-labels=,
12749         falign-loops=): Add Optimization flag.
12751 2018-01-30  Jeff Law  <law@redhat.com>
12753         PR target/84064
12754         * i386.c (ix86_adjust_stack_and_probe_stack_clash): New argument
12755         INT_REGISTERS_SAVED.  Check it prior to calling
12756         get_scratch_register_on_entry.
12757         (ix86_adjust_stack_and_probe): Similarly.
12758         (ix86_emit_probe_stack_range): Similarly.
12759         (ix86_expand_prologue): Corresponding changes.
12761 2018-01-30  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12763         PR target/40411
12764         * config/sol2.h (STARTFILE_ARCH_SPEC): Use -std=c*,
12765         -std=iso9899:199409 instead of -pedantic to select values-Xc.o.
12767 2018-01-30  Vladimir Makarov  <vmakarov@redhat.com>
12769         PR target/84112
12770         * lra-constraints.c (curr_insn_transform): Process AND in the
12771         address.
12773 2018-01-30  Jakub Jelinek  <jakub@redhat.com>
12775         PR rtl-optimization/83986
12776         * sched-deps.c (sched_analyze_insn): For frame related insns, add anti
12777         dependence against last_pending_memory_flush in addition to
12778         pending_jump_insns.
12780 2018-01-30  Alexandre Oliva  <aoliva@redhat.com>
12782         PR tree-optimization/81611
12783         * tree-ssa-dom.c (simple_iv_increment_p): Skip intervening
12784         copies.
12786 2018-01-30  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
12788         PR target/83758
12789         * config/rs6000/rs6000.c (rs6000_internal_arg_pointer): Only return
12790         a reg rtx.
12792 2018-01-30  Richard Biener  <rguenther@suse.de>
12793             Jakub Jelinek  <jakub@redhat.com>
12795         PR tree-optimization/84111
12796         * tree-ssa-loop-ivcanon.c (tree_unroll_loops_completely_1): Skip
12797         inner loops added during recursion, as they don't have up-to-date
12798         SSA form.
12800 2018-01-30  Jan Hubicka  <hubicka@ucw.cz>
12802         PR ipa/81360
12803         * ipa-inline.c (can_inline_edge_p): Break out late tests to...
12804         (can_inline_edge_by_limits_p): ... here.
12805         (can_early_inline_edge_p, check_callers,
12806         update_caller_keys, update_callee_keys, recursive_inlining,
12807         add_new_edges_to_heap, speculation_useful_p,
12808         inline_small_functions,
12809         inline_small_functions, flatten_function,
12810         inline_to_all_callers_1): Update.
12812 2018-01-30  Jan Hubicka  <hubicka@ucw.cz>
12814         * profile-count.c (profile_count::combine_with_ipa_count): Handle
12815         zeros correctly.
12817 2018-01-30  Richard Biener  <rguenther@suse.de>
12819         PR tree-optimization/83008
12820         * tree-vect-slp.c (vect_analyze_slp_cost_1): Properly cost
12821         invariant and constant vector uses in stmts when they need
12822         more than one stmt.
12824 2018-01-30  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12826         PR bootstrap/84017
12827         * configure.ac (gcc_cv_as_shf_merge): Disable on Solaris 10/x86.
12828         * configure: Regenerate.
12830 2018-01-30  Richard Sandiford  <richard.sandiford@linaro.org>
12832         * config/aarch64/aarch64-sve.md (*vec_extract<mode><Vel>_0): New
12833         pattern.
12834         (*vec_extract<mode><Vel>_v128): Require a nonzero lane number.
12835         Use gen_rtx_REG rather than gen_lowpart.
12837 2018-01-30  Richard Sandiford  <richard.sandiford@linaro.org>
12839         * lra-constraints.c (match_reload): Use subreg_lowpart_offset
12840         rather than 0 when creating partial subregs.
12842 2018-01-30  Richard Sandiford  <richard.sandiford@linaro.org>
12844         * vec-perm-indices.c (vec_perm_indices::series_p): Give examples
12845         of usage.
12847 2018-01-29  Michael Meissner  <meissner@linux.vnet.ibm.com>
12849         PR target/81550
12850         * config/rs6000/rs6000.c (rs6000_setup_reg_addr_masks): If DFmode
12851         and SFmode can go in Altivec registers (-mcpu=power7 for DFmode,
12852         -mcpu=power8 for SFmode) don't set the PRE_INCDEC or PRE_MODIFY
12853         flags.  This restores the settings used before the 2017-07-24.
12854         Turning off pre increment/decrement/modify allows IVOPTS to
12855         optimize DF/SF loops where the index is an int.
12857 2018-01-29  Richard Biener  <rguenther@suse.de>
12858             Kelvin Nilsen  <kelvin@gcc.gnu.org>
12860         PR bootstrap/80867
12861         * tree-vect-stmts.c (vectorizable_call): Don't call
12862         targetm.vectorize_builtin_md_vectorized_function if callee is
12863         NULL.
12865 2018-01-22  Carl Love  <cel@us.ibm.com>
12867         * doc/extend.tex: Fix typo in second arg in
12868         __builtin_bcdadd_{lt|eq|gt|ov} and __builtin_bcdsub_{lt|eq|gt|ov}.
12870 2018-01-29  Richard Biener  <rguenther@suse.de>
12872         PR tree-optimization/84086
12873         * tree-ssanames.c: Include cfgloop.h and tree-scalar-evolution.h.
12874         (flush_ssaname_freelist): When SSA names were released reset
12875         the SCEV hash table.
12877 2018-01-29  Richard Biener  <rguenther@suse.de>
12879         PR tree-optimization/84057
12880         * tree-ssa-loop-ivcanon.c (unloop_loops): Deal with already
12881         removed paths when removing edges.
12883 2018-01-27  H.J. Lu  <hongjiu.lu@intel.com>
12885         * doc/invoke.texi: Replace -mfunction-return==@var{choice} with
12886         -mfunction-return=@var{choice}.
12888 2018-01-27  Bernd Edlinger  <bernd.edlinger@hotmail.de>
12890         PR diagnostic/84034
12891         * diagnostic-show-locus.c (get_line_width_without_trailing_whitespace):
12892         Handle CR like TAB.
12893         (layout::print_source_line): Likewise.
12894         (test_get_line_width_without_trailing_whitespace): Add test cases.
12896 2018-01-27  Jakub Jelinek  <jakub@redhat.com>
12898         PR middle-end/84040
12899         * sched-deps.c (sched_macro_fuse_insns): Return immediately for
12900         debug insns.
12902 2018-01-26  Jim Wilson  <jimw@sifive.com>
12904         * config/riscv/riscv.h (MAX_FIXED_MODE_SIZE): New.
12906         * config/riscv/elf.h (LIB_SPEC): Don't include -lgloss when nosys.specs
12907         specified.
12909 2018-01-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12911         * config/aarch64/aarch64.md: Add peepholes for CMP + SUB -> SUBS
12912         and CMP + SUB-immediate -> SUBS.
12914 2018-01-26  Martin Sebor  <msebor@redhat.com>
12916         PR tree-optimization/83896
12917         * tree-ssa-strlen.c (get_string_len): Rename...
12918         (get_string_cst_length): ...to this.  Return HOST_WIDE_INT.
12919         Avoid assuming length is constant.
12920         (handle_char_store): Use HOST_WIDE_INT for string length.
12922 2018-01-26  Uros Bizjak  <ubizjak@gmail.com>
12924         PR target/81763
12925         * config/i386/i386.md (*andndi3_doubleword): Add earlyclobber
12926         to (=&r,r,rm) alternative. Add (=r,0,rm) and (=r,r,0) alternatives.
12928 2018-01-26  Richard Biener  <rguenther@suse.de>
12930         PR rtl-optimization/84003
12931         * dse.c (record_store): Only record redundant stores when
12932         the earlier store aliases at least all accesses the later one does.
12934 2018-01-26  Jakub Jelinek  <jakub@redhat.com>
12936         PR rtl-optimization/83985
12937         * dce.c (deletable_insn_p): Return false for separate shrink wrapping
12938         REG_CFA_RESTORE insns.
12939         (delete_unmarked_insns): Don't ignore separate shrink wrapping
12940         REG_CFA_RESTORE insns here.
12942         PR c/83989
12943         * gimple-ssa-warn-restrict.c (builtin_memref::builtin_memref): Don't
12944         use SSA_NAME_VAR as base for SSA_NAMEs with non-NULL SSA_NAME_VAR.
12946 2018-01-26  Claudiu Zissulescu  <claziss@synopsys.com>
12948         * config/arc/arc-arch.h (arc_tune_attr): Add ARC_TUNE_CORE_3.
12949         * config/arc/arc.c (arc_sched_issue_rate): Use ARC_TUNE_... .
12950         (arc_init): Likewise.
12951         (arc_override_options): Likewise.
12952         (arc_file_start): Choose Tag_ARC_CPU_variation based on arc_tune
12953         value.
12954         (hwloop_fail): Use TARGET_DBNZ when we want to check for dbnz insn
12955         support.
12956         * config/arc/arc.h (TARGET_DBNZ): Define.
12957         * config/arc/arc.md (attr tune): Add core_3, use ARC_TUNE_... to
12958         properly set the tune attribute.
12959         (dbnz): Use TARGET_DBNZ guard.
12960         * config/arc/arc.opt (mtune): Add core3 option.
12962 2018-01-26  Claudiu Zissulescu  <claziss@synopsys.com>
12964         * config/arc/arc.c (arc_delegitimize_address_0): Refactored to
12965         recognize new pic like addresses.
12966         (arc_delegitimize_address): Clean up.
12968 2018-01-26  Claudiu Zissulescu  <claziss@synopsys.com>
12970         * config/arc/arc-arches.def: Option mrf16 valid for all
12971         architectures.
12972         * config/arc/arc-c.def (__ARC_RF16__): New predefined macro.
12973         * config/arc/arc-cpus.def (em_mini): New cpu with rf16 on.
12974         * config/arc/arc-options.def (FL_RF16): Add mrf16 option.
12975         * config/arc/arc-tables.opt: Regenerate.
12976         * config/arc/arc.c (arc_conditional_register_usage): Handle
12977         reduced register file case.
12978         (arc_file_start): Set must have build attributes.
12979         * config/arc/arc.h (MAX_ARC_PARM_REGS): Conditional define using
12980         mrf16 option value.
12981         * config/arc/arc.opt (mrf16): Add new option.
12982         * config/arc/elf.h (ATTRIBUTE_PCS): Define.
12983         * config/arc/genmultilib.awk: Handle new mrf16 option.
12984         * config/arc/linux.h (ATTRIBUTE_PCS): Define.
12985         * config/arc/t-multilib: Regenerate.
12986         * doc/invoke.texi (ARC Options): Document mrf16 option.
12988 2018-01-26  Claudiu Zissulescu  <claziss@synopsys.com>
12990         * config/arc/arc-protos.h: Add arc_is_secure_call_p proto.
12991         * config/arc/arc.c (arc_handle_secure_attribute): New function.
12992         (arc_attribute_table): Add 'secure_call' attribute.
12993         (arc_print_operand): Print secure call operand.
12994         (arc_function_ok_for_sibcall): Don't optimize tail calls when
12995         secure.
12996         (arc_is_secure_call_p): New function.  * config/arc/arc.md
12997         (call_i): Add support for sjli instruction.
12998         (call_value_i): Likewise.
12999         * config/arc/constraints.md (Csc): New constraint.
13001 2018-01-26  Claudiu Zissulescu  <claziss@synopsys.com>
13002             John Eric Martin  <John.Martin@emmicro-us.com>
13004         * config/arc/arc-protos.h: Add arc_is_jli_call_p proto.
13005         * config/arc/arc.c (_arc_jli_section): New struct.
13006         (arc_jli_section): New type.
13007         (rc_jli_sections): New static variable.
13008         (arc_handle_jli_attribute): New function.
13009         (arc_attribute_table): Add jli_always and jli_fixed attribute.
13010         (arc_file_end): New function.
13011         (TARGET_ASM_FILE_END): Define.
13012         (arc_print_operand): Reuse 'S' letter for JLI output instruction.
13013         (arc_add_jli_section): New function.
13014         (jli_call_scan): Likewise.
13015         (arc_reorg): Call jli_call_scan.
13016         (arc_output_addsi): Remove 'S' from printing asm operand.
13017         (arc_is_jli_call_p): New function.
13018         * config/arc/arc.md (movqi_insn): Remove 'S' from printing asm
13019         operand.
13020         (movhi_insn): Likewise.
13021         (movsi_insn): Likewise.
13022         (movsi_set_cc_insn): Likewise.
13023         (loadqi_update): Likewise.
13024         (load_zeroextendqisi_update): Likewise.
13025         (load_signextendqisi_update): Likewise.
13026         (loadhi_update): Likewise.
13027         (load_zeroextendhisi_update): Likewise.
13028         (load_signextendhisi_update): Likewise.
13029         (loadsi_update): Likewise.
13030         (loadsf_update): Likewise.
13031         (movsicc_insn): Likewise.
13032         (bset_insn): Likewise.
13033         (bxor_insn): Likewise.
13034         (bclr_insn): Likewise.
13035         (bmsk_insn): Likewise.
13036         (bicsi3_insn): Likewise.
13037         (cmpsi_cc_c_insn): Likewise.
13038         (movsi_ne): Likewise.
13039         (movsi_cond_exec): Likewise.
13040         (clrsbsi2): Likewise.
13041         (norm_f): Likewise.
13042         (normw): Likewise.
13043         (swap): Likewise.
13044         (divaw): Likewise.
13045         (flag): Likewise.
13046         (sr): Likewise.
13047         (kflag): Likewise.
13048         (ffs): Likewise.
13049         (ffs_f): Likewise.
13050         (fls): Likewise.
13051         (call_i): Remove 'S' asm letter, add jli instruction.
13052         (call_value_i): Likewise.
13053         * config/arc/arc.op (mjli-always): New option.
13054         * config/arc/constraints.md (Cji): New constraint.
13055         * config/arc/fpx.md (addsf3_fpx): Remove 'S' from printing asm
13056         operand.
13057         (subsf3_fpx): Likewise.
13058         (mulsf3_fpx): Likewise.
13059         * config/arc/simdext.md (vendrec_insn): Remove 'S' from printing
13060         asm operand.
13061         * doc/extend.texi (ARC): Document 'jli-always' and 'jli-fixed'
13062         function attrbutes.
13063         * doc/invoke.texi (ARC): Document mjli-always option.
13065 2018-01-26  Sebastian Perta  <sebastian.perta@renesas.com>
13067         * config/rl78/rl78.c (rl78_addsi3_internal): If operand 2 is const
13068         avoid addition with 0 and use incw and decw where possible.
13070 2018-01-26  Richard Biener  <rguenther@suse.de>
13072         PR tree-optimization/81082
13073         * fold-const.c (fold_plusminus_mult_expr): Do not perform the
13074         association if it requires casting to unsigned.
13075         * match.pd ((A * C) +- (B * C) -> (A+-B)): New patterns derived
13076         from fold_plusminus_mult_expr to catch important cases late when
13077         range info is available.
13079 2018-01-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
13081         * config/i386/sol2.h (USE_HIDDEN_LINKONCE): Remove.
13082         * configure.ac (hidden_linkonce): New test.
13083         * configure: Regenerate.
13084         * config.in: Regenerate.
13086 2018-01-26  Julia Koval  <julia.koval@intel.com>
13088         * config/i386/avx512bitalgintrin.h (_mm512_bitshuffle_epi64_mask,
13089         _mm512_mask_bitshuffle_epi64_mask, _mm256_bitshuffle_epi64_mask,
13090         _mm256_mask_bitshuffle_epi64_mask, _mm_bitshuffle_epi64_mask,
13091         _mm_mask_bitshuffle_epi64_mask): Fix type.
13092         * config/i386/i386-builtin-types.def (UHI_FTYPE_V2DI_V2DI_UHI,
13093         USI_FTYPE_V4DI_V4DI_USI): Remove.
13094         * config/i386/i386-builtin.def (__builtin_ia32_vpshufbitqmb512_mask,
13095         __builtin_ia32_vpshufbitqmb256_mask,
13096         __builtin_ia32_vpshufbitqmb128_mask): Fix types.
13097         * config/i386/i386.c (ix86_expand_args_builtin): Remove old types.
13098         * config/i386/sse.md (VI1_AVX512VLBW): Change types.
13100 2018-01-26  Alan Modra  <amodra@gmail.com>
13102         PR target/84033
13103         * config/rs6000/rs6000-p8swap.c (rtx_is_swappable_p): Exclude
13104         UNSPEC_VBPERMQ.  Sort other unspecs.
13106 2018-01-25  David Edelsohn  <dje.gcc@gmail.com>
13108         * doc/invoke.texi (PowerPC Options): Document 'native' cpu type.
13110 2018-01-25  Jan Hubicka  <hubicka@ucw.cz>
13112         PR middle-end/83055
13113         * predict.c (drop_profile): Do not push/pop cfun; update also
13114         node->count.
13115         (handle_missing_profiles): Fix logic looking for zero profiles.
13117 2018-01-25  Jakub Jelinek  <jakub@redhat.com>
13119         PR middle-end/83977
13120         * ipa-fnsummary.c (compute_fn_summary): Clear can_change_signature
13121         on functions with #pragma omp declare simd or functions with simd
13122         attribute.
13123         * omp-simd-clone.c (expand_simd_clones): Revert 2018-01-24 change.
13124         * config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
13125         Remove trailing \n from warning_at calls.
13127 2018-01-25  Tom de Vries  <tom@codesourcery.com>
13129         PR target/84028
13130         * config/nvptx/nvptx.c (nvptx_single): Add exit insn after noreturn call
13131         for neutered workers.
13133 2018-01-24  Joseph Myers  <joseph@codesourcery.com>
13135         PR target/68467
13136         * config/m68k/m68k.c (m68k_promote_function_mode): New function.
13137         (TARGET_PROMOTE_FUNCTION_MODE): New macro.
13139 2018-01-24  Jeff Law  <law@redhat.com>
13141         PR target/83994
13142         * i386.c (get_probe_interval): Move to earlier point.
13143         (ix86_compute_frame_layout): If -fstack-clash-protection and
13144         the frame is larger than the probe interval, then use pushes
13145         to save registers rather than reg->mem moves.
13146         (ix86_expand_prologue): Remove conditional for int_registers_saved
13147         assertion.
13149 2018-01-24  Vladimir Makarov  <vmakarov@redhat.com>
13151         PR target/84014
13152         * ira-build.c (setup_min_max_allocno_live_range_point): Set up
13153         min/max for never referenced object.
13155 2018-01-24  Jakub Jelinek  <jakub@redhat.com>
13157         PR middle-end/83977
13158         * tree.c (free_lang_data_in_decl): Don't clear DECL_ABSTRACT_ORIGIN
13159         here.
13160         * omp-low.c (create_omp_child_function): Remove "omp declare simd"
13161         attributes from DECL_ATTRIBUTES (decl) without affecting
13162         DECL_ATTRIBUTES (current_function_decl).
13163         * omp-simd-clone.c (expand_simd_clones): Ignore DECL_ARTIFICIAL
13164         functions with non-NULL DECL_ABSTRACT_ORIGIN.
13166 2018-01-24  Richard Sandiford  <richard.sandiford@linaro.org>
13168         PR tree-optimization/83979
13169         * fold-const.c (fold_comparison): Use constant_boolean_node
13170         instead of boolean_{true,false}_node.
13172 2018-01-24  Jan Hubicka  <hubicka@ucw.cz>
13174         * ipa-profile.c (ipa_propagate_frequency_1): Fix logic skipping calls
13175         with zero counts.
13177 2018-01-24  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
13179         * config/rs6000/rs6000.md (*call_indirect_nonlocal_sysv<mode>):
13180         Simplify the clause that sets the length attribute.
13181         (*call_value_indirect_nonlocal_sysv<mode>): Likewise.
13182         (*sibcall_nonlocal_sysv<mode>): Clean up code block; simplify the
13183         clause that sets the length attribute.
13184         (*sibcall_value_nonlocal_sysv<mode>): Likewise.
13186 2018-01-24  Tom de Vries  <tom@codesourcery.com>
13188         PR target/83589
13189         * config/nvptx/nvptx.c (WORKAROUND_PTXJIT_BUG_2): Define to 1.
13190         (nvptx_pc_set, nvptx_condjump_label): New function. Copy from jump.c.
13191         Add strict parameter.
13192         (prevent_branch_around_nothing): Insert dummy insn between branch to
13193         label and label with no ptx insn inbetween.
13194         * config/nvptx/nvptx.md (define_insn "fake_nop"): New insn.
13196 2018-01-24  Tom de Vries  <tom@codesourcery.com>
13198         PR target/81352
13199         * config/nvptx/nvptx.c (nvptx_single): Add exit insn after noreturn call
13200         for neutered threads in warp.
13201         * config/nvptx/nvptx.md (define_insn "exit"): New insn.
13203 2018-01-24  Richard Biener  <rguenther@suse.de>
13205         PR tree-optimization/83176
13206         * tree-chrec.c (chrec_fold_plus_1): Handle (signed T){(T) .. }
13207         operands.
13209 2018-01-24  Richard Biener  <rguenther@suse.de>
13211         PR tree-optimization/82819
13212         * graphite-isl-ast-to-gimple.c (binary_op_to_tree): Avoid
13213         code generating pluses that are no-ops in the target precision.
13215 2018-01-24  Richard Biener  <rguenther@suse.de>
13217         PR middle-end/84000
13218         * tree-cfg.c (replace_loop_annotate): Handle annot_expr_parallel_kind.
13220 2018-01-23  Jan Hubicka  <hubicka@ucw.cz>
13222         * cfgcleanup.c (try_crossjump_to_edge): Use combine_with_count
13223         to merge probabilities.
13224         * predict.c (probably_never_executed): Also mark as cold functions
13225         with global 0 profile and guessed local profile.
13226         * profile-count.c (profile_probability::combine_with_count): New
13227         member function.
13228         * profile-count.h (profile_probability::operator*,
13229         profile_probability::operator*=, profile_probability::operator/,
13230         profile_probability::operator/=): Reduce precision to adjusted
13231         and set value to guessed on contradictory divisions.
13232         (profile_probability::combine_with_freq): Remove.
13233         (profile_probability::combine_wiht_count): Declare.
13234         (profile_count::force_nonzero):: Set to adjusted.
13235         (profile_count::probability_in):: Set quality to adjusted.
13236         * tree-ssa-tail-merge.c (replace_block_by): Use
13237         combine_with_count.
13239 2018-01-23  Andrew Waterman  <andrew@sifive.com>
13240             Jim Wilson  <jimw@sifive.com>
13242         * config/riscv/riscv.c (riscv_stack_boundary): New.
13243         (riscv_option_override): Set riscv_stack_boundary.  Handle
13244         riscv_preferred_stack_boundary_arg.
13245         * config/riscv/riscv.h (MIN_STACK_BOUNDARY, ABI_STACK_BOUNDARY): New.
13246         (BIGGEST_ALIGNMENT): Set to STACK_BOUNDARY.
13247         (STACK_BOUNDARY): Set to riscv_stack_boundary.
13248         (RISCV_STACK_ALIGN): Use STACK_BOUNDARY.
13249         * config/riscv/riscv.opt (mpreferred-stack-boundary): New.
13250         * doc/invoke.tex (RISC-V Options): Add -mpreferred-stack-boundary.
13252 2018-01-23  H.J. Lu  <hongjiu.lu@intel.com>
13254         PR target/83905
13255         * config/i386/i386.c (ix86_expand_prologue): Use cost reference
13256         of struct ix86_frame.
13257         (ix86_expand_epilogue): Likewise.  Add a local variable for
13258         the reg_save_offset field in struct ix86_frame.
13260 2018-01-23  Bin Cheng  <bin.cheng@arm.com>
13262         PR tree-optimization/82604
13263         * tree-loop-distribution.c (enum partition_kind): New enum item
13264         PKIND_PARTIAL_MEMSET.
13265         (partition_builtin_p): Support above new enum item.
13266         (generate_code_for_partition): Ditto.
13267         (compute_access_range): Differentiate cases that equality can be
13268         proven at all loops, the innermost loops or no loops.
13269         (classify_builtin_st, classify_builtin_ldst): Adjust call to above
13270         function.  Set PKIND_PARTIAL_MEMSET for partition appropriately.
13271         (finalize_partitions, distribute_loop): Don't fuse partition of
13272         PKIND_PARTIAL_MEMSET kind when distributing 3-level loop nest.
13273         (prepare_perfect_loop_nest): Distribute 3-level loop nest only if
13274         parloop is enabled.
13276 2018-01-23  Martin Liska  <mliska@suse.cz>
13278         * predict.def (PRED_INDIR_CALL): Set probability to PROB_EVEN in
13279         order to ignore the predictor.
13280         (PRED_POLYMORPHIC_CALL): Likewise.
13281         (PRED_RECURSIVE_CALL): Likewise.
13283 2018-01-23  Martin Liska  <mliska@suse.cz>
13285         * tree-profile.c (tree_profiling): Print function header to
13286         aware reader which function we are working on.
13287         * value-prof.c (gimple_find_values_to_profile): Do not print
13288         not interesting value histograms.
13290 2018-01-23  Martin Liska  <mliska@suse.cz>
13292         * profile-count.h (enum profile_quality): Add
13293         profile_uninitialized as the first value. Do not number values
13294         as they are zero based.
13295         (profile_count::verify): Update sanity check.
13296         (profile_probability::verify): Likewise.
13298 2018-01-23  Nathan Sidwell  <nathan@acm.org>
13300         * doc/invoke.texi (ffor-scope): Deprecate.
13302 2018-01-23  David Malcolm  <dmalcolm@redhat.com>
13304         PR tree-optimization/83510
13305         * domwalk.c (set_all_edges_as_executable): New function.
13306         (dom_walker::dom_walker): Convert bool param
13307         "skip_unreachable_blocks" to enum reachability.  Move setup of
13308         edge flags to set_all_edges_as_executable and only do it when
13309         reachability is REACHABLE_BLOCKS.
13310         * domwalk.h (enum dom_walker::reachability): New enum.
13311         (dom_walker::dom_walker): Convert bool param
13312         "skip_unreachable_blocks" to enum reachability.
13313         (set_all_edges_as_executable): New decl.
13314         * graphite-scop-detection.c  (gather_bbs::gather_bbs): Convert
13315         from false for "skip_unreachable_blocks" to ALL_BLOCKS for
13316         "reachability".
13317         * tree-ssa-dom.c (dom_opt_dom_walker::dom_opt_dom_walker): Likewise,
13318         but converting true to REACHABLE_BLOCKS.
13319         * tree-ssa-sccvn.c (sccvn_dom_walker::sccvn_dom_walker): Likewise.
13320         * tree-vrp.c
13321         (check_array_bounds_dom_walker::check_array_bounds_dom_walker):
13322         Likewise, but converting it to REACHABLE_BLOCKS_PRESERVING_FLAGS.
13323         (vrp_dom_walker::vrp_dom_walker): Likewise, but converting it to
13324         REACHABLE_BLOCKS.
13325         (vrp_prop::vrp_finalize): Call set_all_edges_as_executable
13326         if check_all_array_refs will be called.
13328 2018-01-23  David Malcolm  <dmalcolm@redhat.com>
13330         * tree.c (selftest::test_location_wrappers): Add more test
13331         coverage.
13333 2018-01-23  David Malcolm  <dmalcolm@redhat.com>
13335         * sbitmap.c (selftest::test_set_range): Fix memory leaks.
13336         (selftest::test_bit_in_range): Likewise.
13338 2018-01-23  Richard Sandiford  <richard.sandiford@linaro.org>
13340         PR testsuite/83888
13341         * doc/sourcebuild.texi (vect_float): Say that the selector
13342         only describes the situation when -funsafe-math-optimizations is on.
13343         (vect_float_strict): Document.
13345 2018-01-23  Richard Sandiford  <richard.sandiford@linaro.org>
13347         PR tree-optimization/83965
13348         * tree-vect-patterns.c (vect_reassociating_reduction_p): New function.
13349         (vect_recog_dot_prod_pattern, vect_recog_sad_pattern): Use it
13350         instead of checking only for a reduction.
13351         (vect_recog_widen_sum_pattern): Likewise.
13353 2018-01-23  Jan Hubicka  <hubicka@ucw.cz>
13355         * predict.c (probably_never_executed): Only use precise profile info.
13356         (compute_function_frequency): Skip after inlining hack since we now
13357         have quality checking.
13359 2018-01-23  Jan Hubicka  <hubicka@ucw.cz>
13361         * profile-count.h (profile_probability::very_unlikely,
13362         profile_probability::unlikely, profile_probability::even): Set
13363         precision to guessed.
13365 2018-01-23  Richard Biener  <rguenther@suse.de>
13367         PR tree-optimization/83963
13368         * graphite-scop-detection.c (scop_detection::harmful_loop_in_region):
13369         Properly terminate dominator walk when crossing the exit edge not
13370         when visiting its source block.
13372 2018-01-23  Jakub Jelinek  <jakub@redhat.com>
13374         PR c++/83918
13375         * tree.c (maybe_wrap_with_location): Use NON_LVALUE_EXPR rather than
13376         VIEW_CONVERT_EXPR to wrap CONST_DECLs.
13378 2018-01-22  Jakub Jelinek  <jakub@redhat.com>
13380         PR tree-optimization/83957
13381         * omp-expand.c (expand_omp_for_generic): Ignore virtual PHIs.  Remove
13382         semicolon after for body surrounded by braces.
13384         PR tree-optimization/83081
13385         * profile-count.h (profile_probability::split): New method.
13386         * dojump.c (do_jump_1) <case TRUTH_ANDIF_EXPR, case TRUTH_ORIF_EXPR>:
13387         Use profile_probability::split.
13388         (do_compare_rtx_and_jump): Fix adjustment of probabilities
13389         when splitting a single conditional jump into 2.
13391 2018-01-22  David Malcolm  <dmalcolm@redhat.com>
13393         PR tree-optimization/69452
13394         * tree-ssa-loop-im.c (class move_computations_dom_walker): Remove
13395         decl.
13397 2018-01-22  Sebastian Perta  <sebastian.perta@renesas.com>
13399         * config/rl78/rl78-expand.md (bswaphi2): New define_expand.
13400         * config/rl78/rl78-virt.md (*bswaphi2_virt): New define_insn.
13401         * config/rl78/rl78-real.md (*bswaphi2_real): New define_insn.
13403 2018-01-22  Sebastian Perta  <sebastian.perta@renesas.com>
13405         * config/rl78/rl78-protos.h (rl78_split_movdi): New function
13406         declaration.
13407         * config/rl78/rl78.md (movdi): New define_expand.
13408         * config/rl78/rl78.c (rl78_split_movdi): New function.
13410 2018-01-22  Michael Meissner  <meissner@linux.vnet.ibm.com>
13412         PR target/83862
13413         * config/rs6000/rs6000-protos.h (rs6000_split_signbit): Delete,
13414         no longer used.
13415         * config/rs6000/rs6000.c (rs6000_split_signbit): Likewise.
13416         * config/rs6000/rs6000.md (signbit<mode>2): Change code for IEEE
13417         128-bit to produce an UNSPEC move to get the double word with the
13418         signbit and then a shift directly to do signbit.
13419         (signbit<mode>2_dm): Replace old IEEE 128-bit signbit
13420         implementation with a new version that just does either a direct
13421         move or a regular move.  Move memory interface to separate insns.
13422         Move insns so they are next to the expander.
13423         (signbit<mode>2_dm_mem_be): New combiner insns to combine load
13424         with signbit move.  Split big and little endian case.
13425         (signbit<mode>2_dm_mem_le): Likewise.
13426         (signbit<mode>2_dm_<su>ext): Delete, no longer used.
13427         (signbit<mode>2_dm2): Likewise.
13429 2018-01-22  Sebastian Perta  <sebastian.perta@renesas.com>
13431         * config/rl78/rl78.md (anddi3): New define_expand.
13433 2018-01-22  Sebastian Perta  <sebastian.perta@renesas.com>
13435         * config/rl78/rl78.md (umindi3): New define_expand.
13437 2018-01-22  Sebastian Perta  <sebastian.perta@renesas.com>
13439         * config/rl78/rl78.md (smindi3): New define_expand.
13441 2018-01-22  Sebastian Perta  <sebastian.perta@renesas.com>
13443         * config/rl78/rl78.md (smaxdi3): New define_expand.
13445 2018-01-22  Carl Love  <cel@us.ibm.com>
13447         * config/rs6000/rs6000-builtin.def (ST_ELEMREV_V1TI, LD_ELEMREV_V1TI,
13448         LVX_V1TI): Add macro expansion.
13449         * config/rs6000/rs6000-c.c (altivec_builtin_types): Add argument
13450         definitions for VSX_BUILTIN_VEC_XST_BE, VSX_BUILTIN_VEC_ST,
13451         VSX_BUILTIN_VEC_XL, LD_ELEMREV_V1TI builtins.
13452         * config/rs6000/rs6000-p8swap.c (insn_is_swappable_p);
13453         Change check to determine if the instruction is a byte reversing
13454         entry.  Fix typo in comment.
13455         * config/rs6000/rs6000.c (altivec_expand_builtin): Add case entry
13456         for VSX_BUILTIN_ST_ELEMREV_V1TI and VSX_BUILTIN_LD_ELEMREV_V1TI.
13457         Add def_builtin calls for new builtins.
13458         * config/rs6000/vsx.md (vsx_st_elemrev_v1ti, vsx_ld_elemrev_v1ti):
13459         Add define_insn expansion.
13461 2018-01-22  Sebastian Perta  <sebastian.perta@renesas.com>
13463         * config/rl78/rl78.md (umaxdi3): New define_expand.
13465 2018-01-22  Sebastian Perta  <sebastian.perta@renesas.com>
13467         * config/rl78/rl78.c (rl78_note_reg_set): Fixed dead reg check
13468         for non-QImode registers.
13470 2018-01-22  Richard Biener  <rguenther@suse.de>
13472         PR tree-optimization/83963
13473         * graphite-scop-detection.c (scop_detection::get_sese): Delay
13474         including the loop exit block.
13475         (scop_detection::merge_sese): Likewise.
13476         (scop_detection::add_scop): Do it here instead.
13478 2018-01-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13480         * doc/sourcebuild.texi (arm_softfloat): Document.
13482 2018-01-21  John David Anglin  <danglin@gcc.gnu.org>
13484         PR gcc/77734
13485         * config/pa/pa.c (pa_function_ok_for_sibcall): Use
13486         targetm.binds_local_p instead of TREE_PUBLIC to check local binding.
13487         Move TARGET_PORTABLE_RUNTIME check after TARGET_64BIT check.
13489 2018-01-21  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
13490             David Edelsohn  <dje.gcc@gmail.com>
13492         PR target/83946
13493         * config/rs6000/rs6000.md (*call_indirect_nonlocal_sysv<mode>):
13494         Change "crset eq" to "crset 2".
13495         (*call_value_indirect_nonlocal_sysv<mode>): Likewise.
13496         (*call_indirect_aix<mode>_nospec): Likewise.
13497         (*call_value_indirect_aix<mode>_nospec): Likewise.
13498         (*call_indirect_elfv2<mode>_nospec): Likewise.
13499         (*call_value_indirect_elfv2<mode>_nospec): Likewise.
13500         (*sibcall_nonlocal_sysv<mode>): Change "crset eq" to "crset 2";
13501         change assembly output from . to $.
13502         (*sibcall_value_nonlocal_sysv<mode>): Likewise.
13503         (indirect_jump<mode>_nospec): Change assembly output from . to $.
13504         (*tablejump<mode>_internal1_nospec): Likewise.
13506 2018-01-21  Oleg Endo  <olegendo@gcc.gnu.org>
13508         PR target/80870
13509         * config/sh/sh_optimize_sett_clrt.cc:
13510         Use INCLUDE_ALGORITHM and INCLUDE_VECTOR instead of direct includes.
13512 2018-01-20  Richard Sandiford  <richard.sandiford@linaro.org>
13514         PR tree-optimization/83940
13515         * tree-vect-stmts.c (vect_truncate_gather_scatter_offset): Set
13516         offset_dt to vect_constant_def rather than vect_unknown_def_type.
13517         (vect_check_load_store_mask): Add a mask_dt_out parameter and
13518         use it to pass back the definition type.
13519         (vect_check_store_rhs): Likewise rhs_dt_out.
13520         (vect_build_gather_load_calls): Add a mask_dt argument and use
13521         it instead of a call to vect_is_simple_use.
13522         (vectorizable_store): Update calls to vect_check_load_store_mask
13523         and vect_check_store_rhs.  Use the dt returned by the latter instead
13524         of scatter_src_dt.  Use the cached mask_dt and gs_info.offset_dt
13525         instead of calls to vect_is_simple_use.  Pass the scalar rather
13526         than the vector operand to vect_is_simple_use when handling
13527         second and subsequent copies of an rhs value.
13528         (vectorizable_load): Update calls to vect_check_load_store_mask
13529         and vect_build_gather_load_calls.  Use the cached mask_dt and
13530         gs_info.offset_dt instead of calls to vect_is_simple_use.
13532 2018-01-20  Jakub Jelinek  <jakub@redhat.com>
13534         PR middle-end/83945
13535         * tree-emutls.c: Include gimplify.h.
13536         (lower_emutls_2): New function.
13537         (lower_emutls_1): If ADDR_EXPR is a gimple invariant and walk_tree
13538         with lower_emutls_2 callback finds some TLS decl in it, unshare_expr
13539         it before further processing.
13541         PR target/83930
13542         * simplify-rtx.c (simplify_binary_operation_1) <case UMOD>: Use
13543         UINTVAL (trueop1) instead of INTVAL (op1).
13545 2018-01-19  Jakub Jelinek  <jakub@redhat.com>
13547         PR debug/81570
13548         PR debug/83728
13549         * dwarf2cfi.c (DEFAULT_INCOMING_FRAME_SP_OFFSET): Define to
13550         INCOMING_FRAME_SP_OFFSET if not defined.
13551         (scan_trace): Add ENTRY argument.  If true and
13552         DEFAULT_INCOMING_FRAME_SP_OFFSET != INCOMING_FRAME_SP_OFFSET,
13553         emit a note to adjust the CFA offset.
13554         (create_cfi_notes): Adjust scan_trace callers.
13555         (create_cie_data): Use DEFAULT_INCOMING_FRAME_SP_OFFSET rather than
13556         INCOMING_FRAME_SP_OFFSET in the CIE.
13557         * config/i386/i386.h (DEFAULT_INCOMING_FRAME_SP_OFFSET): Define.
13558         * config/stormy16/stormy16.h (DEFAULT_INCOMING_FRAME_SP_OFFSET):
13559         Likewise.
13560         * doc/tm.texi.in (DEFAULT_INCOMING_FRAME_SP_OFFSET): Document.
13561         * doc/tm.texi: Regenerated.
13563 2018-01-19  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
13565         PR rtl-optimization/83147
13566         * lra-constraints.c (remove_inheritance_pseudos): Use
13567         lra_substitute_pseudo_within_insn.
13569 2018-01-19  Tom de Vries  <tom@codesourcery.com>
13570             Cesar Philippidis  <cesar@codesourcery.com>
13572         PR target/83920
13573         * config/nvptx/nvptx.c (nvptx_single): Fix jit workaround.
13575 2018-01-19  Cesar Philippidis  <cesar@codesourcery.com>
13577         PR target/83790
13578         * config/nvptx/nvptx.c (output_init_frag): Don't use generic address
13579         spaces for function labels.
13581 2018-01-19  Martin Liska  <mliska@suse.cz>
13583         * predict.def (PRED_LOOP_EXIT): Change from 85 to 89.
13584         (PRED_LOOP_EXIT_WITH_RECURSION): Change from 72 to 78.
13585         (PRED_LOOP_EXTRA_EXIT): Change from 83 to 67.
13586         (PRED_OPCODE_POSITIVE): Change from 64 to 59.
13587         (PRED_TREE_OPCODE_POSITIVE): Change from 64 to 59.
13588         (PRED_CONST_RETURN): Change from 69 to 65.
13589         (PRED_NULL_RETURN): Change from 91 to 71.
13590         (PRED_LOOP_IV_COMPARE_GUESS): Change from 98 to 64.
13591         (PRED_LOOP_GUARD): Change from 66 to 73.
13593 2018-01-19  Martin Liska  <mliska@suse.cz>
13595         * predict.c (predict_insn_def): Add new assert.
13596         (struct branch_predictor): Change type to signed integer.
13597         (test_prediction_value_range): Amend test to cover
13598         PROB_UNINITIALIZED.
13599         * predict.def (PRED_LOOP_ITERATIONS): Use the new constant.
13600         (PRED_LOOP_ITERATIONS_GUESSED): Likewise.
13601         (PRED_LOOP_ITERATIONS_MAX): Likewise.
13602         (PRED_LOOP_IV_COMPARE): Likewise.
13603         * predict.h (PROB_UNINITIALIZED): Define new constant.
13605 2018-01-19  Martin Liska  <mliska@suse.cz>
13607         * predict.c (dump_prediction): Add new format for
13608         analyze_brprob.py script which is enabled with -details
13609         suboption.
13610         * profile-count.h (precise_p): New function.
13612 2018-01-19  Richard Sandiford  <richard.sandiford@linaro.org>
13614         PR tree-optimization/83922
13615         * tree-vect-loop.c (vect_verify_full_masking): Return false if
13616         there are no statements that need masking.
13617         (vect_active_double_reduction_p): New function.
13618         (vect_analyze_loop_operations): Use it when handling phis that
13619         are not in the loop header.
13621 2018-01-19  Richard Sandiford  <richard.sandiford@linaro.org>
13623         PR tree-optimization/83914
13624         * tree-vect-loop.c (vectorizable_induction): Don't convert
13625         init_expr or apply the peeling adjustment for inductions
13626         that are nested within the vectorized loop.
13628 2018-01-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13630         * config/arm/thumb2.md (*thumb2_negsi2_short): Use RSB mnemonic
13631         instead of NEG.
13633 2018-01-18  Jakub Jelinek  <jakub@redhat.com>
13635         PR sanitizer/81715
13636         PR testsuite/83882
13637         * function.h (gimplify_parameters): Add gimple_seq * argument.
13638         * function.c: Include gimple.h and options.h.
13639         (gimplify_parameters): Add cleanup argument, add CLOBBER stmts
13640         for the added local temporaries if needed.
13641         * gimplify.c (gimplify_body): Adjust gimplify_parameters caller,
13642         if there are any parameter cleanups, wrap whole body into a
13643         try/finally with the cleanups.
13645 2018-01-18  Wilco Dijkstra  <wdijkstr@arm.com>
13647         PR target/82964
13648         * config/aarch64/aarch64.c (aarch64_legitimate_constant_p):
13649         Use GET_MODE_CLASS for scalar floating point.
13651 2018-01-18  Jan Hubicka  <hubicka@ucw.cz>
13653         PR ipa/82256
13654         patch by PaX Team
13655         * cgraphclones.c (cgraph_node::create_version_clone_with_body):
13656         Fix call of call_cgraph_insertion_hooks.
13658 2018-01-18  Martin Sebor  <msebor@redhat.com>
13660         * doc/invoke.texi (-Wclass-memaccess): Tweak text.
13662 2018-01-18  Jan Hubicka  <hubicka@ucw.cz>
13664         PR ipa/83619
13665         * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Update edge
13666         frequencies.
13668 2018-01-18  Boris Kolpackov  <boris@codesynthesis.com>
13670         PR other/70268
13671         * common.opt: (-ffile-prefix-map): New option.
13672         * opts.c (common_handle_option): Defer it.
13673         * opts-global.c (handle_common_deferred_options): Handle it.
13674         * debug.h (remap_debug_filename, add_debug_prefix_map): Move to...
13675         * file-prefix-map.h: New file.
13676         (remap_debug_filename, add_debug_prefix_map): ...here.
13677         (add_macro_prefix_map, add_file_prefix_map, remap_macro_filename): New.
13678         * final.c (debug_prefix_map, add_debug_prefix_map
13679         remap_debug_filename): Move to...
13680         * file-prefix-map.c: New file.
13681         (file_prefix_map, add_prefix_map, remap_filename) ...here and rename,
13682         generalize, get rid of alloca(), use strrchr() instead of strchr().
13683         (add_macro_prefix_map, add_debug_prefix_map, add_file_prefix_map):
13684         Implement in terms of add_prefix_map().
13685         (remap_macro_filename, remap_debug_filename): Implement in term of
13686         remap_filename().
13687         * Makefile.in (OBJS, PLUGIN_HEADERS): Add new files.
13688         * builtins.c (fold_builtin_FILE): Call remap_macro_filename().
13689         * dbxout.c: Include file-prefix-map.h.
13690         * varasm.c: Likewise.
13691         * vmsdbgout.c: Likewise.
13692         * xcoffout.c: Likewise.
13693         * dwarf2out.c: Likewise plus omit new options from DW_AT_producer.
13694         * doc/cppopts.texi (-fmacro-prefix-map): Document.
13695         * doc/invoke.texi (-ffile-prefix-map): Document.
13696         (-fdebug-prefix-map): Update description.
13698 2018-01-18  Martin Liska  <mliska@suse.cz>
13700         * config/i386/i386.c (indirect_thunk_name): Document that also
13701         lfence is emitted.
13702         (output_indirect_thunk): Document why both instructions
13703         (pause and lfence) are generated.
13705 2018-01-18  Richard Biener  <rguenther@suse.de>
13707         PR tree-optimization/83887
13708         * graphite-scop-detection.c
13709         (scop_detection::get_nearest_dom_with_single_entry): Remove.
13710         (scop_detection::get_nearest_pdom_with_single_exit): Likewise.
13711         (scop_detection::merge_sese): Re-implement with a flood-fill
13712         algorithm that properly finds a SESE region if it exists.
13714 2018-01-18  Jakub Jelinek  <jakub@redhat.com>
13716         PR c/61240
13717         * match.pd ((P + A) - P, P - (P + A), (P + A) - (P + B)): For
13718         pointer_diff optimizations use view_convert instead of convert.
13720 2018-01-17  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
13722         * config/rs6000/rs6000.md (*call_indirect_nonlocal_sysv<mode>):
13723         Generate different code for -mno-speculate-indirect-jumps.
13724         (*call_value_indirect_nonlocal_sysv<mode>): Likewise.
13725         (*call_indirect_aix<mode>): Disable for
13726         -mno-speculate-indirect-jumps.
13727         (*call_indirect_aix<mode>_nospec): New define_insn.
13728         (*call_value_indirect_aix<mode>): Disable for
13729         -mno-speculate-indirect-jumps.
13730         (*call_value_indirect_aix<mode>_nospec): New define_insn.
13731         (*sibcall_nonlocal_sysv<mode>): Generate different code for
13732         -mno-speculate-indirect-jumps.
13733         (*sibcall_value_nonlocal_sysv<mode>): Likewise.
13735 2018-01-17  Michael Meissner  <meissner@linux.vnet.ibm.com>
13737         * config/rs6000/rs6000.c (rs6000_emit_move): If we load or store a
13738         long double type, set the flags for noting the default long double
13739         type, even if we don't pass or return a long double type.
13741 2018-01-17  Jan Hubicka  <hubicka@ucw.cz>
13743         PR ipa/83051
13744         * ipa-inline.c (flatten_function): Do not overwrite final inlining
13745         failure.
13747 2018-01-17  Will Schmidt  <will_schmidt@vnet.ibm.com>
13749         * config/rs6000/rs6000.c (rs6000_gimple_builtin): Add gimple folding
13750         support for merge[hl].
13751         (fold_mergehl_helper): New helper function.
13752         (tree-vector-builder.h): New #include for tree_vector_builder usage.
13753         * config/rs6000/altivec.md (altivec_vmrghw_direct): Add xxmrghw insn.
13754         (altivec_vmrglw_direct): Add xxmrglw insn.
13756 2018-01-17  Andrew Waterman  <andrew@sifive.com>
13758         * config/riscv/riscv.c (riscv_conditional_register_usage): If
13759         UNITS_PER_FP_ARG is 0, set call_used_regs to 1 for all FP regs.
13761 2018-01-17  David Malcolm  <dmalcolm@redhat.com>
13763         PR lto/83121
13764         * ipa-devirt.c (add_type_duplicate): When comparing memory layout,
13765         call the lto_location_cache before reading the
13766         DECL_SOURCE_LOCATION of the types.
13768 2018-01-17  Wilco Dijkstra  <wdijkstr@arm.com>
13769             Richard Sandiford  <richard.sandiford@linaro.org>
13771         * config/aarch64/aarch64.md (movti_aarch64): Use Uti constraint.
13772         * config/aarch64/aarch64.c (aarch64_mov128_immediate): New function.
13773         (aarch64_legitimate_constant_p): Just support CONST_DOUBLE
13774         SF/DF/TF mode to avoid creating illegal CONST_WIDE_INT immediates.
13775         * config/aarch64/aarch64-protos.h (aarch64_mov128_immediate):
13776         Add declaration.
13777         * config/aarch64/constraints.md (aarch64_movti_operand):
13778         Limit immediates.
13779         * config/aarch64/predicates.md (Uti): Add new constraint.
13781 2018-01-17 Carl Love  <cel@us.ibm.com>
13783         * config/rs6000/vsx.md (define_expand xl_len_r,
13784         define_expand stxvl, define_expand *stxvl): Add match_dup argument.
13785         (define_insn): Add, match_dup 1 argument to define_insn stxvll and
13786         lxvll.
13787         (define_expand, define_insn): Move the shift left from  the
13788         define_insn to the define_expand for lxvl and stxvl instructions.
13789         * config/rs6000/rs6000-builtin.def (BU_P9V_64BIT_VSX_2): Change LXVL
13790         and XL_LEN_R definitions to PURE.
13792 2018-01-17  Uros Bizjak  <ubizjak@gmail.com>
13794         * config/i386/i386.c (indirect_thunk_name): Declare regno
13795         as unsigned int.  Compare regno with INVALID_REGNUM.
13796         (output_indirect_thunk): Ditto.
13797         (output_indirect_thunk_function): Ditto.
13798         (ix86_code_end): Declare regno as unsigned int.  Use INVALID_REGNUM
13799         in the call to output_indirect_thunk_function.
13801 2018-01-17  Richard Sandiford  <richard.sandiford@linaro.org>
13803         PR middle-end/83884
13804         * expr.c (expand_expr_real_1): Use the size of GET_MODE (op0)
13805         rather than the size of inner_type to determine the stack slot size
13806         when handling VIEW_CONVERT_EXPRs on strict-alignment targets.
13808 2018-01-16  Sebastian Peryt  <sebastian.peryt@intel.com>
13810         PR target/83546
13811         * config/i386/i386.c (ix86_option_override_internal): Add PTA_RDRND
13812         to PTA_SILVERMONT.
13814 2018-01-16  Michael Meissner  <meissner@linux.vnet.ibm.com>
13816         * config.gcc (powerpc*-linux*-*): Add support for 64-bit little
13817         endian Linux systems to optionally enable multilibs for selecting
13818         the long double type if the user configured an explicit type.
13819         * config/rs6000/rs6000.h (TARGET_IEEEQUAD_MULTILIB): Indicate we
13820         have no long double multilibs if not defined.
13821         * config/rs6000/rs6000.c (rs6000_option_override_internal): Do not
13822         warn if the user used -mabi={ieee,ibm}longdouble and we built
13823         multilibs for long double.
13824         * config/rs6000/linux64.h (MULTILIB_DEFAULTS_IEEE): Define as the
13825         appropriate multilib option.
13826         (MULTILIB_DEFAULTS): Add MULTILIB_DEFAULTS_IEEE to the default
13827         multilib options.
13828         * config/rs6000/t-ldouble-linux64le-ibm: New configuration files
13829         for building long double multilibs.
13830         * config/rs6000/t-ldouble-linux64le-ieee: Likewise.
13832 2018-01-16  John David Anglin  <danglin@gcc.gnu.org>
13834         * config.gcc (hppa*-*-linux*): Change callee copies ABI to caller
13835         copies.
13837         * config/pa.h (MALLOC_ABI_ALIGNMENT): Set 32-bit alignment default to
13838         64 bits.
13839         * config/pa/pa32-linux.h (MALLOC_ABI_ALIGNMENT): Set alignment to
13840         128 bits.
13842         * config/pa/som.h (ASM_DECLARE_FUNCTION_NAME): Cleanup type and mode
13843         variables.
13845         * config/pa/pa.c (pa_function_arg_size): Apply CEIL to GET_MODE_SIZE
13846         return value.
13848 2018-01-16  Eric Botcazou  <ebotcazou@adacore.com>
13850         * gimple-ssa-warn-restrict.c (builtin_memref::builtin_memref): For an
13851         ADDR_EXPR, do not count the offset of a COMPONENT_REF twice.
13853 2018-01-16  Kelvin Nilsen  <kelvin@gcc.gnu.org>
13855         * config/rs6000/rs6000-p8swap.c (rs6000_gen_stvx): Generate
13856         different rtl trees depending on TARGET_64BIT.
13857         (rs6000_gen_lvx): Likewise.
13859 2018-01-16  Eric Botcazou  <ebotcazou@adacore.com>
13861         * config/visium/visium.md (nop): Tweak comment.
13862         (hazard_nop): Likewise.
13864 2018-01-16  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
13866         * config/rs6000/rs6000.c (rs6000_opt_vars): Add entry for
13867         -mspeculate-indirect-jumps.
13868         * config/rs6000/rs6000.md (*call_indirect_elfv2<mode>): Disable
13869         for -mno-speculate-indirect-jumps.
13870         (*call_indirect_elfv2<mode>_nospec): New define_insn.
13871         (*call_value_indirect_elfv2<mode>): Disable for
13872         -mno-speculate-indirect-jumps.
13873         (*call_value_indirect_elfv2<mode>_nospec): New define_insn.
13874         (indirect_jump): Emit different RTL for
13875         -mno-speculate-indirect-jumps.
13876         (*indirect_jump<mode>): Disable for
13877         -mno-speculate-indirect-jumps.
13878         (*indirect_jump<mode>_nospec): New define_insn.
13879         (tablejump): Emit different RTL for
13880         -mno-speculate-indirect-jumps.
13881         (tablejumpsi): Disable for -mno-speculate-indirect-jumps.
13882         (tablejumpsi_nospec): New define_expand.
13883         (tablejumpdi): Disable for -mno-speculate-indirect-jumps.
13884         (tablejumpdi_nospec): New define_expand.
13885         (*tablejump<mode>_internal1): Disable for
13886         -mno-speculate-indirect-jumps.
13887         (*tablejump<mode>_internal1_nospec): New define_insn.
13888         * config/rs6000/rs6000.opt (mspeculate-indirect-jumps): New
13889         option.
13891 2018-01-16  Artyom Skrobov tyomitch@gmail.com
13893         * caller-save.c (insert_save): Drop unnecessary parameter.  All
13894         callers updated.
13896 2018-01-16  Jakub Jelinek  <jakub@redhat.com>
13897             Richard Biener  <rguenth@suse.de>
13899         PR libgomp/83590
13900         * gimplify.c (gimplify_one_sizepos): For is_gimple_constant (expr)
13901         return early, inline manually is_gimple_sizepos.  Make sure if we
13902         call gimplify_expr we don't end up with a gimple constant.
13903         * tree.c (variably_modified_type_p): Don't return true for
13904         is_gimple_constant (_t).  Inline manually is_gimple_sizepos.
13905         * gimplify.h (is_gimple_sizepos): Remove.
13907 2018-01-16  Richard Sandiford  <richard.sandiford@linaro.org>
13909         PR tree-optimization/83857
13910         * tree-vect-loop.c (vect_analyze_loop_operations): Don't call
13911         vectorizable_live_operation for pure SLP statements.
13912         (vectorizable_live_operation): Handle PHIs.
13914 2018-01-16  Richard Biener  <rguenther@suse.de>
13916         PR tree-optimization/83867
13917         * tree-vect-stmts.c (vect_transform_stmt): Precompute
13918         nested_in_vect_loop_p since the scalar stmt may get invalidated.
13920 2018-01-16  Jakub Jelinek  <jakub@redhat.com>
13922         PR c/83844
13923         * stor-layout.c (handle_warn_if_not_align): Use byte_position and
13924         multiple_of_p instead of unchecked tree_to_uhwi and UHWI check.
13925         If off is not INTEGER_CST, issue a may not be aligned warning
13926         rather than isn't aligned.  Use isn%'t rather than isn't.
13927         * fold-const.c (multiple_of_p) <case BIT_AND_EXPR>: Don't fall through
13928         into MULT_EXPR.
13929         <case MULT_EXPR>: Improve the case when bottom and one of the
13930         MULT_EXPR operands are INTEGER_CSTs and bottom is multiple of that
13931         operand, in that case check if the other operand is multiple of
13932         bottom divided by the INTEGER_CST operand.
13934 2018-01-16  Richard Sandiford  <richard.sandiford@linaro.org>
13936         PR target/83858
13937         * config/pa/pa.h (FUNCTION_ARG_SIZE): Delete.
13938         * config/pa/pa-protos.h (pa_function_arg_size): Declare.
13939         * config/pa/som.h (ASM_DECLARE_FUNCTION_NAME): Use
13940         pa_function_arg_size instead of FUNCTION_ARG_SIZE.
13941         * config/pa/pa.c (pa_function_arg_advance): Likewise.
13942         (pa_function_arg, pa_arg_partial_bytes): Likewise.
13943         (pa_function_arg_size): New function.
13945 2018-01-16  Richard Sandiford  <richard.sandiford@linaro.org>
13947         * fold-const.c (fold_ternary_loc): Construct the vec_perm_indices
13948         in a separate statement.
13950 2018-01-16  Richard Sandiford  <richard.sandiford@linaro.org>
13952         PR tree-optimization/83847
13953         * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Don't
13954         group gathers and scatters.
13956 2018-01-16  Jakub Jelinek  <jakub@redhat.com>
13958         PR rtl-optimization/86620
13959         * params.def (max-sched-ready-insns): Bump minimum value to 1.
13961         PR rtl-optimization/83213
13962         * recog.c (peep2_attempt): Copy over CROSSING_JUMP_P from peepinsn
13963         to last if both are JUMP_INSNs.
13965         PR tree-optimization/83843
13966         * gimple-ssa-store-merging.c
13967         (imm_store_chain_info::output_merged_store): Handle bit_not_p on
13968         store_immediate_info for bswap/nop orig_stores.
13970 2018-01-15  Andrew Waterman  <andrew@sifive.com>
13972         * config/riscv/riscv.c (riscv_rtx_costs) <MULT>: Increase cost if
13973         !TARGET_MUL.
13974         <UDIV>: Increase cost if !TARGET_DIV.
13976 2018-01-15  Segher Boessenkool  <segher@kernel.crashing.org>
13978         * config/rs6000/rs6000.md (define_attr "type"): Remove delayed_cr.
13979         (define_attr "cr_logical_3op"): New.
13980         (cceq_ior_compare): Adjust.
13981         (cceq_ior_compare_complement): Adjust.
13982         (*cceq_rev_compare): Adjust.
13983         * config/rs6000/rs6000.c (rs6000_adjust_cost): Adjust.
13984         (is_cracked_insn): Adjust.
13985         (insn_must_be_first_in_group): Adjust.
13986         * config/rs6000/40x.md: Adjust.
13987         * config/rs6000/440.md: Adjust.
13988         * config/rs6000/476.md: Adjust.
13989         * config/rs6000/601.md: Adjust.
13990         * config/rs6000/603.md: Adjust.
13991         * config/rs6000/6xx.md: Adjust.
13992         * config/rs6000/7450.md: Adjust.
13993         * config/rs6000/7xx.md: Adjust.
13994         * config/rs6000/8540.md: Adjust.
13995         * config/rs6000/cell.md: Adjust.
13996         * config/rs6000/e300c2c3.md: Adjust.
13997         * config/rs6000/e500mc.md: Adjust.
13998         * config/rs6000/e500mc64.md: Adjust.
13999         * config/rs6000/e5500.md: Adjust.
14000         * config/rs6000/e6500.md: Adjust.
14001         * config/rs6000/mpc.md: Adjust.
14002         * config/rs6000/power4.md: Adjust.
14003         * config/rs6000/power5.md: Adjust.
14004         * config/rs6000/power6.md: Adjust.
14005         * config/rs6000/power7.md: Adjust.
14006         * config/rs6000/power8.md: Adjust.
14007         * config/rs6000/power9.md: Adjust.
14008         * config/rs6000/rs64.md: Adjust.
14009         * config/rs6000/titan.md: Adjust.
14011 2018-01-15  H.J. Lu  <hongjiu.lu@intel.com>
14013         * config/i386/predicates.md (indirect_branch_operand): Rewrite
14014         ix86_indirect_branch_register logic.
14016 2018-01-15  H.J. Lu  <hongjiu.lu@intel.com>
14018         * config/i386/constraints.md (Bs): Update
14019         ix86_indirect_branch_register check.  Don't check
14020         ix86_indirect_branch_register with GOT_memory_operand.
14021         (Bw): Likewise.
14022         * config/i386/predicates.md (GOT_memory_operand): Don't check
14023         ix86_indirect_branch_register here.
14024         (GOT32_symbol_operand): Likewise.
14026 2018-01-15  H.J. Lu  <hongjiu.lu@intel.com>
14028         * config/i386/predicates.md (constant_call_address_operand):
14029         Rewrite ix86_indirect_branch_register logic.
14030         (sibcall_insn_operand): Likewise.
14032 2018-01-15  H.J. Lu  <hongjiu.lu@intel.com>
14034         * config/i386/constraints.md (Bs): Replace
14035         ix86_indirect_branch_thunk_register with
14036         ix86_indirect_branch_register.
14037         (Bw): Likewise.
14038         * config/i386/i386.md (indirect_jump): Likewise.
14039         (tablejump): Likewise.
14040         (*sibcall_memory): Likewise.
14041         (*sibcall_value_memory): Likewise.
14042         Peepholes of indirect call and jump via memory: Likewise.
14043         * config/i386/i386.opt: Likewise.
14044         * config/i386/predicates.md (indirect_branch_operand): Likewise.
14045         (GOT_memory_operand): Likewise.
14046         (call_insn_operand): Likewise.
14047         (sibcall_insn_operand): Likewise.
14048         (GOT32_symbol_operand): Likewise.
14050 2018-01-15  Jakub Jelinek  <jakub@redhat.com>
14052         PR middle-end/83837
14053         * omp-expand.c (expand_omp_atomic_pipeline): Use loaded_val
14054         type rather than type addr's type points to.
14055         (expand_omp_atomic_mutex): Likewise.
14056         (expand_omp_atomic): Likewise.
14058 2018-01-15  H.J. Lu  <hongjiu.lu@intel.com>
14060         PR target/83839
14061         * config/i386/i386.c (output_indirect_thunk_function): Use
14062         ASM_OUTPUT_LABEL, instead of ASM_OUTPUT_DEF, for TARGET_MACHO
14063         for  __x86_return_thunk.
14065 2018-01-15  Richard Biener  <rguenther@suse.de>
14067         PR middle-end/83850
14068         * expmed.c (extract_bit_field_1): Fix typo.
14070 2018-01-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14072         PR target/83687
14073         * config/arm/iterators.md (VF): New mode iterator.
14074         * config/arm/neon.md (neon_vabd<mode>_2): Use the above.
14075         Remove integer-related logic from pattern.
14076         (neon_vabd<mode>_3): Likewise.
14078 2018-01-15  Jakub Jelinek  <jakub@redhat.com>
14080         PR middle-end/82694
14081         * common.opt (fstrict-overflow): No longer an alias.
14082         (fwrapv-pointer): New option.
14083         * tree.h (TYPE_OVERFLOW_WRAPS, TYPE_OVERFLOW_UNDEFINED): Define
14084         also for pointer types based on flag_wrapv_pointer.
14085         * opts.c (common_handle_option) <case OPT_fstrict_overflow>: Set
14086         opts->x_flag_wrap[pv] to !value, clear opts->x_flag_trapv if
14087         opts->x_flag_wrapv got set.
14088         * fold-const.c (fold_comparison, fold_binary_loc): Revert 2017-08-01
14089         changes, just use TYPE_OVERFLOW_UNDEFINED on pointer type instead of
14090         POINTER_TYPE_OVERFLOW_UNDEFINED.
14091         * match.pd: Likewise in address comparison pattern.
14092         * doc/invoke.texi: Document -fwrapv and -fstrict-overflow.
14094 2018-01-15  Richard Biener  <rguenther@suse.de>
14096         PR lto/83804
14097         * tree.c (free_lang_data_in_type): Always unlink TYPE_DECLs
14098         from TYPE_FIELDS.  Free TYPE_BINFO if not used by devirtualization.
14099         Reset type names to their identifier if their TYPE_DECL doesn't
14100         have linkage (and thus is used for ODR and devirt).
14101         (save_debug_info_for_decl): Remove.
14102         (save_debug_info_for_type): Likewise.
14103         (add_tree_to_fld_list): Adjust.
14104         * tree-pretty-print.c (dump_generic_node): Make dumping of
14105         type names more robust.
14107 2018-01-15  Richard Biener  <rguenther@suse.de>
14109         * BASE-VER: Bump to 8.0.1.
14111 2018-01-14  Martin Sebor  <msebor@redhat.com>
14113         PR other/83508
14114         * builtins.c (check_access): Avoid warning when the no-warning bit
14115         is set.
14117 2018-01-14  Cory Fields  <cory-nospam-@coryfields.com>
14119         * tree-ssa-loop-im.c (sort_bbs_in_loop_postorder_cmp): Stabilize sort.
14120         * ira-color (allocno_hard_regs_compare): Likewise.
14122 2018-01-14  Nathan Rossi  <nathan@nathanrossi.com>
14124         PR target/83013
14125         * config/microblaze/microblaze.c (microblaze_asm_output_ident):
14126         Use .pushsection/.popsection.
14128 2018-01-14  Martin Sebor  <msebor@redhat.com>
14130         PR c++/81327
14131         * doc/invoke.texi (-Wlass-memaccess): Document suppression by casting.
14133 2018-01-14  Jakub Jelinek  <jakub@redhat.com>
14135         * config.gcc (i[34567]86-*-*): Remove one duplicate gfniintrin.h
14136         entry from extra_headers.
14137         (x86_64-*-*): Remove two duplicate gfniintrin.h entries from
14138         extra_headers, make the list bitwise identical to the i?86-*-* one.
14140 2018-01-14  H.J. Lu  <hongjiu.lu@intel.com>
14142         * config/i386/i386.c (ix86_set_indirect_branch_type): Disallow
14143         -mcmodel=large with -mindirect-branch=thunk,
14144         -mindirect-branch=thunk-extern, -mfunction-return=thunk and
14145         -mfunction-return=thunk-extern.
14146         * doc/invoke.texi: Document -mcmodel=large is incompatible with
14147         -mindirect-branch=thunk, -mindirect-branch=thunk-extern,
14148         -mfunction-return=thunk and -mfunction-return=thunk-extern.
14150 2018-01-14  H.J. Lu  <hongjiu.lu@intel.com>
14152         * config/i386/i386.c (print_reg): Print the name of the full
14153         integer register without '%'.
14154         (ix86_print_operand): Handle 'V'.
14155         * doc/extend.texi: Document 'V' modifier.
14157 2018-01-14  H.J. Lu  <hongjiu.lu@intel.com>
14159         * config/i386/constraints.md (Bs): Disallow memory operand for
14160         -mindirect-branch-register.
14161         (Bw): Likewise.
14162         * config/i386/predicates.md (indirect_branch_operand): Likewise.
14163         (GOT_memory_operand): Likewise.
14164         (call_insn_operand): Likewise.
14165         (sibcall_insn_operand): Likewise.
14166         (GOT32_symbol_operand): Likewise.
14167         * config/i386/i386.md (indirect_jump): Call convert_memory_address
14168         for -mindirect-branch-register.
14169         (tablejump): Likewise.
14170         (*sibcall_memory): Likewise.
14171         (*sibcall_value_memory): Likewise.
14172         Disallow peepholes of indirect call and jump via memory for
14173         -mindirect-branch-register.
14174         (*call_pop): Replace m with Bw.
14175         (*call_value_pop): Likewise.
14176         (*sibcall_pop_memory): Replace m with Bs.
14177         * config/i386/i386.opt (mindirect-branch-register): New option.
14178         * doc/invoke.texi: Document -mindirect-branch-register option.
14180 2018-01-14  H.J. Lu  <hongjiu.lu@intel.com>
14182         * config/i386/i386-protos.h (ix86_output_function_return): New.
14183         * config/i386/i386.c (ix86_set_indirect_branch_type): Also
14184         set function_return_type.
14185         (indirect_thunk_name): Add ret_p to indicate thunk for function
14186         return.
14187         (output_indirect_thunk_function): Pass false to
14188         indirect_thunk_name.
14189         (ix86_output_indirect_branch_via_reg): Likewise.
14190         (ix86_output_indirect_branch_via_push): Likewise.
14191         (output_indirect_thunk_function): Create alias for function
14192         return thunk if regno < 0.
14193         (ix86_output_function_return): New function.
14194         (ix86_handle_fndecl_attribute): Handle function_return.
14195         (ix86_attribute_table): Add function_return.
14196         * config/i386/i386.h (machine_function): Add
14197         function_return_type.
14198         * config/i386/i386.md (simple_return_internal): Use
14199         ix86_output_function_return.
14200         (simple_return_internal_long): Likewise.
14201         * config/i386/i386.opt (mfunction-return=): New option.
14202         (indirect_branch): Mention -mfunction-return=.
14203         * doc/extend.texi: Document function_return function attribute.
14204         * doc/invoke.texi: Document -mfunction-return= option.
14206 2018-01-14  H.J. Lu  <hongjiu.lu@intel.com>
14208         * config/i386/i386-opts.h (indirect_branch): New.
14209         * config/i386/i386-protos.h (ix86_output_indirect_jmp): Likewise.
14210         * config/i386/i386.c (ix86_using_red_zone): Disallow red-zone
14211         with local indirect jump when converting indirect call and jump.
14212         (ix86_set_indirect_branch_type): New.
14213         (ix86_set_current_function): Call ix86_set_indirect_branch_type.
14214         (indirectlabelno): New.
14215         (indirect_thunk_needed): Likewise.
14216         (indirect_thunk_bnd_needed): Likewise.
14217         (indirect_thunks_used): Likewise.
14218         (indirect_thunks_bnd_used): Likewise.
14219         (INDIRECT_LABEL): Likewise.
14220         (indirect_thunk_name): Likewise.
14221         (output_indirect_thunk): Likewise.
14222         (output_indirect_thunk_function): Likewise.
14223         (ix86_output_indirect_branch_via_reg): Likewise.
14224         (ix86_output_indirect_branch_via_push): Likewise.
14225         (ix86_output_indirect_branch): Likewise.
14226         (ix86_output_indirect_jmp): Likewise.
14227         (ix86_code_end): Call output_indirect_thunk_function if needed.
14228         (ix86_output_call_insn): Call ix86_output_indirect_branch if
14229         needed.
14230         (ix86_handle_fndecl_attribute): Handle indirect_branch.
14231         (ix86_attribute_table): Add indirect_branch.
14232         * config/i386/i386.h (machine_function): Add indirect_branch_type
14233         and has_local_indirect_jump.
14234         * config/i386/i386.md (indirect_jump): Set has_local_indirect_jump
14235         to true.
14236         (tablejump): Likewise.
14237         (*indirect_jump): Use ix86_output_indirect_jmp.
14238         (*tablejump_1): Likewise.
14239         (simple_return_indirect_internal): Likewise.
14240         * config/i386/i386.opt (mindirect-branch=): New option.
14241         (indirect_branch): New.
14242         (keep): Likewise.
14243         (thunk): Likewise.
14244         (thunk-inline): Likewise.
14245         (thunk-extern): Likewise.
14246         * doc/extend.texi: Document indirect_branch function attribute.
14247         * doc/invoke.texi: Document -mindirect-branch= option.
14249 2018-01-14  Jan Hubicka  <hubicka@ucw.cz>
14251         PR ipa/83051
14252         * ipa-inline.c (edge_badness): Tolerate roundoff errors.
14254 2018-01-14  Richard Sandiford  <richard.sandiford@linaro.org>
14256         * ipa-inline.c (want_inline_small_function_p): Return false if
14257         inlining has already failed with CIF_FINAL_ERROR.
14258         (update_caller_keys): Call want_inline_small_function_p before
14259         can_inline_edge_p.
14260         (update_callee_keys): Likewise.
14262 2018-01-10  Kelvin Nilsen  <kelvin@gcc.gnu.org>
14264         * config/rs6000/rs6000-p8swap.c (rs6000_sum_of_two_registers_p):
14265         New function.
14266         (rs6000_quadword_masked_address_p): Likewise.
14267         (quad_aligned_load_p): Likewise.
14268         (quad_aligned_store_p): Likewise.
14269         (const_load_sequence_p): Add comment to describe the outer-most loop.
14270         (mimic_memory_attributes_and_flags): New function.
14271         (rs6000_gen_stvx): Likewise.
14272         (replace_swapped_aligned_store): Likewise.
14273         (rs6000_gen_lvx): Likewise.
14274         (replace_swapped_aligned_load): Likewise.
14275         (replace_swapped_load_constant): Capitalize argument name in
14276         comment describing this function.
14277         (rs6000_analyze_swaps): Add a third pass to search for vector loads
14278         and stores that access quad-word aligned addresses and replace
14279         with stvx or lvx instructions when appropriate.
14280         * config/rs6000/rs6000-protos.h (rs6000_sum_of_two_registers_p):
14281         New function prototype.
14282         (rs6000_quadword_masked_address_p): Likewise.
14283         (rs6000_gen_lvx): Likewise.
14284         (rs6000_gen_stvx): Likewise.
14285         * config/rs6000/vsx.md (*vsx_le_perm_load_<mode>): For modes
14286         VSX_D (V2DF, V2DI), modify this split to select lvx instruction
14287         when memory address is aligned.
14288         (*vsx_le_perm_load_<mode>): For modes VSX_W (V4SF, V4SI), modify
14289         this split to select lvx instruction when memory address is aligned.
14290         (*vsx_le_perm_load_v8hi): Modify this split to select lvx
14291         instruction when memory address is aligned.
14292         (*vsx_le_perm_load_v16qi): Likewise.
14293         (four unnamed splitters): Modify to select the stvx instruction
14294         when memory is aligned.
14296 2018-01-13  Jan Hubicka  <hubicka@ucw.cz>
14298         * predict.c (determine_unlikely_bbs): Handle correctly BBs
14299         which appears in the queue multiple times.
14301 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14302             Alan Hayward  <alan.hayward@arm.com>
14303             David Sherwood  <david.sherwood@arm.com>
14305         * tree-vectorizer.h (vec_lower_bound): New structure.
14306         (_loop_vec_info): Add check_nonzero and lower_bounds.
14307         (LOOP_VINFO_CHECK_NONZERO): New macro.
14308         (LOOP_VINFO_LOWER_BOUNDS): Likewise.
14309         (LOOP_REQUIRES_VERSIONING_FOR_ALIAS): Check lower_bounds too.
14310         * tree-data-ref.h (dr_with_seg_len): Add access_size and align
14311         fields.  Make seg_len the distance travelled, not including the
14312         access size.
14313         (dr_direction_indicator): Declare.
14314         (dr_zero_step_indicator): Likewise.
14315         (dr_known_forward_stride_p): Likewise.
14316         * tree-data-ref.c: Include stringpool.h, tree-vrp.h and
14317         tree-ssanames.h.
14318         (runtime_alias_check_p): Allow runtime alias checks with
14319         variable strides.
14320         (operator ==): Compare access_size and align.
14321         (prune_runtime_alias_test_list): Rework for new distinction between
14322         the access_size and seg_len.
14323         (create_intersect_range_checks_index): Likewise.  Cope with polynomial
14324         segment lengths.
14325         (get_segment_min_max): New function.
14326         (create_intersect_range_checks): Use it.
14327         (dr_step_indicator): New function.
14328         (dr_direction_indicator): Likewise.
14329         (dr_zero_step_indicator): Likewise.
14330         (dr_known_forward_stride_p): Likewise.
14331         * tree-loop-distribution.c (data_ref_segment_size): Return
14332         DR_STEP * (niters - 1).
14333         (compute_alias_check_pairs): Update call to the dr_with_seg_len
14334         constructor.
14335         * tree-vect-data-refs.c (vect_check_nonzero_value): New function.
14336         (vect_preserves_scalar_order_p): New function, split out from...
14337         (vect_analyze_data_ref_dependence): ...here.  Check for zero steps.
14338         (vect_vfa_segment_size): Return DR_STEP * (length_factor - 1).
14339         (vect_vfa_access_size): New function.
14340         (vect_vfa_align): Likewise.
14341         (vect_compile_time_alias): Take access_size_a and access_b arguments.
14342         (dump_lower_bound): New function.
14343         (vect_check_lower_bound): Likewise.
14344         (vect_small_gap_p): Likewise.
14345         (vectorizable_with_step_bound_p): Likewise.
14346         (vect_prune_runtime_alias_test_list): Ignore cross-iteration
14347         depencies if the vectorization factor is 1.  Convert the checks
14348         for nonzero steps into checks on the bounds of DR_STEP.  Try using
14349         a bunds check for variable steps if the minimum required step is
14350         relatively small. Update calls to the dr_with_seg_len
14351         constructor and to vect_compile_time_alias.
14352         * tree-vect-loop-manip.c (vect_create_cond_for_lower_bounds): New
14353         function.
14354         (vect_loop_versioning): Call it.
14355         * tree-vect-loop.c (vect_analyze_loop_2): Clear LOOP_VINFO_LOWER_BOUNDS
14356         when retrying.
14357         (vect_estimate_min_profitable_iters): Account for any bounds checks.
14359 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14360             Alan Hayward  <alan.hayward@arm.com>
14361             David Sherwood  <david.sherwood@arm.com>
14363         * doc/sourcebuild.texi (vect_scatter_store): Document.
14364         * optabs.def (scatter_store_optab, mask_scatter_store_optab): New
14365         optabs.
14366         * doc/md.texi (scatter_store@var{m}, mask_scatter_store@var{m}):
14367         Document.
14368         * genopinit.c (main): Add supports_vec_scatter_store and
14369         supports_vec_scatter_store_cached to target_optabs.
14370         * gimple.h (gimple_expr_type): Handle IFN_SCATTER_STORE and
14371         IFN_MASK_SCATTER_STORE.
14372         * internal-fn.def (SCATTER_STORE, MASK_SCATTER_STORE): New internal
14373         functions.
14374         * internal-fn.h (internal_store_fn_p): Declare.
14375         (internal_fn_stored_value_index): Likewise.
14376         * internal-fn.c (scatter_store_direct): New macro.
14377         (expand_scatter_store_optab_fn): New function.
14378         (direct_scatter_store_optab_supported_p): New macro.
14379         (internal_store_fn_p): New function.
14380         (internal_gather_scatter_fn_p): Handle IFN_SCATTER_STORE and
14381         IFN_MASK_SCATTER_STORE.
14382         (internal_fn_mask_index): Likewise.
14383         (internal_fn_stored_value_index): New function.
14384         (internal_gather_scatter_fn_supported_p): Adjust operand numbers
14385         for scatter stores.
14386         * optabs-query.h (supports_vec_scatter_store_p): Declare.
14387         * optabs-query.c (supports_vec_scatter_store_p): New function.
14388         * tree-vectorizer.h (vect_get_store_rhs): Declare.
14389         * tree-vect-data-refs.c (vect_analyze_data_ref_access): Return
14390         true for scatter stores.
14391         (vect_gather_scatter_fn_p): Handle scatter stores too.
14392         (vect_check_gather_scatter): Consider using scatter stores if
14393         supports_vec_scatter_store_p.
14394         * tree-vect-patterns.c (vect_try_gather_scatter_pattern): Handle
14395         scatter stores too.
14396         * tree-vect-stmts.c (exist_non_indexing_operands_for_use_p): Use
14397         internal_fn_stored_value_index.
14398         (check_load_store_masking): Handle scatter stores too.
14399         (vect_get_store_rhs): Make public.
14400         (vectorizable_call): Use internal_store_fn_p.
14401         (vectorizable_store): Handle scatter store internal functions.
14402         (vect_transform_stmt): Compare GROUP_STORE_COUNT with GROUP_SIZE
14403         when deciding whether the end of the group has been reached.
14404         * config/aarch64/aarch64.md (UNSPEC_ST1_SCATTER): New unspec.
14405         * config/aarch64/aarch64-sve.md (scatter_store<mode>): New expander.
14406         (mask_scatter_store<mode>): New insns.
14408 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14409             Alan Hayward  <alan.hayward@arm.com>
14410             David Sherwood  <david.sherwood@arm.com>
14412         * tree-vectorizer.h (vect_gather_scatter_fn_p): Declare.
14413         * tree-vect-data-refs.c (vect_gather_scatter_fn_p): Make public.
14414         * tree-vect-stmts.c (vect_truncate_gather_scatter_offset): New
14415         function.
14416         (vect_use_strided_gather_scatters_p): Take a masked_p argument.
14417         Use vect_truncate_gather_scatter_offset if we can't treat the
14418         operation as a normal gather load or scatter store.
14419         (get_group_load_store_type): Take the gather_scatter_info
14420         as argument.  Try using a gather load or scatter store for
14421         single-element groups.
14422         (get_load_store_type): Update calls to get_group_load_store_type
14423         and vect_use_strided_gather_scatters_p.
14425 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14426             Alan Hayward  <alan.hayward@arm.com>
14427             David Sherwood  <david.sherwood@arm.com>
14429         * tree-vectorizer.h (vect_create_data_ref_ptr): Take an extra
14430         optional tree argument.
14431         * tree-vect-data-refs.c (vect_check_gather_scatter): Check for
14432         null target hooks.
14433         (vect_create_data_ref_ptr): Take the iv_step as an optional argument,
14434         but continue to use the current value as a fallback.
14435         (bump_vector_ptr): Use operand_equal_p rather than tree_int_cst_compare
14436         to compare the updates.
14437         * tree-vect-stmts.c (vect_use_strided_gather_scatters_p): New function.
14438         (get_load_store_type): Use it when handling a strided access.
14439         (vect_get_strided_load_store_ops): New function.
14440         (vect_get_data_ptr_increment): Likewise.
14441         (vectorizable_load): Handle strided gather loads.  Always pass
14442         a step to vect_create_data_ref_ptr and bump_vector_ptr.
14444 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14445             Alan Hayward  <alan.hayward@arm.com>
14446             David Sherwood  <david.sherwood@arm.com>
14448         * doc/md.texi (gather_load@var{m}): Document.
14449         (mask_gather_load@var{m}): Likewise.
14450         * genopinit.c (main): Add supports_vec_gather_load and
14451         supports_vec_gather_load_cached to target_optabs.
14452         * optabs-tree.c (init_tree_optimization_optabs): Use
14453         ggc_cleared_alloc to allocate target_optabs.
14454         * optabs.def (gather_load_optab, mask_gather_laod_optab): New optabs.
14455         * internal-fn.def (GATHER_LOAD, MASK_GATHER_LOAD): New internal
14456         functions.
14457         * internal-fn.h (internal_load_fn_p): Declare.
14458         (internal_gather_scatter_fn_p): Likewise.
14459         (internal_fn_mask_index): Likewise.
14460         (internal_gather_scatter_fn_supported_p): Likewise.
14461         * internal-fn.c (gather_load_direct): New macro.
14462         (expand_gather_load_optab_fn): New function.
14463         (direct_gather_load_optab_supported_p): New macro.
14464         (direct_internal_fn_optab): New function.
14465         (internal_load_fn_p): Likewise.
14466         (internal_gather_scatter_fn_p): Likewise.
14467         (internal_fn_mask_index): Likewise.
14468         (internal_gather_scatter_fn_supported_p): Likewise.
14469         * optabs-query.c (supports_at_least_one_mode_p): New function.
14470         (supports_vec_gather_load_p): Likewise.
14471         * optabs-query.h (supports_vec_gather_load_p): Declare.
14472         * tree-vectorizer.h (gather_scatter_info): Add ifn, element_type
14473         and memory_type field.
14474         (NUM_PATTERNS): Bump to 15.
14475         * tree-vect-data-refs.c: Include internal-fn.h.
14476         (vect_gather_scatter_fn_p): New function.
14477         (vect_describe_gather_scatter_call): Likewise.
14478         (vect_check_gather_scatter): Try using internal functions for
14479         gather loads.  Recognize existing calls to a gather load function.
14480         (vect_analyze_data_refs): Consider using gather loads if
14481         supports_vec_gather_load_p.
14482         * tree-vect-patterns.c (vect_get_load_store_mask): New function.
14483         (vect_get_gather_scatter_offset_type): Likewise.
14484         (vect_convert_mask_for_vectype): Likewise.
14485         (vect_add_conversion_to_patterm): Likewise.
14486         (vect_try_gather_scatter_pattern): Likewise.
14487         (vect_recog_gather_scatter_pattern): New pattern recognizer.
14488         (vect_vect_recog_func_ptrs): Add it.
14489         * tree-vect-stmts.c (exist_non_indexing_operands_for_use_p): Use
14490         internal_fn_mask_index and internal_gather_scatter_fn_p.
14491         (check_load_store_masking): Take the gather_scatter_info as an
14492         argument and handle gather loads.
14493         (vect_get_gather_scatter_ops): New function.
14494         (vectorizable_call): Check internal_load_fn_p.
14495         (vectorizable_load): Likewise.  Handle gather load internal
14496         functions.
14497         (vectorizable_store): Update call to check_load_store_masking.
14498         * config/aarch64/aarch64.md (UNSPEC_LD1_GATHER): New unspec.
14499         * config/aarch64/iterators.md (SVE_S, SVE_D): New mode iterators.
14500         * config/aarch64/predicates.md (aarch64_gather_scale_operand_w)
14501         (aarch64_gather_scale_operand_d): New predicates.
14502         * config/aarch64/aarch64-sve.md (gather_load<mode>): New expander.
14503         (mask_gather_load<mode>): New insns.
14505 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14506             Alan Hayward  <alan.hayward@arm.com>
14507             David Sherwood  <david.sherwood@arm.com>
14509         * optabs.def (fold_left_plus_optab): New optab.
14510         * doc/md.texi (fold_left_plus_@var{m}): Document.
14511         * internal-fn.def (IFN_FOLD_LEFT_PLUS): New internal function.
14512         * internal-fn.c (fold_left_direct): Define.
14513         (expand_fold_left_optab_fn): Likewise.
14514         (direct_fold_left_optab_supported_p): Likewise.
14515         * fold-const-call.c (fold_const_fold_left): New function.
14516         (fold_const_call): Use it to fold CFN_FOLD_LEFT_PLUS.
14517         * tree-parloops.c (valid_reduction_p): New function.
14518         (gather_scalar_reductions): Use it.
14519         * tree-vectorizer.h (FOLD_LEFT_REDUCTION): New vect_reduction_type.
14520         (vect_finish_replace_stmt): Declare.
14521         * tree-vect-loop.c (fold_left_reduction_fn): New function.
14522         (needs_fold_left_reduction_p): New function, split out from...
14523         (vect_is_simple_reduction): ...here.  Accept reductions that
14524         forbid reassociation, but give them type FOLD_LEFT_REDUCTION.
14525         (vect_force_simple_reduction): Also store the reduction type in
14526         the assignment's STMT_VINFO_REDUC_TYPE.
14527         (vect_model_reduction_cost): Handle FOLD_LEFT_REDUCTION.
14528         (merge_with_identity): New function.
14529         (vect_expand_fold_left): Likewise.
14530         (vectorize_fold_left_reduction): Likewise.
14531         (vectorizable_reduction): Handle FOLD_LEFT_REDUCTION.  Leave the
14532         scalar phi in place for it.  Check for target support and reject
14533         cases that would reassociate the operation.  Defer the transform
14534         phase to vectorize_fold_left_reduction.
14535         * config/aarch64/aarch64.md (UNSPEC_FADDA): New unspec.
14536         * config/aarch64/aarch64-sve.md (fold_left_plus_<mode>): New expander.
14537         (*fold_left_plus_<mode>, *pred_fold_left_plus_<mode>): New insns.
14539 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14541         * tree-if-conv.c (predicate_mem_writes): Remove redundant
14542         call to ifc_temp_var.
14544 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14545             Alan Hayward  <alan.hayward@arm.com>
14546             David Sherwood  <david.sherwood@arm.com>
14548         * target.def (legitimize_address_displacement): Take the original
14549         offset as a poly_int.
14550         * targhooks.h (default_legitimize_address_displacement): Update
14551         accordingly.
14552         * targhooks.c (default_legitimize_address_displacement): Likewise.
14553         * doc/tm.texi: Regenerate.
14554         * lra-constraints.c (base_plus_disp_to_reg): Take the displacement
14555         as an argument, moving assert of ad->disp == ad->disp_term to...
14556         (process_address_1): ...here.  Update calls to base_plus_disp_to_reg.
14557         Try calling targetm.legitimize_address_displacement before expanding
14558         the address rather than afterwards, and adjust for the new interface.
14559         * config/aarch64/aarch64.c (aarch64_legitimize_address_displacement):
14560         Match the new hook interface.  Handle SVE addresses.
14561         * config/sh/sh.c (sh_legitimize_address_displacement): Make the
14562         new hook interface.
14564 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14566         * Makefile.in (OBJS): Add early-remat.o.
14567         * target.def (select_early_remat_modes): New hook.
14568         * doc/tm.texi.in (TARGET_SELECT_EARLY_REMAT_MODES): New hook.
14569         * doc/tm.texi: Regenerate.
14570         * targhooks.h (default_select_early_remat_modes): Declare.
14571         * targhooks.c (default_select_early_remat_modes): New function.
14572         * timevar.def (TV_EARLY_REMAT): New timevar.
14573         * passes.def (pass_early_remat): New pass.
14574         * tree-pass.h (make_pass_early_remat): Declare.
14575         * early-remat.c: New file.
14576         * config/aarch64/aarch64.c (aarch64_select_early_remat_modes): New
14577         function.
14578         (TARGET_SELECT_EARLY_REMAT_MODES): Define.
14580 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14581             Alan Hayward  <alan.hayward@arm.com>
14582             David Sherwood  <david.sherwood@arm.com>
14584         * tree-vect-loop-manip.c (vect_gen_scalar_loop_niters): Replace
14585         vfm1 with a bound_epilog parameter.
14586         (vect_do_peeling): Update calls accordingly, and move the prologue
14587         call earlier in the function.  Treat the base bound_epilog as 0 for
14588         fully-masked loops and retain vf - 1 for other loops.  Add 1 to
14589         this base when peeling for gaps.
14590         * tree-vect-loop.c (vect_analyze_loop_2): Allow peeling for gaps
14591         with fully-masked loops.
14592         (vect_estimate_min_profitable_iters): Handle the single peeled
14593         iteration in that case.
14595 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14596             Alan Hayward  <alan.hayward@arm.com>
14597             David Sherwood  <david.sherwood@arm.com>
14599         * tree-vect-data-refs.c (vect_analyze_group_access_1): Allow
14600         single-element interleaving even if the size is not a power of 2.
14601         * tree-vect-stmts.c (get_load_store_type): Disallow elementwise
14602         accesses for single-element interleaving if the group size is
14603         not a power of 2.
14605 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14606             Alan Hayward  <alan.hayward@arm.com>
14607             David Sherwood  <david.sherwood@arm.com>
14609         * doc/md.texi (fold_extract_last_@var{m}): Document.
14610         * doc/sourcebuild.texi (vect_fold_extract_last): Likewise.
14611         * optabs.def (fold_extract_last_optab): New optab.
14612         * internal-fn.def (FOLD_EXTRACT_LAST): New internal function.
14613         * internal-fn.c (fold_extract_direct): New macro.
14614         (expand_fold_extract_optab_fn): Likewise.
14615         (direct_fold_extract_optab_supported_p): Likewise.
14616         * tree-vectorizer.h (EXTRACT_LAST_REDUCTION): New vect_reduction_type.
14617         * tree-vect-loop.c (vect_model_reduction_cost): Handle
14618         EXTRACT_LAST_REDUCTION.
14619         (get_initial_def_for_reduction): Do not create an initial vector
14620         for EXTRACT_LAST_REDUCTION reductions.
14621         (vectorizable_reduction): Leave the scalar phi in place for
14622         EXTRACT_LAST_REDUCTIONs.  Try using EXTRACT_LAST_REDUCTION
14623         ahead of INTEGER_INDUC_COND_REDUCTION.  Do not check for an
14624         epilogue code for EXTRACT_LAST_REDUCTION and defer the
14625         transform phase to vectorizable_condition.
14626         * tree-vect-stmts.c (vect_finish_stmt_generation_1): New function,
14627         split out from...
14628         (vect_finish_stmt_generation): ...here.
14629         (vect_finish_replace_stmt): New function.
14630         (vectorizable_condition): Handle EXTRACT_LAST_REDUCTION.
14631         * config/aarch64/aarch64-sve.md (fold_extract_last_<mode>): New
14632         pattern.
14633         * config/aarch64/aarch64.md (UNSPEC_CLASTB): New unspec.
14635 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14636             Alan Hayward  <alan.hayward@arm.com>
14637             David Sherwood  <david.sherwood@arm.com>
14639         * doc/md.texi (extract_last_@var{m}): Document.
14640         * optabs.def (extract_last_optab): New optab.
14641         * internal-fn.def (EXTRACT_LAST): New internal function.
14642         * internal-fn.c (cond_unary_direct): New macro.
14643         (expand_cond_unary_optab_fn): Likewise.
14644         (direct_cond_unary_optab_supported_p): Likewise.
14645         * tree-vect-loop.c (vectorizable_live_operation): Allow fully-masked
14646         loops using EXTRACT_LAST.
14647         * config/aarch64/aarch64-sve.md (aarch64_sve_lastb<mode>): Rename to...
14648         (extract_last_<mode>): ...this optab.
14649         (vec_extract<mode><Vel>): Update accordingly.
14651 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14652             Alan Hayward  <alan.hayward@arm.com>
14653             David Sherwood  <david.sherwood@arm.com>
14655         * target.def (empty_mask_is_expensive): New hook.
14656         * doc/tm.texi.in (TARGET_VECTORIZE_EMPTY_MASK_IS_EXPENSIVE): New hook.
14657         * doc/tm.texi: Regenerate.
14658         * targhooks.h (default_empty_mask_is_expensive): Declare.
14659         * targhooks.c (default_empty_mask_is_expensive): New function.
14660         * tree-vectorizer.c (vectorize_loops): Only call optimize_mask_stores
14661         if the target says that empty masks are expensive.
14662         * config/aarch64/aarch64.c (aarch64_empty_mask_is_expensive):
14663         New function.
14664         (TARGET_VECTORIZE_EMPTY_MASK_IS_EXPENSIVE): Redefine.
14666 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14667             Alan Hayward  <alan.hayward@arm.com>
14668             David Sherwood  <david.sherwood@arm.com>
14670         * tree-vectorizer.h (_loop_vec_info::mask_skip_niters): New field.
14671         (LOOP_VINFO_MASK_SKIP_NITERS): New macro.
14672         (vect_use_loop_mask_for_alignment_p): New function.
14673         (vect_prepare_for_masked_peels, vect_gen_while_not): Declare.
14674         * tree-vect-loop-manip.c (vect_set_loop_masks_directly): Add an
14675         niters_skip argument.  Make sure that the first niters_skip elements
14676         of the first iteration are inactive.
14677         (vect_set_loop_condition_masked): Handle LOOP_VINFO_MASK_SKIP_NITERS.
14678         Update call to vect_set_loop_masks_directly.
14679         (get_misalign_in_elems): New function, split out from...
14680         (vect_gen_prolog_loop_niters): ...here.
14681         (vect_update_init_of_dr): Take a code argument that specifies whether
14682         the adjustment should be added or subtracted.
14683         (vect_update_init_of_drs): Likewise.
14684         (vect_prepare_for_masked_peels): New function.
14685         (vect_do_peeling): Skip prologue peeling if we're using a mask
14686         instead.  Update call to vect_update_inits_of_drs.
14687         * tree-vect-loop.c (_loop_vec_info::_loop_vec_info): Initialize
14688         mask_skip_niters.
14689         (vect_analyze_loop_2): Allow fully-masked loops with peeling for
14690         alignment.  Do not include the number of peeled iterations in
14691         the minimum threshold in that case.
14692         (vectorizable_induction): Adjust the start value down by
14693         LOOP_VINFO_MASK_SKIP_NITERS iterations.
14694         (vect_transform_loop): Call vect_prepare_for_masked_peels.
14695         Take the number of skipped iterations into account when calculating
14696         the loop bounds.
14697         * tree-vect-stmts.c (vect_gen_while_not): New function.
14699 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14700             Alan Hayward  <alan.hayward@arm.com>
14701             David Sherwood  <david.sherwood@arm.com>
14703         * doc/sourcebuild.texi (vect_fully_masked): Document.
14704         * params.def (PARAM_MIN_VECT_LOOP_BOUND): Change minimum and
14705         default value to 0.
14706         * tree-vect-loop.c (vect_analyze_loop_costing): New function,
14707         split out from...
14708         (vect_analyze_loop_2): ...here. Don't check the vectorization
14709         factor against the number of loop iterations if the loop is
14710         fully-masked.
14712 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14713             Alan Hayward  <alan.hayward@arm.com>
14714             David Sherwood  <david.sherwood@arm.com>
14716         * tree-ssa-loop-ivopts.c (USE_ADDRESS): Split into...
14717         (USE_REF_ADDRESS, USE_PTR_ADDRESS): ...these new use types.
14718         (dump_groups): Update accordingly.
14719         (iv_use::mem_type): New member variable.
14720         (address_p): New function.
14721         (record_use): Add a mem_type argument and initialize the new
14722         mem_type field.
14723         (record_group_use): Add a mem_type argument.  Use address_p.
14724         Remove obsolete null checks of base_object.  Update call to record_use.
14725         (find_interesting_uses_op): Update call to record_group_use.
14726         (find_interesting_uses_cond): Likewise.
14727         (find_interesting_uses_address): Likewise.
14728         (get_mem_type_for_internal_fn): New function.
14729         (find_address_like_use): Likewise.
14730         (find_interesting_uses_stmt): Try find_address_like_use before
14731         calling find_interesting_uses_op.
14732         (addr_offset_valid_p): Use the iv mem_type field as the type
14733         of the addressed memory.
14734         (add_autoinc_candidates): Likewise.
14735         (get_address_cost): Likewise.
14736         (split_small_address_groups_p): Use address_p.
14737         (split_address_groups): Likewise.
14738         (add_iv_candidate_for_use): Likewise.
14739         (autoinc_possible_for_pair): Likewise.
14740         (rewrite_groups): Likewise.
14741         (get_use_type): Check for USE_REF_ADDRESS instead of USE_ADDRESS.
14742         (determine_group_iv_cost): Update after split of USE_ADDRESS.
14743         (get_alias_ptr_type_for_ptr_address): New function.
14744         (rewrite_use_address): Rewrite address uses in calls that were
14745         identified by find_address_like_use.
14747 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14748             Alan Hayward  <alan.hayward@arm.com>
14749             David Sherwood  <david.sherwood@arm.com>
14751         * expr.c (expand_expr_addr_expr_1): Handle ADDR_EXPRs of
14752         TARGET_MEM_REFs.
14753         * gimple-expr.h (is_gimple_addressable: Likewise.
14754         * gimple-expr.c (is_gimple_address): Likewise.
14755         * internal-fn.c (expand_call_mem_ref): New function.
14756         (expand_mask_load_optab_fn): Use it.
14757         (expand_mask_store_optab_fn): Likewise.
14759 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14760             Alan Hayward  <alan.hayward@arm.com>
14761             David Sherwood  <david.sherwood@arm.com>
14763         * doc/md.texi (cond_add@var{mode}, cond_sub@var{mode})
14764         (cond_and@var{mode}, cond_ior@var{mode}, cond_xor@var{mode})
14765         (cond_smin@var{mode}, cond_smax@var{mode}, cond_umin@var{mode})
14766         (cond_umax@var{mode}): Document.
14767         * optabs.def (cond_add_optab, cond_sub_optab, cond_and_optab)
14768         (cond_ior_optab, cond_xor_optab, cond_smin_optab, cond_smax_optab)
14769         (cond_umin_optab, cond_umax_optab): New optabs.
14770         * internal-fn.def (COND_ADD, COND_SUB, COND_MIN, COND_MAX, COND_AND)
14771         (COND_IOR, COND_XOR): New internal functions.
14772         * internal-fn.h (get_conditional_internal_fn): Declare.
14773         * internal-fn.c (cond_binary_direct): New macro.
14774         (expand_cond_binary_optab_fn): Likewise.
14775         (direct_cond_binary_optab_supported_p): Likewise.
14776         (get_conditional_internal_fn): New function.
14777         * tree-vect-loop.c (vectorizable_reduction): Handle fully-masked loops.
14778         Cope with reduction statements that are vectorized as calls rather
14779         than assignments.
14780         * config/aarch64/aarch64-sve.md (cond_<optab><mode>): New insns.
14781         * config/aarch64/iterators.md (UNSPEC_COND_ADD, UNSPEC_COND_SUB)
14782         (UNSPEC_COND_SMAX, UNSPEC_COND_UMAX, UNSPEC_COND_SMIN)
14783         (UNSPEC_COND_UMIN, UNSPEC_COND_AND, UNSPEC_COND_ORR)
14784         (UNSPEC_COND_EOR): New unspecs.
14785         (optab): Add mappings for them.
14786         (SVE_COND_INT_OP, SVE_COND_FP_OP): New int iterators.
14787         (sve_int_op, sve_fp_op): New int attributes.
14789 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14790             Alan Hayward  <alan.hayward@arm.com>
14791             David Sherwood  <david.sherwood@arm.com>
14793         * optabs.def (while_ult_optab): New optab.
14794         * doc/md.texi (while_ult@var{m}@var{n}): Document.
14795         * internal-fn.def (WHILE_ULT): New internal function.
14796         * internal-fn.h (direct_internal_fn_supported_p): New override
14797         that takes two types as argument.
14798         * internal-fn.c (while_direct): New macro.
14799         (expand_while_optab_fn): New function.
14800         (convert_optab_supported_p): Likewise.
14801         (direct_while_optab_supported_p): New macro.
14802         * wide-int.h (wi::udiv_ceil): New function.
14803         * tree-vectorizer.h (rgroup_masks): New structure.
14804         (vec_loop_masks): New typedef.
14805         (_loop_vec_info): Add masks, mask_compare_type, can_fully_mask_p
14806         and fully_masked_p.
14807         (LOOP_VINFO_CAN_FULLY_MASK_P, LOOP_VINFO_FULLY_MASKED_P)
14808         (LOOP_VINFO_MASKS, LOOP_VINFO_MASK_COMPARE_TYPE): New macros.
14809         (vect_max_vf): New function.
14810         (slpeel_make_loop_iterate_ntimes): Delete.
14811         (vect_set_loop_condition, vect_get_loop_mask_type, vect_gen_while)
14812         (vect_halve_mask_nunits, vect_double_mask_nunits): Declare.
14813         (vect_record_loop_mask, vect_get_loop_mask): Likewise.
14814         * tree-vect-loop-manip.c: Include tree-ssa-loop-niter.h,
14815         internal-fn.h, stor-layout.h and optabs-query.h.
14816         (vect_set_loop_mask): New function.
14817         (add_preheader_seq): Likewise.
14818         (add_header_seq): Likewise.
14819         (interleave_supported_p): Likewise.
14820         (vect_maybe_permute_loop_masks): Likewise.
14821         (vect_set_loop_masks_directly): Likewise.
14822         (vect_set_loop_condition_masked): Likewise.
14823         (vect_set_loop_condition_unmasked): New function, split out from
14824         slpeel_make_loop_iterate_ntimes.
14825         (slpeel_make_loop_iterate_ntimes): Rename to..
14826         (vect_set_loop_condition): ...this.  Use vect_set_loop_condition_masked
14827         for fully-masked loops and vect_set_loop_condition_unmasked otherwise.
14828         (vect_do_peeling): Update call accordingly.
14829         (vect_gen_vector_loop_niters): Use VF as the step for fully-masked
14830         loops.
14831         * tree-vect-loop.c (_loop_vec_info::_loop_vec_info): Initialize
14832         mask_compare_type, can_fully_mask_p and fully_masked_p.
14833         (release_vec_loop_masks): New function.
14834         (_loop_vec_info): Use it to free the loop masks.
14835         (can_produce_all_loop_masks_p): New function.
14836         (vect_get_max_nscalars_per_iter): Likewise.
14837         (vect_verify_full_masking): Likewise.
14838         (vect_analyze_loop_2): Save LOOP_VINFO_CAN_FULLY_MASK_P around
14839         retries, and free the mask rgroups before retrying.  Check loop-wide
14840         reasons for disallowing fully-masked loops.  Make the final decision
14841         about whether use a fully-masked loop or not.
14842         (vect_estimate_min_profitable_iters): Do not assume that peeling
14843         for the number of iterations will be needed for fully-masked loops.
14844         (vectorizable_reduction): Disable fully-masked loops.
14845         (vectorizable_live_operation): Likewise.
14846         (vect_halve_mask_nunits): New function.
14847         (vect_double_mask_nunits): Likewise.
14848         (vect_record_loop_mask): Likewise.
14849         (vect_get_loop_mask): Likewise.
14850         (vect_transform_loop): Handle the case in which the final loop
14851         iteration might handle a partial vector.  Call vect_set_loop_condition
14852         instead of slpeel_make_loop_iterate_ntimes.
14853         * tree-vect-stmts.c: Include tree-ssa-loop-niter.h and gimple-fold.h.
14854         (check_load_store_masking): New function.
14855         (prepare_load_store_mask): Likewise.
14856         (vectorizable_store): Handle fully-masked loops.
14857         (vectorizable_load): Likewise.
14858         (supportable_widening_operation): Use vect_halve_mask_nunits for
14859         booleans.
14860         (supportable_narrowing_operation): Likewise vect_double_mask_nunits.
14861         (vect_gen_while): New function.
14862         * config/aarch64/aarch64.md (umax<mode>3): New expander.
14863         (aarch64_uqdec<mode>): New insn.
14865 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14866             Alan Hayward  <alan.hayward@arm.com>
14867             David Sherwood  <david.sherwood@arm.com>
14869         * optabs.def (reduc_and_scal_optab, reduc_ior_scal_optab)
14870         (reduc_xor_scal_optab): New optabs.
14871         * doc/md.texi (reduc_and_scal_@var{m}, reduc_ior_scal_@var{m})
14872         (reduc_xor_scal_@var{m}): Document.
14873         * doc/sourcebuild.texi (vect_logical_reduc): Likewise.
14874         * internal-fn.def (IFN_REDUC_AND, IFN_REDUC_IOR, IFN_REDUC_XOR): New
14875         internal functions.
14876         * fold-const-call.c (fold_const_call): Handle them.
14877         * tree-vect-loop.c (reduction_fn_for_scalar_code): Return the new
14878         internal functions for BIT_AND_EXPR, BIT_IOR_EXPR and BIT_XOR_EXPR.
14879         * config/aarch64/aarch64-sve.md (reduc_<bit_reduc>_scal_<mode>):
14880         (*reduc_<bit_reduc>_scal_<mode>): New patterns.
14881         * config/aarch64/iterators.md (UNSPEC_ANDV, UNSPEC_ORV)
14882         (UNSPEC_XORV): New unspecs.
14883         (optab): Add entries for them.
14884         (BITWISEV): New int iterator.
14885         (bit_reduc_op): New int attributes.
14887 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14888             Alan Hayward  <alan.hayward@arm.com>
14889             David Sherwood  <david.sherwood@arm.com>
14891         * doc/md.texi (vec_shl_insert_@var{m}): New optab.
14892         * internal-fn.def (VEC_SHL_INSERT): New internal function.
14893         * optabs.def (vec_shl_insert_optab): New optab.
14894         * tree-vectorizer.h (can_duplicate_and_interleave_p): Declare.
14895         (duplicate_and_interleave): Likewise.
14896         * tree-vect-loop.c: Include internal-fn.h.
14897         (neutral_op_for_slp_reduction): New function, split out from
14898         get_initial_defs_for_reduction.
14899         (get_initial_def_for_reduction): Handle option 2 for variable-length
14900         vectors by loading the neutral value into a vector and then shifting
14901         the initial value into element 0.
14902         (get_initial_defs_for_reduction): Replace the code argument with
14903         the neutral value calculated by neutral_op_for_slp_reduction.
14904         Use gimple_build_vector for constant-length vectors.
14905         Use IFN_VEC_SHL_INSERT for variable-length vectors if all
14906         but the first group_size elements have a neutral value.
14907         Use duplicate_and_interleave otherwise.
14908         (vect_create_epilog_for_reduction): Take a neutral_op parameter.
14909         Update call to get_initial_defs_for_reduction.  Handle SLP
14910         reductions for variable-length vectors by creating one vector
14911         result for each scalar result, with the elements associated
14912         with other scalar results stubbed out with the neutral value.
14913         (vectorizable_reduction): Call neutral_op_for_slp_reduction.
14914         Require IFN_VEC_SHL_INSERT for double reductions on
14915         variable-length vectors, or SLP reductions that have
14916         a neutral value.  Require can_duplicate_and_interleave_p
14917         support for variable-length unchained SLP reductions if there
14918         is no neutral value, such as for MIN/MAX reductions.  Also require
14919         the number of vector elements to be a multiple of the number of
14920         SLP statements when doing variable-length unchained SLP reductions.
14921         Update call to vect_create_epilog_for_reduction.
14922         * tree-vect-slp.c (can_duplicate_and_interleave_p): Make public
14923         and remove initial values.
14924         (duplicate_and_interleave): Make public.
14925         * config/aarch64/aarch64.md (UNSPEC_INSR): New unspec.
14926         * config/aarch64/aarch64-sve.md (vec_shl_insert_<mode>): New insn.
14928 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14929             Alan Hayward  <alan.hayward@arm.com>
14930             David Sherwood  <david.sherwood@arm.com>
14932         * tree-vect-slp.c: Include gimple-fold.h and internal-fn.h
14933         (can_duplicate_and_interleave_p): New function.
14934         (vect_get_and_check_slp_defs): Take the vector of statements
14935         rather than just the current one.  Remove excess parentheses.
14936         Restriction rejectinon of vect_constant_def and vect_external_def
14937         for variable-length vectors to boolean types, or types for which
14938         can_duplicate_and_interleave_p is false.
14939         (vect_build_slp_tree_2): Update call to vect_get_and_check_slp_defs.
14940         (duplicate_and_interleave): New function.
14941         (vect_get_constant_vectors): Use gimple_build_vector for
14942         constant-length vectors and suitable variable-length constant
14943         vectors.  Use duplicate_and_interleave for other variable-length
14944         vectors.  Don't defer the update when inserting new statements.
14946 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14947             Alan Hayward  <alan.hayward@arm.com>
14948             David Sherwood  <david.sherwood@arm.com>
14950         * tree-vect-loop.c (vect_estimate_min_profitable_iters): Make sure
14951         min_profitable_iters doesn't go negative.
14953 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14954             Alan Hayward  <alan.hayward@arm.com>
14955             David Sherwood  <david.sherwood@arm.com>
14957         * doc/md.texi (vec_mask_load_lanes@var{m}@var{n}): Document.
14958         (vec_mask_store_lanes@var{m}@var{n}): Likewise.
14959         * optabs.def (vec_mask_load_lanes_optab): New optab.
14960         (vec_mask_store_lanes_optab): Likewise.
14961         * internal-fn.def (MASK_LOAD_LANES): New internal function.
14962         (MASK_STORE_LANES): Likewise.
14963         * internal-fn.c (mask_load_lanes_direct): New macro.
14964         (mask_store_lanes_direct): Likewise.
14965         (expand_mask_load_optab_fn): Handle masked operations.
14966         (expand_mask_load_lanes_optab_fn): New macro.
14967         (expand_mask_store_optab_fn): Handle masked operations.
14968         (expand_mask_store_lanes_optab_fn): New macro.
14969         (direct_mask_load_lanes_optab_supported_p): Likewise.
14970         (direct_mask_store_lanes_optab_supported_p): Likewise.
14971         * tree-vectorizer.h (vect_store_lanes_supported): Take a masked_p
14972         parameter.
14973         (vect_load_lanes_supported): Likewise.
14974         * tree-vect-data-refs.c (strip_conversion): New function.
14975         (can_group_stmts_p): Likewise.
14976         (vect_analyze_data_ref_accesses): Use it instead of checking
14977         for a pair of assignments.
14978         (vect_store_lanes_supported): Take a masked_p parameter.
14979         (vect_load_lanes_supported): Likewise.
14980         * tree-vect-loop.c (vect_analyze_loop_2): Update calls to
14981         vect_store_lanes_supported and vect_load_lanes_supported.
14982         * tree-vect-slp.c (vect_analyze_slp_instance): Likewise.
14983         * tree-vect-stmts.c (get_group_load_store_type): Take a masked_p
14984         parameter.  Don't allow gaps for masked accesses.
14985         Use vect_get_store_rhs.  Update calls to vect_store_lanes_supported
14986         and vect_load_lanes_supported.
14987         (get_load_store_type): Take a masked_p parameter and update
14988         call to get_group_load_store_type.
14989         (vectorizable_store): Update call to get_load_store_type.
14990         Handle IFN_MASK_STORE_LANES.
14991         (vectorizable_load): Update call to get_load_store_type.
14992         Handle IFN_MASK_LOAD_LANES.
14994 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
14995             Alan Hayward  <alan.hayward@arm.com>
14996             David Sherwood  <david.sherwood@arm.com>
14998         * config/aarch64/aarch64-modes.def: Define x2, x3 and x4 vector
14999         modes for SVE.
15000         * config/aarch64/aarch64-protos.h
15001         (aarch64_sve_struct_memory_operand_p): Declare.
15002         * config/aarch64/iterators.md (SVE_STRUCT): New mode iterator.
15003         (vector_count, insn_length, VSINGLE, vsingle): New mode attributes.
15004         (VPRED, vpred): Handle SVE structure modes.
15005         * config/aarch64/constraints.md (Utx): New constraint.
15006         * config/aarch64/predicates.md (aarch64_sve_struct_memory_operand)
15007         (aarch64_sve_struct_nonimmediate_operand): New predicates.
15008         * config/aarch64/aarch64.md (UNSPEC_LDN, UNSPEC_STN): New unspecs.
15009         * config/aarch64/aarch64-sve.md (mov<mode>, *aarch64_sve_mov<mode>_le)
15010         (*aarch64_sve_mov<mode>_be, pred_mov<mode>): New patterns for
15011         structure modes.  Split into pieces after RA.
15012         (vec_load_lanes<mode><vsingle>, vec_mask_load_lanes<mode><vsingle>)
15013         (vec_store_lanes<mode><vsingle>, vec_mask_store_lanes<mode><vsingle>):
15014         New patterns.
15015         * config/aarch64/aarch64.c (aarch64_classify_vector_mode): Handle
15016         SVE structure modes.
15017         (aarch64_classify_address): Likewise.
15018         (sizetochar): Move earlier in file.
15019         (aarch64_print_operand): Handle SVE register lists.
15020         (aarch64_array_mode): New function.
15021         (aarch64_sve_struct_memory_operand_p): Likewise.
15022         (TARGET_ARRAY_MODE): Redefine.
15024 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
15025             Alan Hayward  <alan.hayward@arm.com>
15026             David Sherwood  <david.sherwood@arm.com>
15028         * target.def (array_mode): New target hook.
15029         * doc/tm.texi.in (TARGET_ARRAY_MODE): New hook.
15030         * doc/tm.texi: Regenerate.
15031         * hooks.h (hook_optmode_mode_uhwi_none): Declare.
15032         * hooks.c (hook_optmode_mode_uhwi_none): New function.
15033         * tree-vect-data-refs.c (vect_lanes_optab_supported_p): Use
15034         targetm.array_mode.
15035         * stor-layout.c (mode_for_array): Likewise.  Support polynomial
15036         type sizes.
15038 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
15039             Alan Hayward  <alan.hayward@arm.com>
15040             David Sherwood  <david.sherwood@arm.com>
15042         * fold-const.c (fold_binary_loc): Check the argument types
15043         rather than the result type when testing for a vector operation.
15045 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
15047         * doc/tm.texi.in (DWARF_LAZY_REGISTER_VALUE): Document.
15048         * doc/tm.texi: Regenerate.
15050 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
15051             Alan Hayward  <alan.hayward@arm.com>
15052             David Sherwood  <david.sherwood@arm.com>
15054         * doc/invoke.texi (-msve-vector-bits=): Document new option.
15055         (sve): Document new AArch64 extension.
15056         * doc/md.texi (w): Extend the description of the AArch64
15057         constraint to include SVE vectors.
15058         (Upl, Upa): Document new AArch64 predicate constraints.
15059         * config/aarch64/aarch64-opts.h (aarch64_sve_vector_bits_enum): New
15060         enum.
15061         * config/aarch64/aarch64.opt (sve_vector_bits): New enum.
15062         (msve-vector-bits=): New option.
15063         * config/aarch64/aarch64-option-extensions.def (fp, simd): Disable
15064         SVE when these are disabled.
15065         (sve): New extension.
15066         * config/aarch64/aarch64-modes.def: Define SVE vector and predicate
15067         modes.  Adjust their number of units based on aarch64_sve_vg.
15068         (MAX_BITSIZE_MODE_ANY_MODE): Define.
15069         * config/aarch64/aarch64-protos.h (ADDR_QUERY_ANY): New
15070         aarch64_addr_query_type.
15071         (aarch64_const_vec_all_same_in_range_p, aarch64_sve_pred_mode)
15072         (aarch64_sve_cnt_immediate_p, aarch64_sve_addvl_addpl_immediate_p)
15073         (aarch64_sve_inc_dec_immediate_p, aarch64_add_offset_temporaries)
15074         (aarch64_split_add_offset, aarch64_output_sve_cnt_immediate)
15075         (aarch64_output_sve_addvl_addpl, aarch64_output_sve_inc_dec_immediate)
15076         (aarch64_output_sve_mov_immediate, aarch64_output_ptrue): Declare.
15077         (aarch64_simd_imm_zero_p): Delete.
15078         (aarch64_check_zero_based_sve_index_immediate): Declare.
15079         (aarch64_sve_index_immediate_p, aarch64_sve_arith_immediate_p)
15080         (aarch64_sve_bitmask_immediate_p, aarch64_sve_dup_immediate_p)
15081         (aarch64_sve_cmp_immediate_p, aarch64_sve_float_arith_immediate_p)
15082         (aarch64_sve_float_mul_immediate_p): Likewise.
15083         (aarch64_classify_symbol): Take the offset as a HOST_WIDE_INT
15084         rather than an rtx.
15085         (aarch64_sve_ld1r_operand_p, aarch64_sve_ldr_operand_p): Declare.
15086         (aarch64_expand_mov_immediate): Take a gen_vec_duplicate callback.
15087         (aarch64_emit_sve_pred_move, aarch64_expand_sve_mem_move): Declare.
15088         (aarch64_expand_sve_vec_cmp_int, aarch64_expand_sve_vec_cmp_float)
15089         (aarch64_expand_sve_vcond, aarch64_expand_sve_vec_perm): Declare.
15090         (aarch64_regmode_natural_size): Likewise.
15091         * config/aarch64/aarch64.h (AARCH64_FL_SVE): New macro.
15092         (AARCH64_FL_V8_3, AARCH64_FL_RCPC, AARCH64_FL_DOTPROD): Shift
15093         left one place.
15094         (AARCH64_ISA_SVE, TARGET_SVE): New macros.
15095         (FIXED_REGISTERS, CALL_USED_REGISTERS, REGISTER_NAMES): Add entries
15096         for VG and the SVE predicate registers.
15097         (V_ALIASES): Add a "z"-prefixed alias.
15098         (FIRST_PSEUDO_REGISTER): Change to P15_REGNUM + 1.
15099         (AARCH64_DWARF_VG, AARCH64_DWARF_P0): New macros.
15100         (PR_REGNUM_P, PR_LO_REGNUM_P): Likewise.
15101         (PR_LO_REGS, PR_HI_REGS, PR_REGS): New reg_classes.
15102         (REG_CLASS_NAMES): Add entries for them.
15103         (REG_CLASS_CONTENTS): Likewise.  Update ALL_REGS to include VG
15104         and the predicate registers.
15105         (aarch64_sve_vg): Declare.
15106         (BITS_PER_SVE_VECTOR, BYTES_PER_SVE_VECTOR, BYTES_PER_SVE_PRED)
15107         (SVE_BYTE_MODE, MAX_COMPILE_TIME_VEC_BYTES): New macros.
15108         (REGMODE_NATURAL_SIZE): Define.
15109         * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins): Handle
15110         SVE macros.
15111         * config/aarch64/aarch64.c: Include cfgrtl.h.
15112         (simd_immediate_info): Add a constructor for series vectors,
15113         and an associated step field.
15114         (aarch64_sve_vg): New variable.
15115         (aarch64_dbx_register_number): Handle VG and the predicate registers.
15116         (aarch64_vect_struct_mode_p, aarch64_vector_mode_p): Delete.
15117         (VEC_ADVSIMD, VEC_SVE_DATA, VEC_SVE_PRED, VEC_STRUCT, VEC_ANY_SVE)
15118         (VEC_ANY_DATA, VEC_STRUCT): New constants.
15119         (aarch64_advsimd_struct_mode_p, aarch64_sve_pred_mode_p)
15120         (aarch64_classify_vector_mode, aarch64_vector_data_mode_p)
15121         (aarch64_sve_data_mode_p, aarch64_sve_pred_mode)
15122         (aarch64_get_mask_mode): New functions.
15123         (aarch64_hard_regno_nregs): Handle SVE data modes for FP_REGS
15124         and FP_LO_REGS.  Handle PR_REGS, PR_LO_REGS and PR_HI_REGS.
15125         (aarch64_hard_regno_mode_ok): Handle VG.  Also handle the SVE
15126         predicate modes and predicate registers.  Explicitly restrict
15127         GPRs to modes of 16 bytes or smaller.  Only allow FP registers
15128         to store a vector mode if it is recognized by
15129         aarch64_classify_vector_mode.
15130         (aarch64_regmode_natural_size): New function.
15131         (aarch64_hard_regno_caller_save_mode): Return the original mode
15132         for predicates.
15133         (aarch64_sve_cnt_immediate_p, aarch64_output_sve_cnt_immediate)
15134         (aarch64_sve_addvl_addpl_immediate_p, aarch64_output_sve_addvl_addpl)
15135         (aarch64_sve_inc_dec_immediate_p, aarch64_output_sve_inc_dec_immediate)
15136         (aarch64_add_offset_1_temporaries, aarch64_offset_temporaries): New
15137         functions.
15138         (aarch64_add_offset): Add a temp2 parameter.  Assert that temp1
15139         does not overlap dest if the function is frame-related.  Handle
15140         SVE constants.
15141         (aarch64_split_add_offset): New function.
15142         (aarch64_add_sp, aarch64_sub_sp): Add temp2 parameters and pass
15143         them aarch64_add_offset.
15144         (aarch64_allocate_and_probe_stack_space): Add a temp2 parameter
15145         and update call to aarch64_sub_sp.
15146         (aarch64_add_cfa_expression): New function.
15147         (aarch64_expand_prologue): Pass extra temporary registers to the
15148         functions above.  Handle the case in which we need to emit new
15149         DW_CFA_expressions for registers that were originally saved
15150         relative to the stack pointer, but now have to be expressed
15151         relative to the frame pointer.
15152         (aarch64_output_mi_thunk): Pass extra temporary registers to the
15153         functions above.
15154         (aarch64_expand_epilogue): Likewise.  Prevent inheritance of
15155         IP0 and IP1 values for SVE frames.
15156         (aarch64_expand_vec_series): New function.
15157         (aarch64_expand_sve_widened_duplicate): Likewise.
15158         (aarch64_expand_sve_const_vector): Likewise.
15159         (aarch64_expand_mov_immediate): Add a gen_vec_duplicate parameter.
15160         Handle SVE constants.  Use emit_move_insn to move a force_const_mem
15161         into the register, rather than emitting a SET directly.
15162         (aarch64_emit_sve_pred_move, aarch64_expand_sve_mem_move)
15163         (aarch64_get_reg_raw_mode, offset_4bit_signed_scaled_p)
15164         (offset_6bit_unsigned_scaled_p, aarch64_offset_7bit_signed_scaled_p)
15165         (offset_9bit_signed_scaled_p): New functions.
15166         (aarch64_replicate_bitmask_imm): New function.
15167         (aarch64_bitmask_imm): Use it.
15168         (aarch64_cannot_force_const_mem): Reject expressions involving
15169         a CONST_POLY_INT.  Update call to aarch64_classify_symbol.
15170         (aarch64_classify_index): Handle SVE indices, by requiring
15171         a plain register index with a scale that matches the element size.
15172         (aarch64_classify_address): Handle SVE addresses.  Assert that
15173         the mode of the address is VOIDmode or an integer mode.
15174         Update call to aarch64_classify_symbol.
15175         (aarch64_classify_symbolic_expression): Update call to
15176         aarch64_classify_symbol.
15177         (aarch64_const_vec_all_in_range_p): New function.
15178         (aarch64_print_vector_float_operand): Likewise.
15179         (aarch64_print_operand): Handle 'N' and 'C'.  Use "zN" rather than
15180         "vN" for FP registers with SVE modes.  Handle (const ...) vectors
15181         and the FP immediates 1.0 and 0.5.
15182         (aarch64_print_address_internal): Handle SVE addresses.
15183         (aarch64_print_operand_address): Use ADDR_QUERY_ANY.
15184         (aarch64_regno_regclass): Handle predicate registers.
15185         (aarch64_secondary_reload): Handle big-endian reloads of SVE
15186         data modes.
15187         (aarch64_class_max_nregs): Handle SVE modes and predicate registers.
15188         (aarch64_rtx_costs): Check for ADDVL and ADDPL instructions.
15189         (aarch64_convert_sve_vector_bits): New function.
15190         (aarch64_override_options): Use it to handle -msve-vector-bits=.
15191         (aarch64_classify_symbol): Take the offset as a HOST_WIDE_INT
15192         rather than an rtx.
15193         (aarch64_legitimate_constant_p): Use aarch64_classify_vector_mode.
15194         Handle SVE vector and predicate modes.  Accept VL-based constants
15195         that need only one temporary register, and VL offsets that require
15196         no temporary registers.
15197         (aarch64_conditional_register_usage): Mark the predicate registers
15198         as fixed if SVE isn't available.
15199         (aarch64_vector_mode_supported_p): Use aarch64_classify_vector_mode.
15200         Return true for SVE vector and predicate modes.
15201         (aarch64_simd_container_mode): Take the number of bits as a poly_int64
15202         rather than an unsigned int.  Handle SVE modes.
15203         (aarch64_preferred_simd_mode): Update call accordingly.  Handle
15204         SVE modes.
15205         (aarch64_autovectorize_vector_sizes): Add BYTES_PER_SVE_VECTOR
15206         if SVE is enabled.
15207         (aarch64_sve_index_immediate_p, aarch64_sve_arith_immediate_p)
15208         (aarch64_sve_bitmask_immediate_p, aarch64_sve_dup_immediate_p)
15209         (aarch64_sve_cmp_immediate_p, aarch64_sve_float_arith_immediate_p)
15210         (aarch64_sve_float_mul_immediate_p): New functions.
15211         (aarch64_sve_valid_immediate): New function.
15212         (aarch64_simd_valid_immediate): Use it as the fallback for SVE vectors.
15213         Explicitly reject structure modes.  Check for INDEX constants.
15214         Handle PTRUE and PFALSE constants.
15215         (aarch64_check_zero_based_sve_index_immediate): New function.
15216         (aarch64_simd_imm_zero_p): Delete.
15217         (aarch64_mov_operand_p): Use aarch64_simd_valid_immediate for
15218         vector modes.  Accept constants in the range of CNT[BHWD].
15219         (aarch64_simd_scalar_immediate_valid_for_move): Explicitly
15220         ask for an Advanced SIMD mode.
15221         (aarch64_sve_ld1r_operand_p, aarch64_sve_ldr_operand_p): New functions.
15222         (aarch64_simd_vector_alignment): Handle SVE predicates.
15223         (aarch64_vectorize_preferred_vector_alignment): New function.
15224         (aarch64_simd_vector_alignment_reachable): Use it instead of
15225         the vector size.
15226         (aarch64_shift_truncation_mask): Use aarch64_vector_data_mode_p.
15227         (aarch64_output_sve_mov_immediate, aarch64_output_ptrue): New
15228         functions.
15229         (MAX_VECT_LEN): Delete.
15230         (expand_vec_perm_d): Add a vec_flags field.
15231         (emit_unspec2, aarch64_expand_sve_vec_perm): New functions.
15232         (aarch64_evpc_trn, aarch64_evpc_uzp, aarch64_evpc_zip)
15233         (aarch64_evpc_ext): Don't apply a big-endian lane correction
15234         for SVE modes.
15235         (aarch64_evpc_rev): Rename to...
15236         (aarch64_evpc_rev_local): ...this.  Use a predicated operation for SVE.
15237         (aarch64_evpc_rev_global): New function.
15238         (aarch64_evpc_dup): Enforce a 64-byte range for SVE DUP.
15239         (aarch64_evpc_tbl): Use MAX_COMPILE_TIME_VEC_BYTES instead of
15240         MAX_VECT_LEN.
15241         (aarch64_evpc_sve_tbl): New function.
15242         (aarch64_expand_vec_perm_const_1): Update after rename of
15243         aarch64_evpc_rev.  Handle SVE permutes too, trying
15244         aarch64_evpc_rev_global and using aarch64_evpc_sve_tbl rather
15245         than aarch64_evpc_tbl.
15246         (aarch64_vectorize_vec_perm_const): Initialize vec_flags.
15247         (aarch64_sve_cmp_operand_p, aarch64_unspec_cond_code)
15248         (aarch64_gen_unspec_cond, aarch64_expand_sve_vec_cmp_int)
15249         (aarch64_emit_unspec_cond, aarch64_emit_unspec_cond_or)
15250         (aarch64_emit_inverted_unspec_cond, aarch64_expand_sve_vec_cmp_float)
15251         (aarch64_expand_sve_vcond): New functions.
15252         (aarch64_modes_tieable_p): Use aarch64_vector_data_mode_p instead
15253         of aarch64_vector_mode_p.
15254         (aarch64_dwarf_poly_indeterminate_value): New function.
15255         (aarch64_compute_pressure_classes): Likewise.
15256         (aarch64_can_change_mode_class): Likewise.
15257         (TARGET_GET_RAW_RESULT_MODE, TARGET_GET_RAW_ARG_MODE): Redefine.
15258         (TARGET_VECTORIZE_PREFERRED_VECTOR_ALIGNMENT): Likewise.
15259         (TARGET_VECTORIZE_GET_MASK_MODE): Likewise.
15260         (TARGET_DWARF_POLY_INDETERMINATE_VALUE): Likewise.
15261         (TARGET_COMPUTE_PRESSURE_CLASSES): Likewise.
15262         (TARGET_CAN_CHANGE_MODE_CLASS): Likewise.
15263         * config/aarch64/constraints.md (Upa, Upl, Uav, Uat, Usv, Usi, Utr)
15264         (Uty, Dm, vsa, vsc, vsd, vsi, vsn, vsl, vsm, vsA, vsM, vsN): New
15265         constraints.
15266         (Dn, Dl, Dr): Accept const as well as const_vector.
15267         (Dz): Likewise.  Compare against CONST0_RTX.
15268         * config/aarch64/iterators.md: Refer to "Advanced SIMD" instead
15269         of "vector" where appropriate.
15270         (SVE_ALL, SVE_BH, SVE_BHS, SVE_BHSI, SVE_HSDI, SVE_HSF, SVE_SD)
15271         (SVE_SDI, SVE_I, SVE_F, PRED_ALL, PRED_BHS): New mode iterators.
15272         (UNSPEC_SEL, UNSPEC_ANDF, UNSPEC_IORF, UNSPEC_XORF, UNSPEC_COND_LT)
15273         (UNSPEC_COND_LE, UNSPEC_COND_EQ, UNSPEC_COND_NE, UNSPEC_COND_GE)
15274         (UNSPEC_COND_GT, UNSPEC_COND_LO, UNSPEC_COND_LS, UNSPEC_COND_HS)
15275         (UNSPEC_COND_HI, UNSPEC_COND_UO): New unspecs.
15276         (Vetype, VEL, Vel, VWIDE, Vwide, vw, vwcore, V_INT_EQUIV)
15277         (v_int_equiv): Extend to SVE modes.
15278         (Vesize, V128, v128, Vewtype, V_FP_EQUIV, v_fp_equiv, VPRED): New
15279         mode attributes.
15280         (LOGICAL_OR, SVE_INT_UNARY, SVE_FP_UNARY): New code iterators.
15281         (optab): Handle popcount, smin, smax, umin, umax, abs and sqrt.
15282         (logical_nn, lr, sve_int_op, sve_fp_op): New code attributs.
15283         (LOGICALF, OPTAB_PERMUTE, UNPACK, UNPACK_UNSIGNED, SVE_COND_INT_CMP)
15284         (SVE_COND_FP_CMP): New int iterators.
15285         (perm_hilo): Handle the new unpack unspecs.
15286         (optab, logicalf_op, su, perm_optab, cmp_op, imm_con): New int
15287         attributes.
15288         * config/aarch64/predicates.md (aarch64_sve_cnt_immediate)
15289         (aarch64_sve_addvl_addpl_immediate, aarch64_split_add_offset_immediate)
15290         (aarch64_pluslong_or_poly_operand, aarch64_nonmemory_operand)
15291         (aarch64_equality_operator, aarch64_constant_vector_operand)
15292         (aarch64_sve_ld1r_operand, aarch64_sve_ldr_operand): New predicates.
15293         (aarch64_sve_nonimmediate_operand): Likewise.
15294         (aarch64_sve_general_operand): Likewise.
15295         (aarch64_sve_dup_operand, aarch64_sve_arith_immediate): Likewise.
15296         (aarch64_sve_sub_arith_immediate, aarch64_sve_inc_dec_immediate)
15297         (aarch64_sve_logical_immediate, aarch64_sve_mul_immediate): Likewise.
15298         (aarch64_sve_dup_immediate, aarch64_sve_cmp_vsc_immediate): Likewise.
15299         (aarch64_sve_cmp_vsd_immediate, aarch64_sve_index_immediate): Likewise.
15300         (aarch64_sve_float_arith_immediate): Likewise.
15301         (aarch64_sve_float_arith_with_sub_immediate): Likewise.
15302         (aarch64_sve_float_mul_immediate, aarch64_sve_arith_operand): Likewise.
15303         (aarch64_sve_add_operand, aarch64_sve_logical_operand): Likewise.
15304         (aarch64_sve_lshift_operand, aarch64_sve_rshift_operand): Likewise.
15305         (aarch64_sve_mul_operand, aarch64_sve_cmp_vsc_operand): Likewise.
15306         (aarch64_sve_cmp_vsd_operand, aarch64_sve_index_operand): Likewise.
15307         (aarch64_sve_float_arith_operand): Likewise.
15308         (aarch64_sve_float_arith_with_sub_operand): Likewise.
15309         (aarch64_sve_float_mul_operand): Likewise.
15310         (aarch64_sve_vec_perm_operand): Likewise.
15311         (aarch64_pluslong_operand): Include aarch64_sve_addvl_addpl_immediate.
15312         (aarch64_mov_operand): Accept const_poly_int and const_vector.
15313         (aarch64_simd_lshift_imm, aarch64_simd_rshift_imm): Accept const
15314         as well as const_vector.
15315         (aarch64_simd_imm_zero, aarch64_simd_imm_minus_one): Move earlier
15316         in file.  Use CONST0_RTX and CONSTM1_RTX.
15317         (aarch64_simd_or_scalar_imm_zero): Likewise.  Add match_codes.
15318         (aarch64_simd_reg_or_zero): Accept const as well as const_vector.
15319         Use aarch64_simd_imm_zero.
15320         * config/aarch64/aarch64-sve.md: New file.
15321         * config/aarch64/aarch64.md: Include it.
15322         (VG_REGNUM, P0_REGNUM, P7_REGNUM, P15_REGNUM): New register numbers.
15323         (UNSPEC_REV, UNSPEC_LD1_SVE, UNSPEC_ST1_SVE, UNSPEC_MERGE_PTRUE)
15324         (UNSPEC_PTEST_PTRUE, UNSPEC_UNPACKSHI, UNSPEC_UNPACKUHI)
15325         (UNSPEC_UNPACKSLO, UNSPEC_UNPACKULO, UNSPEC_PACK)
15326         (UNSPEC_FLOAT_CONVERT, UNSPEC_WHILE_LO): New unspec constants.
15327         (sve): New attribute.
15328         (enabled): Disable instructions with the sve attribute unless
15329         TARGET_SVE.
15330         (movqi, movhi): Pass CONST_POLY_INT operaneds through
15331         aarch64_expand_mov_immediate.
15332         (*mov<mode>_aarch64, *movsi_aarch64, *movdi_aarch64): Handle
15333         CNT[BHSD] immediates.
15334         (movti): Split CONST_POLY_INT moves into two halves.
15335         (add<mode>3): Accept aarch64_pluslong_or_poly_operand.
15336         Split additions that need a temporary here if the destination
15337         is the stack pointer.
15338         (*add<mode>3_aarch64): Handle ADDVL and ADDPL immediates.
15339         (*add<mode>3_poly_1): New instruction.
15340         (set_clobber_cc): New expander.
15342 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
15344         * simplify-rtx.c (simplify_immed_subreg): Add an inner_bytes
15345         parameter and use it instead of GET_MODE_SIZE (innermode).  Use
15346         inner_bytes * BITS_PER_UNIT instead of GET_MODE_BITSIZE (innermode).
15347         Use CEIL (inner_bytes, GET_MODE_UNIT_SIZE (innermode)) instead of
15348         GET_MODE_NUNITS (innermode).  Also add a first_elem parameter.
15349         Change innermode from fixed_mode_size to machine_mode.
15350         (simplify_subreg): Update call accordingly.  Handle a constant-sized
15351         subreg of a variable-length CONST_VECTOR.
15353 2018-01-13  Richard Sandiford  <richard.sandiford@linaro.org>
15354             Alan Hayward  <alan.hayward@arm.com>
15355             David Sherwood  <david.sherwood@arm.com>
15357         * tree-ssa-address.c (mem_ref_valid_without_offset_p): New function.
15358         (add_offset_to_base): New function, split out from...
15359         (create_mem_ref): ...here.  When handling a scale other than 1,
15360         check first whether the address is valid without the offset.
15361         Add it into the base if so, leaving the index and scale as-is.
15363 2018-01-12  Jakub Jelinek  <jakub@redhat.com>
15365         PR c++/83778
15366         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin): Call
15367         fold_for_warn before checking if arg2 is INTEGER_CST.
15369 2018-01-12  Segher Boessenkool  <segher@kernel.crashing.org>
15371         * config/rs6000/predicates.md (load_multiple_operation): Delete.
15372         (store_multiple_operation): Delete.
15373         * config/rs6000/rs6000-cpus.def (601): Remove MASK_STRING.
15374         * config/rs6000/rs6000-protos.h (rs6000_output_load_multiple): Delete.
15375         * config/rs6000/rs6000-string.c (expand_block_move): Delete everything
15376         guarded by TARGET_STRING.
15377         (rs6000_output_load_multiple): Delete.
15378         * config/rs6000/rs6000.c (rs6000_option_override_internal): Delete
15379         OPTION_MASK_STRING / TARGET_STRING handling.
15380         (print_operand) <'N', 'O'>: Add comment that these are unused now.
15381         (const rs6000_opt_masks) <"string">: Change mask to 0.
15382         * config/rs6000/rs6000.h (TARGET_DEFAULT): Remove MASK_STRING.
15383         (MASK_STRING): Delete.
15384         * config/rs6000/rs6000.md (*mov<mode>_string): Delete TARGET_STRING
15385         parts.  Simplify.
15386         (load_multiple): Delete.
15387         (*ldmsi8): Delete.
15388         (*ldmsi7): Delete.
15389         (*ldmsi6): Delete.
15390         (*ldmsi5): Delete.
15391         (*ldmsi4): Delete.
15392         (*ldmsi3): Delete.
15393         (store_multiple): Delete.
15394         (*stmsi8): Delete.
15395         (*stmsi7): Delete.
15396         (*stmsi6): Delete.
15397         (*stmsi5): Delete.
15398         (*stmsi4): Delete.
15399         (*stmsi3): Delete.
15400         (movmemsi_8reg): Delete.
15401         (corresponding unnamed define_insn): Delete.
15402         (movmemsi_6reg): Delete.
15403         (corresponding unnamed define_insn): Delete.
15404         (movmemsi_4reg): Delete.
15405         (corresponding unnamed define_insn): Delete.
15406         (movmemsi_2reg): Delete.
15407         (corresponding unnamed define_insn): Delete.
15408         (movmemsi_1reg): Delete.
15409         (corresponding unnamed define_insn): Delete.
15410         * config/rs6000/rs6000.opt (mno-string): New.
15411         (mstring): Replace by deprecation warning stub.
15412         * doc/invoke.texi (RS/6000 and PowerPC Options): Delete -mstring.
15414 2018-01-12  Jakub Jelinek  <jakub@redhat.com>
15416         * regrename.c (regrename_do_replace): If replacing the same
15417         reg multiple times, try to reuse last created gen_raw_REG.
15419         PR debug/81155
15420         * bb-reorder.c (pass_partition_blocks::gate): In lto don't partition
15421         main to workaround a bug in GDB.
15423 2018-01-12  Tom de Vries  <tom@codesourcery.com>
15425         PR target/83737
15426         * config.gcc (nvptx*-*-*): Set use_gcc_stdint=wrap.
15428 2018-01-12  Vladimir Makarov  <vmakarov@redhat.com>
15430         PR rtl-optimization/80481
15431         * ira-color.c (get_cap_member): New function.
15432         (allocnos_conflict_by_live_ranges_p): Use it.
15433         (slot_coalesced_allocno_live_ranges_intersect_p): Add assert.
15434         (setup_slot_coalesced_allocno_live_ranges): Ditto.
15436 2018-01-12  Uros Bizjak  <ubizjak@gmail.com>
15438         PR target/83628
15439         * config/alpha/alpha.md (*saddsi_1): New insn_ans_split pattern.
15440         (*saddl_se_1): Ditto.
15441         (*ssubsi_1): Ditto.
15442         (*ssubl_se_1): Ditto.
15444 2018-01-12  Richard Sandiford  <richard.sandiford@linaro.org>
15446         * tree-predcom.c (aff_combination_dr_offset): Use wi::to_poly_widest
15447         rather than wi::to_widest for DR_INITs.
15448         * tree-vect-data-refs.c (vect_find_same_alignment_drs): Use
15449         wi::to_poly_offset rather than wi::to_offset for DR_INIT.
15450         (vect_analyze_data_ref_accesses): Require both DR_INITs to be
15451         INTEGER_CSTs.
15452         (vect_analyze_group_access_1): Note that here.
15454 2018-01-12  Richard Sandiford  <richard.sandiford@linaro.org>
15456         * tree-vectorizer.c (get_vec_alignment_for_array_type): Handle
15457         polynomial type sizes.
15459 2018-01-12  Richard Sandiford  <richard.sandiford@linaro.org>
15461         * gimplify.c (gimple_add_tmp_var_fn): Allow variables to have a
15462         poly_uint64 size, rather than requiring an unsigned HOST_WIDE_INT size.
15463         (gimple_add_tmp_var): Likewise.
15465 2018-01-12  Martin Liska  <mliska@suse.cz>
15467         * gimple.c (gimple_alloc_counts): Use uint64_t instead of int.
15468         (gimple_alloc_sizes): Likewise.
15469         (dump_gimple_statistics): Use PRIu64 in printf format.
15470         * gimple.h: Change uint64_t to int.
15472 2018-01-12  Martin Liska  <mliska@suse.cz>
15474         * tree-core.h: Use uint64_t instead of int.
15475         * tree.c (tree_node_counts): Likewise.
15476         (tree_node_sizes): Likewise.
15477         (dump_tree_statistics): Use PRIu64 in printf format.
15479 2018-01-12  Martin Liska  <mliska@suse.cz>
15481         * Makefile.in: As qsort_chk is implemented in vec.c, add
15482         vec.o to linkage of gencfn-macros.
15483         * tree.c (build_new_poly_int_cst): Add CXX_MEM_STAT_INFO as it's
15484         passing the info to record_node_allocation_statistics.
15485         (test_vector_cst_patterns): Add CXX_MEM_STAT_INFO to declaration
15486         and pass the info.
15487         * ggc-common.c (struct ggc_usage): Add operator== and use
15488         it in operator< and compare function.
15489         * mem-stats.h (struct mem_usage): Likewise.
15490         * vec.c (struct vec_usage): Remove operator< and compare
15491         function. Can be simply inherited.
15493 2018-01-12  Martin Jambor  <mjambor@suse.cz>
15495         PR target/81616
15496         * params.def: New parameter PARAM_AVOID_FMA_MAX_BITS.
15497         * tree-ssa-math-opts.c: Include domwalk.h.
15498         (convert_mult_to_fma_1): New function.
15499         (fma_transformation_info): New type.
15500         (fma_deferring_state): Likewise.
15501         (cancel_fma_deferring): New function.
15502         (result_of_phi): Likewise.
15503         (last_fma_candidate_feeds_initial_phi): Likewise.
15504         (convert_mult_to_fma): Added deferring logic, split actual
15505         transformation to convert_mult_to_fma_1.
15506         (math_opts_dom_walker): New type.
15507         (math_opts_dom_walker::after_dom_children): New method, body moved
15508         here from pass_optimize_widening_mul::execute, added deferring logic
15509         bits.
15510         (pass_optimize_widening_mul::execute): Moved most of code to
15511         math_opts_dom_walker::after_dom_children.
15512         * config/i386/x86-tune.def (X86_TUNE_AVOID_128FMA_CHAINS): New.
15513         * config/i386/i386.c (ix86_option_override_internal): Added
15514         maybe_setting of PARAM_AVOID_FMA_MAX_BITS.
15516 2018-01-12  Richard Biener  <rguenther@suse.de>
15518         PR debug/83157
15519         * dwarf2out.c (gen_variable_die): Do not reset old_die for
15520         inline instance vars.
15522 2018-01-12  Oleg Endo  <olegendo@gcc.gnu.org>
15524         PR target/81819
15525         * config/rx/rx.c (rx_is_restricted_memory_address):
15526         Handle SUBREG case.
15528 2018-01-12  Richard Biener  <rguenther@suse.de>
15530         PR tree-optimization/80846
15531         * target.def (split_reduction): New target hook.
15532         * targhooks.c (default_split_reduction): New function.
15533         * targhooks.h (default_split_reduction): Declare.
15534         * tree-vect-loop.c (vect_create_epilog_for_reduction): If the
15535         target requests first reduce vectors by combining low and high
15536         parts.
15537         * tree-vect-stmts.c (vect_gen_perm_mask_any): Adjust.
15538         (get_vectype_for_scalar_type_and_size): Export.
15539         * tree-vectorizer.h (get_vectype_for_scalar_type_and_size): Declare.
15540         * doc/tm.texi.in (TARGET_VECTORIZE_SPLIT_REDUCTION): Document.
15541         * doc/tm.texi: Regenerate.
15542         * config/i386/i386.c (ix86_split_reduction): Implement
15543         TARGET_VECTORIZE_SPLIT_REDUCTION.
15545 2018-01-12  Eric Botcazou  <ebotcazou@adacore.com>
15547         PR target/83368
15548         * config/sparc/sparc.h (PIC_OFFSET_TABLE_REGNUM): Set to INVALID_REGNUM
15549         in PIC mode except for TARGET_VXWORKS_RTP.
15550         * config/sparc/sparc.c: Include cfgrtl.h.
15551         (TARGET_INIT_PIC_REG): Define.
15552         (TARGET_USE_PSEUDO_PIC_REG): Likewise.
15553         (sparc_pic_register_p): New predicate.
15554         (sparc_legitimate_address_p): Use it.
15555         (sparc_legitimize_pic_address): Likewise.
15556         (sparc_delegitimize_address): Likewise.
15557         (sparc_mode_dependent_address_p): Likewise.
15558         (gen_load_pcrel_sym): Remove 4th parameter.
15559         (load_got_register): Adjust call to above.  Remove obsolete stuff.
15560         (sparc_expand_prologue): Do not call load_got_register here.
15561         (sparc_flat_expand_prologue): Likewise.
15562         (sparc_output_mi_thunk): Set the pic_offset_table_rtx object.
15563         (sparc_use_pseudo_pic_reg): New function.
15564         (sparc_init_pic_reg): Likewise.
15565         * config/sparc/sparc.md (vxworks_load_got): Set the GOT register.
15566         (builtin_setjmp_receiver): Enable only for TARGET_VXWORKS_RTP.
15568 2018-01-12  Christophe Lyon  <christophe.lyon@linaro.org>
15570         * doc/sourcebuild.texi (Effective-Target Keywords, Other attributes):
15571         Add item for branch_cost.
15573 2018-01-12  Eric Botcazou  <ebotcazou@adacore.com>
15575         PR rtl-optimization/83565
15576         * rtlanal.c (nonzero_bits1): On WORD_REGISTER_OPERATIONS machines, do
15577         not extend the result to a larger mode for rotate operations.
15578         (num_sign_bit_copies1): Likewise.
15580 2018-01-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15582         PR target/40411
15583         * config/sol2.h (STARTFILE_ARCH_SPEC): Don't use with -shared or
15584         -symbolic.
15585         Use values-Xc.o for -pedantic.
15586         Link with values-xpg4.o for C90, values-xpg6.o otherwise.
15588 2018-01-12  Martin Liska  <mliska@suse.cz>
15590         PR ipa/83054
15591         * ipa-devirt.c (final_warning_record::grow_type_warnings):
15592         New function.
15593         (possible_polymorphic_call_targets): Use it.
15594         (ipa_devirt): Likewise.
15596 2018-01-12  Martin Liska  <mliska@suse.cz>
15598         * profile-count.h (enum profile_quality): Use 0 as invalid
15599         enum value of profile_quality.
15601 2018-01-12  Chung-Ju Wu  <jasonwucj@gmail.com>
15603         * doc/invoke.texi (NDS32 Options): Add -mext-perf, -mext-perf2 and
15604         -mext-string options.
15606 2018-01-12  Richard Biener  <rguenther@suse.de>
15608         * lto-streamer-out.c (DFS::DFS_write_tree_body): Process
15609         DECL_DEBUG_EXPR conditional on DECL_HAS_DEBUG_EXPR_P.
15610         * tree-streamer-in.c (lto_input_ts_decl_common_tree_pointers):
15611         Likewise.
15612         * tree-streamer-out.c (write_ts_decl_common_tree_pointers): Likewise.
15614 2018-01-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
15616         * configure.ac (--with-long-double-format): Add support for the
15617         configuration option to change the default long double format on
15618         PowerPC systems.
15619         * config.gcc (powerpc*-linux*-*): Likewise.
15620         * configure: Regenerate.
15621         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): If long
15622         double is IEEE, define __KC__ and __KF__ to allow floatn.h to be
15623         used without modification.
15625 2018-01-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
15627         * config/rs6000/rs6000-builtin.def (BU_P7_MISC_X): New #define.
15628         (SPEC_BARRIER): New instantiation of BU_P7_MISC_X.
15629         * config/rs6000/rs6000.c (rs6000_expand_builtin): Handle
15630         MISC_BUILTIN_SPEC_BARRIER.
15631         (rs6000_init_builtins): Likewise.
15632         * config/rs6000/rs6000.md (UNSPECV_SPEC_BARRIER): New UNSPECV
15633         enum value.
15634         (speculation_barrier): New define_insn.
15635         * doc/extend.texi: Document __builtin_speculation_barrier.
15637 2018-01-11  Jakub Jelinek  <jakub@redhat.com>
15639         PR target/83203
15640         * config/i386/i386.c (ix86_expand_vector_init_one_nonzero): If one_var
15641         is 0, for V{8,16}S[IF] and V[48]D[IF]mode use gen_vec_set<mode>_0.
15642         * config/i386/sse.md (VI8_AVX_AVX512F, VI4F_256_512): New mode
15643         iterators.
15644         (ssescalarmodesuffix): Add 512-bit vectors.  Use "d" or "q" for
15645         integral modes instead of "ss" and "sd".
15646         (vec_set<mode>_0): New define_insns for 256-bit and 512-bit
15647         vectors with 32-bit and 64-bit elements.
15648         (vecdupssescalarmodesuffix): New mode attribute.
15649         (vec_dup<mode>): Use it.
15651 2018-01-11  H.J. Lu  <hongjiu.lu@intel.com>
15653         PR target/83330
15654         * config/i386/i386.c (ix86_compute_frame_layout): Align stack
15655         frame if argument is passed on stack.
15657 2018-01-11  Jakub Jelinek  <jakub@redhat.com>
15659         PR target/82682
15660         * ree.c (combine_reaching_defs): Optimize also
15661         reg2=exp; reg1=reg2; reg2=any_extend(reg1); into
15662         reg2=any_extend(exp); reg1=reg2;, formatting fix.
15664 2018-01-11  Jan Hubicka  <hubicka@ucw.cz>
15666         PR middle-end/83189
15667         * gimple-ssa-isolate-paths.c (isolate_path): Fix profile update.
15669 2018-01-11  Jan Hubicka  <hubicka@ucw.cz>
15671         PR middle-end/83718
15672         * tree-inline.c (copy_cfg_body): Adjust num&den for scaling
15673         after they are computed.
15675 2018-01-11  Bin Cheng  <bin.cheng@arm.com>
15677         PR tree-optimization/83695
15678         * gimple-loop-linterchange.cc
15679         (tree_loop_interchange::interchange_loops): Call scev_reset_htab to
15680         reset cached scev information after interchange.
15681         (pass_linterchange::execute): Remove call to scev_reset_htab.
15683 2018-01-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15685         * config/arm/arm_neon.h (vfmlal_lane_low_u32, vfmlal_lane_high_u32,
15686         vfmlalq_laneq_low_u32, vfmlalq_lane_low_u32, vfmlal_laneq_low_u32,
15687         vfmlalq_laneq_high_u32, vfmlalq_lane_high_u32, vfmlal_laneq_high_u32,
15688         vfmlsl_lane_low_u32, vfmlsl_lane_high_u32, vfmlslq_laneq_low_u32,
15689         vfmlslq_lane_low_u32, vfmlsl_laneq_low_u32, vfmlslq_laneq_high_u32,
15690         vfmlslq_lane_high_u32, vfmlsl_laneq_high_u32): Define.
15691         * config/arm/arm_neon_builtins.def (vfmal_lane_low,
15692         vfmal_lane_lowv4hf, vfmal_lane_lowv8hf, vfmal_lane_high,
15693         vfmal_lane_highv4hf, vfmal_lane_highv8hf, vfmsl_lane_low,
15694         vfmsl_lane_lowv4hf, vfmsl_lane_lowv8hf, vfmsl_lane_high,
15695         vfmsl_lane_highv4hf, vfmsl_lane_highv8hf): New sets of builtins.
15696         * config/arm/iterators.md (VFMLSEL2, vfmlsel2): New mode attributes.
15697         (V_lane_reg): Likewise.
15698         * config/arm/neon.md (neon_vfm<vfml_op>l_lane_<vfml_half><VCVTF:mode>):
15699         New define_expand.
15700         (neon_vfm<vfml_op>l_lane_<vfml_half><vfmlsel2><mode>): Likewise.
15701         (vfmal_lane_low<mode>_intrinsic,
15702         vfmal_lane_low<vfmlsel2><mode>_intrinsic,
15703         vfmal_lane_high<vfmlsel2><mode>_intrinsic,
15704         vfmal_lane_high<mode>_intrinsic, vfmsl_lane_low<mode>_intrinsic,
15705         vfmsl_lane_low<vfmlsel2><mode>_intrinsic,
15706         vfmsl_lane_high<vfmlsel2><mode>_intrinsic,
15707         vfmsl_lane_high<mode>_intrinsic): New define_insns.
15709 2018-01-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15711         * config/arm/arm-cpus.in (fp16fml): New feature.
15712         (ALL_SIMD): Add fp16fml.
15713         (armv8.2-a): Add fp16fml as an option.
15714         (armv8.3-a): Likewise.
15715         (armv8.4-a): Add fp16fml as part of fp16.
15716         * config/arm/arm.h (TARGET_FP16FML): Define.
15717         * config/arm/arm-c.c (arm_cpu_builtins): Define __ARM_FEATURE_FP16_FML
15718         when appropriate.
15719         * config/arm/arm-modes.def (V2HF): Define.
15720         * config/arm/arm_neon.h (vfmlal_low_u32, vfmlsl_low_u32,
15721         vfmlal_high_u32, vfmlsl_high_u32, vfmlalq_low_u32,
15722         vfmlslq_low_u32, vfmlalq_high_u32, vfmlslq_high_u32): Define.
15723         * config/arm/arm_neon_builtins.def (vfmal_low, vfmal_high,
15724         vfmsl_low, vfmsl_high): New set of builtins.
15725         * config/arm/iterators.md (PLUSMINUS): New code iterator.
15726         (vfml_op): New code attribute.
15727         (VFMLHALVES): New int iterator.
15728         (VFML, VFMLSEL): New mode attributes.
15729         (V_reg): Define mapping for V2HF.
15730         (V_hi, V_lo): New mode attributes.
15731         (VF_constraint): Likewise.
15732         (vfml_half, vfml_half_selector): New int attributes.
15733         * config/arm/neon.md (neon_vfm<vfml_op>l_<vfml_half><mode>): New
15734         define_expand.
15735         (vfmal_low<mode>_intrinsic, vfmsl_high<mode>_intrinsic,
15736         vfmal_high<mode>_intrinsic, vfmsl_low<mode>_intrinsic):
15737         New define_insn.
15738         * config/arm/t-arm-elf (v8_fps): Add fp16fml.
15739         * config/arm/t-multilib (v8_2_a_simd_variants): Add fp16fml.
15740         * config/arm/unspecs.md (UNSPEC_VFML_LO, UNSPEC_VFML_HI): New unspecs.
15741         * doc/invoke.texi (ARM Options): Document fp16fml.  Update armv8.4-a
15742         documentation.
15743         * doc/sourcebuild.texi (arm_fp16fml_neon_ok, arm_fp16fml_neon):
15744         Document new effective target and option set.
15746 2018-01-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15748         * config/arm/arm-cpus.in (armv8_4): New feature.
15749         (ARMv8_4a): New fgroup.
15750         (armv8.4-a): New arch.
15751         * config/arm/arm-tables.opt: Regenerate.
15752         * config/arm/t-aprofile: Add matching rules for -march=armv8.4-a.
15753         * config/arm/t-arm-elf (all_v8_archs): Add armv8.4-a.
15754         * config/arm/t-multilib (v8_4_a_simd_variants): New variable.
15755         Add matching rules for -march=armv8.4-a and extensions.
15756         * doc/invoke.texi (ARM Options): Document -march=armv8.4-a.
15758 2018-01-11  Oleg Endo  <olegendo@gcc.gnu.org>
15760         PR target/81821
15761         * config/rx/rx.md (BW): New mode attribute.
15762         (sync_lock_test_and_setsi): Add mode suffix to insn output.
15764 2018-01-11  Richard Biener  <rguenther@suse.de>
15766         PR tree-optimization/83435
15767         * graphite.c (canonicalize_loop_form): Ignore fake loop exit edges.
15768         * graphite-scop-detection.c (scop_detection::get_sese): Likewise.
15769         * tree-vrp.c (add_assert_info): Drop TREE_OVERFLOW if they appear.
15771 2018-01-11  Richard Sandiford  <richard.sandiford@linaro.org>
15772             Alan Hayward  <alan.hayward@arm.com>
15773             David Sherwood  <david.sherwood@arm.com>
15775         * config/aarch64/aarch64.c (aarch64_address_info): Add a const_offset
15776         field.
15777         (aarch64_classify_address): Initialize it.  Track polynomial offsets.
15778         (aarch64_print_address_internal): Use it to check for a zero offset.
15780 2018-01-11  Richard Sandiford  <richard.sandiford@linaro.org>
15781             Alan Hayward  <alan.hayward@arm.com>
15782             David Sherwood  <david.sherwood@arm.com>
15784         * config/aarch64/aarch64-modes.def (NUM_POLY_INT_COEFFS): Set to 2.
15785         * config/aarch64/aarch64-protos.h (aarch64_initial_elimination_offset):
15786         Return a poly_int64 rather than a HOST_WIDE_INT.
15787         (aarch64_offset_7bit_signed_scaled_p): Take the offset as a poly_int64
15788         rather than a HOST_WIDE_INT.
15789         * config/aarch64/aarch64.h (aarch64_frame): Protect with
15790         HAVE_POLY_INT_H rather than HOST_WIDE_INT.  Change locals_offset,
15791         hard_fp_offset, frame_size, initial_adjust, callee_offset and
15792         final_offset from HOST_WIDE_INT to poly_int64.
15793         * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Use
15794         to_constant when getting the number of units in an Advanced SIMD
15795         mode.
15796         (aarch64_builtin_vectorized_function): Check for a constant number
15797         of units.
15798         * config/aarch64/aarch64-simd.md (mov<mode>): Handle polynomial
15799         GET_MODE_SIZE.
15800         (aarch64_ld<VSTRUCT:nregs>_lane<VALLDIF:mode>): Use the nunits
15801         attribute instead of GET_MODE_NUNITS.
15802         * config/aarch64/aarch64.c (aarch64_hard_regno_nregs)
15803         (aarch64_class_max_nregs): Use the constant_lowest_bound of the
15804         GET_MODE_SIZE for fixed-size registers.
15805         (aarch64_const_vec_all_same_in_range_p): Use const_vec_duplicate_p.
15806         (aarch64_hard_regno_call_part_clobbered, aarch64_classify_index)
15807         (aarch64_mode_valid_for_sched_fusion_p, aarch64_classify_address)
15808         (aarch64_legitimize_address_displacement, aarch64_secondary_reload)
15809         (aarch64_print_operand, aarch64_print_address_internal)
15810         (aarch64_address_cost, aarch64_rtx_costs, aarch64_register_move_cost)
15811         (aarch64_short_vector_p, aapcs_vfp_sub_candidate)
15812         (aarch64_simd_attr_length_rglist, aarch64_operands_ok_for_ldpstp):
15813         Handle polynomial GET_MODE_SIZE.
15814         (aarch64_hard_regno_caller_save_mode): Likewise.  Return modes
15815         wider than SImode without modification.
15816         (tls_symbolic_operand_type): Use strip_offset instead of split_const.
15817         (aarch64_pass_by_reference, aarch64_layout_arg, aarch64_pad_reg_upward)
15818         (aarch64_gimplify_va_arg_expr): Assert that we don't yet handle
15819         passing and returning SVE modes.
15820         (aarch64_function_value, aarch64_layout_arg): Use gen_int_mode
15821         rather than GEN_INT.
15822         (aarch64_emit_probe_stack_range): Take the size as a poly_int64
15823         rather than a HOST_WIDE_INT, but call sorry if it isn't constant.
15824         (aarch64_allocate_and_probe_stack_space): Likewise.
15825         (aarch64_layout_frame): Cope with polynomial offsets.
15826         (aarch64_save_callee_saves, aarch64_restore_callee_saves): Take the
15827         start_offset as a poly_int64 rather than a HOST_WIDE_INT.  Track
15828         polynomial offsets.
15829         (offset_9bit_signed_unscaled_p, offset_12bit_unsigned_scaled_p)
15830         (aarch64_offset_7bit_signed_scaled_p): Take the offset as a
15831         poly_int64 rather than a HOST_WIDE_INT.
15832         (aarch64_get_separate_components, aarch64_process_components)
15833         (aarch64_expand_prologue, aarch64_expand_epilogue)
15834         (aarch64_use_return_insn_p): Handle polynomial frame offsets.
15835         (aarch64_anchor_offset): New function, split out from...
15836         (aarch64_legitimize_address): ...here.
15837         (aarch64_builtin_vectorization_cost): Handle polynomial
15838         TYPE_VECTOR_SUBPARTS.
15839         (aarch64_simd_check_vect_par_cnst_half): Handle polynomial
15840         GET_MODE_NUNITS.
15841         (aarch64_simd_make_constant, aarch64_expand_vector_init): Get the
15842         number of elements from the PARALLEL rather than the mode.
15843         (aarch64_shift_truncation_mask): Use GET_MODE_UNIT_BITSIZE
15844         rather than GET_MODE_BITSIZE.
15845         (aarch64_evpc_trn, aarch64_evpc_uzp, aarch64_evpc_ext)
15846         (aarch64_evpc_rev, aarch64_evpc_dup, aarch64_evpc_zip)
15847         (aarch64_expand_vec_perm_const_1): Handle polynomial
15848         d->perm.length () and d->perm elements.
15849         (aarch64_evpc_tbl): Likewise.  Use nelt rather than GET_MODE_NUNITS.
15850         Apply to_constant to d->perm elements.
15851         (aarch64_simd_valid_immediate, aarch64_vec_fpconst_pow_of_2): Handle
15852         polynomial CONST_VECTOR_NUNITS.
15853         (aarch64_move_pointer): Take amount as a poly_int64 rather
15854         than an int.
15855         (aarch64_progress_pointer): Avoid temporary variable.
15856         * config/aarch64/aarch64.md (aarch64_<crc_variant>): Use
15857         the mode attribute instead of GET_MODE.
15859 2018-01-11  Richard Sandiford  <richard.sandiford@linaro.org>
15860             Alan Hayward  <alan.hayward@arm.com>
15861             David Sherwood  <david.sherwood@arm.com>
15863         * config/aarch64/aarch64.c (aarch64_force_temporary): Assert that
15864         x exists before using it.
15865         (aarch64_add_constant_internal): Rename to...
15866         (aarch64_add_offset_1): ...this.  Replace regnum with separate
15867         src and dest rtxes.  Handle the case in which they're different,
15868         including when the offset is zero.  Replace scratchreg with an rtx.
15869         Use 2 additions if there is no spare register into which we can
15870         move a 16-bit constant.
15871         (aarch64_add_constant): Delete.
15872         (aarch64_add_offset): Replace reg with separate src and dest
15873         rtxes.  Take a poly_int64 offset instead of a HOST_WIDE_INT.
15874         Use aarch64_add_offset_1.
15875         (aarch64_add_sp, aarch64_sub_sp): Take the scratch register as
15876         an rtx rather than an int.  Take the delta as a poly_int64
15877         rather than a HOST_WIDE_INT.  Use aarch64_add_offset.
15878         (aarch64_expand_mov_immediate): Update uses of aarch64_add_offset.
15879         (aarch64_expand_prologue): Update calls to aarch64_sub_sp,
15880         aarch64_allocate_and_probe_stack_space and aarch64_add_offset.
15881         (aarch64_expand_epilogue): Update calls to aarch64_add_offset
15882         and aarch64_add_sp.
15883         (aarch64_output_mi_thunk): Use aarch64_add_offset rather than
15884         aarch64_add_constant.
15886 2018-01-11  Richard Sandiford  <richard.sandiford@linaro.org>
15888         * config/aarch64/aarch64.c (aarch64_reinterpret_float_as_int):
15889         Use scalar_float_mode.
15891 2018-01-11  Richard Sandiford  <richard.sandiford@linaro.org>
15893         * config/aarch64/aarch64-simd.md
15894         (aarch64_fml<f16mac1>l<f16quad>_low<mode>): Avoid GET_MODE_NUNITS.
15895         (aarch64_fml<f16mac1>l<f16quad>_high<mode>): Likewise.
15896         (aarch64_fml<f16mac1>l_lane_lowv2sf): Likewise.
15897         (aarch64_fml<f16mac1>l_lane_highv2sf): Likewise.
15898         (aarch64_fml<f16mac1>lq_laneq_lowv4sf): Likewise.
15899         (aarch64_fml<f16mac1>lq_laneq_highv4sf): Likewise.
15900         (aarch64_fml<f16mac1>l_laneq_lowv2sf): Likewise.
15901         (aarch64_fml<f16mac1>l_laneq_highv2sf): Likewise.
15902         (aarch64_fml<f16mac1>lq_lane_lowv4sf): Likewise.
15903         (aarch64_fml<f16mac1>lq_lane_highv4sf): Likewise.
15905 2018-01-11  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
15907         PR target/83514
15908         * config/arm/arm.c (arm_declare_function_name): Set arch_to_print if
15909         targ_options->x_arm_arch_string is non NULL.
15911 2018-01-11  Tamar Christina  <tamar.christina@arm.com>
15913         * config/aarch64/aarch64.h
15914         (AARCH64_FL_FOR_ARCH8_4): Add  AARCH64_FL_DOTPROD.
15916 2018-01-11  Sudakshina Das  <sudi.das@arm.com>
15918         PR target/82096
15919         * expmed.c (emit_store_flag_force): Swap if const op0
15920         and change VOIDmode to mode of op0.
15922 2018-01-11  Richard Sandiford  <richard.sandiford@linaro.org>
15924         PR rtl-optimization/83761
15925         * caller-save.c (replace_reg_with_saved_mem): Pass bits rather
15926         than bytes to mode_for_size.
15928 2018-01-10  Jan Hubicka  <hubicka@ucw.cz>
15930         PR middle-end/83189
15931         * gfortran.fortran-torture/compile/pr83189.f90: New testcase.
15932         * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Handle zero
15933         profile.
15935 2018-01-10  Jan Hubicka  <hubicka@ucw.cz>
15937         PR middle-end/83575
15938         * cfgrtl.c (rtl_verify_edges): Only verify fixability of partition
15939         when in layout mode.
15940         (cfg_layout_finalize): Do not verify cfg before we are out of layout.
15941         * cfgcleanup.c (try_optimize_cfg): Only verify flow info when doing
15942         partition fixup.
15944 2018-01-10  Michael Collison  <michael.collison@arm.com>
15946         * config/aarch64/aarch64-modes.def (V2HF): New VECTOR_MODE.
15947         * config/aarch64/aarch64-option-extension.def: Add
15948         AARCH64_OPT_EXTENSION of 'fp16fml'.
15949         * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins):
15950         (__ARM_FEATURE_FP16_FML): Define if TARGET_F16FML is true.
15951         * config/aarch64/predicates.md (aarch64_lane_imm3): New predicate.
15952         * config/aarch64/constraints.md (Ui7): New constraint.
15953         * config/aarch64/iterators.md (VFMLA_W): New mode iterator.
15954         (VFMLA_SEL_W): Ditto.
15955         (f16quad): Ditto.
15956         (f16mac1): Ditto.
15957         (VFMLA16_LOW): New int iterator.
15958         (VFMLA16_HIGH): Ditto.
15959         (UNSPEC_FMLAL): New unspec.
15960         (UNSPEC_FMLSL): Ditto.
15961         (UNSPEC_FMLAL2): Ditto.
15962         (UNSPEC_FMLSL2): Ditto.
15963         (f16mac): New code attribute.
15964         * config/aarch64/aarch64-simd-builtins.def
15965         (aarch64_fmlal_lowv2sf): Ditto.
15966         (aarch64_fmlsl_lowv2sf): Ditto.
15967         (aarch64_fmlalq_lowv4sf): Ditto.
15968         (aarch64_fmlslq_lowv4sf): Ditto.
15969         (aarch64_fmlal_highv2sf): Ditto.
15970         (aarch64_fmlsl_highv2sf): Ditto.
15971         (aarch64_fmlalq_highv4sf): Ditto.
15972         (aarch64_fmlslq_highv4sf): Ditto.
15973         (aarch64_fmlal_lane_lowv2sf): Ditto.
15974         (aarch64_fmlsl_lane_lowv2sf): Ditto.
15975         (aarch64_fmlal_laneq_lowv2sf): Ditto.
15976         (aarch64_fmlsl_laneq_lowv2sf): Ditto.
15977         (aarch64_fmlalq_lane_lowv4sf): Ditto.
15978         (aarch64_fmlsl_lane_lowv4sf): Ditto.
15979         (aarch64_fmlalq_laneq_lowv4sf): Ditto.
15980         (aarch64_fmlsl_laneq_lowv4sf): Ditto.
15981         (aarch64_fmlal_lane_highv2sf): Ditto.
15982         (aarch64_fmlsl_lane_highv2sf): Ditto.
15983         (aarch64_fmlal_laneq_highv2sf): Ditto.
15984         (aarch64_fmlsl_laneq_highv2sf): Ditto.
15985         (aarch64_fmlalq_lane_highv4sf): Ditto.
15986         (aarch64_fmlsl_lane_highv4sf): Ditto.
15987         (aarch64_fmlalq_laneq_highv4sf): Ditto.
15988         (aarch64_fmlsl_laneq_highv4sf): Ditto.
15989         * config/aarch64/aarch64-simd.md:
15990         (aarch64_fml<f16mac1>l<f16quad>_low<mode>): New pattern.
15991         (aarch64_fml<f16mac1>l<f16quad>_high<mode>): Ditto.
15992         (aarch64_simd_fml<f16mac1>l<f16quad>_low<mode>): Ditto.
15993         (aarch64_simd_fml<f16mac1>l<f16quad>_high<mode>): Ditto.
15994         (aarch64_fml<f16mac1>l_lane_lowv2sf): Ditto.
15995         (aarch64_fml<f16mac1>l_lane_highv2sf): Ditto.
15996         (aarch64_simd_fml<f16mac>l_lane_lowv2sf): Ditto.
15997         (aarch64_simd_fml<f16mac>l_lane_highv2sf): Ditto.
15998         (aarch64_fml<f16mac1>lq_laneq_lowv4sf): Ditto.
15999         (aarch64_fml<f16mac1>lq_laneq_highv4sf): Ditto.
16000         (aarch64_simd_fml<f16mac>lq_laneq_lowv4sf): Ditto.
16001         (aarch64_simd_fml<f16mac>lq_laneq_highv4sf): Ditto.
16002         (aarch64_fml<f16mac1>l_laneq_lowv2sf): Ditto.
16003         (aarch64_fml<f16mac1>l_laneq_highv2sf): Ditto.
16004         (aarch64_simd_fml<f16mac>l_laneq_lowv2sf): Ditto.
16005         (aarch64_simd_fml<f16mac>l_laneq_highv2sf): Ditto.
16006         (aarch64_fml<f16mac1>lq_lane_lowv4sf): Ditto.
16007         (aarch64_fml<f16mac1>lq_lane_highv4sf): Ditto.
16008         (aarch64_simd_fml<f16mac>lq_lane_lowv4sf): Ditto.
16009         (aarch64_simd_fml<f16mac>lq_lane_highv4sf): Ditto.
16010         * config/aarch64/arm_neon.h (vfmlal_low_u32): New intrinsic.
16011         (vfmlsl_low_u32): Ditto.
16012         (vfmlalq_low_u32): Ditto.
16013         (vfmlslq_low_u32): Ditto.
16014         (vfmlal_high_u32): Ditto.
16015         (vfmlsl_high_u32): Ditto.
16016         (vfmlalq_high_u32): Ditto.
16017         (vfmlslq_high_u32): Ditto.
16018         (vfmlal_lane_low_u32): Ditto.
16019         (vfmlsl_lane_low_u32): Ditto.
16020         (vfmlal_laneq_low_u32): Ditto.
16021         (vfmlsl_laneq_low_u32): Ditto.
16022         (vfmlalq_lane_low_u32): Ditto.
16023         (vfmlslq_lane_low_u32): Ditto.
16024         (vfmlalq_laneq_low_u32): Ditto.
16025         (vfmlslq_laneq_low_u32): Ditto.
16026         (vfmlal_lane_high_u32): Ditto.
16027         (vfmlsl_lane_high_u32): Ditto.
16028         (vfmlal_laneq_high_u32): Ditto.
16029         (vfmlsl_laneq_high_u32): Ditto.
16030         (vfmlalq_lane_high_u32): Ditto.
16031         (vfmlslq_lane_high_u32): Ditto.
16032         (vfmlalq_laneq_high_u32): Ditto.
16033         (vfmlslq_laneq_high_u32): Ditto.
16034         * config/aarch64/aarch64.h (AARCH64_FL_F16SML): New flag.
16035         (AARCH64_FL_FOR_ARCH8_4): New.
16036         (AARCH64_ISA_F16FML): New ISA flag.
16037         (TARGET_F16FML): New feature flag for fp16fml.
16038         (doc/invoke.texi): Document new fp16fml option.
16040 2018-01-10  Michael Collison  <michael.collison@arm.com>
16042         * config/aarch64/aarch64-builtins.c:
16043         (aarch64_types_ternopu_imm_qualifiers, TYPES_TERNOPUI): New.
16044         * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins):
16045         (__ARM_FEATURE_SHA3): Define if TARGET_SHA3 is true.
16046         * config/aarch64/aarch64.h (AARCH64_FL_SHA3): New flags.
16047         (AARCH64_ISA_SHA3): New ISA flag.
16048         (TARGET_SHA3): New feature flag for sha3.
16049         * config/aarch64/iterators.md (sha512_op): New int attribute.
16050         (CRYPTO_SHA512): New int iterator.
16051         (UNSPEC_SHA512H): New unspec.
16052         (UNSPEC_SHA512H2): Ditto.
16053         (UNSPEC_SHA512SU0): Ditto.
16054         (UNSPEC_SHA512SU1): Ditto.
16055         * config/aarch64/aarch64-simd-builtins.def
16056         (aarch64_crypto_sha512hqv2di): New builtin.
16057         (aarch64_crypto_sha512h2qv2di): Ditto.
16058         (aarch64_crypto_sha512su0qv2di): Ditto.
16059         (aarch64_crypto_sha512su1qv2di): Ditto.
16060         (aarch64_eor3qv8hi): Ditto.
16061         (aarch64_rax1qv2di): Ditto.
16062         (aarch64_xarqv2di): Ditto.
16063         (aarch64_bcaxqv8hi): Ditto.
16064         * config/aarch64/aarch64-simd.md:
16065         (aarch64_crypto_sha512h<sha512_op>qv2di): New pattern.
16066         (aarch64_crypto_sha512su0qv2di): Ditto.
16067         (aarch64_crypto_sha512su1qv2di): Ditto.
16068         (aarch64_eor3qv8hi): Ditto.
16069         (aarch64_rax1qv2di): Ditto.
16070         (aarch64_xarqv2di): Ditto.
16071         (aarch64_bcaxqv8hi): Ditto.
16072         * config/aarch64/arm_neon.h (vsha512hq_u64): New intrinsic.
16073         (vsha512h2q_u64): Ditto.
16074         (vsha512su0q_u64): Ditto.
16075         (vsha512su1q_u64): Ditto.
16076         (veor3q_u16): Ditto.
16077         (vrax1q_u64): Ditto.
16078         (vxarq_u64): Ditto.
16079         (vbcaxq_u16): Ditto.
16080         * config/arm/types.md (crypto_sha512): New type attribute.
16081         (crypto_sha3): Ditto.
16082         (doc/invoke.texi): Document new sha3 option.
16084 2018-01-10  Michael Collison  <michael.collison@arm.com>
16086         * config/aarch64/aarch64-builtins.c:
16087         (aarch64_types_quadopu_imm_qualifiers, TYPES_QUADOPUI): New.
16088         * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins):
16089         (__ARM_FEATURE_SM3): Define if TARGET_SM4 is true.
16090         (__ARM_FEATURE_SM4): Define if TARGET_SM4 is true.
16091         * config/aarch64/aarch64.h (AARCH64_FL_SM4): New flags.
16092         (AARCH64_ISA_SM4): New ISA flag.
16093         (TARGET_SM4): New feature flag for sm4.
16094         * config/aarch64/aarch64-simd-builtins.def
16095         (aarch64_sm3ss1qv4si): Ditto.
16096         (aarch64_sm3tt1aq4si): Ditto.
16097         (aarch64_sm3tt1bq4si): Ditto.
16098         (aarch64_sm3tt2aq4si): Ditto.
16099         (aarch64_sm3tt2bq4si): Ditto.
16100         (aarch64_sm3partw1qv4si): Ditto.
16101         (aarch64_sm3partw2qv4si): Ditto.
16102         (aarch64_sm4eqv4si): Ditto.
16103         (aarch64_sm4ekeyqv4si): Ditto.
16104         * config/aarch64/aarch64-simd.md:
16105         (aarch64_sm3ss1qv4si): Ditto.
16106         (aarch64_sm3tt<sm3tt_op>qv4si): Ditto.
16107         (aarch64_sm3partw<sm3part_op>qv4si): Ditto.
16108         (aarch64_sm4eqv4si): Ditto.
16109         (aarch64_sm4ekeyqv4si): Ditto.
16110         * config/aarch64/iterators.md (sm3tt_op): New int iterator.
16111         (sm3part_op): Ditto.
16112         (CRYPTO_SM3TT): Ditto.
16113         (CRYPTO_SM3PART): Ditto.
16114         (UNSPEC_SM3SS1): New unspec.
16115         (UNSPEC_SM3TT1A): Ditto.
16116         (UNSPEC_SM3TT1B): Ditto.
16117         (UNSPEC_SM3TT2A): Ditto.
16118         (UNSPEC_SM3TT2B): Ditto.
16119         (UNSPEC_SM3PARTW1): Ditto.
16120         (UNSPEC_SM3PARTW2): Ditto.
16121         (UNSPEC_SM4E): Ditto.
16122         (UNSPEC_SM4EKEY): Ditto.
16123         * config/aarch64/constraints.md (Ui2): New constraint.
16124         * config/aarch64/predicates.md (aarch64_imm2): New predicate.
16125         * config/arm/types.md (crypto_sm3): New type attribute.
16126         (crypto_sm4): Ditto.
16127         * config/aarch64/arm_neon.h (vsm3ss1q_u32): New intrinsic.
16128         (vsm3tt1aq_u32): Ditto.
16129         (vsm3tt1bq_u32): Ditto.
16130         (vsm3tt2aq_u32): Ditto.
16131         (vsm3tt2bq_u32): Ditto.
16132         (vsm3partw1q_u32): Ditto.
16133         (vsm3partw2q_u32): Ditto.
16134         (vsm4eq_u32): Ditto.
16135         (vsm4ekeyq_u32): Ditto.
16136         (doc/invoke.texi): Document new sm4 option.
16138 2018-01-10  Michael Collison  <michael.collison@arm.com>
16140         * config/aarch64/aarch64-arches.def (armv8.4-a): New architecture.
16141         * config/aarch64/aarch64.h (AARCH64_ISA_V8_4): New ISA flag.
16142         (AARCH64_FL_FOR_ARCH8_4): New.
16143         (AARCH64_FL_V8_4): New flag.
16144         (doc/invoke.texi): Document new armv8.4-a option.
16146 2018-01-10  Michael Collison  <michael.collison@arm.com>
16148         * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins):
16149         (__ARM_FEATURE_AES): Define if TARGET_AES is true.
16150         (__ARM_FEATURE_SHA2): Define if TARGET_SHA2 is true.
16151         * config/aarch64/aarch64-option-extension.def: Add
16152         AARCH64_OPT_EXTENSION of 'sha2'.
16153         (aes): Add AARCH64_OPT_EXTENSION of 'aes'.
16154         (crypto): Disable sha2 and aes if crypto disabled.
16155         (crypto): Enable aes and sha2 if enabled.
16156         (simd): Disable sha2 and aes if simd disabled.
16157         * config/aarch64/aarch64.h (AARCH64_FL_AES, AARCH64_FL_SHA2):
16158         New flags.
16159         (AARCH64_ISA_AES, AARCH64_ISA_SHA2): New ISA flags.
16160         (TARGET_SHA2): New feature flag for sha2.
16161         (TARGET_AES): New feature flag for aes.
16162         * config/aarch64/aarch64-simd.md:
16163         (aarch64_crypto_aes<aes_op>v16qi): Make pattern
16164         conditional on TARGET_AES.
16165         (aarch64_crypto_aes<aesmc_op>v16qi): Ditto.
16166         (aarch64_crypto_sha1hsi): Make pattern conditional
16167         on TARGET_SHA2.
16168         (aarch64_crypto_sha1hv4si): Ditto.
16169         (aarch64_be_crypto_sha1hv4si): Ditto.
16170         (aarch64_crypto_sha1su1v4si): Ditto.
16171         (aarch64_crypto_sha1<sha1_op>v4si): Ditto.
16172         (aarch64_crypto_sha1su0v4si): Ditto.
16173         (aarch64_crypto_sha256h<sha256_op>v4si): Ditto.
16174         (aarch64_crypto_sha256su0v4si): Ditto.
16175         (aarch64_crypto_sha256su1v4si): Ditto.
16176         (doc/invoke.texi): Document new aes and sha2 options.
16178 2018-01-10  Martin Sebor  <msebor@redhat.com>
16180         PR tree-optimization/83781
16181         * gimple-fold.c (get_range_strlen): Avoid treating arrays of pointers
16182         as string arrays.
16184 2018-01-11  Martin Sebor  <msebor@gmail.com>
16185             Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
16187         PR tree-optimization/83501
16188         PR tree-optimization/81703
16190         * tree-ssa-strlen.c (get_string_cst): Rename...
16191         (get_string_len): ...to this.  Handle global constants.
16192         (handle_char_store): Adjust.
16194 2018-01-10  Kito Cheng  <kito.cheng@gmail.com>
16195             Jim Wilson  <jimw@sifive.com>
16197         * config/riscv/riscv-protos.h (riscv_output_return): New.
16198         * config/riscv/riscv.c (struct machine_function): New naked_p field.
16199         (riscv_attribute_table, riscv_output_return),
16200         (riscv_handle_fndecl_attribute, riscv_naked_function_p),
16201         (riscv_allocate_stack_slots_for_args, riscv_warn_func_return): New.
16202         (riscv_compute_frame_info): Only compute frame->mask if not a naked
16203         function.
16204         (riscv_expand_prologue): Add early return for naked function.
16205         (riscv_expand_epilogue): Likewise.
16206         (riscv_function_ok_for_sibcall): Return false for naked function.
16207         (riscv_set_current_function): New.
16208         (TARGET_SET_CURRENT_FUNCTION, TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS),
16209         (TARGET_ATTRIBUTE_TABLE, TARGET_WARN_FUNC_RETURN): New.
16210         * config/riscv/riscv.md (simple_return): Call riscv_output_return.
16211         * doc/extend.texi (RISC-V Function Attributes): New.
16213 2018-01-10  Michael Meissner  <meissner@linux.vnet.ibm.com>
16215         * config/rs6000/rs6000.c (is_complex_IBM_long_double): Explicitly
16216         check for 128-bit long double before checking TCmode.
16217         * config/rs6000/rs6000.h (FLOAT128_IEEE_P): Explicitly check for
16218         128-bit long doubles before checking TFmode or TCmode.
16219         (FLOAT128_IBM_P): Likewise.
16221 2018-01-10  Martin Sebor  <msebor@redhat.com>
16223         PR tree-optimization/83671
16224         * builtins.c (c_strlen): Unconditionally return zero for the empty
16225         string.
16226         Use -Warray-bounds for warnings.
16227         * gimple-fold.c (get_range_strlen): Handle non-constant lengths
16228         for non-constant array indices with COMPONENT_REF, arrays of
16229         arrays, and pointers to arrays.
16230         (gimple_fold_builtin_strlen): Determine and set length range for
16231         non-constant character arrays.
16233 2018-01-10  Aldy Hernandez  <aldyh@redhat.com>
16235         PR middle-end/81897
16236         * tree-ssa-uninit.c (convert_control_dep_chain_into_preds): Skip
16237         empty blocks.
16239 2018-01-10  Eric Botcazou  <ebotcazou@adacore.com>
16241         * dwarf2out.c (dwarf2out_var_location): Do not pass NULL to fprintf.
16243 2018-01-10  Peter Bergner  <bergner@vnet.ibm.com>
16245         PR target/83399
16246         * config/rs6000/rs6000.c (print_operand) <'y'>: Use
16247         VECTOR_MEM_ALTIVEC_OR_VSX_P.
16248         * config/rs6000/vsx.md (*vsx_le_perm_load_<mode> for VSX_D): Use
16249         indexed_or_indirect_operand predicate.
16250         (*vsx_le_perm_load_<mode> for VSX_W): Likewise.
16251         (*vsx_le_perm_load_v8hi): Likewise.
16252         (*vsx_le_perm_load_v16qi): Likewise.
16253         (*vsx_le_perm_store_<mode> for VSX_D): Likewise.
16254         (*vsx_le_perm_store_<mode> for VSX_W): Likewise.
16255         (*vsx_le_perm_store_v8hi): Likewise.
16256         (*vsx_le_perm_store_v16qi): Likewise.
16257         (eight unnamed splitters): Likewise.
16259 2018-01-10  Peter Bergner  <bergner@vnet.ibm.com>
16261         * config/rs6000/x86intrin.h: Change #warning to #error. Update message.
16262         * config/rs6000/emmintrin.h: Likewise.
16263         * config/rs6000/mmintrin.h: Likewise.
16264         * config/rs6000/xmmintrin.h: Likewise.
16266 2018-01-10  David Malcolm  <dmalcolm@redhat.com>
16268         PR c++/43486
16269         * tree-core.h: Document EXPR_LOCATION_WRAPPER_P's usage of
16270         "public_flag".
16271         * tree.c (tree_nop_conversion): Return true for location wrapper
16272         nodes.
16273         (maybe_wrap_with_location): New function.
16274         (selftest::check_strip_nops): New function.
16275         (selftest::test_location_wrappers): New function.
16276         (selftest::tree_c_tests): Call it.
16277         * tree.h (STRIP_ANY_LOCATION_WRAPPER): New macro.
16278         (maybe_wrap_with_location): New decl.
16279         (EXPR_LOCATION_WRAPPER_P): New macro.
16280         (location_wrapper_p): New inline function.
16281         (tree_strip_any_location_wrapper): New inline function.
16283 2018-01-10  H.J. Lu  <hongjiu.lu@intel.com>
16285         PR target/83735
16286         * config/i386/i386.c (ix86_compute_frame_layout): Always adjust
16287         stack_realign_offset for the largest alignment of stack slot
16288         actually used.
16289         (ix86_find_max_used_stack_alignment): New function.
16290         (ix86_finalize_stack_frame_flags): Use it.  Set
16291         max_used_stack_alignment if we don't realign stack.
16292         * config/i386/i386.h (machine_function): Add
16293         max_used_stack_alignment.
16295 2018-01-10  Christophe Lyon  <christophe.lyon@linaro.org>
16297         * config/arm/arm.opt (-mbranch-cost): New option.
16298         * config/arm/arm.h (BRANCH_COST): Take arm_branch_cost into
16299         account.
16301 2018-01-10  Segher Boessenkool  <segher@kernel.crashing.org>
16303         PR target/83629
16304         * config/rs6000/rs6000.md (load_toc_v4_PIC_2, load_toc_v4_PIC_3b,
16305         load_toc_v4_PIC_3c): Wrap const term in CONST RTL.
16307 2018-01-10  Richard Biener  <rguenther@suse.de>
16309         PR debug/83765
16310         * dwarf2out.c (gen_subprogram_die): Hoist old_die && declaration
16311         early out so it also covers the case where we have a non-NULL
16312         origin.
16314 2018-01-10  Richard Sandiford  <richard.sandiford@linaro.org>
16316         PR tree-optimization/83753
16317         * tree-vect-stmts.c (get_group_load_store_type): Use VMAT_CONTIGUOUS
16318         for non-strided grouped accesses if the number of elements is 1.
16320 2018-01-10  Jan Hubicka  <hubicka@ucw.cz>
16322         PR target/81616
16323         * i386.c (ix86_vectorize_builtin_gather): Check TARGET_USE_GATHER.
16324         * i386.h (TARGET_USE_GATHER): Define.
16325         * x86-tune.def (X86_TUNE_USE_GATHER): New.
16327 2018-01-10  Martin Liska  <mliska@suse.cz>
16329         PR bootstrap/82831
16330         * basic-block.h (CLEANUP_NO_PARTITIONING): New define.
16331         * bb-reorder.c (pass_reorder_blocks::execute): Do not clean up
16332         partitioning.
16333         * cfgcleanup.c (try_optimize_cfg): Fix up partitioning if
16334         CLEANUP_NO_PARTITIONING is not set.
16336 2018-01-10  Richard Sandiford  <richard.sandiford@linaro.org>
16338         * doc/rtl.texi: Remove documentation of (const ...) wrappers
16339         for vectors, as a partial revert of r254296.
16340         * rtl.h (const_vec_p): Delete.
16341         (const_vec_duplicate_p): Don't test for vector CONSTs.
16342         (unwrap_const_vec_duplicate, const_vec_series_p): Likewise.
16343         * expmed.c (make_tree): Likewise.
16345         Revert:
16346         * common.md (E, F): Use CONSTANT_P instead of checking for
16347         CONST_VECTOR.
16348         * emit-rtl.c (gen_lowpart_common): Use const_vec_p instead of
16349         checking for CONST_VECTOR.
16351 2018-01-09  Jan Hubicka  <hubicka@ucw.cz>
16353         PR middle-end/83575
16354         * predict.c (force_edge_cold): Handle in more sane way edges
16355         with no prediction.
16357 2018-01-09  Carl Love  <cel@us.ibm.com>
16359         * config/rs6002/altivec.md (p8_vmrgow): Add support for V2DI, V2DF,
16360         V4SI, V4SF types.
16361         (p8_vmrgew): Add support for V2DI, V2DF, V4SF types.
16362         * config/rs6000/rs6000-builtin.def: Add definitions for FLOAT2_V2DF,
16363         VMRGEW_V2DI, VMRGEW_V2DF, VMRGEW_V4SF, VMRGOW_V4SI, VMRGOW_V4SF,
16364         VMRGOW_V2DI, VMRGOW_V2DF.  Remove definition for VMRGOW.
16365         * config/rs6000/rs6000-c.c (VSX_BUILTIN_VEC_FLOAT2,
16366         P8V_BUILTIN_VEC_VMRGEW, P8V_BUILTIN_VEC_VMRGOW):  Add definitions.
16367         * config/rs6000/rs6000-protos.h: Add extern defition for
16368         rs6000_generate_float2_double_code.
16369         * config/rs6000/rs6000.c (rs6000_generate_float2_double_code): Add
16370         function.
16371         * config/rs6000/vsx.md (vsx_xvcdpsp): Add define_insn.
16372         (float2_v2df): Add define_expand.
16374 2018-01-09  Uros Bizjak  <ubizjak@gmail.com>
16376         PR target/83628
16377         * combine.c (force_int_to_mode) <case ASHIFT>: Use mode instead of
16378         op_mode in the force_to_mode call.
16380 2018-01-09  Richard Sandiford  <richard.sandiford@linaro.org>
16382         * config/aarch64/aarch64.c (aarch64_evpc_trn): Use d.perm.series_p
16383         instead of checking each element individually.
16384         (aarch64_evpc_uzp): Likewise.
16385         (aarch64_evpc_zip): Likewise.
16386         (aarch64_evpc_ext): Likewise.
16387         (aarch64_evpc_rev): Likewise.
16388         (aarch64_evpc_dup): Test the encoding for a single duplicated element,
16389         instead of checking each element individually.  Return true without
16390         generating rtl if
16391         (aarch64_vectorize_vec_perm_const): Use all_from_input_p to test
16392         whether all selected elements come from the same input, instead of
16393         checking each element individually.  Remove calls to gen_rtx_REG,
16394         start_sequence and end_sequence and instead assert that no rtl is
16395         generated.
16397 2018-01-09  Richard Sandiford  <richard.sandiford@linaro.org>
16399         * config/aarch64/aarch64.c (aarch64_legitimate_constant_p): Fix
16400         order of HIGH and CONST checks.
16402 2018-01-09  Richard Sandiford  <richard.sandiford@linaro.org>
16404         * tree-vect-stmts.c (permute_vec_elements): Create a fresh variable
16405         if the destination isn't an SSA_NAME.
16407 2018-01-09  Richard Biener  <rguenther@suse.de>
16409         PR tree-optimization/83668
16410         * graphite.c (canonicalize_loop_closed_ssa): Add edge argument,
16411         move prologue...
16412         (canonicalize_loop_form): ... here, renamed from ...
16413         (canonicalize_loop_closed_ssa_form): ... this and amended to
16414         swap successor edges for loop exit blocks to make us use
16415         the RPO order we need for initial schedule generation.
16417 2018-01-09  Joseph Myers  <joseph@codesourcery.com>
16419         PR tree-optimization/64811
16420         * match.pd: When optimizing comparisons with Inf, avoid
16421         introducing or losing exceptions from comparisons with NaN.
16423 2018-01-09  Martin Liska  <mliska@suse.cz>
16425         PR sanitizer/82517
16426         * asan.c (shadow_mem_size): Add gcc_assert.
16428 2018-01-09  Georg-Johann Lay  <avr@gjlay.de>
16430         Don't save registers in main().
16432         PR target/83738
16433         * doc/invoke.texi (AVR Options) [-mmain-is-OS_task]: Document it.
16434         * config/avr/avr.opt (-mmain-is-OS_task): New target option.
16435         * config/avr/avr.c (avr_set_current_function): Don't error if
16436         naked, OS_task or OS_main are specified at the same time.
16437         (avr_function_ok_for_sibcall): Don't disable sibcalls for OS_task,
16438         OS_main.
16439         (avr_insert_attributes) [-mmain-is-OS_task] <main>: Add OS_task
16440         attribute.
16441         * common/config/avr/avr-common.c (avr_option_optimization_table):
16442         Switch on -mmain-is-OS_task for optimizing compilations.
16444 2018-01-09  Richard Biener  <rguenther@suse.de>
16446         PR tree-optimization/83572
16447         * graphite.c: Include cfganal.h.
16448         (graphite_transform_loops): Connect infinite loops to exit
16449         and remove fake edges at the end.
16451 2018-01-09  Jan Hubicka  <hubicka@ucw.cz>
16453         * ipa-inline.c (edge_badness): Revert accidental checkin.
16455 2018-01-09  Jan Hubicka  <hubicka@ucw.cz>
16457         PR ipa/80763
16458         * ipa-comdats.c (set_comdat_group): Only set comdat group of real
16459         symbols; not inline clones.
16461 2018-01-09  Jakub Jelinek  <jakub@redhat.com>
16463         PR target/83507
16464         * modulo-sched.c (schedule_reg_moves): Punt if we'd need to move
16465         hard registers.  Formatting fixes.
16467         PR preprocessor/83722
16468         * gcc.c (try_generate_repro): Pass
16469         &temp_stderr_files[RETRY_ICE_ATTEMPTS - 1] rather than
16470         &temp_stdout_files[RETRY_ICE_ATTEMPTS - 1] as last argument to
16471         do_report_bug.
16473 2018-01-08  Monk Chiang  <sh.chiang04@gmail.com>
16474             Kito Cheng  <kito.cheng@gmail.com>
16476         * config/riscv/riscv.c (machine_function::is_leaf): Remove field.
16477         (riscv_leaf_function_p): Delete.
16478         (riscv_function_ok_for_sibcall): Return false when TARGET_SAVE_RESTORE.
16480 2018-01-08  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
16482         * config/rs6000/rs6000-string.c (do_load_for_compare_from_addr): New
16483         function.
16484         (do_ifelse): New function.
16485         (do_isel): New function.
16486         (do_sub3): New function.
16487         (do_add3): New function.
16488         (do_load_mask_compare): New function.
16489         (do_overlap_load_compare): New function.
16490         (expand_compare_loop): New function.
16491         (expand_block_compare): Call expand_compare_loop() when appropriate.
16492         * config/rs6000/rs6000.opt (-mblock-compare-inline-limit): Change
16493         option description.
16494         (-mblock-compare-inline-loop-limit): New option.
16496 2018-01-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
16498         PR target/83677
16499         * config/rs6000/altivec.md (*altivec_vpermr_<mode>_internal):
16500         Reverse order of second and third operands in first alternative.
16501         * config/rs6000/rs6000.c (rs6000_expand_vector_set): Reverse order
16502         of first and second elements in UNSPEC_VPERMR vector.
16503         (altivec_expand_vec_perm_le): Likewise.
16505 2018-01-08  Jeff Law  <law@redhat.com>
16507         PR rtl-optimizatin/81308
16508         * tree-switch-conversion.c (cfg_altered): New file scoped static.
16509         (process_switch): If group_case_labels makes a change, then set
16510         cfg_altered.
16511         (pass_convert_switch::execute): If a switch is converted, then
16512         set cfg_altered.  Return TODO_cfg_cleanup if cfg_altered is true.
16514         PR rtl-optimization/81308
16515         * recog.c (split_all_insns): Conditionally cleanup the CFG after
16516         splitting insns.
16518 2018-01-08  Vidya Praveen  <vidyapraveen@arm.com>
16520         PR target/83663 - Revert r255946
16521         * config/aarch64/aarch64.c (aarch64_expand_vector_init): Modify code
16522         generation for cases where splatting a value is not useful.
16523         * simplify-rtx.c (simplify_ternary_operation): Simplify vec_merge
16524         across a vec_duplicate and a paradoxical subreg forming a vector
16525         mode to a vec_concat.
16527 2018-01-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
16529         * config/arm/t-aprofile (MULTILIB_MATCHES): Add mapping rules for
16530         -march=armv8.3-a variants.
16531         * config/arm/t-multilib: Likewise.
16532         * config/arm/t-arm-elf: Likewise.  Handle dotprod extension.
16534 2018-01-08  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
16536         * config/rs6000/rs6000.md (cceq_ior_compare): Remove * so I can use it
16537         to generate rtl.
16538         (cceq_ior_compare_complement): Give it a name so I can use it, and
16539         change boolean_or_operator predicate to boolean_operator so it can
16540         be used to generate a crand.
16541         (eqne): New code iterator.
16542         (bd/bd_neg): New code_attrs.
16543         (<bd>_<mode>): New name for ctr<mode>_internal[12] now combined into
16544         a single define_insn.
16545         (<bd>tf_<mode>): A new insn pattern for the conditional form branch
16546         decrement (bdnzt/bdnzf/bdzt/bdzf).
16547         * config/rs6000/rs6000.c (rs6000_legitimate_combined_insn): Updated
16548         with the new names of the branch decrement patterns, and added the
16549         names of the branch decrement conditional patterns.
16551 2018-01-08  Richard Biener  <rguenther@suse.de>
16553         PR tree-optimization/83563
16554         * graphite.c (canonicalize_loop_closed_ssa_form): Reset the SCEV
16555         cache.
16557 2018-01-08  Richard Biener  <rguenther@suse.de>
16559         PR middle-end/83713
16560         * convert.c (do_narrow): Properly guard TYPE_OVERFLOW_WRAPS checks.
16562 2018-01-08  Richard Biener  <rguenther@suse.de>
16564         PR tree-optimization/83685
16565         * tree-ssa-pre.c (create_expression_by_pieces): Do not insert
16566         references to abnormals.
16568 2018-01-08  Richard Biener  <rguenther@suse.de>
16570         PR lto/83719
16571         * dwarf2out.c (output_indirect_strings): Handle empty
16572         skeleton_debug_str_hash.
16573         (dwarf2out_early_finish): Index strings for -gsplit-dwarf.
16575 2018-01-08  Claudiu Zissulescu  <claziss@synopsys.com>
16577         * config/arc/arc.c (TARGET_TRAMPOLINE_ADJUST_ADDRESS): Delete.
16578         (emit_store_direct): Likewise.
16579         (arc_trampoline_adjust_address): Likewise.
16580         (arc_asm_trampoline_template): New function.
16581         (arc_initialize_trampoline): Use asm_trampoline_template.
16582         (TARGET_ASM_TRAMPOLINE_TEMPLATE): Define.
16583         * config/arc/arc.h (TRAMPOLINE_SIZE): Adjust to 16.
16584         * config/arc/arc.md (flush_icache): Delete pattern.
16586 2018-01-08  Claudiu Zissulescu  <claziss@synopsys.com>
16588         * config/arc/arc-c.def (__ARC_UNALIGNED__): New define.
16589         * config/arc/arc.h (STRICT_ALIGNMENT): Control this macro using
16590         munaligned-access.
16592 2018-01-08  Sebastian Huber  <sebastian.huber@embedded-brains.de>
16594         PR target/83681
16595         * config/epiphany/epiphany.h (make_pass_mode_switch_use): Guard
16596         by not USED_FOR_TARGET.
16597         (make_pass_resolve_sw_modes): Likewise.
16599 2018-01-08  Sebastian Huber  <sebastian.huber@embedded-brains.de>
16601         * config/nios2/nios2.h (nios2_section_threshold): Guard by not
16602         USED_FOR_TARGET.
16604 2018-01-08  Richard Biener  <rguenther@suse.de>
16606         PR middle-end/83580
16607         * tree-data-ref.c (split_constant_offset): Remove STRIP_NOPS.
16609 2018-01-08  Richard Biener  <rguenther@suse.de>
16611         PR middle-end/83517
16612         * match.pd ((t * 2) / 2) -> t): Add missing :c.
16614 2018-01-06  Aldy Hernandez  <aldyh@redhat.com>
16616         PR middle-end/81897
16617         * tree-ssa-uninit.c (compute_control_dep_chain): Do not bail on
16618         basic blocks with a small number of successors.
16619         (convert_control_dep_chain_into_preds): Improve handling of
16620         forwarder blocks.
16621         (dump_predicates): Split apart into...
16622         (dump_pred_chain): ...here...
16623         (dump_pred_info): ...and here.
16624         (can_one_predicate_be_invalidated_p): Add debugging printfs.
16625         (can_chain_union_be_invalidated_p): Improve check for invalidation
16626         of paths.
16627         (uninit_uses_cannot_happen): Avoid unnecessary if
16628         convert_control_dep_chain_into_preds yielded nothing.
16630 2018-01-06  Martin Sebor  <msebor@redhat.com>
16632         PR tree-optimization/83640
16633         * gimple-ssa-warn-restrict.c (builtin_access::builtin_access): Avoid
16634         subtracting negative offset from size.
16635         (builtin_access::overlap): Adjust offset bounds of the access to fall
16636         within the size of the object if possible.
16638 2018-01-06  Richard Sandiford  <richard.sandiford@linaro.org>
16640         PR rtl-optimization/83699
16641         * expmed.c (extract_bit_field_1): Restrict the vector usage of
16642         extract_bit_field_as_subreg to cases in which the extracted
16643         value is also a vector.
16645         * lra-constraints.c (process_alt_operands): Test for the equivalence
16646         substitutions when detecting a possible reload cycle.
16648 2018-01-06  Jakub Jelinek  <jakub@redhat.com>
16650         PR debug/83480
16651         * toplev.c (process_options): Don't enable debug_nonbind_markers_p
16652         by default if flag_selective_schedling{,2}.  Formatting fixes.
16654         PR rtl-optimization/83682
16655         * rtl.h (const_vec_duplicate_p): Only return true for VEC_DUPLICATE
16656         if it has non-VECTOR_MODE element mode.
16657         (vec_duplicate_p): Likewise.
16659         PR middle-end/83694
16660         * cfgexpand.c (expand_debug_expr): Punt if mode1 is VOIDmode
16661         and bitsize might be greater than MAX_BITSIZE_MODE_ANY_INT.
16663 2018-01-05  Jakub Jelinek  <jakub@redhat.com>
16665         PR target/83604
16666         * config/i386/i386-builtin.def
16667         (__builtin_ia32_vgf2p8affineinvqb_v64qi,
16668         __builtin_ia32_vgf2p8affineqb_v64qi, __builtin_ia32_vgf2p8mulb_v64qi):
16669         Require also OPTION_MASK_ISA_AVX512F in addition to
16670         OPTION_MASK_ISA_GFNI.
16671         (__builtin_ia32_vgf2p8affineinvqb_v16qi_mask,
16672         __builtin_ia32_vgf2p8affineqb_v16qi_mask): Require
16673         OPTION_MASK_ISA_AVX512VL instead of OPTION_MASK_ISA_SSE in addition
16674         to OPTION_MASK_ISA_GFNI.
16675         (__builtin_ia32_vgf2p8mulb_v32qi_mask): Require
16676         OPTION_MASK_ISA_AVX512VL in addition to OPTION_MASK_ISA_GFNI and
16677         OPTION_MASK_ISA_AVX512BW.
16678         (__builtin_ia32_vgf2p8mulb_v16qi_mask): Require
16679         OPTION_MASK_ISA_AVX512VL instead of OPTION_MASK_ISA_AVX512BW in
16680         addition to OPTION_MASK_ISA_GFNI.
16681         (__builtin_ia32_vgf2p8affineinvqb_v16qi,
16682         __builtin_ia32_vgf2p8affineqb_v16qi, __builtin_ia32_vgf2p8mulb_v16qi):
16683         Require OPTION_MASK_ISA_SSE2 instead of OPTION_MASK_ISA_SSE in addition
16684         to OPTION_MASK_ISA_GFNI.
16685         * config/i386/i386.c (def_builtin): Change to builtin isa/isa2 being
16686         a requirement for all ISAs rather than any of them with a few
16687         exceptions.
16688         (ix86_add_new_builtins): Clear OPTION_MASK_ISA_64BIT from isa before
16689         processing.
16690         (ix86_expand_builtin): Require all ISAs from builtin's isa and isa2
16691         bitmasks to be enabled with 3 exceptions, instead of requiring any
16692         enabled ISA with lots of exceptions.
16693         * config/i386/sse.md (vgf2p8affineinvqb_<mode><mask_name>,
16694         vgf2p8affineqb_<mode><mask_name>, vgf2p8mulb_<mode><mask_name>):
16695         Change avx512bw in isa attribute to avx512f.
16696         * config/i386/sgxintrin.h: Add license boilerplate.
16697         * config/i386/vaesintrin.h: Likewise.  Fix macro spelling __AVX512F
16698         to __AVX512F__ and __AVX512VL to __AVX512VL__.
16699         (_mm256_aesdec_epi128, _mm256_aesdeclast_epi128, _mm256_aesenc_epi128,
16700         _mm256_aesenclast_epi128): Enable temporarily avx if __AVX__ is not
16701         defined.
16702         * config/i386/gfniintrin.h (_mm_gf2p8mul_epi8,
16703         _mm_gf2p8affineinv_epi64_epi8, _mm_gf2p8affine_epi64_epi8): Enable
16704         temporarily sse2 rather than sse if not enabled already.
16706         PR target/83604
16707         * config/i386/sse.md (VI248_VLBW): Rename to ...
16708         (VI248_AVX512VL): ... this.  Don't guard V32HI with TARGET_AVX512BW.
16709         (vpshrd_<mode><mask_name>, vpshld_<mode><mask_name>,
16710         vpshrdv_<mode>, vpshrdv_<mode>_mask, vpshrdv_<mode>_maskz,
16711         vpshrdv_<mode>_maskz_1, vpshldv_<mode>, vpshldv_<mode>_mask,
16712         vpshldv_<mode>_maskz, vpshldv_<mode>_maskz_1): Use VI248_AVX512VL
16713         mode iterator instead of VI248_VLBW.
16715 2018-01-05  Jan Hubicka  <hubicka@ucw.cz>
16717         * ipa-fnsummary.c (record_modified_bb_info): Add OP.
16718         (record_modified): Skip clobbers; add debug output.
16719         (param_change_prob): Use sreal frequencies.
16721 2018-01-05  Richard Sandiford  <richard.sandiford@linaro.org>
16723         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Don't
16724         punt for user-aligned variables.
16726 2018-01-05  Richard Sandiford  <richard.sandiford@linaro.org>
16728         * tree-chrec.c (chrec_contains_symbols): Return true for
16729         POLY_INT_CST.
16731 2018-01-05  Sudakshina Das  <sudi.das@arm.com>
16733         PR target/82439
16734         * simplify-rtx.c (simplify_relational_operation_1): Add simplifications
16735         of (x|y) == x for BICS pattern.
16737 2018-01-05  Jakub Jelinek  <jakub@redhat.com>
16739         PR tree-optimization/83605
16740         * gimple-ssa-strength-reduction.c: Include tree-eh.h.
16741         (find_candidates_dom_walker::before_dom_children): Ignore stmts that
16742         can throw.
16744 2018-01-05  Sebastian Huber  <sebastian.huber@embedded-brains.de>
16746         * config.gcc (epiphany-*-elf*): Add (epiphany-*-rtems*) configuration.
16747         * config/epiphany/rtems.h: New file.
16749 2018-01-04  Jakub Jelinek  <jakub@redhat.com>
16750             Uros Bizjak  <ubizjak@gmail.com>
16752         PR target/83554
16753         * config/i386/i386.md (*<rotate_insn>hi3_1 splitter): Use
16754         QIreg_operand instead of register_operand predicate.
16755         * config/i386/i386.c (ix86_rop_should_change_byte_p,
16756         set_rop_modrm_reg_bits, ix86_mitigate_rop): Use -mmitigate-rop in
16757         comments instead of -fmitigate[-_]rop.
16759 2018-01-04  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16761         PR bootstrap/81926
16762         * cgraphunit.c (symbol_table::compile): Switch to text_section
16763         before calling assembly_start debug hook.
16764         * run-rtl-passes.c (run_rtl_passes): Likewise.
16765         Include output.h.
16767 2018-01-04  Richard Sandiford  <richard.sandiford@linaro.org>
16769         * tree-vrp.c (extract_range_from_binary_expr_1): Check
16770         range_int_cst_p rather than !symbolic_range_p before calling
16771         extract_range_from_multiplicative_op_1.
16773 2018-01-04  Jeff Law  <law@redhat.com>
16775         * tree-ssa-math-opts.c (execute_cse_reciprocals_1): Remove
16776         redundant test in assertion.
16778 2018-01-04  Richard Sandiford  <richard.sandiford@linaro.org>
16780         * doc/rtl.texi: Document machine_mode wrapper classes.
16782 2018-01-04  Richard Sandiford  <richard.sandiford@linaro.org>
16784         * fold-const.c (fold_ternary_loc): Check tree_fits_uhwi_p before
16785         using tree_to_uhwi.
16787 2018-01-04  Richard Sandiford  <richard.sandiford@linaro.org>
16789         * tree-ssa-forwprop.c (is_combined_permutation_identity): Allow
16790         the VEC_PERM_EXPR fold to fail.
16792 2018-01-04  Jakub Jelinek  <jakub@redhat.com>
16794         PR debug/83585
16795         * bb-reorder.c (insert_section_boundary_note): Set has_bb_partition
16796         to switched_sections.
16798 2018-01-04  Richard Sandiford  <richard.sandiford@linaro.org>
16800         PR target/83680
16801         * config/arm/arm.c (arm_vectorize_vec_perm_const): Fix inverted
16802         test for d.testing.
16804 2018-01-04  Peter Bergner  <bergner@vnet.ibm.com>
16806         PR target/83387
16807         * config/rs6000/rs6000.c (rs6000_discover_homogeneous_aggregate): Do not
16808         allow arguments in FP registers if TARGET_HARD_FLOAT is false.
16810 2018-01-04  Jakub Jelinek  <jakub@redhat.com>
16812         PR debug/83666
16813         * cfgexpand.c (expand_debug_expr) <case BIT_FIELD_REF>: Punt if mode
16814         is BLKmode and bitpos not zero or mode change is needed.
16816 2018-01-04  Richard Sandiford  <richard.sandiford@linaro.org>
16818         PR target/83675
16819         * config/sparc/sparc.c (sparc_vectorize_vec_perm_const): Require
16820         TARGET_VIS2.
16822 2018-01-04  Uros Bizjak  <ubizjak@gmail.com>
16824         PR target/83628
16825         * config/alpha/alpha.md (*sadd<modesuffix>): Use ASHIFT
16826         instead of MULT rtx.  Update all corresponding splitters.
16827         (*saddl_se): Ditto.
16828         (*ssub<modesuffix>): Ditto.
16829         (*ssubl_se): Ditto.
16830         (*cmp_sadd_di): Update split patterns.
16831         (*cmp_sadd_si): Ditto.
16832         (*cmp_sadd_sidi): Ditto.
16833         (*cmp_ssub_di): Ditto.
16834         (*cmp_ssub_si): Ditto.
16835         (*cmp_ssub_sidi): Ditto.
16836         * config/alpha/predicates.md (const23_operand): New predicate.
16837         * config/alpha/alpha.c (alpha_rtx_costs) [PLUS, MINUS]:
16838         Look for ASHIFT, not MULT inner operand.
16839         (alpha_split_conditional_move): Update for *sadd<modesuffix> change.
16841 2018-01-04  Martin Liska  <mliska@suse.cz>
16843         PR gcov-profile/83669
16844         * gcov.c (output_intermediate_file): Add version to intermediate
16845         gcov file.
16846         * doc/gcov.texi: Document new field 'version' in intermediate
16847         file format. Fix location of '-k' option of gcov command.
16849 2018-01-04  Martin Liska  <mliska@suse.cz>
16851         PR ipa/82352
16852         * ipa-icf.c (sem_function::merge): Do not cross comdat boundary.
16854 2018-01-04  Jakub Jelinek  <jakub@redhat.com>
16856         * gimple-ssa-sprintf.c (parse_directive): Cast second dir.len to uhwi.
16858 2018-01-03  Martin Sebor  <msebor@redhat.com>
16860         PR tree-optimization/83655
16861         * gimple-ssa-warn-restrict.c (wrestrict_dom_walker::check_call): Avoid
16862         checking calls with invalid arguments.
16864 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16866         * tree-vect-stmts.c (vect_get_store_rhs): New function.
16867         (vectorizable_mask_load_store): Delete.
16868         (vectorizable_call): Return false for masked loads and stores.
16869         (vectorizable_store): Handle IFN_MASK_STORE.  Use vect_get_store_rhs
16870         instead of gimple_assign_rhs1.
16871         (vectorizable_load): Handle IFN_MASK_LOAD.
16872         (vect_transform_stmt): Don't set is_store for call_vec_info_type.
16874 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16876         * tree-vect-stmts.c (vect_build_gather_load_calls): New function,
16877         split out from..,
16878         (vectorizable_mask_load_store): ...here.
16879         (vectorizable_load): ...and here.
16881 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16883         * tree-vect-stmts.c (vect_build_all_ones_mask)
16884         (vect_build_zero_merge_argument): New functions, split out from...
16885         (vectorizable_load): ...here.
16887 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16889         * tree-vect-stmts.c (vect_check_store_rhs): New function,
16890         split out from...
16891         (vectorizable_mask_load_store): ...here.
16892         (vectorizable_store): ...and here.
16894 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16896         * tree-vect-stmts.c (vect_check_load_store_mask): New function,
16897         split out from...
16898         (vectorizable_mask_load_store): ...here.
16900 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16902         * tree-vectorizer.h (vec_load_store_type): Moved from tree-vec-stmts.c
16903         (vect_model_store_cost): Take a vec_load_store_type instead of a
16904         vect_def_type.
16905         * tree-vect-stmts.c (vec_load_store_type): Move to tree-vectorizer.h.
16906         (vect_model_store_cost): Take a vec_load_store_type instead of a
16907         vect_def_type.
16908         (vectorizable_mask_load_store): Update accordingly.
16909         (vectorizable_store): Likewise.
16910         * tree-vect-slp.c (vect_analyze_slp_cost_1): Update accordingly.
16912 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16914         * tree-vect-loop.c (vect_transform_loop): Stub out scalar
16915         IFN_MASK_LOAD calls here rather than...
16916         * tree-vect-stmts.c (vectorizable_mask_load_store): ...here.
16918 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16919             Alan Hayward  <alan.hayward@arm.com>
16920             David Sherwood  <david.sherwood@arm.com>
16922         * expmed.c (extract_bit_field_1): For vector extracts,
16923         fall back to extract_bit_field_as_subreg if vec_extract
16924         isn't available.
16926 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16927             Alan Hayward  <alan.hayward@arm.com>
16928             David Sherwood  <david.sherwood@arm.com>
16930         * lra-spills.c (pseudo_reg_slot_compare): Sort slots by whether
16931         they are variable or constant sized.
16932         (assign_stack_slot_num_and_sort_pseudos): Don't reuse variable-sized
16933         slots for constant-sized data.
16935 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16936             Alan Hayward  <alan.hayward@arm.com>
16937             David Sherwood  <david.sherwood@arm.com>
16939         * tree-vect-patterns.c (vect_recog_mask_conversion_pattern): When
16940         handling COND_EXPRs with boolean comparisons, try to find a better
16941         basis for the mask type than the boolean itself.
16943 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16945         * doc/rtl.texi (MAX_BITSIZE_MODE_ANY_MODE): Describe how the default
16946         is calculated and how it can be overridden.
16947         * genmodes.c (max_bitsize_mode_any_mode): New variable.
16948         (create_modes): Initialize it from MAX_BITSIZE_MODE_ANY_MODE,
16949         if defined.
16950         (emit_max_int): Use it to set the output MAX_BITSIZE_MODE_ANY_MODE,
16951         if nonzero.
16953 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16954             Alan Hayward  <alan.hayward@arm.com>
16955             David Sherwood  <david.sherwood@arm.com>
16957         * config/aarch64/aarch64-protos.h (aarch64_output_simd_mov_immediate):
16958         Remove the mode argument.
16959         (aarch64_simd_valid_immediate): Remove the mode and inverse
16960         arguments.
16961         * config/aarch64/iterators.md (bitsize): New iterator.
16962         * config/aarch64/aarch64-simd.md (*aarch64_simd_mov<mode>, and<mode>3)
16963         (ior<mode>3): Update calls to aarch64_output_simd_mov_immediate.
16964         * config/aarch64/constraints.md (Do, Db, Dn): Update calls to
16965         aarch64_simd_valid_immediate.
16966         * config/aarch64/predicates.md (aarch64_reg_or_orr_imm): Likewise.
16967         (aarch64_reg_or_bic_imm): Likewise.
16968         * config/aarch64/aarch64.c (simd_immediate_info): Replace mvn
16969         with an insn_type enum and msl with a modifier_type enum.
16970         Replace element_width with a scalar_mode.  Change the shift
16971         to unsigned int.  Add constructors for scalar_float_mode and
16972         scalar_int_mode elements.
16973         (aarch64_vect_float_const_representable_p): Delete.
16974         (aarch64_can_const_movi_rtx_p)
16975         (aarch64_simd_scalar_immediate_valid_for_move)
16976         (aarch64_simd_make_constant): Update call to
16977         aarch64_simd_valid_immediate.
16978         (aarch64_advsimd_valid_immediate_hs): New function.
16979         (aarch64_advsimd_valid_immediate): Likewise.
16980         (aarch64_simd_valid_immediate): Remove mode and inverse
16981         arguments.  Rewrite to use the above.  Use const_vec_duplicate_p
16982         to detect duplicated constants and use aarch64_float_const_zero_rtx_p
16983         and aarch64_float_const_representable_p on the result.
16984         (aarch64_output_simd_mov_immediate): Remove mode argument.
16985         Update call to aarch64_simd_valid_immediate and use of
16986         simd_immediate_info.
16987         (aarch64_output_scalar_simd_mov_immediate): Update call
16988         accordingly.
16990 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
16991             Alan Hayward  <alan.hayward@arm.com>
16992             David Sherwood  <david.sherwood@arm.com>
16994         * machmode.h (mode_precision): Prefix with CONST_MODE_PRECISION.
16995         (mode_nunits): Likewise CONST_MODE_NUNITS.
16996         * machmode.def (ADJUST_NUNITS): Document.
16997         * genmodes.c (mode_data::need_nunits_adj): New field.
16998         (blank_mode): Update accordingly.
16999         (adj_nunits): New variable.
17000         (print_maybe_const_decl): Replace CATEGORY with a NEEDS_ADJ
17001         parameter.
17002         (emit_mode_size_inline): Set need_bytesize_adj for all modes
17003         listed in adj_nunits.
17004         (emit_mode_nunits_inline): Set need_nunits_adj for all modes
17005         listed in adj_nunits.  Don't emit case statements for such modes.
17006         (emit_insn_modes_h): Emit definitions of CONST_MODE_NUNITS
17007         and CONST_MODE_PRECISION.  Make CONST_MODE_SIZE expand to
17008         nothing if adj_nunits is nonnull.
17009         (emit_mode_precision, emit_mode_nunits): Use print_maybe_const_decl.
17010         (emit_mode_unit_size, emit_mode_base_align, emit_mode_ibit)
17011         (emit_mode_fbit): Update use of print_maybe_const_decl.
17012         (emit_move_size): Likewise.  Treat the array as non-const
17013         if adj_nunits.
17014         (emit_mode_adjustments): Handle adj_nunits.
17016 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17018         * machmode.def (VECTOR_MODES_WITH_PREFIX): Document.
17019         * genmodes.c (VECTOR_MODES_WITH_PREFIX): New macro.
17020         (VECTOR_MODES): Use it.
17021         (make_vector_modes): Take the prefix as an argument.
17023 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17024             Alan Hayward  <alan.hayward@arm.com>
17025             David Sherwood  <david.sherwood@arm.com>
17027         * mode-classes.def (MODE_VECTOR_BOOL): New mode class.
17028         * machmode.h (INTEGRAL_MODE_P, VECTOR_MODE_P): Return true
17029         for MODE_VECTOR_BOOL.
17030         * machmode.def (VECTOR_BOOL_MODE): Document.
17031         * genmodes.c (VECTOR_BOOL_MODE): New macro.
17032         (make_vector_bool_mode): New function.
17033         (complete_mode, emit_mode_wider, emit_mode_adjustments): Handle
17034         MODE_VECTOR_BOOL.
17035         * lto-streamer-in.c (lto_input_mode_table): Likewise.
17036         * rtx-vector-builder.c (rtx_vector_builder::find_cached_value):
17037         Likewise.
17038         * stor-layout.c (int_mode_for_mode): Likewise.
17039         * tree.c (build_vector_type_for_mode): Likewise.
17040         * varasm.c (output_constant_pool_2): Likewise.
17041         * emit-rtl.c (init_emit_once): Make sure that CONST1_RTX (BImode) and
17042         CONSTM1_RTX (BImode) are the same thing.  Initialize const_tiny_rtx
17043         for MODE_VECTOR_BOOL.
17044         * expr.c (expand_expr_real_1): Use VECTOR_MODE_P instead of a list
17045         of mode class checks.
17046         * tree-vect-generic.c (expand_vector_operation): Use VECTOR_MODE_P
17047         instead of a list of mode class checks.
17048         (expand_vector_scalar_condition): Likewise.
17049         (type_for_widest_vector_mode): Handle BImode as an inner mode.
17051 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17052             Alan Hayward  <alan.hayward@arm.com>
17053             David Sherwood  <david.sherwood@arm.com>
17055         * machmode.h (mode_size): Change from unsigned short to
17056         poly_uint16_pod.
17057         (mode_to_bytes): Return a poly_uint16 rather than an unsigned short.
17058         (GET_MODE_SIZE): Return a constant if ONLY_FIXED_SIZE_MODES,
17059         or if measurement_type is not polynomial.
17060         (fixed_size_mode::includes_p): Check for constant-sized modes.
17061         * genmodes.c (emit_mode_size_inline): Make mode_size_inline
17062         return a poly_uint16 rather than an unsigned short.
17063         (emit_mode_size): Change the type of mode_size from unsigned short
17064         to poly_uint16_pod.  Use ZERO_COEFFS for the initializer.
17065         (emit_mode_adjustments): Cope with polynomial vector sizes.
17066         * lto-streamer-in.c (lto_input_mode_table): Use bp_unpack_poly_value
17067         for GET_MODE_SIZE.
17068         * lto-streamer-out.c (lto_write_mode_table): Use bp_pack_poly_value
17069         for GET_MODE_SIZE.
17070         * auto-inc-dec.c (try_merge): Treat GET_MODE_SIZE as polynomial.
17071         * builtins.c (expand_ifn_atomic_compare_exchange_into_call): Likewise.
17072         * caller-save.c (setup_save_areas): Likewise.
17073         (replace_reg_with_saved_mem): Likewise.
17074         * calls.c (emit_library_call_value_1): Likewise.
17075         * combine-stack-adj.c (combine_stack_adjustments_for_block): Likewise.
17076         * combine.c (simplify_set, make_extraction, simplify_shift_const_1)
17077         (gen_lowpart_for_combine): Likewise.
17078         * convert.c (convert_to_integer_1): Likewise.
17079         * cse.c (equiv_constant, cse_insn): Likewise.
17080         * cselib.c (autoinc_split, cselib_hash_rtx): Likewise.
17081         (cselib_subst_to_values): Likewise.
17082         * dce.c (word_dce_process_block): Likewise.
17083         * df-problems.c (df_word_lr_mark_ref): Likewise.
17084         * dwarf2cfi.c (init_one_dwarf_reg_size): Likewise.
17085         * dwarf2out.c (multiple_reg_loc_descriptor, mem_loc_descriptor)
17086         (concat_loc_descriptor, concatn_loc_descriptor, loc_descriptor)
17087         (rtl_for_decl_location): Likewise.
17088         * emit-rtl.c (gen_highpart, widen_memory_access): Likewise.
17089         * expmed.c (extract_bit_field_1, extract_integral_bit_field): Likewise.
17090         * expr.c (emit_group_load_1, clear_storage_hints): Likewise.
17091         (emit_move_complex, emit_move_multi_word, emit_push_insn): Likewise.
17092         (expand_expr_real_1): Likewise.
17093         * function.c (assign_parm_setup_block_p, assign_parm_setup_block)
17094         (pad_below): Likewise.
17095         * gimple-fold.c (optimize_atomic_compare_exchange_p): Likewise.
17096         * gimple-ssa-store-merging.c (rhs_valid_for_store_merging_p): Likewise.
17097         * ira.c (get_subreg_tracking_sizes): Likewise.
17098         * ira-build.c (ira_create_allocno_objects): Likewise.
17099         * ira-color.c (coalesced_pseudo_reg_slot_compare): Likewise.
17100         (ira_sort_regnos_for_alter_reg): Likewise.
17101         * ira-costs.c (record_operand_costs): Likewise.
17102         * lower-subreg.c (interesting_mode_p, simplify_gen_subreg_concatn)
17103         (resolve_simple_move): Likewise.
17104         * lra-constraints.c (get_reload_reg, operands_match_p): Likewise.
17105         (process_addr_reg, simplify_operand_subreg, curr_insn_transform)
17106         (lra_constraints): Likewise.
17107         (CONST_POOL_OK_P): Reject variable-sized modes.
17108         * lra-spills.c (slot, assign_mem_slot, pseudo_reg_slot_compare)
17109         (add_pseudo_to_slot, lra_spill): Likewise.
17110         * omp-low.c (omp_clause_aligned_alignment): Likewise.
17111         * optabs-query.c (get_best_extraction_insn): Likewise.
17112         * optabs-tree.c (expand_vec_cond_expr_p): Likewise.
17113         * optabs.c (expand_vec_perm_var, expand_vec_cond_expr): Likewise.
17114         (expand_mult_highpart, valid_multiword_target_p): Likewise.
17115         * recog.c (offsettable_address_addr_space_p): Likewise.
17116         * regcprop.c (maybe_mode_change): Likewise.
17117         * reginfo.c (choose_hard_reg_mode, record_subregs_of_mode): Likewise.
17118         * regrename.c (build_def_use): Likewise.
17119         * regstat.c (dump_reg_info): Likewise.
17120         * reload.c (complex_word_subreg_p, push_reload, find_dummy_reload)
17121         (find_reloads, find_reloads_subreg_address): Likewise.
17122         * reload1.c (eliminate_regs_1): Likewise.
17123         * rtlanal.c (for_each_inc_dec_find_inc_dec, rtx_cost): Likewise.
17124         * simplify-rtx.c (avoid_constant_pool_reference): Likewise.
17125         (simplify_binary_operation_1, simplify_subreg): Likewise.
17126         * targhooks.c (default_function_arg_padding): Likewise.
17127         (default_hard_regno_nregs, default_class_max_nregs): Likewise.
17128         * tree-cfg.c (verify_gimple_assign_binary): Likewise.
17129         (verify_gimple_assign_ternary): Likewise.
17130         * tree-inline.c (estimate_move_cost): Likewise.
17131         * tree-ssa-forwprop.c (simplify_vector_constructor): Likewise.
17132         * tree-ssa-loop-ivopts.c (add_autoinc_candidates): Likewise.
17133         (get_address_cost_ainc): Likewise.
17134         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Likewise.
17135         (vect_supportable_dr_alignment): Likewise.
17136         * tree-vect-loop.c (vect_determine_vectorization_factor): Likewise.
17137         (vectorizable_reduction): Likewise.
17138         * tree-vect-stmts.c (vectorizable_assignment, vectorizable_shift)
17139         (vectorizable_operation, vectorizable_load): Likewise.
17140         * tree.c (build_same_sized_truth_vector_type): Likewise.
17141         * valtrack.c (cleanup_auto_inc_dec): Likewise.
17142         * var-tracking.c (emit_note_insn_var_location): Likewise.
17143         * config/arc/arc.h (ASM_OUTPUT_CASE_END): Use as_a <scalar_int_mode>.
17144         (ADDR_VEC_ALIGN): Likewise.
17146 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17147             Alan Hayward  <alan.hayward@arm.com>
17148             David Sherwood  <david.sherwood@arm.com>
17150         * machmode.h (mode_to_bits): Return a poly_uint16 rather than an
17151         unsigned short.
17152         (GET_MODE_BITSIZE): Return a constant if ONLY_FIXED_SIZE_MODES,
17153         or if measurement_type is polynomial.
17154         * calls.c (shift_return_value): Treat GET_MODE_BITSIZE as polynomial.
17155         * combine.c (make_extraction): Likewise.
17156         * dse.c (find_shift_sequence): Likewise.
17157         * dwarf2out.c (mem_loc_descriptor): Likewise.
17158         * expmed.c (store_integral_bit_field, extract_bit_field_1): Likewise.
17159         (extract_bit_field, extract_low_bits): Likewise.
17160         * expr.c (convert_move, convert_modes, emit_move_insn_1): Likewise.
17161         (optimize_bitfield_assignment_op, expand_assignment): Likewise.
17162         (store_expr_with_bounds, store_field, expand_expr_real_1): Likewise.
17163         * fold-const.c (optimize_bit_field_compare, merge_ranges): Likewise.
17164         * gimple-fold.c (optimize_atomic_compare_exchange_p): Likewise.
17165         * reload.c (find_reloads): Likewise.
17166         * reload1.c (alter_reg): Likewise.
17167         * stor-layout.c (bitwise_mode_for_mode, compute_record_mode): Likewise.
17168         * targhooks.c (default_secondary_memory_needed_mode): Likewise.
17169         * tree-if-conv.c (predicate_mem_writes): Likewise.
17170         * tree-ssa-strlen.c (handle_builtin_memcmp): Likewise.
17171         * tree-vect-patterns.c (adjust_bool_pattern): Likewise.
17172         * tree-vect-stmts.c (vectorizable_simd_clone_call): Likewise.
17173         * valtrack.c (dead_debug_insert_temp): Likewise.
17174         * varasm.c (mergeable_constant_section): Likewise.
17175         * config/sh/sh.h (LOCAL_ALIGNMENT): Use as_a <fixed_size_mode>.
17177 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17178             Alan Hayward  <alan.hayward@arm.com>
17179             David Sherwood  <david.sherwood@arm.com>
17181         * expr.c (expand_assignment): Cope with polynomial mode sizes
17182         when assigning to a CONCAT.
17184 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17185             Alan Hayward  <alan.hayward@arm.com>
17186             David Sherwood  <david.sherwood@arm.com>
17188         * machmode.h (mode_precision): Change from unsigned short to
17189         poly_uint16_pod.
17190         (mode_to_precision): Return a poly_uint16 rather than an unsigned
17191         short.
17192         (GET_MODE_PRECISION): Return a constant if ONLY_FIXED_SIZE_MODES,
17193         or if measurement_type is not polynomial.
17194         (HWI_COMPUTABLE_MODE_P): Turn into a function.  Optimize the case
17195         in which the mode is already known to be a scalar_int_mode.
17196         * genmodes.c (emit_mode_precision): Change the type of mode_precision
17197         from unsigned short to poly_uint16_pod.  Use ZERO_COEFFS for the
17198         initializer.
17199         * lto-streamer-in.c (lto_input_mode_table): Use bp_unpack_poly_value
17200         for GET_MODE_PRECISION.
17201         * lto-streamer-out.c (lto_write_mode_table): Use bp_pack_poly_value
17202         for GET_MODE_PRECISION.
17203         * combine.c (update_rsp_from_reg_equal): Treat GET_MODE_PRECISION
17204         as polynomial.
17205         (try_combine, find_split_point, combine_simplify_rtx): Likewise.
17206         (expand_field_assignment, make_extraction): Likewise.
17207         (make_compound_operation_int, record_dead_and_set_regs_1): Likewise.
17208         (get_last_value): Likewise.
17209         * convert.c (convert_to_integer_1): Likewise.
17210         * cse.c (cse_insn): Likewise.
17211         * expr.c (expand_expr_real_1): Likewise.
17212         * lra-constraints.c (simplify_operand_subreg): Likewise.
17213         * optabs-query.c (can_atomic_load_p): Likewise.
17214         * optabs.c (expand_atomic_load): Likewise.
17215         (expand_atomic_store): Likewise.
17216         * ree.c (combine_reaching_defs): Likewise.
17217         * rtl.h (partial_subreg_p, paradoxical_subreg_p): Likewise.
17218         * rtlanal.c (nonzero_bits1, lsb_bitfield_op_p): Likewise.
17219         * tree.h (type_has_mode_precision_p): Likewise.
17220         * ubsan.c (instrument_si_overflow): Likewise.
17222 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17223             Alan Hayward  <alan.hayward@arm.com>
17224             David Sherwood  <david.sherwood@arm.com>
17226         * tree.h (TYPE_VECTOR_SUBPARTS): Turn into a function and handle
17227         polynomial numbers of units.
17228         (SET_TYPE_VECTOR_SUBPARTS): Likewise.
17229         (valid_vector_subparts_p): New function.
17230         (build_vector_type): Remove temporary shim and take the number
17231         of units as a poly_uint64 rather than an int.
17232         (build_opaque_vector_type): Take the number of units as a
17233         poly_uint64 rather than an int.
17234         * tree.c (build_vector_from_ctor): Handle polynomial
17235         TYPE_VECTOR_SUBPARTS.
17236         (type_hash_canon_hash, type_cache_hasher::equal): Likewise.
17237         (uniform_vector_p, vector_type_mode, build_vector): Likewise.
17238         (build_vector_from_val): If the number of units is variable,
17239         use build_vec_duplicate_cst for constant operands and
17240         VEC_DUPLICATE_EXPR otherwise.
17241         (make_vector_type): Remove temporary is_constant ().
17242         (build_vector_type, build_opaque_vector_type): Take the number of
17243         units as a poly_uint64 rather than an int.
17244         (check_vector_cst): Handle polynomial TYPE_VECTOR_SUBPARTS and
17245         VECTOR_CST_NELTS.
17246         * cfgexpand.c (expand_debug_expr): Likewise.
17247         * expr.c (count_type_elements, categorize_ctor_elements_1): Likewise.
17248         (store_constructor, expand_expr_real_1): Likewise.
17249         (const_scalar_mask_from_tree): Likewise.
17250         * fold-const-call.c (fold_const_reduction): Likewise.
17251         * fold-const.c (const_binop, const_unop, fold_convert_const): Likewise.
17252         (operand_equal_p, fold_vec_perm, fold_ternary_loc): Likewise.
17253         (native_encode_vector, vec_cst_ctor_to_array): Likewise.
17254         (fold_relational_const): Likewise.
17255         (native_interpret_vector): Likewise.  Change the size from an
17256         int to an unsigned int.
17257         * gimple-fold.c (gimple_fold_stmt_to_constant_1): Handle polynomial
17258         TYPE_VECTOR_SUBPARTS.
17259         (gimple_fold_indirect_ref, gimple_build_vector): Likewise.
17260         (gimple_build_vector_from_val): Use VEC_DUPLICATE_EXPR when
17261         duplicating a non-constant operand into a variable-length vector.
17262         * hsa-brig.c (hsa_op_immed::emit_to_buffer): Handle polynomial
17263         TYPE_VECTOR_SUBPARTS and VECTOR_CST_NELTS.
17264         * ipa-icf.c (sem_variable::equals): Likewise.
17265         * match.pd: Likewise.
17266         * omp-simd-clone.c (simd_clone_subparts): Likewise.
17267         * print-tree.c (print_node): Likewise.
17268         * stor-layout.c (layout_type): Likewise.
17269         * targhooks.c (default_builtin_vectorization_cost): Likewise.
17270         * tree-cfg.c (verify_gimple_comparison): Likewise.
17271         (verify_gimple_assign_binary): Likewise.
17272         (verify_gimple_assign_ternary): Likewise.
17273         (verify_gimple_assign_single): Likewise.
17274         * tree-pretty-print.c (dump_generic_node): Likewise.
17275         * tree-ssa-forwprop.c (simplify_vector_constructor): Likewise.
17276         (simplify_bitfield_ref, is_combined_permutation_identity): Likewise.
17277         * tree-vect-data-refs.c (vect_permute_store_chain): Likewise.
17278         (vect_grouped_load_supported, vect_permute_load_chain): Likewise.
17279         (vect_shift_permute_load_chain): Likewise.
17280         * tree-vect-generic.c (nunits_for_known_piecewise_op): Likewise.
17281         (expand_vector_condition, optimize_vector_constructor): Likewise.
17282         (lower_vec_perm, get_compute_type): Likewise.
17283         * tree-vect-loop.c (vect_determine_vectorization_factor): Likewise.
17284         (get_initial_defs_for_reduction, vect_transform_loop): Likewise.
17285         * tree-vect-patterns.c (vect_recog_bool_pattern): Likewise.
17286         (vect_recog_mask_conversion_pattern): Likewise.
17287         * tree-vect-slp.c (vect_supported_load_permutation_p): Likewise.
17288         (vect_get_constant_vectors, vect_transform_slp_perm_load): Likewise.
17289         * tree-vect-stmts.c (perm_mask_for_reverse): Likewise.
17290         (get_group_load_store_type, vectorizable_mask_load_store): Likewise.
17291         (vectorizable_bswap, simd_clone_subparts, vectorizable_assignment)
17292         (vectorizable_shift, vectorizable_operation, vectorizable_store)
17293         (vectorizable_load, vect_is_simple_cond, vectorizable_comparison)
17294         (supportable_widening_operation): Likewise.
17295         (supportable_narrowing_operation): Likewise.
17296         * tree-vector-builder.c (tree_vector_builder::binary_encoded_nelts):
17297         Likewise.
17298         * varasm.c (output_constant): Likewise.
17300 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17301             Alan Hayward  <alan.hayward@arm.com>
17302             David Sherwood  <david.sherwood@arm.com>
17304         * tree-vect-data-refs.c (vect_permute_store_chain): Reorganize
17305         so that both the length == 3 and length != 3 cases set up their
17306         own permute vectors.  Add comments explaining why we know the
17307         number of elements is constant.
17308         (vect_permute_load_chain): Likewise.
17310 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17311             Alan Hayward  <alan.hayward@arm.com>
17312             David Sherwood  <david.sherwood@arm.com>
17314         * machmode.h (mode_nunits): Change from unsigned char to
17315         poly_uint16_pod.
17316         (ONLY_FIXED_SIZE_MODES): New macro.
17317         (pod_mode::measurement_type, scalar_int_mode::measurement_type)
17318         (scalar_float_mode::measurement_type, scalar_mode::measurement_type)
17319         (complex_mode::measurement_type, fixed_size_mode::measurement_type):
17320         New typedefs.
17321         (mode_to_nunits): Return a poly_uint16 rather than an unsigned short.
17322         (GET_MODE_NUNITS): Return a constant if ONLY_FIXED_SIZE_MODES,
17323         or if measurement_type is not polynomial.
17324         * genmodes.c (ZERO_COEFFS): New macro.
17325         (emit_mode_nunits_inline): Make mode_nunits_inline return a
17326         poly_uint16.
17327         (emit_mode_nunits): Change the type of mode_nunits to poly_uint16_pod.
17328         Use ZERO_COEFFS when emitting initializers.
17329         * data-streamer.h (bp_pack_poly_value): New function.
17330         (bp_unpack_poly_value): Likewise.
17331         * lto-streamer-in.c (lto_input_mode_table): Use bp_unpack_poly_value
17332         for GET_MODE_NUNITS.
17333         * lto-streamer-out.c (lto_write_mode_table): Use bp_pack_poly_value
17334         for GET_MODE_NUNITS.
17335         * tree.c (make_vector_type): Remove temporary shim and make
17336         the real function take the number of units as a poly_uint64
17337         rather than an int.
17338         (build_vector_type_for_mode): Handle polynomial nunits.
17339         * dwarf2out.c (loc_descriptor, add_const_value_attribute): Likewise.
17340         * emit-rtl.c (const_vec_series_p_1): Likewise.
17341         (gen_rtx_CONST_VECTOR): Likewise.
17342         * fold-const.c (test_vec_duplicate_folding): Likewise.
17343         * genrecog.c (validate_pattern): Likewise.
17344         * optabs-query.c (can_vec_perm_var_p, can_mult_highpart_p): Likewise.
17345         * optabs-tree.c (expand_vec_cond_expr_p): Likewise.
17346         * optabs.c (expand_vector_broadcast, expand_binop_directly): Likewise.
17347         (shift_amt_for_vec_perm_mask, expand_vec_perm_var): Likewise.
17348         (expand_vec_cond_expr, expand_mult_highpart): Likewise.
17349         * rtlanal.c (subreg_get_info): Likewise.
17350         * tree-vect-data-refs.c (vect_grouped_store_supported): Likewise.
17351         (vect_grouped_load_supported): Likewise.
17352         * tree-vect-generic.c (type_for_widest_vector_mode): Likewise.
17353         * tree-vect-loop.c (have_whole_vector_shift): Likewise.
17354         * simplify-rtx.c (simplify_unary_operation_1): Likewise.
17355         (simplify_const_unary_operation, simplify_binary_operation_1)
17356         (simplify_const_binary_operation, simplify_ternary_operation)
17357         (test_vector_ops_duplicate, test_vector_ops): Likewise.
17358         (simplify_immed_subreg): Use GET_MODE_NUNITS on a fixed_size_mode
17359         instead of CONST_VECTOR_NUNITS.
17360         * varasm.c (output_constant_pool_2): Likewise.
17361         * rtx-vector-builder.c (rtx_vector_builder::build): Only include the
17362         explicit-encoded elements in the XVEC for variable-length vectors.
17364 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17366         * lra-constraints.c (curr_insn_transform): Use partial_subreg_p.
17368 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17369             Alan Hayward  <alan.hayward@arm.com>
17370             David Sherwood  <david.sherwood@arm.com>
17372         * coretypes.h (fixed_size_mode): Declare.
17373         (fixed_size_mode_pod): New typedef.
17374         * builtins.h (target_builtins::x_apply_args_mode)
17375         (target_builtins::x_apply_result_mode): Change type to
17376         fixed_size_mode_pod.
17377         * builtins.c (apply_args_size, apply_result_size, result_vector)
17378         (expand_builtin_apply_args_1, expand_builtin_apply)
17379         (expand_builtin_return): Update accordingly.
17381 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17383         * cse.c (hash_rtx_cb): Hash only the encoded elements.
17384         * cselib.c (cselib_hash_rtx): Likewise.
17385         * expmed.c (make_tree): Build VECTOR_CSTs directly from the
17386         CONST_VECTOR encoding.
17388 2018-01-03  Jakub Jelinek  <jakub@redhat.com>
17389             Jeff Law  <law@redhat.com>
17391         PR target/83641
17392         * config/i386/i386.c (ix86_adjust_stack_and_probe_stack_clash): For
17393         noreturn probe, use gen_pop instead of ix86_emit_restore_reg_using_pop,
17394         only set RTX_FRAME_RELATED_P on both the push and pop if cfa_reg is sp
17395         and add REG_CFA_ADJUST_CFA notes in that case to both insns.
17397         PR target/83641
17398         * config/i386/i386.c (ix86_adjust_stack_and_probe_stack_clash): Do not
17399         explicitly probe *sp in a noreturn function if there were any callee
17400         register saves or frame pointer is needed.
17402 2018-01-03  Jakub Jelinek  <jakub@redhat.com>
17404         PR debug/83621
17405         * cfgexpand.c (expand_debug_expr): Return NULL if mode is
17406         BLKmode for ternary, binary or unary expressions.
17408         PR debug/83645
17409         * var-tracking.c (delete_vta_debug_insn): New inline function.
17410         (delete_vta_debug_insns): Add USE_CFG argument, if true, walk just
17411         insns from get_insns () to NULL instead of each bb separately.
17412         Use delete_vta_debug_insn.  No longer static.
17413         (vt_debug_insns_local, variable_tracking_main_1): Adjust
17414         delete_vta_debug_insns callers.
17415         * rtl.h (delete_vta_debug_insns): Declare.
17416         * final.c (rest_of_handle_final): Call delete_vta_debug_insns
17417         instead of variable_tracking_main.
17419 2018-01-03  Martin Sebor  <msebor@redhat.com>
17421         PR tree-optimization/83603
17422         * calls.c (maybe_warn_nonstring_arg): Avoid accessing function
17423         arguments past the endof the argument list in functions declared
17424         without a prototype.
17425         * gimple-ssa-warn-restrict.c (wrestrict_dom_walker::check_call):
17426         Avoid checking when arguments are null.
17428 2018-01-03  Martin Sebor  <msebor@redhat.com>
17430         PR c/83559
17431         * doc/extend.texi (attribute const): Fix a typo.
17432         * ipa-pure-const.c ((warn_function_const, warn_function_pure): Avoid
17433         issuing -Wsuggest-attribute for void functions.
17435 2018-01-03  Martin Sebor  <msebor@redhat.com>
17437         * gimple-ssa-warn-restrict.c (builtin_memref::builtin_memref): Use
17438         offset_int::from instead of wide_int::to_shwi.
17439         (maybe_diag_overlap): Remove assertion.
17440         Use HOST_WIDE_INT_PRINT_DEC instead of %lli.
17441         * gimple-ssa-sprintf.c (format_directive): Same.
17442         (parse_directive): Same.
17443         (sprintf_dom_walker::compute_format_length): Same.
17444         (try_substitute_return_value): Same.
17446 2018-01-03  Jeff Law  <law@redhat.com>
17448         PR middle-end/83654
17449         * explow.c (anti_adjust_stack_and_probe_stack_clash): Test a
17450         non-constant residual for zero at runtime and avoid probing in
17451         that case.  Reorganize code for trailing problem to mirror handling
17452         of the residual.
17454 2018-01-03  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
17456         PR tree-optimization/83501
17457         * tree-ssa-strlen.c (get_string_cst): New.
17458         (handle_char_store): Call get_string_cst.
17460 2018-01-03  Martin Liska  <mliska@suse.cz>
17462         PR tree-optimization/83593
17463         * tree-ssa-strlen.c: Include tree-cfg.h.
17464         (strlen_check_and_optimize_stmt): Add new argument cleanup_eh.
17465         (strlen_dom_walker): Add new member variable m_cleanup_cfg.
17466         (strlen_dom_walker::strlen_dom_walker): Initialize m_cleanup_cfg
17467         to false.
17468         (strlen_dom_walker::before_dom_children): Call
17469         gimple_purge_dead_eh_edges. Dump tranformation with details
17470         dump flags.
17471         (strlen_dom_walker::before_dom_children): Update call by adding
17472         new argument cleanup_eh.
17473         (pass_strlen::execute): Return TODO_cleanup_cfg if needed.
17475 2018-01-03  Martin Liska  <mliska@suse.cz>
17477         PR ipa/83549
17478         * cif-code.def (VARIADIC_THUNK): New enum value.
17479         * ipa-fnsummary.c (compute_fn_summary): Do not inline variadic
17480         thunks.
17482 2018-01-03  Jan Beulich  <jbeulich@suse.com>
17484         * sse.md (mov<mode>_internal): Tighten condition for when to use
17485         vmovdqu<ssescalarsize> for TI and OI modes.
17487 2018-01-03  Jakub Jelinek  <jakub@redhat.com>
17489         Update copyright years.
17491 2018-01-03  Martin Liska  <mliska@suse.cz>
17493         PR ipa/83594
17494         * ipa-visibility.c (function_and_variable_visibility): Skip
17495         functions with noipa attribure.
17497 2018-01-03  Jakub Jelinek  <jakub@redhat.com>
17499         * gcc.c (process_command): Update copyright notice dates.
17500         * gcov-dump.c (print_version): Ditto.
17501         * gcov.c (print_version): Ditto.
17502         * gcov-tool.c (print_version): Ditto.
17503         * gengtype.c (create_file): Ditto.
17504         * doc/cpp.texi: Bump @copying's copyright year.
17505         * doc/cppinternals.texi: Ditto.
17506         * doc/gcc.texi: Ditto.
17507         * doc/gccint.texi: Ditto.
17508         * doc/gcov.texi: Ditto.
17509         * doc/install.texi: Ditto.
17510         * doc/invoke.texi: Ditto.
17512 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17514         * vector-builder.h (vector_builder::m_full_nelts): Change from
17515         unsigned int to poly_uint64.
17516         (vector_builder::full_nelts): Update prototype accordingly.
17517         (vector_builder::new_vector): Likewise.
17518         (vector_builder::encoded_full_vector_p): Handle polynomial full_nelts.
17519         (vector_builder::operator ==): Likewise.
17520         (vector_builder::finalize): Likewise.
17521         * int-vector-builder.h (int_vector_builder::int_vector_builder):
17522         Take the number of elements as a poly_uint64 rather than an
17523         unsigned int.
17524         * vec-perm-indices.h (vec_perm_indices::m_nelts_per_input): Change
17525         from unsigned int to poly_uint64.
17526         (vec_perm_indices::vec_perm_indices): Update prototype accordingly.
17527         (vec_perm_indices::new_vector): Likewise.
17528         (vec_perm_indices::length): Likewise.
17529         (vec_perm_indices::nelts_per_input): Likewise.
17530         (vec_perm_indices::input_nelts): Likewise.
17531         * vec-perm-indices.c (vec_perm_indices::new_vector): Take the
17532         number of elements per input as a poly_uint64 rather than an
17533         unsigned int.  Use the original encoding for variable-length
17534         vectors, rather than clamping each individual element.
17535         For the second and subsequent elements in each pattern,
17536         clamp the step and base before clamping their sum.
17537         (vec_perm_indices::series_p): Handle polynomial element counts.
17538         (vec_perm_indices::all_in_range_p): Likewise.
17539         (vec_perm_indices_to_tree): Likewise.
17540         (vec_perm_indices_to_rtx): Likewise.
17541         * tree-vect-stmts.c (vect_gen_perm_mask_any): Likewise.
17542         * tree-vector-builder.c (tree_vector_builder::new_unary_operation)
17543         (tree_vector_builder::new_binary_operation): Handle polynomial
17544         element counts.  Return false if we need to know the number
17545         of elements at compile time.
17546         * fold-const.c (fold_vec_perm): Punt if the number of elements
17547         isn't known at compile time.
17549 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17551         * vec-perm-indices.h (vec_perm_builder): Change element type
17552         from HOST_WIDE_INT to poly_int64.
17553         (vec_perm_indices::element_type): Update accordingly.
17554         (vec_perm_indices::clamp): Handle polynomial element_types.
17555         * vec-perm-indices.c (vec_perm_indices::series_p): Likewise.
17556         (vec_perm_indices::all_in_range_p): Likewise.
17557         (tree_to_vec_perm_builder): Check for poly_int64 trees rather
17558         than shwi trees.
17559         * vector-builder.h (vector_builder::stepped_sequence_p): Handle
17560         polynomial vec_perm_indices element types.
17561         * int-vector-builder.h (int_vector_builder::equal_p): Likewise.
17562         * fold-const.c (fold_vec_perm): Likewise.
17563         * optabs.c (shift_amt_for_vec_perm_mask): Likewise.
17564         * tree-vect-generic.c (lower_vec_perm): Likewise.
17565         * tree-vect-slp.c (vect_transform_slp_perm_load): Likewise.
17566         * config/aarch64/aarch64.c (aarch64_evpc_tbl): Cast d->perm
17567         element type to HOST_WIDE_INT.
17569 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17570             Alan Hayward  <alan.hayward@arm.com>
17571             David Sherwood  <david.sherwood@arm.com>
17573         * alias.c (addr_side_effect_eval): Take the size as a poly_int64
17574         rather than an int.  Use plus_constant.
17575         (memrefs_conflict_p): Take the sizes as poly_int64s rather than ints.
17576         Take the offset "c" as a poly_int64 rather than a HOST_WIDE_INT.
17578 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17579             Alan Hayward  <alan.hayward@arm.com>
17580             David Sherwood  <david.sherwood@arm.com>
17582         * calls.c (emit_call_1, expand_call): Change struct_value_size from
17583         a HOST_WIDE_INT to a poly_int64.
17585 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17586             Alan Hayward  <alan.hayward@arm.com>
17587             David Sherwood  <david.sherwood@arm.com>
17589         * calls.c (load_register_parameters): Cope with polynomial
17590         mode sizes.  Require a constant size for BLKmode parameters
17591         that aren't described by a PARALLEL.  If BLOCK_REG_PADDING
17592         forces a parameter to be padded at the lsb end in order to
17593         fill a complete number of words, require the parameter size
17594         to be ordered wrt UNITS_PER_WORD.
17596 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17597             Alan Hayward  <alan.hayward@arm.com>
17598             David Sherwood  <david.sherwood@arm.com>
17600         * reload1.c (spill_stack_slot_width): Change element type
17601         from unsigned int to poly_uint64_pod.
17602         (alter_reg): Treat mode sizes as polynomial.
17604 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17605             Alan Hayward  <alan.hayward@arm.com>
17606             David Sherwood  <david.sherwood@arm.com>
17608         * reload.c (complex_word_subreg_p): New function.
17609         (reload_inner_reg_of_subreg, push_reload): Use it.
17611 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17612             Alan Hayward  <alan.hayward@arm.com>
17613             David Sherwood  <david.sherwood@arm.com>
17615         * lra-constraints.c (process_alt_operands): Reject matched
17616         operands whose sizes aren't ordered.
17617         (match_reload): Refer to this check here.
17619 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17620             Alan Hayward  <alan.hayward@arm.com>
17621             David Sherwood  <david.sherwood@arm.com>
17623         * builtins.c (expand_ifn_atomic_compare_exchange_into_call): Assert
17624         that the mode size is in the set {1, 2, 4, 8, 16}.
17626 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17627             Alan Hayward  <alan.hayward@arm.com>
17628             David Sherwood  <david.sherwood@arm.com>
17630         * var-tracking.c (adjust_mems): Treat mode sizes as polynomial.
17631         Use plus_constant instead of gen_rtx_PLUS.
17633 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17634             Alan Hayward  <alan.hayward@arm.com>
17635             David Sherwood  <david.sherwood@arm.com>
17637         * config/cr16/cr16-protos.h (cr16_push_rounding): Declare.
17638         * config/cr16/cr16.h (PUSH_ROUNDING): Move implementation to...
17639         * config/cr16/cr16.c (cr16_push_rounding): ...this new function.
17640         * config/h8300/h8300-protos.h (h8300_push_rounding): Declare.
17641         * config/h8300/h8300.h (PUSH_ROUNDING): Move implementation to...
17642         * config/h8300/h8300.c (h8300_push_rounding): ...this new function.
17643         * config/i386/i386-protos.h (ix86_push_rounding): Declare.
17644         * config/i386/i386.h (PUSH_ROUNDING): Move implementation to...
17645         * config/i386/i386.c (ix86_push_rounding): ...this new function.
17646         * config/m32c/m32c-protos.h (m32c_push_rounding): Take and return
17647         a poly_int64.
17648         * config/m32c/m32c.c (m32c_push_rounding): Likewise.
17649         * config/m68k/m68k-protos.h (m68k_push_rounding): Declare.
17650         * config/m68k/m68k.h (PUSH_ROUNDING): Move implementation to...
17651         * config/m68k/m68k.c (m68k_push_rounding): ...this new function.
17652         * config/pdp11/pdp11-protos.h (pdp11_push_rounding): Declare.
17653         * config/pdp11/pdp11.h (PUSH_ROUNDING): Move implementation to...
17654         * config/pdp11/pdp11.c (pdp11_push_rounding): ...this new function.
17655         * config/stormy16/stormy16-protos.h (xstormy16_push_rounding): Declare.
17656         * config/stormy16/stormy16.h (PUSH_ROUNDING): Move implementation to...
17657         * config/stormy16/stormy16.c (xstormy16_push_rounding): ...this new
17658         function.
17659         * expr.c (emit_move_resolve_push): Treat the input and result
17660         of PUSH_ROUNDING as a poly_int64.
17661         (emit_move_complex_push, emit_single_push_insn_1): Likewise.
17662         (emit_push_insn): Likewise.
17663         * lra-eliminations.c (mark_not_eliminable): Likewise.
17664         * recog.c (push_operand): Likewise.
17665         * reload1.c (elimination_effects): Likewise.
17666         * rtlanal.c (nonzero_bits1): Likewise.
17667         * calls.c (store_one_arg): Likewise.  Require the padding to be
17668         known at compile time.
17670 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17671             Alan Hayward  <alan.hayward@arm.com>
17672             David Sherwood  <david.sherwood@arm.com>
17674         * expr.c (emit_single_push_insn_1): Treat mode sizes as polynomial.
17675         Use plus_constant instead of gen_rtx_PLUS.
17677 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17678             Alan Hayward  <alan.hayward@arm.com>
17679             David Sherwood  <david.sherwood@arm.com>
17681         * auto-inc-dec.c (set_inc_state): Take the mode size as a poly_int64
17682         rather than an int.
17684 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17685             Alan Hayward  <alan.hayward@arm.com>
17686             David Sherwood  <david.sherwood@arm.com>
17688         * expr.c (expand_expr_real_1): Use tree_to_poly_uint64
17689         instead of int_size_in_bytes when handling VIEW_CONVERT_EXPRs
17690         via stack temporaries.  Treat the mode size as polynomial too.
17692 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17693             Alan Hayward  <alan.hayward@arm.com>
17694             David Sherwood  <david.sherwood@arm.com>
17696         * expr.c (expand_expr_real_2): When handling conversions involving
17697         unions, apply tree_to_poly_uint64 to the TYPE_SIZE rather than
17698         multiplying int_size_in_bytes by BITS_PER_UNIT.  Treat GET_MODE_BISIZE
17699         as a poly_uint64 too.
17701 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17702             Alan Hayward  <alan.hayward@arm.com>
17703             David Sherwood  <david.sherwood@arm.com>
17705         * rtlanal.c (subreg_get_info): Handle polynomial mode sizes.
17707 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17708             Alan Hayward  <alan.hayward@arm.com>
17709             David Sherwood  <david.sherwood@arm.com>
17711         * combine.c (can_change_dest_mode): Handle polynomial
17712         REGMODE_NATURAL_SIZE.
17713         * expmed.c (store_bit_field_1): Likewise.
17714         * expr.c (store_constructor): Likewise.
17715         * emit-rtl.c (validate_subreg): Operate on polynomial mode sizes
17716         and polynomial REGMODE_NATURAL_SIZE.
17717         (gen_lowpart_common): Likewise.
17718         * reginfo.c (record_subregs_of_mode): Likewise.
17719         * rtlanal.c (read_modify_subreg_p): Likewise.
17721 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17722             Alan Hayward  <alan.hayward@arm.com>
17723             David Sherwood  <david.sherwood@arm.com>
17725         * internal-fn.c (expand_vector_ubsan_overflow): Handle polynomial
17726         numbers of elements.
17728 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17729             Alan Hayward  <alan.hayward@arm.com>
17730             David Sherwood  <david.sherwood@arm.com>
17732         * match.pd: Cope with polynomial numbers of vector elements.
17734 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17735             Alan Hayward  <alan.hayward@arm.com>
17736             David Sherwood  <david.sherwood@arm.com>
17738         * fold-const.c (fold_indirect_ref_1): Handle polynomial offsets
17739         in a POINTER_PLUS_EXPR.
17741 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17742             Alan Hayward  <alan.hayward@arm.com>
17743             David Sherwood  <david.sherwood@arm.com>
17745         * omp-simd-clone.c (simd_clone_subparts): New function.
17746         (simd_clone_init_simd_arrays): Use it instead of TYPE_VECTOR_SUBPARTS.
17747         (ipa_simd_modify_function_body): Likewise.
17749 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17750             Alan Hayward  <alan.hayward@arm.com>
17751             David Sherwood  <david.sherwood@arm.com>
17753         * tree-vect-generic.c (nunits_for_known_piecewise_op): New function.
17754         (expand_vector_piecewise): Use it instead of TYPE_VECTOR_SUBPARTS.
17755         (expand_vector_addition, add_rshift, expand_vector_divmod): Likewise.
17756         (expand_vector_condition, vector_element): Likewise.
17757         (subparts_gt): New function.
17758         (get_compute_type): Use subparts_gt.
17759         (count_type_subparts): Delete.
17760         (expand_vector_operations_1): Use subparts_gt instead of
17761         count_type_subparts.
17763 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17764             Alan Hayward  <alan.hayward@arm.com>
17765             David Sherwood  <david.sherwood@arm.com>
17767         * tree-vect-data-refs.c (vect_no_alias_p): Replace with...
17768         (vect_compile_time_alias): ...this new function.  Do the calculation
17769         on poly_ints rather than trees.
17770         (vect_prune_runtime_alias_test_list): Update call accordingly.
17772 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17773             Alan Hayward  <alan.hayward@arm.com>
17774             David Sherwood  <david.sherwood@arm.com>
17776         * tree-vect-slp.c (vect_build_slp_tree_1): Handle polynomial
17777         numbers of units.
17778         (vect_schedule_slp_instance): Likewise.
17780 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17781             Alan Hayward  <alan.hayward@arm.com>
17782             David Sherwood  <david.sherwood@arm.com>
17784         * tree-vect-slp.c (vect_get_and_check_slp_defs): Reject
17785         constant and extern definitions for variable-length vectors.
17786         (vect_get_constant_vectors): Note that the number of units
17787         is known to be constant.
17789 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17790             Alan Hayward  <alan.hayward@arm.com>
17791             David Sherwood  <david.sherwood@arm.com>
17793         * tree-vect-stmts.c (vectorizable_conversion): Treat the number
17794         of units as polynomial.  Choose between WIDE and NARROW based
17795         on multiple_p.
17797 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17798             Alan Hayward  <alan.hayward@arm.com>
17799             David Sherwood  <david.sherwood@arm.com>
17801         * tree-vect-stmts.c (simd_clone_subparts): New function.
17802         (vectorizable_simd_clone_call): Use it instead of TYPE_VECTOR_SUBPARTS.
17804 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17805             Alan Hayward  <alan.hayward@arm.com>
17806             David Sherwood  <david.sherwood@arm.com>
17808         * tree-vect-stmts.c (vectorizable_call): Treat the number of
17809         vectors as polynomial.  Use build_index_vector for
17810         IFN_GOMP_SIMD_LANE.
17812 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17813             Alan Hayward  <alan.hayward@arm.com>
17814             David Sherwood  <david.sherwood@arm.com>
17816         * tree-vect-stmts.c (get_load_store_type): Treat the number of
17817         units as polynomial.  Reject VMAT_ELEMENTWISE and VMAT_STRIDED_SLP
17818         for variable-length vectors.
17819         (vectorizable_mask_load_store): Treat the number of units as
17820         polynomial, asserting that it is constant if the condition has
17821         already been enforced.
17822         (vectorizable_store, vectorizable_load): Likewise.
17824 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17825             Alan Hayward  <alan.hayward@arm.com>
17826             David Sherwood  <david.sherwood@arm.com>
17828         * tree-vect-loop.c (vectorizable_live_operation): Treat the number
17829         of units as polynomial.  Punt if we can't tell at compile time
17830         which vector contains the final result.
17832 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17833             Alan Hayward  <alan.hayward@arm.com>
17834             David Sherwood  <david.sherwood@arm.com>
17836         * tree-vect-loop.c (vectorizable_induction): Treat the number
17837         of units as polynomial.  Punt on SLP inductions.  Use an integer
17838         VEC_SERIES_EXPR for variable-length integer reductions.  Use a
17839         cast of such a series for variable-length floating-point
17840         reductions.
17842 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17843             Alan Hayward  <alan.hayward@arm.com>
17844             David Sherwood  <david.sherwood@arm.com>
17846         * tree.h (build_index_vector): Declare.
17847         * tree.c (build_index_vector): New function.
17848         * tree-vect-loop.c (get_initial_defs_for_reduction): Treat the number
17849         of units as polynomial, forcibly converting it to a constant if
17850         vectorizable_reduction has already enforced the condition.
17851         (vect_create_epilog_for_reduction): Likewise.  Use build_index_vector
17852         to create a {1,2,3,...} vector.
17853         (vectorizable_reduction): Treat the number of units as polynomial.
17854         Choose vectype_in based on the largest scalar element size rather
17855         than the smallest number of units.  Enforce the restrictions
17856         relied on above.
17858 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17859             Alan Hayward  <alan.hayward@arm.com>
17860             David Sherwood  <david.sherwood@arm.com>
17862         * tree-vect-data-refs.c (vector_alignment_reachable_p): Treat the
17863         number of units as polynomial.
17865 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17866             Alan Hayward  <alan.hayward@arm.com>
17867             David Sherwood  <david.sherwood@arm.com>
17869         * target.h (vector_sizes, auto_vector_sizes): New typedefs.
17870         * target.def (autovectorize_vector_sizes): Return the vector sizes
17871         by pointer, using vector_sizes rather than a bitmask.
17872         * targhooks.h (default_autovectorize_vector_sizes): Update accordingly.
17873         * targhooks.c (default_autovectorize_vector_sizes): Likewise.
17874         * config/aarch64/aarch64.c (aarch64_autovectorize_vector_sizes):
17875         Likewise.
17876         * config/arc/arc.c (arc_autovectorize_vector_sizes): Likewise.
17877         * config/arm/arm.c (arm_autovectorize_vector_sizes): Likewise.
17878         * config/i386/i386.c (ix86_autovectorize_vector_sizes): Likewise.
17879         * config/mips/mips.c (mips_autovectorize_vector_sizes): Likewise.
17880         * omp-general.c (omp_max_vf): Likewise.
17881         * omp-low.c (omp_clause_aligned_alignment): Likewise.
17882         * optabs-query.c (can_vec_mask_load_store_p): Likewise.
17883         * tree-vect-loop.c (vect_analyze_loop): Likewise.
17884         * tree-vect-slp.c (vect_slp_bb): Likewise.
17885         * doc/tm.texi: Regenerate.
17886         * tree-vectorizer.h (current_vector_size): Change from an unsigned int
17887         to a poly_uint64.
17888         * tree-vect-stmts.c (get_vectype_for_scalar_type_and_size): Take
17889         the vector size as a poly_uint64 rather than an unsigned int.
17890         (current_vector_size): Change from an unsigned int to a poly_uint64.
17891         (get_vectype_for_scalar_type): Update accordingly.
17892         * tree.h (build_truth_vector_type): Take the size and number of
17893         units as a poly_uint64 rather than an unsigned int.
17894         (build_vector_type): Add a temporary overload that takes
17895         the number of units as a poly_uint64 rather than an unsigned int.
17896         * tree.c (make_vector_type): Likewise.
17897         (build_truth_vector_type): Take the number of units as a poly_uint64
17898         rather than an unsigned int.
17900 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17901             Alan Hayward  <alan.hayward@arm.com>
17902             David Sherwood  <david.sherwood@arm.com>
17904         * target.def (get_mask_mode): Take the number of units and length
17905         as poly_uint64s rather than unsigned ints.
17906         * targhooks.h (default_get_mask_mode): Update accordingly.
17907         * targhooks.c (default_get_mask_mode): Likewise.
17908         * config/i386/i386.c (ix86_get_mask_mode): Likewise.
17909         * doc/tm.texi: Regenerate.
17911 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17912             Alan Hayward  <alan.hayward@arm.com>
17913             David Sherwood  <david.sherwood@arm.com>
17915         * omp-general.h (omp_max_vf): Return a poly_uint64 instead of an int.
17916         * omp-general.c (omp_max_vf): Likewise.
17917         * omp-expand.c (omp_adjust_chunk_size): Update call to omp_max_vf.
17918         (expand_omp_simd): Handle polynomial safelen.
17919         * omp-low.c (omplow_simd_context): Add a default constructor.
17920         (omplow_simd_context::max_vf): Change from int to poly_uint64.
17921         (lower_rec_simd_input_clauses): Update accordingly.
17922         (lower_rec_input_clauses): Likewise.
17924 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17925             Alan Hayward  <alan.hayward@arm.com>
17926             David Sherwood  <david.sherwood@arm.com>
17928         * tree-vectorizer.h (vect_nunits_for_cost): New function.
17929         * tree-vect-loop.c (vect_model_reduction_cost): Use it.
17930         * tree-vect-slp.c (vect_analyze_slp_cost_1): Likewise.
17931         (vect_analyze_slp_cost): Likewise.
17932         * tree-vect-stmts.c (vect_model_store_cost): Likewise.
17933         (vect_model_load_cost): Likewise.
17935 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17936             Alan Hayward  <alan.hayward@arm.com>
17937             David Sherwood  <david.sherwood@arm.com>
17939         * tree-vect-slp.c (vect_record_max_nunits, vect_build_slp_tree_1)
17940         (vect_build_slp_tree_2, vect_build_slp_tree): Change max_nunits
17941         from an unsigned int * to a poly_uint64_pod *.
17942         (calculate_unrolling_factor): New function.
17943         (vect_analyze_slp_instance): Use it.  Track polynomial max_nunits.
17945 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
17946             Alan Hayward  <alan.hayward@arm.com>
17947             David Sherwood  <david.sherwood@arm.com>
17949         * tree-vectorizer.h (_slp_instance::unrolling_factor): Change
17950         from an unsigned int to a poly_uint64.
17951         (_loop_vec_info::slp_unrolling_factor): Likewise.
17952         (_loop_vec_info::vectorization_factor): Change from an int
17953         to a poly_uint64.
17954         (MAX_VECTORIZATION_FACTOR): Bump from 64 to INT_MAX.
17955         (vect_get_num_vectors): New function.
17956         (vect_update_max_nunits, vect_vf_for_cost): Likewise.
17957         (vect_get_num_copies): Use vect_get_num_vectors.
17958         (vect_analyze_data_ref_dependences): Change max_vf from an int *
17959         to an unsigned int *.
17960         (vect_analyze_data_refs): Change min_vf from an int * to a
17961         poly_uint64 *.
17962         (vect_transform_slp_perm_load): Take the vf as a poly_uint64 rather
17963         than an unsigned HOST_WIDE_INT.
17964         * tree-vect-data-refs.c (vect_analyze_possibly_independent_ddr)
17965         (vect_analyze_data_ref_dependence): Change max_vf from an int *
17966         to an unsigned int *.
17967         (vect_analyze_data_ref_dependences): Likewise.
17968         (vect_compute_data_ref_alignment): Handle polynomial vf.
17969         (vect_enhance_data_refs_alignment): Likewise.
17970         (vect_prune_runtime_alias_test_list): Likewise.
17971         (vect_shift_permute_load_chain): Likewise.
17972         (vect_supportable_dr_alignment): Likewise.
17973         (dependence_distance_ge_vf): Take the vectorization factor as a
17974         poly_uint64 rather than an unsigned HOST_WIDE_INT.
17975         (vect_analyze_data_refs): Change min_vf from an int * to a
17976         poly_uint64 *.
17977         * tree-vect-loop-manip.c (vect_gen_scalar_loop_niters): Take
17978         vfm1 as a poly_uint64 rather than an int.  Make the same change
17979         for the returned bound_scalar.
17980         (vect_gen_vector_loop_niters): Handle polynomial vf.
17981         (vect_do_peeling): Likewise.  Update call to
17982         vect_gen_scalar_loop_niters and handle polynomial bound_scalars.
17983         (vect_gen_vector_loop_niters_mult_vf): Assert that the vf must
17984         be constant.
17985         * tree-vect-loop.c (vect_determine_vectorization_factor)
17986         (vect_update_vf_for_slp, vect_analyze_loop_2): Handle polynomial vf.
17987         (vect_get_known_peeling_cost): Likewise.
17988         (vect_estimate_min_profitable_iters, vectorizable_reduction): Likewise.
17989         (vect_worthwhile_without_simd_p, vectorizable_induction): Likewise.
17990         (vect_transform_loop): Likewise.  Use the lowest possible VF when
17991         updating the upper bounds of the loop.
17992         (vect_min_worthwhile_factor): Make static.  Return an unsigned int
17993         rather than an int.
17994         * tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Cope with
17995         polynomial unroll factors.
17996         (vect_analyze_slp_cost_1, vect_analyze_slp_instance): Likewise.
17997         (vect_make_slp_decision): Likewise.
17998         (vect_supported_load_permutation_p): Likewise, and polynomial
17999         vf too.
18000         (vect_analyze_slp_cost): Handle polynomial vf.
18001         (vect_slp_analyze_node_operations): Likewise.
18002         (vect_slp_analyze_bb_1): Likewise.
18003         (vect_transform_slp_perm_load): Take the vf as a poly_uint64 rather
18004         than an unsigned HOST_WIDE_INT.
18005         * tree-vect-stmts.c (vectorizable_simd_clone_call, vectorizable_store)
18006         (vectorizable_load): Handle polynomial vf.
18007         * tree-vectorizer.c (simduid_to_vf::vf): Change from an int to
18008         a poly_uint64.
18009         (adjust_simduid_builtins, shrink_simd_arrays): Update accordingly.
18011 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
18012             Alan Hayward  <alan.hayward@arm.com>
18013             David Sherwood  <david.sherwood@arm.com>
18015         * match.pd: Handle bit operations involving three constants
18016         and try to fold one pair.
18018 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
18020         * tree-vect-loop-manip.c: Include gimple-fold.h.
18021         (slpeel_make_loop_iterate_ntimes): Add step, final_iv and
18022         niters_maybe_zero parameters.  Handle other cases besides a step of 1.
18023         (vect_gen_vector_loop_niters): Add a step_vector_ptr parameter.
18024         Add a path that uses a step of VF instead of 1, but disable it
18025         for now.
18026         (vect_do_peeling): Add step_vector, niters_vector_mult_vf_var
18027         and niters_no_overflow parameters.  Update calls to
18028         slpeel_make_loop_iterate_ntimes and vect_gen_vector_loop_niters.
18029         Create a new SSA name if the latter choses to use a ste other
18030         than zero, and return it via niters_vector_mult_vf_var.
18031         * tree-vect-loop.c (vect_transform_loop): Update calls to
18032         vect_do_peeling, vect_gen_vector_loop_niters and
18033         slpeel_make_loop_iterate_ntimes.
18034         * tree-vectorizer.h (slpeel_make_loop_iterate_ntimes, vect_do_peeling)
18035         (vect_gen_vector_loop_niters): Update declarations after above changes.
18037 2018-01-02  Michael Meissner  <meissner@linux.vnet.ibm.com>
18039         * config/rs6000/rs6000.md (floor<mode>2): Add support for IEEE
18040         128-bit round to integer instructions.
18041         (ceil<mode>2): Likewise.
18042         (btrunc<mode>2): Likewise.
18043         (round<mode>2): Likewise.
18045 2018-01-02  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
18047         * config/rs6000/rs6000-string.c (expand_block_move): Allow the use of
18048         unaligned VSX load/store on P8/P9.
18049         (expand_block_clear): Allow the use of unaligned VSX
18050         load/store on P8/P9.
18052 2018-01-02  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
18054         * config/rs6000/rs6000-p8swap.c (swap_feeds_both_load_and_store):
18055         New function.
18056         (rs6000_analyze_swaps): Mark a web unoptimizable if it contains a
18057         swap associated with both a load and a store.
18059 2018-01-02  Andrew Waterman  <andrew@sifive.com>
18061         * config/riscv/linux.h (ICACHE_FLUSH_FUNC): New.
18062         * config/riscv/riscv.md (clear_cache): Use it.
18064 2018-01-02  Artyom Skrobov  <tyomitch@gmail.com>
18066         * web.c: Remove out-of-date comment.
18068 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18070         * expr.c (fixup_args_size_notes): Check that any existing
18071         REG_ARGS_SIZE notes are correct, and don't try to re-add them.
18072         (emit_single_push_insn_1): Move stack_pointer_delta adjustment to...
18073         (emit_single_push_insn): ...here.
18075 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18077         * rtl.h (CONST_VECTOR_ELT): Redefine to const_vector_elt.
18078         (const_vector_encoded_nelts): New function.
18079         (CONST_VECTOR_NUNITS): Redefine to use GET_MODE_NUNITS.
18080         (const_vector_int_elt, const_vector_elt): Declare.
18081         * emit-rtl.c (const_vector_int_elt_1): New function.
18082         (const_vector_elt): Likewise.
18083         * simplify-rtx.c (simplify_immed_subreg): Avoid taking the address
18084         of CONST_VECTOR_ELT.
18086 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18088         * expr.c: Include rtx-vector-builder.h.
18089         (const_vector_mask_from_tree): Use rtx_vector_builder and operate
18090         directly on the tree encoding.
18091         (const_vector_from_tree): Likewise.
18092         * optabs.c: Include rtx-vector-builder.h.
18093         (expand_vec_perm_var): Use rtx_vector_builder and create a repeating
18094         sequence of "u" values.
18095         * vec-perm-indices.c: Include rtx-vector-builder.h.
18096         (vec_perm_indices_to_rtx): Use rtx_vector_builder and operate
18097         directly on the vec_perm_indices encoding.
18099 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18101         * doc/rtl.texi (const_vector): Describe new encoding scheme.
18102         * Makefile.in (OBJS): Add rtx-vector-builder.o.
18103         * rtx-vector-builder.h: New file.
18104         * rtx-vector-builder.c: Likewise.
18105         * rtl.h (rtx_def::u2): Add a const_vector field.
18106         (CONST_VECTOR_NPATTERNS): New macro.
18107         (CONST_VECTOR_NELTS_PER_PATTERN): Likewise.
18108         (CONST_VECTOR_DUPLICATE_P): Likewise.
18109         (CONST_VECTOR_STEPPED_P): Likewise.
18110         (CONST_VECTOR_ENCODED_ELT): Likewise.
18111         (const_vec_duplicate_p): Check for a duplicated vector encoding.
18112         (unwrap_const_vec_duplicate): Likewise.
18113         (const_vec_series_p): Check for a non-duplicated vector encoding.
18114         Say that the function only returns true for integer vectors.
18115         * emit-rtl.c: Include rtx-vector-builder.h.
18116         (gen_const_vec_duplicate_1): Delete.
18117         (gen_const_vector): Call gen_const_vec_duplicate instead of
18118         gen_const_vec_duplicate_1.
18119         (const_vec_series_p_1): Operate directly on the CONST_VECTOR encoding.
18120         (gen_const_vec_duplicate): Use rtx_vector_builder.
18121         (gen_const_vec_series): Likewise.
18122         (gen_rtx_CONST_VECTOR): Likewise.
18123         * config/powerpcspe/powerpcspe.c: Include rtx-vector-builder.h.
18124         (swap_const_vector_halves): Take an rtx pointer rather than rtx.
18125         Build a new vector rather than modifying a CONST_VECTOR in-place.
18126         (handle_special_swappables): Update call accordingly.
18127         * config/rs6000/rs6000-p8swap.c: Include rtx-vector-builder.h.
18128         (swap_const_vector_halves): Take an rtx pointer rather than rtx.
18129         Build a new vector rather than modifying a CONST_VECTOR in-place.
18130         (handle_special_swappables): Update call accordingly.
18132 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18134         * simplify-rtx.c (simplify_const_binary_operation): Use
18135         CONST_VECTOR_ELT instead of XVECEXP.
18137 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18139         * tree-cfg.c (verify_gimple_assign_ternary): Allow the size of
18140         the selector elements to be different from the data elements
18141         if the selector is a VECTOR_CST.
18142         * tree-vect-stmts.c (vect_gen_perm_mask_any): Use a vector of
18143         ssizetype for the selector.
18145 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18147         * optabs.c (shift_amt_for_vec_perm_mask): Try using series_p
18148         before testing each element individually.
18149         * tree-vect-generic.c (lower_vec_perm): Likewise.
18151 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18153         * selftest.h (selftest::vec_perm_indices_c_tests): Declare.
18154         * selftest-run-tests.c (selftest::run_tests): Call it.
18155         * vector-builder.h (vector_builder::operator ==): New function.
18156         (vector_builder::operator !=): Likewise.
18157         * vec-perm-indices.h (vec_perm_indices::series_p): Declare.
18158         (vec_perm_indices::all_from_input_p): New function.
18159         * vec-perm-indices.c (vec_perm_indices::series_p): Likewise.
18160         (test_vec_perm_12, selftest::vec_perm_indices_c_tests): Likewise.
18161         * fold-const.c (fold_ternary_loc): Use tree_to_vec_perm_builder
18162         instead of reading the VECTOR_CST directly.  Detect whether both
18163         vector inputs are the same before constructing the vec_perm_indices,
18164         and update the number of inputs argument accordingly.  Use the
18165         utility functions added above.  Only construct sel2 if we need to.
18167 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18169         * optabs.c (expand_vec_perm_var): Use an explicit encoding for
18170         the broadcast of the low byte.
18171         (expand_mult_highpart): Use an explicit encoding for the permutes.
18172         * optabs-query.c (can_mult_highpart_p): Likewise.
18173         * tree-vect-loop.c (calc_vec_perm_mask_for_shift): Likewise.
18174         * tree-vect-stmts.c (perm_mask_for_reverse): Likewise.
18175         (vectorizable_bswap): Likewise.
18176         * tree-vect-data-refs.c (vect_grouped_store_supported): Use an
18177         explicit encoding for the power-of-2 permutes.
18178         (vect_permute_store_chain): Likewise.
18179         (vect_grouped_load_supported): Likewise.
18180         (vect_permute_load_chain): Likewise.
18182 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18184         * vec-perm-indices.h (vec_perm_indices_to_tree): Declare.
18185         * vec-perm-indices.c (vec_perm_indices_to_tree): New function.
18186         * tree-ssa-forwprop.c (simplify_vector_constructor): Use it.
18187         * tree-vect-slp.c (vect_transform_slp_perm_load): Likewise.
18188         * tree-vect-stmts.c (vectorizable_bswap): Likewise.
18189         (vect_gen_perm_mask_any): Likewise.
18191 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18193         * int-vector-builder.h: New file.
18194         * vec-perm-indices.h: Include int-vector-builder.h.
18195         (vec_perm_indices): Redefine as an int_vector_builder.
18196         (auto_vec_perm_indices): Delete.
18197         (vec_perm_builder): Redefine as a stand-alone class.
18198         (vec_perm_indices::vec_perm_indices): New function.
18199         (vec_perm_indices::clamp): Likewise.
18200         * vec-perm-indices.c: Include fold-const.h and tree-vector-builder.h.
18201         (vec_perm_indices::new_vector): New function.
18202         (vec_perm_indices::new_expanded_vector): Update for new
18203         vec_perm_indices class.
18204         (vec_perm_indices::rotate_inputs): New function.
18205         (vec_perm_indices::all_in_range_p): Operate directly on the
18206         encoded form, without computing elided elements.
18207         (tree_to_vec_perm_builder): Operate directly on the VECTOR_CST
18208         encoding.  Update for new vec_perm_indices class.
18209         * optabs.c (expand_vec_perm_const): Create a vec_perm_indices for
18210         the given vec_perm_builder.
18211         (expand_vec_perm_var): Update vec_perm_builder constructor.
18212         (expand_mult_highpart): Use vec_perm_builder instead of
18213         auto_vec_perm_indices.
18214         * optabs-query.c (can_mult_highpart_p): Use vec_perm_builder and
18215         vec_perm_indices instead of auto_vec_perm_indices.  Use a single
18216         or double series encoding as appropriate.
18217         * fold-const.c (fold_ternary_loc): Use vec_perm_builder and
18218         vec_perm_indices instead of auto_vec_perm_indices.
18219         * tree-ssa-forwprop.c (simplify_vector_constructor): Likewise.
18220         * tree-vect-data-refs.c (vect_grouped_store_supported): Likewise.
18221         (vect_permute_store_chain): Likewise.
18222         (vect_grouped_load_supported): Likewise.
18223         (vect_permute_load_chain): Likewise.
18224         (vect_shift_permute_load_chain): Likewise.
18225         * tree-vect-slp.c (vect_build_slp_tree_1): Likewise.
18226         (vect_transform_slp_perm_load): Likewise.
18227         (vect_schedule_slp_instance): Likewise.
18228         * tree-vect-stmts.c (perm_mask_for_reverse): Likewise.
18229         (vectorizable_mask_load_store): Likewise.
18230         (vectorizable_bswap): Likewise.
18231         (vectorizable_store): Likewise.
18232         (vectorizable_load): Likewise.
18233         * tree-vect-generic.c (lower_vec_perm): Use vec_perm_builder and
18234         vec_perm_indices instead of auto_vec_perm_indices.  Use
18235         tree_to_vec_perm_builder to read the vector from a tree.
18236         * tree-vect-loop.c (calc_vec_perm_mask_for_shift): Take a
18237         vec_perm_builder instead of a vec_perm_indices.
18238         (have_whole_vector_shift): Use vec_perm_builder and
18239         vec_perm_indices instead of auto_vec_perm_indices.  Leave the
18240         truncation to calc_vec_perm_mask_for_shift.
18241         (vect_create_epilog_for_reduction): Likewise.
18242         * config/aarch64/aarch64.c (expand_vec_perm_d::perm): Change
18243         from auto_vec_perm_indices to vec_perm_indices.
18244         (aarch64_expand_vec_perm_const_1): Use rotate_inputs on d.perm
18245         instead of changing individual elements.
18246         (aarch64_vectorize_vec_perm_const): Use new_vector to install
18247         the vector in d.perm.
18248         * config/arm/arm.c (expand_vec_perm_d::perm): Change
18249         from auto_vec_perm_indices to vec_perm_indices.
18250         (arm_expand_vec_perm_const_1): Use rotate_inputs on d.perm
18251         instead of changing individual elements.
18252         (arm_vectorize_vec_perm_const): Use new_vector to install
18253         the vector in d.perm.
18254         * config/powerpcspe/powerpcspe.c (rs6000_expand_extract_even):
18255         Update vec_perm_builder constructor.
18256         (rs6000_expand_interleave): Likewise.
18257         * config/rs6000/rs6000.c (rs6000_expand_extract_even): Likewise.
18258         (rs6000_expand_interleave): Likewise.
18260 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18262         * optabs-query.c (can_vec_perm_var_p): Check whether lowering
18263         to qimode could truncate the indices.
18264         * optabs.c (expand_vec_perm_var): Likewise.
18266 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18268         * Makefile.in (OBJS): Add vec-perm-indices.o.
18269         * vec-perm-indices.h: New file.
18270         * vec-perm-indices.c: Likewise.
18271         * target.h (vec_perm_indices): Replace with a forward class
18272         declaration.
18273         (auto_vec_perm_indices): Move to vec-perm-indices.h.
18274         * optabs.h: Include vec-perm-indices.h.
18275         (expand_vec_perm): Delete.
18276         (selector_fits_mode_p, expand_vec_perm_var): Declare.
18277         (expand_vec_perm_const): Declare.
18278         * target.def (vec_perm_const_ok): Replace with...
18279         (vec_perm_const): ...this new hook.
18280         * doc/tm.texi.in (TARGET_VECTORIZE_VEC_PERM_CONST_OK): Replace with...
18281         (TARGET_VECTORIZE_VEC_PERM_CONST): ...this new hook.
18282         * doc/tm.texi: Regenerate.
18283         * optabs.def (vec_perm_const): Delete.
18284         * doc/md.texi (vec_perm_const): Likewise.
18285         (vec_perm): Refer to TARGET_VECTORIZE_VEC_PERM_CONST.
18286         * expr.c (expand_expr_real_2): Use expand_vec_perm_const rather than
18287         expand_vec_perm for constant permutation vectors.  Assert that
18288         the mode of variable permutation vectors is the integer equivalent
18289         of the mode that is being permuted.
18290         * optabs-query.h (selector_fits_mode_p): Declare.
18291         * optabs-query.c: Include vec-perm-indices.h.
18292         (selector_fits_mode_p): New function.
18293         (can_vec_perm_const_p): Check whether targetm.vectorize.vec_perm_const
18294         is defined, instead of checking whether the vec_perm_const_optab
18295         exists.  Use targetm.vectorize.vec_perm_const instead of
18296         targetm.vectorize.vec_perm_const_ok.  Check whether the indices
18297         fit in the vector mode before using a variable permute.
18298         * optabs.c (shift_amt_for_vec_perm_mask): Take a mode and a
18299         vec_perm_indices instead of an rtx.
18300         (expand_vec_perm): Replace with...
18301         (expand_vec_perm_const): ...this new function.  Take the selector
18302         as a vec_perm_indices rather than an rtx.  Also take the mode of
18303         the selector.  Update call to shift_amt_for_vec_perm_mask.
18304         Use targetm.vectorize.vec_perm_const instead of vec_perm_const_optab.
18305         Use vec_perm_indices::new_expanded_vector to expand the original
18306         selector into bytes.  Check whether the indices fit in the vector
18307         mode before using a variable permute.
18308         (expand_vec_perm_var): Make global.
18309         (expand_mult_highpart): Use expand_vec_perm_const.
18310         * fold-const.c: Includes vec-perm-indices.h.
18311         * tree-ssa-forwprop.c: Likewise.
18312         * tree-vect-data-refs.c: Likewise.
18313         * tree-vect-generic.c: Likewise.
18314         * tree-vect-loop.c: Likewise.
18315         * tree-vect-slp.c: Likewise.
18316         * tree-vect-stmts.c: Likewise.
18317         * config/aarch64/aarch64-protos.h (aarch64_expand_vec_perm_const):
18318         Delete.
18319         * config/aarch64/aarch64-simd.md (vec_perm_const<mode>): Delete.
18320         * config/aarch64/aarch64.c (aarch64_expand_vec_perm_const)
18321         (aarch64_vectorize_vec_perm_const_ok): Fuse into...
18322         (aarch64_vectorize_vec_perm_const): ...this new function.
18323         (TARGET_VECTORIZE_VEC_PERM_CONST_OK): Delete.
18324         (TARGET_VECTORIZE_VEC_PERM_CONST): Redefine.
18325         * config/arm/arm-protos.h (arm_expand_vec_perm_const): Delete.
18326         * config/arm/vec-common.md (vec_perm_const<mode>): Delete.
18327         * config/arm/arm.c (TARGET_VECTORIZE_VEC_PERM_CONST_OK): Delete.
18328         (TARGET_VECTORIZE_VEC_PERM_CONST): Redefine.
18329         (arm_expand_vec_perm_const, arm_vectorize_vec_perm_const_ok): Merge
18330         into...
18331         (arm_vectorize_vec_perm_const): ...this new function.  Explicitly
18332         check for NEON modes.
18333         * config/i386/i386-protos.h (ix86_expand_vec_perm_const): Delete.
18334         * config/i386/sse.md (VEC_PERM_CONST, vec_perm_const<mode>): Delete.
18335         * config/i386/i386.c (ix86_expand_vec_perm_const_1): Update comment.
18336         (ix86_expand_vec_perm_const, ix86_vectorize_vec_perm_const_ok): Merge
18337         into...
18338         (ix86_vectorize_vec_perm_const): ...this new function.  Incorporate
18339         the old VEC_PERM_CONST conditions.
18340         * config/ia64/ia64-protos.h (ia64_expand_vec_perm_const): Delete.
18341         * config/ia64/vect.md (vec_perm_const<mode>): Delete.
18342         * config/ia64/ia64.c (ia64_expand_vec_perm_const)
18343         (ia64_vectorize_vec_perm_const_ok): Merge into...
18344         (ia64_vectorize_vec_perm_const): ...this new function.
18345         * config/mips/loongson.md (vec_perm_const<mode>): Delete.
18346         * config/mips/mips-msa.md (vec_perm_const<mode>): Delete.
18347         * config/mips/mips-ps-3d.md (vec_perm_constv2sf): Delete.
18348         * config/mips/mips-protos.h (mips_expand_vec_perm_const): Delete.
18349         * config/mips/mips.c (mips_expand_vec_perm_const)
18350         (mips_vectorize_vec_perm_const_ok): Merge into...
18351         (mips_vectorize_vec_perm_const): ...this new function.
18352         * config/powerpcspe/altivec.md (vec_perm_constv16qi): Delete.
18353         * config/powerpcspe/paired.md (vec_perm_constv2sf): Delete.
18354         * config/powerpcspe/spe.md (vec_perm_constv2si): Delete.
18355         * config/powerpcspe/vsx.md (vec_perm_const<mode>): Delete.
18356         * config/powerpcspe/powerpcspe-protos.h (altivec_expand_vec_perm_const)
18357         (rs6000_expand_vec_perm_const): Delete.
18358         * config/powerpcspe/powerpcspe.c (TARGET_VECTORIZE_VEC_PERM_CONST_OK):
18359         Delete.
18360         (TARGET_VECTORIZE_VEC_PERM_CONST): Redefine.
18361         (altivec_expand_vec_perm_const_le): Take each operand individually.
18362         Operate on constant selectors rather than rtxes.
18363         (altivec_expand_vec_perm_const): Likewise.  Update call to
18364         altivec_expand_vec_perm_const_le.
18365         (rs6000_expand_vec_perm_const): Delete.
18366         (rs6000_vectorize_vec_perm_const_ok): Delete.
18367         (rs6000_vectorize_vec_perm_const): New function.
18368         (rs6000_do_expand_vec_perm): Take a vec_perm_builder instead of
18369         an element count and rtx array.
18370         (rs6000_expand_extract_even): Update call accordingly.
18371         (rs6000_expand_interleave): Likewise.
18372         * config/rs6000/altivec.md (vec_perm_constv16qi): Delete.
18373         * config/rs6000/paired.md (vec_perm_constv2sf): Delete.
18374         * config/rs6000/vsx.md (vec_perm_const<mode>): Delete.
18375         * config/rs6000/rs6000-protos.h (altivec_expand_vec_perm_const)
18376         (rs6000_expand_vec_perm_const): Delete.
18377         * config/rs6000/rs6000.c (TARGET_VECTORIZE_VEC_PERM_CONST_OK): Delete.
18378         (TARGET_VECTORIZE_VEC_PERM_CONST): Redefine.
18379         (altivec_expand_vec_perm_const_le): Take each operand individually.
18380         Operate on constant selectors rather than rtxes.
18381         (altivec_expand_vec_perm_const): Likewise.  Update call to
18382         altivec_expand_vec_perm_const_le.
18383         (rs6000_expand_vec_perm_const): Delete.
18384         (rs6000_vectorize_vec_perm_const_ok): Delete.
18385         (rs6000_vectorize_vec_perm_const): New function.  Remove stray
18386         reference to the SPE evmerge intructions.
18387         (rs6000_do_expand_vec_perm): Take a vec_perm_builder instead of
18388         an element count and rtx array.
18389         (rs6000_expand_extract_even): Update call accordingly.
18390         (rs6000_expand_interleave): Likewise.
18391         * config/sparc/sparc.md (vec_perm_constv8qi): Delete in favor of...
18392         * config/sparc/sparc.c (sparc_vectorize_vec_perm_const): ...this
18393         new function.
18394         (TARGET_VECTORIZE_VEC_PERM_CONST): Redefine.
18396 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18398         * optabs.c (expand_vec_perm_1): Assert that SEL has an integer
18399         vector mode and that that mode matches the mode of the data
18400         being permuted.
18401         (expand_vec_perm): Split handling of non-CONST_VECTOR selectors
18402         out into expand_vec_perm_var.  Do all CONST_VECTOR handling here,
18403         directly using expand_vec_perm_1 when forcing selectors into
18404         registers.
18405         (expand_vec_perm_var): New function, split out from expand_vec_perm.
18407 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18409         * optabs-query.h (can_vec_perm_p): Delete.
18410         (can_vec_perm_var_p, can_vec_perm_const_p): Declare.
18411         * optabs-query.c (can_vec_perm_p): Split into...
18412         (can_vec_perm_var_p, can_vec_perm_const_p): ...these two functions.
18413         (can_mult_highpart_p): Use can_vec_perm_const_p to test whether a
18414         particular selector is valid.
18415         * tree-ssa-forwprop.c (simplify_vector_constructor): Likewise.
18416         * tree-vect-data-refs.c (vect_grouped_store_supported): Likewise.
18417         (vect_grouped_load_supported): Likewise.
18418         (vect_shift_permute_load_chain): Likewise.
18419         * tree-vect-slp.c (vect_build_slp_tree_1): Likewise.
18420         (vect_transform_slp_perm_load): Likewise.
18421         * tree-vect-stmts.c (perm_mask_for_reverse): Likewise.
18422         (vectorizable_bswap): Likewise.
18423         (vect_gen_perm_mask_checked): Likewise.
18424         * fold-const.c (fold_ternary_loc): Likewise.  Don't take
18425         implementations of variable permutation vectors into account
18426         when deciding which selector to use.
18427         * tree-vect-loop.c (have_whole_vector_shift): Don't check whether
18428         vec_perm_const_optab is supported; instead use can_vec_perm_const_p
18429         with a false third argument.
18430         * tree-vect-generic.c (lower_vec_perm): Use can_vec_perm_const_p
18431         to test whether the constant selector is valid and can_vec_perm_var_p
18432         to test whether a variable selector is valid.
18434 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18436         * optabs-query.h (can_vec_perm_p): Take a const vec_perm_indices *.
18437         * optabs-query.c (can_vec_perm_p): Likewise.
18438         * fold-const.c (fold_vec_perm): Take a const vec_perm_indices &
18439         instead of vec_perm_indices.
18440         * tree-vectorizer.h (vect_gen_perm_mask_any): Likewise,
18441         (vect_gen_perm_mask_checked): Likewise,
18442         * tree-vect-stmts.c (vect_gen_perm_mask_any): Likewise,
18443         (vect_gen_perm_mask_checked): Likewise,
18445 2018-01-02  Richard Sandiford  <richard.sandiford@linaro.org>
18447         * optabs-query.h (qimode_for_vec_perm): Declare.
18448         * optabs-query.c (can_vec_perm_p): Split out qimode search to...
18449         (qimode_for_vec_perm): ...this new function.
18450         * optabs.c (expand_vec_perm): Use qimode_for_vec_perm.
18452 2018-01-02  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
18454         * rtlanal.c (canonicalize_condition): Return 0 if final rtx
18455         does not have a conditional at the top.
18457 2018-01-02  Richard Biener  <rguenther@suse.de>
18459         * ipa-inline.c (big_speedup_p): Fix expression.
18461 2018-01-02  Jan Hubicka  <hubicka@ucw.cz>
18463         PR target/81616
18464         * config/i386/x86-tune-costs.h: Increase cost of integer load costs
18465         for generic 4->6.
18467 2018-01-02  Jan Hubicka  <hubicka@ucw.cz>
18469         PR target/81616
18470         Generic tuning.
18471         * x86-tune-costs.h (generic_cost): Reduce cost of FDIV 20->17,
18472         cost of sqrt 20->14, DIVSS 18->13, DIVSD 32->17, SQRtSS 30->14
18473         and SQRTsD 58->18, cond_not_taken_branch_cost. 2->1. Increase
18474         cond_taken_branch_cost 3->4.
18476 2018-01-01  Jakub Jelinek  <jakub@redhat.com>
18478         PR tree-optimization/83581
18479         * tree-loop-distribution.c (pass_loop_distribution::execute): Return
18480         TODO_cleanup_cfg if any changes have been made.
18482         PR middle-end/83608
18483         * expr.c (store_expr_with_bounds): Use simplify_gen_subreg instead of
18484         convert_modes if target mode has the right side, but different mode
18485         class.
18487         PR middle-end/83609
18488         * expr.c (expand_assignment): Fix up a typo in simplify_gen_subreg
18489         last argument when extracting from CONCAT.  If either from_real or
18490         from_imag is NULL, use expansion through memory.  If result is not
18491         a CONCAT and simplify_gen_subreg fails, try to simplify_gen_subreg
18492         the parts directly to inner mode, if even that fails, use expansion
18493         through memory.
18495         PR middle-end/83623
18496         * expmed.c (expand_shift_1): For 2-byte rotates by BITS_PER_UNIT,
18497         check for bswap in mode rather than HImode and use that in expand_unop
18498         too.
18500 Copyright (C) 2018 Free Software Foundation, Inc.
18502 Copying and distribution of this file, with or without modification,
18503 are permitted in any medium without royalty provided the copyright
18504 notice and this notice are preserved.