OSDN Git Service

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