This file is indexed.

/usr/share/ada/adainclude/asis/asis-compilation_units-relations.ads is in libasis2014-dev 2014-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
------------------------------------------------------------------------------
--                                                                          --
--                   ASIS-for-GNAT INTERFACE COMPONENTS                     --
--                                                                          --
--      A S I S . C O M P I L A T I O N _ U N I T S . R E L A T I O N S     --
--                                                                          --
--                                 S p e c                                  --
--                                                                          --
--           Copyright (c) 2006, Free Software Foundation, Inc.             --
--                                                                          --
-- This   specification  is  adapted   from  the  Ada   Semantic  Interface --
-- Specification Standard (ISO/IEC 15291) for use with GNAT.  In accordance --
-- with the copyright of that document, you can freely copy and modify this --
-- specification, provided that if you redistribute a modified version, any --
-- changes  that  you have made are clearly indicated. The copyright notice --
-- above,  and  the  license  provisions  that  follow  apply solely to the --
-- contents of the part following the private keyword.                      --
--                                                                          --
-- ASIS-for-GNAT is free software; you can redistribute it and/or modify it --
-- under terms of the  GNU General Public License  as published by the Free --
-- Software Foundation;  either version 2,  or  (at your option)  any later --
-- version. ASIS-for-GNAT is distributed  in the hope  that it will be use- --
-- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- --
-- CHANTABILITY or  FITNESS FOR A PARTICULAR  PURPOSE.  See the GNU General --
-- Public License for more details.  You should have received a copy of the --
-- GNU  General  Public  License  distributed with ASIS-for-GNAT;  see file --
-- COPYING.  If not,  write  to the  Free Software Foundation,  51 Franklin --
-- Street, Fifth Floor, Boston, MA 02110-1301, USA.                         --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
-- ASIS-for-GNAT was originally developed  by the ASIS-for-GNAT team at the --
-- Software  Engineering  Laboratory  of  the Swiss  Federal  Institute  of --
-- Technology (LGL-EPFL) in Lausanne,  Switzerland, in cooperation with the --
-- Scientific  Research  Computer  Center of  Moscow State University (SRCC --
-- MSU), Russia,  with funding partially provided  by grants from the Swiss --
-- National  Science  Foundation  and  the  Swiss  Academy  of  Engineering --
-- Sciences.  ASIS-for-GNAT is now maintained by  AdaCore                   --
-- (http://www.adacore.com).                                                --
--                                                                          --
------------------------------------------------------------------------------

------------------------------------------------------------------------------
--  12 package Asis.Compilation_Units.Relations
------------------------------------------------------------------------------
------------------------------------------------------------------------------
package Asis.Compilation_Units.Relations is
------------------------------------------------------------------------------
------------------------------------------------------------------------------
--  Asis.Compilation_Units.Relations encapsulates semantic relationship
--  concepts used in ASIS.
------------------------------------------------------------------------------
--  12.1  type Relationship
------------------------------------------------------------------------------
--  Relationship queries provide references to compilation units that are
--  related, in some specific fashion, to one or more given compilation units.
--  Compilation units located by these queries are returned as a set of
--  ordered lists.

   type Relationship
     (Consistent_Length   : Asis.ASIS_Natural;
      Inconsistent_Length : Asis.ASIS_Natural;
      Missing_Length      : Asis.ASIS_Natural;
      Circular_Length     : Asis.ASIS_Natural)
   is
      record
         Consistent   : Asis.Compilation_Unit_List (1 .. Consistent_Length);
         Inconsistent : Asis.Compilation_Unit_List (1 .. Inconsistent_Length);
         Missing      : Asis.Compilation_Unit_List (1 .. Missing_Length);
         Circular     : Asis.Compilation_Unit_List (1 .. Circular_Length);
      end record;

--  The following describes the semantics of the unit lists returned by the
--  queries Semantic_Dependence_Order and Elaboration_Order:
--
--  Each query returns a set of four lists.  Every unit returned will have the
--  same Enclosing_Context.  The lists are:
--
--    a) (Consistent)   A list of consistent ordered units.
--    b) (Inconsistent) A list of units that are inconsistent with one or
--                      more units on which they semantically depend.
--    c) (Missing)      A list of units that have missing (nonexistent) related
--                      units.
--    d) (Circular)     A list of circular semantic dependencies between units.
--
--
--  a) The consistent units list:
--
--     The semantics for the ordering of units in the first list are defined by
--     the individual queries.
--
--     Every unit in this list is unique.  No duplicates are returned; no
--     two units in the list are Is_Equal or Is_Identical.
--
--  b) The inconsistent units list:
--
--     The second list is made up of unit pairs.
--
--     Each pairing defines an inconsistent semantic dependence relationship.
--     The right unit of each pair semantically depends on the preceding left
--     unit. All rightmost units of each pair are always inconsistent, and will
--     not appear in the consistent units list. The leftmost unit can be either
--     consistent or inconsistent. If a leftmost units is consistent, then it
--     also appears in the consistent units list; otherwise the unit is part of
--     an inconsistent transitive relationship.
--
--     The unit pairs are ordered such that there are no forward semantic
--     dependencies between the inconsistent units.  Each inconsistent unit's
--     supporters always precede it in the list.
--
--     As an example, given four units, A withs B, B withs C, and C withs D;
--     if D is replaced, the inconsistent list contains six units with the
--     three pairs:
--
--        DC  CB  BA
--
--     The list indicates that units C, B, and A are inconsistent (the
--     rightmost units of each pair). Semantic dependencies such as B depends
--     on C also are indicated. The units C, B, and A are in an order that
--     could be submitted to the compiler (a possible recompilation order).
--
--     If a unit is inconsistent because the source for the unit has been
--     edited (or otherwise been made inconsistent by some action of the user
--     or implementation) then the unit references Nil_Compilation_Unit as the
--     cause of the inconsistency (e.g., (Nil A Nil B) is a list of two
--     inconsistent units, neither of which can point to a third unit as the
--     cause for their being inconsistent).
--
--  --|IP An implementation is allowed to use Nil_Compilation_Unit value for
--  --|IP the first unit of each pair if it cannot determine the supporting
--  --|IP unit causing the inconsistent semantic dependence.
--
--     For the above example, the list returned is:
--
--           DC DB DA CB CA BA
--
--     This list reports all dependencies:
--
--           D withed by C withed by B withed by A => DC DB DA
--                       C withed by B withed by A => CB CA
--                                   B withed by A => BA
--
--  c) The missing dependence list:
--
--     The third list is made up of unit pairs.   Each pairing consists of a
--     unit followed by a missing related unit needed by the first unit.
--     A missing unit is a required Compilation_Unit, with a known name, with a
--     Unit_Kind that is either A_Nonexistent_Declaration or
--     A_Nonexistent_Body.
--
--     For example:
--
--     Given a list containing the units:  AB AC
--
--     If Unit_Kind(B) = A_Nonexistent_Declaration and
--        Unit_Kind(C) = A_Nonexistent_Body then
--
--     It can be deduced that:
--        A is missing a needed supporter B (A depends semantically on B).
--        A is missing a needed related unit body C
--        (depending on the kind for A, C can be A's required body or some
--         subunit of A)
--
--     A unit is reported as missing only if the Post-Compilation Rules of Ada
--     determine it to be needed.  Reference Manual 10.2.
--
--  d) The circular dependence list:
--
--     Circular dependencies between compilation units are provided in the
--     fourth list.  There may be more than one set of circular dependencies.
--     The ordering of distinct sets in the list is implementation-defined.
--     This list will never contain nonexistent units.
--
--     The list is made up of unit pairs.  The second unit of each pair depends
--     semantically on the first unit.  A circularity is established when the
--     first unit of a pair also appears as the second unit of a later pair.
--     (See the unit A in the example below; it is the first unit of the first
--     pair and is the second unit of the third pair). The next set of circular
--     dependent units, if any, starts with the next unit in the list (the unit
--     D in the example below).
--
--     For example:
--
--     Given a list containing the units:  AC CB BA DG GF FE ED
--
--     It can be determined that there are two sets of circularly dependent
--     units:
--        {A, B, C} and {D, E, F, G}
--
--     The dependencies are:  A depends on B, B depends on C, C depends on A.
--            D depends on E, E depends on F, F depends on G, G depends on D.
--
--     Each circle of dependence is reported exactly once.  It is not reported
--     once for each unit in the circle.
--
------------------------------------------------------------------------------
--  12.2  constant Nil_Relationship
------------------------------------------------------------------------------

   Nil_Relationship : constant Relationship :=
           (Consistent_Length   => 0,
            Inconsistent_Length => 0,
            Missing_Length      => 0,
            Circular_Length     => 0,
            Consistent          => Asis.Nil_Compilation_Unit_List,
            Inconsistent        => Asis.Nil_Compilation_Unit_List,
            Missing             => Asis.Nil_Compilation_Unit_List,
            Circular            => Asis.Nil_Compilation_Unit_List);

