1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2016, Free Software Foundation, Inc. --
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. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Atree
; use Atree
;
27 with Back_End
; use Back_End
;
30 with Csets
; use Csets
;
31 with Debug
; use Debug
;
33 with Errout
; use Errout
;
36 with Fname
; use Fname
;
37 with Fname
.UF
; use Fname
.UF
;
39 with Ghost
; use Ghost
;
40 with Gnatvsn
; use Gnatvsn
;
43 with Lib
.Writ
; use Lib
.Writ
;
45 with Namet
; use Namet
;
48 with Osint
; use Osint
;
49 with Osint
.C
; use Osint
.C
;
50 with Output
; use Output
;
53 with Repinfo
; use Repinfo
;
55 with Rident
; use Rident
;
66 with Sinfo
; use Sinfo
;
67 with Sinput
.L
; use Sinput
.L
;
69 with Sprint
; use Sprint
;
71 with Stylesw
; use Stylesw
;
72 with Targparm
; use Targparm
;
75 with Treepr
; use Treepr
;
77 with Types
; use Types
;
78 with Uintp
; use Uintp
;
79 with Uname
; use Uname
;
82 with Validsw
; use Validsw
;
84 with System
.Assertions
;
92 procedure Adjust_Global_Switches
;
93 -- There are various interactions between front-end switch settings,
94 -- including debug switch settings and target dependent parameters.
95 -- This procedure takes care of properly handling these interactions.
96 -- We do it after scanning out all the switches, so that we are not
97 -- depending on the order in which switches appear.
99 procedure Check_Bad_Body
(Unit_Node
: Node_Id
; Unit_Kind
: Node_Kind
);
100 -- Called to check whether a unit described by its compilation unit node
101 -- and kind 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 procedure Post_Compilation_Validation_Checks
;
108 -- This procedure performs various validation checks that have to be left
109 -- to the end of the compilation process, after generating code but before
110 -- issuing error messages. In particular, these checks generally require
111 -- the information provided by the back end in back annotation of declared
112 -- entities (e.g. actual size and alignment values chosen by the back end).
114 ----------------------------
115 -- Adjust_Global_Switches --
116 ----------------------------
118 procedure Adjust_Global_Switches
is
120 -- -gnatd.M enables Relaxed_RM_Semantics
122 if Debug_Flag_Dot_MM
then
123 Relaxed_RM_Semantics
:= True;
126 -- -gnatd.1 enables unnesting of subprograms
128 if Debug_Flag_Dot_1
then
129 Unnest_Subprogram_Mode
:= True;
132 -- -gnatd.u enables special C expansion mode
134 if Debug_Flag_Dot_U
then
135 Modify_Tree_For_C
:= True;
138 -- Set all flags required when generating C code
140 if Generate_C_Code
then
141 Modify_Tree_For_C
:= True;
142 Unnest_Subprogram_Mode
:= True;
143 Minimize_Expression_With_Actions
:= True;
145 -- Set operating mode to Generate_Code to benefit from full front-end
146 -- expansion (e.g. generics).
148 Operating_Mode
:= Generate_Code
;
150 -- Suppress alignment checks since we do not have access to alignment
151 -- info on the target.
153 Suppress_Options
.Suppress
(Alignment_Check
) := False;
156 -- -gnatd.E sets Error_To_Warning mode, causing selected error messages
157 -- to be treated as warnings instead of errors.
159 if Debug_Flag_Dot_EE
then
160 Error_To_Warning
:= True;
163 -- Disable CodePeer_Mode in Check_Syntax, since we need front-end
166 if Operating_Mode
= Check_Syntax
then
167 CodePeer_Mode
:= False;
170 -- Set ASIS mode if -gnatt and -gnatc are set
172 if Operating_Mode
= Check_Semantics
and then Tree_Output
then
175 -- Set ASIS GNSA mode if -gnatd.H is set
177 if Debug_Flag_Dot_HH
then
178 ASIS_GNSA_Mode
:= True;
181 -- Turn off inlining in ASIS mode, since ASIS cannot handle the extra
182 -- information in the trees caused by inlining being active.
184 -- More specifically, the tree seems to be malformed from the ASIS
185 -- point of view if -gnatc and -gnatn appear together???
187 Inline_Active
:= False;
189 -- Turn off SCIL generation and CodePeer mode in semantics mode,
190 -- since SCIL requires front-end expansion.
192 Generate_SCIL
:= False;
193 CodePeer_Mode
:= False;
196 -- SCIL mode needs to disable front-end inlining since the generated
197 -- trees (in particular order and consistency between specs compiled
198 -- as part of a main unit or as part of a with-clause) are causing
201 if Generate_SCIL
then
202 Front_End_Inlining
:= False;
205 -- Tune settings for optimal SCIL generation in CodePeer mode
207 if CodePeer_Mode
then
209 -- Turn off gnatprove mode (which can be set via e.g. -gnatd.F), not
210 -- compatible with CodePeer mode.
212 GNATprove_Mode
:= False;
213 Debug_Flag_Dot_FF
:= False;
215 -- Turn off C tree generation, not compatible with CodePeer mode. We
216 -- do not expect this to happen in normal use, since both modes are
217 -- enabled by special tools, but it is useful to turn off these flags
218 -- this way when we are doing CodePeer tests on existing test suites
219 -- that may have -gnateg set, to avoid the need for special casing.
221 Modify_Tree_For_C
:= False;
222 Generate_C_Code
:= False;
223 Unnest_Subprogram_Mode
:= False;
225 -- Turn off inlining, confuses CodePeer output and gains nothing
227 Front_End_Inlining
:= False;
228 Inline_Active
:= False;
230 -- Disable front-end optimizations, to keep the tree as close to the
231 -- source code as possible, and also to avoid inconsistencies between
232 -- trees when using different optimization switches.
234 Optimization_Level
:= 0;
236 -- Enable some restrictions systematically to simplify the generated
237 -- code (and ease analysis). Note that restriction checks are also
238 -- disabled in CodePeer mode, see Restrict.Check_Restriction, and
239 -- user specified Restrictions pragmas are ignored, see
240 -- Sem_Prag.Process_Restrictions_Or_Restriction_Warnings.
242 Restrict
.Restrictions
.Set
(No_Exception_Registration
) := True;
243 Restrict
.Restrictions
.Set
(No_Initialize_Scalars
) := True;
244 Restrict
.Restrictions
.Set
(No_Task_Hierarchy
) := True;
245 Restrict
.Restrictions
.Set
(No_Abort_Statements
) := True;
246 Restrict
.Restrictions
.Set
(Max_Asynchronous_Select_Nesting
) := True;
247 Restrict
.Restrictions
.Value
(Max_Asynchronous_Select_Nesting
) := 0;
249 -- Suppress division by zero and access checks since they are handled
250 -- implicitly by CodePeer.
252 -- Turn off dynamic elaboration checks: generates inconsistencies in
253 -- trees between specs compiled as part of a main unit or as part of
256 -- Turn off alignment checks: these cannot be proved statically by
257 -- CodePeer and generate false positives.
259 -- Enable all other language checks
261 Suppress_Options
.Suppress
:=
262 (Alignment_Check
=> True,
263 Division_Check
=> True,
264 Elaboration_Check
=> True,
267 Dynamic_Elaboration_Checks
:= False;
269 -- Set STRICT mode for overflow checks if not set explicitly. This
270 -- prevents suppressing of overflow checks by default, in code down
273 if Suppress_Options
.Overflow_Mode_General
= Not_Set
then
274 Suppress_Options
.Overflow_Mode_General
:= Strict
;
275 Suppress_Options
.Overflow_Mode_Assertions
:= Strict
;
278 -- CodePeer handles division and overflow checks directly, based on
279 -- the marks set by the frontend, hence no special expansion should
280 -- be performed in the frontend for division and overflow checks.
282 Backend_Divide_Checks_On_Target
:= True;
283 Backend_Overflow_Checks_On_Target
:= True;
285 -- Kill debug of generated code, since it messes up sloc values
287 Debug_Generated_Code
:= False;
289 -- Disable Exception_Extra_Info (-gnateE) which generates more
290 -- complex trees with no added value, and may confuse CodePeer.
292 Exception_Extra_Info
:= False;
294 -- Turn cross-referencing on in case it was disabled (e.g. by -gnatD)
295 -- to support source navigation.
299 -- Polling mode forced off, since it generates confusing junk
301 Polling_Required
:= False;
303 -- Set operating mode to Generate_Code to benefit from full front-end
304 -- expansion (e.g. generics).
306 Operating_Mode
:= Generate_Code
;
308 -- We need SCIL generation of course
310 Generate_SCIL
:= True;
312 -- Enable assertions, since they give CodePeer valuable extra info
314 Assertions_Enabled
:= True;
316 -- Set normal RM validity checking and checking of copies (to catch
317 -- e.g. wrong values used in unchecked conversions).
318 -- All other validity checking is turned off, since this can generate
319 -- very complex trees that only confuse CodePeer and do not bring
320 -- enough useful info.
322 Reset_Validity_Check_Options
;
323 Validity_Check_Default
:= True;
324 Validity_Check_Copies
:= True;
326 -- Turn off style check options and ignore any style check pragmas
327 -- since we are not interested in any front-end warnings when we are
328 -- getting CodePeer output.
330 Reset_Style_Check_Options
;
331 Ignore_Style_Checks_Pragmas
:= True;
333 -- Always perform semantics and generate ali files in CodePeer mode,
334 -- so that a gnatmake -c -k will proceed further when possible.
336 Force_ALI_Tree_File
:= True;
337 Try_Semantics
:= True;
339 -- Make the Ada front end more liberal so that the compiler will
340 -- allow illegal code that is allowed by other compilers. CodePeer
341 -- is in the business of finding problems, not enforcing rules.
342 -- This is useful when using CodePeer mode with other compilers.
344 Relaxed_RM_Semantics
:= True;
346 -- Disable all simple value propagation. This is an optimization
347 -- which is valuable for code optimization, and also for generation
348 -- of compiler warnings, but these are being turned off by default,
349 -- and CodePeer generates better messages (referencing original
350 -- variables) this way.
351 -- Do this only if -gnatws is set (the default with -gnatcC), so that
352 -- if warnings are enabled, we'll get better messages from GNAT.
354 if Warning_Mode
= Suppress
then
355 Debug_Flag_MM
:= True;
359 -- Enable some individual switches that are implied by relaxed RM
362 if Relaxed_RM_Semantics
then
363 Opt
.Allow_Integer_Address
:= True;
364 Overriding_Renamings
:= True;
365 Treat_Categorization_Errors_As_Warnings
:= True;
368 -- Enable GNATprove_Mode when using -gnatd.F switch
370 if Debug_Flag_Dot_FF
then
371 GNATprove_Mode
:= True;
374 -- GNATprove_Mode is also activated by default in the gnat2why
377 if GNATprove_Mode
then
379 -- Turn off inlining, which would confuse formal verification output
382 Front_End_Inlining
:= False;
383 Inline_Active
:= False;
385 -- Issue warnings for failure to inline subprograms, as otherwise
386 -- expected in GNATprove mode for the local subprograms without
389 Ineffective_Inline_Warnings
:= True;
391 -- Disable front-end optimizations, to keep the tree as close to the
392 -- source code as possible, and also to avoid inconsistencies between
393 -- trees when using different optimization switches.
395 Optimization_Level
:= 0;
397 -- Enable some restrictions systematically to simplify the generated
398 -- code (and ease analysis).
400 Restrict
.Restrictions
.Set
(No_Initialize_Scalars
) := True;
402 -- Note: at this point we used to suppress various checks, but that
403 -- is not what we want. We need the semantic processing for these
404 -- checks (which will set flags like Do_Overflow_Check, showing the
405 -- points at which potential checks are required semantically). We
406 -- don't want the expansion associated with these checks, but that
407 -- happens anyway because this expansion is simply not done in the
408 -- SPARK version of the expander.
410 -- On the contrary, we need to enable explicitly all language checks,
411 -- as they may have been suppressed by the use of switch -gnatp.
413 Suppress_Options
.Suppress
:= (others => False);
415 -- Detect overflow on unconstrained floating-point types, such as
416 -- the predefined types Float, Long_Float and Long_Long_Float from
417 -- package Standard. Not necessary if float overflows are checked
418 -- (Machine_Overflow true), since appropriate Do_Overflow_Check flags
419 -- will be set in any case.
421 Check_Float_Overflow
:= not Machine_Overflows_On_Target
;
423 -- Set STRICT mode for overflow checks if not set explicitly. This
424 -- prevents suppressing of overflow checks by default, in code down
427 if Suppress_Options
.Overflow_Mode_General
= Not_Set
then
428 Suppress_Options
.Overflow_Mode_General
:= Strict
;
429 Suppress_Options
.Overflow_Mode_Assertions
:= Strict
;
432 -- Kill debug of generated code, since it messes up sloc values
434 Debug_Generated_Code
:= False;
436 -- Turn cross-referencing on in case it was disabled (e.g. by -gnatD)
437 -- as it is needed for computing effects of subprograms in the formal
438 -- verification backend.
442 -- Polling mode forced off, since it generates confusing junk
444 Polling_Required
:= False;
446 -- Set operating mode to Check_Semantics, but a light front-end
447 -- expansion is still performed.
449 Operating_Mode
:= Check_Semantics
;
451 -- Enable assertions, since they give valuable extra information for
452 -- formal verification.
454 Assertions_Enabled
:= True;
456 -- Disable validity checks, since it generates code raising
457 -- exceptions for invalid data, which confuses GNATprove. Invalid
458 -- data is directly detected by GNATprove's flow analysis.
460 Validity_Checks_On
:= False;
462 -- Turn off style check options since we are not interested in any
463 -- front-end warnings when we are getting SPARK output.
465 Reset_Style_Check_Options
;
467 -- Suppress the generation of name tables for enumerations, which are
468 -- not needed for formal verification, and fall outside the SPARK
469 -- subset (use of pointers).
471 Global_Discard_Names
:= True;
473 -- Suppress the expansion of tagged types and dispatching calls,
474 -- which lead to the generation of non-SPARK code (use of pointers),
475 -- which is more complex to formally verify than the original source.
477 Tagged_Type_Expansion
:= False;
480 -- Set Configurable_Run_Time mode if system.ads flag set or if the
481 -- special debug flag -gnatdY is set.
483 if Targparm
.Configurable_Run_Time_On_Target
or Debug_Flag_YY
then
484 Configurable_Run_Time_Mode
:= True;
487 -- Set -gnatR3m mode if debug flag A set
489 if Debug_Flag_AA
then
490 Back_Annotate_Rep_Info
:= True;
491 List_Representation_Info
:= 1;
492 List_Representation_Info_Mechanisms
:= True;
495 -- Force Target_Strict_Alignment true if debug flag -gnatd.a is set
497 if Debug_Flag_Dot_A
then
498 Ttypes
.Target_Strict_Alignment
:= True;
501 -- Increase size of allocated entities if debug flag -gnatd.N is set
503 if Debug_Flag_Dot_NN
then
504 Atree
.Num_Extension_Nodes
:= Atree
.Num_Extension_Nodes
+ 1;
507 -- Disable static allocation of dispatch tables if -gnatd.t or if layout
508 -- is enabled. The front end's layout phase currently treats types that
509 -- have discriminant-dependent arrays as not being static even when a
510 -- discriminant constraint on the type is static, and this leads to
511 -- problems with subtypes of type Ada.Tags.Dispatch_Table_Wrapper. ???
513 if Debug_Flag_Dot_T
or else Frontend_Layout_On_Target
then
514 Static_Dispatch_Tables
:= False;
517 -- Flip endian mode if -gnatd8 set
520 Ttypes
.Bytes_Big_Endian
:= not Ttypes
.Bytes_Big_Endian
;
523 -- Activate front-end layout if debug flag -gnatdF is set
525 if Debug_Flag_FF
then
526 Targparm
.Frontend_Layout_On_Target
:= True;
529 -- Set and check exception mechanism. This is only meaningful when
530 -- compiling, and in particular not meaningful for special modes used
531 -- for program analysis rather than compilation: ASIS mode, CodePeer
532 -- mode and GNATprove mode.
534 if Operating_Mode
= Generate_Code
535 and then not (ASIS_Mode
or CodePeer_Mode
or GNATprove_Mode
)
537 case Targparm
.Frontend_Exceptions_On_Target
is
539 case Targparm
.ZCX_By_Default_On_Target
is
542 ("Run-time library configured incorrectly");
544 ("(requesting support for Frontend ZCX exceptions)");
545 raise Unrecoverable_Error
;
548 Exception_Mechanism
:= Front_End_SJLJ
;
552 case Targparm
.ZCX_By_Default_On_Target
is
554 Exception_Mechanism
:= Back_End_ZCX
;
556 Exception_Mechanism
:= Back_End_SJLJ
;
561 -- Set proper status for overflow check mechanism
563 -- If already set (by -gnato or above in SPARK or CodePeer mode) then we
564 -- have nothing to do.
566 if Opt
.Suppress_Options
.Overflow_Mode_General
/= Not_Set
then
569 -- Otherwise set overflow mode defaults
572 -- Overflow checks are on by default (Suppress set False) except in
573 -- GNAT_Mode, where we want them off by default (we are not ready to
574 -- enable overflow checks in the compiler yet, for one thing the case
575 -- of 64-bit checks needs System.Arith_64 which is not a compiler
576 -- unit and it is a pain to try to include it in the compiler.
578 Suppress_Options
.Suppress
(Overflow_Check
) := GNAT_Mode
;
580 -- Set appropriate default overflow handling mode. Note: at present
581 -- we set STRICT in all three of the following cases. They are
582 -- separated because in the future we may make different choices.
584 -- By default set STRICT mode if -gnatg in effect
587 Suppress_Options
.Overflow_Mode_General
:= Strict
;
588 Suppress_Options
.Overflow_Mode_Assertions
:= Strict
;
590 -- If we have backend divide and overflow checks, then by default
591 -- overflow checks are STRICT. Historically this code used to also
592 -- activate overflow checks, although no target currently has these
593 -- flags set, so this was dead code anyway.
595 elsif Targparm
.Backend_Divide_Checks_On_Target
597 Targparm
.Backend_Overflow_Checks_On_Target
599 Suppress_Options
.Overflow_Mode_General
:= Strict
;
600 Suppress_Options
.Overflow_Mode_Assertions
:= Strict
;
602 -- Otherwise for now, default is STRICT mode. This may change in the
603 -- future, but for now this is the compatible behavior with previous
607 Suppress_Options
.Overflow_Mode_General
:= Strict
;
608 Suppress_Options
.Overflow_Mode_Assertions
:= Strict
;
612 -- Set default for atomic synchronization. As this synchronization
613 -- between atomic accesses can be expensive, and not typically needed
614 -- on some targets, an optional target parameter can turn the option
615 -- off. Note Atomic Synchronization is implemented as check.
617 Suppress_Options
.Suppress
(Atomic_Synchronization
) :=
618 not Atomic_Sync_Default_On_Target
;
620 -- Set default for Alignment_Check, if we are on a machine with non-
621 -- strict alignment, then we suppress this check, since it is over-
622 -- zealous for such machines.
624 if not Ttypes
.Target_Strict_Alignment
then
625 Suppress_Options
.Suppress
(Alignment_Check
) := True;
628 -- Set switch indicating if back end can handle limited types, and
629 -- guarantee that no incorrect copies are made (e.g. in the context
630 -- of an if or case expression).
632 -- Debug flag -gnatd.L decisively sets usage on
634 if Debug_Flag_Dot_LL
then
635 Back_End_Handles_Limited_Types
:= True;
637 -- If no debug flag, usage off for SCIL cases
639 elsif Generate_SCIL
then
640 Back_End_Handles_Limited_Types
:= False;
642 -- Otherwise normal gcc back end, for now still turn flag off by
643 -- default, since there are unresolved problems in the front end.
646 Back_End_Handles_Limited_Types
:= False;
649 -- If the inlining level has not been set by the user, compute it from
650 -- the optimization level: 1 at -O1/-O2 (and -Os), 2 at -O3 and above.
652 if Inline_Level
= 0 then
653 if Optimization_Level
< 3 then
660 -- Treat -gnatn as equivalent to -gnatN for non-GCC targets
662 if Inline_Active
and not Front_End_Inlining
then
664 -- We really should have a tag for this, what if we added a new
665 -- back end some day, it would not be true for this test, but it
666 -- would be non-GCC, so this is a bit troublesome ???
668 Front_End_Inlining
:= Generate_C_Code
;
671 -- Set back-end inlining indication
675 -- No back-end inlining available on C generation
679 -- No back-end inlining in GNATprove mode, since it just confuses
680 -- the formal verification process.
682 and then not GNATprove_Mode
684 -- No back-end inlining if front-end inlining explicitly enabled.
685 -- Done to minimize the output differences to customers still using
686 -- this deprecated switch; in addition, this behavior reduces the
687 -- output differences in old tests.
689 and then not Front_End_Inlining
691 -- Back-end inlining is disabled if debug flag .z is set
693 and then not Debug_Flag_Dot_Z
;
695 -- Output warning if -gnateE specified and cannot be supported
697 if Exception_Extra_Info
698 and then Restrict
.No_Exception_Handlers_Set
702 ("warning: extra exception information (-gnateE) was specified");
705 ("warning: this capability is not available in this configuration");
710 -- Finally capture adjusted value of Suppress_Options as the initial
711 -- value for Scope_Suppress, which will be modified as we move from
712 -- scope to scope (by Suppress/Unsuppress/Overflow_Checks pragmas).
714 Sem
.Scope_Suppress
:= Opt
.Suppress_Options
;
715 end Adjust_Global_Switches
;
721 procedure Check_Bad_Body
(Unit_Node
: Node_Id
; Unit_Kind
: Node_Kind
) is
722 Fname
: File_Name_Type
;
724 procedure Bad_Body_Error
(Msg
: String);
725 -- Issue message for bad body found
731 procedure Bad_Body_Error
(Msg
: String) is
733 Error_Msg_N
(Msg
, Unit_Node
);
734 Error_Msg_File_1
:= Fname
;
735 Error_Msg_N
("remove incorrect body in file{!", Unit_Node
);
740 Sname
: Unit_Name_Type
;
741 Src_Ind
: Source_File_Index
;
743 -- Start of processing for Check_Bad_Body
746 -- Nothing to do if we are only checking syntax, because we don't know
747 -- enough to know if we require or forbid a body in this case.
749 if Operating_Mode
= Check_Syntax
then
753 -- Check for body not allowed
755 if (Unit_Kind
= N_Package_Declaration
756 and then not Body_Required
(Unit_Node
))
757 or else (Unit_Kind
= N_Generic_Package_Declaration
758 and then not Body_Required
(Unit_Node
))
759 or else Unit_Kind
= N_Package_Renaming_Declaration
760 or else Unit_Kind
= N_Subprogram_Renaming_Declaration
761 or else Nkind
(Original_Node
(Unit
(Unit_Node
)))
762 in N_Generic_Instantiation
764 Sname
:= Unit_Name
(Main_Unit
);
766 -- If we do not already have a body name, then get the body name
768 if not Is_Body_Name
(Sname
) then
769 Sname
:= Get_Body_Name
(Sname
);
772 Fname
:= Get_File_Name
(Sname
, Subunit
=> False);
773 Src_Ind
:= Load_Source_File
(Fname
);
775 -- Case where body is present and it is not a subunit. Exclude the
776 -- subunit case, because it has nothing to do with the package we are
777 -- compiling. It is illegal for a child unit and a subunit with the
778 -- same expanded name (RM 10.2(9)) to appear together in a partition,
779 -- but there is nothing to stop a compilation environment from having
780 -- both, and the test here simply allows that. If there is an attempt
781 -- to include both in a partition, this is diagnosed at bind time. In
782 -- Ada 83 mode this is not a warning case.
784 -- Note that in general we do not give the message if the file in
785 -- question does not look like a body. This includes weird cases,
786 -- but in particular means that if the file is just a No_Body pragma,
787 -- then we won't give the message (that's the whole point of this
788 -- pragma, to be used this way and to cause the body file to be
789 -- ignored in this context).
791 if Src_Ind
/= No_Source_File
792 and then Source_File_Is_Body
(Src_Ind
)
794 Errout
.Finalize
(Last_Call
=> False);
796 Error_Msg_Unit_1
:= Sname
;
798 -- Ada 83 case of a package body being ignored. This is not an
799 -- error as far as the Ada 83 RM is concerned, but it is almost
800 -- certainly not what is wanted so output a warning. Give this
801 -- message only if there were no errors, since otherwise it may
802 -- be incorrect (we may have misinterpreted a junk spec as not
803 -- needing a body when it really does).
805 if Unit_Kind
= N_Package_Declaration
806 and then Ada_Version
= Ada_83
807 and then Operating_Mode
= Generate_Code
808 and then Distribution_Stub_Mode
/= Generate_Caller_Stub_Body
809 and then not Compilation_Errors
812 ("package $$ does not require a body??", Unit_Node
);
813 Error_Msg_File_1
:= Fname
;
814 Error_Msg_N
("body in file{ will be ignored??", Unit_Node
);
816 -- Ada 95 cases of a body file present when no body is
817 -- permitted. This we consider to be an error.
820 -- For generic instantiations, we never allow a body
822 if Nkind
(Original_Node
(Unit
(Unit_Node
))) in
823 N_Generic_Instantiation
826 ("generic instantiation for $$ does not allow a body");
828 -- A library unit that is a renaming never allows a body
830 elsif Unit_Kind
in N_Renaming_Declaration
then
832 ("renaming declaration for $$ does not allow a body!");
834 -- Remaining cases are packages and generic packages. Here
835 -- we only do the test if there are no previous errors,
836 -- because if there are errors, they may lead us to
837 -- incorrectly believe that a package does not allow a
838 -- body when in fact it does.
840 elsif not Compilation_Errors
then
841 if Unit_Kind
= N_Package_Declaration
then
843 ("package $$ does not allow a body!");
845 elsif Unit_Kind
= N_Generic_Package_Declaration
then
847 ("generic package $$ does not allow a body!");
860 procedure Check_Rep_Info
is
862 if List_Representation_Info
/= 0
863 or else List_Representation_Info_Mechanisms
868 ("cannot generate representation information, no code generated");
875 ----------------------------------------
876 -- Post_Compilation_Validation_Checks --
877 ----------------------------------------
879 procedure Post_Compilation_Validation_Checks
is
881 -- Validate alignment check warnings. In some cases we generate warnings
882 -- about possible alignment errors because we don't know the alignment
883 -- that will be chosen by the back end. This routine is in charge of
884 -- getting rid of those warnings if we can tell they are not needed.
886 Checks
.Validate_Alignment_Check_Warnings
;
888 -- Validate compile time warnings and errors (using the values for size
889 -- and alignment annotated by the backend where possible). We need to
890 -- unlock temporarily these tables to reanalyze their expression.
895 Sem_Ch13
.Validate_Compile_Time_Warning_Errors
;
900 -- Validate unchecked conversions (using the values for size and
901 -- alignment annotated by the backend where possible).
903 Sem_Ch13
.Validate_Unchecked_Conversions
;
905 -- Validate address clauses (again using alignment values annotated
906 -- by the backend where possible).
908 Sem_Ch13
.Validate_Address_Clauses
;
910 -- Validate independence pragmas (again using values annotated by the
911 -- back end for component layout where possible) but only for non-GCC
912 -- back ends, as this is done a priori for GCC back ends.
914 if AAMP_On_Target
then
915 Sem_Ch13
.Validate_Independence
;
917 end Post_Compilation_Validation_Checks
;
921 Back_End_Mode
: Back_End
.Back_End_Mode_Type
;
922 Ecode
: Exit_Code_Type
;
924 Main_Unit_Kind
: Node_Kind
;
925 -- Kind of main compilation unit node
927 Main_Unit_Node
: Node_Id
;
928 -- Compilation unit node for main unit
930 -- Start of processing for Gnat1drv
933 -- This inner block is set up to catch assertion errors and constraint
934 -- errors. Since the code for handling these errors can cause another
935 -- exception to be raised (namely Unrecoverable_Error), we need two
936 -- nested blocks, so that the outer one handles unrecoverable error.
939 -- Initialize all packages. For the most part, these initialization
940 -- calls can be made in any order. Exceptions are as follows:
942 -- Lib.Initialize need to be called before Scan_Compiler_Arguments,
943 -- because it initializes a table filled by Scan_Compiler_Arguments.
949 Scan_Compiler_Arguments
;
950 Osint
.Add_Default_Search_Dirs
;
971 Sem_Type
.Init_Interp_Tables
;
973 -- Capture compilation date and time
975 Opt
.Compilation_Time
:= System
.OS_Lib
.Current_Time_String
;
977 -- Get the target parameters only when -gnats is not used, to avoid
978 -- failing when there is no default runtime.
980 if Operating_Mode
/= Check_Syntax
then
982 -- Acquire target parameters from system.ads (package System source)
984 Targparm_Acquire
: declare
987 S
: Source_File_Index
;
991 Name_Buffer
(1 .. 10) := "system.ads";
994 S
:= Load_Source_File
(N
);
996 -- Failed to read system.ads, fatal error
998 if S
= No_Source_File
then
1000 ("fatal error, run-time library not installed correctly");
1001 Write_Line
("cannot locate file system.ads");
1002 raise Unrecoverable_Error
;
1004 -- Read system.ads successfully, remember its source index
1007 System_Source_File_Index
:= S
;
1010 -- Call to get target parameters. Note that the actual interface
1011 -- routines are in Tbuild. They can't be in this procedure because
1012 -- of accessibility issues.
1014 Targparm
.Get_Target_Parameters
1015 (System_Text
=> Source_Text
(S
),
1016 Source_First
=> Source_First
(S
),
1017 Source_Last
=> Source_Last
(S
),
1018 Make_Id
=> Tbuild
.Make_Id
'Access,
1019 Make_SC
=> Tbuild
.Make_SC
'Access,
1020 Set_NOD
=> Tbuild
.Set_NOD
'Access,
1021 Set_NSA
=> Tbuild
.Set_NSA
'Access,
1022 Set_NUA
=> Tbuild
.Set_NUA
'Access,
1023 Set_NUP
=> Tbuild
.Set_NUP
'Access);
1025 -- Acquire configuration pragma information from Targparm
1027 Restrict
.Restrictions
:= Targparm
.Restrictions_On_Target
;
1028 end Targparm_Acquire
;
1031 -- Perform various adjustments and settings of global switches
1033 Adjust_Global_Switches
;
1035 -- Output copyright notice if full list mode unless we have a list
1036 -- file, in which case we defer this so that it is output in the file.
1038 if (Verbose_Mode
or else (Full_List
and then Full_List_File_Name
= null))
1040 -- Debug flag gnatd7 suppresses this copyright notice
1042 and then not Debug_Flag_7
1045 Write_Str
("GNAT ");
1046 Write_Str
(Gnat_Version_String
);
1048 Write_Str
("Copyright 1992-" & Current_Year
1049 & ", Free Software Foundation, Inc.");
1053 -- Check we do not have more than one source file, this happens only in
1054 -- the case where the driver is called directly, it cannot happen when
1055 -- gnat1 is invoked from gcc in the normal case.
1057 if Osint
.Number_Of_Files
/= 1 then
1060 Osint
.Fail
("you must provide one source file");
1062 elsif Usage_Requested
then
1066 -- Generate target dependent output file if requested
1068 if Target_Dependent_Info_Write_Name
/= null then
1069 Set_Targ
.Write_Target_Dependent_Values
;
1072 -- Call the front end
1074 Original_Operating_Mode
:= Operating_Mode
;
1077 -- Exit with errors if the main source could not be parsed
1079 if Sinput
.Main_Source_File
= No_Source_File
then
1080 Errout
.Finalize
(Last_Call
=> True);
1081 Errout
.Output_Messages
;
1082 Exit_Program
(E_Errors
);
1085 Main_Unit_Node
:= Cunit
(Main_Unit
);
1086 Main_Unit_Kind
:= Nkind
(Unit
(Main_Unit_Node
));
1088 Check_Bad_Body
(Main_Unit_Node
, Main_Unit_Kind
);
1090 -- In CodePeer mode we always delete old SCIL files before regenerating
1091 -- new ones, in case of e.g. errors, and also to remove obsolete scilx
1092 -- files generated by CodePeer itself.
1094 if CodePeer_Mode
then
1095 Comperr
.Delete_SCIL_Files
;
1098 -- Ditto for old C files before regenerating new ones
1100 if Generate_C_Code
then
1105 -- Exit if compilation errors detected
1107 Errout
.Finalize
(Last_Call
=> False);
1109 if Compilation_Errors
then
1111 Post_Compilation_Validation_Checks
;
1112 Errout
.Output_Messages
;
1115 -- Generate ALI file if specially requested
1117 if Opt
.Force_ALI_Tree_File
then
1118 Write_ALI
(Object
=> False);
1122 Errout
.Finalize
(Last_Call
=> True);
1123 Exit_Program
(E_Errors
);
1126 -- Set Generate_Code on main unit and its spec. We do this even if are
1127 -- not generating code, since Lib-Writ uses this to determine which
1128 -- units get written in the ali file.
1130 Set_Generate_Code
(Main_Unit
);
1132 -- If we have a corresponding spec, and it comes from source or it is
1133 -- not a generated spec for a child subprogram body, then we need object
1134 -- code for the spec unit as well.
1136 if Nkind
(Unit
(Main_Unit_Node
)) in N_Unit_Body
1137 and then not Acts_As_Spec
(Main_Unit_Node
)
1139 if Nkind
(Unit
(Main_Unit_Node
)) = N_Subprogram_Body
1140 and then not Comes_From_Source
(Library_Unit
(Main_Unit_Node
))
1145 (Get_Cunit_Unit_Number
(Library_Unit
(Main_Unit_Node
)));
1149 -- Case of no code required to be generated, exit indicating no error
1151 if Original_Operating_Mode
= Check_Syntax
then
1153 Errout
.Finalize
(Last_Call
=> True);
1154 Errout
.Output_Messages
;
1159 -- Use a goto instead of calling Exit_Program so that finalization
1162 goto End_Of_Program
;
1164 elsif Original_Operating_Mode
= Check_Semantics
then
1165 Back_End_Mode
:= Declarations_Only
;
1167 -- All remaining cases are cases in which the user requested that code
1168 -- be generated (i.e. no -gnatc or -gnats switch was used). Check if we
1169 -- can in fact satisfy this request.
1171 -- Cannot generate code if someone has turned off code generation for
1172 -- any reason at all. We will try to figure out a reason below.
1174 elsif Operating_Mode
/= Generate_Code
then
1175 Back_End_Mode
:= Skip
;
1177 -- We can generate code for a subprogram body unless there were missing
1178 -- subunits. Note that we always generate code for all generic units (a
1179 -- change from some previous versions of GNAT).
1181 elsif Main_Unit_Kind
= N_Subprogram_Body
1182 and then not Subunits_Missing
1184 Back_End_Mode
:= Generate_Object
;
1186 -- We can generate code for a package body unless there are subunits
1187 -- missing (note that we always generate code for generic units, which
1188 -- is a change from some earlier versions of GNAT).
1190 elsif Main_Unit_Kind
= N_Package_Body
and then not Subunits_Missing
then
1191 Back_End_Mode
:= Generate_Object
;
1193 -- We can generate code for a package declaration or a subprogram
1194 -- declaration only if it does not required a body.
1196 elsif Nkind_In
(Main_Unit_Kind
, N_Package_Declaration
,
1197 N_Subprogram_Declaration
)
1199 (not Body_Required
(Main_Unit_Node
)
1200 or else Distribution_Stub_Mode
= Generate_Caller_Stub_Body
)
1202 Back_End_Mode
:= Generate_Object
;
1204 -- We can generate code for a generic package declaration of a generic
1205 -- subprogram declaration only if does not require a body.
1207 elsif Nkind_In
(Main_Unit_Kind
, N_Generic_Package_Declaration
,
1208 N_Generic_Subprogram_Declaration
)
1209 and then not Body_Required
(Main_Unit_Node
)
1211 Back_End_Mode
:= Generate_Object
;
1213 -- Compilation units that are renamings do not require bodies, so we can
1214 -- generate code for them.
1216 elsif Nkind_In
(Main_Unit_Kind
, N_Package_Renaming_Declaration
,
1217 N_Subprogram_Renaming_Declaration
)
1219 Back_End_Mode
:= Generate_Object
;
1221 -- Compilation units that are generic renamings do not require bodies
1222 -- so we can generate code for them.
1224 elsif Main_Unit_Kind
in N_Generic_Renaming_Declaration
then
1225 Back_End_Mode
:= Generate_Object
;
1227 -- It is not an error to analyze in CodePeer mode a spec which requires
1228 -- a body, in order to generate SCIL for this spec.
1229 -- Ditto for Generate_C_Code mode and generate a C header for a spec.
1231 elsif CodePeer_Mode
or Generate_C_Code
then
1232 Back_End_Mode
:= Generate_Object
;
1234 -- It is not an error to analyze in GNATprove mode a spec which requires
1235 -- a body, when the body is not available. During frame condition
1236 -- generation, the corresponding ALI file is generated. During
1237 -- analysis, the spec is analyzed.
1239 elsif GNATprove_Mode
then
1240 Back_End_Mode
:= Declarations_Only
;
1242 -- In all other cases (specs which have bodies, generics, and bodies
1243 -- where subunits are missing), we cannot generate code and we generate
1244 -- a warning message. Note that generic instantiations are gone at this
1245 -- stage since they have been replaced by their instances.
1248 Back_End_Mode
:= Skip
;
1251 -- At this stage Back_End_Mode is set to indicate if the backend should
1252 -- be called to generate code. If it is Skip, then code generation has
1253 -- been turned off, even though code was requested by the original
1254 -- command. This is not an error from the user point of view, but it is
1255 -- an error from the point of view of the gcc driver, so we must exit
1256 -- with an error status.
1258 -- We generate an informative message (from the gcc point of view, it
1259 -- is an error message, but from the users point of view this is not an
1260 -- error, just a consequence of compiling something that cannot
1263 if Back_End_Mode
= Skip
then
1265 -- An ignored Ghost unit is rewritten into a null statement because
1266 -- it must not produce an ALI or object file. Do not emit any errors
1267 -- related to code generation because the unit does not exist.
1269 if Is_Ignored_Ghost_Unit
(Main_Unit_Node
) then
1271 -- Exit the gnat driver with success, otherwise external builders
1272 -- such as gnatmake and gprbuild will treat the compilation of an
1273 -- ignored Ghost unit as a failure. Note that this will produce
1274 -- an empty object file for the unit.
1278 -- Otherwise the unit is missing a crucial piece that prevents code
1285 Write_Str
("cannot generate code for file ");
1286 Write_Name
(Unit_File_Name
(Main_Unit
));
1288 if Subunits_Missing
then
1289 Write_Str
(" (missing subunits)");
1292 -- Force generation of ALI file, for backward compatibility
1294 Opt
.Force_ALI_Tree_File
:= True;
1296 elsif Main_Unit_Kind
= N_Subunit
then
1297 Write_Str
(" (subunit)");
1300 -- Force generation of ALI file, for backward compatibility
1302 Opt
.Force_ALI_Tree_File
:= True;
1304 elsif Main_Unit_Kind
= N_Subprogram_Declaration
then
1305 Write_Str
(" (subprogram spec)");
1308 -- Generic package body in GNAT implementation mode
1310 elsif Main_Unit_Kind
= N_Package_Body
and then GNAT_Mode
then
1311 Write_Str
(" (predefined generic)");
1314 -- Force generation of ALI file, for backward compatibility
1316 Opt
.Force_ALI_Tree_File
:= True;
1318 -- Only other case is a package spec
1321 Write_Str
(" (package spec)");
1326 Set_Standard_Output
;
1328 Post_Compilation_Validation_Checks
;
1329 Errout
.Finalize
(Last_Call
=> True);
1330 Errout
.Output_Messages
;
1334 -- Generate ALI file if specially requested, or for missing subunits,
1335 -- subunits or predefined generic.
1337 if Opt
.Force_ALI_Tree_File
then
1338 Write_ALI
(Object
=> False);
1344 -- Exit the driver with an appropriate status indicator. This will
1345 -- generate an empty object file for ignored Ghost units, otherwise
1346 -- no object file will be generated.
1348 Exit_Program
(Ecode
);
1351 -- In -gnatc mode, we only do annotation if -gnatt or -gnatR is also set
1352 -- as indicated by Back_Annotate_Rep_Info being set to True.
1354 -- We don't call for annotations on a subunit, because to process those
1355 -- the back end requires that the parent(s) be properly compiled.
1357 -- Annotation is suppressed for targets where front-end layout is
1358 -- enabled, because the front end determines representations.
1360 -- The back end is not invoked in ASIS mode with GNSA because all type
1361 -- representation information will be provided by the GNSA back end, not
1364 if Back_End_Mode
= Declarations_Only
1366 (not (Back_Annotate_Rep_Info
or Generate_SCIL
or GNATprove_Mode
)
1367 or else Main_Unit_Kind
= N_Subunit
1368 or else Frontend_Layout_On_Target
1369 or else ASIS_GNSA_Mode
)
1371 Post_Compilation_Validation_Checks
;
1372 Errout
.Finalize
(Last_Call
=> True);
1373 Errout
.Output_Messages
;
1374 Write_ALI
(Object
=> False);
1382 -- Ensure that we properly register a dependency on system.ads, since
1383 -- even if we do not semantically depend on this, Targparm has read
1384 -- system parameters from the system.ads file.
1386 Lib
.Writ
.Ensure_System_Dependency
;
1388 -- Add dependencies, if any, on preprocessing data file and on
1389 -- preprocessing definition file(s).
1391 Prepcomp
.Add_Dependencies
;
1393 -- In gnatprove mode we're writing the ALI much earlier than usual
1394 -- as flow analysis needs the file present in order to append its
1395 -- own globals to it.
1397 if GNATprove_Mode
then
1399 -- Note: In GNATprove mode, an "object" file is always generated as
1400 -- the result of calling gnat1 or gnat2why, although this is not the
1401 -- same as the object file produced for compilation.
1403 Write_ALI
(Object
=> True);
1406 -- Some back ends (for instance Gigi) are known to rely on SCOs for code
1407 -- generation. Make sure they are available.
1409 if Generate_SCO
then
1410 Par_SCO
.SCO_Record_Filtered
;
1413 -- Back end needs to explicitly unlock tables it needs to touch
1427 -- Here we call the back end to generate the output code
1429 Generating_Code
:= True;
1430 Back_End
.Call_Back_End
(Back_End_Mode
);
1432 -- Once the backend is complete, we unlock the names table. This call
1433 -- allows a few extra entries, needed for example for the file name
1434 -- for the library file output.
1438 -- Generate the call-graph output of dispatching calls
1440 Exp_CG
.Generate_CG_Output
;
1442 -- Perform post compilation validation checks
1444 Post_Compilation_Validation_Checks
;
1446 -- Now we complete output of errors, rep info and the tree info. These
1447 -- are delayed till now, since it is perfectly possible for gigi to
1448 -- generate errors, modify the tree (in particular by setting flags
1449 -- indicating that elaboration is required, and also to back annotate
1450 -- representation information for List_Rep_Info).
1452 Errout
.Finalize
(Last_Call
=> True);
1453 Errout
.Output_Messages
;
1454 List_Rep_Info
(Ttypes
.Bytes_Big_Endian
);
1455 Inline
.List_Inlining_Info
;
1457 -- Only write the library if the backend did not generate any error
1458 -- messages. Otherwise signal errors to the driver program so that
1459 -- there will be no attempt to generate an object file.
1461 if Compilation_Errors
then
1463 Exit_Program
(E_Errors
);
1466 if not GNATprove_Mode
then
1467 Write_ALI
(Object
=> (Back_End_Mode
= Generate_Object
));
1470 if not Compilation_Errors
then
1472 -- In case of ada backends, we need to make sure that the generated
1473 -- object file has a timestamp greater than the ALI file. We do this
1474 -- to make gnatmake happy when checking the ALI and obj timestamps,
1475 -- where it expects the object file being written after the ali file.
1477 -- Gnatmake's assumption is true for gcc platforms where the gcc
1478 -- wrapper needs to call the assembler after calling gnat1, but is
1479 -- not true for ada backends, where the object files are created
1480 -- directly by gnat1 (so are created before the ali file).
1482 Back_End
.Gen_Or_Update_Object_File
;
1485 -- Generate ASIS tree after writing the ALI file, since in ASIS mode,
1486 -- Write_ALI may in fact result in further tree decoration from the
1487 -- original tree file. Note that we dump the tree just before generating
1488 -- it, so that the dump will exactly reflect what is written out.
1493 -- Finalize name table and we are all done
1498 -- Handle fatal internal compiler errors
1500 when Rtsfind
.RE_Not_Available
=>
1501 Comperr
.Compiler_Abort
("RE_Not_Available");
1503 when System
.Assertions
.Assert_Failure
=>
1504 Comperr
.Compiler_Abort
("Assert_Failure");
1506 when Constraint_Error
=>
1507 Comperr
.Compiler_Abort
("Constraint_Error");
1509 when Program_Error
=>
1510 Comperr
.Compiler_Abort
("Program_Error");
1512 -- Assume this is a bug. If it is real, the message will in any case
1513 -- say Storage_Error, giving a strong hint.
1515 when Storage_Error
=>
1516 Comperr
.Compiler_Abort
("Storage_Error");
1518 when Unrecoverable_Error
=>
1522 Comperr
.Compiler_Abort
("exception");
1528 -- The outer exception handler handles an unrecoverable error
1531 when Unrecoverable_Error
=>
1532 Errout
.Finalize
(Last_Call
=> True);
1533 Errout
.Output_Messages
;
1536 Write_Str
("compilation abandoned");
1539 Set_Standard_Output
;
1542 Exit_Program
(E_Errors
);