From: Bob Duff Date: Tue, 11 Feb 2020 00:21:00 +0000 (-0500) Subject: [Ada] gnatbind: Deterministic No_Entry_Calls_In_Elaboration_Code messages X-Git-Tag: upstream/12.2.0~15920 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d2f7fa08bd557db89d771b648631bb98c61a631e;p=platform%2Fupstream%2Fgcc.git [Ada] gnatbind: Deterministic No_Entry_Calls_In_Elaboration_Code messages 2020-06-08 Bob Duff gcc/ada/ * bindo-graphs.adb (function Add_Edge): Rename Add_Edge_With_Return to Add_Edge; we can tell it returns because it's a function, and overloading seems appropriate in this case. If Activates_Task=True, and we're not going to add a new edge because an existing Pred-->Succ edge already exists, then set Activates_Task to True on the preexisting edge. This ensures that the message: info: use pragma Restrictions (No_Entry_Calls_In_Elaboration_Code) appears when appropriate, no matter in what order the edges happened to be processed. (procedure Add_Edge): Remove redundant assertions. (Activates_Task): Other kinds of edges can have Activates_Task=True. For example, if we had a With_Edge and then an Invocation_Edge with Activates_Task=True, then the With_Edge has Activates_Task set to True. (Add_Edge_Kind_Check): New procedure to prevent other bugs of this nature. For example, if we were to sometimes call Add_Edge for a Spec_Before_Body_Edge followed by Add_Edge for a With_Edge, and sometimes in the other order, that would cause a similar bug to what we're fixing here. (Set_Is_Recorded_Edge): Val parameter is not used. Get rid of it. (Set_Activates_Task): New procedure to set the Activates_Task flag. * bindo-graphs.ads (Library_Graph_Edge_Kind): Reorder the enumeration literals to facilitate Add_Edge_Kind_Check. * ali.adb (Known_ALI_Lines): The comment about "still available" was wrong. Fix that by erasing the comment, and encoding the relevant information in real code. Take advantage of Ada's full coverage rules by removing "others =>". Also DRY. --- diff --git a/gcc/ada/ali.adb b/gcc/ada/ali.adb index ec3fbe8..6b0d6c7 100644 --- a/gcc/ada/ali.adb +++ b/gcc/ada/ali.adb @@ -242,31 +242,33 @@ package body ALI is -- The following variable records which characters currently are used as -- line type markers in the ALI file. This is used in Scan_ALI to detect - -- (or skip) invalid lines. The following letters are still available: - -- - -- B F H J K O Q Z + -- (or skip) invalid lines. Known_ALI_Lines : constant array (Character range 'A' .. 'Z') of Boolean := - ('A' => True, -- argument - 'C' => True, -- SCO information - 'D' => True, -- dependency - 'E' => True, -- external - 'G' => True, -- invocation graph - 'I' => True, -- interrupt - 'L' => True, -- linker option - 'M' => True, -- main program - 'N' => True, -- notes - 'P' => True, -- program - 'R' => True, -- restriction - 'S' => True, -- specific dispatching - 'T' => True, -- task stack information - 'U' => True, -- unit - 'V' => True, -- version - 'W' => True, -- with - 'X' => True, -- xref - 'Y' => True, -- limited_with - 'Z' => True, -- implicit with from instantiation - others => False); + ('A' | -- argument + 'C' | -- SCO information + 'D' | -- dependency + 'E' | -- external + 'G' | -- invocation graph + 'I' | -- interrupt + 'L' | -- linker option + 'M' | -- main program + 'N' | -- notes + 'P' | -- program + 'R' | -- restriction + 'S' | -- specific dispatching + 'T' | -- task stack information + 'U' | -- unit + 'V' | -- version + 'W' | -- with + 'X' | -- xref + 'Y' | -- limited_with + 'Z' -- implicit with from instantiation + => True, + + -- Still available: + + 'B' | 'F' | 'H' | 'J' | 'K' | 'O' | 'Q' => False); ------------------------------ -- Add_Invocation_Construct -- diff --git a/gcc/ada/bindo-graphs.adb b/gcc/ada/bindo-graphs.adb index 5f2bcdd..cb9cb12 100644 --- a/gcc/ada/bindo-graphs.adb +++ b/gcc/ada/bindo-graphs.adb @@ -1060,18 +1060,30 @@ package body Bindo.Graphs is -- corresponding specs or bodies, where the body is a predecessor -- and the spec is a successor. Add all edges to list Edges. - function Add_Edge_With_Return + procedure Add_Edge_Kind_Check + (G : Library_Graph; + Pred : Library_Graph_Vertex_Id; + Succ : Library_Graph_Vertex_Id; + Kind : Library_Graph_Edge_Kind); + -- This is called by Add_Edge in the case where there is already a + -- Pred-->Succ edge, to assert that the new Kind is appropriate. Raises + -- Program_Error if a bug is detected. The purpose is to prevent bugs + -- where calling Add_Edge in different orders produces different output. + + function Add_Edge (G : Library_Graph; Pred : Library_Graph_Vertex_Id; Succ : Library_Graph_Vertex_Id; Kind : Library_Graph_Edge_Kind; Activates_Task : Boolean) return Library_Graph_Edge_Id; - pragma Inline (Add_Edge_With_Return); + pragma Inline (Add_Edge); -- Create a new edge in library graph G with source vertex Pred and -- destination vertex Succ, and return its handle. Kind denotes the -- nature of the edge. Activates_Task should be set when the edge -- involves a task activation. If Pred and Succ are already related, - -- no edge is created and No_Library_Graph_Edge is returned. + -- no edge is created and No_Library_Graph_Edge is returned, but if + -- Activates_Task is True, then the flag of the existing edge is + -- updated. function At_Least_One_Edge_Satisfies (G : Library_Graph; @@ -1277,6 +1289,12 @@ package body Bindo.Graphs is -- * Cycle_Limit is the upper bound of the number of cycles to be -- discovered. + function Find_Edge + (G : Library_Graph; + Pred : Library_Graph_Vertex_Id; + Succ : Library_Graph_Vertex_Id) return Library_Graph_Edge_Id; + -- There must be an edge Pred-->Succ; this returns it + function Find_First_Lower_Precedence_Cycle (G : Library_Graph; Cycle : Library_Graph_Cycle_Id) return Library_Graph_Cycle_Id; @@ -1502,6 +1520,11 @@ package body Bindo.Graphs is -- is the number of invocation edges along the cycle path. Indent is -- the desired indentation level for tracing. + procedure Set_Activates_Task + (G : Library_Graph; + Edge : Library_Graph_Edge_Id); + -- Set the Activates_Task flag of the Edge to True + procedure Set_Component_Attributes (G : Library_Graph; Comp : Component_Id; @@ -1518,11 +1541,10 @@ package body Bindo.Graphs is procedure Set_Is_Recorded_Edge (G : Library_Graph; - Rel : Predecessor_Successor_Relation; - Val : Boolean := True); + Rel : Predecessor_Successor_Relation); pragma Inline (Set_Is_Recorded_Edge); -- Mark a predecessor vertex and a successor vertex described by - -- relation Rel as already linked depending on value Val. + -- relation Rel as already linked. procedure Set_LGC_Attributes (G : Library_Graph; @@ -1635,12 +1657,7 @@ package body Bindo.Graphs is Edge : Library_Graph_Edge_Id) return Boolean is begin - pragma Assert (Present (G)); - pragma Assert (Present (Edge)); - - return - Kind (G, Edge) = Invocation_Edge - and then Get_LGE_Attributes (G, Edge).Activates_Task; + return Get_LGE_Attributes (G, Edge).Activates_Task; end Activates_Task; ------------------------------- @@ -1674,7 +1691,7 @@ package body Bindo.Graphs is -- the body may be visited first, yet Corresponding_Item will still -- attempt to create the Body_Before_Spec edge. This is OK because -- successor and predecessor are kept consistent in both cases, and - -- Add_Edge_With_Return will prevent the creation of the second edge. + -- Add_Edge will prevent the creation of the second edge. -- Assume that no Body_Before_Spec is necessary @@ -1684,7 +1701,7 @@ package body Bindo.Graphs is if Is_Body_With_Spec (G, Vertex) then Edge := - Add_Edge_With_Return + Add_Edge (G => G, Pred => Vertex, Succ => Corresponding_Item (G, Vertex), @@ -1695,7 +1712,7 @@ package body Bindo.Graphs is elsif Is_Spec_With_Body (G, Vertex) then Edge := - Add_Edge_With_Return + Add_Edge (G => G, Pred => Corresponding_Item (G, Vertex), Succ => Vertex, @@ -1745,30 +1762,72 @@ package body Bindo.Graphs is Kind : Library_Graph_Edge_Kind; Activates_Task : Boolean) is - Edge : Library_Graph_Edge_Id; - pragma Unreferenced (Edge); - - begin - pragma Assert (Present (G)); - pragma Assert (Present (Pred)); - pragma Assert (Present (Succ)); - pragma Assert (Kind /= No_Edge); - pragma Assert (not Activates_Task or else Kind = Invocation_Edge); - - Edge := - Add_Edge_With_Return + Ignore : constant Library_Graph_Edge_Id := + Add_Edge (G => G, Pred => Pred, Succ => Succ, Kind => Kind, Activates_Task => Activates_Task); + begin + null; end Add_Edge; - -------------------------- - -- Add_Edge_With_Return -- - -------------------------- + ------------------------- + -- Add_Edge_Kind_Check -- + ------------------------- + + procedure Add_Edge_Kind_Check + (G : Library_Graph; + Pred : Library_Graph_Vertex_Id; + Succ : Library_Graph_Vertex_Id; + Kind : Library_Graph_Edge_Kind) + is + Old_Edge : constant Library_Graph_Edge_Id := + Find_Edge (G, Pred, Succ); + Attributes : constant Library_Graph_Edge_Attributes := + Get_LGE_Attributes (G, Old_Edge); + OK : Boolean; + begin + case Kind is + -- We call Add_Edge with Body_Before_Spec_Edge twice -- once + -- for the spec and once for the body, but no other Kind can + -- be spec-->body. + + when Body_Before_Spec_Edge => + OK := Attributes.Kind = Body_Before_Spec_Edge; + + -- Spec_Before_Body_Edge comes first + + when Spec_Before_Body_Edge => + OK := False; + + -- With clauses and forced edges come after Spec_Before_Body_Edge + + when With_Edge | Elaborate_Edge | Elaborate_All_Edge + | Forced_Edge => + OK := Attributes.Kind <= Kind; + + -- Invocation_Edge can come after anything, including another + -- Invocation_Edge. + + when Invocation_Edge => + OK := True; + + when No_Edge => + OK := False; + end case; + + if not OK then + raise Program_Error; + end if; + end Add_Edge_Kind_Check; + + -------------- + -- Add_Edge -- + -------------- - function Add_Edge_With_Return + function Add_Edge (G : Library_Graph; Pred : Library_Graph_Vertex_Id; Succ : Library_Graph_Vertex_Id; @@ -1778,19 +1837,29 @@ package body Bindo.Graphs is pragma Assert (Present (G)); pragma Assert (Present (Pred)); pragma Assert (Present (Succ)); - pragma Assert (Kind /= No_Edge); + pragma Assert (Kind = Invocation_Edge or else not Activates_Task); + -- Only invocation edges can activate tasks Rel : constant Predecessor_Successor_Relation := - (Predecessor => Pred, - Successor => Succ); + (Predecessor => Pred, Successor => Succ); Edge : Library_Graph_Edge_Id; begin - -- Nothing to do when the predecessor and successor are already - -- related by an edge. + -- If we already have a Pred-->Succ edge, we don't add another + -- one. But we need to update Activates_Task, in order to avoid + -- depending on the order of processing of edges. If we have + -- Pred-->Succ with Activates_Task=True, and another Pred-->Succ with + -- Activates_Task=False, we want Activates_Task to be True no matter + -- which order we processed those two Add_Edge calls. if Is_Recorded_Edge (G, Rel) then + pragma Debug (Add_Edge_Kind_Check (G, Pred, Succ, Kind)); + + if Activates_Task then + Set_Activates_Task (G, Find_Edge (G, Pred, Succ)); + end if; + return No_Library_Graph_Edge; end if; @@ -1834,7 +1903,7 @@ package body Bindo.Graphs is Increment_Library_Graph_Edge_Count (G, Kind); return Edge; - end Add_Edge_With_Return; + end Add_Edge; ---------------- -- Add_Vertex -- @@ -3141,6 +3210,44 @@ package body Bindo.Graphs is LGV_Lists.Destroy (Visited_Stack); end Find_Cycles_In_Component; + --------------- + -- Find_Edge -- + --------------- + + function Find_Edge + (G : Library_Graph; + Pred : Library_Graph_Vertex_Id; + Succ : Library_Graph_Vertex_Id) return Library_Graph_Edge_Id + is + Result : Library_Graph_Edge_Id := No_Library_Graph_Edge; + Edge : Library_Graph_Edge_Id; + Iter : Edges_To_Successors_Iterator := + Iterate_Edges_To_Successors (G, Pred); + + begin + -- IMPORTANT: + -- + -- * The iteration must run to completion in order to unlock the + -- edges to successors. + + -- This does a linear search through the successors of Pred. + -- Efficiency is not a problem, because this is called only when + -- Activates_Task is True, which is rare, and anyway, there aren't + -- usually large numbers of successors. + + while Has_Next (Iter) loop + Next (Iter, Edge); + + if Succ = Successor (G, Edge) then + pragma Assert (not Present (Result)); + Result := Edge; + end if; + end loop; + + pragma Assert (Present (Result)); + return Result; + end Find_Edge; + --------------------------------------- -- Find_First_Lower_Precedence_Cycle -- --------------------------------------- @@ -4459,9 +4566,6 @@ package body Bindo.Graphs is Edge : Library_Graph_Edge_Id) return Library_Graph_Edge_Kind is begin - pragma Assert (Present (G)); - pragma Assert (Present (Edge)); - return Get_LGE_Attributes (G, Edge).Kind; end Kind; @@ -5097,6 +5201,21 @@ package body Bindo.Graphs is and then LGE_Lists.Equal (Left.Path, Right.Path); end Same_Library_Graph_Cycle_Attributes; + ------------------------ + -- Set_Activates_Task -- + ------------------------ + + procedure Set_Activates_Task + (G : Library_Graph; + Edge : Library_Graph_Edge_Id) + is + Attributes : Library_Graph_Edge_Attributes := + Get_LGE_Attributes (G, Edge); + begin + Attributes.Activates_Task := True; + Set_LGE_Attributes (G, Edge, Attributes); + end Set_Activates_Task; + ------------------------------ -- Set_Component_Attributes -- ------------------------------ @@ -5175,19 +5294,14 @@ package body Bindo.Graphs is procedure Set_Is_Recorded_Edge (G : Library_Graph; - Rel : Predecessor_Successor_Relation; - Val : Boolean := True) + Rel : Predecessor_Successor_Relation) is begin pragma Assert (Present (G)); pragma Assert (Present (Rel.Predecessor)); pragma Assert (Present (Rel.Successor)); - if Val then - RE_Sets.Insert (G.Recorded_Edges, Rel); - else - RE_Sets.Delete (G.Recorded_Edges, Rel); - end if; + RE_Sets.Insert (G.Recorded_Edges, Rel); end Set_Is_Recorded_Edge; ------------------------ @@ -5211,9 +5325,9 @@ package body Bindo.Graphs is ------------------------ procedure Set_LGE_Attributes - (G : Library_Graph; + (G : Library_Graph; Edge : Library_Graph_Edge_Id; - Val : Library_Graph_Edge_Attributes) + Val : Library_Graph_Edge_Attributes) is begin pragma Assert (Present (G)); diff --git a/gcc/ada/bindo-graphs.ads b/gcc/ada/bindo-graphs.ads index 5e10566..21278aa 100644 --- a/gcc/ada/bindo-graphs.ads +++ b/gcc/ada/bindo-graphs.ads @@ -702,7 +702,10 @@ package Bindo.Graphs is No_Cycle_Kind); - -- The following type represents the various kinds of library edges + -- The following type represents the various kinds of library edges. + -- The order is important here, and roughly corresponds to the order + -- in which edges are added to the graph. See Add_Edge_Kind_Check for + -- details. type Library_Graph_Edge_Kind is (Body_Before_Spec_Edge, @@ -710,6 +713,12 @@ package Bindo.Graphs is -- special edge kind used only during the discovery of components. -- Note that a body can never be elaborated before its spec. + Spec_Before_Body_Edge, + -- Successor denotes a body, Predecessor denotes a spec + + With_Edge, + -- Successor withs Predecessor + Elaborate_Edge, -- Successor withs Predecessor, and has pragma Elaborate for it @@ -724,12 +733,6 @@ package Bindo.Graphs is -- An invocation construct in unit Successor invokes a target in unit -- Predecessor. - Spec_Before_Body_Edge, - -- Successor denotes a body, Predecessor denotes a spec - - With_Edge, - -- Successor withs Predecessor - No_Edge); -----------