------------------------------------------------------------------------------
--  12.3  function Semantic_Dependence_Order
------------------------------------------------------------------------------
--  Semantic Dependence Relationships    - Reference Manual 10.1.1(24).
--  Elaboration Dependence Relationships - Reference Manual 10.1.1(25).
--
--  --|AN Application Note:
--  --|AN
--  --|AN To properly determine unit consistency, use one of the two semantic
--  --|AN dependence queries: Elaboration_Order or Semantic_Dependence_Order.
--  --|AN These queries return a value of the type Relationship, which contains
--  --|AN lists of consistent, inconsistent, missing and circular units.
--  --|AN
--  --|AN For these two queries, the existence of units in one or more of the
--  --|AN inconsistent, missing, or circular units list means that the
--  --|AN consistent unit list may not be complete.
--  --|AN
--  --|AN Applications that do not check for inconsistent, missing, or circular
--  --|AN units before using the consistent list might not operate as expected.
--  --|AN
------------------------------------------------------------------------------

   function Semantic_Dependence_Order
               (Compilation_Units : Asis.Compilation_Unit_List;
                Dependent_Units   : Asis.Compilation_Unit_List;
                The_Context       : Asis.Context;
                Relation          : Asis.Relation_Kinds)
               return               Relationship;

------------------------------------------------------------------------------
--  Compilation_Units   - Specifies a list of pertinent units
--  Dependent_Units     - Specifies dependents used to limit the query
--  The_Context         - Specifies a program Context for context
--  Relation            - Specifies the relationship to query
--
--  Produces a Relationship value containing compilation_unit elements related
--  to the given Compilation_Units by the specified relation.
--
--  The compilation_unit elements in the consistent units list are ordered such
--  that there are no forward semantic dependencies.
--
--  Dependent_Units are ignored unless the Relation is Descendants or
--  Dependents.  The union of units in the needed units of the Dependent_Units
--  list provide a limiting context for the query.  Only members of these
--  needed units are present in the result.
--
--  If the Dependent_Units list is Is_Nil, the context for the search is the
--  entire Context.  The result of such a query is the full (unlimited)
--  list of Dependents for the Compilation_Units.
--
--  All units in the result will have an Enclosing_Context value that
--  Is_Identical to The_Context.
--

