diff options
author | Ed Schonberg <schonberg@adacore.com> | 2011-08-29 08:56:40 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-29 10:56:40 +0200 |
commit | 864a4236aa8d090625b2a5442f1b41fa06ddb106 (patch) | |
tree | 053d7f2627ce5d5732ccbfc23c0ee805a8600855 /gcc/ada/atree.ads | |
parent | 7f394c1d9bbd3a480f4abfbc0aca8a4e755211a8 (diff) | |
download | gcc-864a4236aa8d090625b2a5442f1b41fa06ddb106.tar.gz |
atree.ads, atree.adb (Copy_Separate_List): New function that applies Copy_Separate_Tree to a list of nodes.
2011-08-29 Ed Schonberg <schonberg@adacore.com>
* atree.ads, atree.adb (Copy_Separate_List): New function that applies
Copy_Separate_Tree to a list of nodes. Used to create disjoint copies
of statement lists that may contain local declarations.
(Expand_N_Timed_Entry_Call): Use Copy_Separate_List to duplicate the
triggering statements needed for the expansion of this construct, when
the trigger is a dispatching call to a synchronized primitive.
From-SVN: r178169
Diffstat (limited to 'gcc/ada/atree.ads')
-rw-r--r-- | gcc/ada/atree.ads | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/gcc/ada/atree.ads b/gcc/ada/atree.ads index 6538a19cf6c..e75a95f5cf6 100644 --- a/gcc/ada/atree.ads +++ b/gcc/ada/atree.ads @@ -429,16 +429,20 @@ package Atree is -- Source to be Empty, in which case Relocate_Node simply returns -- Empty as the result. + function Copy_Separate_List (Source : List_Id) return List_Id; + -- Apply the following to a list of nodes + function Copy_Separate_Tree (Source : Node_Id) return Node_Id; -- Given a node that is the root of a subtree, Copy_Separate_Tree copies -- the entire syntactic subtree, including recursively any descendants -- whose parent field references a copied node (descendants not linked to -- a copied node by the parent field are also copied.) The parent pointers -- in the copy are properly set. Copy_Separate_Tree (Empty/Error) returns - -- Empty/Error. The semantic fields are not copied and the new subtree - -- does not share any entity with source subtree. - -- But the code *does* copy semantic fields, and the description above - -- is in any case unclear on this point ??? (RBKD) + -- Empty/Error. The new subtree does not share entities with the source, + -- but has new entities with the same name. Most of the time this routine + -- is called on an unanalyzed tree, and no semantic information is copied. + -- However, to ensure that no entities are shared between the two when the + -- source is already analyzed, entity fields in the copy are zeroed out. procedure Exchange_Entities (E1 : Entity_Id; E2 : Entity_Id); -- Exchange the contents of two entities. The parent pointers are switched @@ -449,16 +453,15 @@ package Atree is -- two entities may be list members. function Extend_Node (Node : Node_Id) return Entity_Id; - -- This function returns a copy of its input node with an extension - -- added. The fields of the extension are set to Empty. Due to the way - -- extensions are handled (as four consecutive array elements), it may - -- be necessary to reallocate the node, so that the returned value is - -- not the same as the input value, but where possible the returned - -- value will be the same as the input value (i.e. the extension will - -- occur in place). It is the caller's responsibility to ensure that - -- any pointers to the original node are appropriately updated. This - -- function is used only by Sinfo.CN to change nodes into their - -- corresponding entities. + -- This function returns a copy of its input node with an extension added. + -- The fields of the extension are set to Empty. Due to the way extensions + -- are handled (as four consecutive array elements), it may be necessary + -- to reallocate the node, so that the returned value is not the same as + -- the input value, but where possible the returned value will be the same + -- as the input value (i.e. the extension will occur in place). It is the + -- caller's responsibility to ensure that any pointers to the original node + -- are appropriately updated. This function is used only by Sinfo.CN to + -- change nodes into their corresponding entities. type Report_Proc is access procedure (Target : Node_Id; Source : Node_Id); @@ -475,7 +478,7 @@ package Atree is -- the results of Process calls. See below for details. generic - with function Process (N : Node_Id) return Traverse_Result is <>; + with function Process (N : Node_Id) return Traverse_Result is <>; function Traverse_Func (Node : Node_Id) return Traverse_Final_Result; -- This is a generic function that, given the parent node for a subtree, -- traverses all syntactic nodes of this tree, calling the given function @@ -501,7 +504,7 @@ package Atree is -- all calls to process returned either OK, OK_Orig, or Skip). generic - with function Process (N : Node_Id) return Traverse_Result is <>; + with function Process (N : Node_Id) return Traverse_Result is <>; procedure Traverse_Proc (Node : Node_Id); pragma Inline (Traverse_Proc); -- This is the same as Traverse_Func except that no result is returned, |