File: asis_ul-source_table-processing.adb

package info (click to toggle)
asis 2010-5
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 8,964 kB
  • sloc: ada: 103,084; makefile: 313; xml: 19
file content (425 lines) | stat: -rw-r--r-- 15,472 bytes parent folder | download
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
------------------------------------------------------------------------------
--                                                                          --
--                     ASIS UTILITY LIBRARY COMPONENTS                      --
--                                                                          --
--      A S I S _ U L . S O U R C E _ T A B L E . P R O C E S S I N G       --
--                                                                          --
--                                 B o d y                                  --
--                                                                          --
--                     Copyright (C) 2004-2010, AdaCore                     --
--                                                                          --
-- Asis Utility Library (ASIS UL) 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 UL  is distributed in the hope that it --
-- will  be  useful,  but  WITHOUT  ANY  WARRANTY; without even the implied --
-- warranty of MERCHANTABILITY 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 GNAT; see file --
-- COPYING. If not,  write  to the  Free Software Foundation,  51 Franklin --
-- Street, Fifth Floor, Boston, MA 02110-1301, USA.                         --
--                                                                          --
-- ASIS UL is maintained by AdaCore (http://www.adacore.com).               --
--                                                                          --
------------------------------------------------------------------------------

pragma Ada_2005;  --  To make the unit compilable with Ada 95 compiler

with Ada.Characters.Conversions; use Ada.Characters.Conversions;

with GNAT.OS_Lib;                use GNAT.OS_Lib;

with Asis;                       use Asis;
with Asis.Ada_Environments;
with Asis.Compilation_Units;     use Asis.Compilation_Units;
with Asis.Errors;
with Asis.Exceptions;
with Asis.Extensions;            use Asis.Extensions;
with Asis.Implementation;

with ASIS_UL.Common;             use ASIS_UL.Common;
with ASIS_UL.Debug;              use ASIS_UL.Debug;
with ASIS_UL.Options;            use ASIS_UL.Options;
with ASIS_UL.Output;             use ASIS_UL.Output;
with ASIS_UL.Utilities;          use ASIS_UL.Utilities;

package body ASIS_UL.Source_Table.Processing is

   ------------------------
   --  Local subprograms --
   ------------------------

   procedure Process_Sources_From_Table
     (Only_Bodies        : Boolean := False;
      Need_Semantic_Info : Boolean := True;
      Add_Needed_Sources : Boolean := False);
   --  Processes sources stores in the sources table trying to minimize
   --  compilations needed to create the tree files. If Only_Bodies is set ON,
   --  only files with .adb suffixes are compiled for the trees.
   --  Need_Semantic_Info parameter is used to control unit processin on the
   --  base of each tree being created as a part of the call to
   --  Process_Sources_From_Table, see the documentation for the Process_Source
   --  routine.
   --  Add_Needed_Sources is used to specify if the needed sources (spec for
   --  a body and subunits for stubs) should be processed even if they are not
   --  in the source table, see the documentation for the Process_Source
   --  routine.

   procedure ASIS_Processing (CU : Asis.Compilation_Unit; SF : SF_Id);
   --  This procedure incapsulates all the actions performed in the opened
   --  Context with the compilation unit CU corresponding to the source file
   --  SF (the caller is responsible for the fact that CU with this SF are
   --  represented by the tree making up the currently processed ASIS Context).
   --  The corresponding processing is entirely tool-specific, so each tool
   --  should provide its own subunit as the actual implementation of this
   --  routine.

   ---------------------
   -- ASIS_Processing --
   ----------------------

   --  This is entiraly tool-specific, so the ASIS Utility Library provides
   --  an empty place-holder here.

   procedure ASIS_Processing (CU : Asis.Compilation_Unit;  SF : SF_Id) is
     separate;

   ----------------
   -- Initialize --
   ----------------

   --  This is entiraly tool-specific, so the ASIS Utility Library provides
   --  an empty place-holder here.

   procedure Initialize is separate;

   --------------------
   -- Process_Source --
   --------------------

   procedure Process_Source
     (SF                 : SF_Id;
      Need_Semantic_Info : Boolean := True;
      Add_Needed_Sources : Boolean := False;
      Keep_ALI_Files     : Boolean := False)
   is
      Success     : Boolean;
      Next_SF     : SF_Id;
      CU_Tmp      : Asis.Compilation_Unit;

      procedure Process_All_Subunits (CU : Asis.Compilation_Unit);
      --  Assuming that CU is of Compilation_Unit kind that may have subunits,
      --  recuresively process all the subunits that are the arguments of the
      --  tool

      procedure Process_All_Subunits (CU : Asis.Compilation_Unit) is
         Subunit_List : constant Asis.Compilation_Unit_List := Subunits (CU);
         Next_Subunit_SF : SF_Id;
      begin

         for J in Subunit_List'Range loop
            Next_Subunit_SF :=
              File_Find (Normalize_Pathname
                (To_String (Text_Name (Subunit_List (J))),
                 Resolve_Links  => False,
                 Case_Sensitive => False));

            if Add_Needed_Sources and then not Present (Next_Subunit_SF) then
               Add_Needed_Source
                 (Normalize_Pathname
                   (To_String (Text_Name (Subunit_List (J))),
                    Resolve_Links  => False,
                    Case_Sensitive => False));

               Total_Sources := Natural (Last_Source);
               Sources_Left  := Sources_Left + 1;
            end if;

            if Present (Next_Subunit_SF)
             and then
               Source_Status (Next_Subunit_SF) = Waiting
            then
               Output_Source (Next_Subunit_SF);
               ASIS_Processing (Subunit_List (J), Next_Subunit_SF);

               Process_All_Subunits (Subunit_List (J));
            end if;

         end loop;

      end Process_All_Subunits;

   begin

      Output_Source (SF);

      Create_Tree (SF, Success);

      if not Success then
         return;
      end if;

      Asis.Ada_Environments.Associate
       (The_Context => The_Context,
        Name        => "",
        Parameters  => "-C1 "
                      & To_Wide_String (Suffixless_Name (SF) & ".adt"));

      declare
         use type Asis.Errors.Error_Kinds;
      begin
         Asis.Ada_Environments.Open (The_Context);
         Success := True;

         if Debug_Flag_T then
            Print_Tree_Sources;
         end if;
      exception
         when Asis.Exceptions.ASIS_Failed =>
            --  The only known situation when we can not open a C1 context for
            --  newly created tree is recompilation of System (see D617-017)

            if Asis.Implementation.Status = Asis.Errors.Use_Error
              and then
               Asis.Implementation.Diagnosis = "Internal implementation error:"
               & " Asis.Ada_Environments.Open - System is recompiled"
            then
               Error ("can not process redefinition of System in " &
                       Source_Name (SF));

               Set_Source_Status (SF, Not_A_Legal_Source);
               Success := False;
            else
               raise;
            end if;

      end;

      if Success then

         The_CU := Main_Unit_In_Current_Tree (The_Context);

         if Unit_Origin (The_CU) /= An_Application_Unit
           and then
            not Process_RTL_Units
         then
            Error ("cannot process RTL unit " & Source_Name (SF) &
                   " Use '-a' option for processing RTL components");
            Set_Source_Status (SF, Processed);
         else
            --  The following (commented out) code for optimising subunit
            --  processing needs revising. Eliminating non-nesessary tree
            --  creations for subunits is probably a good idea, but we cannot
            --  call Process_Source recursively!

--            if Unit_Class (The_CU) = A_Separate_Body then
--               --  If we have a proper body as the argument source, no need
--               --  to process subunits one-by-one separately:

--               CU_Tmp := Corresponding_Subunit_Parent_Body (The_CU);

--               while Unit_Class (CU_Tmp) = A_Separate_Body loop
--                  CU_Tmp := Corresponding_Subunit_Parent_Body (CU_Tmp);
--               end loop;

--               Next_SF :=
--                 File_Find (Normalize_Pathname
--                   (To_String (Text_Name (CU_Tmp))),
--                    Resolve_Links  => False,
--                    Case_Sensitive => False));