--  Appropriate Unit_Kinds:
--       A_Procedure
--       A_Function
--       A_Package
--       A_Generic_Procedure
--       A_Generic_Function
--       A_Generic_Package
--       A_Procedure_Instance
--       A_Function_Instance
--       A_Package_Instance
--       A_Procedure_Renaming
--       A_Function_Renaming
--       A_Package_Renaming
--       A_Generic_Procedure_Renaming
--       A_Generic_Function_Renaming
--       A_Generic_Package_Renaming
--       A_Procedure_Body
--       A_Function_Body
--       A_Package_Body
--       A_Procedure_Body_Subunit
--       A_Function_Body_Subunit
--       A_Package_Body_Subunit
--       A_Task_Body_Subunit
--       A_Protected_Body_Subunit
--       An_Unknown_Unit            -- See Implementation Permissions
--
--  The Semantic_Dependence_Order query should never raise an exception
--  when processing inconsistent unit (sub)sets.  This query is the only
--  means for an application to know if a given unit is consistent with
--  (some of) its supporters (dependents), and therefore the related
--  semantic processing can give valuable results for this unit.
--
--  --|IP Implementation Permissions:
--  --|IP
--  --|IP The handling of An_Unknown_Unit is implementation specific. It can be
--  --|IP possible to obtain Semantic Dependence Relationships when starting
--  --|IP with a list containing one or more units that are An_Unknown_Unit.
--  --|IP However, results may vary across ASIS implementations.
--  --|AN----------------------------------------------------------------------
--  --|AN Semantic_Dependence_Order defines consistent units to be ordered such
--  --|AN that there are no forward semantic dependencies.
--
------------------------------------------------------------------------------
--  12.4  function Elaboration_Order
------------------------------------------------------------------------------

   function Elaboration_Order
               (Compilation_Units : Asis.Compilation_Unit_List;
                The_Context       : Asis.Context)
               return               Relationship;

------------------------------------------------------------------------------
--  Compilation_Units   - Specifies a list of units to elaborate
--  The_Context         - Specifies a program Context for context
--
--  Produces, in elaboration order, a Relationship value containing compilation
--  units required to elaborate the given compilation units.
--
--  The return value contains the set of ordered lists described above for the
--  queries on Semantic Dependence Relationships.  If the inconsistent,
--  missing, and circular lists are empty, the consistent list will contain
--  all units required to elaborate the arguments.
--  --|IP
--  --|IP The Relationship value may include any number of
--  --|IP implementation-specific runtime support packages.
--
--  The first unit in the Consistent units list will always be the
--  specification for package Standard.  The list will contain all units
--  required to elaborate the arguments.
--
--  Use the Context_Clause_Elements query to get pragma Elaborate elements
--  for a compilation unit.
--
--  Appropriate Unit_Kinds:
--       A_Procedure
--       A_Function
--       A_Package
--       A_Generic_Procedure
--       A_Generic_Function
--       A_Generic_Package
--       A_Procedure_Instance
--       A_Function_Instance
--       A_Package_Instance
--       A_Procedure_Renaming
--       A_Function_Renaming
--       A_Package_Renaming
--       A_Generic_Procedure_Renaming
--       A_Generic_Function_Renaming
--       A_Generic_Package_Renaming
--       A_Procedure_Body
--       A_Function_Body
--       A_Package_Body
--       A_Procedure_Body_Subunit
--       A_Function_Body_Subunit
--       A_Package_Body_Subunit
--       A_Task_Body_Subunit
--       A_Protected_Body_Subunit
--       An_Unknown_Unit            -- See Implementation Permissions
--
--  --|IP Implementation Permissions:
--  --|IP
--  --|IP The handling of An_Unknown_Unit is implementation specific.  It can
--  --|IP be possible to obtain Semantic Dependence Relationships when starting
--  --|IP with a list containing one or more units that are An_Unknown_Unit.
--  --|IP However, results may vary across ASIS implementations.
--
------------------------------------------------------------------------------
end Asis.Compilation_Units.Relations;