* config.gcc: Remove MASK_JUMP_IN_DELAY from target_cpu_default2.
[official-gcc.git] / gcc / ada / gnat1drv.adb
blob4cbb8cb21ef660d750522059020542b4a8ad5ced
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 -- Treat -gnatn as equivalent to -gnatN for non-GCC targets
588 if Inline_Active and not Front_End_Inlining then
590 -- We really should have a tag for this, what if we added a new
591 -- back end some day, it would not be true for this test, but it
592 -- would be non-GCC, so this is a bit troublesome ???
594 Front_End_Inlining := VM_Target /= No_VM or else AAMP_On_Target;
595 end if;
597 -- Set back end inlining indication
599 Back_End_Inlining :=
601 -- No back end inlining if inlining is suppressed
603 not Suppress_All_Inlining
605 -- No back end inlining available for VM targets
607 and then VM_Target = No_VM
609 -- No back end inlining available on AAMP
611 and then not AAMP_On_Target
613 -- No back end inlining in GNATprove mode, since it just confuses
614 -- the formal verification process.
616 and then not GNATprove_Mode
618 -- No back end inlining if front end inlining explicitly enabled.
619 -- Done to minimize the output differences to customers still using
620 -- this deprecated switch; in addition, this behavior reduces the
621 -- output differences in old tests.
623 and then not Front_End_Inlining
625 -- Back end inlining is disabled if debug flag .z is set
627 and then not Debug_Flag_Dot_Z;
629 -- Output warning if -gnateE specified and cannot be supported
631 if Exception_Extra_Info
632 and then Restrict.No_Exception_Handlers_Set
633 then
634 Set_Standard_Error;
635 Write_Str
636 ("warning: extra exception information (-gnateE) was specified");
637 Write_Eol;
638 Write_Str
639 ("warning: this capability is not available in this configuration");
640 Write_Eol;
641 Set_Standard_Output;
642 end if;
644 -- Finally capture adjusted value of Suppress_Options as the initial
645 -- value for Scope_Suppress, which will be modified as we move from
646 -- scope to scope (by Suppress/Unsuppress/Overflow_Checks pragmas).
648 Sem.Scope_Suppress := Opt.Suppress_Options;
649 end Adjust_Global_Switches;
651 --------------------
652 -- Check_Bad_Body --
653 --------------------
655 procedure Check_Bad_Body is
656 Sname : Unit_Name_Type;
657 Src_Ind : Source_File_Index;
658 Fname : File_Name_Type;
660 procedure Bad_Body_Error (Msg : String);
661 -- Issue message for bad body found
663 --------------------
664 -- Bad_Body_Error --
665 --------------------
667 procedure Bad_Body_Error (Msg : String) is
668 begin
669 Error_Msg_N (Msg, Main_Unit_Node);
670 Error_Msg_File_1 := Fname;
671 Error_Msg_N ("remove incorrect body in file{!", Main_Unit_Node);
672 end Bad_Body_Error;
674 -- Start of processing for Check_Bad_Body
676 begin
677 -- Nothing to do if we are only checking syntax, because we don't know
678 -- enough to know if we require or forbid a body in this case.
680 if Operating_Mode = Check_Syntax then
681 return;
682 end if;
684 -- Check for body not allowed
686 if (Main_Kind = N_Package_Declaration
687 and then not Body_Required (Main_Unit_Node))
688 or else (Main_Kind = N_Generic_Package_Declaration
689 and then not Body_Required (Main_Unit_Node))
690 or else Main_Kind = N_Package_Renaming_Declaration
691 or else Main_Kind = N_Subprogram_Renaming_Declaration
692 or else Nkind (Original_Node (Unit (Main_Unit_Node)))
693 in N_Generic_Instantiation
694 then
695 Sname := Unit_Name (Main_Unit);
697 -- If we do not already have a body name, then get the body name
699 if not Is_Body_Name (Sname) then
700 Sname := Get_Body_Name (Sname);
701 end if;
703 Fname := Get_File_Name (Sname, Subunit => False);
704 Src_Ind := Load_Source_File (Fname);
706 -- Case where body is present and it is not a subunit. Exclude the
707 -- subunit case, because it has nothing to do with the package we are
708 -- compiling. It is illegal for a child unit and a subunit with the
709 -- same expanded name (RM 10.2(9)) to appear together in a partition,
710 -- but there is nothing to stop a compilation environment from having
711 -- both, and the test here simply allows that. If there is an attempt
712 -- to include both in a partition, this is diagnosed at bind time. In
713 -- Ada 83 mode this is not a warning case.
715 -- Note that in general we do not give the message if the file in
716 -- question does not look like a body. This includes weird cases,
717 -- but in particular means that if the file is just a No_Body pragma,
718 -- then we won't give the message (that's the whole point of this
719 -- pragma, to be used this way and to cause the body file to be
720 -- ignored in this context).
722 if Src_Ind /= No_Source_File
723 and then Source_File_Is_Body (Src_Ind)
724 then
725 Errout.Finalize (Last_Call => False);
727 Error_Msg_Unit_1 := Sname;
729 -- Ada 83 case of a package body being ignored. This is not an
730 -- error as far as the Ada 83 RM is concerned, but it is almost
731 -- certainly not what is wanted so output a warning. Give this
732 -- message only if there were no errors, since otherwise it may
733 -- be incorrect (we may have misinterpreted a junk spec as not
734 -- needing a body when it really does).
736 if Main_Kind = N_Package_Declaration
737 and then Ada_Version = Ada_83
738 and then Operating_Mode = Generate_Code
739 and then Distribution_Stub_Mode /= Generate_Caller_Stub_Body
740 and then not Compilation_Errors
741 then
742 Error_Msg_N
743 ("package $$ does not require a body??", Main_Unit_Node);
744 Error_Msg_File_1 := Fname;
745 Error_Msg_N ("body in file{ will be ignored??", Main_Unit_Node);
747 -- Ada 95 cases of a body file present when no body is
748 -- permitted. This we consider to be an error.
750 else
751 -- For generic instantiations, we never allow a body
753 if Nkind (Original_Node (Unit (Main_Unit_Node))) in
754 N_Generic_Instantiation
755 then
756 Bad_Body_Error
757 ("generic instantiation for $$ does not allow a body");
759 -- A library unit that is a renaming never allows a body
761 elsif Main_Kind in N_Renaming_Declaration then
762 Bad_Body_Error
763 ("renaming declaration for $$ does not allow a body!");
765 -- Remaining cases are packages and generic packages. Here
766 -- we only do the test if there are no previous errors,
767 -- because if there are errors, they may lead us to
768 -- incorrectly believe that a package does not allow a
769 -- body when in fact it does.
771 elsif not Compilation_Errors then
772 if Main_Kind = N_Package_Declaration then
773 Bad_Body_Error
774 ("package $$ does not allow a body!");
776 elsif Main_Kind = N_Generic_Package_Declaration then
777 Bad_Body_Error
778 ("generic package $$ does not allow a body!");
779 end if;
780 end if;
782 end if;
783 end if;
784 end if;
785 end Check_Bad_Body;
787 --------------------
788 -- Check_Rep_Info --
789 --------------------
791 procedure Check_Rep_Info is
792 begin
793 if List_Representation_Info /= 0
794 or else List_Representation_Info_Mechanisms
795 then
796 Set_Standard_Error;
797 Write_Eol;
798 Write_Str
799 ("cannot generate representation information, no code generated");
800 Write_Eol;
801 Write_Eol;
802 Set_Standard_Output;
803 end if;
804 end Check_Rep_Info;
806 ----------------------------------------
807 -- Post_Compilation_Validation_Checks --
808 ----------------------------------------
810 procedure Post_Compilation_Validation_Checks is
811 begin
812 -- Validate alignment check warnings. In some cases we generate warnings
813 -- about possible alignment errors because we don't know the alignment
814 -- that will be chosen by the back end. This routine is in charge of
815 -- getting rid of those warnings if we can tell they are not needed.
817 Checks.Validate_Alignment_Check_Warnings;
819 -- Validate unchecked conversions (using the values for size and
820 -- alignment annotated by the backend where possible).
822 Sem_Ch13.Validate_Unchecked_Conversions;
824 -- Validate address clauses (again using alignment values annotated
825 -- by the backend where possible).
827 Sem_Ch13.Validate_Address_Clauses;
829 -- Validate independence pragmas (again using values annotated by
830 -- the back end for component layout etc.)
832 Sem_Ch13.Validate_Independence;
833 end Post_Compilation_Validation_Checks;
835 -- Start of processing for Gnat1drv
837 begin
838 -- This inner block is set up to catch assertion errors and constraint
839 -- errors. Since the code for handling these errors can cause another
840 -- exception to be raised (namely Unrecoverable_Error), we need two
841 -- nested blocks, so that the outer one handles unrecoverable error.
843 begin
844 -- Initialize all packages. For the most part, these initialization
845 -- calls can be made in any order. Exceptions are as follows:
847 -- Lib.Initialize need to be called before Scan_Compiler_Arguments,
848 -- because it initializes a table filled by Scan_Compiler_Arguments.
850 Osint.Initialize;
851 Fmap.Reset_Tables;
852 Lib.Initialize;
853 Lib.Xref.Initialize;
854 Scan_Compiler_Arguments;
855 Osint.Add_Default_Search_Dirs;
857 Atree.Initialize;
858 Nlists.Initialize;
859 Sinput.Initialize;
860 Sem.Initialize;
861 Exp_CG.Initialize;
862 Csets.Initialize;
863 Uintp.Initialize;
864 Urealp.Initialize;
865 Errout.Initialize;
866 SCOs.Initialize;
867 Snames.Initialize;
868 Stringt.Initialize;
869 Inline.Initialize;
870 Par_SCO.Initialize;
871 Sem_Ch8.Initialize;
872 Sem_Ch12.Initialize;
873 Sem_Ch13.Initialize;
874 Sem_Elim.Initialize;
875 Sem_Eval.Initialize;
876 Sem_Type.Init_Interp_Tables;
878 -- Capture compilation date and time
880 Opt.Compilation_Time := System.OS_Lib.Current_Time_String;
882 -- Get the target parameters only when -gnats is not used, to avoid
883 -- failing when there is no default runtime.
885 if Operating_Mode /= Check_Syntax then
887 -- Acquire target parameters from system.ads (package System source)
889 Targparm_Acquire : declare
890 use Sinput;
892 S : Source_File_Index;
893 N : File_Name_Type;
895 begin
896 Name_Buffer (1 .. 10) := "system.ads";
897 Name_Len := 10;
898 N := Name_Find;
899 S := Load_Source_File (N);
901 -- Failed to read system.ads, fatal error
903 if S = No_Source_File then
904 Write_Line
905 ("fatal error, run-time library not installed correctly");
906 Write_Line ("cannot locate file system.ads");
907 raise Unrecoverable_Error;
909 -- Read system.ads successfully, remember its source index
911 else
912 System_Source_File_Index := S;
913 end if;
915 Targparm.Get_Target_Parameters
916 (System_Text => Source_Text (S),
917 Source_First => Source_First (S),
918 Source_Last => Source_Last (S),
919 Make_Id => Tbuild.Make_Id'Access,
920 Make_SC => Tbuild.Make_SC'Access,
921 Set_RND => Tbuild.Set_RND'Access);
923 -- Acquire configuration pragma information from Targparm
925 Restrict.Restrictions := Targparm.Restrictions_On_Target;
926 end Targparm_Acquire;
927 end if;
929 -- Perform various adjustments and settings of global switches
931 Adjust_Global_Switches;
933 -- Output copyright notice if full list mode unless we have a list
934 -- file, in which case we defer this so that it is output in the file.
936 if (Verbose_Mode or else (Full_List and then Full_List_File_Name = null))
938 -- Debug flag gnatd7 suppresses this copyright notice
940 and then not Debug_Flag_7
941 then
942 Write_Eol;
943 Write_Str ("GNAT ");
944 Write_Str (Gnat_Version_String);
945 Write_Eol;
946 Write_Str ("Copyright 1992-" & Current_Year
947 & ", Free Software Foundation, Inc.");
948 Write_Eol;
949 end if;
951 -- Check we do not have more than one source file, this happens only in
952 -- the case where the driver is called directly, it cannot happen when
953 -- gnat1 is invoked from gcc in the normal case.
955 if Osint.Number_Of_Files /= 1 then
956 Usage;
957 Write_Eol;
958 Osint.Fail ("you must provide one source file");
960 elsif Usage_Requested then
961 Usage;
962 end if;
964 -- Generate target dependent output file if requested
966 if Target_Dependent_Info_Write_Name /= null then
967 Set_Targ.Write_Target_Dependent_Values;
968 end if;
970 -- Call the front end
972 Original_Operating_Mode := Operating_Mode;
973 Frontend;
975 -- Exit with errors if the main source could not be parsed.
977 if Sinput.Main_Source_File = No_Source_File then
978 Errout.Finalize (Last_Call => True);
979 Errout.Output_Messages;
980 Exit_Program (E_Errors);
981 end if;
983 Main_Unit_Node := Cunit (Main_Unit);
984 Main_Kind := Nkind (Unit (Main_Unit_Node));
985 Check_Bad_Body;
987 -- In CodePeer mode we always delete old SCIL files before regenerating
988 -- new ones, in case of e.g. errors, and also to remove obsolete scilx
989 -- files generated by CodePeer itself.
991 if CodePeer_Mode then
992 Comperr.Delete_SCIL_Files;
993 end if;
995 -- Exit if compilation errors detected
997 Errout.Finalize (Last_Call => False);
999 if Compilation_Errors then
1000 Treepr.Tree_Dump;
1001 Post_Compilation_Validation_Checks;
1002 Errout.Output_Messages;
1003 Namet.Finalize;
1005 -- Generate ALI file if specially requested
1007 if Opt.Force_ALI_Tree_File then
1008 Write_ALI (Object => False);
1009 Tree_Gen;
1010 end if;
1012 Errout.Finalize (Last_Call => True);
1013 Exit_Program (E_Errors);
1014 end if;
1016 -- Set Generate_Code on main unit and its spec. We do this even if are
1017 -- not generating code, since Lib-Writ uses this to determine which
1018 -- units get written in the ali file.
1020 Set_Generate_Code (Main_Unit);
1022 -- If we have a corresponding spec, and it comes from source or it is
1023 -- not a generated spec for a child subprogram body, then we need object
1024 -- code for the spec unit as well.
1026 if Nkind (Unit (Main_Unit_Node)) in N_Unit_Body
1027 and then not Acts_As_Spec (Main_Unit_Node)
1028 then
1029 if Nkind (Unit (Main_Unit_Node)) = N_Subprogram_Body
1030 and then not Comes_From_Source (Library_Unit (Main_Unit_Node))
1031 then
1032 null;
1033 else
1034 Set_Generate_Code
1035 (Get_Cunit_Unit_Number (Library_Unit (Main_Unit_Node)));
1036 end if;
1037 end if;
1039 -- Case of no code required to be generated, exit indicating no error
1041 if Original_Operating_Mode = Check_Syntax then
1042 Treepr.Tree_Dump;
1043 Errout.Finalize (Last_Call => True);
1044 Errout.Output_Messages;
1045 Tree_Gen;
1046 Namet.Finalize;
1047 Check_Rep_Info;
1049 -- Use a goto instead of calling Exit_Program so that finalization
1050 -- occurs normally.
1052 goto End_Of_Program;
1054 elsif Original_Operating_Mode = Check_Semantics then
1055 Back_End_Mode := Declarations_Only;
1057 -- All remaining cases are cases in which the user requested that code
1058 -- be generated (i.e. no -gnatc or -gnats switch was used). Check if we
1059 -- can in fact satisfy this request.
1061 -- Cannot generate code if someone has turned off code generation for
1062 -- any reason at all. We will try to figure out a reason below.
1064 elsif Operating_Mode /= Generate_Code then
1065 Back_End_Mode := Skip;
1067 -- We can generate code for a subprogram body unless there were missing
1068 -- subunits. Note that we always generate code for all generic units (a
1069 -- change from some previous versions of GNAT).
1071 elsif Main_Kind = N_Subprogram_Body and then not Subunits_Missing then
1072 Back_End_Mode := Generate_Object;
1074 -- We can generate code for a package body unless there are subunits
1075 -- missing (note that we always generate code for generic units, which
1076 -- is a change from some earlier versions of GNAT).
1078 elsif Main_Kind = N_Package_Body and then not Subunits_Missing then
1079 Back_End_Mode := Generate_Object;
1081 -- We can generate code for a package declaration or a subprogram
1082 -- declaration only if it does not required a body.
1084 elsif Nkind_In (Main_Kind,
1085 N_Package_Declaration,
1086 N_Subprogram_Declaration)
1087 and then
1088 (not Body_Required (Main_Unit_Node)
1089 or else
1090 Distribution_Stub_Mode = Generate_Caller_Stub_Body)
1091 then
1092 Back_End_Mode := Generate_Object;
1094 -- We can generate code for a generic package declaration of a generic
1095 -- subprogram declaration only if does not require a body.
1097 elsif Nkind_In (Main_Kind, N_Generic_Package_Declaration,
1098 N_Generic_Subprogram_Declaration)
1099 and then not Body_Required (Main_Unit_Node)
1100 then
1101 Back_End_Mode := Generate_Object;
1103 -- Compilation units that are renamings do not require bodies, so we can
1104 -- generate code for them.
1106 elsif Nkind_In (Main_Kind, N_Package_Renaming_Declaration,
1107 N_Subprogram_Renaming_Declaration)
1108 then
1109 Back_End_Mode := Generate_Object;
1111 -- Compilation units that are generic renamings do not require bodies
1112 -- so we can generate code for them.
1114 elsif Main_Kind in N_Generic_Renaming_Declaration then
1115 Back_End_Mode := Generate_Object;
1117 -- It is not an error to analyze in CodePeer mode a spec which requires
1118 -- a body, in order to generate SCIL for this spec.
1120 elsif CodePeer_Mode then
1121 Back_End_Mode := Generate_Object;
1123 -- It is not an error to analyze in GNATprove mode a spec which requires
1124 -- a body, when the body is not available. During frame condition
1125 -- generation, the corresponding ALI file is generated. During
1126 -- analysis, the spec is analyzed.
1128 elsif GNATprove_Mode then
1129 Back_End_Mode := Declarations_Only;
1131 -- In all other cases (specs which have bodies, generics, and bodies
1132 -- where subunits are missing), we cannot generate code and we generate
1133 -- a warning message. Note that generic instantiations are gone at this
1134 -- stage since they have been replaced by their instances.
1136 else
1137 Back_End_Mode := Skip;
1138 end if;
1140 -- At this stage Back_End_Mode is set to indicate if the backend should
1141 -- be called to generate code. If it is Skip, then code generation has
1142 -- been turned off, even though code was requested by the original
1143 -- command. This is not an error from the user point of view, but it is
1144 -- an error from the point of view of the gcc driver, so we must exit
1145 -- with an error status.
1147 -- We generate an informative message (from the gcc point of view, it
1148 -- is an error message, but from the users point of view this is not an
1149 -- error, just a consequence of compiling something that cannot
1150 -- generate code).
1152 if Back_End_Mode = Skip then
1153 Set_Standard_Error;
1154 Write_Str ("cannot generate code for ");
1155 Write_Str ("file ");
1156 Write_Name (Unit_File_Name (Main_Unit));
1158 if Subunits_Missing then
1159 Write_Str (" (missing subunits)");
1160 Write_Eol;
1162 -- Force generation of ALI file, for backward compatibility
1164 Opt.Force_ALI_Tree_File := True;
1166 elsif Main_Kind = N_Subunit then
1167 Write_Str (" (subunit)");
1168 Write_Eol;
1170 -- Force generation of ALI file, for backward compatibility
1172 Opt.Force_ALI_Tree_File := True;
1174 elsif Main_Kind = N_Subprogram_Declaration then
1175 Write_Str (" (subprogram spec)");
1176 Write_Eol;
1178 -- Generic package body in GNAT implementation mode
1180 elsif Main_Kind = N_Package_Body and then GNAT_Mode then
1181 Write_Str (" (predefined generic)");
1182 Write_Eol;
1184 -- Force generation of ALI file, for backward compatibility
1186 Opt.Force_ALI_Tree_File := True;
1188 -- Only other case is a package spec
1190 else
1191 Write_Str (" (package spec)");
1192 Write_Eol;
1193 end if;
1195 Set_Standard_Output;
1197 Post_Compilation_Validation_Checks;
1198 Errout.Finalize (Last_Call => True);
1199 Errout.Output_Messages;
1200 Treepr.Tree_Dump;
1201 Tree_Gen;
1203 -- Generate ALI file if specially requested, or for missing subunits,
1204 -- subunits or predefined generic.
1206 if Opt.Force_ALI_Tree_File then
1207 Write_ALI (Object => False);
1208 end if;
1210 Namet.Finalize;
1211 Check_Rep_Info;
1213 -- Exit program with error indication, to kill object file
1215 Exit_Program (E_No_Code);
1216 end if;
1218 -- In -gnatc mode, we only do annotation if -gnatt or -gnatR is also set
1219 -- as indicated by Back_Annotate_Rep_Info being set to True.
1221 -- We don't call for annotations on a subunit, because to process those
1222 -- the back-end requires that the parent(s) be properly compiled.
1224 -- Annotation is suppressed for targets where front-end layout is
1225 -- enabled, because the front end determines representations.
1227 -- Annotation is also suppressed in the case of compiling for a VM,
1228 -- since representations are largely symbolic there.
1230 if Back_End_Mode = Declarations_Only
1231 and then
1232 (not (Back_Annotate_Rep_Info or Generate_SCIL or GNATprove_Mode)
1233 or else Main_Kind = N_Subunit
1234 or else Targparm.Frontend_Layout_On_Target
1235 or else Targparm.VM_Target /= No_VM)
1236 then
1237 Post_Compilation_Validation_Checks;
1238 Errout.Finalize (Last_Call => True);
1239 Errout.Output_Messages;
1240 Write_ALI (Object => False);
1241 Tree_Dump;
1242 Tree_Gen;
1243 Namet.Finalize;
1244 Check_Rep_Info;
1245 return;
1246 end if;
1248 -- Ensure that we properly register a dependency on system.ads, since
1249 -- even if we do not semantically depend on this, Targparm has read
1250 -- system parameters from the system.ads file.
1252 Lib.Writ.Ensure_System_Dependency;
1254 -- Add dependencies, if any, on preprocessing data file and on
1255 -- preprocessing definition file(s).
1257 Prepcomp.Add_Dependencies;
1259 -- In gnatprove mode we're writing the ALI much earlier than usual
1260 -- as flow analysis needs the file present in order to append its
1261 -- own globals to it.
1263 if GNATprove_Mode then
1265 -- Note: In GNATprove mode, an "object" file is always generated as
1266 -- the result of calling gnat1 or gnat2why, although this is not the
1267 -- same as the object file produced for compilation.
1269 Write_ALI (Object => True);
1270 end if;
1272 -- Back end needs to explicitly unlock tables it needs to touch
1274 Atree.Lock;
1275 Elists.Lock;
1276 Fname.UF.Lock;
1277 Inline.Lock;
1278 Lib.Lock;
1279 Nlists.Lock;
1280 Sem.Lock;
1281 Sinput.Lock;
1282 Namet.Lock;
1283 Stringt.Lock;
1285 -- Here we call the back end to generate the output code
1287 Generating_Code := True;
1288 Back_End.Call_Back_End (Back_End_Mode);
1290 -- Once the backend is complete, we unlock the names table. This call
1291 -- allows a few extra entries, needed for example for the file name for
1292 -- the library file output.
1294 Namet.Unlock;
1296 -- Generate the call-graph output of dispatching calls
1298 Exp_CG.Generate_CG_Output;
1300 -- Perform post compilation validation checks
1302 Post_Compilation_Validation_Checks;
1304 -- Now we complete output of errors, rep info and the tree info. These
1305 -- are delayed till now, since it is perfectly possible for gigi to
1306 -- generate errors, modify the tree (in particular by setting flags
1307 -- indicating that elaboration is required, and also to back annotate
1308 -- representation information for List_Rep_Info.
1310 Errout.Finalize (Last_Call => True);
1311 Errout.Output_Messages;
1312 List_Rep_Info (Ttypes.Bytes_Big_Endian);
1313 Inline.List_Inlining_Info;
1315 -- Only write the library if the backend did not generate any error
1316 -- messages. Otherwise signal errors to the driver program so that
1317 -- there will be no attempt to generate an object file.
1319 if Compilation_Errors then
1320 Treepr.Tree_Dump;
1321 Exit_Program (E_Errors);
1322 end if;
1324 if not GNATprove_Mode then
1325 Write_ALI (Object => (Back_End_Mode = Generate_Object));
1326 end if;
1328 if not Compilation_Errors then
1330 -- In case of ada backends, we need to make sure that the generated
1331 -- object file has a timestamp greater than the ALI file. We do this
1332 -- to make gnatmake happy when checking the ALI and obj timestamps,
1333 -- where it expects the object file being written after the ali file.
1335 -- Gnatmake's assumption is true for gcc platforms where the gcc
1336 -- wrapper needs to call the assembler after calling gnat1, but is
1337 -- not true for ada backends, where the object files are created
1338 -- directly by gnat1 (so are created before the ali file).
1340 Back_End.Gen_Or_Update_Object_File;
1341 end if;
1343 -- Generate ASIS tree after writing the ALI file, since in ASIS mode,
1344 -- Write_ALI may in fact result in further tree decoration from the
1345 -- original tree file. Note that we dump the tree just before generating
1346 -- it, so that the dump will exactly reflect what is written out.
1348 Treepr.Tree_Dump;
1349 Tree_Gen;
1351 -- Finalize name table and we are all done
1353 Namet.Finalize;
1355 exception
1356 -- Handle fatal internal compiler errors
1358 when Rtsfind.RE_Not_Available =>
1359 Comperr.Compiler_Abort ("RE_Not_Available");
1361 when System.Assertions.Assert_Failure =>
1362 Comperr.Compiler_Abort ("Assert_Failure");
1364 when Constraint_Error =>
1365 Comperr.Compiler_Abort ("Constraint_Error");
1367 when Program_Error =>
1368 Comperr.Compiler_Abort ("Program_Error");
1370 when Storage_Error =>
1372 -- Assume this is a bug. If it is real, the message will in any case
1373 -- say Storage_Error, giving a strong hint.
1375 Comperr.Compiler_Abort ("Storage_Error");
1376 end;
1378 <<End_Of_Program>>
1379 null;
1381 -- The outer exception handles an unrecoverable error
1383 exception
1384 when Unrecoverable_Error =>
1385 Errout.Finalize (Last_Call => True);
1386 Errout.Output_Messages;
1388 Set_Standard_Error;
1389 Write_Str ("compilation abandoned");
1390 Write_Eol;
1392 Set_Standard_Output;
1393 Source_Dump;
1394 Tree_Dump;
1395 Exit_Program (E_Errors);
1397 end Gnat1drv;