OSDN Git Service

2012-06-12 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / gnat1drv.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             G N A T 1 D R V                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2012, 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 3,  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 COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Back_End; use Back_End;
28 with Comperr;
29 with Csets;    use Csets;
30 with Debug;    use Debug;
31 with Elists;
32 with Errout;   use Errout;
33 with Exp_CG;
34 with Exp_Ch6;  use Exp_Ch6;
35 with Fmap;
36 with Fname;    use Fname;
37 with Fname.UF; use Fname.UF;
38 with Frontend;
39 with Gnatvsn;  use Gnatvsn;
40 with Hostparm;
41 with Inline;
42 with Lib;      use Lib;
43 with Lib.Writ; use Lib.Writ;
44 with Lib.Xref;
45 with Namet;    use Namet;
46 with Nlists;
47 with Opt;      use Opt;
48 with Osint;    use Osint;
49 with Output;   use Output;
50 with Par_SCO;
51 with Prepcomp;
52 with Repinfo;  use Repinfo;
53 with Restrict;
54 with Rident;   use Rident;
55 with Rtsfind;
56 with SCOs;
57 with Sem;
58 with Sem_Ch8;
59 with Sem_Ch12;
60 with Sem_Ch13;
61 with Sem_Elim;
62 with Sem_Eval;
63 with Sem_Type;
64 with Sinfo;    use Sinfo;
65 with Sinput.L; use Sinput.L;
66 with Snames;
67 with Sprint;   use Sprint;
68 with Stringt;
69 with Stylesw;  use Stylesw;
70 with Targparm; use Targparm;
71 with Tree_Gen;
72 with Treepr;   use Treepr;
73 with Ttypes;
74 with Types;    use Types;
75 with Uintp;    use Uintp;
76 with Uname;    use Uname;
77 with Urealp;
78 with Usage;
79 with Validsw;  use Validsw;
80
81 with System.Assertions;
82
83 procedure Gnat1drv is
84    Main_Unit_Node : Node_Id;
85    --  Compilation unit node for main unit
86
87    Main_Kind : Node_Kind;
88    --  Kind of main compilation unit node
89
90    Back_End_Mode : Back_End.Back_End_Mode_Type;
91    --  Record back end mode
92
93    procedure Adjust_Global_Switches;
94    --  There are various interactions between front end switch settings,
95    --  including debug switch settings and target dependent parameters.
96    --  This procedure takes care of properly handling these interactions.
97    --  We do it after scanning out all the switches, so that we are not
98    --  depending on the order in which switches appear.
99
100    procedure Check_Bad_Body;
101    --  Called to check if the unit we are compiling has a bad body
102
103    procedure Check_Rep_Info;
104    --  Called when we are not generating code, to check if -gnatR was requested
105    --  and if so, explain that we will not be honoring the request.
106
107    procedure Check_Library_Items;
108    --  For debugging -- checks the behavior of Walk_Library_Items
109    pragma Warnings (Off, Check_Library_Items);
110    --  In case the call below is commented out
111
112    ----------------------------
113    -- Adjust_Global_Switches --
114    ----------------------------
115
116    procedure Adjust_Global_Switches is
117    begin
118       --  Debug flag -gnatd.I is a synonym for Generate_SCIL and requires code
119       --  generation.
120
121       if Debug_Flag_Dot_II and then Operating_Mode = Generate_Code then
122          Generate_SCIL := True;
123       end if;
124
125       --  Disable CodePeer_Mode in Check_Syntax, since we need front-end
126       --  expansion.
127
128       if Operating_Mode = Check_Syntax then
129          CodePeer_Mode := False;
130       end if;
131
132       --  Set ASIS mode if -gnatt and -gnatc are set
133
134       if Operating_Mode = Check_Semantics and then Tree_Output then
135          ASIS_Mode := True;
136
137          --  Turn off inlining in ASIS mode, since ASIS cannot handle the extra
138          --  information in the trees caused by inlining being active.
139
140          --  More specifically, the tree seems to be malformed from the ASIS
141          --  point of view if -gnatc and -gnatn appear together???
142
143          Inline_Active := False;
144
145          --  Turn off SCIL generation and CodePeer mode in semantics mode,
146          --  since SCIL requires front-end expansion.
147
148          Generate_SCIL := False;
149          CodePeer_Mode := False;
150       end if;
151
152       --  SCIL mode needs to disable front-end inlining since the generated
153       --  trees (in particular order and consistency between specs compiled
154       --  as part of a main unit or as part of a with-clause) are causing
155       --  troubles.
156
157       if Generate_SCIL then
158          Front_End_Inlining := False;
159       end if;
160
161       --  Tune settings for optimal SCIL generation in CodePeer mode
162
163       if CodePeer_Mode then
164
165          --  Turn off inlining, confuses CodePeer output and gains nothing
166
167          Front_End_Inlining := False;
168          Inline_Active      := False;
169
170          --  Disable front-end optimizations, to keep the tree as close to the
171          --  source code as possible, and also to avoid inconsistencies between
172          --  trees when using different optimization switches.
173
174          Optimization_Level := 0;
175
176          --  Enable some restrictions systematically to simplify the generated
177          --  code (and ease analysis). Note that restriction checks are also
178          --  disabled in CodePeer mode, see Restrict.Check_Restriction, and
179          --  user specified Restrictions pragmas are ignored, see
180          --  Sem_Prag.Process_Restrictions_Or_Restriction_Warnings.
181
182          Restrict.Restrictions.Set   (No_Initialize_Scalars)           := True;
183          Restrict.Restrictions.Set   (No_Task_Hierarchy)               := True;
184          Restrict.Restrictions.Set   (No_Abort_Statements)             := True;
185          Restrict.Restrictions.Set   (Max_Asynchronous_Select_Nesting) := True;
186          Restrict.Restrictions.Value (Max_Asynchronous_Select_Nesting) := 0;
187
188          --  Suppress overflow, division by zero and access checks since they
189          --  are handled implicitly by CodePeer.
190
191          --  Turn off dynamic elaboration checks: generates inconsistencies in
192          --  trees between specs compiled as part of a main unit or as part of
193          --  a with-clause.
194
195          --  Turn off alignment checks: these cannot be proved statically by
196          --  CodePeer and generate false positives.
197
198          --  Enable all other language checks
199
200          Suppress_Options :=
201            (Access_Check      => True,
202             Alignment_Check   => True,
203             Division_Check    => True,
204             Elaboration_Check => True,
205             Overflow_Check    => True,
206             others            => False);
207          Enable_Overflow_Checks := False;
208          Dynamic_Elaboration_Checks := False;
209
210          --  Kill debug of generated code, since it messes up sloc values
211
212          Debug_Generated_Code := False;
213
214          --  Turn cross-referencing on in case it was disabled (e.g. by -gnatD)
215          --  Do we really need to spend time generating xref in CodePeer
216          --  mode??? Consider setting Xref_Active to False.
217
218          Xref_Active := True;
219
220          --  Polling mode forced off, since it generates confusing junk
221
222          Polling_Required := False;
223
224          --  Set operating mode to Generate_Code to benefit from full front-end
225          --  expansion (e.g. generics).
226
227          Operating_Mode := Generate_Code;
228
229          --  We need SCIL generation of course
230
231          Generate_SCIL := True;
232
233          --  Enable assertions and debug pragmas, since they give CodePeer
234          --  valuable extra information.
235
236          Assertions_Enabled    := True;
237          Debug_Pragmas_Enabled := True;
238
239          --  Disable all simple value propagation. This is an optimization
240          --  which is valuable for code optimization, and also for generation
241          --  of compiler warnings, but these are being turned off by default,
242          --  and CodePeer generates better messages (referencing original
243          --  variables) this way.
244
245          Debug_Flag_MM := True;
246
247          --  Set normal RM validity checking, and checking of IN OUT parameters
248          --  (this might give CodePeer more useful checks to analyze, to be
249          --  confirmed???). All other validity checking is turned off, since
250          --  this can generate very complex trees that only confuse CodePeer
251          --  and do not bring enough useful info.
252
253          Reset_Validity_Check_Options;
254          Validity_Check_Default       := True;
255          Validity_Check_In_Out_Params := True;
256          Validity_Check_In_Params     := True;
257
258          --  Turn off style check options since we are not interested in any
259          --  front-end warnings when we are getting CodePeer output.
260
261          Reset_Style_Check_Options;
262
263          --  Always perform semantics and generate ali files in CodePeer mode,
264          --  so that a gnatmake -c -k will proceed further when possible.
265
266          Force_ALI_Tree_File := True;
267          Try_Semantics := True;
268       end if;
269
270       --  Set Configurable_Run_Time mode if system.ads flag set
271
272       if Targparm.Configurable_Run_Time_On_Target or Debug_Flag_YY then
273          Configurable_Run_Time_Mode := True;
274       end if;
275
276       --  Set -gnatR3m mode if debug flag A set
277
278       if Debug_Flag_AA then
279          Back_Annotate_Rep_Info := True;
280          List_Representation_Info := 1;
281          List_Representation_Info_Mechanisms := True;
282       end if;
283
284       --  Force Target_Strict_Alignment true if debug flag -gnatd.a is set
285
286       if Debug_Flag_Dot_A then
287          Ttypes.Target_Strict_Alignment := True;
288       end if;
289
290       --  Increase size of allocated entities if debug flag -gnatd.N is set
291
292       if Debug_Flag_Dot_NN then
293          Atree.Num_Extension_Nodes := Atree.Num_Extension_Nodes + 1;
294       end if;
295
296       --  Disable static allocation of dispatch tables if -gnatd.t or if layout
297       --  is enabled. The front end's layout phase currently treats types that
298       --  have discriminant-dependent arrays as not being static even when a
299       --  discriminant constraint on the type is static, and this leads to
300       --  problems with subtypes of type Ada.Tags.Dispatch_Table_Wrapper. ???
301
302       if Debug_Flag_Dot_T or else Frontend_Layout_On_Target then
303          Static_Dispatch_Tables := False;
304       end if;
305
306       --  Flip endian mode if -gnatd8 set
307
308       if Debug_Flag_8 then
309          Ttypes.Bytes_Big_Endian := not Ttypes.Bytes_Big_Endian;
310       end if;
311
312       --  Deal with forcing OpenVMS switches True if debug flag M is set, but
313       --  record the setting of Targparm.Open_VMS_On_Target in True_VMS_Target
314       --  before doing this, so we know if we are in real OpenVMS or not!
315
316       Opt.True_VMS_Target := Targparm.OpenVMS_On_Target;
317
318       if Debug_Flag_M then
319          Targparm.OpenVMS_On_Target := True;
320          Hostparm.OpenVMS := True;
321       end if;
322
323       --  Activate front end layout if debug flag -gnatdF is set
324
325       if Debug_Flag_FF then
326          Targparm.Frontend_Layout_On_Target := True;
327       end if;
328
329       --  Set and check exception mechanism
330
331       if Targparm.ZCX_By_Default_On_Target then
332          Exception_Mechanism := Back_End_Exceptions;
333       end if;
334
335       --  Set proper status for overflow checks. We turn on overflow checks if
336       --  -gnatp was not specified, and either -gnato is set or the back-end
337       --  takes care of overflow checks. Otherwise we suppress overflow checks
338       --  by default (since front end checks are expensive).
339
340       if not Opt.Suppress_Checks
341         and then (Opt.Enable_Overflow_Checks
342                     or else
343                       (Targparm.Backend_Divide_Checks_On_Target
344                         and
345                        Targparm.Backend_Overflow_Checks_On_Target))
346       then
347          Suppress_Options (Overflow_Check) := False;
348       else
349          Suppress_Options (Overflow_Check) := True;
350       end if;
351
352       --  Set default for atomic synchronization. As this synchronization
353       --  between atomic accesses can be expensive, and not typically needed
354       --  on some targets, an optional target parameter can turn the option
355       --  off. Note Atomic Synchronization is implemented as check.
356
357       Suppress_Options (Atomic_Synchronization) := not Atomic_Sync_Default;
358
359       --  Set switch indicating if we can use N_Expression_With_Actions
360
361       --  Debug flag -gnatd.X decisively sets usage on
362
363       if Debug_Flag_Dot_XX then
364          Use_Expression_With_Actions := True;
365
366       --  Debug flag -gnatd.Y decisively sets usage off
367
368       elsif Debug_Flag_Dot_YY then
369          Use_Expression_With_Actions := False;
370
371       --  Otherwise this feature is implemented, so we allow its use
372
373       else
374          Use_Expression_With_Actions := True;
375       end if;
376
377       --  Set switch indicating if back end can handle limited types, and
378       --  guarantee that no incorrect copies are made (e.g. in the context
379       --  of a conditional expression).
380
381       --  Debug flag -gnatd.L decisively sets usage on
382
383       if Debug_Flag_Dot_LL then
384          Back_End_Handles_Limited_Types := True;
385
386       --  If no debug flag, usage off for AAMP, VM, SCIL cases
387
388       elsif AAMP_On_Target
389         or else VM_Target /= No_VM
390         or else Generate_SCIL
391       then
392          Back_End_Handles_Limited_Types := False;
393
394       --  Otherwise normal gcc back end, for now still turn flag off by
395       --  default, since there are unresolved problems in the front end.
396
397       else
398          Back_End_Handles_Limited_Types := False;
399       end if;
400
401       --  Set switches for formal verification mode
402
403       if Debug_Flag_Dot_FF then
404
405          Alfa_Mode := True;
406
407          --  Set strict standard interpretation of compiler permissions
408
409          if Debug_Flag_Dot_DD then
410             Strict_Alfa_Mode := True;
411          end if;
412
413          --  Turn off inlining, which would confuse formal verification output
414          --  and gain nothing.
415
416          Front_End_Inlining := False;
417          Inline_Active      := False;
418
419          --  Disable front-end optimizations, to keep the tree as close to the
420          --  source code as possible, and also to avoid inconsistencies between
421          --  trees when using different optimization switches.
422
423          Optimization_Level := 0;
424
425          --  Enable some restrictions systematically to simplify the generated
426          --  code (and ease analysis). Note that restriction checks are also
427          --  disabled in Alfa mode, see Restrict.Check_Restriction, and user
428          --  specified Restrictions pragmas are ignored, see
429          --  Sem_Prag.Process_Restrictions_Or_Restriction_Warnings.
430
431          Restrict.Restrictions.Set (No_Initialize_Scalars) := True;
432
433          --  Suppress all language checks since they are handled implicitly by
434          --  the formal verification backend.
435          --  Turn off dynamic elaboration checks.
436          --  Turn off alignment checks.
437          --  Turn off validity checking.
438
439          Suppress_Options := (others => True);
440          Enable_Overflow_Checks := False;
441          Dynamic_Elaboration_Checks := False;
442          Reset_Validity_Check_Options;
443
444          --  Kill debug of generated code, since it messes up sloc values
445
446          Debug_Generated_Code := False;
447
448          --  Turn cross-referencing on in case it was disabled (e.g. by -gnatD)
449          --  as it is needed for computing effects of subprograms in the formal
450          --  verification backend.
451
452          Xref_Active := True;
453
454          --  Polling mode forced off, since it generates confusing junk
455
456          Polling_Required := False;
457
458          --  Set operating mode to Generate_Code, but full front-end expansion
459          --  is not desirable in Alfa mode, so a light expansion is performed
460          --  instead.
461
462          Operating_Mode := Generate_Code;
463
464          --  Skip call to gigi
465
466          Debug_Flag_HH := True;
467
468          --  Disable Expressions_With_Actions nodes
469
470          --  The gnat2why backend does not deal with Expressions_With_Actions
471          --  in all places (in particular assertions). It is difficult to
472          --  determine in the frontend which cases are allowed, so we disable
473          --  Expressions_With_Actions entirely. Even in the cases where
474          --  gnat2why deals with Expressions_With_Actions, it is easier to
475          --  deal with the original constructs (quantified, conditional and
476          --  case expressions) instead of the rewritten ones.
477
478          Use_Expression_With_Actions := False;
479
480          --  Enable assertions and debug pragmas, since they give valuable
481          --  extra information for formal verification.
482
483          Assertions_Enabled    := True;
484          Debug_Pragmas_Enabled := True;
485
486          --  Turn off style check options since we are not interested in any
487          --  front-end warnings when we are getting Alfa output.
488
489          Reset_Style_Check_Options;
490
491          --  Suppress compiler warnings, since what we are interested in here
492          --  is what formal verification can find out.
493
494          Warning_Mode := Suppress;
495
496          --  Suppress the generation of name tables for enumerations, which are
497          --  not needed for formal verification, and fall outside the Alfa
498          --  subset (use of pointers).
499
500          Global_Discard_Names := True;
501
502          --  Suppress the expansion of tagged types and dispatching calls,
503          --  which lead to the generation of non-Alfa code (use of pointers),
504          --  which is more complex to formally verify than the original source.
505
506          Tagged_Type_Expansion := False;
507       end if;
508    end Adjust_Global_Switches;
509
510    --------------------
511    -- Check_Bad_Body --
512    --------------------
513
514    procedure Check_Bad_Body is
515       Sname   : Unit_Name_Type;
516       Src_Ind : Source_File_Index;
517       Fname   : File_Name_Type;
518
519       procedure Bad_Body_Error (Msg : String);
520       --  Issue message for bad body found
521
522       --------------------
523       -- Bad_Body_Error --
524       --------------------
525
526       procedure Bad_Body_Error (Msg : String) is
527       begin
528          Error_Msg_N (Msg, Main_Unit_Node);
529          Error_Msg_File_1 := Fname;
530          Error_Msg_N ("remove incorrect body in file{!", Main_Unit_Node);
531       end Bad_Body_Error;
532
533    --  Start of processing for Check_Bad_Body
534
535    begin
536       --  Nothing to do if we are only checking syntax, because we don't know
537       --  enough to know if we require or forbid a body in this case.
538
539       if Operating_Mode = Check_Syntax then
540          return;
541       end if;
542
543       --  Check for body not allowed
544
545       if (Main_Kind = N_Package_Declaration
546            and then not Body_Required (Main_Unit_Node))
547         or else (Main_Kind = N_Generic_Package_Declaration
548                   and then not Body_Required (Main_Unit_Node))
549         or else Main_Kind = N_Package_Renaming_Declaration
550         or else Main_Kind = N_Subprogram_Renaming_Declaration
551         or else Nkind (Original_Node (Unit (Main_Unit_Node)))
552                          in N_Generic_Instantiation
553       then
554          Sname := Unit_Name (Main_Unit);
555
556          --  If we do not already have a body name, then get the body name
557          --  (but how can we have a body name here???)
558
559          if not Is_Body_Name (Sname) then
560             Sname := Get_Body_Name (Sname);
561          end if;
562
563          Fname := Get_File_Name (Sname, Subunit => False);
564          Src_Ind := Load_Source_File (Fname);
565
566          --  Case where body is present and it is not a subunit. Exclude the
567          --  subunit case, because it has nothing to do with the package we are
568          --  compiling. It is illegal for a child unit and a subunit with the
569          --  same expanded name (RM 10.2(9)) to appear together in a partition,
570          --  but there is nothing to stop a compilation environment from having
571          --  both, and the test here simply allows that. If there is an attempt
572          --  to include both in a partition, this is diagnosed at bind time. In
573          --  Ada 83 mode this is not a warning case.
574
575          --  Note: if weird file names are being used, we can have a situation
576          --  where the file name that supposedly contains body in fact contains
577          --  a spec, or we can't tell what it contains. Skip the error message
578          --  in these cases.
579
580          --  Also ignore body that is nothing but pragma No_Body; (that's the
581          --  whole point of this pragma, to be used this way and to cause the
582          --  body file to be ignored in this context).
583
584          if Src_Ind /= No_Source_File
585            and then Get_Expected_Unit_Type (Fname) = Expect_Body
586            and then not Source_File_Is_Subunit (Src_Ind)
587            and then not Source_File_Is_No_Body (Src_Ind)
588          then
589             Errout.Finalize (Last_Call => False);
590
591             Error_Msg_Unit_1 := Sname;
592
593             --  Ada 83 case of a package body being ignored. This is not an
594             --  error as far as the Ada 83 RM is concerned, but it is almost
595             --  certainly not what is wanted so output a warning. Give this
596             --  message only if there were no errors, since otherwise it may
597             --  be incorrect (we may have misinterpreted a junk spec as not
598             --  needing a body when it really does).
599
600             if Main_Kind = N_Package_Declaration
601               and then Ada_Version = Ada_83
602               and then Operating_Mode = Generate_Code
603               and then Distribution_Stub_Mode /= Generate_Caller_Stub_Body
604               and then not Compilation_Errors
605             then
606                Error_Msg_N
607                  ("package $$ does not require a body?", Main_Unit_Node);
608                Error_Msg_File_1 := Fname;
609                Error_Msg_N ("body in file{? will be ignored", Main_Unit_Node);
610
611                --  Ada 95 cases of a body file present when no body is
612                --  permitted. This we consider to be an error.
613
614             else
615                --  For generic instantiations, we never allow a body
616
617                if Nkind (Original_Node (Unit (Main_Unit_Node)))
618                in N_Generic_Instantiation
619                then
620                   Bad_Body_Error
621                     ("generic instantiation for $$ does not allow a body");
622
623                   --  A library unit that is a renaming never allows a body
624
625                elsif Main_Kind in N_Renaming_Declaration then
626                   Bad_Body_Error
627                     ("renaming declaration for $$ does not allow a body!");
628
629                   --  Remaining cases are packages and generic packages. Here
630                   --  we only do the test if there are no previous errors,
631                   --  because if there are errors, they may lead us to
632                   --  incorrectly believe that a package does not allow a body
633                   --  when in fact it does.
634
635                elsif not Compilation_Errors then
636                   if Main_Kind = N_Package_Declaration then
637                      Bad_Body_Error
638                        ("package $$ does not allow a body!");
639
640                   elsif Main_Kind = N_Generic_Package_Declaration then
641                      Bad_Body_Error
642                        ("generic package $$ does not allow a body!");
643                   end if;
644                end if;
645
646             end if;
647          end if;
648       end if;
649    end Check_Bad_Body;
650
651    -------------------------
652    -- Check_Library_Items --
653    -------------------------
654
655    --  Walk_Library_Items has plenty of assertions, so all we need to do is
656    --  call it, just for these assertions, not actually doing anything else.
657
658    procedure Check_Library_Items is
659
660       procedure Action (Item : Node_Id);
661       --  Action passed to Walk_Library_Items to do nothing
662
663       ------------
664       -- Action --
665       ------------
666
667       procedure Action (Item : Node_Id) is
668       begin
669          null;
670       end Action;
671
672       procedure Walk is new Sem.Walk_Library_Items (Action);
673
674    --  Start of processing for Check_Library_Items
675
676    begin
677       Walk;
678    end Check_Library_Items;
679
680    --------------------
681    -- Check_Rep_Info --
682    --------------------
683
684    procedure Check_Rep_Info is
685    begin
686       if List_Representation_Info /= 0
687         or else List_Representation_Info_Mechanisms
688       then
689          Set_Standard_Error;
690          Write_Eol;
691          Write_Str
692            ("cannot generate representation information, no code generated");
693          Write_Eol;
694          Write_Eol;
695          Set_Standard_Output;
696       end if;
697    end Check_Rep_Info;
698
699 --  Start of processing for Gnat1drv
700
701 begin
702    --  This inner block is set up to catch assertion errors and constraint
703    --  errors. Since the code for handling these errors can cause another
704    --  exception to be raised (namely Unrecoverable_Error), we need two
705    --  nested blocks, so that the outer one handles unrecoverable error.
706
707    begin
708       --  Initialize all packages. For the most part, these initialization
709       --  calls can be made in any order. Exceptions are as follows:
710
711       --  Lib.Initialize need to be called before Scan_Compiler_Arguments,
712       --  because it initializes a table filled by Scan_Compiler_Arguments.
713
714       Osint.Initialize;
715       Fmap.Reset_Tables;
716       Lib.Initialize;
717       Lib.Xref.Initialize;
718       Scan_Compiler_Arguments;
719       Osint.Add_Default_Search_Dirs;
720
721       Nlists.Initialize;
722       Sinput.Initialize;
723       Sem.Initialize;
724       Exp_CG.Initialize;
725       Csets.Initialize;
726       Uintp.Initialize;
727       Urealp.Initialize;
728       Errout.Initialize;
729       SCOs.Initialize;
730       Snames.Initialize;
731       Stringt.Initialize;
732       Inline.Initialize;
733       Par_SCO.Initialize;
734       Sem_Ch8.Initialize;
735       Sem_Ch12.Initialize;
736       Sem_Ch13.Initialize;
737       Sem_Elim.Initialize;
738       Sem_Eval.Initialize;
739       Sem_Type.Init_Interp_Tables;
740
741       --  Acquire target parameters from system.ads (source of package System)
742
743       declare
744          use Sinput;
745
746          S : Source_File_Index;
747          N : File_Name_Type;
748
749       begin
750          Name_Buffer (1 .. 10) := "system.ads";
751          Name_Len := 10;
752          N := Name_Find;
753          S := Load_Source_File (N);
754
755          if S = No_Source_File then
756             Write_Line
757               ("fatal error, run-time library not installed correctly");
758             Write_Line ("cannot locate file system.ads");
759             raise Unrecoverable_Error;
760
761          --  Remember source index of system.ads (which was read successfully)
762
763          else
764             System_Source_File_Index := S;
765          end if;
766
767          Targparm.Get_Target_Parameters
768            (System_Text  => Source_Text  (S),
769             Source_First => Source_First (S),
770             Source_Last  => Source_Last  (S));
771
772          --  Acquire configuration pragma information from Targparm
773
774          Restrict.Restrictions := Targparm.Restrictions_On_Target;
775       end;
776
777       Adjust_Global_Switches;
778
779       --  Output copyright notice if full list mode unless we have a list
780       --  file, in which case we defer this so that it is output in the file
781
782       if (Verbose_Mode or else (Full_List and then Full_List_File_Name = null))
783         and then not Debug_Flag_7
784       then
785          Write_Eol;
786          Write_Str ("GNAT ");
787          Write_Str (Gnat_Version_String);
788          Write_Eol;
789          Write_Str ("Copyright 1992-" & Current_Year
790                     & ", Free Software Foundation, Inc.");
791          Write_Eol;
792       end if;
793
794       --  Check we do not have more than one source file, this happens only in
795       --  the case where the driver is called directly, it cannot happen when
796       --  gnat1 is invoked from gcc in the normal case.
797
798       if Osint.Number_Of_Files /= 1 then
799          Usage;
800          Write_Eol;
801          Osint.Fail ("you must provide one source file");
802
803       elsif Usage_Requested then
804          Usage;
805       end if;
806
807       Original_Operating_Mode := Operating_Mode;
808       Frontend;
809
810       --  Exit with errors if the main source could not be parsed. Also, when
811       --  -gnatd.H is present, the source file is not set.
812
813       if Sinput.Main_Source_File = No_Source_File then
814
815          --  Handle -gnatd.H debug mode
816
817          if Debug_Flag_Dot_HH then
818
819             --  For -gnatd.H, lock all the tables to keep the convention that
820             --  the backend needs to unlock the tables it wants to touch.
821
822             Atree.Lock;
823             Elists.Lock;
824             Fname.UF.Lock;
825             Inline.Lock;
826             Lib.Lock;
827             Nlists.Lock;
828             Sem.Lock;
829             Sinput.Lock;
830             Namet.Lock;
831             Stringt.Lock;
832
833             --  And all we need to do is to call the back end
834
835             Back_End.Call_Back_End (Back_End.Generate_Object);
836          end if;
837
838          Errout.Finalize (Last_Call => True);
839          Errout.Output_Messages;
840          Exit_Program (E_Errors);
841       end if;
842
843       Main_Unit_Node := Cunit (Main_Unit);
844       Main_Kind := Nkind (Unit (Main_Unit_Node));
845       Check_Bad_Body;
846
847       --  In CodePeer mode we always delete old SCIL files before regenerating
848       --  new ones, in case of e.g. errors, and also to remove obsolete scilx
849       --  files generated by CodePeer itself.
850
851       if CodePeer_Mode then
852          Comperr.Delete_SCIL_Files;
853       end if;
854
855       --  Exit if compilation errors detected
856
857       Errout.Finalize (Last_Call => False);
858
859       if Compilation_Errors then
860          Treepr.Tree_Dump;
861          Sem_Ch13.Validate_Unchecked_Conversions;
862          Sem_Ch13.Validate_Address_Clauses;
863          Sem_Ch13.Validate_Independence;
864          Errout.Output_Messages;
865          Namet.Finalize;
866
867          --  Generate ALI file if specially requested
868
869          if Opt.Force_ALI_Tree_File then
870             Write_ALI (Object => False);
871             Tree_Gen;
872          end if;
873
874          Errout.Finalize (Last_Call => True);
875          Exit_Program (E_Errors);
876       end if;
877
878       --  Set Generate_Code on main unit and its spec. We do this even if are
879       --  not generating code, since Lib-Writ uses this to determine which
880       --  units get written in the ali file.
881
882       Set_Generate_Code (Main_Unit);
883
884       --  If we have a corresponding spec, and it comes from source or it is
885       --  not a generated spec for a child subprogram body, then we need object
886       --  code for the spec unit as well.
887
888       if Nkind (Unit (Main_Unit_Node)) in N_Unit_Body
889         and then not Acts_As_Spec (Main_Unit_Node)
890       then
891          if Nkind (Unit (Main_Unit_Node)) = N_Subprogram_Body
892            and then not Comes_From_Source (Library_Unit (Main_Unit_Node))
893          then
894             null;
895          else
896             Set_Generate_Code
897               (Get_Cunit_Unit_Number (Library_Unit (Main_Unit_Node)));
898          end if;
899       end if;
900
901       --  Case of no code required to be generated, exit indicating no error
902
903       if Original_Operating_Mode = Check_Syntax then
904          Treepr.Tree_Dump;
905          Errout.Finalize (Last_Call => True);
906          Errout.Output_Messages;
907          Tree_Gen;
908          Namet.Finalize;
909          Check_Rep_Info;
910
911          --  Use a goto instead of calling Exit_Program so that finalization
912          --  occurs normally.
913
914          goto End_Of_Program;
915
916       elsif Original_Operating_Mode = Check_Semantics then
917          Back_End_Mode := Declarations_Only;
918
919       --  All remaining cases are cases in which the user requested that code
920       --  be generated (i.e. no -gnatc or -gnats switch was used). Check if we
921       --  can in fact satisfy this request.
922
923       --  Cannot generate code if someone has turned off code generation for
924       --  any reason at all. We will try to figure out a reason below.
925
926       elsif Operating_Mode /= Generate_Code then
927          Back_End_Mode := Skip;
928
929       --  We can generate code for a subprogram body unless there were missing
930       --  subunits. Note that we always generate code for all generic units (a
931       --  change from some previous versions of GNAT).
932
933       elsif Main_Kind = N_Subprogram_Body and then not Subunits_Missing then
934          Back_End_Mode := Generate_Object;
935
936       --  We can generate code for a package body unless there are subunits
937       --  missing (note that we always generate code for generic units, which
938       --  is a change from some earlier versions of GNAT).
939
940       elsif Main_Kind = N_Package_Body and then not Subunits_Missing then
941          Back_End_Mode := Generate_Object;
942
943       --  We can generate code for a package declaration or a subprogram
944       --  declaration only if it does not required a body.
945
946       elsif Nkind_In (Main_Kind,
947               N_Package_Declaration,
948               N_Subprogram_Declaration)
949         and then
950           (not Body_Required (Main_Unit_Node)
951              or else
952            Distribution_Stub_Mode = Generate_Caller_Stub_Body)
953       then
954          Back_End_Mode := Generate_Object;
955
956       --  We can generate code for a generic package declaration of a generic
957       --  subprogram declaration only if does not require a body.
958
959       elsif Nkind_In (Main_Kind, N_Generic_Package_Declaration,
960                                  N_Generic_Subprogram_Declaration)
961         and then not Body_Required (Main_Unit_Node)
962       then
963          Back_End_Mode := Generate_Object;
964
965       --  Compilation units that are renamings do not require bodies, so we can
966       --  generate code for them.
967
968       elsif Nkind_In (Main_Kind, N_Package_Renaming_Declaration,
969                                  N_Subprogram_Renaming_Declaration)
970       then
971          Back_End_Mode := Generate_Object;
972
973       --  Compilation units that are generic renamings do not require bodies
974       --  so we can generate code for them.
975
976       elsif Main_Kind in N_Generic_Renaming_Declaration then
977          Back_End_Mode := Generate_Object;
978
979       --  It's not an error to generate SCIL for e.g. a spec which has a body
980
981       elsif CodePeer_Mode then
982          Back_End_Mode := Generate_Object;
983
984       --  In all other cases (specs which have bodies, generics, and bodies
985       --  where subunits are missing), we cannot generate code and we generate
986       --  a warning message. Note that generic instantiations are gone at this
987       --  stage since they have been replaced by their instances.
988
989       else
990          Back_End_Mode := Skip;
991       end if;
992
993       --  At this stage Back_End_Mode is set to indicate if the backend should
994       --  be called to generate code. If it is Skip, then code generation has
995       --  been turned off, even though code was requested by the original
996       --  command. This is not an error from the user point of view, but it is
997       --  an error from the point of view of the gcc driver, so we must exit
998       --  with an error status.
999
1000       --  We generate an informative message (from the gcc point of view, it
1001       --  is an error message, but from the users point of view this is not an
1002       --  error, just a consequence of compiling something that cannot
1003       --  generate code).
1004
1005       if Back_End_Mode = Skip then
1006          Set_Standard_Error;
1007          Write_Str ("cannot generate code for ");
1008          Write_Str ("file ");
1009          Write_Name (Unit_File_Name (Main_Unit));
1010
1011          if Subunits_Missing then
1012             Write_Str (" (missing subunits)");
1013             Write_Eol;
1014
1015             --  Force generation of ALI file, for backward compatibility
1016
1017             Opt.Force_ALI_Tree_File := True;
1018
1019          elsif Main_Kind = N_Subunit then
1020             Write_Str (" (subunit)");
1021             Write_Eol;
1022
1023             --  Force generation of ALI file, for backward compatibility
1024
1025             Opt.Force_ALI_Tree_File := True;
1026
1027          elsif Main_Kind = N_Subprogram_Declaration then
1028             Write_Str (" (subprogram spec)");
1029             Write_Eol;
1030
1031          --  Generic package body in GNAT implementation mode
1032
1033          elsif Main_Kind = N_Package_Body and then GNAT_Mode then
1034             Write_Str (" (predefined generic)");
1035             Write_Eol;
1036
1037             --  Force generation of ALI file, for backward compatibility
1038
1039             Opt.Force_ALI_Tree_File := True;
1040
1041          --  Only other case is a package spec
1042
1043          else
1044             Write_Str (" (package spec)");
1045             Write_Eol;
1046          end if;
1047
1048          Set_Standard_Output;
1049
1050          Sem_Ch13.Validate_Unchecked_Conversions;
1051          Sem_Ch13.Validate_Address_Clauses;
1052          Sem_Ch13.Validate_Independence;
1053          Errout.Finalize (Last_Call => True);
1054          Errout.Output_Messages;
1055          Treepr.Tree_Dump;
1056          Tree_Gen;
1057
1058          --  Generate ALI file if specially requested, or for missing subunits,
1059          --  subunits or predefined generic.
1060
1061          if Opt.Force_ALI_Tree_File then
1062             Write_ALI (Object => False);
1063          end if;
1064
1065          Namet.Finalize;
1066          Check_Rep_Info;
1067
1068          --  Exit program with error indication, to kill object file
1069
1070          Exit_Program (E_No_Code);
1071       end if;
1072
1073       --  In -gnatc mode, we only do annotation if -gnatt or -gnatR is also set
1074       --  as indicated by Back_Annotate_Rep_Info being set to True.
1075
1076       --  We don't call for annotations on a subunit, because to process those
1077       --  the back-end requires that the parent(s) be properly compiled.
1078
1079       --  Annotation is suppressed for targets where front-end layout is
1080       --  enabled, because the front end determines representations.
1081
1082       --  Annotation is also suppressed in the case of compiling for a VM,
1083       --  since representations are largely symbolic there.
1084
1085       if Back_End_Mode = Declarations_Only
1086         and then (not (Back_Annotate_Rep_Info or Generate_SCIL)
1087                    or else Main_Kind = N_Subunit
1088                    or else Targparm.Frontend_Layout_On_Target
1089                    or else Targparm.VM_Target /= No_VM)
1090       then
1091          Sem_Ch13.Validate_Unchecked_Conversions;
1092          Sem_Ch13.Validate_Address_Clauses;
1093          Sem_Ch13.Validate_Independence;
1094          Errout.Finalize (Last_Call => True);
1095          Errout.Output_Messages;
1096          Write_ALI (Object => False);
1097          Tree_Dump;
1098          Tree_Gen;
1099          Namet.Finalize;
1100          Check_Rep_Info;
1101          return;
1102       end if;
1103
1104       --  Ensure that we properly register a dependency on system.ads, since
1105       --  even if we do not semantically depend on this, Targparm has read
1106       --  system parameters from the system.ads file.
1107
1108       Lib.Writ.Ensure_System_Dependency;
1109
1110       --  Add dependencies, if any, on preprocessing data file and on
1111       --  preprocessing definition file(s).
1112
1113       Prepcomp.Add_Dependencies;
1114
1115       --  Back end needs to explicitly unlock tables it needs to touch
1116
1117       Atree.Lock;
1118       Elists.Lock;
1119       Fname.UF.Lock;
1120       Inline.Lock;
1121       Lib.Lock;
1122       Nlists.Lock;
1123       Sem.Lock;
1124       Sinput.Lock;
1125       Namet.Lock;
1126       Stringt.Lock;
1127
1128       --  ???Check_Library_Items under control of a debug flag, because it
1129       --  currently does not work if the -gnatn switch (back end inlining) is
1130       --  used.
1131
1132       if Debug_Flag_Dot_WW then
1133          Check_Library_Items;
1134       end if;
1135
1136       --  Here we call the back end to generate the output code
1137
1138       Generating_Code := True;
1139       Back_End.Call_Back_End (Back_End_Mode);
1140
1141       --  Once the backend is complete, we unlock the names table. This call
1142       --  allows a few extra entries, needed for example for the file name for
1143       --  the library file output.
1144
1145       Namet.Unlock;
1146
1147       --  Generate the call-graph output of dispatching calls
1148
1149       Exp_CG.Generate_CG_Output;
1150
1151       --  Validate unchecked conversions (using the values for size and
1152       --  alignment annotated by the backend where possible).
1153
1154       Sem_Ch13.Validate_Unchecked_Conversions;
1155
1156       --  Validate address clauses (again using alignment values annotated
1157       --  by the backend where possible).
1158
1159       Sem_Ch13.Validate_Address_Clauses;
1160
1161       --  Validate independence pragmas (again using values annotated by
1162       --  the back end for component layout etc.)
1163
1164       Sem_Ch13.Validate_Independence;
1165
1166       --  Now we complete output of errors, rep info and the tree info. These
1167       --  are delayed till now, since it is perfectly possible for gigi to
1168       --  generate errors, modify the tree (in particular by setting flags
1169       --  indicating that elaboration is required, and also to back annotate
1170       --  representation information for List_Rep_Info.
1171
1172       Errout.Finalize (Last_Call => True);
1173       Errout.Output_Messages;
1174       List_Rep_Info;
1175       List_Inlining_Info;
1176
1177       --  Only write the library if the backend did not generate any error
1178       --  messages. Otherwise signal errors to the driver program so that
1179       --  there will be no attempt to generate an object file.
1180
1181       if Compilation_Errors then
1182          Treepr.Tree_Dump;
1183          Exit_Program (E_Errors);
1184       end if;
1185
1186       Write_ALI (Object => (Back_End_Mode = Generate_Object));
1187
1188       if not Compilation_Errors then
1189
1190          --  In case of ada backends, we need to make sure that the generated
1191          --  object file has a timestamp greater than the ALI file. We do this
1192          --  to make gnatmake happy when checking the ALI and obj timestamps,
1193          --  where it expects the object file being written after the ali file.
1194
1195          --  Gnatmake's assumption is true for gcc platforms where the gcc
1196          --  wrapper needs to call the assembler after calling gnat1, but is
1197          --  not true for ada backends, where the object files are created
1198          --  directly by gnat1 (so are created before the ali file).
1199
1200          Back_End.Gen_Or_Update_Object_File;
1201       end if;
1202
1203       --  Generate ASIS tree after writing the ALI file, since in ASIS mode,
1204       --  Write_ALI may in fact result in further tree decoration from the
1205       --  original tree file. Note that we dump the tree just before generating
1206       --  it, so that the dump will exactly reflect what is written out.
1207
1208       Treepr.Tree_Dump;
1209       Tree_Gen;
1210
1211       --  Finalize name table and we are all done
1212
1213       Namet.Finalize;
1214
1215    exception
1216       --  Handle fatal internal compiler errors
1217
1218       when Rtsfind.RE_Not_Available =>
1219          Comperr.Compiler_Abort ("RE_Not_Available");
1220
1221       when System.Assertions.Assert_Failure =>
1222          Comperr.Compiler_Abort ("Assert_Failure");
1223
1224       when Constraint_Error =>
1225          Comperr.Compiler_Abort ("Constraint_Error");
1226
1227       when Program_Error =>
1228          Comperr.Compiler_Abort ("Program_Error");
1229
1230       when Storage_Error =>
1231
1232          --  Assume this is a bug. If it is real, the message will in any case
1233          --  say Storage_Error, giving a strong hint!
1234
1235          Comperr.Compiler_Abort ("Storage_Error");
1236    end;
1237
1238    <<End_Of_Program>>
1239    null;
1240
1241    --  The outer exception handles an unrecoverable error
1242
1243 exception
1244    when Unrecoverable_Error =>
1245       Errout.Finalize (Last_Call => True);
1246       Errout.Output_Messages;
1247
1248       Set_Standard_Error;
1249       Write_Str ("compilation abandoned");
1250       Write_Eol;
1251
1252       Set_Standard_Output;
1253       Source_Dump;
1254       Tree_Dump;
1255       Exit_Program (E_Errors);
1256
1257 end Gnat1drv;