diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-07-30 16:57:28 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-07-30 16:57:28 +0200 |
commit | 8e8889204245049467914f72b9ff664f31e56e24 (patch) | |
tree | 3a9f0a9cf2cbc3f681d537a7013b511b331160b0 /gcc/ada/makeutl.adb | |
parent | 63a4aa4375a94ca120752f77fc1376f03144722c (diff) | |
download | gcc-8e8889204245049467914f72b9ff664f31e56e24.tar.gz |
[multiple changes]
2014-07-30 Hristian Kirtchev <kirtchev@adacore.com>
* checks.adb (Make_Bignum_Block): Use the new secondary stack
build routines to manage the mark.
* exp_ch7.adb (Create_Finalizer, Expand_Cleanup_Actions):
Use the new secodary stack build routines to manage the mark.
(Insert_Actions_In_Scope_Around): Add new formal parameter
Manage_SS along with comment on its usage. Code and comment
reformatting. Mark and release the secondary stack when the
context warrants it.
(Make_Transient_Block): Update the call
to Insert_Actions_In_Scope_Around to account for parameter Manage_SS.
(Wrap_Transient_Declaration): Remove local variable
Uses_SS. Ensure that the secondary stack is marked and released
when the related object declaration appears in a library level
package or package body. Code and comment reformatting.
* exp_util.ads, exp_util.adb (Build_SS_Mark_Call): New routine.
(Build_SS_Release_Call): New routine.
2014-07-30 Steve Baird <baird@adacore.com>
* exp_attr.adb: Revert previous change, not needed after all.
2014-07-30 Vincent Celier <celier@adacore.com>
* makeutl.adb (Queue.Insert_Project_Sources): Insert with
Closure => True for interfaces of Stand-Alone Libraries.
* makeutl.ads (Source_Info (Format => Gprbuild)): Add new
Boolean component Closure, defaulted to False.
2014-07-30 Yannick Moy <moy@adacore.com>
* sem_res.adb: Fix typo in error message.
From-SVN: r213291
Diffstat (limited to 'gcc/ada/makeutl.adb')
-rw-r--r-- | gcc/ada/makeutl.adb | 70 |
1 files changed, 57 insertions, 13 deletions
diff --git a/gcc/ada/makeutl.adb b/gcc/ada/makeutl.adb index 3fde64d083e..51f95692f76 100644 --- a/gcc/ada/makeutl.adb +++ b/gcc/ada/makeutl.adb @@ -2754,9 +2754,10 @@ package body Makeutl is Debug_Output (" -> ", Name_Id (Root_Source.Display_File)); Dummy := Queue.Insert_No_Roots - (Source => (Format => Format_Gprbuild, - Tree => Source.Tree, - Id => Root_Source)); + (Source => (Format => Format_Gprbuild, + Tree => Source.Tree, + Id => Root_Source, + Closure => False)); Initialize_Source_Record (Root_Source); @@ -2926,8 +2927,10 @@ package body Makeutl is -- False, put the Ada sources only when they are in a library -- project. - Iter : Source_Iterator; - Source : Prj.Source_Id; + Iter : Source_Iterator; + Source : Prj.Source_Id; + OK : Boolean; + Closure : Boolean; begin -- Nothing to do when "-u" was specified and some files were @@ -2971,10 +2974,46 @@ package body Makeutl is or else Source.Project.Library) and then not Is_Subunit (Source) then - Queue.Insert - (Source => (Format => Format_Gprbuild, - Tree => Tree, - Id => Source)); + OK := True; + Closure := False; + + if Source.Unit /= No_Unit_Index + and then Source.Project.Library + and then Source.Project.Standalone_Library /= No + then + -- Check if the unit is in the interface + OK := False; + + declare + List : String_List_Id := + Source.Project.Lib_Interface_ALIs; + Element : String_Element; + + begin + while List /= Nil_String loop + Element := + Project_Tree.Shared.String_Elements.Table + (List); + + if Element.Value = Name_Id (Source.Dep_Name) + then + OK := True; + Closure := True; + exit; + end if; + + List := Element.Next; + end loop; + end; + end if; + + if OK then + Queue.Insert + (Source => (Format => Format_Gprbuild, + Tree => Tree, + Id => Source, + Closure => Closure)); + end if; end if; end if; end if; @@ -3064,9 +3103,10 @@ package body Makeutl is or else Src_Id.Project.Library_Kind = Static) then Queue.Insert - (Source => (Format => Format_Gprbuild, - Tree => Project_Tree, - Id => Src_Id)); + (Source => (Format => Format_Gprbuild, + Tree => Project_Tree, + Id => Src_Id, + Closure => True)); end if; end if; end loop; @@ -3151,7 +3191,11 @@ package body Makeutl is Data.Need_Linking := False; else - Data.Closure_Needed := Has_Mains; + Data.Closure_Needed := + Has_Mains + or else + (Root_Project.Library + and then Root_Project.Standalone_Library /= No); Data.Need_Compilation := All_Phases or Option_Compile_Only; Data.Need_Binding := All_Phases or Option_Bind_Only; Data.Need_Linking := (All_Phases or Option_Link_Only) |