1. 08 Feb, 2018 17 commits
    • Makefile.am (check-gccgo, check-gcc): Add options to pick up target libstdc++,… · 080eaf7a
      Makefile.am (check-gccgo, check-gcc): Add options to pick up target libstdc++, to permit tests that use C++.
      
      	* Makefile.am (check-gccgo, check-gcc): Add options to pick up
      	target libstdc++, to permit tests that use C++.
      	* Makefile.in: Rebuild.
      
      From-SVN: r257494
      Ian Lance Taylor committed
    • libgo: update to Go1.10rc2 · 9adab5dd
          
          Reviewed-on: https://go-review.googlesource.com/92736
      
      From-SVN: r257493
      Ian Lance Taylor committed
    • Another fix for single-element permutes (PR 84265) · b5ec4de7
      PR83753 was about a case in which we ended up trying to "vectorise"
      a group of loads ore stores using single-element vectors.  The problem
      was that we were classifying the load or store as VMAT_CONTIGUOUS_PERMUTE
      rather than VMAT_CONTIGUOUS, even though it doesn't make sense to permute
      a single-element vector.
      
      In that PR it was enough to change get_group_load_store_type,
      because vectorisation ended up being unprofitable and so we didn't
      take things further.  But when vectorisation is profitable, the same
      fix is needed in vectorizable_load and vectorizable_store.
      
      2018-02-08  Richard Sandiford  <richard.sandiford@linaro.org>
      
      gcc/
      	PR tree-optimization/84265
      	* tree-vect-stmts.c (vectorizable_store): Don't treat
      	VMAT_CONTIGUOUS accesses as grouped.
      	(vectorizable_load): Likewise.
      
      gcc/testsuite/
      	PR tree-optimization/84265
      	* gcc.dg/vect/pr84265.c: New test.
      
      From-SVN: r257492
      Richard Sandiford committed
    • Use nonzero bits to refine range in split_constant_offset (PR 81635) · fff22900
      This patch is part 2 of the fix for PR 81635.  It means that
      split_constant_offset can handle loops like:
      
        for (unsigned int i = 0; i < n; i += 4)
          {
            a[i] = ...;
            a[i + 1] = ...;
          }
      
      CCP records that "i" must have its low 2 bits clear, but we don't
      include this information in the range of "i", which remains [0, +INF].
      I tried making set_nonzero_bits update the range info in the same
      way that set_range_info updates the nonzero bits, but it regressed
      cases like vrp117.c and made some other tests worse.
      
      vrp117.c has a multiplication by 10, so CCP can infer that the low bit
      of the result is clear.  If we included that in the range, the range
      would go from [-INF, +INF] to [-INF, not-quite-+INF].  However,
      the multiplication is also known to overflow in all cases, so VRP
      saturates the result to [INT_MAX, INT_MAX].  This obviously creates a
      contradiction with the nonzero bits, and intersecting the new saturated
      range with an existing not-quite-+INF range would make us drop to
      VR_UNDEFINED.  We're prepared to fold a comparison with an [INT_MAX,
      INT_MAX] value but not with a VR_UNDEFINED value.
      
      The other problems were created when intersecting [-INF, not-quite-+INF]
      with a useful VR_ANTI_RANGE like ~[-1, 1].  The intersection would
      keep the former range rather than the latter.
      
      The patch therefore keeps the adjustment local to split_constant_offset
      for now, but adds a helper routine so that it's easy to move this later.
      
      2018-02-08  Richard Sandiford  <richard.sandiford@linaro.org>
      
      gcc/
      	PR tree-optimization/81635
      	* wide-int.h (wi::round_down_for_mask, wi::round_up_for_mask): Declare.
      	* wide-int.cc (wi::round_down_for_mask, wi::round_up_for_mask)
      	(test_round_for_mask): New functions.
      	(wide_int_cc_tests): Call test_round_for_mask.
      	* tree-vrp.h (intersect_range_with_nonzero_bits): Declare.
      	* tree-vrp.c (intersect_range_with_nonzero_bits): New function.
      	* tree-data-ref.c (split_constant_offset_1): Use it to refine the
      	range returned by get_range_info.
      
      gcc/testsuite/
      	PR tree-optimization/81635
      	* gcc.dg/vect/bb-slp-pr81635-3.c: New test.
      	* gcc.dg/vect/bb-slp-pr81635-4.c: Likewise.
      
      From-SVN: r257491
      Richard Sandiford committed
    • re PR ipa/81360 (ice in estimate_edge_growth, at ipa-inline.h:86) · 39aa9b23
      	PR ipa/81360
      	* cgraph.h (symtab_node::output_to_lto_symbol_table_p): Declare
      	* symtab.c: Include builtins.h
      	(symtab_node::output_to_lto_symbol_table_p): Move here
      	from lto-streamer-out.c:output_symbol_p.
      	* lto-streamer-out.c (write_symbol): Turn early exit to assert.
      	(output_symbol_p): Move all logic to symtab.c
      	(produce_symtab): Update.
      
      	* lto.c (unify_scc): Register prevailing trees, not trees to be freed.
      	(read_cgraph_and_symbols): Use
      	symtab_node::output_to_lto_symbol_table_p.
      
      From-SVN: r257490
      Jan Hubicka committed
    • S/390: Disable prediction of indirect branches · 84b4c7b5
      This patch implements GCC support for mitigating vulnerability
      CVE-2017-5715 known as Spectre #2 on IBM Z.
      
      In order to disable prediction of indirect branches the implementation
      makes use of an IBM Z specific feature - the execute instruction.
      Performing an indirect branch via execute prevents the branch from
      being subject to dynamic branch prediction.
      
      The implementation tries to stay close to the x86 solution regarding
      user interface.
      
      x86 style options supported (without thunk-inline):
      
      -mindirect-branch=(keep|thunk|thunk-extern)
      -mfunction-return=(keep|thunk|thunk-extern)
      
      IBM Z specific options:
      
      -mindirect-branch-jump=(keep|thunk|thunk-extern|thunk-inline)
      -mindirect-branch-call=(keep|thunk|thunk-extern)
      -mfunction-return-reg=(keep|thunk|thunk-extern)
      -mfunction-return-mem=(keep|thunk|thunk-extern)
      
      These options allow us to enable/disable the branch conversion at a
      finer granularity.
      
      -mindirect-branch sets the value of -mindirect-branch-jump and
       -mindirect-branch-call.
      
      -mfunction-return sets the value of -mfunction-return-reg and
       -mfunction-return-mem.
      
      All these options are supported on GCC command line as well as
      function attributes.
      
      'thunk' triggers the generation of out of line thunks (expolines) and
      replaces the formerly indirect branch with a direct branch to the
      thunk.  Depending on the -march= setting two different types of thunks
      are generated.  With -march=z10 or higher exrl (execute relative long)
      is being used while targeting older machines makes use of larl/ex
      instead.  From a security perspective the exrl variant is preferable.
      
      'thunk-extern' does the branch replacement like 'thunk' but does not
      emit the thunks.
      
      'thunk-inline' is only available for indirect jumps.  It should be used
      in environments where correct CFI is important - known as user space.
      
      Additionally the patch introduces the -mindirect-branch-table option
      which generates tables pointing to the locations which have been
      modified.  This is supposed to allow reverting the changes without
      re-compilation in situations where it isn't required. The sections are
      split up into one section per option.
      
      gcc/ChangeLog:
      
      2018-02-08  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
      
      	* config/s390/s390-opts.h (enum indirect_branch): Define.
      	* config/s390/s390-protos.h (s390_return_addr_from_memory)
      	(s390_indirect_branch_via_thunk)
      	(s390_indirect_branch_via_inline_thunk): Add function prototypes.
      	(enum s390_indirect_branch_type): Define.
      	* config/s390/s390.c (struct s390_frame_layout, struct
      	machine_function): Remove.
      	(indirect_branch_prez10thunk_mask, indirect_branch_z10thunk_mask)
      	(indirect_branch_table_label_no, indirect_branch_table_name):
      	Define variables.
      	(INDIRECT_BRANCH_NUM_OPTIONS): Define macro.
      	(enum s390_indirect_branch_option): Define.
      	(s390_return_addr_from_memory): New function.
      	(s390_handle_string_attribute): New function.
      	(s390_attribute_table): Add new attribute handler.
      	(s390_execute_label): Handle UNSPEC_EXECUTE_JUMP patterns.
      	(s390_indirect_branch_via_thunk): New function.
      	(s390_indirect_branch_via_inline_thunk): New function.
      	(s390_function_ok_for_sibcall): When jumping via thunk disallow
      	sibling call optimization for non z10 compiles.
      	(s390_emit_call): Force indirect branch target to be a single
      	register.  Add r1 clobber for non-z10 compiles.
      	(s390_emit_epilogue): Emit return jump via return_use expander.
      	(s390_reorg): Handle JUMP_INSNs as execute targets.
      	(s390_option_override_internal): Perform validity checks for the
      	new command line options.
      	(s390_indirect_branch_attrvalue): New function.
      	(s390_indirect_branch_settings): New function.
      	(s390_set_current_function): Invoke s390_indirect_branch_settings.
      	(s390_output_indirect_thunk_function):  New function.
      	(s390_code_end): Implement target hook.
      	(s390_case_values_threshold): Implement target hook.
      	(TARGET_ASM_CODE_END, TARGET_CASE_VALUES_THRESHOLD): Define target
      	macros.
      	* config/s390/s390.h (struct s390_frame_layout)
      	(struct	machine_function): Move here from s390.c.
      	(TARGET_INDIRECT_BRANCH_NOBP_RET)
      	(TARGET_INDIRECT_BRANCH_NOBP_JUMP)
      	(TARGET_INDIRECT_BRANCH_NOBP_JUMP_THUNK)
      	(TARGET_INDIRECT_BRANCH_NOBP_JUMP_INLINE_THUNK)
      	(TARGET_INDIRECT_BRANCH_NOBP_CALL)
      	(TARGET_DEFAULT_INDIRECT_BRANCH_TABLE)
      	(TARGET_INDIRECT_BRANCH_THUNK_NAME_EXRL)
      	(TARGET_INDIRECT_BRANCH_THUNK_NAME_EX)
      	(TARGET_INDIRECT_BRANCH_TABLE): Define macros.
      	* config/s390/s390.md (UNSPEC_EXECUTE_JUMP)
      	(INDIRECT_BRANCH_THUNK_REGNUM): Define constants.
      	(mnemonic attribute): Add values which aren't recognized
      	automatically.
      	("*cjump_long", "*icjump_long", "*basr", "*basr_r"): Disable
      	pattern for branch conversion.  Fix mnemonic attribute.
      	("*c<code>", "*sibcall_br", "*sibcall_value_br", "*return"): Emit
      	indirect branch via thunk if requested.
      	("indirect_jump", "<code>"): Expand patterns for branch conversion.
      	("*indirect_jump"): Disable for branch conversion using out of
      	line thunks.
      	("indirect_jump_via_thunk<mode>_z10")
      	("indirect_jump_via_thunk<mode>")
      	("indirect_jump_via_inlinethunk<mode>_z10")
      	("indirect_jump_via_inlinethunk<mode>", "*casesi_jump")
      	("casesi_jump_via_thunk<mode>_z10", "casesi_jump_via_thunk<mode>")
      	("casesi_jump_via_inlinethunk<mode>_z10")
      	("casesi_jump_via_inlinethunk<mode>", "*basr_via_thunk<mode>_z10")
      	("*basr_via_thunk<mode>", "*basr_r_via_thunk_z10")
      	("*basr_r_via_thunk", "return<mode>_prez10"): New pattern.
      	("*indirect2_jump"): Disable for branch conversion.
      	("casesi_jump"): Turn into expander and expand patterns for branch
      	conversion.
      	("return_use"): New expander.
      	("*return"): Emit return via thunk and rename it to ...
      	("*return<mode>"): ... this one.
      	* config/s390/s390.opt: Add new options and and enum for the
      	option values.
      
      gcc/testsuite/ChangeLog:
      
      2018-02-08  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
      
      	* gcc.target/s390/nobp-function-pointer-attr.c: New test.
      	* gcc.target/s390/nobp-function-pointer-nothunk.c: New test.
      	* gcc.target/s390/nobp-function-pointer-z10.c: New test.
      	* gcc.target/s390/nobp-function-pointer-z900.c: New test.
      	* gcc.target/s390/nobp-indirect-jump-attr.c: New test.
      	* gcc.target/s390/nobp-indirect-jump-inline-attr.c: New test.
      	* gcc.target/s390/nobp-indirect-jump-inline-z10.c: New test.
      	* gcc.target/s390/nobp-indirect-jump-inline-z900.c: New test.
      	* gcc.target/s390/nobp-indirect-jump-nothunk.c: New test.
      	* gcc.target/s390/nobp-indirect-jump-z10.c: New test.
      	* gcc.target/s390/nobp-indirect-jump-z900.c: New test.
      	* gcc.target/s390/nobp-return-attr-all.c: New test.
      	* gcc.target/s390/nobp-return-attr-neg.c: New test.
      	* gcc.target/s390/nobp-return-mem-attr.c: New test.
      	* gcc.target/s390/nobp-return-mem-nothunk.c: New test.
      	* gcc.target/s390/nobp-return-mem-z10.c: New test.
      	* gcc.target/s390/nobp-return-mem-z900.c: New test.
      	* gcc.target/s390/nobp-return-reg-attr.c: New test.
      	* gcc.target/s390/nobp-return-reg-mixed.c: New test.
      	* gcc.target/s390/nobp-return-reg-nothunk.c: New test.
      	* gcc.target/s390/nobp-return-reg-z10.c: New test.
      	* gcc.target/s390/nobp-return-reg-z900.c: New test.
      	* gcc.target/s390/nobp-table-jump-inline-z10.c: New test.
      	* gcc.target/s390/nobp-table-jump-inline-z900.c: New test.
      	* gcc.target/s390/nobp-table-jump-z10.c: New test.
      	* gcc.target/s390/nobp-table-jump-z900.c: New test.
      
      From-SVN: r257489
      Andreas Krebbel committed
    • Simplify LRA lowpart subreg fix · 98a05c03
      r257177 made the else arms equivalent to the if arms.
      
      2018-02-08  Richard Sandiford  <richard.sandiford@linaro.org>
      
      gcc/
      	* lra-constraints.c (match_reload): Unconditionally use
      	gen_lowpart_SUBREG, rather than selecting between that
      	and equivalent gen_rtx_SUBREG code.
      
      From-SVN: r257488
      Richard Sandiford committed
    • re PR middle-end/84233 (ICE (segfault) in gimple_assign_rhs_code) · 24db2556
      2018-02-08  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/84233
      	* tree-ssa-phiprop.c (propagate_with_phi): Use separate
      	changed flag instead of boguously re-using phi_inserted.
      
      	* g++.dg/torture/pr84233.C: New testcase.
      
      From-SVN: r257486
      Richard Biener committed
    • [hsa] Fix PR82416 testcase · 3d224921
      2018-02-08  Martin Jambor  <mjambor@suse.cz>
      
      	* testsuite/libgomp.hsa.c/pr82416.c: Make the function with target
      	clonable.
      
      From-SVN: r257485
      Martin Jambor committed
    • [hsa] Set program allocation for static local variables · c7c30edd
      2018-02-08  Martin Jambor  <mjambor@suse.cz>
      
      	* hsa-gen.c (get_symbol_for_decl): Set program allocation for
      	static local variables.
      
      libgomp/
      	* testsuite/libgomp.hsa.c/staticvar.c: New test.
      
      From-SVN: r257484
      Martin Jambor committed
    • re PR target/84278 (claims initv4sfv2sf is available but inits through stack) · 414fef4e
      2018-02-08  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/84278
      	* tree-vect-stmts.c (vectorizable_store): When looking for
      	smaller vector types to perform grouped strided loads/stores
      	make sure the mode is supported by the target.
      	(vectorizable_load): Likewise.
      
      	* gcc.target/i386/pr84278.c: New testcase.
      
      From-SVN: r257483
      Richard Biener committed
    • [AArch64] Use more LDP/STP in shrinkwrapping · 3f26f054
      The shrinkwrap optimization added in GCC 7 allows each callee-save to
      be delayed and done only across blocks which need a particular callee-save.
      Although this reduces unnecessary memory traffic on code paths that need
      few callee-saves, it typically uses LDR/STR rather than LDP/STP.  This
      means more memory accesses and increased codesize, ~1.0% on average.
      
      To improve this, if a particular callee-save must be saved/restored, also
      add the adjacent callee-save to allow use of LDP/STP.  This significantly
      reduces codesize (for example gcc_r, povray_r, parest_r, xalancbmk_r are
      1% smaller).  This is a simple fix which can be backported.  A more advanced
      approach would scan blocks for pairs of callee-saves, but that requires a
      full rewrite of all the callee-save code which is too late at this stage.
      
      An example epilog in a shrinkwrapped function before:
      
      ldp    x21, x22, [sp,#16]
      ldr    x23, [sp,#32]
      ldr    x24, [sp,#40]
      ldp    x25, x26, [sp,#48]
      ldr    x27, [sp,#64]
      ldr    x28, [sp,#72]
      ldr    x30, [sp,#80]
      ldr    d8, [sp,#88]
      ldp    x19, x20, [sp],#96
      ret
      
      And after this patch:
      
      ldr    d8, [sp,#88]
      ldp    x21, x22, [sp,#16]
      ldp    x23, x24, [sp,#32]
      ldp    x25, x26, [sp,#48]
      ldp    x27, x28, [sp,#64]
      ldr    x30, [sp,#80]
      ldp    x19, x20, [sp],#96
      ret
      
          gcc/
      	* config/aarch64/aarch64.c (aarch64_components_for_bb):
      	Increase LDP/STP opportunities by adding adjacent callee-saves.
      
      From-SVN: r257482
      Wilco Dijkstra committed
    • PR84068, PR83459: Fix sort order of SCHED_PRESSURE_MODEL · 18fbe394
      The comparison function for SCHED_PRESSURE_MODEL is incorrect.  If either
      instruction is not in target_bb, the ordering is not well defined.  
      Since all instructions outside the target_bb get the highest model_index,
      all we need to do is sort on model_index.  If the model_index is the same
      we defer to RFS_DEP_COUNT and/or RFS_TIE.
      
          gcc/
      	PR rtl-optimization/84068
      	PR rtl-optimization/83459
      	* haifa-sched.c (rank_for_schedule): Fix SCHED_PRESSURE_MODEL sorting.
      
          gcc/testsuite
      	PR rtl-optimization/84068
      	PR rtl-optimization/83459
      	* gcc.dg/pr84068.c: New test.
      
      From-SVN: r257481
      Wilco Dijkstra committed
    • re PR tree-optimization/84224 (ICE in execute, at gimple-ssa-warn-alloca.c:448) · eacac712
      	PR tree-optimization/84224
      	* gimple-ssa-warn-alloca.c (pass_walloca::execute): Remove assert.
      	* calls.c (gimple_alloca_call_p): Only return TRUE when we have
      	non-zero arguments.
      
      From-SVN: r257480
      Aldy Hernandez committed
    • slp-pr56812.cc: Allow either basic-block or loop vectorization to happen. · 3b263f5a
      2018-02-08  Richard Biener  <rguenther@suse.de>
      
      	* g++.dg/vect/slp-pr56812.cc: Allow either basic-block or
      	loop vectorization to happen.
      
      From-SVN: r257479
      Richard Biener committed
    • re PR c++/83204 (c++ -std=c++14 ICE in maybe_undo_parenthesized_ref, at cp/semantics.c:1694) · 66a90e86
      /cp
      2018-02-08  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/83204
      	* pt.c (tsubst_copy_and_build): Use force_paren_expr for INDIRECT_REF.
      
      /testsuite
      2018-02-08  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/83204
      	* g++.dg/cpp0x/lambda/lambda-ice25.C: New.
      
      From-SVN: r257478
      Paolo Carlini committed
    • Daily bump. · f986f7e4
      From-SVN: r257477
      GCC Administrator committed
  2. 07 Feb, 2018 23 commits
    • install.texi (Configuration): Document the --with-long-double-format={ibm,ieee}… · d2591b68
      install.texi (Configuration): Document the --with-long-double-format={ibm,ieee} PowerPC configuration options.
      
      2018-02-07  Michael Meissner  <meissner@linux.vnet.ibm.com>
      
      	* doc/install.texi (Configuration): Document the
      	--with-long-double-format={ibm,ieee} PowerPC configuration
      	options.
      
      From-SVN: r257473
      Michael Meissner committed
    • altivec.md (*restore_world): Remove LR use. · 11e887c4
      2018-02-07  Iain Sandoe  <iain@codesourcery.com>
      
      	* config/rs6000/altivec.md (*restore_world): Remove LR use.
      	* config/rs6000/predicates.md (restore_world_operation): Adjust op
      	count, remove one USE.
      
      From-SVN: r257472
      Iain Sandoe committed
    • vsxcopy.c: Update scan-assembler stanzas. · 3f636462
      [testsuite]
      
      2018-02-07  Will Schmidt  <will_schmidt@vnet.ibm.com>
      
      	* gcc.target/powerpc/vsxcopy.c: Update scan-assembler stanzas.
      
      From-SVN: r257471
      Will Schmidt committed
    • re PR target/84154 (PowerPC GCC 7 and 8 have regression in converting fp to… · 4253435e
      re PR target/84154 (PowerPC GCC 7 and 8 have regression in converting fp to short/char and returning it)
      
      [gcc]
      2018-02-07  Michael Meissner  <meissner@linux.vnet.ibm.com>
      
      	PR target/84154
      	* config/rs6000/rs6000.md (fix_trunc<SFDF:mode><QHI:mode>2):
      	Convert from define_expand to be define_insn_and_split.  Rework
      	float/double/_Float128 conversions to QI/HI/SImode to work with
      	both ISA 2.07 (power8) or ISA 3.0 (power9).  Fix regression where
      	conversions to QI/HImode types did a store and then a load to
      	truncate the value.  For conversions to VSX registers, don't split
      	the insn, instead emit the code directly.  Use the code iterator
      	any_fix to combine signed and unsigned conversions.
      	(fix<uns>_trunc<SFDF:mode>si2_p8): Likewise.
      	(fixuns_trunc<SFDF:mode><QHI:mode>2): Likewise.
      	(fix_trunc<IEEE128:mode><QHI:mode>2): Likewise.
      	(fix<uns>_trunc<SFDF:mode><QHI:mode>2): Likewise.
      	(fix_<mode>di2_hw): Likewise.
      	(fixuns_<mode>di2_hw): Likewise.
      	(fix_<mode>si2_hw): Likewise.
      	(fixuns_<mode>si2_hw): Likewise.
      	(fix<uns>_<IEEE128:mode><SDI:mode>2_hw): Likewise.
      	(fix<uns>_trunc<IEEE128:mode><QHI:mode>2): Likewise.
      	(fctiw<u>z_<mode>_smallint): Rename fctiw<u>z_<mode>_smallint to
      	fix<uns>_trunc<SFDF:mode>si2_p8.
      	(fix_trunc<SFDF:mode><QHI:mode>2_internal): Delete, no longer
      	used.
      	(fixuns_trunc<SFDF:mode><QHI:mode>2_internal): Likewise.
      	(fix<uns>_<mode>_mem): Likewise.
      	(fctiw<u>z_<mode>_mem): Likewise.
      	(fix<uns>_<mode>_mem): Likewise.
      	(fix<uns>_trunc<SFDF:mode><QHSI:mode>2_mem): On ISA 3.0, prevent
      	the register allocator from doing a direct move to the GPRs to do
      	a store, and instead use the ISA 3.0 store byte/half-word from
      	vector register instruction.  For IEEE 128-bit floating point,
      	also optimize stores of 32-bit ints.
      	(fix<uns>_trunc<IEEE128:mode><QHSI:mode>2_mem): Likewise.
      
      [gcc/testsuite]
      2018-02-07  Michael Meissner  <meissner@linux.vnet.ibm.com>
      
      	PR target/84154
      	* gcc.target/powerpc/pr84154-1.c: New tests.
      	* gcc.target/powerpc/pr84154-2.c: Likewise.
      	* gcc.target/powerpc/pr84154-3.c: Likewise.
      
      From-SVN: r257470
      Michael Meissner committed
    • builtins-mergew-mergeow.c: Update dg-requires. · 54af445d
      [testsuite]
      
      2018-02-07  Will Schmidt  <will_schmidt@vnet.ibm.com>
      
      	* gcc.target/powerpc/builtins-mergew-mergeow.c:  Update dg-requires.
      
      From-SVN: r257469
      Will Schmidt committed
    • re PR c++/84082 (ICE with broken template function definition) · 8f1f526b
      	PR c++/84082
      	* parser.c (cp_parser_dot_deref_incomplete): New function.
      	(cp_parser_postfix_dot_deref_expression): Use it.
      
      	* g++.dg/template/incomplete11.C: New test.
      	* g++.dg/parse/crash67.C: Expect an incomplete type diagnostics too.
      
      From-SVN: r257466
      Jakub Jelinek committed
    • re PR fortran/82994 (ICE in gfc_match_deallocate, at fortran/match.c:4478) · b35a0ccd
      2018-02-07  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/82994
      	* match.c (gfc_match_deallocate): Check for NULL pointer.
      
      2018-02-07  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/82994
      	* gfortran.dg/deallocate_error_3.f90: New test.
      	* gfortran.dg/deallocate_error_4.f90: New test.
      
      From-SVN: r257465
      Steven G. Kargl committed
    • * es.po: Update. · 72267602
      From-SVN: r257464
      Joseph Myers committed
    • runtime: don't call funcPC from a function · f1a2d8b1
          
          The escape analysis support is not yet good enough to avoid escaping
          the argument to funcPC.  This causes unnecessary and often harmful
          memory allocation.  E.g., (*cpuProfile).addExtra can be called from a
          signal handler, and it must not allocate memory.
          
          Move the calls to funcPC to use variables instead.  This was done in
          the original migration to using funcPC, but was not done for newer code.
          
          In one case, in signal handling code, use getSigtramp.
          
          Reviewed-on: https://go-review.googlesource.com/92735
      
      From-SVN: r257463
      Ian Lance Taylor committed
    • re PR fortran/68560 (The test gfortran.dg/shape_8.f90 now fails when compiled with -flto) · 82e259b8
      2018-02-07  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR fortran/68560
      	* trans-intrinsic.c (gfc_conv_intrinsic_shape): New function.
      	(gfc_conv_intrinsic_function): Call it.
      
      2018-02-07  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR fortran/68560
      	* gfortran.dg/shape_9.f90: New test.
      
      From-SVN: r257462
      Thomas Koenig committed
    • re PR fortran/82049 (ICE with character(*),parameter array constructor) · 52b16cb3
      2018-02-06  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/82049
      	* match.c (gfc_match_type_spec): If the charlen is non-NULL, then
      	try to resolve it.  While here return early if possible.
      
      2018-02-06  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/82049
      	* gfortran.dg/assumed_charlen_parameter.f90: New test.
      
      From-SVN: r257459
      Steven G. Kargl committed
    • Fix libgomp.oacc-c-c++-common/pr84217.c for C++ · f320fdfd
      	* testsuite/libgomp.oacc-c-c++-common/pr84217.c (abort)
      	[__cplusplus]: Declare extern "C".
      
      From-SVN: r257457
      Rainer Orth committed
    • C++: avoid most reserved words as misspelling suggestions (PR c++/81610 and PR c++/80567) · 0d7d8e66
      lookup_name_fuzzy can offer some reserved words as suggestions for
      misspelled words, helping with "singed"/"signed" typos.
      
      PR c++/81610 and PR c++/80567 report problems where the C++ frontend
      suggested "if", "for" and "else" as corrections for misspelled variable
      names.
      
      The root cause is that in r247233
        ("Fix spelling suggestions for reserved words (PR c++/80177)")
      I loosened the conditions on these reserved words, adding this condition:
         if (kind == FUZZY_LOOKUP_TYPENAME)
      to the logic for rejecting words that don't start decl-specifiers, to
      allow for "static_assert" to be offered.
      
      This is too loose a condition: we don't want to suggest *any* reserved word
      when we're in a context where we don't know we expect a typename.
      
      For the kinds of error-recover situations where we're suggesting
      spelling corrections we don't have much contextual information, so it
      seems prudent to be stricter about which reserved words we offer
      as spelling suggestions; I don't think it makes sense for us to
      suggest e.g. "for".
      
      This patch implements that by effectively reinstating the old logic,
      but special-casing RID_STATIC_ASSERT, moving the logic to a new
      subroutine (in case we want to allow for other special-cases).
      
      I attempted to add suggestions for the various RID_*CAST, to cope
      with e.g. "reinterptet_cast" (I can never type that correctly on the
      first try), but the following '<' token confuses the error-recovery
      enough that the suggestion code isn't triggered.
      
      gcc/cp/ChangeLog:
      	PR c++/81610
      	PR c++/80567
      	* name-lookup.c (suggest_rid_p): New function.
      	(lookup_name_fuzzy): Replace enum-rid-filtering logic with call to
      	suggest_rid_p.
      
      gcc/testsuite/ChangeLog:
      	PR c++/81610
      	PR c++/80567
      	* g++.dg/spellcheck-reswords.C: New test case.
      	* g++.dg/spellcheck-stdlib.C: Remove xfail from dg-bogus
      	suggestion of "if".
      
      From-SVN: r257456
      David Malcolm committed
    • Support >26 operands in generation code. · 085e8246
      2018-02-07  Alan Hayward  <alan.hayward@arm.com>
      
              * genextract.c (push_pathstr_operand): New function to support [a-zA-Z].
              (walk_rtx): Call push_pathstr_operand.
              (print_path): Support [a-zA-Z].
      
      From-SVN: r257455
      Alan Hayward committed
    • PR c++/84182 - ICE with captured lambda · 828ca2ed
      	PR c++/84181
      	* pt.c (extract_locals_r, extract_local_specs): New.
      	(tsubst_pack_expansion): Use them.
      
      From-SVN: r257454
      Jason Merrill committed
    • re PR tree-optimization/84037 (Speed regression of polyhedron benchmark since r256644) · b210f45f
      2018-02-07  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/84037
      	* tree-vectorizer.h (struct _loop_vec_info): Add ivexpr_map member.
      	(cse_and_gimplify_to_preheader): Declare.
      	(vect_get_place_in_interleaving_chain): Likewise.
      	* tree-vect-loop.c (_loop_vec_info::_loop_vec_info): Initialize
      	ivexpr_map.
      	(_loop_vec_info::~_loop_vec_info): Delete it.
      	(cse_and_gimplify_to_preheader): New function.
      	* tree-vect-slp.c (vect_get_place_in_interleaving_chain): Export.
      	* tree-vect-stmts.c (vectorizable_store): CSE base and steps.
      	(vectorizable_load): Likewise.  For grouped stores always base
      	the IV on the first element.
      	* tree-vect-loop-manip.c (vect_loop_versioning): Unshare versioning
      	condition before gimplifying.
      
      From-SVN: r257453
      Richard Biener committed
    • Revert behavior to r251316. · 43e4df5a
      2018-02-07  Martin Liska  <mliska@suse.cz>
      
      	PR c++/84059.
      	* class.c (add_method): Append argument value.
      	* cp-tree.h (maybe_version_functions): Add new argument.
      	* decl.c (decls_match): Call it if a declaration does not
      	have DECL_FUNCTION_VERSIONED.
      	(maybe_version_functions): record argument is added.
      2018-02-07  Martin Liska  <mliska@suse.cz>
      
      	PR c++/84059.
      	* g++.dg/ext/mv26.C: New test.
      
      From-SVN: r257451
      Martin Liska committed
    • tree-eh.c (operation_could_trap_helper_p): Ignore honor_trapv for *DIV_EXPR and *MOD_EXPR. · 228868f5
      	* tree-eh.c (operation_could_trap_helper_p): Ignore honor_trapv for
      	*DIV_EXPR and *MOD_EXPR.
      
      From-SVN: r257450
      Jakub Jelinek committed
    • [testsuite] Require alloca in gcc.dg/pr83844.c · a0486b65
      2018-02-07  Tom de Vries  <tom@codesourcery.com>
      
      	* gcc.dg/pr83844.c: Require effective target alloca.
      
      From-SVN: r257447
      Tom de Vries committed
    • [testsuite] Require global_constructor in gcc.dg/torture/pr83055.c · 45224bd0
      2018-02-07  Tom de Vries  <tom@codesourcery.com>
      
      	* gcc.dg/torture/pr83055.c: Require effective target global_constructor.
      
      From-SVN: r257446
      Tom de Vries committed
    • Use -fcf-protection=return in cet-intrin-4.c · 81b58bfd
      Since -fcf-protection requires both -mshstk and -mibt, use
      -fcf-protection=return with -mshstk in cet-intrin-4.c.
      
      	PR target/84243
      	* gcc.target/i386/cet-intrin-4.c (dg-options): Use
      	-fcf-protection=return.
      
      From-SVN: r257445
      H.J. Lu committed
    • i386: Mask out the CF_SET bit for -fcf-protection check · 6ad05bcc
      Since ix86_option_override_internal sets the CF_SET bit in
      flag_cf_protection and it can be called more than once via pragma,
      we need to mask out the CF_SET bit when checking flag_cf_protection.
      
      	PR target/84248
      	* config/i386/i386.c (ix86_option_override_internal): Mask out
      	the CF_SET bit when checking -fcf-protection.
      
      From-SVN: r257444
      H.J. Lu committed
    • [openacc] Fix diff_type in expand_oacc_collapse_init · c31bc4ac
      2018-02-07  Tom de Vries  <tom@codesourcery.com>
      
      	PR libgomp/84217
      	* omp-expand.c (expand_oacc_collapse_init): Ensure diff_type is large
      	enough.
      
      	* c-c++-common/goacc/pr84217.c: New test.
      	* gfortran.dg/goacc/pr84217.f90: New test.
      
      	* testsuite/libgomp.oacc-c-c++-common/pr84217.c: New test.
      
      From-SVN: r257443
      Tom de Vries committed