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_dist.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  65 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                             E X P _ D I S T                              --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.5 $                              --
  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 utility routines used for the generation of the
  26. --  stubs relevant to the distribution annex.
  27.  
  28. with Types; use Types;
  29.  
  30. package Exp_Dist is
  31.  
  32.    procedure Add_Racw_RW (N : Node_Id);
  33.    --  Add procedures and representation clauses to override read and write
  34.    --  attribute for the RACW type whose declaration node is N.
  35.  
  36.    function Build_Calling_Stubs_Bodies_Cunit
  37.      (RCI_Cunit : Node_Id) return Node_Id;
  38.    --  Builds the calling stubs package body and returns the corresponding
  39.    --  compilation unit node. RCI_Cunit is the compilation unit node of a RCI
  40.    --  package declaration.
  41.  
  42.    function Build_Receiving_Stubs_Bodies_Cunit (RCI_Cunit : Node_Id)
  43.      return Node_Id;
  44.    --  Builds and returns the receiving stubs package body compilation unit.
  45.  
  46.    procedure Init_Names;
  47.    --  Initializes the external names used in the name table.
  48.  
  49.    function Is_ACWLP_Type (E : Entity_Id) return Boolean;
  50.    --  Returns true if the entity is an access class-wide limited private type.
  51.  
  52.    function Is_RCI_Pkg_Spec_Or_Body (Cunit : Node_Id) return Boolean;
  53.    --  Determines if a compilation unit is the specification or the
  54.    --  body of a remote call interface package.
  55.  
  56.    procedure To_Calling_Stubs_Decls_Cunit (RCI_Decl_Cunit : Node_Id);
  57.    --  Convert a RCI package spec compilation unit node into the corresponding
  58.    --  calling stubs package spec compilation unit node.
  59.  
  60.    procedure To_Receiving_Stubs_Decls_Cunit (RCI_Decl_Cunit : Node_Id);
  61.    --  Convert a RCI package Spec compilation unit into the corresponding
  62.    --  receiving stubs package spec compilation unit node.
  63.  
  64. end Exp_Dist;
  65.