1. 15 Dec, 2017 28 commits
    • re PR c++/83205 (ICE on structured binding with ill-formed negative std::tuple_size<T>::value) · 38f4bea8
      	PR c++/83205
      	* decl.c (cp_finish_decomp): Handle the case when tsize is not
      	error_mark_node, but doesn't fit into uhwi.  Split up count != eltscnt
      	and !tree_fits_uhwi_p (tsize) error_at calls into error_n and inform_n
      	to handle plural forms properly.
      
      	* g++.dg/cpp1z/decomp3.C: Adjust for structured binding count
      	mismatch diagnostics split into error and warning with plural
      	forms.
      	* g++.dg/cpp1z/decomp10.C: Likewise.
      	* g++.dg/cpp1z/decomp32.C: New test.
      
      From-SVN: r255706
      Jakub Jelinek committed
    • re PR c++/81197 (ICE with structured binding and lifetime-extended temporaries) · 70356f77
      	PR c++/81197
      	* cp-tree.h (cp_maybe_mangle_decomp): Declare.
      	* decl.c (cp_maybe_mangle_decomp): New function.
      	(cp_finish_decomp): Don't SET_DECL_ASSEMBLER_NAME here.
      	* parser.c (cp_convert_range_for,
      	cp_parser_decomposition_declaration): Call cp_maybe_mangle_decomp.
      	* pt.c (tsubst_expr): Likewise.
      	* mangle.c (find_decomp_unqualified_name): New function.
      	(write_unqualified_name): Handle DECL_DECOMPOSITION_P
      	where DECL_ASSEMBLER_NAME is already set.
      
      	* g++.dg/cpp1z/decomp34.C: New test.
      
      From-SVN: r255705
      Jakub Jelinek committed
    • re PR c++/80135 (ICE in output_constructor_regular_field, at varasm.c:4968) · a8c55cac
      	PR c++/80135
      	PR c++/81922
      	* typeck2.c (digest_init_r): Change nested argument type from bool to
      	int.  Use code instead of TREE_CODE (type) where possible.  If
      	nested == 2, diagnose initialization of flexible array member with
      	STRING_CST.  Pass nested to process_init_constructor.  Formatting fix.
      	(digest_init, digest_init_flags): Adjust digest_init_r caller.
      	(massage_init_elt): Add nested argument.  Pass 2 instead of 1 to
      	digest_init_r's nested argument if nested is non-zero.
      	(process_init_constructor_array): Add nested argument.  If nested == 2,
      	diagnose initialization of flexible array member with non-empty
      	braced enclosed list.  Pass nested to massage_init_elt.
      	(process_init_constructor_record, process_init_constructor_union): Add
      	nested argument, pass it to massage_init_elt.
      	(process_init_constructor): Add nested argument, pass it to
      	process_init_constructor_{array,record,union}.
      	* init.c (find_field_init): Renamed to ...
      	(find_flexarray_init): ... this.  Return NULL_TREE if init is
      	error_mark_node.  Don't look through nested CONSTRUCTORs.
      	(warn_placement_new_too_small): Adjust caller.
      
      	* g++.dg/warn/Wplacement-new-size-1.C (fBx1): Initialize nested
      	flexible array member only with {}.  Add dg-warning.
      	(fBx2, fBx3): Remove.
      	* g++.dg/warn/Wplacement-new-size-2.C (fBx1): Initialize nested
      	flexible array member only with {}.  Add dg-warning.
      	(fBx2, fBx3): Remove.
      	* g++.dg/warn/Wplacement-new-size-6.C: New test.
      	* g++.dg/ext/flexary13.C (main): Remove test for initialization
      	of nested flexible array member with non-empty initializer.
      	* g++.dg/ext/flexary25.C: New test.
      	* g++.dg/ext/flexary26.C: New test.
      	* g++.dg/ext/flexary27.C: New test.
      	* g++.dg/parse/pr43765.C: Expect diagnostics about initialization
      	of nested flexible array member with non-empty initializer.  Expect
      	C++2A diagnostics about mixing of designated and non-designated
      	initializers.
      
      From-SVN: r255703
      Jakub Jelinek committed
    • re PR c++/83217 (Compiler segfault: structured binding by reference to a… · e3a661b4
      re PR c++/83217 (Compiler segfault: structured binding by reference to a templated type via a pointer)
      
      	PR c++/83217
      	* decl.c (cp_finish_decomp): If decl's type is REFERENCE_TYPE,
      	call complete_type (TREE_TYPE (type)).
      
      	* g++.dg/cpp1z/decomp33.C: New test.
      
      From-SVN: r255702
      Jakub Jelinek committed
    • re PR tree-optimization/80631 (Compiling with -O3 -mavx2 gives wrong code) · 32151c3f
      	PR tree-optimization/80631
      	* gcc.target/i386/avx2-pr80631.c: New test.
      
      From-SVN: r255701
      Jakub Jelinek committed
    • re PR tree-optimization/83410 (libgomp.graphite/force-parallel-4.c etc. FAIL) · 8f80d734
      	PR tree-optimization/83410
      	* tree-ssa-threadupdate.c (thread_block_1): Avoid certain jump
      	threads when parallelizing loops.
      
      From-SVN: r255700
      Jeff Law committed
    • tree-core.h (struct attribute_spec): Swap affects_type_identity and handler fields. · 4849deb1
      	* tree-core.h (struct attribute_spec): Swap affects_type_identity and
      	handler fields.
      	* config/alpha/alpha.c (vms_attribute_table): Swap
      	affects_type_identity and handler fields, adjust comments.
      	* config/mips/mips.c (mips_attribute_table): Likewise.
      	* config/visium/visium.c (visium_attribute_table): Likewise.
      	* config/epiphany/epiphany.c (epiphany_attribute_table): Likewise.
      	* config/microblaze/microblaze.c (microblaze_attribute_table):
      	Likewise.
      	* config/spu/spu.c (spu_attribute_table): Likewise.
      	* config/mcore/mcore.c (mcore_attribute_table): Likewise.
      	* config/arc/arc.c (arc_attribute_table): Likewise.
      	* config/m68k/m68k.c (m68k_attribute_table): Likewise.
      	* config/v850/v850.c (v850_handle_interrupt_attribute,
      	v850_handle_data_area_attribute): Formatting fixes.
      	(v850_attribute_table): Swap affects_type_identity and handler
      	fields, adjust comments.
      	* config/m32r/m32r.c (m32r_attribute_table): Likewise.
      	* config/arm/arm.c (arm_attribute_table): Likewise.
      	* config/avr/avr.c (avr_attribute_table): Likewise.
      	* config/s390/s390.c (s390_attribute_table): Likewise.
      	* config/sh/sh.c (sh_attribute_table): Likewise.
      	* config/i386/i386.c (ix86_handle_cconv_attribute,
      	ix86_handle_callee_pop_aggregate_return): Formatting fixes.
      	(ix86_attribute_table): Swap affects_type_identity and handler
      	fields, adjust comments.
      	* config/i386/cygming.h (SUBTARGET_ATTRIBUTE_TABLE): Likewise.
      	* config/sparc/sparc.c (sparc_attribute_table): Likewise.
      	* config/m32c/m32c.c (m32c_attribute_table): Likewise.
      	* config/sol2.h (SOLARIS_ATTRIBUTE_TABLE): Likewise.
      	* config/ia64/ia64.c (ia64_attribute_table): Likewise.
      	* config/msp430/msp430.c (msp430_attribute_table): Likewise.
      	* config/rx/rx.c (rx_attribute_table): Likewise.
      	* config/cr16/cr16.c (cr16_attribute_table): Likewise.
      	* config/h8300/h8300.c (h8300_attribute_table): Likewise.
      	* config/nvptx/nvptx.c (nvptx_attribute_table): Likewise.
      	* config/powerpcspe/powerpcspe.c (rs6000_attribute_table): Likewise.
      	* config/darwin.h (SUBTARGET_ATTRIBUTE_TABLE): Likewise.
      	* config/stormy16/stormy16.c (xstormy16_attribute_table): Likewise.
      	* config/bfin/bfin.c (bfin_attribute_table): Likewise.
      	* config/rs6000/rs6000.c (rs6000_attribute_table): Likewise.
      	* config/rl78/rl78.c (rl78_attribute_table): Likewise.
      	* config/nds32/nds32.c (nds32_attribute_table): Likewise.
      	* doc/plugins.texi (user_attr): Likewise.  Add NULL for
      	exclude.
      	* attribs.c (empty_attribute_table): Swap affects_type_identity and
      	handler fields.
      	(register_scoped_attributes, decl_attributes): Formatting fixes.
      ada/
      	* gcc-interface/utils.c (gnat_internal_attribute_table): Swap
      	affects_type_identity and handler fields, adjust comments.
      brig/
      	* brig-lang.c (brig_attribute_table): Swap affects_type_identity
      	and handler fields, adjust comments.
      c-family/
      	* c-attribs.c (c_common_attribute_table,
      	c_common_format_attribute_table): Swap affects_type_identity
      	and handler fields, adjust comments.
      cp/
      	* tree.c (cxx_attribute_table, std_attribute_table): Swap
      	affects_type_identity and handler fields, adjust comments.
      fortran/
      	* f95-lang.c (gfc_attribute_table): Swap affects_type_identity
      	and handler fields, adjust comments.
      lto/
      	* lto-lang.c (lto_attribute_table, lto_format_attribute_table): Swap
      	affects_type_identity and handler fields, adjust comments.
      testsuite/
      	* g++.dg/plugin/attribute_plugin.c (user_attr): Swap
      	affects_type_identity and handler fields, add NULL for exclude.
      
      From-SVN: r255699
      Jakub Jelinek committed
    • [PR C++/59930] template friend classes & default args · 0cf4820d
      https://gcc.gnu.org/ml/gcc-patches/2017-12/msg01055.html
      	PR c++/59930
      	* decl.c (xref_tag_1): Correct comments about template friends and
      	default args.
      	* friend.c (make_friend_class): Move comments concerning
      	self-friendliness to code dealing with such.
      	* pt.c (check_default_tmpl_args): Deal with template friend
      	classes too.
      	(push_template_decl_real): Check default args for non-function
      	template friends.
      
      	PR c++/59930
      	* g++.dg/cpp0x/temp_default4.C: Adjust diagnostic.
      	* g++.old-deja/g++.pt/friend23.C: Likewise.
      	* g++.old-deja/g++.pt/friend24.C: Delete.
      
      From-SVN: r255698
      Nathan Sidwell committed
    • re PR tree-optimization/83269 (Wrong constant folding) · e7425c18
      	PR tree-optimization/83269
      	* fold-const.c (fold_binary_loc): Perform (-A) - B -> (-B) - A
      	subtraction in arg0's type if type is signed and arg0 is unsigned.
      	Formatting fix.
      
      	* gcc.c-torture/execute/pr83269.c: New test.
      
      From-SVN: r255697
      Jakub Jelinek committed
    • re PR sanitizer/81281 (UBSAN: false positive, dropped promotion to long type.) · a72610d4
      	PR sanitizer/81281
      	* match.pd ((T)(P + A) - (T)P -> (T) A): Use @@0 instead of @0 and
      	convert? on @0 instead of convert.  Check type of @1, not @0.
      	((T)P - (T)(P + A) -> -(T) A): Use @@0 instead of @0 and
      	convert? on @0 instead of convert.  Check type of @1, not @0.
      	((T)(P + A) - (T)(P + B) -> (T)A - (T)B): Use @@0 instead of @0,
      	only optimize if either both @1 and @2 types are narrower
      	precision, or both are wider or equal precision, and in the former
      	case only if both have undefined overflow.
      
      	* gcc.dg/pr81281-3.c: New test.
      
      From-SVN: r255696
      Jakub Jelinek committed
    • exp_aggr.adb (Aggr_Assignment_OK_For_Backend): Use Component_Size of the… · 5b85ad7d
      exp_aggr.adb (Aggr_Assignment_OK_For_Backend): Use Component_Size of the innermost array instead of Esize of its component...
      
      gcc/ada/
      
      2017-12-15  Eric Botcazou  <ebotcazou@adacore.com>
      
      	* exp_aggr.adb (Aggr_Assignment_OK_For_Backend): Use Component_Size of
      	the innermost array instead of Esize of its component type to exclude
      	inappropriate array types, including packed array types.
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* sem_prag.adb (Analyze_Input_Item): Allow concurrent types to appear
      	within the input list of Initializes. Remove the uses of Input_OK.
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* exp_ch4.adb (Expand_N_In): Do not replace a membership test on a
      	scalar type with a validity test when the membership appears in a
      	predicate expression, to prevent a spurious error when predicate is
      	specified static.
      	* sem_ch13.adb (Build_Predicate_Functions): Add warning if a static
      	predicate, after constant-folding, reduces to True and is this
      	redundant.
      	* par-ch4.adb: Typo fixes and minor reformattings.
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* sem_elab.adb (Ensure_Prior_Elaboration_Static): Mark the generated
      	with clause as being implicit for an instantiation in order to
      	circumvent an issue with 'W' and 'Z' line encodings in ALI files.
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* sem_util.adb (Is_Potentially_Unevaluated): Detect further cases of
      	misuse of 'Old that appear within an expression that is potentially
      	unevaluated, when the prefix of the attribute does not statically
      	designate an object (e.g. a function call).
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* sem_ch6.adb (Conformking_Types): Two incomplete types are conforming
      	when one of them is used as a generic actual, but only within an
      	instantiation.
      	* einfo.ads: Clarify use of flag Used_As_Generic_Actual.
      
      2017-12-15  Justin Squirek  <squirek@adacore.com>
      
      	* sem_attr.adb (Resolve_Attribute): Modify check for aliased view on
      	prefix to use the prefix's original node to avoid looking at expanded
      	conversions for certain array types.
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* sem_res.adb (Resolve_Membership_Op): Add warning on a membership
      	operation on a scalar type for which there is a user-defined equality
      	operator.
      
      2017-12-15  Yannick Moy  <moy@adacore.com>
      
      	* doc/gnat_rm/implementation_defined_pragmas.rst: Add Ghost assertion
      	policy.
      
      gcc/testsuite/
      
      2017-12-15  Justin Squirek  <squirek@adacore.com>
      
      	* gnat.dg/aliasing4.adb: New testcase.
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* gnat.dg/incomplete6.adb, gnat.dg/incomplete6.ads: New testcase.
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* gnat.dg/initializes.ads, gnat.dg/initializes.adb: New testcase.
      
      2017-12-15  Eric Botcazou  <ebotcazou@adacore.com>
      
      	* gnat.dg/component_size.adb: New testcase.
      
      From-SVN: r255695
      Pierre-Marie de Rodat committed
    • re PR sanitizer/83388 (reference statement index not found error with -fsanitize=null) · 87a5e0e8
      2017-12-15  Richard Biener  <rguenther@suse.de>
      
      	PR lto/83388
      	* internal-fn.def (IFN_NOP): Add.
      	* internal-fn.c (expand_NOP): Do nothing.
      	* lto-streamer-in.c (input_function): Instead of removing
      	sanitizer calls replace them with IFN_NOP calls.
      
      	* gcc.dg/lto/pr83388_0.c: New testcase.
      
      From-SVN: r255694
      Richard Biener committed
    • [multiple changes] · fc47ef60
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* sem_prag.adb (Analyze_Initialization_Item): Remove the specialized
      	processing for a null initialization item. Such an item is always
      	illegal.
      
      2017-12-15  Bob Duff  <duff@adacore.com>
      
      	* types.ads, types.h, libgnat/a-except.adb, exp_ch11.adb
      	(PE_Build_In_Place_Mismatch): New reason code for raising when the
      	BIPalloc formal parameter is incorrect. This can happen if a compiler
      	bug causes a mismatch of build-in-place between caller and callee.
      	* exp_ch6.adb (Expand_N_Extended_Return_Statement): Use
      	PE_Build_In_Place_Mismatch.
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* exp_ch4.ads, exp_ch4.adb (Expand_N_Reduction_Expression): New
      	procedure.
      	* exp_util.adb (Insert_Actions): Handle N_Reduction_Expression.
      	* expander.adb (Expand): Call Expand_N_Reduction_Expression
      	* par-ch4.adb (P_Reduction_Expression): New procedure.
      	(P_Iterated_Component_Assoc_Or_Reduction): New precedure, extension of
      	P_Iterated_Component_Association.
      	(OK_Reduction_Expression_Parameter): New procedure.
      	(P_Aggregate_Or_Paren_Expr): Improve error message for malformed delta
      	aggregate.
      	* sem.adb (Analyze): Call Analyze_Reduction_Expression and
      	Analyze_Reduction_Expression_Parameter
      	* sinfo.ads, sinfo.adb: New node kinds N_Reduction_Expression and
      	N_Reduction_Expression_Parameter.
      	* sem_ch4.ads, sem_ch4.adb (Analyze_Reduction_Expression,
      	Analyze_Reduction_Expression_Parameter): New procedures.
      	* sem_res.adb (Resolve): Handle Reduction_Expression and
      	Reduction_Expression_Parameter
      	* sem_spark.adb: Dummy entries for Reduction_Expression and
      	Reduction_Expression_Parameter
      	* sprint.adb (Sprint_Node_Actual): Print Reduction_Expression,
      	Reduction_Expression_Parameter
      
      From-SVN: r255693
      Pierre-Marie de Rodat committed
    • Make dse.c use offset/width instead of start/end · 71d6a386
      store_info and read_info_type in dse.c represented the ranges as
      start/end, but a lot of the internal code used offset/width instead.
      Using offset/width throughout fits better with the poly_int.h
      range-checking functions.
      
      2017-12-15  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood  <david.sherwood@arm.com>
      
      gcc/
      	* dse.c (store_info, read_info_type): Replace begin and end with
      	offset and width.
      	(print_range): New function.
      	(set_all_positions_unneeded, any_positions_needed_p)
      	(check_mem_read_rtx, scan_stores, scan_reads, dse_step5): Update
      	accordingly.
      	(record_store): Likewise.  Optimize the case in which all positions
      	are unneeded.
      	(get_stored_val): Replace read_begin and read_end with read_offset
      	and read_width.
      	(replace_read): Update call accordingly.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r255692
      Richard Sandiford committed
    • gimple-loop-interchange.cc (STMT_COST_RATIO): New macro. · 1eeeda47
      	* gimple-loop-interchange.cc (STMT_COST_RATIO): New macro.
      	(loop_cand::m_num_stmts, loop_cand::m_const_init_reduc): New members.
      	(loop_cand::loop_cand): Initialize above members.
      	(loop_cand::supported_operations): Delete.
      	(loop_cand::can_interchange_p): Inline above function.
      	(loop_cand::classify_simple_reduction): Record number of constant
      	initialized simple reductions.
      	(should_interchange_loops): New parameters.  Check stmt cost of loops
      	to be interchange.
      	(tree_loop_interchange::interchange): Prepare stmt cost of outer loop.
      	Update call to should_interchange_loops.
      	(should_interchange_loop_nest): Update call to
      	should_interchange_loops.
      
      From-SVN: r255691
      Bin Cheng committed
    • einfo.ads: Comment fix. · 76fc4a85
      gcc/ada/
      
      2017-12-15  Bob Duff  <duff@adacore.com>
      
      	* einfo.ads: Comment fix.
      
      2017-12-15  Piotr Trojanek  <trojanek@adacore.com>
      
      	* s-vercon.adb: Minor style fixes.
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* sem_ch6.adb (Freeze_Expr_Types): Do not emit a freeze node for an
      	itype that is the type of a discriminant-dependent component.
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* sem_prag.adb (Analyze_Part_Of): The context-specific portion of the
      	analysis is now directed to several specialized routines.
      	(Check_Part_Of_Abstract_State): New routine.
      	(Check_Part_Of_Concurrent_Type): New routine. Reimplement the checks
      	involving the item, the single concurrent type, and their respective
      	contexts.
      	* sem_res.adb (Resolve_Entity_Name): Potential constituents of a single
      	concurrent type are now recorded regardless of the SPARK mode.
      	* sem_util.adb (Check_Part_Of_Reference): Split some of the tests in
      	individual predicates.  A Part_Of reference is legal when it appears
      	within the statement list of the object's immediately enclosing
      	package.
      	(Is_Enclosing_Package_Body): New routine.
      	(Is_Internal_Declaration_Or_Body): New routine.
      	(Is_Single_Declaration_Or_Body): New routine.
      	(Is_Single_Task_Pragma): New routine.
      
      gcc/testsuite/
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* gnat.dg/expr_func2.ads, gnat.dg/expr_func2.adb: New testcase.
      
      From-SVN: r255690
      Pierre-Marie de Rodat committed
    • re PR target/66488 (segfault on sizeof(long) < sizeof(void*) and large GCC memory usage) · f5b39f90
      2017-12-15  Eric Botcazou  <ebotcazou@adacore.com>
      
              PR target/66488
              * ggc-page.c (HOST_BITS_PER_PTR): Do not define here...
              * hwint.h (HOST_BITS_PER_PTR): ...but here instead.
              * config/i386/xm-mingw32.h (HOST_BITS_PER_PTR): Delete.
      
      From-SVN: r255687
      Eric Botcazou committed
    • [multiple changes] · 25ea3659
      2017-12-15  Patrick Bernardi  <bernardi@adacore.com>
      
      	* gnat_ugn.texi: Regenerate.
      
      2017-12-15  Bob Duff  <duff@adacore.com>
      
      	* gnatvsn.ads: Minor comment fixes.
      
      From-SVN: r255686
      Pierre-Marie de Rodat committed
    • gnat_and_program_execution.rst: Update section "Dynamic Stack Usage Analysis" to… · b3801819
      gnat_and_program_execution.rst: Update section "Dynamic Stack Usage Analysis" to include more details about...
      
      gcc/ada/
      
      2017-12-15  Patrick Bernardi  <bernardi@adacore.com>
      
      	* doc/gnat_ugn/gnat_and_program_execution.rst: Update section "Dynamic
      	Stack Usage Analysis" to include more details about GNAT_STACK_LIMIT.
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* exp_util.adb (Add_Own_DIC): Ensure that the expression of the pragma
      	is available (Is_Verifiable_DIC_Pragma): Moved from Sem_Util.
      	* sem_util.adb (Has_Full_Default_Initialization):
      	Has_Fully_Default_Initializing_DIC_Pragma is now used to determine
      	whether a type has full default initialization due to pragma
      	Default_Initial_Condition.
      	(Has_Fully_Default_Initializing_DIC_Pragma): New routine.
      	(Is_Verifiable_DIC_Pragma): Moved to Exp_Util.
      	* sem_util.ads (Has_Fully_Default_Initializing_DIC_Pragma): New
      	routine.
      	(Is_Verifiable_DIC_Pragma): Moved to Exp_Util.
      	* sem_warn.adb (Is_OK_Fully_Initialized):
      	Has_Fully_Default_Initializing_DIC_Pragma is now used to determine
      	whether a type has full default initialization due to pragma
      	Default_Initial_Condition.
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* sem_prag.adb (Match_Constituent): Do not quietly accept constants as
      	suitable constituents.
      	* exp_util.adb: Minor reformatting.
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* exp_aggr.adb (In_Place_Assign_OK): Extend the predicate to recognize
      	an array aggregate in an allocator, when the designated type is
      	unconstrained and the upper bound of the aggregate belongs to the base
      	type of the index.
      
      2017-12-15  Bob Duff  <duff@adacore.com>
      
      	* exp_ch6.adb (Expand_N_Extended_Return_Statement,
      	Expand_Simple_Function_Return): Assert that the b-i-p-ness of the
      	caller and callee match.  Otherwise, we would need some substantial
      	changes to allow b-i-p calls non-b-i-p, and vice versa.
      
      gcc/testsuite/
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* gnat.dg/dflt_init_cond.adb, gnat.dg/dflt_init_cond_pkg.ads: New
      	testcase.
      
      From-SVN: r255685
      Pierre-Marie de Rodat committed
    • exp_unst.adb (Unnest_Subprograms): Nothing to do if the main unit is a generic package body. · c581c520
      gcc/ada/
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* exp_unst.adb (Unnest_Subprograms): Nothing to do if the main unit is
      	a generic package body. Unnesting is only an issue when generating
      	code, and if the main unit is generic then nested instance bodies have
      	not been created and analyzed, and unnesting will crash in the absence
      	of those bodies,
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* inline.adb (Add_Inlined_Body): Do not add a function which is
      	completed by an expression function defined in the same context as the
      	initial declaration because the completing body is not in a package
      	body.
      	(Is_Non_Loading_Expression_Function): New routine.
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* debug.adb: Move the functionality of -gnatdL to -gnatd_i. Restore
      	the behavior of -gnatdL from before revision 255412.
      	* sem_elab.adb: Update the section of compiler switches.
      	(Build_Call_Marker): Do not create a marker for a call which originates
      	from an expanded spec or body of an instantiated gener, does not invoke
      	a generic formal subprogram, the target is external to the instance,
      	and -gnatdL is in effect.
      	(In_External_Context): New routine.
      	(Process_Conditional_ABE_Activation_Impl): Update the uses of -gnatdL
      	and associated flag.
      	(Process_Conditional_ABE_Call): Update the uses of -gnatdL and
      	associated flag.
      	* switch-c.adb (Scan_Front_End_Switches): Switch -gnatJ now sets switch
      	-gnatd_i.
      	* exp_unst.adb: Minor typo fixes and edits.
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* sem_ch6.adb (Possible_Freeze): Do not set Delayed_Freeze on an
      	subprogram instantiation, now that the enclosing wrapper package
      	carries an explicit freeze node. THis prevents freeze nodes for the
      	subprogram for appearing in the wrong scope. This is relevant when the
      	generic subprogram has a private or incomplete formal type and the
      	instance appears within a package that declares the actual type for the
      	instantiation, and that type has itself a delayed freeze.
      
      2017-12-15  Patrick Bernardi  <bernardi@adacore.com>
      
      	* doc/gnat_ugn/gnat_and_program_execution.rst: Removed references to
      	the environment variable GNAT_STACK_LIMIT from the Stack Overflow
      	Checking section as it is no longer used by any of our supported
      	targets.
      
      gcc/testsuite/
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* gnat.dg/expr_func_main.adb, gnat.dg/expr_func_pkg.ads,
      	gnat.dg/expr_func_pkg.adb: New testcase.
      
      2017-12-15  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* gnat.dg/abe_pkg.adb, gnat.dg/abe_pkg.ads: New testcase.
      
      2017-12-15  Ed Schonberg  <schonberg@adacore.com>
      
      	* gnat.dg/subp_inst.adb, gnat.dg/subp_inst_pkg.adb,
      	gnat.dg/subp_inst_pkg.ads: New testcase.
      
      From-SVN: r255683
      Pierre-Marie de Rodat committed
    • [multiple changes] · 56af8688
      2017-12-15  Bob Duff  <duff@adacore.com>
      
      	* exp_ch6.adb (Expand_N_Extended_Return_Statement): If the
      	Init_Assignment is rewritten, we need to set Assignment_OK on the new
      	node.  Otherwise, we will get spurious errors when initializing via
      	assignment statement.
      
      2017-12-15  Arnaud Charlet  <charlet@adacore.com>
      
      	* exp_unst.adb (Visit_Node): Refine handling of 'Access to ignore non
      	relevant nodes.
      	(Has_Non_Null_Statements): Moved to sem_util for later reuse.
      
      2017-12-15  Eric Botcazou  <ebotcazou@adacore.com>
      
      	* exp_attr.adb (Is_Inline_Floating_Point_Attribute): Fix comment.
      	* libgnat/s-fatgen.adb (Model): Use Machine attribute.
      	(Truncation): Likewise.
      
      2017-12-15  Bob Duff  <duff@adacore.com>
      
      	* exp_ch7.adb (Expand_Cleanup_Actions): Make sure the block and handled
      	statement sequence generated for certain extended return statements
      	have a Sloc that is not No_Location. Otherwise, the back end doesn't
      	set any location and ends up reading uninitialized variables.
      
      From-SVN: r255680
      Pierre-Marie de Rodat committed
    • types.ads, [...]: Partly revert r255414, committed by mistake. · e83a74b0
      2017-12-15  Bob Duff  <duff@adacore.com>
      
      	* types.ads, exp_ch6.adb, libgnat/s-regexp.ads, opt.ads: Partly revert
      	r255414, committed by mistake.
      
      From-SVN: r255679
      Bob Duff committed
    • Enable VAES support [5/5] · 549fa584
      gcc/
      	* config/i386/i386-builtin.def (__builtin_ia32_vaesenclast_v16qi,
      	__builtin_ia32_vaesenclast_v32qi, __builtin_ia32_vaesenclast_v64qi): New.
      	* config/i386/sse.md (vaesenclast_<mode>): New pattern.
      	* config/i386/vaesintrin.h (_mm256_aesenclast_epi128,
      	_mm512_aesenclast_epi128, _mm_aesenclast_epi128): New intrinsics.
      
      gcc/testsuite/
      	* gcc.target/i386/avx512f-aesenclast-2.c: New test.
      	* gcc.target/i386/avx512vl-aesenclast-2.c: Ditto.
      	* gcc.target/i386/avx512fvl-vaes-1.c: Handle new intrinsics.
      
      From-SVN: r255676
      Julia Koval committed
    • Enable VAES support [4/5] · 5a5d1797
      gcc/
      	* config/i386/i386-builtin.def (__builtin_ia32_vaesenc_v16qi,
      	__builtin_ia32_vaesenc_v32qi, __builtin_ia32_vaesenc_v64qi): New.
      	* config/i386/sse.md (vaesenc_<mode>): New pattern.
      	* config/i386/vaesintrin.h (_mm256_aesenc_epi128, _mm512_aesenc_epi128,
      	_mm_aesenc_epi128): New intrinsics.
      
      gcc/testsuite/
      	* gcc.target/i386/avx512f-aesenc-2.c: New test.
      	* gcc.target/i386/avx512vl-aesenc-2.c: Ditto.
      	* gcc.target/i386/avx512fvl-vaes-1.c: Handle new intrinsics.
      
      From-SVN: r255675
      Julia Koval committed
    • Enable VAES support [3/5] · 0ccdce5f
      gcc/
      	* config/i386/i386-builtin.def (__builtin_ia32_vaesdeclast_v16qi,
      	__builtin_ia32_vaesdeclast_v32qi, __builtin_ia32_vaesdeclast_v64qi): New.
      	* config/i386/sse.md (vaesdeclast_<mode>): New pattern.
      	* config/i386/vaesintrin.h (_mm256_aesdeclast_epi128,
      	_mm512_aesdeclast_epi128, _mm_aesdeclast_epi128): New intrinsics.
      
      gcc/testsuite/
      	* gcc.target/i386/avx512f-aesdeclast-2.c: New test.
      	* gcc.target/i386/avx512vl-aesdeclast-2.c
      	* gcc.target/i386/avx512fvl-vaes-1.c: Handle new intrinsics.
      
      From-SVN: r255674
      Julia Koval committed
    • Fix ChangeLog entry date · 99197a84
      From-SVN: r255673
      Peter Bergner committed
    • Daily bump. · 949737fc
      From-SVN: r255670
      GCC Administrator committed
  2. 14 Dec, 2017 12 commits
    • PR libstdc++/83279 handle sendfile not copying entire file · c49bef17
      	PR libstdc++/83279
      	* src/filesystem/std-ops.cc (do_copy_file): Handle sendfile not
      	copying entire file.
      
      From-SVN: r255666
      Jonathan Wakely committed
    • PR libstdc++/68519 use native duration to avoid rounding errors · 83fd5e73
      	PR libstdc++/68519
      	* include/std/condition_variable (condition_variable::wait_for):
      	Convert duration to native clock's duration before addition.
      	* testsuite/30_threads/condition_variable/members/68519.cc: New test.
      
      From-SVN: r255665
      Jonathan Wakely committed
    • gimple-ssa-strength-reduction.c (analyze_increments): Distinguish replacement… · d5f6f04c
      gimple-ssa-strength-reduction.c (analyze_increments): Distinguish replacement costs for constant strides from those for unknown strides.
      
      2017-12-14  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
      
      	* gimple-ssa-strength-reduction.c (analyze_increments):
      	Distinguish replacement costs for constant strides from those for
      	unknown strides.
      
      From-SVN: r255664
      Bill Schmidt committed
    • * var-tracking.c (variable_tracking_main_1): Formatting fix. · ae1fa44f
      From-SVN: r255663
      Jakub Jelinek committed
    • invoke.texi: Document -Wcast-function-type. · c65e18d3
      gcc:
      2017-12-14  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * doc/invoke.texi: Document -Wcast-function-type.
              * recog.h (stored_funcptr): Change signature.
              * tree-dump.c (dump_node): Avoid warning.
              * typed-splay-tree.h (typed_splay_tree): Avoid warning.
      
      libcpp:
      2017-12-14  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * internal.h (maybe_print_line): Change signature.
      
      c-family:
      2017-12-14  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * c.opt (Wcast-function-type): New warning option.
              * c-lex.c (get_fileinfo): Avoid warning.
              * c-ppoutput.c (scan_translation_unit_directives_only): Remove cast.
      
      c:
      2017-12-14  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * c-typeck.c (c_safe_arg_type_equiv_p,
              c_safe_function_type_cast_p): New function.
              (build_c_cast): Implement -Wcast-function-type.
      
      cp:
      2017-12-14  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * decl2.c (start_static_storage_duration_function): Avoid warning.
              * typeck.c (cxx_safe_arg_type_equiv_p,
              cxx_safe_function_type_cast_p): New function.
              (build_reinterpret_cast_1): Implement -Wcast-function-type.
      
      testsuite:
      2017-12-14  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * c-c++-common/Wcast-function-type.c: New test.
              * g++.dg/Wcast-function-type.C: New test.
      
      From-SVN: r255661
      Bernd Edlinger committed
    • Makefile.am (IFUNC_OPTIONS): Change aarch64 option from -march=armv8.1-a to -march=armv8-a+lse. · 9d0e85af
      2017-12-14  Steve Ellcey  <sellcey@cavium.com>
      
      	* Makefile.am (IFUNC_OPTIONS): Change aarch64
      	option from -march=armv8.1-a to -march=armv8-a+lse.
      	* configure.ac (*aarch64*): Check to see if
      	compiler understands -march=armv8-a+lse option.
      	* configure.tgt (*aarch64*): Only set try_ifunc
      	if compiler understands -march=armv8-a+lse option.
      	* Makefile.in: Regenerate.
      	* testsuite/Makefile.in: Regenerate.
      	* configure: Regenerate.
      	* aclocal.m4: Regenerate.
      
      From-SVN: r255659
      Steve Ellcey committed
    • Patch for middle-end/PR79538 · 2004617a
      missing -Wformat-overflow with %s and non-member array arguments 
      
      -Wformat-overflow uses the routine "get_range_strlen" to decide the 
      maximum string length, however, currently "get_range_strlen" misses 
      the handling of non-member arrays.
      
      Adding the handling of non-member array resolves the issue.
      Adding test case pr79538.c into gcc.dg.
      
      During gcc bootstrap, 2 source files (c-family/c-cppbuiltin.c, 
      fortran/class.c) were detected new warnings by -Wformat-overflow
      due to the new handling of non-member array in "get_range_strlen".
      in order to avoid these new warnings and continue with bootstrap,
      updating these 2 files to avoid the warnings.
      
      in c-family/c-cppbuiltin.c, the warning is following:
      
      ../../latest_gcc_2/gcc/c-family/c-cppbuiltin.c:1627:15: note: 
      ‘sprintf’ output 2 or more bytes (assuming 257) into a destination 
      of size 256
             sprintf (buf1, "%s=%s", macro, buf2);
             ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
      in the above, buf1 and buf2 are declared as:
      char buf1[256], buf2[256];
      
      i.e, buf1 and buf2 have same size. adjusting the size of buf1 and 
      buf2 resolves the warning. 
      
      fortran/class.c has the similar issue as above. Instead of adjusting
      size of the buffers, replacing sprintf with xasprintf is a better 
      solution for these cases.
      
      From-SVN: r255654
      Qing Zhao committed
    • PR libstdc++/83427 detect weak result type from noexcept functions · 00677c48
      	PR libstdc++/83427
      	* include/bits/refwrap.h (_Maybe_unary_or_binary_function): Move here
      	from <bits/std_function.h>.
      	(_Mem_fn_traits_base, _Mem_fn_traits): Move here, from <functional>.
      	(_Weak_result_type_impl, _Reference_wrapper_base): Deduce noexcept
      	for function types. Remove partial specializations for member
      	functions.
      	(_Weak_result_type_impl): Remove unused partial specializations for
      	non-referenceable function types and for references to functions.
      	(_Weak_result_type_memfun, _Reference_wrapper_base_memfun): New
      	helpers to handle member functions via _Mem_fn_traits.
      	(_Weak_result_type, reference_wrapper): Derive from new helpers.
      	* include/bits/std_function.h (_Maybe_unary_or_binary_function): Move
      	to <bits/refwrap.h>.
      	* include/std/functional (_Pack, _AllConvertible, _NotSame): Remove.
      	(_Mem_fn_traits_base, _Mem_fn_traits): Move to <bits/refwrap.h>.
      	* testsuite/20_util/bind/83427.cc: New test.
      	* testsuite/20_util/bind/refqual.cc: Add noexcept to functions and
      	check for weak result types.
      	* testsuite/20_util/reference_wrapper/83427.cc: New test.
      
      From-SVN: r255651
      Jonathan Wakely committed
    • * gcc-interface/misc.c (default_pass_by_ref): Minor tweak. · db811328
      From-SVN: r255650
      Eric Botcazou committed
    • vrp_prop: Use dom_walker for -Warray-bounds (PR tree-optimization/83312) · 5505bb43
      gcc/ChangeLog:
      	PR tree-optimization/83312
      	* domwalk.h (dom_walker::dom_walker): Fix typo in comment.
      	* tree-cfg.c (find_taken_edge): Update to handle NULL_TREE for
      	"val" param, and to cope with arbitrary basic blocks.
      	(find_taken_edge_cond_expr): Add "cond_stmt" param and use it to
      	handle NULL_TREE for "val", dropping "bb" param.
      	(find_taken_edge_switch_expr): Make "switch_stmt" param const and
      	drop "bb" param.  Handle NULL_TREE for "val".
      	(find_case_label_for_value): Make "switch_stmt" param const.
      	* tree-vrp.c (class check_array_bounds_dom_walker): New subclass
      	of dom_walker.
      	(vrp_prop::check_all_array_refs): Reimplement as...
      	(check_array_bounds_dom_walker::before_dom_children): ...this new
      	vfunc.  Replace linear search through BB block list, excluding
      	those with non-executable in-edges via dominator walk.
      
      gcc/testsuite/ChangeLog:
      	PR tree-optimization/83312
      	* gcc.dg/pr83312.c: New test case.
      
      From-SVN: r255649
      David Malcolm committed
    • trans.c (Call_to_gnu): Set DECL_DISREGARD_INLINE_LIMITS to 0 on the callee if… · 9de21921
      trans.c (Call_to_gnu): Set DECL_DISREGARD_INLINE_LIMITS to 0 on the callee if the call is recursive.
      
      	* gcc-interface/trans.c (Call_to_gnu): Set DECL_DISREGARD_INLINE_LIMITS
      	to 0 on the callee if the call is recursive.
      
      From-SVN: r255648
      Eric Botcazou committed