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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                              S E M  - D I S P                            --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.11 $                              --
  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. --  This package contains routines involved in tagged types and dynamic
  26. --  dispatching.
  27.  
  28. with Types; use Types;
  29. package Sem_Disp is
  30.  
  31.    procedure Check_Dispatching_Call (N : Node_Id);
  32.    --  Check if a call is a dispatching call. The subprogram is known to
  33.    --  be a dispatching operation. The call is dispatching if all the
  34.    --  controlling actuals are dynamically tagged. This procedure is called
  35.    --  after overload resolution, so the call is known to be unambiguous.
  36.  
  37.    procedure Check_Dispatching_Operation (Subp, Old_Subp : Entity_Id);
  38.    --  Add "Subp" to the list of primitive operations of the corresponding type
  39.    --  if it has a parameter of this type and is defined at a proper place for
  40.    --  primitive operations. (new primitives are only defined in package spec,
  41.    --  overridden operation can be defined in any scope). If Old_Subp is not
  42.    --  Empty we are in the overriding case.
  43.  
  44.    procedure Check_Operation_From_Private_View (Subp, Old_Subp : Entity_Id);
  45.    --  Add "Old_Subp" to the list of primitive operations of the corresponding
  46.    --  tagged type if it is the full view of a private tagged type. The Alias
  47.    --  of "OldSubp" is adjusted to point to the inherited procedure of the
  48.    --  full view because it is always this one which has to be called.
  49.  
  50.    function Find_Controlling_Arg (N : Node_Id) return Node_Id;
  51.    --  Returns the actual controlling argument if N is dynamically tagged,
  52.    --  and Empty if it is not dynamically tagged.
  53.  
  54.    function Find_Dispatching_Type (Subp : Entity_Id) return Entity_Id;
  55.    --  Check whether a subprogram is dispatching, and find the tagged
  56.    --  type of the controlling argument or arguments.
  57.  
  58.    function Is_Dynamically_Tagged (N : Node_Id) return Boolean;
  59.    --  Used to determine whether a call is dispatching, i.e. if is an
  60.    --  an expression of a class_Wide type, or a call to a function with
  61.    --  controlling result where at least one operand is dynamically tagged.
  62.  
  63.    function Is_Tag_Indeterminate (N : Node_Id) return Boolean;
  64.    --  An expression is tag-indeterminate if it is a call that dispatches
  65.    --  on result, and all controlling operands are also indeterminate.
  66.    --  Such a function call may inherit a tag from an enclosing call.
  67.  
  68.    procedure Propagate_Tag (Control : Node_Id; Actual : Node_Id);
  69.    --  If a function call is tag-indeterminate,  its controlling argument is
  70.    --  found in the context;  either an enclosing call, or the left-hand side
  71.    --  of the enclosing assignment statement. The tag must be propagated
  72.    --  recursively to the tag-indeterminate actuals of the call.
  73.  
  74. end Sem_Disp;
  75.