1. 30 Aug, 2011 14 commits
    • exp_ch3.adb (Expand_Freeze_Array_Type): Correct the call to… · 3647ca26
      exp_ch3.adb (Expand_Freeze_Array_Type): Correct the call to Build_Finalization_Master by supplying an insertion node...
      
      2011-08-30  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* exp_ch3.adb (Expand_Freeze_Array_Type): Correct the call to
      	Build_Finalization_Master by supplying an insertion node and enclosing
      	scope. In its old version, the call did not generate a finalization
      	master.
      	(Expand_Freeze_Record_Type): Add local variable Has_AACC. Add code to
      	recognize anonymous access-to-controlled components. Rewrite the
      	machinery which creates finalization masters to service anonymous
      	access-to-controlled components of a record type. In its current state,
      	only one heterogeneous master is necessary to handle multiple anonymous
      	components.
      	(Freeze_Type): Comment reformatting.
      	* rtsfind.ads: Add RE_Set_Is_Heterogeneous to tables RE_Id and
      	RE_Unit_Table.
      	* s-stposu.adb (Allocate_Any_Controlled): Rewrite the machinery which
      	associates TSS primitive Finalize_Address with either the master itself
      	or with the internal hash table depending on the mode of operation of
      	the master.
      
      From-SVN: r178301
      Hristian Kirtchev committed
    • exp_ch3.adb (Make_Eq_If): If the etype of the _parent component is an interface… · 6d4e4fbc
      exp_ch3.adb (Make_Eq_If): If the etype of the _parent component is an interface type then do not generate...
      
      2011-08-30  Javier Miranda  <miranda@adacore.com>
      
      	* exp_ch3.adb (Make_Eq_If): If the etype of the _parent component is an
      	interface type then do not generate code to compare this component.
      	Required since they have no components and their equality operator is
      	abstract.
      
      From-SVN: r178300
      Javier Miranda committed
    • [multiple changes] · d15f9422
      2011-08-30  Steve Baird  <baird@adacore.com>
      
      	* sem_util.ads (Deepest_Type_Access_Level): New function; for the type
      	of a saooaaat (i.e, a stand-alone object of an anonymous access type),
      	returns the (static) accessibility level of the object. Otherwise, the
      	same as Type_Access_Level.
      	(Dynamic_Accessibility_Level): New function; given an expression which
      	could occur as the rhs of an assignment to a saooaaat (i.e., an
      	expression of an access-to-object type), return the new value for the
      	saooaaat's associated Extra_Accessibility object.
      	(Effective_Extra_Accessibility): New function; same as
      	Einfo.Extra_Accessibility except that object renames are looked through.
      	* sem_util.adb 
      	(Deepest_Type_Access_Level): New function; see sem_util.ads description.
      	(Dynamic_Accessibility_Level): New function; see sem_util.ads
      	description.
      	(Effective_Extra_Accessibility): New function; see sem_util.ads
      	description.
      	* einfo.ads (Is_Local_Anonymous_Access): Update comments.
      	(Extra_Accessibility): Update comments.
      	(Init_Object_Size_Align): New procedure; same as Init_Size_Align
      	except RM_Size field (which is only for types) is unaffected.
      	* einfo.adb
      	(Extra_Accessibility): Expand domain to allow objects, not just formals.
      	(Set_Extra_Accessibility): Expand domain to allow objects, not just
      	formals.
      	(Init_Size): Add assertion that we are not trashing the
      	Extra_Accessibility attribute of an object.
      	(Init_Size_Align): Add assertion that we are not trashing the
      	Extra_Accessibility attribute of an object.
      	(Init_Object_Size_Align): New procedure; see einfo.ads description.
      	* sem_ch3.adb (Find_Type_Of_Object): Set Is_Local_Anonymous_Access
      	differently for the type of a (non-library-level) saooaaat depending
      	whether Ada_Version < Ada_2012. This is the only point where Ada_Version
      	is queried in this set of changes - everything else (in particular,
      	setting of the Extra_Accessibility attribute in exp_ch3.adb) is
      	driven off of the setting of the Is_Local_Anonymous_Access attribute.
      	The special treatment of library-level saooaaats is an optimization,
      	not required for correctnesss. This is based on the observation that the
      	Ada2012 rules (static and dynamic) for saooaaats turn out to be
      	equivalent to the Ada2005 rules in the case of a library-level saooaaat.
      	* exp_ch3.adb
      	(Expand_N_Object_Declaration): If Is_Local_Anonymous_Access is
      	false for the type of a saooaaat, declare and initialize its
      	accessibility level object and set the Extra_Accessibility attribute
      	of the saooaaat to refer to this object.
      	* checks.adb (Apply_Accessibility_Check): Add Ada 2012 saooaaat support.
      	* exp_ch4.adb (Expand_N_In): Replace some Extra_Accessibility calls with
      	calls to Effective_Extra_Accessibility in order to support
      	renames of saooaaats.
      	(Expand_N_Type_Conversion): Add new local function,
      	Has_Extra_Accessibility, and call it when determining whether an
      	accessibility check is needed.
      	It returns True iff Present (Effective_Extra_Accessibility (Id)) would
      	evaluate to True (without raising an exception).
      	* exp_ch5.adb
      	(Expand_N_Assignment_Statement): When assigning to an Ada2012
      	saooaaat, update its associated Extra_Accessibility object (if
      	it has one). This includes an accessibility check.
      	* exp_ch6.adb (Add_Call_By_Copy_Code): When parameter copy-back updates
      	a saooaaat, update its Extra_Accessibility object too (if it
      	has one).
      	(Expand_Call): Replace a couple of calls to Type_Access_Level
      	with calls to Dynamic_Access_Level to handle cases where
      	passing a literal (any literal) is incorrect.
      	* sem_attr.adb (Resolve_Attribute): Handle the static accessibility
      	checks associated with "Saooaat := Some_Object'Access;"; this must
      	be rejected if Some_Object is declared in a more nested scope
      	than Saooaat.
      	* sem_ch5.adb (Analyze_Assignment): Force accessibility checking for an
      	assignment to a saooaaat even if Is_Local_Anonymous_Access
      	returns False for its type (indicating a 2012-style saooaaat).
      	* sem_ch8.adb
      	(Analyze_Object_Renaming): Replace a call to Init_Size_Align
      	(which is only appropriate for objects, not types) with a call
      	of Init_Object_Size_Align in order to avoid trashing the
      	Extra_Accessibility attribute of a rename (the two attributes
      	share storage).
      	* sem_res.adb
      	(Valid_Conversion) Replace six calls to Type_Access_Level with
      	calls to Deepest_Type_Access_Level. This is a bit tricky. For an
      	Ada2012 non-library-level saooaaat, the former returns library level
      	while the latter returns the (static) accessibility level of the
      	saooaaat. A type conversion to the anonymous type of a saooaaat
      	can only occur as part of an assignment to the saooaaat, so we
      	know that such a conversion must be in a lhs context, so Deepest
      	yields the result that we need. If such a conversion could occur,
      	say, as the operand of an equality operator, then this might not
      	be right. Also add a test so that static accessibilty checks are
      	performed for converting to a saooaaat's type even if
      	Is_Local_Anonymous_Access yields False for the type.
      
      2011-08-30  Javier Miranda  <miranda@adacore.com>
      
      	* sem_disp.adb (Check_Dispatching_Operation): Complete condition that
      	controls generation of a warning associated with late declaration of
      	dispatching functions. Required to avoid generating spurious
      	warnings.
      
      From-SVN: r178299
      Arnaud Charlet committed
    • bb-reorder.c (insert_section_boundary_note): Only do it if we reordered the blocks; i.e. · 9645d434
      	* bb-reorder.c (insert_section_boundary_note): Only do it if
      	we reordered the blocks; i.e. not if !optimize_function_for_speed_p.
      
      From-SVN: r178298
      Bernd Schmidt committed
    • i386.c (get_pc_thunk_name): Change prefix to "__x86.get_pc_thunk". · 070f36cf
      	* config/i386/i386.c (get_pc_thunk_name): Change prefix to
      	"__x86.get_pc_thunk".
      his line, and those below, will be ignored--
      
      M    ChangeLog
      M    config/i386/i386.c
      
      From-SVN: r178297
      Bernd Schmidt committed
    • sem_ch6.adb (Check_Return_Subtype_Indication): Issue error if the return object… · 6cce2156
      sem_ch6.adb (Check_Return_Subtype_Indication): Issue error if the return object has an anonymous access type and the...
      
      2011-08-30  Gary Dismukes  <dismukes@adacore.com>
      
      	* sem_ch6.adb (Check_Return_Subtype_Indication): Issue error if the
      	return object has an anonymous access type and the function's type is
      	a named access type.
      	* sem_ch8.adb (Analyze_Object_Renaming): Suppress error about renaming
      	conversions on implicit conversions, since such conversions can occur
      	for anonymous access cases due to expansion. Issue error for attempt
      	to rename an anonymous expression as an object of a named access type.
      	* sem_res.ads (Valid_Conversion): Add defaulted parameter Report_Errs,
      	to indicate whether this function should report errors on invalid
      	conversions.
      	* sem_res.adb (Resolve): For Ada 2012, in the case where the type of
      	the expression is of an anonymous access type and the expected type is
      	a named general access type, rewrite the expression as a type
      	conversion, unless this is an expression of a membership test.
      	(Valid_Conversion.Error_Msg_N): New procedure that conditions the
      	calling of Error_Msg_N on new formal Report_Errs.
      	(Valid_Conversion.Error_Msg_NE): New procedure that conditions the
      	calling of Error_Msg_NE on new formal Report_Errs.
      	(Valid_Conversion): Move declaration of this function to the package
      	spec, to allow calls from membership test processing. For Ada 2012,
      	enforce legality restrictions on implicit conversions of anonymous
      	access values to general access types, disallowing such conversions in
      	cases where the expression has a dynamic accessibility level (access
      	parameters, stand-alone anonymous access objects, or a component of a
      	dereference of one of the first two cases).
      	* sem_type.adb (Covers): For Ada 2012, allow an anonymous access type
      	in the context of a named general access expected type.
      	* exp_ch4.adb Add with and use of Exp_Ch2.
      	(Expand_N_In): Add processing for membership tests applied to
      	expressions of an anonymous access type. First, Valid_Conversion is
      	called to check whether the test is statically False, and then the
      	conversion is expanded to test that the expression's accessibility
      	level is no deeper than that of the tested type. In the case of
      	anonymous access-to-tagged types, a tagged membership test is applied
      	as well.
      	(Tagged_Membership): Extend to handle access type cases, applying the
      	test to the designated types.
      	* exp_ch6.adb (Expand_Call): When creating an extra actual for an
      	accessibility level, and the actual is a 'Access applied to a current
      	instance, pass the accessibility level of the type of the current
      	instance rather than applying Object_Access_Level to the prefix. Add a
      	??? comment, since this level isn't quite right either (will eventually
      	need to pass an implicit level parameter to init procs).
      
      From-SVN: r178296
      Gary Dismukes committed
    • genautomata.c (NO_COMB_OPTION): New macro. · e12da141
      	* genautomata.c (NO_COMB_OPTION): New macro.
      	(no_comb_flag): New static variable.
      	(gen_automata_option): Handle NO_COMB_OPTION.
      	(comb_vect_p): False if no_comb_flag.
      	(add_vect): Move computation of min/max values.  Return early if
      	no_comb_flag.
      	* doc/md.texi (automata_option): Document no-comb-vect.
      
      From-SVN: r178295
      Bernd Schmidt committed
    • [multiple changes] · 747de90b
      2011-08-30  Bob Duff  <duff@adacore.com>
      
      	* s-taskin.ads: Minor comment fix.
      
      2011-08-30  Ed Schonberg  <schonberg@adacore.com>
      
      	* sem_res.adb (Check_Parameterless_Call): If the node is a selected
      	component and the selector is a dispatching operation, check if it is
      	a prefixed call before rewriting as a parameterless function call.
      
      From-SVN: r178294
      Arnaud Charlet committed
    • fix -fbranch-probabilities and adjust testsuite · cb89a171
      From-SVN: r178289
      Christian Bruel committed
    • error_constants.h: Fix commas. · 54e776dc
      2011-08-30  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* config/os/mingw32/error_constants.h: Fix commas.
      
      From-SVN: r178286
      Paolo Carlini committed
    • re PR c++/50224 ([C++0x] bogus unused parameter warning (it is referenced in lambda)) · 809fbdce
      	PR c++/50224
      	* semantics.c (finish_id_expression): Mark captured variables used.
      
      From-SVN: r178277
      Jason Merrill committed
    • re PR c++/50207 (G++ segv's on reduced test case) · e7b6bcf3
      	PR c++/50207
      	* class.c (finish_struct_1): Complain if the first field is
      	artificial.
      
      Co-Authored-By: Jason Merrill <jason@redhat.com>
      
      From-SVN: r178276
      Jakub Jelinek committed
    • re PR c++/50209 ([C++0x] Braced-init-lists are rejected as function default arguments) · 25dd2fdd
      	PR c++/50209
      	Core DR 994
      	* parser.c (cp_parser_default_argument): Use
      	cp_parser_initializer_clause.
      	(cp_parser_late_parsing_default_args): Likewise.
      
      From-SVN: r178275
      Jason Merrill committed
    • Daily bump. · f767e244
      From-SVN: r178269
      GCC Administrator committed
  2. 29 Aug, 2011 26 commits
    • constexpr.cc: Add. · c419868b
      2011-08-29  Benjamin Kosnik  <bkoz@redhat.com>
      
      	* testsuite/20_util/duration/arithmetic/constexpr.cc: Add.
      
      From-SVN: r178265
      Benjamin Kosnik committed
    • Lower calls to bound method expressions. · 1bbf7edb
      From-SVN: r178264
      Ian Lance Taylor committed
    • Don't lower blocks twice. · 27311334
      From-SVN: r178263
      Ian Lance Taylor committed
    • re PR fortran/50225 ([OOP] The allocation status for polymorphic allocatable… · 7a3eeb85
      re PR fortran/50225 ([OOP] The allocation status for polymorphic allocatable function results is not set properly)
      
      2011-08-29  Janus Weil  <janus@gcc.gnu.org>
      
      	PR fortran/50225
      	* trans-decl.c (gfc_generate_function_code): Nullify polymorphic
      	allocatable function results.
      
      2011-08-29  Janus Weil  <janus@gcc.gnu.org>
      
      	PR fortran/50225
      	* gfortran.dg/class_result_1.f03: New.
      
      From-SVN: r178262
      Janus Weil committed
    • Change default for -msave-toc-indirect · 3167ec4a
      From-SVN: r178261
      Michael Meissner committed
    • Change default for -msave-toc-indirect · 4aaf1d15
      From-SVN: r178260
      Michael Meissner committed
    • Makefile.in (../stamp-gnatlib1-$(RTSDIR)): Copy tsystem.h into $(RTSDIR) instead of rts. · cdc4cc65
      	* gcc-interface/Makefile.in (../stamp-gnatlib1-$(RTSDIR)): Copy
      	tsystem.h into $(RTSDIR) instead of rts.
      
      From-SVN: r178259
      Jakub Jelinek committed
    • gthr-posix.h (__gthread_active_p): Do not use preprocessor conditionals and… · e621f530
      gthr-posix.h (__gthread_active_p): Do not use preprocessor conditionals and comments inside macro arguments.
      
      	* gthr-posix.h (__gthread_active_p): Do not use preprocessor
      	conditionals and comments inside macro arguments.
      
      From-SVN: r178258
      Jakub Jelinek committed
    • configure: Regenerated. · edf2239b
      	* configure: Regenerated.
      	* config.h.in: Regenerated.
      	* acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR)  Add
      	checks for ECHILD, ENOSPC, EPERM, ETIMEDOUT, and
      	EWOULDBLOCK.
      	*  config/os/mingw32/error_constants.h (errc): Add
      	enumerator values no_child_process, no_space_on_device,
      	not_supported, operation_not_permitted, operation_would_block,
      	timed_out, and value_too_large,
      
      From-SVN: r178257
      Kai Tietz committed
    • [multiple changes] · 226a7fa4
      2011-08-29  Robert Dewar  <dewar@adacore.com>
      
      	* sem_ch10.adb, a-coorse.adb, exp_dist.adb, exp_ch3.adb: Minor
      	reformatting.
      	* gcc-interface/Make-lang.in: Update dependencies.
      
      2011-08-29  Yannick Moy  <moy@adacore.com>
      
      	* alfa.ads (Name_Of_Heap_Variable): New constant name.
      	* lib-xref-alfa.adb, lib-xref.adb, lib-xref.ads (Drefs): New global
      	table to hold dereferences.
      	(Add_ALFA_Xrefs): Take into account dereferences as special
      	reads/writes to the variable "HEAP".
      	(Enclosing_Subprogram_Or_Package): Move subprogram here.
      	(Generate_Dereference): New procedure to store a read/write dereferencew
      	in the table Drefs.
      	* put_alfa.adb (Put_ALFA): Use different default than (0,0) used for
      	the special "HEAP" var.
      	* sem_ch4.adb (Analyze_Explicit_Dereference): Store read dereference
      	in ALFA mode.
      	* sem_util.adb (Note_Possible_Modification): Store write dereference
      	in ALFA mode.
      
      From-SVN: r178252
      Arnaud Charlet committed
    • exp_ch3.adb (Freeze_Type): Generate an accessibility check which ensures that… · dfbcb149
      exp_ch3.adb (Freeze_Type): Generate an accessibility check which ensures that the level of the subpool...
      
      2011-08-29  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* exp_ch3.adb (Freeze_Type): Generate an accessibility check which
      	ensures that the level of the subpool access type is not deeper than
      	that of the pool object.
      	* sem_util.adb (Object_Access_Level): Expand to handle defining
      	identifiers.
      	* sem_res.adb (Resolve_Allocator): Add a guard to avoid examining the
      	subpool handle name of a rewritten allocator.
      
      From-SVN: r178250
      Hristian Kirtchev committed
    • [multiple changes] · 1df4f514
      2011-08-29  Robert Dewar  <dewar@adacore.com>
      
      	* impunit.adb, exp_ch4.adb, s-finmas.adb: Minor reformatting.
      
      2011-08-29  Thomas Quinot  <quinot@adacore.com>
      
      	* exp_dist.adb (TC_Rec_Add_Process_Element): For a choice with multiple
      	values, we generate multiple triples of parameters in the TypeCode.
      	Bump Choice_Index for each such triple so that a subsequent default
      	choice is associated with the correct index in the typecode.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* a-cdlili.adb (Iterate): Initialize properly an iterator over a null
      	container.
      	(First, Last): Handle properly an iterator over a null container.
      
      2011-08-29  Bob Duff  <duff@adacore.com>
      
      	* sem_ch10.adb (Analyze_With_Clause,Install_Withed_Unit): Abandon
      	processing if we run across a node with no Scope. This can happen if
      	we're with-ing an library-level instance, and that instance got errors
      	that caused "instantiation abandoned".
      	* sem_util.adb (Unit_Declaration_Node): Make it more robust, by raising
      	an exception instead of using Assert, so it won't go into an infinite
      	loop, even when assertions are turned off.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* a-coorse.adb: Proper handling of empty ordered sets.
      
      From-SVN: r178249
      Arnaud Charlet committed
    • [multiple changes] · 14f0f659
      2011-08-29  Johannes Kanig  <kanig@adacore.com>
      
      	* debug.adb: Add comments.
      
      2011-08-29  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* impunit.adb, s-stposu.adb, s-stposu.ads, exp_ch4.adb,
      	s-finmas.adb, s-finmas.ads: Redo previous change.
      
      From-SVN: r178247
      Arnaud Charlet committed
    • [multiple changes] · 8027b455
      2011-08-29  Thomas Quinot  <quinot@adacore.com>
      
      	* a-except.adb, a-except-2005.adb: Minor comment rewording and
      	reformatting.
      
      2011-08-29  Yannick Moy  <moy@adacore.com>
      
      	* sem_ch3.adb (Array_Type_Declaration): Remove insertion of
      	declaration for Itypes in Alfa mode.
      
      From-SVN: r178246
      Arnaud Charlet committed
    • [multiple changes] · d85fd922
      2011-08-29  Robert Dewar  <dewar@adacore.com>
      
      	* a-cdlili.ads, a-coinve.ads, a-coorma.adb, a-coorma.ads, s-tassta.adb,
      	a-cborma.adb, a-cborma.ads, a-cohama.ads, a-coorse.ads, a-cbhama.ads,
      	a-cborse.ads, a-cobove.adb, a-cobove.ads, a-cbhase.ads: Minor
      	reformatting.
      
      2011-08-29  Tristan Gingold  <gingold@adacore.com>
      
      	* exp_ch7.adb, exp_ch7.ads (Build_Exception_Handler): Move its spec to
      	package spec.
      	* exp_intr.adb (Expand_Unc_Deallocation): Use Build_Exception_Handler.
      	* a-except.adb, a-except-2005.adb (Rcheck_22): Do not defer aborts
      	while raising PE.
      
      From-SVN: r178245
      Arnaud Charlet committed
    • [multiple changes] · fd3d2680
      2011-08-29  Robert Dewar  <dewar@adacore.com>
      
      	* a-cbhama.adb, a-cbhama.ads: Minor reformatting.
      
      2011-08-29  Javier Miranda  <miranda@adacore.com>
      
      	* sem_ch8.adb (Analyze_Subprogram_Renaming): Complete support for
      	renamings of formal subprograms when the actual for a formal type is
      	class-wide.
      
      From-SVN: r178244
      Arnaud Charlet committed
    • a-cbhama.ads, [...] (Move): Clear Source following assignment to Target. · dfbf013f
      2011-08-29  Matthew Heaney  <heaney@adacore.com>
      
      	* a-cbhama.ads, a-cbhase.ads (Move): Clear Source following assignment
      	to Target.
      
      2011-08-29  Matthew Heaney  <heaney@adacore.com>
      
      	* a-cborma.ads, a-cborse.ads (Cursor): Default-initialize all
      	components of record type.
      	* a-cborma.adb, a-cborse.adb (Move): Clear Source following assignmentw
      	to Target.
      
      From-SVN: r178243
      Matthew Heaney committed
    • a-cbhama.adb, [...]: Add iterator machinery to container packages. · a6dd3a54
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* a-cbhama.adb, a-cbhama.ads, a-cborma.adb, a-cborma.ads, a-cobove.adb,
      	a-cobove.ads, a-coorma.adb, a-coorma.ads: Add iterator machinery to
      	container packages.
      
      From-SVN: r178242
      Ed Schonberg committed
    • [multiple changes] · c54796e0
      2011-08-29  Robert Dewar  <dewar@adacore.com>
      
      	* sem_ch3.adb, sem_util.adb, gnat1drv.adb, s-parint.ads: Minor
      	reformatting.
      
      2011-08-29  Matthew Heaney  <heaney@adacore.com>
      
      	* a-cbhama.ads, a-cbhase.ads (Cursor): Default-initialize all
      	components of record type.
      
      2011-08-29  Bob Duff  <duff@adacore.com>
      
      	* s-tassta.adb (Task_Wrapper): Handle and ignore exceptions propagated
      	by the termination handler.
      
      From-SVN: r178241
      Arnaud Charlet committed
    • [multiple changes] · 9fd9d2be
      2011-08-29  Yannick Moy  <moy@adacore.com>
      
      	* sem_ch3.adb (Array_Type_Declaration): Create declarations for Itypes
      	created in Alfa mode, instead of inserting artificial declarations of
      	non-Itypes in the tree.
      	* sem_util.adb, sem_util.ads (Itype_Has_Declaration): New function to
      	know if an Itype has a corresponding declaration, as defined in
      	itypes.ads.
      
      2011-08-29  Yannick Moy  <moy@adacore.com>
      
      	* gnat1drv.adb: Minor rewrite.
      
      2011-08-29  Bob Duff  <duff@adacore.com>
      
      	* s-tasuti.adb (Make_Passive): Work around race condition in
      	Make_Independent, which can cause Wait_Count to be zero. So instead of
      	asserting that Wait_Count > 0, and then decrementing it, decrement it
      	only if Wait_Count > 0.
      	* s-taskin.ads (Wait_Count, Alive_Count, Awake_Count): All of these
      	should be nonnegative, so declare them Natural instead of Integer.
      
      From-SVN: r178240
      Arnaud Charlet committed
    • [multiple changes] · 833eaa8a
      2011-08-29  Robert Dewar  <dewar@adacore.com>
      
      	* exp_ch5.adb, sem_ch3.adb, a-cihama.adb, a-cihama.ads, exp_ch7.adb,
      	sem_ch5.adb, a-ciorse.adb, a-ciorse.ads, sem_ch12.adb, a-cidlli.adb,
      	a-cidlli.ads, sem_util.adb, sem_res.adb, gnat1drv.adb, a-except.adb,
      	a-except.ads, a-except-2005.ads, sem_ch4.adb, exp_disp.adb,
      	exp_aggr.adb, sem_ch13.adb, par-ch3.adb: Minor reformatting.
      
      2011-08-29  Tristan Gingold  <gingold@adacore.com>
      
      	* s-auxdec-vms-alpha.adb: Add comments, remove some HT before labels.
      
      2011-08-29  Vadim Godunko  <godunko@adacore.com>
      
      	* s-parint.ads: Minor comment clarification.
      
      2011-08-29  Vincent Celier  <celier@adacore.com>
      
      	* prj.adb (Initialize): Make sure that new reserved words after Ada 95
      	may be used as identifiers.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* a-coinho.ads: Minor reformating.
      
      From-SVN: r178239
      Arnaud Charlet committed
    • [multiple changes] · 3a613a36
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* exp_ch5.adb (Expand_Iterator_Loop): Handle properly a loop over a
      	container of a derived type.
      
      2011-08-29  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* impunit.adb, s-stposu.adb, s-stposu.ads, exp_ch4.adb, s-finmas.adb,
      	s-finmas.ads: Revert previous change.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* a-cidlli.adb, a-cidlli.ads, a-cihama.adb, a-cihama.ads,
      	a-ciorse.adb, a-ciorse.ads: Add iterator machinery to containers.
      
      From-SVN: r178237
      Arnaud Charlet committed
    • [multiple changes] · 14848f57
      2011-08-29  Pascal Obry  <obry@adacore.com>
      
      	* exp_disp.adb: Minor comment fix.
      	(Make_Disp_Asynchronous_Select_Body): Properly initialize out parameters
      	to avoid warnings when compiling with -Wall.
      	(Make_Disp_Conditional_Select_Body): Likewise.
      	(Make_Disp_Timed_Select_Body): Likewise.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* sem_ch12.adb (Analyze_Formal_Subprogram_Declaration): If default is
      	an entity name, generate reference for it.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* exp_ch5.adb (Expand_Iterator_Loop): Uniform handling of "X of S"
      	iterator form.
      	* sem_util.adb (Is_Iterator, Is_Reversible_Iterator): Yield True for
      	the class-wide type.
      	* sem_ch5.adb: Move some rewriting to the expander, where it belongs.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* sem_ch8.adb (Check_Constrained_Object): Do not create an actual
      	subtype for an object whose type is an unconstrained union.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* par-ch3.adb (P_Array_Type_Definiation, P_Component_Items): "aliased"
      	is allowed in a component definition, by AI95-406.
      
      2011-08-29  Matthew Heaney  <heaney@adacore.com>
      
      	* a-chtgbo.adb (Generic_Iteration): Use correct overloading of Next.
      
      2011-08-29  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* a-except-2005.adb: Alphabetize all routines.
      	(Triggered_By_Abort): New routine.
      	* a-except-2005.ads (Triggered_By_Abort): New routine.
      	* a-except.adb Alphabetize all routines.
      	(Triggered_By_Abort): New routine.
      	* a-except.ads (Triggered_By_Abort): New routine.
      	* exp_ch7.adb: Update all comments involving the detection of aborts in
      	finalization code.
      	(Build_Object_Declarations): Do not generate code to detect the
      	presence of an abort at the start of finalization code, use a runtime
      	routine istead.
      	* rtsfind.ads: Add RE_Triggered_By_Abort to tables RE_Id and
      	RE_Unit_Table.
      	* sem_res.adb (Resolve_Allocator): Emit a warning when attempting to
      	allocate a task on a subpool.
      	* s-stposu.adb: Add library-level flag Finalize_Address_Table_In_Use.
      	The flag disables all actions related to the maintenance of
      	Finalize_Address_Table when subpools are not in use.
      	(Allocate_Any_Controlled): Signal the machinery that subpools are in
      	use.
      	(Deallocate_Any_Controlled): Do not call Delete_Finalize_Address which
      	performs costly task locking when subpools are not in use.
      
      From-SVN: r178236
      Arnaud Charlet committed
    • [multiple changes] · 57a8057a
      2011-08-29  Yannick Moy  <moy@adacore.com>
      
      	* gnat1drv.adb (Adjust_Global_Switches): Restore expansion of tagged
      	types and dispatching calls in Alfa mode.
      	* lib-xref-alfa.adb (Collect_ALFA): Rewrite computation of
      	correspondance between body and spec scopes, to reuse utility functions
      	(Traverse_Declarations_Or_Statements): Protect access to body for stub
      	by testing the presence of the library unit for the body
      	* sem_ch6.adb (Set_Actual_Subtypes): take into account that in Alfa
      	mode the expansion of accept statements is skipped
      	* sem_util.adb, sem_util.ads (Unique_Entity): New function returning
      	the unique entity corresponding to the one returned by
      	Unique_Defining_Entity applied to the enclosing declaration of the
      	argument.
      
      2011-08-29  Bob Duff  <duff@adacore.com>
      
      	* treepr.ads: Improve debugging facilities. pn(x) no longer crashes in
      	gdb when x is not a node (it can be a node list, name_id, etc). pp is
      	an alias for pn. ppp is an alias for pt.
      
      2011-08-29  Javier Miranda  <miranda@adacore.com>
      
      	* exp_aggr.adb (Expand_Record_Aggregate): Use the top-level enclosing
      	aggregate to take a consistent decision on the need to convert into
      	assignments aggregates that initialize constant objects.
      
      2011-08-29  Hristian Kirtchev  <kirtchev@adacore.com>
      
      	* exp_ch4.adb (Expand_Allocator_Expression): Add a call to
      	Build_Allocate_Deallocate_Proc in order to handle allocation of
      	non-controlled objects on subpools.
      	* impunit.adb: Remove s-finmas and s-spsufi since they were never meant
      	to be end-user visible.
      	* s-finmas.adb: Add with and use clause for System.HTable.
      	Add an instantiation of Simple_HTable which provides a mapping between
      	the address of a controlled object and the corresponding
      	Finalize_Address used to clean up the object. The table is used when a
      	master is operating in heterogeneous mode.
      	(Attach): Explain why the input node is not verified on being already
      	attached.
      	(Delete_Finalize_Address): New routine.
      	(Detach): Add pragma Assert which ensures that a node is already
      	attached.
      	(Finalize): Add local variable Cleanup. Rewrite the iteration scheme
      	since nodes are no longer removed on traversal. Explain why node
      	detachment is undesirable in this case.
      	(Get_Finalize_Address): New routine.
      	(Hash): New routine.
      	(Is_Empty_List): Removed.
      	(pm): Renamed to Print_Master. Add output for discriminant
      	Is_Homogeneous.
      	Comment reformatting.
      	(Set_Finalize_Address (Address, Finalize_Address_Ptr)): New routine.
      	* s-finmas.ads: Various comments additions / improvements.
      	Type Finalization_Master has a discriminant which determines the mode of
      	operation.
      	(Delete_Finalize_Address): New routine.
      	(Get_Finalize_Address): New routine.
      	(pm): Renamed to Print_Master.
      	(Set_Finalize_Address (Address, Finalize_Address_Ptr)): New routine.
      	* s-stposu.adb: Add with clause for System.Address_Image; Add with and
      	use clause for System.IO.
      	(Allocate_Any_Controlled): Add machinery to set TSS primitive
      	Finalize_Address depending on the mode of allocation and the mode of
      	the master.
      	(Deallocate_Any_Controlled): Remove the relation pair object -
      	Finalize_Address regardless of the master mode. Add comment explaining
      	the reason.
      	(Detach): Ensure that fields Prev and Next are null after detachment.
      	(Finalize_Pool): Remove local variable Next_Ptr. Rewrite the iteration
      	scheme to check whether the list of subpools is empty. There is no
      	longer need to store the next subpool or advance the current pointer.
      	(Is_Empty_List): New routine.
      	(Print_Pool): New routine.
      	(Print_Subpool): New routine.
      	* s-stposu.ads: Various comments additions / improvements.
      	Field Master of type Root_Subpool is now a heterogeneous collection.
      	(Print_Pool): New routine.
      	(Print_Subpool): New routine.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* exp_ch5.adb (Expand_N_Iterator_Loop): Implement Ada2012 loop iterator
      	forms, using aspects of container types.
      	* sem_ch3.adb (Find_Type_Name): Preserve Has_Delayed_Aspects and
      	Has_Implicit_Dereference flags, that may be set on the partial view.
      	* sem_ch4.adb (Process_Overloaded_Indexed_Component): Prefix may be a
      	container type with an indexing aspect.
      	(Analyze_Quantified_Expression): Analyze construct with expansion
      	disabled, because it will be rewritten as a loop during expansion.
      	(Try_Container_Indexing): The prefix itself may be a container type
      	with an indexing aspect, as with a vector of vectors.
      	* sem_ch5.adb (Analyze_Iteration_Scheme): In a generic context, analyze
      	the original doamin of iteration, for name capture.
      	(Analyze_Iterator_Specification): If the domain is an expression that
      	needs finalization, create a separate declaration for it.
      	For an iterator with "of" retrieve default iterator info from aspect of
      	container type. For "in" iterator, retrieve type of Iterate function.
      	* sem_ch13.adb (Check_Iterator_Function): Fix typo.
      	(Check_Aspect_At_End_Of_Declaration): Make type unfrozen before
      	analysis, to prevent spurious errors about late attributes.
      	* sprint.adb: Handle quantified expression with either loop or iterator
      	specification.
      	* a-convec.ads, a-convec.adb: Iterate function returns a reversible
      	iterator.
      
      From-SVN: r178235
      Arnaud Charlet committed
    • 2011-08-29 Paolo Carlini <paolo.carlini@oracle.com> · 9fdf1422
      	* Tweak last ChangeLog entry.
      
      From-SVN: r178234
      Paolo Carlini committed
    • [multiple changes] · ddf67a1d
      2011-08-29  Vincent Celier  <celier@adacore.com>
      
      	* make.adb (Scan_Make_Arg): Take any option as is in packages Compiler,
      	Binder or Linker of the main project file.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* inline.adb (Add_Scopes_To_Clean): Exclude any entity within a generic
      	unit.
      
      2011-08-29  Yannick Moy  <moy@adacore.com>
      
      	* exp_ch9.adb: Partial revert of previous change for Alfa mode
      
      2011-08-29  Yannick Moy  <moy@adacore.com>
      
      	* exp_ch11.adb: Minor expansion of comment.
      
      2011-08-29  Yannick Moy  <moy@adacore.com>
      
      	* lib-xref-alfa.adb (Add_ALFA_Scope): Treat generic entities.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* sem_res.adb (Resolve_Arithmetic_Op): If the node has a universal
      	interpretation, set the type before resolving the operands, because
      	legality checks on an exponention operand need to know the type of the
      	context.
      
      2011-08-29  Ed Schonberg  <schonberg@adacore.com>
      
      	* sem_ch12.adb (Analyze_Package_Instantiation): Do not set delayed
      	cleanups on a master if the instance is within a generic unit.
      	Complement to the corresponding fix to inline.adb for K520-030.
      
      2011-08-29  Tristan Gingold  <gingold@adacore.com>
      
      	* exp_ch7.adb (Build_Raise_Statement): Raise PE instead of the current
      	occurrence.
      	* exp_intr.adb: Minor comment fix.
      
      2011-08-29  Bob Duff  <duff@adacore.com>
      
      	* sem_ch13.adb (Analyze_Aspect_Specifications): Fix cases where
      	Delay_Required was used as an uninitialized variable.
      
      From-SVN: r178233
      Arnaud Charlet committed