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 / inline.ads < prev    next >
Text File  |  1996-09-28  |  5KB  |  104 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                               I N L I N E                                --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                             --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 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 module handles two kinds of inlining activity:
  26.  
  27. --  a) Instantiation of generic bodies. This is done unconditionally, after
  28. --  analysis and expansion of the main unit.
  29.  
  30. --  b) Compilation of unit bodies that contain the bodies of inlined sub-
  31. --  programs. This is done only if inlining is enabled (-gnatn). Full inlining
  32. --  requires that a) an b) be mutually recursive, because each step may
  33. --  generate another generic expansion and further inlined calls. For now each
  34. --  of them uses a workpile algorithm, but they are called independently from
  35. --  Frontend, and thus are not mutually recursive.
  36.  
  37. with Opt;    use Opt;
  38. with Snames; use Snames;
  39. with Table;
  40. with Types;  use Types;
  41.  
  42. package Inline is
  43.  
  44.    ------------------------
  45.    -- Body Instantiation --
  46.    ------------------------
  47.  
  48.    --  The bodies of generic instantiations are built after semantic analysis
  49.    --  of the main unit is complete. Generic instantiations are saved in a
  50.    --  global data structure, and the bodies constructed by means of a separate
  51.    --  analysis and expansion step.
  52.  
  53.    type Pending_Body_Info is record
  54.       Inst_Node : Node_Id;
  55.       Act_Decl  : Node_Id;
  56.    end record;
  57.  
  58.    package Pending_Instantiations is new Table (
  59.      Table_Component_Type => Pending_Body_Info,
  60.      Table_Index_Type     => Int,
  61.      Table_Low_Bound      => 0,
  62.      Table_Initial        => 20,
  63.      Table_Increment      => 100,
  64.      Table_Name           => "Sem.Pending_Instantiations");
  65.  
  66.    --------------------
  67.    -- Inlined Bodies --
  68.    --------------------
  69.  
  70.    --  Inlined functions are actually placed in line by the backend if the
  71.    --  corresponding bodies are available (i.e. compiled). Whenever we find
  72.    --  a call to an inlined subprogram, we add the name of the enclosing
  73.    --  compilation unit to a worklist. After all compilation, and after
  74.    --  expansion of generic bodies, we traverse the list of pending bodies
  75.    --  and compile them as well.
  76.  
  77.    package Inlined_Bodies is new Table (
  78.      Table_Component_Type => Entity_Id,
  79.      Table_Index_Type     => Int,
  80.      Table_Low_Bound      => 0,
  81.      Table_Initial        => 20,
  82.      Table_Increment      => 100,
  83.      Table_Name           => "Sem.Inlined_Bodies");
  84.  
  85.    -----------------
  86.    -- Subprograms --
  87.    -----------------
  88.  
  89.    procedure Instantiate_Bodies;
  90.    --  This procedure is called after semantic analysis is complete, to
  91.    --  instantiate the bodies of generic instantiations that appear in the
  92.    --  compilation unit.
  93.  
  94.    procedure Add_Inlined_Body (N : Node_Id; E : Entity_Id);
  95.    --  N is a procedure or function call, and E is the called entity, which
  96.    --  is an inlined subprogram. Add E's enclosing unit to Inlined_Bodies
  97.    --  so that body of E can be subsequently retrieved and analyzed.
  98.  
  99.    procedure Analyze_Inlined_Bodies;
  100.    --  At end of compilation, analyze the bodies of all units that contain
  101.    --  inlined subprograms that are actually called.
  102.  
  103. end Inline;
  104.