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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                                 X R E F                                  --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.8 $                              --
  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. --  The Xref package contains the routines for gathering all definition/use
  26. --  information (entities and references to these entities). It creats a cross-
  27. --  reference list as well as the REQs (required interfaces) for the withed
  28. --  specs.
  29.  
  30. with Types; use Types;
  31.  
  32. package Xref is
  33.  
  34.    procedure Initialize;
  35.    --  Initialize output of cross-reference information. Must be called by
  36.    --  the main driver once before processing any source input files.
  37.  
  38.    procedure Finalize;
  39.    --  Finalize Xref output. Must be called by the main driver once after
  40.    --  processing any source input files if there were no errors detected
  41.    --  during processing of any of the files. If there were any errors
  42.    --  detected, then this call should not be made.
  43.  
  44.    procedure Gather_Xref_Info (Top : Node_Id);
  45.    --  Main procedure to build the entity tables and the REQs. Looks for new
  46.    --  entities and new references and adds them to appropriate entity table.
  47.    --  This call has no effect if the appropriate xref switches are not set.
  48.  
  49. end Xref;
  50.