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 / sem_ch5.ads < prev    next >
Text File  |  1996-09-28  |  4KB  |  83 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                              S E M _ C H 5                               --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.9 $                              --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. with Types; use Types;
  26. with Uintp; use Uintp;
  27.  
  28. package Sem_Ch5 is
  29.  
  30.    procedure Analyze_Assignment                         (N : Node_Id);
  31.    procedure Analyze_Block_Statement                    (N : Node_Id);
  32.    procedure Analyze_Case_Statement                     (N : Node_Id);
  33.    procedure Analyze_Exit_Statement                     (N : Node_Id);
  34.    procedure Analyze_Goto_Statement                     (N : Node_Id);
  35.    procedure Analyze_If_Statement                       (N : Node_Id);
  36.    procedure Analyze_Implicit_Label_Declaration         (N : Node_Id);
  37.    procedure Analyze_Loop_Statement                     (N : Node_Id);
  38.    procedure Analyze_Null_Statement                     (N : Node_Id);
  39.    procedure Analyze_Return_Statement                   (N : Node_Id);
  40.    procedure Analyze_Statements                         (L : List_Id);
  41.  
  42.    type Case_Bounds is record
  43.      Choice_Lo   : Node_Id;
  44.      Choice_Hi   : Node_Id;
  45.      Choice_Node : Node_Id;
  46.    end record;
  47.  
  48.    type Case_Table_Type is array (Nat range <>) of Case_Bounds;
  49.    --  Table type used by Check_Case_Choices procedure
  50.  
  51.    procedure Sort_Case_Table (Case_Table : in out Case_Table_Type);
  52.    --  Sort the Case Table using the Lower Bound of each Choice as the key.
  53.    --  A simple insertion sort is used since the number of choices in a case
  54.    --  statement of variant part will usually be small and probably in near
  55.    --  sorted order.
  56.  
  57.    function Choice_In_Range
  58.      (Lo, Hi   : Node_Id;
  59.       Discr_Lo : Uint;
  60.       Discr_Hi : Uint;
  61.       Btype    : Entity_Id)
  62.       return     Boolean;
  63.    --  Returns false for null ranges and choices where the bounds
  64.    --  are out of range of Discr_Lo .. Discr_Hi, otherwise returns
  65.    --  true.  A message will be issued for choice bounds out of range.
  66.  
  67.    procedure Check_Case_Choices
  68.      (Case_Table     : in out Case_Table_Type;
  69.       N              : Node_Id;
  70.       Choice_Type    : Entity_Id;
  71.       Others_Present : Boolean);
  72.    --  This is the procedure which verifies that a set of case choices
  73.    --  is correct (has no duplicates, and covers the range). Case_Table
  74.    --  contains the choices, N is the node for the construct, Choice_Type
  75.    --  is the type of the value used for selection, and Others_Present is
  76.    --  A flag indicating whether or not an others choice is present.
  77.  
  78.    function Number_Of_Case_Choices (N : Node_Id) return Nat;
  79.    --  Iterates through the choices of a case statement or variant part of
  80.    --  a record counting all the Choice nodes except for Others.
  81.  
  82. end Sem_Ch5;
  83.