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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                             E X P _ D I S P                              --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.4 $                              --
  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 expansion
  27.  
  28. with Types; use Types;
  29. package Exp_Disp is
  30.  
  31.    type DT_Access_Action is
  32.       (Set_Prim_Op_Address,
  33.        Get_Prim_Op_Address,
  34.        Set_Inheritance_Depth,
  35.        Get_Inheritance_Depth,
  36.        Set_Ancestor_Tags,
  37.        Get_Ancestor_Tags,
  38.        DT_Size,
  39.        Inherit_DT,
  40.        CW_Membership);
  41.  
  42.    function Fill_DT_Entry
  43.      (Loc  : Source_Ptr;
  44.       Prim : Entity_Id)
  45.       return Node_Id;
  46.    --  Generate the code necessary to fill the appropriate entry of the
  47.    --  dispatch table of Prim's controlling type with Prim's address.
  48.  
  49.    function Make_DT_Access_Action
  50.      (Typ    : Entity_Id;
  51.       Action : DT_Access_Action;
  52.       Args   : List_Id)
  53.       return Node_Id;
  54.    --  Generate a call to one of the Dispatch Table Access Subprograms defined
  55.    --  in Ada.Tags or in Interfaces.Cpp
  56.  
  57.    function Make_DT (Typ : Entity_Id) return List_Id;
  58.    --  Expand the declarations for the Dispatch Table (or the Vtable in
  59.    --  the case of type whose ancestor is a CPP_Class)
  60.  
  61.    procedure Set_All_DT_Position (Typ : Entity_Id);
  62.    --  Set the DT_Position field for each primitive operation. In the CPP
  63.    --  Class case check that no pragma CPP_Virtual is missing  and that the
  64.    --  DT_Position are coherent
  65.  
  66.    procedure Expand_Dispatch_Call (Call_Node : Node_Id);
  67.    --  Expand the call to the operation through the dispatch table and perform
  68.    --  the required tag checks when appropriate. For CPP types the call is
  69.    --  done through the Vtable (tag checks are not relevant)
  70.  
  71.    procedure Set_Default_Constructor (Typ : Entity_Id);
  72.    --  Typ is a CPP_Class type. Create the Init procedure of that type to
  73.    --  be the default constructor (i.e. the function returning this type,
  74.    --  having a pragma CPP_Constructor and no parameter)
  75.  
  76. end Exp_Disp;
  77.