Rebase.
[official-gcc.git] / gcc / ada / gnat1drv.adb
blob50f4befcc10bc76dd1cb301c9ce6587eb03462e3
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-2014, 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 Checks;
29 with Comperr;
30 with Csets; use Csets;
31 with Debug; use Debug;
32 with Elists;
33 with Errout; use Errout;
34 with Exp_CG;
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 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 Set_Targ;
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 Tbuild;
72 with Tree_Gen;
73 with Treepr; use Treepr;
74 with Ttypes;
75 with Types; use Types;
76 with Uintp; use Uintp;
77 with Uname; use Uname;
78 with Urealp;
79 with Usage;
80 with Validsw; use Validsw;
82 with System.Assertions;
83 with System.OS_Lib;
85 --------------
86 -- Gnat1drv --
87 --------------
89 procedure Gnat1drv is
90 Main_Unit_Node : Node_Id;
91 -- Compilation unit node for main unit
93 Main_Kind : Node_Kind;
94 -- Kind of main compilation unit node
96 Back_End_Mode : Back_End.Back_End_Mode_Type;
97 -- Record back end mode
99 procedure Adjust_Global_Switches;
100 -- There are various interactions between front end switch settings,
101 -- including debug switch settings and target dependent parameters.
102 -- This procedure takes care of properly handling these interactions.
103 -- We do it after scanning out all the switches, so that we are not
104 -- depending on the order in which switches appear.
106 procedure Check_Bad_Body;
107 -- Called to check if the unit we are compiling has a bad body
109 procedure Check_Rep_Info;
110 -- Called when we are not generating code, to check if -gnatR was requested
111 -- and if so, explain that we will not be honoring the request.
113 procedure Post_Compilation_Validation_Checks;
114 -- This procedure performs various validation checks that have to be left
115 -- to the end of the compilation process, after generating code but before
116 -- issuing error messages. In particular, these checks generally require
117 -- the information provided by the back end in back annotation of declared
118 -- entities (e.g. actual size and alignment values chosen by the back end).
120 ----------------------------
121 -- Adjust_Global_Switches --
122 ----------------------------
124 procedure Adjust_Global_Switches is
125 begin
126 -- -gnatd.M enables Relaxed_RM_Semantics
128 if Debug_Flag_Dot_MM then
129 Relaxed_RM_Semantics := True;
130 end if;
132 -- -gnatd.V or -gnatd.u enables special C expansion mode
134 if Debug_Flag_Dot_VV or Debug_Flag_Dot_U then
135 Modify_Tree_For_C := True;
136 end if;
138 -- -gnatd.E sets Error_To_Warning mode, causing selected error messages
139 -- to be treated as warnings instead of errors.
141 if Debug_Flag_Dot_EE then
142 Error_To_Warning := True;
143 end if;
145 -- Disable CodePeer_Mode in Check_Syntax, since we need front-end
146 -- expansion.
148 if Operating_Mode = Check_Syntax then
149 CodePeer_Mode := False;
150 end if;
152 -- Set ASIS mode if -gnatt and -gnatc are set
154 if Operating_Mode = Check_Semantics and then Tree_Output then
155 ASIS_Mode := True;
157 -- Turn off inlining in ASIS mode, since ASIS cannot handle the extra
158 -- information in the trees caused by inlining being active.
160 -- More specifically, the tree seems to be malformed from the ASIS
161 -- point of view if -gnatc and -gnatn appear together???
163 Inline_Active := False;
165 -- Turn off SCIL generation and CodePeer mode in semantics mode,
166 -- since SCIL requires front-end expansion.
168 Generate_SCIL := False;
169 CodePeer_Mode := False;
170 end if;
172 -- SCIL mode needs to disable front-end inlining since the generated
173 -- trees (in particular order and consistency between specs compiled
174 -- as part of a main unit or as part of a with-clause) are causing
175 -- troubles.
177 if Generate_SCIL then
178 Front_End_Inlining := False;
179 end if;
181 -- Tune settings for optimal SCIL generation in CodePeer mode
183 if CodePeer_Mode then
185 -- Turn off inlining, confuses CodePeer output and gains nothing
187 Front_End_Inlining := False;
188 Inline_Active := False;
190 -- Disable front-end optimizations, to keep the tree as close to the
191 -- source code as possible, and also to avoid inconsistencies between
192 -- trees when using different optimization switches.
194 Optimization_Level := 0;
196 -- Enable some restrictions systematically to simplify the generated
197 -- code (and ease analysis). Note that restriction checks are also
198 -- disabled in CodePeer mode, see Restrict.Check_Restriction, and
199 -- user specified Restrictions pragmas are ignored, see
200 -- Sem_Prag.Process_Restrictions_Or_Restriction_Warnings.
202 Restrict.Restrictions.Set (No_Initialize_Scalars) := True;
203 Restrict.Restrictions.Set (No_Task_Hierarchy) := True;
204 Restrict.Restrictions.Set (No_Abort_Statements) := True;
205 Restrict.Restrictions.Set (Max_Asynchronous_Select_Nesting) := True;
206 Restrict.Restrictions.Value (Max_Asynchronous_Select_Nesting) := 0;
208 -- Suppress division by zero and access checks since they are handled
209 -- implicitly by CodePeer.
211 -- Turn off dynamic elaboration checks: generates inconsistencies in
212 -- trees between specs compiled as part of a main unit or as part of
213 -- a with-clause.
215 -- Turn off alignment checks: these cannot be proved statically by
216 -- CodePeer and generate false positives.
218 -- Enable all other language checks
220 Suppress_Options.Suppress :=
221 (Access_Check => True,
222 Alignment_Check => True,
223 Division_Check => True,
224 Elaboration_Check => True,
225 others => False);
227 Dynamic_Elaboration_Checks := False;
229 -- Set STRICT mode for overflow checks if not set explicitly. This
230 -- prevents suppressing of overflow checks by default, in code down
231 -- below.
233 if Suppress_Options.Overflow_Mode_General = Not_Set then
234 Suppress_Options.Overflow_Mode_General := Strict;
235 Suppress_Options.Overflow_Mode_Assertions := Strict;
236 end if;
238 -- CodePeer handles division and overflow checks directly, based on
239 -- the marks set by the frontend, hence no special expansion should
240 -- be performed in the frontend for division and overflow checks.
242 Backend_Divide_Checks_On_Target := True;
243 Backend_Overflow_Checks_On_Target := True;
245 -- Kill debug of generated code, since it messes up sloc values
247 Debug_Generated_Code := False;
249 -- Turn cross-referencing on in case it was disabled (e.g. by -gnatD)
250 -- Do we really need to spend time generating xref in CodePeer
251 -- mode??? Consider setting Xref_Active to False.
253 Xref_Active := True;
255 -- Polling mode forced off, since it generates confusing junk
257 Polling_Required := False;
259 -- Set operating mode to Generate_Code to benefit from full front-end
260 -- expansion (e.g. generics).
262 Operating_Mode := Generate_Code;
264 -- We need SCIL generation of course
266 Generate_SCIL := True;
268 -- Enable assertions, since they give CodePeer valuable extra info
270 Assertions_Enabled := True;
272 -- Disable all simple value propagation. This is an optimization
273 -- which is valuable for code optimization, and also for generation
274 -- of compiler warnings, but these are being turned off by default,
275 -- and CodePeer generates better messages (referencing original
276 -- variables) this way.
278 Debug_Flag_MM := True;
280 -- Set normal RM validity checking, and checking of IN OUT parameters
281 -- (this might give CodePeer more useful checks to analyze, to be
282 -- confirmed???). All other validity checking is turned off, since
283 -- this can generate very complex trees that only confuse CodePeer
284 -- and do not bring enough useful info.
286 Reset_Validity_Check_Options;
287 Validity_Check_Default := True;
288 Validity_Check_In_Out_Params := True;
289 Validity_Check_In_Params := True;
291 -- Turn off style check options since we are not interested in any
292 -- front-end warnings when we are getting CodePeer output.
294 Reset_Style_Check_Options;
296 -- Always perform semantics and generate ali files in CodePeer mode,
297 -- so that a gnatmake -c -k will proceed further when possible.
299 Force_ALI_Tree_File := True;
300 Try_Semantics := True;
302 -- Make the Ada front-end more liberal so that the compiler will
303 -- allow illegal code that is allowed by other compilers. CodePeer
304 -- is in the business of finding problems, not enforcing rules.
305 -- This is useful when using CodePeer mode with other compilers.
307 Relaxed_RM_Semantics := True;
308 end if;
310 -- Enable some individual switches that are implied by relaxed RM
311 -- semantics mode.
313 if Relaxed_RM_Semantics then
314 Opt.Allow_Integer_Address := True;
315 Overriding_Renamings := True;
316 Treat_Categorization_Errors_As_Warnings := True;
317 end if;
319 -- Enable GNATprove_Mode when using -gnatd.F switch
321 if Debug_Flag_Dot_FF then
322 GNATprove_Mode := True;
323 end if;
325 -- GNATprove_Mode is also activated by default in the gnat2why
326 -- executable.
328 if GNATprove_Mode then
330 -- Turn off inlining, which would confuse formal verification output
331 -- and gain nothing.
333 Front_End_Inlining := False;
334 Inline_Active := False;
336 -- Issue warnings for failure to inline subprograms, as otherwise
337 -- expected in GNATprove mode for the local subprograms without
338 -- contracts.
340 Ineffective_Inline_Warnings := True;
342 -- Disable front-end optimizations, to keep the tree as close to the
343 -- source code as possible, and also to avoid inconsistencies between
344 -- trees when using different optimization switches.
346 Optimization_Level := 0;
348 -- Enable some restrictions systematically to simplify the generated
349 -- code (and ease analysis). Note that restriction checks are also
350 -- disabled in SPARK mode, see Restrict.Check_Restriction, and user
351 -- specified Restrictions pragmas are ignored, see
352 -- Sem_Prag.Process_Restrictions_Or_Restriction_Warnings.
354 Restrict.Restrictions.Set (No_Initialize_Scalars) := True;
356 -- Note: at this point we used to suppress various checks, but that
357 -- is not what we want. We need the semantic processing for these
358 -- checks (which will set flags like Do_Overflow_Check, showing the
359 -- points at which potential checks are required semantically). We
360 -- don't want the expansion associated with these checks, but that
361 -- happens anyway because this expansion is simply not done in the
362 -- SPARK version of the expander.
364 -- Turn off dynamic elaboration checks: generates inconsistencies in
365 -- trees between specs compiled as part of a main unit or as part of
366 -- a with-clause.
368 -- Comment is incomplete, SPARK semantics rely on static mode no???
370 Dynamic_Elaboration_Checks := False;
372 -- Detect overflow on unconstrained floating-point types, such as
373 -- the predefined types Float, Long_Float and Long_Long_Float from
374 -- package Standard. Not necessary if float overflows are checked
375 -- (Machine_Overflow true), since appropriate Do_Overflow_Check flags
376 -- will be set in any case.
378 Check_Float_Overflow := not Machine_Overflows_On_Target;
380 -- Set STRICT mode for overflow checks if not set explicitly. This
381 -- prevents suppressing of overflow checks by default, in code down
382 -- below.
384 if Suppress_Options.Overflow_Mode_General = Not_Set then
385 Suppress_Options.Overflow_Mode_General := Strict;
386 Suppress_Options.Overflow_Mode_Assertions := Strict;
387 end if;
389 -- Kill debug of generated code, since it messes up sloc values
391 Debug_Generated_Code := False;
393 -- Turn cross-referencing on in case it was disabled (e.g. by -gnatD)
394 -- as it is needed for computing effects of subprograms in the formal
395 -- verification backend.
397 Xref_Active := True;
399 -- Polling mode forced off, since it generates confusing junk
401 Polling_Required := False;
403 -- Set operating mode to Check_Semantics, but a light front-end
404 -- expansion is still performed.
406 Operating_Mode := Check_Semantics;
408 -- Enable assertions, since they give valuable extra information for
409 -- formal verification.
411 Assertions_Enabled := True;
413 -- Disable validity checks, since it generates code raising
414 -- exceptions for invalid data, which confuses GNATprove. Invalid
415 -- data is directly detected by GNATprove's flow analysis.
417 Validity_Checks_On := False;
419 -- Turn off style check options since we are not interested in any
420 -- front-end warnings when we are getting SPARK output.
422 Reset_Style_Check_Options;
424 -- Suppress the generation of name tables for enumerations, which are
425 -- not needed for formal verification, and fall outside the SPARK
426 -- subset (use of pointers).
428 Global_Discard_Names := True;
430 -- Suppress the expansion of tagged types and dispatching calls,
431 -- which lead to the generation of non-SPARK code (use of pointers),
432 -- which is more complex to formally verify than the original source.
434 Tagged_Type_Expansion := False;
435 end if;
437 -- Set Configurable_Run_Time mode if system.ads flag set or if the
438 -- special debug flag -gnatdY is set.
440 if Targparm.Configurable_Run_Time_On_Target or Debug_Flag_YY then
441 Configurable_Run_Time_Mode := True;
442 end if;
444 -- Set -gnatR3m mode if debug flag A set
446 if Debug_Flag_AA then
447 Back_Annotate_Rep_Info := True;
448 List_Representation_Info := 1;
449 List_Representation_Info_Mechanisms := True;
450 end if;
452 -- Force Target_Strict_Alignment true if debug flag -gnatd.a is set
454 if Debug_Flag_Dot_A then
455 Ttypes.Target_Strict_Alignment := True;
456 end if;
458 -- Increase size of allocated entities if debug flag -gnatd.N is set
460 if Debug_Flag_Dot_NN then
461 Atree.Num_Extension_Nodes := Atree.Num_Extension_Nodes + 1;
462 end if;
464 -- Disable static allocation of dispatch tables if -gnatd.t or if layout
465 -- is enabled. The front end's layout phase currently treats types that
466 -- have discriminant-dependent arrays as not being static even when a
467 -- discriminant constraint on the type is static, and this leads to
468 -- problems with subtypes of type Ada.Tags.Dispatch_Table_Wrapper. ???
470 if Debug_Flag_Dot_T or else Frontend_Layout_On_Target then
471 Static_Dispatch_Tables := False;
472 end if;
474 -- Flip endian mode if -gnatd8 set
476 if Debug_Flag_8 then
477 Ttypes.Bytes_Big_Endian := not Ttypes.Bytes_Big_Endian;
478 end if;
480 -- Activate front end layout if debug flag -gnatdF is set
482 if Debug_Flag_FF then
483 Targparm.Frontend_Layout_On_Target := True;
484 end if;
486 -- Set and check exception mechanism
488 if Targparm.ZCX_By_Default_On_Target then
489 Exception_Mechanism := Back_End_Exceptions;
490 end if;
492 -- Set proper status for overflow check mechanism
494 -- If already set (by -gnato or above in SPARK or CodePeer mode) then we
495 -- have nothing to do.
497 if Opt.Suppress_Options.Overflow_Mode_General /= Not_Set then
498 null;
500 -- Otherwise set overflow mode defaults
502 else
503 -- Overflow checks are on by default (Suppress set False) except in
504 -- GNAT_Mode, where we want them off by default (we are not ready to
505 -- enable overflow checks in the compiler yet, for one thing the case
506 -- of 64-bit checks needs System.Arith_64 which is not a compiler
507 -- unit and it is a pain to try to include it in the compiler.
509 Suppress_Options.Suppress (Overflow_Check) := GNAT_Mode;
511 -- Set appropriate default overflow handling mode. Note: at present
512 -- we set STRICT in all three of the following cases. They are
513 -- separated because in the future we may make different choices.
515 -- By default set STRICT mode if -gnatg in effect
517 if GNAT_Mode then
518 Suppress_Options.Overflow_Mode_General := Strict;
519 Suppress_Options.Overflow_Mode_Assertions := Strict;
521 -- If we have backend divide and overflow checks, then by default
522 -- overflow checks are STRICT. Historically this code used to also
523 -- activate overflow checks, although no target currently has these
524 -- flags set, so this was dead code anyway.
526 elsif Targparm.Backend_Divide_Checks_On_Target
528 Targparm.Backend_Overflow_Checks_On_Target
529 then
530 Suppress_Options.Overflow_Mode_General := Strict;
531 Suppress_Options.Overflow_Mode_Assertions := Strict;
533 -- Otherwise for now, default is STRICT mode. This may change in the
534 -- future, but for now this is the compatible behavior with previous
535 -- versions of GNAT.
537 else
538 Suppress_Options.Overflow_Mode_General := Strict;
539 Suppress_Options.Overflow_Mode_Assertions := Strict;
540 end if;
541 end if;
543 -- Set default for atomic synchronization. As this synchronization
544 -- between atomic accesses can be expensive, and not typically needed
545 -- on some targets, an optional target parameter can turn the option
546 -- off. Note Atomic Synchronization is implemented as check.
548 Suppress_Options.Suppress (Atomic_Synchronization) :=
549 not Atomic_Sync_Default_On_Target;
551 -- Set switch indicating if back end can handle limited types, and
552 -- guarantee that no incorrect copies are made (e.g. in the context
553 -- of an if or case expression).
555 -- Debug flag -gnatd.L decisively sets usage on
557 if Debug_Flag_Dot_LL then
558 Back_End_Handles_Limited_Types := True;
560 -- If no debug flag, usage off for AAMP, VM, SCIL cases
562 elsif AAMP_On_Target
563 or else VM_Target /= No_VM
564 or else Generate_SCIL
565 then
566 Back_End_Handles_Limited_Types := False;
568 -- Otherwise normal gcc back end, for now still turn flag off by
569 -- default, since there are unresolved problems in the front end.
571 else
572 Back_End_Handles_Limited_Types := False;
573 end if;
575 -- If the inlining level has not been set by the user, compute it from
576 -- the optimization level: 1 at -O1/-O2 (and -Os), 2 at -O3 and above.
578 if Inline_Level = 0 then
579 if Optimization_Level < 3 then
580 Inline_Level := 1;
581 else
582 Inline_Level := 2;
583 end if;
584 end if;
586 -- Set back end inlining indication
588 Back_End_Inlining :=
590 -- No back end inlining if inlining is suppressed
592 not Suppress_All_Inlining
594 -- No back end inlining available for VM targets
596 and then VM_Target = No_VM
598 -- No back end inlining available on AAMP
600 and then not AAMP_On_Target
602 -- No back end inlining in GNATprove mode, since it just confuses
603 -- the formal verification process.
605 and then not GNATprove_Mode
607 -- No back end inlining if front end inlining explicitly enabled.
608 -- Done to minimize the output differences to customers still using
609 -- this deprecated switch; in addition, this behavior reduces the
610 -- output differences in old tests.
612 and then not Front_End_Inlining
614 -- Back end inlining is disabled if debug flag .z is set
616 and then not Debug_Flag_Dot_Z;
618 -- Output warning if -gnateE specified and cannot be supported
620 if Exception_Extra_Info
621 and then Restrict.No_Exception_Handlers_Set
622 then
623 Set_Standard_Error;
624 Write_Str
625 ("warning: extra exception information (-gnateE) was specified");
626 Write_Eol;
627 Write_Str
628 ("warning: this capability is not available in this configuration");
629 Write_Eol;
630 Set_Standard_Output;
631 end if;
633 -- Finally capture adjusted value of Suppress_Options as the initial
634 -- value for Scope_Suppress, which will be modified as we move from
635 -- scope to scope (by Suppress/Unsuppress/Overflow_Checks pragmas).
637 Sem.Scope_Suppress := Opt.Suppress_Options;
638 end Adjust_Global_Switches;
640 --------------------
641 -- Check_Bad_Body --
642 --------------------
644 procedure Check_Bad_Body is
645 Sname : Unit_Name_Type;
646 Src_Ind : Source_File_Index;
647 Fname : File_Name_Type;
649 procedure Bad_Body_Error (Msg : String);
650 -- Issue message for bad body found
652 --------------------
653 -- Bad_Body_Error --
654 --------------------
656 procedure Bad_Body_Error (Msg : String) is
657 begin
658 Error_Msg_N (Msg, Main_Unit_Node);
659 Error_Msg_File_1 := Fname;
660 Error_Msg_N ("remove incorrect body in file{!", Main_Unit_Node);
661 end Bad_Body_Error;
663 -- Start of processing for Check_Bad_Body
665 begin
666 -- Nothing to do if we are only checking syntax, because we don't know
667 -- enough to know if we require or forbid a body in this case.
669 if Operating_Mode = Check_Syntax then
670 return;
671 end if;
673 -- Check for body not allowed
675 if (Main_Kind = N_Package_Declaration
676 and then not Body_Required (Main_Unit_Node))
677 or else (Main_Kind = N_Generic_Package_Declaration
678 and then not Body_Required (Main_Unit_Node))
679 or else Main_Kind = N_Package_Renaming_Declaration
680 or else Main_Kind = N_Subprogram_Renaming_Declaration
681 or else Nkind (Original_Node (Unit (Main_Unit_Node)))
682 in N_Generic_Instantiation
683 then
684 Sname := Unit_Name (Main_Unit);
686 -- If we do not already have a body name, then get the body name
688 if not Is_Body_Name (Sname) then
689 Sname := Get_Body_Name (Sname);
690 end if;
692 Fname := Get_File_Name (Sname, Subunit => False);
693 Src_Ind := Load_Source_File (Fname);
695 -- Case where body is present and it is not a subunit. Exclude the
696 -- subunit case, because it has nothing to do with the package we are
697 -- compiling. It is illegal for a child unit and a subunit with the
698 -- same expanded name (RM 10.2(9)) to appear together in a partition,
699 -- but there is nothing to stop a compilation environment from having
700 -- both, and the test here simply allows that. If there is an attempt
701 -- to include both in a partition, this is diagnosed at bind time. In
702 -- Ada 83 mode this is not a warning case.
704 -- Note that in general we do not give the message if the file in
705 -- question does not look like a body. This includes weird cases,
706 -- but in particular means that if the file is just a No_Body pragma,
707 -- then we won't give the message (that's the whole point of this
708 -- pragma, to be used this way and to cause the body file to be
709 -- ignored in this context).
711 if Src_Ind /= No_Source_File
712 and then Source_File_Is_Body (Src_Ind)
713 then
714 Errout.Finalize (Last_Call => False);
716 Error_Msg_Unit_1 := Sname;
718 -- Ada 83 case of a package body being ignored. This is not an
719 -- error as far as the Ada 83 RM is concerned, but it is almost
720 -- certainly not what is wanted so output a warning. Give this
721 -- message only if there were no errors, since otherwise it may
722 -- be incorrect (we may have misinterpreted a junk spec as not
723 -- needing a body when it really does).
725 if Main_Kind = N_Package_Declaration
726 and then Ada_Version = Ada_83
727 and then Operating_Mode = Generate_Code
728 and then Distribution_Stub_Mode /= Generate_Caller_Stub_Body
729 and then not Compilation_Errors
730 then
731 Error_Msg_N
732 ("package $$ does not require a body??", Main_Unit_Node);
733 Error_Msg_File_1 := Fname;
734 Error_Msg_N ("body in file{ will be ignored??", Main_Unit_Node);
736 -- Ada 95 cases of a body file present when no body is
737 -- permitted. This we consider to be an error.
739 else
740 -- For generic instantiations, we never allow a body
742 if Nkind (Original_Node (Unit (Main_Unit_Node))) in
743 N_Generic_Instantiation
744 then
745 Bad_Body_Error
746 ("generic instantiation for $$ does not allow a body");
748 -- A library unit that is a renaming never allows a body
750 elsif Main_Kind in N_Renaming_Declaration then
751 Bad_Body_Error
752 ("renaming declaration for $$ does not allow a body!");
754 -- Remaining cases are packages and generic packages. Here
755 -- we only do the test if there are no previous errors,
756 -- because if there are errors, they may lead us to
757 -- incorrectly believe that a package does not allow a
758 -- body when in fact it does.
760 elsif not Compilation_Errors then
761 if Main_Kind = N_Package_Declaration then
762 Bad_Body_Error
763 ("package $$ does not allow a body!");
765 elsif Main_Kind = N_Generic_Package_Declaration then
766 Bad_Body_Error
767 ("generic package $$ does not allow a body!");
768 end if;
769 end if;
771 end if;
772 end if;
773 end if;
774 end Check_Bad_Body;
776 --------------------
777 -- Check_Rep_Info --
778 --------------------
780 procedure Check_Rep_Info is
781 begin
782 if List_Representation_Info /= 0
783 or else List_Representation_Info_Mechanisms
784 then
785 Set_Standard_Error;
786 Write_Eol;
787 Write_Str
788 ("cannot generate representation information, no code generated");
789 Write_Eol;
790 Write_Eol;
791 Set_Standard_Output;
792 end if;
793 end Check_Rep_Info;
795 ----------------------------------------
796 -- Post_Compilation_Validation_Checks --
797 ----------------------------------------
799 procedure Post_Compilation_Validation_Checks is
800 begin
801 -- Validate alignment check warnings. In some cases we generate warnings
802 -- about possible alignment errors because we don't know the alignment
803 -- that will be chosen by the back end. This routine is in charge of
804 -- getting rid of those warnings if we can tell they are not needed.
806 Checks.Validate_Alignment_Check_Warnings;
808 -- Validate unchecked conversions (using the values for size and
809 -- alignment annotated by the backend where possible).
811 Sem_Ch13.Validate_Unchecked_Conversions;
813 -- Validate address clauses (again using alignment values annotated
814 -- by the backend where possible).
816 Sem_Ch13.Validate_Address_Clauses;
818 -- Validate independence pragmas (again using values annotated by
819 -- the back end for component layout etc.)
821 Sem_Ch13.Validate_Independence;
822 end Post_Compilation_Validation_Checks;
824 -- Start of processing for Gnat1drv
826 begin
827 -- This inner block is set up to catch assertion errors and constraint
828 -- errors. Since the code for handling these errors can cause another
829 -- exception to be raised (namely Unrecoverable_Error), we need two
830 -- nested blocks, so that the outer one handles unrecoverable error.
832 begin
833 -- Initialize all packages. For the most part, these initialization
834 -- calls can be made in any order. Exceptions are as follows:
836 -- Lib.Initialize need to be called before Scan_Compiler_Arguments,
837 -- because it initializes a table filled by Scan_Compiler_Arguments.
839 Osint.Initialize;
840 Fmap.Reset_Tables;
841 Lib.Initialize;
842 Lib.Xref.Initialize;
843 Scan_Compiler_Arguments;
844 Osint.Add_Default_Search_Dirs;
846 Atree.Initialize;
847 Nlists.Initialize;
848 Sinput.Initialize;
849 Sem.Initialize;
850 Exp_CG.Initialize;
851 Csets.Initialize;
852 Uintp.Initialize;
853 Urealp.Initialize;
854 Errout.Initialize;
855 SCOs.Initialize;
856 Snames.Initialize;
857 Stringt.Initialize;
858 Inline.Initialize;
859 Par_SCO.Initialize;
860 Sem_Ch8.Initialize;
861 Sem_Ch12.Initialize;
862 Sem_Ch13.Initialize;
863 Sem_Elim.Initialize;
864 Sem_Eval.Initialize;
865 Sem_Type.Init_Interp_Tables;
867 -- Capture compilation date and time
869 Opt.Compilation_Time := System.OS_Lib.Current_Time_String;
871 -- Get the target parameters only when -gnats is not used, to avoid
872 -- failing when there is no default runtime.
874 if Operating_Mode /= Check_Syntax then
876 -- Acquire target parameters from system.ads (package System source)
878 Targparm_Acquire : declare
879 use Sinput;
881 S : Source_File_Index;
882 N : File_Name_Type;
884 begin
885 Name_Buffer (1 .. 10) := "system.ads";
886 Name_Len := 10;
887 N := Name_Find;
888 S := Load_Source_File (N);
890 -- Failed to read system.ads, fatal error
892 if S = No_Source_File then
893 Write_Line
894 ("fatal error, run-time library not installed correctly");
895 Write_Line ("cannot locate file system.ads");
896 raise Unrecoverable_Error;
898 -- Read system.ads successfully, remember its source index
900 else
901 System_Source_File_Index := S;
902 end if;
904 Targparm.Get_Target_Parameters
905 (System_Text => Source_Text (S),
906 Source_First => Source_First (S),
907 Source_Last => Source_Last (S),
908 Make_Id => Tbuild.Make_Id'Access,
909 Make_SC => Tbuild.Make_SC'Access,
910 Set_RND => Tbuild.Set_RND'Access);
912 -- Acquire configuration pragma information from Targparm
914 Restrict.Restrictions := Targparm.Restrictions_On_Target;
915 end Targparm_Acquire;
916 end if;
918 -- Perform various adjustments and settings of global switches
920 Adjust_Global_Switches;
922 -- Output copyright notice if full list mode unless we have a list
923 -- file, in which case we defer this so that it is output in the file.
925 if (Verbose_Mode or else (Full_List and then Full_List_File_Name = null))
927 -- Debug flag gnatd7 suppresses this copyright notice
929 and then not Debug_Flag_7
930 then
931 Write_Eol;
932 Write_Str ("GNAT ");
933 Write_Str (Gnat_Version_String);
934 Write_Eol;
935 Write_Str ("Copyright 1992-" & Current_Year
936 & ", Free Software Foundation, Inc.");
937 Write_Eol;
938 end if;
940 -- Check we do not have more than one source file, this happens only in
941 -- the case where the driver is called directly, it cannot happen when
942 -- gnat1 is invoked from gcc in the normal case.
944 if Osint.Number_Of_Files /= 1 then
945 Usage;
946 Write_Eol;
947 Osint.Fail ("you must provide one source file");
949 elsif Usage_Requested then
950 Usage;
951 end if;
953 -- Generate target dependent output file if requested
955 if Target_Dependent_Info_Write_Name /= null then
956 Set_Targ.Write_Target_Dependent_Values;
957 end if;
959 -- Call the front end
961 Original_Operating_Mode := Operating_Mode;
962 Frontend;
964 -- Exit with errors if the main source could not be parsed.
966 if Sinput.Main_Source_File = No_Source_File then
967 Errout.Finalize (Last_Call => True);
968 Errout.Output_Messages;
969 Exit_Program (E_Errors);
970 end if;
972 Main_Unit_Node := Cunit (Main_Unit);
973 Main_Kind := Nkind (Unit (Main_Unit_Node));
974 Check_Bad_Body;
976 -- In CodePeer mode we always delete old SCIL files before regenerating
977 -- new ones, in case of e.g. errors, and also to remove obsolete scilx
978 -- files generated by CodePeer itself.
980 if CodePeer_Mode then
981 Comperr.Delete_SCIL_Files;
982 end if;
984 -- Exit if compilation errors detected
986 Errout.Finalize (Last_Call => False);
988 if Compilation_Errors then
989 Treepr.Tree_Dump;
990 Post_Compilation_Validation_Checks;
991 Errout.Output_Messages;
992 Namet.Finalize;
994 -- Generate ALI file if specially requested
996 if Opt.Force_ALI_Tree_File then
997 Write_ALI (Object => False);
998 Tree_Gen;
999 end if;
1001 Errout.Finalize (Last_Call => True);
1002 Exit_Program (E_Errors);
1003 end if;
1005 -- Set Generate_Code on main unit and its spec. We do this even if are
1006 -- not generating code, since Lib-Writ uses this to determine which
1007 -- units get written in the ali file.
1009 Set_Generate_Code (Main_Unit);
1011 -- If we have a corresponding spec, and it comes from source or it is
1012 -- not a generated spec for a child subprogram body, then we need object
1013 -- code for the spec unit as well.
1015 if Nkind (Unit (Main_Unit_Node)) in N_Unit_Body
1016 and then not Acts_As_Spec (Main_Unit_Node)
1017 then
1018 if Nkind (Unit (Main_Unit_Node)) = N_Subprogram_Body
1019 and then not Comes_From_Source (Library_Unit (Main_Unit_Node))
1020 then
1021 null;
1022 else
1023 Set_Generate_Code
1024 (Get_Cunit_Unit_Number (Library_Unit (Main_Unit_Node)));
1025 end if;
1026 end if;
1028 -- Case of no code required to be generated, exit indicating no error
1030 if Original_Operating_Mode = Check_Syntax then
1031 Treepr.Tree_Dump;
1032 Errout.Finalize (Last_Call => True);
1033 Errout.Output_Messages;
1034 Tree_Gen;
1035 Namet.Finalize;
1036 Check_Rep_Info;
1038 -- Use a goto instead of calling Exit_Program so that finalization
1039 -- occurs normally.
1041 goto End_Of_Program;
1043 elsif Original_Operating_Mode = Check_Semantics then
1044 Back_End_Mode := Declarations_Only;
1046 -- All remaining cases are cases in which the user requested that code
1047 -- be generated (i.e. no -gnatc or -gnats switch was used). Check if we
1048 -- can in fact satisfy this request.
1050 -- Cannot generate code if someone has turned off code generation for
1051 -- any reason at all. We will try to figure out a reason below.
1053 elsif Operating_Mode /= Generate_Code then
1054 Back_End_Mode := Skip;
1056 -- We can generate code for a subprogram body unless there were missing
1057 -- subunits. Note that we always generate code for all generic units (a
1058 -- change from some previous versions of GNAT).
1060 elsif Main_Kind = N_Subprogram_Body and then not Subunits_Missing then
1061 Back_End_Mode := Generate_Object;
1063 -- We can generate code for a package body unless there are subunits
1064 -- missing (note that we always generate code for generic units, which
1065 -- is a change from some earlier versions of GNAT).
1067 elsif Main_Kind = N_Package_Body and then not Subunits_Missing then
1068 Back_End_Mode := Generate_Object;
1070 -- We can generate code for a package declaration or a subprogram
1071 -- declaration only if it does not required a body.
1073 elsif Nkind_In (Main_Kind,
1074 N_Package_Declaration,
1075 N_Subprogram_Declaration)
1076 and then
1077 (not Body_Required (Main_Unit_Node)
1078 or else
1079 Distribution_Stub_Mode = Generate_Caller_Stub_Body)
1080 then
1081 Back_End_Mode := Generate_Object;
1083 -- We can generate code for a generic package declaration of a generic
1084 -- subprogram declaration only if does not require a body.
1086 elsif Nkind_In (Main_Kind, N_Generic_Package_Declaration,
1087 N_Generic_Subprogram_Declaration)
1088 and then not Body_Required (Main_Unit_Node)
1089 then
1090 Back_End_Mode := Generate_Object;
1092 -- Compilation units that are renamings do not require bodies, so we can
1093 -- generate code for them.
1095 elsif Nkind_In (Main_Kind, N_Package_Renaming_Declaration,
1096 N_Subprogram_Renaming_Declaration)
1097 then
1098 Back_End_Mode := Generate_Object;
1100 -- Compilation units that are generic renamings do not require bodies
1101 -- so we can generate code for them.
1103 elsif Main_Kind in N_Generic_Renaming_Declaration then
1104 Back_End_Mode := Generate_Object;
1106 -- It is not an error to analyze in CodePeer mode a spec which requires
1107 -- a body, in order to generate SCIL for this spec.
1109 elsif CodePeer_Mode then
1110 Back_End_Mode := Generate_Object;
1112 -- It is not an error to analyze in GNATprove mode a spec which requires
1113 -- a body, when the body is not available. During frame condition
1114 -- generation, the corresponding ALI file is generated. During
1115 -- analysis, the spec is analyzed.
1117 elsif GNATprove_Mode then
1118 Back_End_Mode := Declarations_Only;
1120 -- In all other cases (specs which have bodies, generics, and bodies
1121 -- where subunits are missing), we cannot generate code and we generate
1122 -- a warning message. Note that generic instantiations are gone at this
1123 -- stage since they have been replaced by their instances.
1125 else
1126 Back_End_Mode := Skip;
1127 end if;
1129 -- At this stage Back_End_Mode is set to indicate if the backend should
1130 -- be called to generate code. If it is Skip, then code generation has
1131 -- been turned off, even though code was requested by the original
1132 -- command. This is not an error from the user point of view, but it is
1133 -- an error from the point of view of the gcc driver, so we must exit
1134 -- with an error status.
1136 -- We generate an informative message (from the gcc point of view, it
1137 -- is an error message, but from the users point of view this is not an
1138 -- error, just a consequence of compiling something that cannot
1139 -- generate code).
1141 if Back_End_Mode = Skip then
1142 Set_Standard_Error;
1143 Write_Str ("cannot generate code for ");
1144 Write_Str ("file ");
1145 Write_Name (Unit_File_Name (Main_Unit));
1147 if Subunits_Missing then
1148 Write_Str (" (missing subunits)");
1149 Write_Eol;
1151 -- Force generation of ALI file, for backward compatibility
1153 Opt.Force_ALI_Tree_File := True;
1155 elsif Main_Kind = N_Subunit then
1156 Write_Str (" (subunit)");
1157 Write_Eol;
1159 -- Force generation of ALI file, for backward compatibility
1161 Opt.Force_ALI_Tree_File := True;
1163 elsif Main_Kind = N_Subprogram_Declaration then
1164 Write_Str (" (subprogram spec)");
1165 Write_Eol;
1167 -- Generic package body in GNAT implementation mode
1169 elsif Main_Kind = N_Package_Body and then GNAT_Mode then
1170 Write_Str (" (predefined generic)");
1171 Write_Eol;
1173 -- Force generation of ALI file, for backward compatibility
1175 Opt.Force_ALI_Tree_File := True;
1177 -- Only other case is a package spec
1179 else
1180 Write_Str (" (package spec)");
1181 Write_Eol;
1182 end if;
1184 Set_Standard_Output;
1186 Post_Compilation_Validation_Checks;
1187 Errout.Finalize (Last_Call => True);
1188 Errout.Output_Messages;
1189 Treepr.Tree_Dump;
1190 Tree_Gen;
1192 -- Generate ALI file if specially requested, or for missing subunits,
1193 -- subunits or predefined generic.
1195 if Opt.Force_ALI_Tree_File then
1196 Write_ALI (Object => False);
1197 end if;
1199 Namet.Finalize;
1200 Check_Rep_Info;
1202 -- Exit program with error indication, to kill object file
1204 Exit_Program (E_No_Code);
1205 end if;
1207 -- In -gnatc mode, we only do annotation if -gnatt or -gnatR is also set
1208 -- as indicated by Back_Annotate_Rep_Info being set to True.
1210 -- We don't call for annotations on a subunit, because to process those
1211 -- the back-end requires that the parent(s) be properly compiled.
1213 -- Annotation is suppressed for targets where front-end layout is
1214 -- enabled, because the front end determines representations.
1216 -- Annotation is also suppressed in the case of compiling for a VM,
1217 -- since representations are largely symbolic there.
1219 if Back_End_Mode = Declarations_Only
1220 and then
1221 (not (Back_Annotate_Rep_Info or Generate_SCIL or GNATprove_Mode)
1222 or else Main_Kind = N_Subunit
1223 or else Targparm.Frontend_Layout_On_Target
1224 or else Targparm.VM_Target /= No_VM)
1225 then
1226 Post_Compilation_Validation_Checks;
1227 Errout.Finalize (Last_Call => True);
1228 Errout.Output_Messages;
1229 Write_ALI (Object => False);
1230 Tree_Dump;
1231 Tree_Gen;
1232 Namet.Finalize;
1233 Check_Rep_Info;
1234 return;
1235 end if;
1237 -- Ensure that we properly register a dependency on system.ads, since
1238 -- even if we do not semantically depend on this, Targparm has read
1239 -- system parameters from the system.ads file.
1241 Lib.Writ.Ensure_System_Dependency;
1243 -- Add dependencies, if any, on preprocessing data file and on
1244 -- preprocessing definition file(s).
1246 Prepcomp.Add_Dependencies;
1248 -- In gnatprove mode we're writing the ALI much earlier than usual
1249 -- as flow analysis needs the file present in order to append its
1250 -- own globals to it.
1252 if GNATprove_Mode then
1254 -- Note: In GNATprove mode, an "object" file is always generated as
1255 -- the result of calling gnat1 or gnat2why, although this is not the
1256 -- same as the object file produced for compilation.
1258 Write_ALI (Object => True);
1259 end if;
1261 -- Back end needs to explicitly unlock tables it needs to touch
1263 Atree.Lock;
1264 Elists.Lock;
1265 Fname.UF.Lock;
1266 Inline.Lock;
1267 Lib.Lock;
1268 Nlists.Lock;
1269 Sem.Lock;
1270 Sinput.Lock;
1271 Namet.Lock;
1272 Stringt.Lock;
1274 -- Here we call the back end to generate the output code
1276 Generating_Code := True;
1277 Back_End.Call_Back_End (Back_End_Mode);
1279 -- Once the backend is complete, we unlock the names table. This call
1280 -- allows a few extra entries, needed for example for the file name for
1281 -- the library file output.
1283 Namet.Unlock;
1285 -- Generate the call-graph output of dispatching calls
1287 Exp_CG.Generate_CG_Output;
1289 -- Perform post compilation validation checks
1291 Post_Compilation_Validation_Checks;
1293 -- Now we complete output of errors, rep info and the tree info. These
1294 -- are delayed till now, since it is perfectly possible for gigi to
1295 -- generate errors, modify the tree (in particular by setting flags
1296 -- indicating that elaboration is required, and also to back annotate
1297 -- representation information for List_Rep_Info.
1299 Errout.Finalize (Last_Call => True);
1300 Errout.Output_Messages;
1301 List_Rep_Info (Ttypes.Bytes_Big_Endian);
1302 Inline.List_Inlining_Info;
1304 -- Only write the library if the backend did not generate any error
1305 -- messages. Otherwise signal errors to the driver program so that
1306 -- there will be no attempt to generate an object file.
1308 if Compilation_Errors then
1309 Treepr.Tree_Dump;
1310 Exit_Program (E_Errors);
1311 end if;
1313 if not GNATprove_Mode then
1314 Write_ALI (Object => (Back_End_Mode = Generate_Object));
1315 end if;
1317 if not Compilation_Errors then
1319 -- In case of ada backends, we need to make sure that the generated
1320 -- object file has a timestamp greater than the ALI file. We do this
1321 -- to make gnatmake happy when checking the ALI and obj timestamps,
1322 -- where it expects the object file being written after the ali file.
1324 -- Gnatmake's assumption is true for gcc platforms where the gcc
1325 -- wrapper needs to call the assembler after calling gnat1, but is
1326 -- not true for ada backends, where the object files are created
1327 -- directly by gnat1 (so are created before the ali file).
1329 Back_End.Gen_Or_Update_Object_File;
1330 end if;
1332 -- Generate ASIS tree after writing the ALI file, since in ASIS mode,
1333 -- Write_ALI may in fact result in further tree decoration from the
1334 -- original tree file. Note that we dump the tree just before generating
1335 -- it, so that the dump will exactly reflect what is written out.
1337 Treepr.Tree_Dump;
1338 Tree_Gen;
1340 -- Finalize name table and we are all done
1342 Namet.Finalize;
1344 exception
1345 -- Handle fatal internal compiler errors
1347 when Rtsfind.RE_Not_Available =>
1348 Comperr.Compiler_Abort ("RE_Not_Available");
1350 when System.Assertions.Assert_Failure =>
1351 Comperr.Compiler_Abort ("Assert_Failure");
1353 when Constraint_Error =>
1354 Comperr.Compiler_Abort ("Constraint_Error");
1356 when Program_Error =>
1357 Comperr.Compiler_Abort ("Program_Error");
1359 when Storage_Error =>
1361 -- Assume this is a bug. If it is real, the message will in any case
1362 -- say Storage_Error, giving a strong hint.
1364 Comperr.Compiler_Abort ("Storage_Error");
1365 end;
1367 <<End_Of_Program>>
1368 null;
1370 -- The outer exception handles an unrecoverable error
1372 exception
1373 when Unrecoverable_Error =>
1374 Errout.Finalize (Last_Call => True);
1375 Errout.Output_Messages;
1377 Set_Standard_Error;
1378 Write_Str ("compilation abandoned");
1379 Write_Eol;
1381 Set_Standard_Output;
1382 Source_Dump;
1383 Tree_Dump;
1384 Exit_Program (E_Errors);
1386 end Gnat1drv;