OSDN Git Service

Update FSF address
[pf3gnuchains/gcc-fork.git] / gcc / ada / inline.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                               I N L I N E                                --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2001 Free Software Foundation, Inc.          --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
20 -- Boston, MA 02110-1301, USA.                                              --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 --  This module handles two kinds of inlining activity:
28
29 --  a) Instantiation of generic bodies. This is done unconditionally, after
30 --  analysis and expansion of the main unit.
31
32 --  b) Compilation of unit bodies that contain the bodies of inlined sub-
33 --  programs. This is done only if inlining is enabled (-gnatn). Full inlining
34 --  requires that a) an b) be mutually recursive, because each step may
35 --  generate another generic expansion and further inlined calls. For now each
36 --  of them uses a workpile algorithm, but they are called independently from
37 --  Frontend, and thus are not mutually recursive.
38
39 with Alloc;
40 with Table;
41 with Types;  use Types;
42
43 package Inline is
44
45    --------------------------------
46    -- Generic Body Instantiation --
47    --------------------------------
48
49    --  The bodies of generic instantiations are built after semantic analysis
50    --  of the main unit is complete. Generic instantiations are saved in a
51    --  global data structure, and the bodies constructed by means of a separate
52    --  analysis and expansion step.
53
54    --  See full description in body of Sem_Ch12 for details
55
56    type Pending_Body_Info is record
57       Inst_Node : Node_Id;
58       --  Node for instantiation that requires the body
59
60       Act_Decl : Node_Id;
61       --  Declaration for package or subprogram spec for instantiation
62
63       Expander_Status : Boolean;
64       --  If the body is instantiated only for semantic checking, expansion
65       --  must be inhibited.
66
67       Current_Sem_Unit : Unit_Number_Type;
68       --  The semantic unit within which the instantiation is found. Must
69       --  be restored when compiling the body, to insure that internal enti-
70       --  ties use the same counter and are unique over spec and body.
71    end record;
72
73    package Pending_Instantiations is new Table.Table (
74      Table_Component_Type => Pending_Body_Info,
75      Table_Index_Type     => Int,
76      Table_Low_Bound      => 0,
77      Table_Initial        => Alloc.Pending_Instantiations_Initial,
78      Table_Increment      => Alloc.Pending_Instantiations_Increment,
79      Table_Name           => "Pending_Instantiations");
80
81    --  The following table records subprograms and packages for which
82    --  generation of subprogram descriptors must be delayed.
83
84    package Pending_Descriptor is new Table.Table (
85      Table_Component_Type => Entity_Id,
86      Table_Index_Type     => Int,
87      Table_Low_Bound      => 0,
88      Table_Initial        => Alloc.Pending_Instantiations_Initial,
89      Table_Increment      => Alloc.Pending_Instantiations_Increment,
90      Table_Name           => "Pending_Descriptor");
91
92    Analyzing_Inlined_Bodies : Boolean;
93    --  This flag is set False by the call to Initialize, and then is set
94    --  True by the call to Analyze_Inlined_Bodies. It is used to suppress
95    --  generation of subprogram descriptors for inlined bodies.
96
97    -----------------
98    -- Subprograms --
99    -----------------
100
101    procedure Initialize;
102    --  Initialize internal tables
103
104    procedure Lock;
105    --  Lock internal tables before calling backend
106
107    procedure Instantiate_Bodies;
108    --  This procedure is called after semantic analysis is complete, to
109    --  instantiate the bodies of generic instantiations that appear in the
110    --  compilation unit.
111
112    procedure Add_Inlined_Body (E : Entity_Id);
113    --  E is an inlined subprogram appearing in a call, either explicitly, or
114    --  a discriminant check for which gigi builds a call.  Add E's enclosing
115    --  unit to Inlined_Bodies so that body of E can be subsequently retrieved
116    --  and analyzed.
117
118    procedure Analyze_Inlined_Bodies;
119    --  At end of compilation, analyze the bodies of all units that contain
120    --  inlined subprograms that are actually called.
121
122    procedure Check_Body_For_Inlining (N : Node_Id; P : Entity_Id);
123    --  If front-end inlining is enabled and a package declaration contains
124    --  inlined subprograms, load and compile the package body to collect the
125    --  bodies of these subprograms, so they are available to inline calls.
126    --  N is the compilation unit for the package.
127
128    procedure Remove_Dead_Instance (N : Node_Id);
129    --  If an instantiation appears in unreachable code, delete the pending
130    --  body instance.
131
132 end Inline;