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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                              S E M _ R E S                               --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.10 $                             --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 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. --  Resolution processing for all subexpression nodes. Note that the separate
  26. --  package Sem_Aggr contains the actual resolution routines for aggregates,
  27. --  which are separated off since aggregate processing is complex.
  28.  
  29. with Types; use Types;
  30.  
  31. package Sem_Res is
  32.  
  33.    --  As described in Sem_Ch4, the type resolution proceeds in two phases.
  34.    --  The first phase is a bottom up pass that is achieved during the
  35.    --  recursive traversal performed by the Analyze procedures. This phase
  36.    --  determines unambiguous types, and collects sets of possible types
  37.    --  where the interpretation is potentially ambiguous.
  38.  
  39.    --  On completing this bottom up pass, which corresponds to a call to
  40.    --  Analyze on a complete context, the Resolve routine is called which
  41.    --  performs a top down resolution with recursive calls to itself to
  42.    --  resolve operands.
  43.  
  44.    --  Since in practice a lot of semantic analysis has to be postponed until
  45.    --  types are known (e.g. static folding, setting of suppress flags), the
  46.    --  Resolve routines also complete the semantic analyze, and also call the
  47.    --  expander for possibly expansion of the completely type resolved node.
  48.  
  49.    procedure Resolve (N : Node_Id; Typ : Entity_Id);
  50.    --  Top level type-checking procedure, called in a complete context. The
  51.    --  construct N, which is a subexpression, has already been analyzed, and
  52.    --  is required to be of type Typ given the analysis of the context (which
  53.    --  uses the information gathered on the bottom up phase in Analyze). The
  54.    --  resolve routines do various other processing, e.g. static evaluation.
  55.  
  56.    procedure Resolve_Discrete_Subtype_Indication
  57.      (N   : Node_Id;
  58.       Typ : Entity_Id);
  59.    --  Resolve subtype indications in choices (case statements and
  60.    --  aggregates) and in index constraints. Note that the resulting Etype
  61.    --  of the subtype indication node is set to the Etype of the contained
  62.    --  range (i.e. an Itype is not constructed for the actual subtype).
  63.  
  64.    procedure Resolve_Entry (Entry_Name : Node_Id);
  65.    --  Find name of entry being called, and resolve prefix of name with its
  66.    --  own type. For now we assume that the prefix cannot be overloaded and
  67.    --  the name of the entry plays no role in the resolution.
  68.  
  69. end Sem_Res;
  70.