PR c++/54038
[official-gcc.git] / gcc / ada / gnat1drv.adb
blob4cc6a4937b2b3758f5e1b2913a61880693555298
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 ------------------------------------------------------------------------------
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;
81 with System.Assertions;
83 procedure Gnat1drv is
84 Main_Unit_Node : Node_Id;
85 -- Compilation unit node for main unit
87 Main_Kind : Node_Kind;
88 -- Kind of main compilation unit node
90 Back_End_Mode : Back_End.Back_End_Mode_Type;
91 -- Record back end mode
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.
100 procedure Check_Bad_Body;
101 -- Called to check if the unit we are compiling has a bad body
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.
107 ----------------------------
108 -- Adjust_Global_Switches --
109 ----------------------------
111 procedure Adjust_Global_Switches is
112 begin
113 -- Debug flag -gnatd.I is a synonym for Generate_SCIL and requires code
114 -- generation.
116 if Debug_Flag_Dot_II and then Operating_Mode = Generate_Code then
117 Generate_SCIL := True;
118 end if;
120 -- Disable CodePeer_Mode in Check_Syntax, since we need front-end
121 -- expansion.
123 if Operating_Mode = Check_Syntax then
124 CodePeer_Mode := False;
125 end if;
127 -- Set ASIS mode if -gnatt and -gnatc are set
129 if Operating_Mode = Check_Semantics and then Tree_Output then
130 ASIS_Mode := True;
132 -- Turn off inlining in ASIS mode, since ASIS cannot handle the extra
133 -- information in the trees caused by inlining being active.
135 -- More specifically, the tree seems to be malformed from the ASIS
136 -- point of view if -gnatc and -gnatn appear together???
138 Inline_Active := False;
140 -- Turn off SCIL generation and CodePeer mode in semantics mode,
141 -- since SCIL requires front-end expansion.
143 Generate_SCIL := False;
144 CodePeer_Mode := False;
145 end if;
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.
152 if Generate_SCIL then
153 Front_End_Inlining := False;
154 end if;
156 -- Tune settings for optimal SCIL generation in CodePeer mode
158 if CodePeer_Mode then
160 -- Turn off inlining, confuses CodePeer output and gains nothing
162 Front_End_Inlining := False;
163 Inline_Active := False;
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.
169 Optimization_Level := 0;
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.
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;
183 -- Suppress overflow, division by zero and access checks since they
184 -- are handled implicitly by CodePeer.
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.
190 -- Turn off alignment checks: these cannot be proved statically by
191 -- CodePeer and generate false positives.
193 -- Enable all other language checks
195 Suppress_Options :=
196 (Access_Check => True,
197 Alignment_Check => True,
198 Division_Check => True,
199 Elaboration_Check => True,
200 Overflow_Check => True,
201 others => False);
202 Enable_Overflow_Checks := False;
203 Dynamic_Elaboration_Checks := False;
205 -- Kill debug of generated code, since it messes up sloc values
207 Debug_Generated_Code := False;
209 -- Turn cross-referencing on in case it was disabled (e.g. by -gnatD)
210 -- Do we really need to spend time generating xref in CodePeer
211 -- mode??? Consider setting Xref_Active to False.
213 Xref_Active := True;
215 -- Polling mode forced off, since it generates confusing junk
217 Polling_Required := False;
219 -- Set operating mode to Generate_Code to benefit from full front-end
220 -- expansion (e.g. generics).
222 Operating_Mode := Generate_Code;
224 -- We need SCIL generation of course
226 Generate_SCIL := True;
228 -- Enable assertions and debug pragmas, since they give CodePeer
229 -- valuable extra information.
231 Assertions_Enabled := True;
232 Debug_Pragmas_Enabled := True;
234 -- Disable all simple value propagation. This is an optimization
235 -- which is valuable for code optimization, and also for generation
236 -- of compiler warnings, but these are being turned off by default,
237 -- and CodePeer generates better messages (referencing original
238 -- variables) this way.
240 Debug_Flag_MM := True;
242 -- Set normal RM validity checking, and checking of IN OUT parameters
243 -- (this might give CodePeer more useful checks to analyze, to be
244 -- confirmed???). All other validity checking is turned off, since
245 -- this can generate very complex trees that only confuse CodePeer
246 -- and do not bring enough useful info.
248 Reset_Validity_Check_Options;
249 Validity_Check_Default := True;
250 Validity_Check_In_Out_Params := True;
251 Validity_Check_In_Params := True;
253 -- Turn off style check options since we are not interested in any
254 -- front-end warnings when we are getting CodePeer output.
256 Reset_Style_Check_Options;
258 -- Always perform semantics and generate ali files in CodePeer mode,
259 -- so that a gnatmake -c -k will proceed further when possible.
261 Force_ALI_Tree_File := True;
262 Try_Semantics := True;
263 end if;
265 -- Set Configurable_Run_Time mode if system.ads flag set
267 if Targparm.Configurable_Run_Time_On_Target or Debug_Flag_YY then
268 Configurable_Run_Time_Mode := True;
269 end if;
271 -- Set -gnatR3m mode if debug flag A set
273 if Debug_Flag_AA then
274 Back_Annotate_Rep_Info := True;
275 List_Representation_Info := 1;
276 List_Representation_Info_Mechanisms := True;
277 end if;
279 -- Force Target_Strict_Alignment true if debug flag -gnatd.a is set
281 if Debug_Flag_Dot_A then
282 Ttypes.Target_Strict_Alignment := True;
283 end if;
285 -- Increase size of allocated entities if debug flag -gnatd.N is set
287 if Debug_Flag_Dot_NN then
288 Atree.Num_Extension_Nodes := Atree.Num_Extension_Nodes + 1;
289 end if;
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. ???
297 if Debug_Flag_Dot_T or else Frontend_Layout_On_Target then
298 Static_Dispatch_Tables := False;
299 end if;
301 -- Flip endian mode if -gnatd8 set
303 if Debug_Flag_8 then
304 Ttypes.Bytes_Big_Endian := not Ttypes.Bytes_Big_Endian;
305 end if;
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!
311 Opt.True_VMS_Target := Targparm.OpenVMS_On_Target;
313 if Debug_Flag_M then
314 Targparm.OpenVMS_On_Target := True;
315 Hostparm.OpenVMS := True;
316 end if;
318 -- Activate front end layout if debug flag -gnatdF is set
320 if Debug_Flag_FF then
321 Targparm.Frontend_Layout_On_Target := True;
322 end if;
324 -- Set and check exception mechanism
326 if Targparm.ZCX_By_Default_On_Target then
327 Exception_Mechanism := Back_End_Exceptions;
328 end if;
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).
335 if not Opt.Suppress_Checks
336 and then (Opt.Enable_Overflow_Checks
337 or else
338 (Targparm.Backend_Divide_Checks_On_Target
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;
347 -- Set default for atomic synchronization. As this synchronization
348 -- between atomic accesses can be expensive, and not typically needed
349 -- on some targets, an optional target parameter can turn the option
350 -- off. Note Atomic Synchronization is implemented as check.
352 Suppress_Options (Atomic_Synchronization) := not Atomic_Sync_Default;
354 -- Set switch indicating if we can use N_Expression_With_Actions
356 -- Debug flag -gnatd.X decisively sets usage on
358 if Debug_Flag_Dot_XX then
359 Use_Expression_With_Actions := True;
361 -- Debug flag -gnatd.Y decisively sets usage off
363 elsif Debug_Flag_Dot_YY then
364 Use_Expression_With_Actions := False;
366 -- Otherwise this feature is implemented, so we allow its use
368 else
369 Use_Expression_With_Actions := True;
370 end if;
372 -- Set switch indicating if back end can handle limited types, and
373 -- guarantee that no incorrect copies are made (e.g. in the context
374 -- of a conditional expression).
376 -- Debug flag -gnatd.L decisively sets usage on
378 if Debug_Flag_Dot_LL then
379 Back_End_Handles_Limited_Types := True;
381 -- If no debug flag, usage off for AAMP, VM, SCIL cases
383 elsif AAMP_On_Target
384 or else VM_Target /= No_VM
385 or else Generate_SCIL
386 then
387 Back_End_Handles_Limited_Types := False;
389 -- Otherwise normal gcc back end, for now still turn flag off by
390 -- default, since there are unresolved problems in the front end.
392 else
393 Back_End_Handles_Limited_Types := False;
394 end if;
396 -- Set switches for formal verification mode
398 if Debug_Flag_Dot_FF then
400 Alfa_Mode := True;
402 -- Set strict standard interpretation of compiler permissions
404 if Debug_Flag_Dot_DD then
405 Strict_Alfa_Mode := True;
406 end if;
408 -- Turn off inlining, which would confuse formal verification output
409 -- and gain nothing.
411 Front_End_Inlining := False;
412 Inline_Active := False;
414 -- Disable front-end optimizations, to keep the tree as close to the
415 -- source code as possible, and also to avoid inconsistencies between
416 -- trees when using different optimization switches.
418 Optimization_Level := 0;
420 -- Enable some restrictions systematically to simplify the generated
421 -- code (and ease analysis). Note that restriction checks are also
422 -- disabled in Alfa mode, see Restrict.Check_Restriction, and user
423 -- specified Restrictions pragmas are ignored, see
424 -- Sem_Prag.Process_Restrictions_Or_Restriction_Warnings.
426 Restrict.Restrictions.Set (No_Initialize_Scalars) := True;
428 -- Suppress all language checks since they are handled implicitly by
429 -- the formal verification backend.
430 -- Turn off dynamic elaboration checks.
431 -- Turn off alignment checks.
432 -- Turn off validity checking.
434 Suppress_Options := (others => True);
435 Enable_Overflow_Checks := False;
436 Dynamic_Elaboration_Checks := False;
437 Reset_Validity_Check_Options;
439 -- Kill debug of generated code, since it messes up sloc values
441 Debug_Generated_Code := False;
443 -- Turn cross-referencing on in case it was disabled (e.g. by -gnatD)
444 -- as it is needed for computing effects of subprograms in the formal
445 -- verification backend.
447 Xref_Active := True;
449 -- Polling mode forced off, since it generates confusing junk
451 Polling_Required := False;
453 -- Set operating mode to Generate_Code, but full front-end expansion
454 -- is not desirable in Alfa mode, so a light expansion is performed
455 -- instead.
457 Operating_Mode := Generate_Code;
459 -- Skip call to gigi
461 Debug_Flag_HH := True;
463 -- Disable Expressions_With_Actions nodes
465 -- The gnat2why backend does not deal with Expressions_With_Actions
466 -- in all places (in particular assertions). It is difficult to
467 -- determine in the frontend which cases are allowed, so we disable
468 -- Expressions_With_Actions entirely. Even in the cases where
469 -- gnat2why deals with Expressions_With_Actions, it is easier to
470 -- deal with the original constructs (quantified, conditional and
471 -- case expressions) instead of the rewritten ones.
473 Use_Expression_With_Actions := False;
475 -- Enable assertions and debug pragmas, since they give valuable
476 -- extra information for formal verification.
478 Assertions_Enabled := True;
479 Debug_Pragmas_Enabled := True;
481 -- Turn off style check options since we are not interested in any
482 -- front-end warnings when we are getting Alfa output.
484 Reset_Style_Check_Options;
486 -- Suppress compiler warnings, since what we are interested in here
487 -- is what formal verification can find out.
489 Warning_Mode := Suppress;
491 -- Suppress the generation of name tables for enumerations, which are
492 -- not needed for formal verification, and fall outside the Alfa
493 -- subset (use of pointers).
495 Global_Discard_Names := True;
497 -- Suppress the expansion of tagged types and dispatching calls,
498 -- which lead to the generation of non-Alfa code (use of pointers),
499 -- which is more complex to formally verify than the original source.
501 Tagged_Type_Expansion := False;
502 end if;
504 -- If the inlining level has not been set by the user, compute it from
505 -- the optimization level: 1 at -O1/-O2 (and -Os), 2 at -O3 and above.
507 if Inline_Level = 0 then
508 if Optimization_Level < 3 then
509 Inline_Level := 1;
510 else
511 Inline_Level := 2;
512 end if;
513 end if;
514 end Adjust_Global_Switches;
516 --------------------
517 -- Check_Bad_Body --
518 --------------------
520 procedure Check_Bad_Body is
521 Sname : Unit_Name_Type;
522 Src_Ind : Source_File_Index;
523 Fname : File_Name_Type;
525 procedure Bad_Body_Error (Msg : String);
526 -- Issue message for bad body found
528 --------------------
529 -- Bad_Body_Error --
530 --------------------
532 procedure Bad_Body_Error (Msg : String) is
533 begin
534 Error_Msg_N (Msg, Main_Unit_Node);
535 Error_Msg_File_1 := Fname;
536 Error_Msg_N ("remove incorrect body in file{!", Main_Unit_Node);
537 end Bad_Body_Error;
539 -- Start of processing for Check_Bad_Body
541 begin
542 -- Nothing to do if we are only checking syntax, because we don't know
543 -- enough to know if we require or forbid a body in this case.
545 if Operating_Mode = Check_Syntax then
546 return;
547 end if;
549 -- Check for body not allowed
551 if (Main_Kind = N_Package_Declaration
552 and then not Body_Required (Main_Unit_Node))
553 or else (Main_Kind = N_Generic_Package_Declaration
554 and then not Body_Required (Main_Unit_Node))
555 or else Main_Kind = N_Package_Renaming_Declaration
556 or else Main_Kind = N_Subprogram_Renaming_Declaration
557 or else Nkind (Original_Node (Unit (Main_Unit_Node)))
558 in N_Generic_Instantiation
559 then
560 Sname := Unit_Name (Main_Unit);
562 -- If we do not already have a body name, then get the body name
563 -- (but how can we have a body name here???)
565 if not Is_Body_Name (Sname) then
566 Sname := Get_Body_Name (Sname);
567 end if;
569 Fname := Get_File_Name (Sname, Subunit => False);
570 Src_Ind := Load_Source_File (Fname);
572 -- Case where body is present and it is not a subunit. Exclude the
573 -- subunit case, because it has nothing to do with the package we are
574 -- compiling. It is illegal for a child unit and a subunit with the
575 -- same expanded name (RM 10.2(9)) to appear together in a partition,
576 -- but there is nothing to stop a compilation environment from having
577 -- both, and the test here simply allows that. If there is an attempt
578 -- to include both in a partition, this is diagnosed at bind time. In
579 -- Ada 83 mode this is not a warning case.
581 -- Note: if weird file names are being used, we can have a situation
582 -- where the file name that supposedly contains body in fact contains
583 -- a spec, or we can't tell what it contains. Skip the error message
584 -- in these cases.
586 -- Also ignore body that is nothing but pragma No_Body; (that's the
587 -- whole point of this pragma, to be used this way and to cause the
588 -- body file to be ignored in this context).
590 if Src_Ind /= No_Source_File
591 and then Get_Expected_Unit_Type (Fname) = Expect_Body
592 and then not Source_File_Is_Subunit (Src_Ind)
593 and then not Source_File_Is_No_Body (Src_Ind)
594 then
595 Errout.Finalize (Last_Call => False);
597 Error_Msg_Unit_1 := Sname;
599 -- Ada 83 case of a package body being ignored. This is not an
600 -- error as far as the Ada 83 RM is concerned, but it is almost
601 -- certainly not what is wanted so output a warning. Give this
602 -- message only if there were no errors, since otherwise it may
603 -- be incorrect (we may have misinterpreted a junk spec as not
604 -- needing a body when it really does).
606 if Main_Kind = N_Package_Declaration
607 and then Ada_Version = Ada_83
608 and then Operating_Mode = Generate_Code
609 and then Distribution_Stub_Mode /= Generate_Caller_Stub_Body
610 and then not Compilation_Errors
611 then
612 Error_Msg_N
613 ("package $$ does not require a body?", Main_Unit_Node);
614 Error_Msg_File_1 := Fname;
615 Error_Msg_N ("body in file{? will be ignored", Main_Unit_Node);
617 -- Ada 95 cases of a body file present when no body is
618 -- permitted. This we consider to be an error.
620 else
621 -- For generic instantiations, we never allow a body
623 if Nkind (Original_Node (Unit (Main_Unit_Node)))
624 in N_Generic_Instantiation
625 then
626 Bad_Body_Error
627 ("generic instantiation for $$ does not allow a body");
629 -- A library unit that is a renaming never allows a body
631 elsif Main_Kind in N_Renaming_Declaration then
632 Bad_Body_Error
633 ("renaming declaration for $$ does not allow a body!");
635 -- Remaining cases are packages and generic packages. Here
636 -- we only do the test if there are no previous errors,
637 -- because if there are errors, they may lead us to
638 -- incorrectly believe that a package does not allow a body
639 -- when in fact it does.
641 elsif not Compilation_Errors then
642 if Main_Kind = N_Package_Declaration then
643 Bad_Body_Error
644 ("package $$ does not allow a body!");
646 elsif Main_Kind = N_Generic_Package_Declaration then
647 Bad_Body_Error
648 ("generic package $$ does not allow a body!");
649 end if;
650 end if;
652 end if;
653 end if;
654 end if;
655 end Check_Bad_Body;
657 --------------------
658 -- Check_Rep_Info --
659 --------------------
661 procedure Check_Rep_Info is
662 begin
663 if List_Representation_Info /= 0
664 or else List_Representation_Info_Mechanisms
665 then
666 Set_Standard_Error;
667 Write_Eol;
668 Write_Str
669 ("cannot generate representation information, no code generated");
670 Write_Eol;
671 Write_Eol;
672 Set_Standard_Output;
673 end if;
674 end Check_Rep_Info;
676 -- Start of processing for Gnat1drv
678 begin
679 -- This inner block is set up to catch assertion errors and constraint
680 -- errors. Since the code for handling these errors can cause another
681 -- exception to be raised (namely Unrecoverable_Error), we need two
682 -- nested blocks, so that the outer one handles unrecoverable error.
684 begin
685 -- Initialize all packages. For the most part, these initialization
686 -- calls can be made in any order. Exceptions are as follows:
688 -- Lib.Initialize need to be called before Scan_Compiler_Arguments,
689 -- because it initializes a table filled by Scan_Compiler_Arguments.
691 Osint.Initialize;
692 Fmap.Reset_Tables;
693 Lib.Initialize;
694 Lib.Xref.Initialize;
695 Scan_Compiler_Arguments;
696 Osint.Add_Default_Search_Dirs;
698 Nlists.Initialize;
699 Sinput.Initialize;
700 Sem.Initialize;
701 Exp_CG.Initialize;
702 Csets.Initialize;
703 Uintp.Initialize;
704 Urealp.Initialize;
705 Errout.Initialize;
706 SCOs.Initialize;
707 Snames.Initialize;
708 Stringt.Initialize;
709 Inline.Initialize;
710 Par_SCO.Initialize;
711 Sem_Ch8.Initialize;
712 Sem_Ch12.Initialize;
713 Sem_Ch13.Initialize;
714 Sem_Elim.Initialize;
715 Sem_Eval.Initialize;
716 Sem_Type.Init_Interp_Tables;
718 -- Acquire target parameters from system.ads (source of package System)
720 declare
721 use Sinput;
723 S : Source_File_Index;
724 N : File_Name_Type;
726 begin
727 Name_Buffer (1 .. 10) := "system.ads";
728 Name_Len := 10;
729 N := Name_Find;
730 S := Load_Source_File (N);
732 if S = No_Source_File then
733 Write_Line
734 ("fatal error, run-time library not installed correctly");
735 Write_Line ("cannot locate file system.ads");
736 raise Unrecoverable_Error;
738 -- Remember source index of system.ads (which was read successfully)
740 else
741 System_Source_File_Index := S;
742 end if;
744 Targparm.Get_Target_Parameters
745 (System_Text => Source_Text (S),
746 Source_First => Source_First (S),
747 Source_Last => Source_Last (S));
749 -- Acquire configuration pragma information from Targparm
751 Restrict.Restrictions := Targparm.Restrictions_On_Target;
752 end;
754 Adjust_Global_Switches;
756 -- Output copyright notice if full list mode unless we have a list
757 -- file, in which case we defer this so that it is output in the file
759 if (Verbose_Mode or else (Full_List and then Full_List_File_Name = null))
760 and then not Debug_Flag_7
761 then
762 Write_Eol;
763 Write_Str ("GNAT ");
764 Write_Str (Gnat_Version_String);
765 Write_Eol;
766 Write_Str ("Copyright 1992-" & Current_Year
767 & ", Free Software Foundation, Inc.");
768 Write_Eol;
769 end if;
771 -- Check we do not have more than one source file, this happens only in
772 -- the case where the driver is called directly, it cannot happen when
773 -- gnat1 is invoked from gcc in the normal case.
775 if Osint.Number_Of_Files /= 1 then
776 Usage;
777 Write_Eol;
778 Osint.Fail ("you must provide one source file");
780 elsif Usage_Requested then
781 Usage;
782 end if;
784 Original_Operating_Mode := Operating_Mode;
785 Frontend;
787 -- Exit with errors if the main source could not be parsed. Also, when
788 -- -gnatd.H is present, the source file is not set.
790 if Sinput.Main_Source_File = No_Source_File then
792 -- Handle -gnatd.H debug mode
794 if Debug_Flag_Dot_HH then
796 -- For -gnatd.H, lock all the tables to keep the convention that
797 -- the backend needs to unlock the tables it wants to touch.
799 Atree.Lock;
800 Elists.Lock;
801 Fname.UF.Lock;
802 Inline.Lock;
803 Lib.Lock;
804 Nlists.Lock;
805 Sem.Lock;
806 Sinput.Lock;
807 Namet.Lock;
808 Stringt.Lock;
810 -- And all we need to do is to call the back end
812 Back_End.Call_Back_End (Back_End.Generate_Object);
813 end if;
815 Errout.Finalize (Last_Call => True);
816 Errout.Output_Messages;
817 Exit_Program (E_Errors);
818 end if;
820 Main_Unit_Node := Cunit (Main_Unit);
821 Main_Kind := Nkind (Unit (Main_Unit_Node));
822 Check_Bad_Body;
824 -- In CodePeer mode we always delete old SCIL files before regenerating
825 -- new ones, in case of e.g. errors, and also to remove obsolete scilx
826 -- files generated by CodePeer itself.
828 if CodePeer_Mode then
829 Comperr.Delete_SCIL_Files;
830 end if;
832 -- Exit if compilation errors detected
834 Errout.Finalize (Last_Call => False);
836 if Compilation_Errors then
837 Treepr.Tree_Dump;
838 Sem_Ch13.Validate_Unchecked_Conversions;
839 Sem_Ch13.Validate_Address_Clauses;
840 Sem_Ch13.Validate_Independence;
841 Errout.Output_Messages;
842 Namet.Finalize;
844 -- Generate ALI file if specially requested
846 if Opt.Force_ALI_Tree_File then
847 Write_ALI (Object => False);
848 Tree_Gen;
849 end if;
851 Errout.Finalize (Last_Call => True);
852 Exit_Program (E_Errors);
853 end if;
855 -- Set Generate_Code on main unit and its spec. We do this even if are
856 -- not generating code, since Lib-Writ uses this to determine which
857 -- units get written in the ali file.
859 Set_Generate_Code (Main_Unit);
861 -- If we have a corresponding spec, and it comes from source or it is
862 -- not a generated spec for a child subprogram body, then we need object
863 -- code for the spec unit as well.
865 if Nkind (Unit (Main_Unit_Node)) in N_Unit_Body
866 and then not Acts_As_Spec (Main_Unit_Node)
867 then
868 if Nkind (Unit (Main_Unit_Node)) = N_Subprogram_Body
869 and then not Comes_From_Source (Library_Unit (Main_Unit_Node))
870 then
871 null;
872 else
873 Set_Generate_Code
874 (Get_Cunit_Unit_Number (Library_Unit (Main_Unit_Node)));
875 end if;
876 end if;
878 -- Case of no code required to be generated, exit indicating no error
880 if Original_Operating_Mode = Check_Syntax then
881 Treepr.Tree_Dump;
882 Errout.Finalize (Last_Call => True);
883 Errout.Output_Messages;
884 Tree_Gen;
885 Namet.Finalize;
886 Check_Rep_Info;
888 -- Use a goto instead of calling Exit_Program so that finalization
889 -- occurs normally.
891 goto End_Of_Program;
893 elsif Original_Operating_Mode = Check_Semantics then
894 Back_End_Mode := Declarations_Only;
896 -- All remaining cases are cases in which the user requested that code
897 -- be generated (i.e. no -gnatc or -gnats switch was used). Check if we
898 -- can in fact satisfy this request.
900 -- Cannot generate code if someone has turned off code generation for
901 -- any reason at all. We will try to figure out a reason below.
903 elsif Operating_Mode /= Generate_Code then
904 Back_End_Mode := Skip;
906 -- We can generate code for a subprogram body unless there were missing
907 -- subunits. Note that we always generate code for all generic units (a
908 -- change from some previous versions of GNAT).
910 elsif Main_Kind = N_Subprogram_Body and then not Subunits_Missing then
911 Back_End_Mode := Generate_Object;
913 -- We can generate code for a package body unless there are subunits
914 -- missing (note that we always generate code for generic units, which
915 -- is a change from some earlier versions of GNAT).
917 elsif Main_Kind = N_Package_Body and then not Subunits_Missing then
918 Back_End_Mode := Generate_Object;
920 -- We can generate code for a package declaration or a subprogram
921 -- declaration only if it does not required a body.
923 elsif Nkind_In (Main_Kind,
924 N_Package_Declaration,
925 N_Subprogram_Declaration)
926 and then
927 (not Body_Required (Main_Unit_Node)
928 or else
929 Distribution_Stub_Mode = Generate_Caller_Stub_Body)
930 then
931 Back_End_Mode := Generate_Object;
933 -- We can generate code for a generic package declaration of a generic
934 -- subprogram declaration only if does not require a body.
936 elsif Nkind_In (Main_Kind, N_Generic_Package_Declaration,
937 N_Generic_Subprogram_Declaration)
938 and then not Body_Required (Main_Unit_Node)
939 then
940 Back_End_Mode := Generate_Object;
942 -- Compilation units that are renamings do not require bodies, so we can
943 -- generate code for them.
945 elsif Nkind_In (Main_Kind, N_Package_Renaming_Declaration,
946 N_Subprogram_Renaming_Declaration)
947 then
948 Back_End_Mode := Generate_Object;
950 -- Compilation units that are generic renamings do not require bodies
951 -- so we can generate code for them.
953 elsif Main_Kind in N_Generic_Renaming_Declaration then
954 Back_End_Mode := Generate_Object;
956 -- It's not an error to generate SCIL for e.g. a spec which has a body
958 elsif CodePeer_Mode then
959 Back_End_Mode := Generate_Object;
961 -- In all other cases (specs which have bodies, generics, and bodies
962 -- where subunits are missing), we cannot generate code and we generate
963 -- a warning message. Note that generic instantiations are gone at this
964 -- stage since they have been replaced by their instances.
966 else
967 Back_End_Mode := Skip;
968 end if;
970 -- At this stage Back_End_Mode is set to indicate if the backend should
971 -- be called to generate code. If it is Skip, then code generation has
972 -- been turned off, even though code was requested by the original
973 -- command. This is not an error from the user point of view, but it is
974 -- an error from the point of view of the gcc driver, so we must exit
975 -- with an error status.
977 -- We generate an informative message (from the gcc point of view, it
978 -- is an error message, but from the users point of view this is not an
979 -- error, just a consequence of compiling something that cannot
980 -- generate code).
982 if Back_End_Mode = Skip then
983 Set_Standard_Error;
984 Write_Str ("cannot generate code for ");
985 Write_Str ("file ");
986 Write_Name (Unit_File_Name (Main_Unit));
988 if Subunits_Missing then
989 Write_Str (" (missing subunits)");
990 Write_Eol;
992 -- Force generation of ALI file, for backward compatibility
994 Opt.Force_ALI_Tree_File := True;
996 elsif Main_Kind = N_Subunit then
997 Write_Str (" (subunit)");
998 Write_Eol;
1000 -- Force generation of ALI file, for backward compatibility
1002 Opt.Force_ALI_Tree_File := True;
1004 elsif Main_Kind = N_Subprogram_Declaration then
1005 Write_Str (" (subprogram spec)");
1006 Write_Eol;
1008 -- Generic package body in GNAT implementation mode
1010 elsif Main_Kind = N_Package_Body and then GNAT_Mode then
1011 Write_Str (" (predefined generic)");
1012 Write_Eol;
1014 -- Force generation of ALI file, for backward compatibility
1016 Opt.Force_ALI_Tree_File := True;
1018 -- Only other case is a package spec
1020 else
1021 Write_Str (" (package spec)");
1022 Write_Eol;
1023 end if;
1025 Set_Standard_Output;
1027 Sem_Ch13.Validate_Unchecked_Conversions;
1028 Sem_Ch13.Validate_Address_Clauses;
1029 Sem_Ch13.Validate_Independence;
1030 Errout.Finalize (Last_Call => True);
1031 Errout.Output_Messages;
1032 Treepr.Tree_Dump;
1033 Tree_Gen;
1035 -- Generate ALI file if specially requested, or for missing subunits,
1036 -- subunits or predefined generic.
1038 if Opt.Force_ALI_Tree_File then
1039 Write_ALI (Object => False);
1040 end if;
1042 Namet.Finalize;
1043 Check_Rep_Info;
1045 -- Exit program with error indication, to kill object file
1047 Exit_Program (E_No_Code);
1048 end if;
1050 -- In -gnatc mode, we only do annotation if -gnatt or -gnatR is also set
1051 -- as indicated by Back_Annotate_Rep_Info being set to True.
1053 -- We don't call for annotations on a subunit, because to process those
1054 -- the back-end requires that the parent(s) be properly compiled.
1056 -- Annotation is suppressed for targets where front-end layout is
1057 -- enabled, because the front end determines representations.
1059 -- Annotation is also suppressed in the case of compiling for a VM,
1060 -- since representations are largely symbolic there.
1062 if Back_End_Mode = Declarations_Only
1063 and then (not (Back_Annotate_Rep_Info or Generate_SCIL)
1064 or else Main_Kind = N_Subunit
1065 or else Targparm.Frontend_Layout_On_Target
1066 or else Targparm.VM_Target /= No_VM)
1067 then
1068 Sem_Ch13.Validate_Unchecked_Conversions;
1069 Sem_Ch13.Validate_Address_Clauses;
1070 Sem_Ch13.Validate_Independence;
1071 Errout.Finalize (Last_Call => True);
1072 Errout.Output_Messages;
1073 Write_ALI (Object => False);
1074 Tree_Dump;
1075 Tree_Gen;
1076 Namet.Finalize;
1077 Check_Rep_Info;
1078 return;
1079 end if;
1081 -- Ensure that we properly register a dependency on system.ads, since
1082 -- even if we do not semantically depend on this, Targparm has read
1083 -- system parameters from the system.ads file.
1085 Lib.Writ.Ensure_System_Dependency;
1087 -- Add dependencies, if any, on preprocessing data file and on
1088 -- preprocessing definition file(s).
1090 Prepcomp.Add_Dependencies;
1092 -- Back end needs to explicitly unlock tables it needs to touch
1094 Atree.Lock;
1095 Elists.Lock;
1096 Fname.UF.Lock;
1097 Inline.Lock;
1098 Lib.Lock;
1099 Nlists.Lock;
1100 Sem.Lock;
1101 Sinput.Lock;
1102 Namet.Lock;
1103 Stringt.Lock;
1105 -- Here we call the back end to generate the output code
1107 Generating_Code := True;
1108 Back_End.Call_Back_End (Back_End_Mode);
1110 -- Once the backend is complete, we unlock the names table. This call
1111 -- allows a few extra entries, needed for example for the file name for
1112 -- the library file output.
1114 Namet.Unlock;
1116 -- Generate the call-graph output of dispatching calls
1118 Exp_CG.Generate_CG_Output;
1120 -- Validate unchecked conversions (using the values for size and
1121 -- alignment annotated by the backend where possible).
1123 Sem_Ch13.Validate_Unchecked_Conversions;
1125 -- Validate address clauses (again using alignment values annotated
1126 -- by the backend where possible).
1128 Sem_Ch13.Validate_Address_Clauses;
1130 -- Validate independence pragmas (again using values annotated by
1131 -- the back end for component layout etc.)
1133 Sem_Ch13.Validate_Independence;
1135 -- Now we complete output of errors, rep info and the tree info. These
1136 -- are delayed till now, since it is perfectly possible for gigi to
1137 -- generate errors, modify the tree (in particular by setting flags
1138 -- indicating that elaboration is required, and also to back annotate
1139 -- representation information for List_Rep_Info.
1141 Errout.Finalize (Last_Call => True);
1142 Errout.Output_Messages;
1143 List_Rep_Info;
1144 List_Inlining_Info;
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.
1150 if Compilation_Errors then
1151 Treepr.Tree_Dump;
1152 Exit_Program (E_Errors);
1153 end if;
1155 Write_ALI (Object => (Back_End_Mode = Generate_Object));
1157 if not Compilation_Errors then
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.
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).
1169 Back_End.Gen_Or_Update_Object_File;
1170 end if;
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.
1177 Treepr.Tree_Dump;
1178 Tree_Gen;
1180 -- Finalize name table and we are all done
1182 Namet.Finalize;
1184 exception
1185 -- Handle fatal internal compiler errors
1187 when Rtsfind.RE_Not_Available =>
1188 Comperr.Compiler_Abort ("RE_Not_Available");
1190 when System.Assertions.Assert_Failure =>
1191 Comperr.Compiler_Abort ("Assert_Failure");
1193 when Constraint_Error =>
1194 Comperr.Compiler_Abort ("Constraint_Error");
1196 when Program_Error =>
1197 Comperr.Compiler_Abort ("Program_Error");
1199 when Storage_Error =>
1201 -- Assume this is a bug. If it is real, the message will in any case
1202 -- say Storage_Error, giving a strong hint!
1204 Comperr.Compiler_Abort ("Storage_Error");
1205 end;
1207 <<End_Of_Program>>
1208 null;
1210 -- The outer exception handles an unrecoverable error
1212 exception
1213 when Unrecoverable_Error =>
1214 Errout.Finalize (Last_Call => True);
1215 Errout.Output_Messages;
1217 Set_Standard_Error;
1218 Write_Str ("compilation abandoned");
1219 Write_Eol;
1221 Set_Standard_Output;
1222 Source_Dump;
1223 Tree_Dump;
1224 Exit_Program (E_Errors);
1226 end Gnat1drv;