home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / nlists.ads < prev    next >
Text File  |  1996-09-28  |  13KB  |  268 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                               N L I S T S                                --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.14 $                              --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  This package provides facilities for manipulating lists of nodes (see
  27. --  package Atree for format and implementation of tree nodes). The Link field
  28. --  of the nodes is used as the forward pointer for these lists. See also
  29. --  package Elists which provides another form of lists that are not threaded
  30. --  through the nodes (and therefore allow nodes to be on multiple lists).
  31.  
  32. with System;
  33. with Types; use Types;
  34.  
  35. package Nlists is
  36.  
  37.    --  A node list is a list that is threaded through nodes (using the Link
  38.    --  field). This means that it takes minimum space, but a node can be on
  39.    --  at most one such node list. For each node list, a list header is
  40.    --  allocated in the lists table, and a List_Id value references this
  41.    --  header which may be used to access the nodes in the list using the
  42.    --  set of routines that define the interface.
  43.  
  44.    --  Note: node lists can contain either nodes or entities (extended nodes)
  45.    --  or a mixture of nodes and extended nodes.
  46.  
  47.    function Last_List_Id return List_Id;
  48.    pragma Inline (Last_List_Id);
  49.    --  Returns Id of last allocated list header
  50.  
  51.    function Lists_Address return System.Address;
  52.    pragma Inline (Lists_Address);
  53.    --  Return address of Lists table (used in Back_End for Gigi call)
  54.  
  55.    function Num_Lists return Nat;
  56.    pragma Inline (Num_Lists);
  57.    --  Number of currently allocated lists
  58.  
  59.    function New_List return List_Id;
  60.    --  Creates a new empty node list. Typically this is used to initialize
  61.    --  a field in some other node which points to a node list where the list
  62.    --  is then subsequently filled in using Append calls.
  63.  
  64.    function Empty_List return List_Id renames New_List;
  65.    --  Used in contexts where an empty list (as opposed to an initially empty
  66.    --  list to be filled in) is required.
  67.  
  68.    function New_List (Node : Node_Id) return List_Id;
  69.    --  Build a new list initially containing the given node
  70.  
  71.    function New_List (Node1, Node2 : Node_Id) return List_Id;
  72.    --  Build a new list initially containing the two given nodes
  73.  
  74.    function New_List (Node1, Node2, Node3 : Node_Id) return List_Id;
  75.    --  Build a new list initially containing the three given nodes
  76.  
  77.    function New_List (Node1, Node2, Node3, Node4 : Node_Id) return List_Id;
  78.    --  Build a new list initially containing the four given nodes
  79.  
  80.    function New_List
  81.      (Node1 : Node_Id;
  82.       Node2 : Node_Id;
  83.       Node3 : Node_Id;
  84.       Node4 : Node_Id;
  85.       Node5 : Node_Id)
  86.       return  List_Id;
  87.    --  Build a new list initially containing the five given nodes
  88.  
  89.    function New_List
  90.      (Node1 : Node_Id;
  91.       Node2 : Node_Id;
  92.       Node3 : Node_Id;
  93.       Node4 : Node_Id;
  94.       Node5 : Node_Id;
  95.       Node6 : Node_Id)
  96.       return  List_Id;
  97.    --  Build a new list initially containing the five given nodes
  98.  
  99.    function New_List_Copy (List : List_Id) return List_Id;
  100.    --  Creates a new list containing copies (made with Atree.New_Copy) of every
  101.    --  node in the original list. If the argument is No_List, then the returned
  102.    --  result is No_List. If the argument is an empty list, then the returned
  103.    --  result is a new empty list.
  104.  
  105.    function New_List_Copy_Tree (List : List_Id) return List_Id;
  106.    --  Similar to New_List_Copy, except that the copies are done using the
  107.    --  Atree.New_Copy_Tree function, which means that a full recursive copy
  108.    --  of the subtrees in the list is performed, setting proper parents. As
  109.    --  for New_Copy_Tree, it is illegal to attempt to copy extended nodes
  110.    --  (entities) either directly or indirectly using this function.
  111.  
  112.    function First (List : List_Id) return Node_Id;
  113.    pragma Inline (First);
  114.    --  Obtains the first element of the given node list or, if the node list
  115.    --  has no items, then Empty is returned. It is an error to call First with
  116.    --  a Node_Id value or No_List. (No_List is not considered to be the same as
  117.    --  an empty node list).
  118.  
  119.    function Last (List : List_Id) return Node_Id;
  120.    pragma Inline (Last);
  121.    --  Obtains the last element of the given node list or, if the node list
  122.    --  has no items, then Empty is returned. It is an error to call Last with
  123.    --  a Node_Id or No_List. (No_List is not considered to be the same as an
  124.    --  empty node list).
  125.  
  126.    function List_Length (List : List_Id) return Nat;
  127.    pragma Inline (List_Length);
  128.    --  Returns number of items in the given list
  129.  
  130.    function Next (Node : Node_Id) return Node_Id;
  131.    pragma Inline (Next);
  132.    --  This function returns the next node on a node list, or Empty if Node is
  133.    --  the last element of the node list. The argument must be a member of a
  134.    --  node list.
  135.  
  136.    function Prev (Node : Node_Id) return Node_Id;
  137.    pragma Inline (Prev);
  138.    --  This function returns the previous node on a node list list, or Empty if
  139.    --  Node is the first element of the node list. The argument must be a
  140.    --  member of a node list. Note that the implementation does not maintain
  141.    --  back pointers, so this function potentially requires traversal of the
  142.    --  entire list, or more accurately of the part of the list preceding Node.
  143.  
  144.    function Is_Empty_List (List : List_Id) return Boolean;
  145.    pragma Inline (Is_Empty_List);
  146.    --  This function determines if a given list id references a node list that
  147.    --  contains no items. No_List is a not a legitimate argument.
  148.  
  149.    function Is_Non_Empty_List (List : List_Id) return Boolean;
  150.    pragma Inline (Is_Non_Empty_List);
  151.    --  This function determines if a given list id references a node list that
  152.    --  contains at least one item. No_List as an argument returns False.
  153.  
  154.    function Is_List_Member (Node : Node_Id) return Boolean;
  155.    pragma Inline (Is_List_Member);
  156.    --  This function determines if a given node is a member of a node list.
  157.    --  It is an error for Node to be Empty, or to be a node list.
  158.  
  159.    function List_Containing (Node : Node_Id) return List_Id;
  160.    pragma Inline (List_Containing);
  161.    --  This function provides a pointer to the node list containing Node.
  162.    --  Node must be a member of a node list.
  163.  
  164.    procedure Append (Node : Node_Id; To : List_Id);
  165.    --  Appends Node at the end of node list To. Node must be a non-empty node
  166.    --  that is not already a member of a node list, and To must be a
  167.    --  node list. An attempt to append an error node is ignored without
  168.    --  complaint and the list is unchanged.
  169.  
  170.    procedure Append_To (To : List_Id; Node : Node_Id);
  171.    pragma Inline (Append_To);
  172.    --  Like Append, but arguments are the other way round
  173.  
  174.    procedure Append_List (List : List_Id; To : List_Id);
  175.    --  Appends node list List to the end of node list To. On return,
  176.    --  List is reset to be empty.
  177.  
  178.    procedure Append_List_To (To : List_Id; List : List_Id);
  179.    pragma Inline (Append_List_To);
  180.    --  Like Append_List, but arguments are the other way round
  181.  
  182.    procedure Insert_After (After : Node_Id; Node : Node_Id);
  183.    --  Insert Node, which must be a non-empty node that is not already a
  184.    --  member of a node list, immediately past node After, which must be a
  185.    --  node that is currently a member of a node list. An attempt to insert
  186.    --  an error node is ignored without complaint (and the list is unchanged).
  187.  
  188.    procedure Insert_List_After (After : Node_Id; List : List_Id);
  189.    --  Inserts the entire contents of node list List immediately after node
  190.    --  After, which must be a member of a node list. On return, the node list
  191.    --  List is reset to be the empty node list.
  192.  
  193.    procedure Insert_Before (Before : Node_Id; Node : Node_Id);
  194.    --  Insert Node, which must be a non-empty node that is not already a
  195.    --  member of a node list, immediately before Before, which must be a node
  196.    --  that is currently a member of a node list. An attempt to insert an
  197.    --  error node is ignored without complaint (and the list is unchanged).
  198.  
  199.    procedure Insert_List_Before (Before : Node_Id; List : List_Id);
  200.    --  Inserts the entire contents of node list List immediately before node
  201.    --  Before, which must be a member of a node list. On return, the node list
  202.    --  List is reset to be the empty node list.
  203.  
  204.    procedure Prepend (Node : Node_Id; To : List_Id);
  205.    pragma Inline (Prepend);
  206.    --  Prepends Node at the start of node list To. Node must be a non-empty
  207.    --  node that is not already a member of a node list, and To must be a
  208.    --  node list. An attempt to prepend an error node is ignored without
  209.    --  complaint and the list is unchanged.
  210.  
  211.    procedure Prepend_To (To : List_Id; Node : Node_Id);
  212.    pragma Inline (Prepend_To);
  213.    --  Like Prepend, but arguments are the other way round
  214.  
  215.    procedure Remove (Node : Node_Id);
  216.    --  Removes Node, which must be a node that is a member of a node list,
  217.    --  from this node list. The contents of Node are not otherwise affected.
  218.    --  Remove is relatively slow, since no back pointers are maintained,
  219.    --  which means that the list has to be traversed from the head to find
  220.    --  the removal point.
  221.  
  222.    function Remove_Head (List : List_Id) return Node_Id;
  223.    --  Removes the head element of a node list, and returns the node (whose
  224.    --  contents are not otherwise affected) as the result. If the node list
  225.    --  is empty, then Empty is returned.
  226.  
  227.    function Remove_Next (Node : Node_Id) return Node_Id;
  228.    pragma Inline (Remove_Next);
  229.    --  Removes the item immediately following the given node, and returns it
  230.    --  as the result. If Node is the last element of the list, then Empty is
  231.    --  returned. Node must be a member of a list. Unlike Remove, Remove_Next
  232.    --  is fast and does not involve any list traversal.
  233.  
  234.    procedure Initialize;
  235.    --  Called at the start of compilation of each new main source file to
  236.    --  initialize the allocation of the list table. Note that Initialize
  237.    --  must not be called if Tree_Read is used.
  238.  
  239.    procedure Tree_Read;
  240.    --  Initializes internal tables from current tree file using Tree_Read.
  241.    --  Note that Initialize should not be called if Tree_Read is used.
  242.    --  Tree_Read includes all necessary initialization.
  243.  
  244.    procedure Tree_Write;
  245.    --  Writes out internal tables to current tree file using Tree_Write
  246.  
  247.    function Parent (List : List_Id) return Node_Id;
  248.    pragma Inline (Parent);
  249.    --  Node lists may have a parent in the same way as a node. The function
  250.    --  accesses the Parent value, which is either Empty when a list header
  251.    --  is first created, or the value that has been set by Set_Parent.
  252.  
  253.    procedure Set_Parent (List : List_Id; Node : Node_Id);
  254.    pragma Inline (Set_Parent);
  255.    --  Sets the parent field of the given list to reference the given node
  256.  
  257.    function No (List : List_Id) return Boolean;
  258.    pragma Inline (No);
  259.    --  Tests given Id for equality with No_List. This allows notations like
  260.    --  "if No (Statements)" as opposed to "if Statements = No_List".
  261.  
  262.    function Present (List : List_Id) return Boolean;
  263.    pragma Inline (Present);
  264.    --  Tests given Id for inequality with No_List. This allows notations like
  265.    --  "if Present (Statements)" as opposed to "if Statements /= No_List".
  266.  
  267. end Nlists;
  268.