OSDN Git Service

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