--               if Present (Next_SF) and then
--                  Source_Status (Next_SF) = Waiting
--               then
--                  Process_Source (Next_SF, Need_Semantic_Info);

--                  return;
--               end if;

--            end if;

            ASIS_Processing (The_CU, SF);

            if Need_Semantic_Info then
               --  The problem here is expanded generics - we can process
               --  expanded body only for the main unit in the tree (and only
               --  in case if we process bodies first!). So, all we can do is
               --  to process spec for a body and all the subunits, if any.
               --
               --  !!! Current approach works with the standard GNAT naming
               --  !!! scheme!!!

               if Unit_Kind (The_CU) in A_Procedure_Body .. A_Package_Body
                 or else
                  Unit_Class (The_CU) = A_Separate_Body
               then

                  if Unit_Kind (The_CU) in
                       A_Procedure_Body .. A_Package_Body
                  then
                     --  Process spec, if exists and not processed yet:

                     CU_Tmp := Corresponding_Declaration (The_CU);

                     if not Is_Nil (CU_Tmp) then
                        Next_SF :=
                          File_Find (Normalize_Pathname
                            (To_String (Text_Name (CU_Tmp)),
                             Resolve_Links  => False,
                             Case_Sensitive => False));

                        if Add_Needed_Sources
                          and then
                           not Present (Next_SF)
                        then
                           Add_Needed_Source
                             (Normalize_Pathname
                                (To_String (Text_Name (CU_Tmp)),
                                 Resolve_Links  => False,
                                 Case_Sensitive => False));

                           Total_Sources := Natural (Last_Source);
                           Sources_Left  := Sources_Left + 1;
                        end if;

                        if Present (Next_SF) and then
                           Source_Status (Next_SF) = Waiting
                        then
                           Output_Source (Next_SF);
                           ASIS_Processing (CU_Tmp, Next_SF);
                        end if;

                     end if;

                  end if;

                  Process_All_Subunits (The_CU);
               end if;

            else

               declare
                  All_CUs : constant Asis.Compilation_Unit_List :=
                    Asis.Compilation_Units.Compilation_Units (The_Context);
               begin

                  for J in All_CUs'Range loop

                     if Process_RTL_Units
                       or else
                        Unit_Origin (All_CUs (J)) = An_Application_Unit
                     then

                        Next_SF :=
                          File_Find (Normalize_Pathname
                            (To_String (Text_Name (All_CUs (J))),
                             Resolve_Links  => False,
                             Case_Sensitive => False));

                        if Present (Next_SF) and then
                           Source_Status (Next_SF) = Waiting
                        then
                           The_CU := All_CUs (J);
                           Output_Source (Next_SF);
                           ASIS_Processing (All_CUs (J), Next_SF);
                        end if;

                     end if;

                  end loop;

               exception
                  when Ex : others =>
                     Error
                       ("unknown bug detected when processing " &
                         Source_Name (Next_SF));
                     Error_No_Tool_Name
                       ("Please submit bug report to report@gnat.com");
                     Report_Unhandled_Exception (Ex);
                     Source_Clean_Up (Next_SF);
                     raise Fatal_Error;

               end;

            end if;

         end if;

      end if;

      Source_Clean_Up (SF, Keep_ALI_Files);

   exception

      when Program_Error =>
         Error ("installation problem - check "&
                Tool_Name.all & " and GNAT versions");
         raise Fatal_Error;

      when Fatal_Error =>
         raise;

      when Ex : others =>
         Error ("unknown bug detected when processing " & Source_Name (SF));
         Error_No_Tool_Name ("Please submit bug report to report@gnat.com");
         Report_Unhandled_Exception (Ex);
         Source_Clean_Up (SF);
         raise Fatal_Error;

   end Process_Source;

   ---------------------
   -- Process_Sources --
   ---------------------

   procedure Process_Sources
     (Need_Semantic_Info : Boolean := True;
      Add_Needed_Sources : Boolean := False)
   is
   begin
      Asis.Implementation.Initialize ("-k -ws -asis05");

      Process_Sources_From_Table
        (Only_Bodies        => True,
         Need_Semantic_Info => Need_Semantic_Info,
         Add_Needed_Sources => Add_Needed_Sources);

      Process_Sources_From_Table
        (Need_Semantic_Info => Need_Semantic_Info,
         Add_Needed_Sources => Add_Needed_Sources);

      Asis.Implementation.Finalize;
   end Process_Sources;

   --------------------------------
   -- Process_Sources_From_Table --
   --------------------------------

   procedure Process_Sources_From_Table
     (Only_Bodies        : Boolean := False;
      Need_Semantic_Info : Boolean := True;
      Add_Needed_Sources : Boolean := False)
   is
      Next_SF : SF_Id;
   begin
      Reset_Source_Iterator;

      Next_SF := Next_Non_Processed_Source (Only_Bodies);

      while Present (Next_SF) loop
         Process_Source (Next_SF, Need_Semantic_Info, Add_Needed_Sources);
         Next_SF := Next_Non_Processed_Source (Only_Bodies);
      end loop;

   end Process_Sources_From_Table;

   --------------
   -- Finalize --
   --------------

   --  This is entiraly tool-specific, so the ASIS Utility Library provides
   --  an empty place-holder here.

   procedure Finalize is separate;

end ASIS_UL.Source_Table.Processing;