c++: remove some xfails
[official-gcc.git] / gcc / ada / opt.ads
blob04908954fed56e9b28c886c14f82feaebe7176a4
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- O P T --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2022, 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 -- This package contains global flags set by the initialization routine from
27 -- the command line and referenced throughout the compiler, the binder, or
28 -- other GNAT tools. The comments indicate which options are used by which
29 -- programs (GNAT, GNATBIND, GNATLINK, GNATMAKE, etc).
31 -- Some flags are labelled "PROJECT MANAGER". These are used by tools that
32 -- use the Project Manager. These tools include gnatmake, gnatname, the gnat
33 -- driver, gnatclean, gprbuild and gprclean.
35 with Hostparm; use Hostparm;
36 with Types; use Types;
38 pragma Warnings (Off);
39 -- This package is used also by gnatcoll
40 with System.Strings; use System.Strings;
41 with System.WCh_Con; use System.WCh_Con;
42 pragma Warnings (On);
44 package Opt is
46 ----------------------
47 -- Checksum Control --
48 ----------------------
50 -- Checksums are computed for sources to check for sources being the same
51 -- from a compilation point of view (e.g. spelling of identifiers and
52 -- white space layout do not count in this computation).
54 Checksum_Accumulate_Limited_Checksum : Boolean := False;
55 -- Used to control the computation of the limited view of a package.
56 -- (Not currently used, possible optimization for ALI files of units
57 -- in limited with_clauses).
59 ----------------------------------------------
60 -- Settings of Modes for Current Processing --
61 ----------------------------------------------
63 -- The following mode values represent the current state of processing.
64 -- The values set here are the default values. Unless otherwise noted,
65 -- the value may be reset in Switch-? with an appropriate switch. In
66 -- some cases, the values can also be modified by pragmas, and in the
67 -- case of some binder variables, Gnatbind.Scan_Bind_Arg may modify
68 -- the default values.
70 Latest_Ada_Only : Boolean := False;
71 -- If True, the only value valid for Ada_Version is Ada_2012 or later.
72 -- Trying to specify other values will be ignored (in case of pragma
73 -- Ada_xxx) or generate an error (in case of -gnat83/95/xx switches).
75 type Ada_Version_Type is
76 (Ada_83, Ada_95, Ada_2005, Ada_2012, Ada_2022, Ada_With_Extensions);
77 pragma Ordered (Ada_Version_Type);
78 pragma Convention (C, Ada_Version_Type);
79 -- Versions of Ada for Ada_Version below. Note that these are ordered,
80 -- so that tests like Ada_Version >= Ada_95 are legitimate and useful.
81 -- Think twice before using "="; Ada_Version >= Ada_2012 is more likely
82 -- what you want, because it will apply to future versions of the language.
83 -- Note that Ada_With_Extensions should always be last since it should
84 -- always be a superset of the latest Ada version.
86 -- WARNING: There is a matching C declaration of this type in fe.h
88 Ada_Version_Default : constant Ada_Version_Type := Ada_2012;
89 pragma Warnings (Off, Ada_Version_Default);
90 -- GNAT
91 -- Default Ada version if no switch given. The Warnings off is to kill
92 -- constant condition warnings.
94 Ada_Version : Ada_Version_Type := Ada_Version_Default;
95 -- GNAT
96 -- Current Ada version for compiler, as set by configuration pragmas,
97 -- compiler switches, or implicitly (to Ada_Version_Runtime) when a
98 -- predefined or internal file is compiled.
100 -- WARNING: There is a matching C declaration of this variable in fe.h
102 Ada_Version_Pragma : Node_Id := Empty;
103 -- Reflects the Ada_xxx pragma that resulted in setting Ada_Version. Used
104 -- to specialize error messages complaining about the Ada version in use.
106 Ada_Version_Explicit : Ada_Version_Type := Ada_Version_Default;
107 -- GNAT
108 -- Like Ada_Version, but does not get set implicitly for predefined or
109 -- internal units, so it reflects the Ada version explicitly set using
110 -- configuration pragmas or compiler switches (or if neither appears, it
111 -- remains set to Ada_Version_Default). This is used in the rare cases
112 -- (notably pragma Obsolescent) where we want the explicit version set.
114 Ada_Version_Runtime : Ada_Version_Type := Ada_With_Extensions;
115 -- GNAT
116 -- Ada version used to compile the runtime. Used to set Ada_Version (but
117 -- not Ada_Version_Explicit) when compiling predefined or internal units.
119 Ada_Final_Suffix : constant String := "final";
120 Ada_Final_Name : String_Ptr := new String'("ada" & Ada_Final_Suffix);
121 -- GNATBIND
122 -- The name of the procedure that performs the finalization at the end of
123 -- execution. This variable may be modified by Gnatbind.Scan_Bind_Arg.
125 Ada_Init_Suffix : constant String := "init";
126 Ada_Init_Name : String_Ptr := new String'("ada" & Ada_Init_Suffix);
127 -- GNATBIND
128 -- The name of the procedure that performs initialization at the start
129 -- of execution. This variable may be modified by Gnatbind.Scan_Bind_Arg.
131 Ada_Main_Name_Suffix : constant String := "main";
132 -- GNATBIND
133 -- The suffix for Ada_Main_Name. Defined as a constant here so that it
134 -- can be referenced in a uniform manner to create either the default
135 -- value of Ada_Main_Name (declared below), or the non-default name
136 -- set by Gnatbind.Scan_Bind_Arg.
138 Ada_Main_Name : String_Ptr := new String'("ada_" & Ada_Main_Name_Suffix);
139 -- GNATBIND
140 -- The name of the Ada package generated by the binder (when in Ada mode).
141 -- This variable may be modified by Gnatbind.Scan_Bind_Arg.
143 Address_Clause_Overlay_Warnings : Boolean := True;
144 -- GNAT
145 -- Set False to disable address clause warnings. Modified by use of
146 -- -gnatwo/O.
148 Address_Is_Private : Boolean := False;
149 -- GNAT, GNATBIND
150 -- Set True if package System has the line "type Address is private;"
152 Aggregate_Individually_Assign : Boolean := False;
153 -- GNAT
154 -- Set True if record aggregates are to be always converted into assignment
155 -- statements. Set through the corresponding pragma.
157 All_Errors_Mode : Boolean := False;
158 -- GNAT
159 -- Flag set to force display of multiple errors on a single line and
160 -- also repeated error messages for references to undefined identifiers
161 -- and certain other repeated error messages. Set by use of -gnatf.
163 Allow_Integer_Address : Boolean := False;
164 -- GNAT
165 -- Allow use of integer expression in a context requiring System.Address.
166 -- Set by the use of configuration pragma Allow_Integer_Address. Also set
167 -- in relaxed semantics mode for use by CodePeer or when -gnatd.M is used.
169 All_Sources : Boolean := False;
170 -- GNATBIND
171 -- Set to True to require all source files to be present. This flag is
172 -- directly modified by gnatmake to affect the shared binder routines.
174 Alternate_Main_Name : String_Ptr := null;
175 -- GNATBIND
176 -- Set to non-null when Bind_Alternate_Main_Name is True. This value
177 -- is modified as needed by Gnatbind.Scan_Bind_Arg.
179 Assertions_Enabled : Boolean := False;
180 -- GNAT
181 -- Indicates default policy (True = Check, False = Ignore) to be applied
182 -- to all assertion aspects and pragmas, and to pragma Debug, if there is
183 -- no overriding Assertion_Policy, Check_Policy, or Debug_Policy pragma.
184 -- Set True by use of -gnata.
186 Assume_No_Invalid_Values : Boolean := False;
187 -- GNAT Normally, in accordance with (RM 13.9.1 (9-11)) the front end
188 -- assumes that values could have invalid representations, unless it can
189 -- prove that the values are valid. If this switch is set (by -gnatB or
190 -- pragma Assume_No_Invalid_Values (On)), then the compiler assumes values
191 -- are valid and in range of their representations.
193 Back_Annotate_Rep_Info : Boolean := False;
194 -- GNAT
195 -- If set True, enables back annotation of representation information
196 -- by gigi, even in -gnatc mode. This is set True by the use of -gnatR
197 -- (list representation information). It is also set true if certain
198 -- Unchecked_Conversion instantiations require checking based on annotated
199 -- values.
201 Back_End_Handles_Limited_Types : Boolean;
202 -- This flag is set True if the back end can properly handle limited or
203 -- other by reference types, and avoid copies. If this flag is False, then
204 -- the front end does special expansion for if/case expressions to make
205 -- sure that no copy occurs. If the flag is True, then the expansion for
206 -- if and case expressions relies on the back end properly handling things.
207 -- Currently the default is False for all cases (set in gnat1drv). The
208 -- default can be modified using -gnatd.L (sets the flag True). This is
209 -- used to test the possibility of having the backend handle this.
211 Back_End_Inlining : Boolean := False;
212 -- GNAT
213 -- Set True to activate inlining by back-end expansion. This is the normal
214 -- default mode for GCC targets, so it is True on such targets unless the
215 -- switches -gnatN or -gnatd.z are used. See circuitry in gnat1drv for the
216 -- exact conditions for setting this switch.
218 -- WARNING: There is a matching C declaration of this variable in fe.h
220 Back_End_Return_Slot : Boolean := True;
221 -- GNAT
222 -- This flag is set True if the return slot of the back end for functions
223 -- returning a by-reference type can be accessed by means of an intrinsic
224 -- function callable in the body of these functions. This is the normal
225 -- default mode for GCC targets, so it is True on such targets unless the
226 -- switch -gnatd_r is used.
228 Bind_Alternate_Main_Name : Boolean := False;
229 -- GNATBIND
230 -- True if main should be called Alternate_Main_Name.all.
231 -- This variable may be set to True by Gnatbind.Scan_Bind_Arg.
233 Bind_Main_Program : Boolean := True;
234 -- GNATBIND
235 -- Set to False if not binding main Ada program
237 Bind_For_Library : Boolean := False;
238 -- GNATBIND
239 -- Set to True if the binder needs to generate a file designed for building
240 -- a library. May be set to True by Gnatbind.Scan_Bind_Arg.
242 Bind_Only : Boolean := False;
243 -- GNATMAKE, GPRBUILD
244 -- Set to True to skip compile and link steps
245 -- (except when Compile_Only and/or Link_Only are True).
247 Blank_Deleted_Lines : Boolean := False;
248 -- GNAT, GNATPREP
249 -- Output empty lines for each line of preprocessed input that is deleted
250 -- in the output, including preprocessor lines starting with a '#'.
252 Brief_Output : Boolean := False;
253 -- GNAT, GNATBIND
254 -- Force brief error messages to standard error, even if verbose mode is
255 -- set (so that main error messages go to standard output).
257 Build_Bind_And_Link_Full_Project : Boolean := False;
258 -- GNATMAKE
259 -- Set to True to build, bind and link all the sources of a project file
260 -- (switch -B)
262 CCG_Mode : Boolean := False;
263 -- Set to True when running as CCG (either via -gnatceg or via -emit-c)
265 Check_Aliasing_Of_Parameters : Boolean := False;
266 -- GNAT
267 -- Set to True to detect whether subprogram parameters and function results
268 -- alias the same object(s).
270 Check_Float_Overflow : Boolean := False;
271 -- GNAT
272 -- Set to True to check that operations on predefined unconstrained float
273 -- types (e.g. Float, Long_Float) do not overflow and generate infinities
274 -- or invalid values. Set by the Check_Float_Overflow pragma, or by use
275 -- of the -gnateF switch.
277 Check_Object_Consistency : Boolean := False;
278 -- GNATBIND, GNATMAKE
279 -- Set to True to check whether every object file is consistent with its
280 -- corresponding ada library information (ALI) file. An object file is
281 -- inconsistent with the corresponding ALI file if the object file does
282 -- not exist or if it has an older time stamp than the ALI file. Default
283 -- above is for GNATBIND. GNATMAKE overrides this default to True (see
284 -- Make.Initialize) since we normally do need to check source consistencies
285 -- in gnatmake.
287 Check_Only : Boolean := False;
288 -- GNATBIND
289 -- Set to True to do checks only, no output of binder file
291 Check_Policy_List : Node_Id := Empty;
292 -- GNAT
293 -- This points to the list of N_Pragma nodes for Check_Policy pragmas
294 -- that are linked through the Next_Pragma fields, with the list being
295 -- terminated by Empty. The order is most recently processed first. Note
296 -- that Push_Scope and Pop_Scope in Sem_Ch8 save and restore the value
297 -- of this variable, implementing the required scope control for pragmas
298 -- appearing in a declarative part.
300 Check_Readonly_Files : Boolean := False;
301 -- GNATMAKE
302 -- Set to True to check readonly files during the make process
304 Check_Source_Files : Boolean := True;
305 -- GNATBIND, GNATMAKE
306 -- Set to True to enable consistency checking for any source files that
307 -- are present (i.e. date must match the date in the library info file).
308 -- Set to False for object file consistency check only. This flag is
309 -- directly modified by gnatmake, to affect the shared binder routines.
311 Check_Switches : Boolean := False;
312 -- GNATMAKE, GPBUILD
313 -- Set to True to check compiler options during the make process
315 Check_Unreferenced : Boolean := False;
316 -- GNAT
317 -- Set to True to enable checking for unreferenced entities other
318 -- than formal parameters (for which see Check_Unreferenced_Formals)
319 -- Modified by use of -gnatwu/U.
321 Check_Unreferenced_Formals : Boolean := False;
322 -- GNAT
323 -- Set to True to check for unreferenced formals. This is turned on by
324 -- -gnatwa/wf/wu and turned off by -gnatwA/wF/wU.
326 Check_Validity_Of_Parameters : Boolean := False;
327 -- GNAT
328 -- Set to True to check for proper scalar initialization of subprogram
329 -- parameters on both entry and exit. This is turned on by -gnateV.
331 Check_Withs : Boolean := False;
332 -- GNAT
333 -- Set to True to enable checking for unused withs, and also the case
334 -- of withing a package and using none of the entities in the package.
335 -- Modified by use of -gnatwu/U.
337 CodePeer_Mode : Boolean := False;
338 -- GNAT, GNATBIND, GPRBUILD
339 -- Enable full CodePeer mode (SCIL generation, disable switches that
340 -- interact badly with it, etc...). This is turned on by -gnatC.
342 Commands_To_Stdout : Boolean := False;
343 -- GNATMAKE
344 -- True if echoed commands to be written to stdout instead of stderr
346 Comment_Deleted_Lines : Boolean := False;
347 -- GNATPREP
348 -- True if source lines removed by the preprocessor should be commented
349 -- in the output file.
351 Compilation_Time : String (1 .. 19);
352 -- GNAT
353 -- Compilation date and time in form YYYY-MM-DD HH:MM:SS
355 Compile_Only : Boolean := False;
356 -- GNATMAKE, GNATCLEAN, GPBUILD, GPRCLEAN
357 -- GNATMAKE, GPRBUILD:
358 -- set True to skip bind and link steps (except when Bind_Only is True)
359 -- GNATCLEAN, GPRCLEAN:
360 -- set True to delete only the files produced by the compiler but not the
361 -- library files or the executable files.
363 Config_File : Boolean := True;
364 -- GNAT
365 -- Set to False to inhibit reading and processing of gnat.adc file
367 Config_File_Names : String_List_Access := null;
368 -- GNAT
369 -- Names of configuration pragmas files (given by switches -gnatec)
371 Config_Files_Store_Basename : Boolean := False;
372 -- GNAT
373 -- Set True for -gnateb. Tells GNAT that config files should be referred to
374 -- by their basename and their checksums computed in ALI files.
376 Configurable_Run_Time_Mode : Boolean := False;
377 -- GNAT, GNATBIND
378 -- Set True if the compiler is operating in configurable run-time mode.
379 -- This happens if the flag Targparm.Configurable_Run_Time_On_Target is
380 -- True, or if pragma No_Run_Time is used. See the spec of Rtsfind for
381 -- details on the handling of the latter pragma.
383 Constant_Condition_Warnings : Boolean := False;
384 -- GNAT
385 -- Set to True to activate warnings on constant conditions. Modified by
386 -- use of -gnatwc/C.
388 Create_Mapping_File : Boolean := False;
389 -- GNATMAKE
390 -- Set to True (-C switch) to indicate that the compiler will be invoked
391 -- with a mapping file (-gnatem compiler switch).
393 subtype Debug_Level_Value is Nat range 0 .. 3;
394 Debugger_Level : Debug_Level_Value := 0;
395 -- GNAT, GNATBIND
396 -- The value given to the -g parameter. The default value for -g with
397 -- no value is 2. If no -g is specified, defaults to 0.
398 -- Note that the generated code should never depend on this variable,
399 -- since we want debug info to be nonintrusive on the generate code.
401 Default_Exit_Status : Int := 0;
402 -- GNATBIND
403 -- Set the default exit status value. Set by the -Xnnn switch for the
404 -- binder.
406 Debug_Generated_Code : Boolean := False;
407 -- GNAT
408 -- Set True (-gnatD switch) to debug generated expanded code instead
409 -- of the original source code. Causes debugging information to be
410 -- written with respect to the generated code file that is written.
412 -- WARNING: There is a matching C declaration of this variable in fe.h
414 Default_Pool : Node_Id := Empty;
415 -- GNAT
416 -- Used to record the storage pool name (or null literal) that is the
417 -- argument of an applicable pragma Default_Storage_Pool.
418 -- Empty: No pragma Default_Storage_Pool applies.
419 -- N_Null node: "pragma Default_Storage_Pool (null);" applies.
420 -- otherwise: "pragma Default_Storage_Pool (X);" applies, and
421 -- this points to the name X.
422 -- Push_Scope and Pop_Scope in Sem_Ch8 save and restore this value.
424 No_Stack_Size : constant := -1;
426 Default_Stack_Size : Int := No_Stack_Size;
427 -- GNATBIND
428 -- Set to default primary stack size in units of bytes. Set by the -dnnn
429 -- switch for the binder. A value of No_Stack_Size indicates that
430 -- no default was set by the binder.
432 Default_Sec_Stack_Size : Int := No_Stack_Size;
433 -- GNATBIND
434 -- Set to default secondary stack size in units of bytes. Set by the -Dnnn
435 -- switch for the binder. A value of No_Stack_Size indicates that no
436 -- default was set by the binder and the run-time value should be used
437 -- instead.
439 Default_SSO : Character := ' ';
440 -- GNAT
441 -- Set if a pragma Default_Scalar_Storage_Order has been given. The value
442 -- of ' ' indicates that no default has been set, otherwise the value is
443 -- either 'H' for High_Order_First or 'L' for Lower_Order_First.
445 Detect_Blocking : Boolean := False;
446 -- GNAT
447 -- Set True to force the run time to raise Program_Error if calls to
448 -- potentially blocking operations are detected from protected actions.
450 Directories_Must_Exist_In_Projects : Boolean := True;
451 -- PROJECT MANAGER
452 -- Set to False with switch -f of gnatclean and gprclean
454 Disable_FE_Inline : Boolean := False;
455 -- GNAT
456 -- Request to disable front end inlining from pragma Inline in the
457 -- presence of the -fno-inline back end flag on the command line,
458 -- regardless of any other switches that are set.
459 -- It remains the back end's reponsibility to honor -fno-inline at the
460 -- back end level.
462 Display_Compilation_Progress : Boolean := False;
463 -- GNATMAKE, GPRBUILD
464 -- Set True (-d switch) to display information on progress while compiling
465 -- files. Internal flag to be used in conjunction with an IDE
466 -- (e.g GNAT Studio).
468 type Distribution_Stub_Mode_Type is
469 -- GNAT
470 (No_Stubs,
471 -- Normal mode, no generation of distribution stubs
473 Generate_Receiver_Stub_Body,
474 -- The unit being compiled is the RCI body, and the compiler will
475 -- generate the body for the receiver stubs and compile it.
477 Generate_Caller_Stub_Body);
478 -- The unit being compiled is the RCI spec, and the compiler will
479 -- generate the body for the caller stubs and compile it.
481 Distribution_Stub_Mode : Distribution_Stub_Mode_Type := No_Stubs;
482 -- GNAT
483 -- This enumeration variable indicates the three states of distribution
484 -- annex stub generation.
486 Do_Not_Execute : Boolean := False;
487 -- GNATMAKE
488 -- Set to True if no actual compilations should be undertaken
490 Dump_Source_Text : Boolean := False;
491 -- GNAT
492 -- Set to True (by -gnatL) to dump source text intermingled with generated
493 -- code. Effective only if either of Debug/Print_Generated_Code is true.
495 Dynamic_Elaboration_Checks : Boolean := False;
496 -- GNAT
497 -- Set True for dynamic elaboration checking mode, as set by the -gnatE
498 -- switch or by the use of pragma Elaboration_Checks (Dynamic).
500 Dynamic_Stack_Measurement : Boolean := False;
501 -- GNATBIND
502 -- Set True to enable dynamic stack measurement (-u flag for gnatbind)
504 Dynamic_Stack_Measurement_Array_Size : Nat := 100;
505 -- GNATBIND
506 -- Number of measurements we want to store during dynamic stack analysis.
507 -- When the buffer is full, non-storable results will be output on the fly.
508 -- The value is relevant only if Dynamic_Stack_Measurement is set. Set
509 -- by processing of -u flag for gnatbind.
511 Elab_Dependency_Output : Boolean := False;
512 -- GNATBIND
513 -- Set to True to output complete list of elaboration constraints
515 Elab_Order_Output : Boolean := False;
516 -- GNATBIND
517 -- Set to True to output chosen elaboration order
519 Elab_Info_Messages : Boolean := False;
520 -- GNAT
521 -- Set to True to output info messages for static elabmodel (-gnatel)
523 Elab_Warnings : Boolean := True;
524 -- GNAT
525 -- Set to True to generate elaboration warnings (-gnatwl). The warnings are
526 -- enabled by default because they carry the same importance as errors. The
527 -- compiler cannot emit actual errors because elaboration diagnostics need
528 -- dataflow analysis, which is not available. This behavior parallels that
529 -- of the old ABE mechanism.
531 Enable_128bit_Types : Boolean := False;
532 -- GNAT
533 -- Set to True to enable the support for 128-bit types in the compiler.
534 -- The prerequisite is a 64-bit target that supports 128-bit computation.
536 -- WARNING: There is a matching C declaration of this variable in fe.h
538 Enable_CUDA_Expansion : Boolean := False;
539 -- GNAT, GNATBIND
540 -- Set to True to enable CUDA host expansion:
541 -- - Removal of CUDA_Global and CUDA_Device symbols
542 -- - Generation of kernel registration code in packages
544 Error_Msg_Line_Length : Nat := 0;
545 -- GNAT
546 -- Records the error message line length limit. If this is set to zero,
547 -- then we get the old style behavior, in which each call to the error
548 -- message routines generates one line of output as a separate message.
549 -- If it is set to a non-zero value, then continuation lines are folded
550 -- to make a single long message, and then this message is split up into
551 -- multiple lines not exceeding the specified length. Set by -gnatj=nn.
553 Error_To_Warning : Boolean := False;
554 -- GNAT
555 -- If True, then certain error messages (e.g. parameter overlap messages
556 -- for procedure calls in Ada 2012 mode) are treated as warnings instead
557 -- of errors. Set by debug flag -gnatd.E. A search for Error_To_Warning
558 -- will identify affected messages.
560 Exception_Handler_Encountered : Boolean := False;
561 -- GNAT
562 -- This flag is set true if the parser encounters an exception handler.
563 -- It is used to set Warn_On_Exception_Propagation True if the restriction
564 -- No_Exception_Propagation is set.
566 Exception_Extra_Info : Boolean := False;
567 -- GNAT
568 -- True when switch -gnateE is used. When True, generate extra information
569 -- associated with exception messages (in particular range and index
570 -- checks).
572 -- WARNING: There is a matching C declaration of this variable in fe.h
574 Exception_Locations_Suppressed : Boolean := False;
575 -- GNAT
576 -- Set to True if a Suppress_Exception_Locations configuration pragma is
577 -- currently active.
579 -- WARNING: There is a matching C declaration of this variable in fe.h
581 type Exception_Mechanism_Type is
582 -- Determines the kind of mechanism used to handle exceptions
584 (Back_End_ZCX,
585 -- Exceptions are handled by the back end. The front end simply
586 -- generates the handlers as they appear in the source, and AT END
587 -- handlers are left untouched (they are not converted into exception
588 -- handlers when operating in this mode). Propagation is performed
589 -- using a frame unwinding scheme and requires no particular setup code
590 -- at handler sites on regular execution paths.
592 Back_End_SJLJ);
593 -- Similar to Back_End_ZCX with respect to the front-end processing
594 -- of regular and AT-END handlers. A setjmp/longjmp scheme is used to
595 -- propagate and setup handler contexts on regular execution paths.
597 Exception_Mechanism : Exception_Mechanism_Type := Back_End_SJLJ;
598 -- GNAT
599 -- Set to the appropriate value depending on the flags in system.ads
600 -- (ZCX_By_Default).
602 function ZCX_Exceptions return Boolean;
603 function SJLJ_Exceptions return Boolean;
604 -- GNAT
605 -- Various properties of the active Exception_Mechanism
607 -- WARNING: There is a matching C declaration of these subprograms in fe.h
609 Exception_Tracebacks : Boolean := False;
610 -- GNATBIND
611 -- Set to True to store tracebacks in exception occurrences (-Ea or -E)
613 Exception_Tracebacks_Symbolic : Boolean := False;
614 -- GNATBIND
615 -- Set to True to store tracebacks in exception occurrences and enable
616 -- symbolic tracebacks (-Es).
618 Expand_Nonbinary_Modular_Ops : Boolean := False;
619 -- Set to True to convert nonbinary modular additions into code
620 -- that relies on the front-end expansion of operator Mod.
622 function Extensions_Allowed return Boolean is
623 (Ada_Version = Ada_With_Extensions);
624 -- True if GNAT specific language extensions are allowed. See GNAT RM for
625 -- details.
627 type External_Casing_Type is (
628 As_Is, -- External names cased as they appear in the Ada source
629 Uppercase, -- External names forced to all uppercase letters
630 Lowercase); -- External names forced to all lowercase letters
632 External_Name_Imp_Casing : External_Casing_Type := Lowercase;
633 -- GNAT
634 -- The setting of this flag determines the casing of external names
635 -- when the name is implicitly derived from an entity name (i.e. either
636 -- no explicit External_Name or Link_Name argument is used, or, in the
637 -- case of extended DEC pragmas, the external name is given using an
638 -- identifier. The As_Is setting is not permitted here (since this would
639 -- create Ada source programs that were case sensitive).
641 External_Name_Exp_Casing : External_Casing_Type := As_Is;
642 -- GNAT
643 -- The setting of this flag determines the casing of an external name
644 -- specified explicitly with a string literal. As_Is means the string
645 -- literal is used as given with no modification to the casing. If
646 -- Lowercase or Uppercase is set, then the string is forced to all
647 -- lowercase or all uppercase letters as appropriate. Note that this
648 -- setting has no effect if the external name is given using an identifier
649 -- in the case of extended DEC import/export pragmas (in this case the
650 -- casing is controlled by External_Name_Imp_Casing), and also has no
651 -- effect if an explicit Link_Name is supplied (a link name is always
652 -- used exactly as given).
654 External_Unit_Compilation_Allowed : Boolean := False;
655 -- GNATMAKE
656 -- When True (set by gnatmake switch -x), allow compilation of sources
657 -- that are not part of any project file.
659 Fast_Math : Boolean := False;
660 -- GNAT
661 -- Indicates the current setting of Fast_Math mode, as set by the use
662 -- of a Fast_Math pragma (set True by Fast_Math (On)).
664 Force_ALI_File : Boolean := False;
665 -- GNAT
666 -- Force generation of ALI file even if errors are encountered.
667 -- Set on by use of -gnatQ.
669 Disable_ALI_File : Boolean := False;
670 -- GNAT
671 -- Disable generation of ALI file
673 Follow_Links_For_Files : Boolean := False;
674 -- PROJECT MANAGER
675 -- Set to True (-eL) to process the project files in trusted mode. If
676 -- Follow_Links is False, it is assumed that the project doesn't contain
677 -- any file duplicated through symbolic links (although the latter are
678 -- still valid if they point to a file which is outside of the project),
679 -- and that no directory has a name which is a valid source name.
681 Follow_Links_For_Dirs : Boolean := False;
682 -- PROJECT MANAGER
683 -- Set to True if directories can be links in this project, and therefore
684 -- additional system calls must be performed to ensure that we always see
685 -- the same full name for each directory.
687 Force_Checking_Of_Elaboration_Flags : Boolean := False;
688 -- GNATBIND
689 -- True if binding with forced checking of the elaboration flags
690 -- (-F switch set).
692 Force_Compilations : Boolean := False;
693 -- GNATMAKE, GPRBUILD
694 -- Set to force recompilations even when the objects are up-to-date.
696 Force_Elab_Order_File : String_Ptr := null;
697 -- GNATBIND
698 -- File name specified for -f switch (the forced elaboration order file)
700 Front_End_Inlining : Boolean := False;
701 -- GNAT
702 -- Set True to activate inlining by front-end expansion (even on GCC
703 -- targets, where inlining is normally handled by the back end). Set by
704 -- the flag -gnatN (which is now considered obsolescent, since the GCC
705 -- back end can do a better job of inlining than the front end these days).
707 Full_Path_Name_For_Brief_Errors : Boolean := False;
708 -- PROJECT MANAGER
709 -- When True, in Brief_Output mode, each error message line will start with
710 -- the full path name of the source. When False, only the file name without
711 -- directory information is used.
713 Full_List : Boolean := False;
714 -- GNAT
715 -- Set True to generate full source listing with embedded errors
717 Full_List_File_Name : String_Ptr := null;
718 -- GNAT
719 -- Set to file name to generate full source listing to named file (or if
720 -- the name is of the form .xxx, then to name.xxx where name is the source
721 -- file name with extension stripped.
723 Generate_Asm : Boolean := False;
724 -- GNAT
725 -- True if generating assembly instead of an object file, via the -S switch
727 Generate_C_Code : Boolean := False;
728 -- GNAT, GNATBIND
729 -- If True, the Cprint circuitry to generate C code output is activated.
730 -- Set True by use of -gnateg or -gnatd.V for GNAT, and -G for GNATBIND.
732 Generate_CodePeer_Messages : Boolean := False;
733 -- GNAT
734 -- Generate CodePeer messages. Ignored if CodePeer_Mode is false. This is
735 -- turned on by -gnateC.
737 Generate_Processed_File : Boolean := False;
738 -- GNAT
739 -- True when switch -gnateG is used. When True, create in a file
740 -- <source>.prep, if the source is preprocessed.
742 Generate_SCIL : Boolean := False;
743 -- GNAT
744 -- Set True to activate SCIL code generation.
746 Generate_SCO : Boolean := False;
747 -- GNAT
748 -- True when switch -fdump-scos (or -gnateS) is used. When True, Source
749 -- Coverage Obligation (SCO) information is generated and output in the ALI
750 -- file. See unit Par_SCO for full details.
752 Generate_SCO_Instance_Table : Boolean := False;
753 -- GNAT
754 -- True when switch -fdump-scos is used. When True, a table of instances is
755 -- included in SCOs.
757 -- WARNING: There is a matching C declaration of this variable in fe.h
759 Generating_Code : Boolean := False;
760 -- GNAT
761 -- True if the frontend finished its work and has called the backend to
762 -- process the tree and generate the object file.
764 type Ghost_Mode_Type is (None, Check, Ignore);
765 -- Possible legal modes that can be set by aspect/pragma Ghost as well as
766 -- value None, which indicates that no such aspect/pragma applies.
768 Ghost_Mode : Ghost_Mode_Type := None;
769 -- GNAT
770 -- The current Ghost mode in effect
772 Global_Discard_Names : Boolean := False;
773 -- GNAT, GNATBIND
774 -- True if a pragma Discard_Names appeared as a configuration pragma for
775 -- the current compilation unit.
777 GNAT_Encodings : Int;
778 pragma Import (C, GNAT_Encodings, "gnat_encodings");
779 -- Constant controlling the balance between GNAT encodings and standard
780 -- DWARF to emit in the debug information. It accepts the following values.
782 DWARF_GNAT_Encodings_All : constant Int := 0;
783 DWARF_GNAT_Encodings_GDB : constant Int := 1;
784 DWARF_GNAT_Encodings_Minimal : constant Int := 2;
786 Identifier_Character_Set : Character;
787 -- GNAT
788 -- This variable indicates the character set to be used for identifiers.
789 -- The possible settings are:
790 -- '1' Latin-1 (ISO-8859-1)
791 -- '2' Latin-2 (ISO-8859-2)
792 -- '3' Latin-3 (ISO-8859-3)
793 -- '4' Latin-4 (ISO-8859-4)
794 -- '5' Latin-Cyrillic (ISO-8859-5)
795 -- '9' Latin-9 (ISO-8859-15)
796 -- 'p' PC (US, IBM page 437)
797 -- '8' PC (European, IBM page 850)
798 -- 'f' Full upper set (all distinct)
799 -- 'n' No upper characters (Ada 83 rules)
800 -- 'w' Latin-1 plus wide characters allowed in identifiers
802 -- The setting affects the set of letters allowed in identifiers and the
803 -- upper/lower case equivalences. It does not affect the interpretation of
804 -- character and string literals, which are always stored using the actual
805 -- coding in the source program. This variable is initialized to the
806 -- default value appropriate to the system (in Osint.Initialize), and then
807 -- reset if a command line switch is used to change the setting.
809 Ignore_Rep_Clauses : Boolean := False;
810 -- GNAT
811 -- Set True to ignore all representation clauses. Useful when compiling
812 -- code from foreign compilers for checking purposes. Can be
813 -- set True by use of -gnatI.
815 Ignore_SPARK_Mode_Pragmas_In_Instance : Boolean := False;
816 -- GNAT
817 -- Set True to ignore the semantics and effects of pragma SPARK_Mode when
818 -- the pragma appears inside an instance whose enclosing context is subject
819 -- to SPARK_Mode "off". This property applies to nested instances.
821 Ignore_Style_Checks_Pragmas : Boolean := False;
822 -- GNAT
823 -- Set True to ignore all Style_Checks pragmas. Can be set True by use
824 -- of -gnateY.
826 Ignore_Unrecognized_VWY_Switches : Boolean := False;
827 -- GNAT
828 -- Set True to ignore unrecognized y, V, w switches. Can be set True by
829 -- use of -gnateu, causing subsequent unrecognized switches to result in
830 -- a warning rather than an error.
832 Ignored_Ghost_Region : Node_Id := Empty;
833 -- GNAT
834 -- The start of the current ignored Ghost region. This value must always
835 -- reflect the starting node of the outermost ignored Ghost region. If a
836 -- nested ignored Ghost region is entered, the value must remain unchanged.
838 Implementation_Unit_Warnings : Boolean := True;
839 -- GNAT
840 -- Set True to active warnings for use of implementation internal units.
841 -- Modified by use of -gnatwi/-gnatwI.
843 Implicit_Packing : Boolean := False;
844 -- GNAT
845 -- If set True, then a Size attribute clause on an array is allowed to
846 -- cause implicit packing instead of generating an error message. Set by
847 -- use of pragma Implicit_Packing.
849 Include_Subprogram_In_Messages : Boolean := False;
850 -- GNAT
851 -- Set True to include the enclosing subprogram in compiler messages.
853 Ineffective_Inline_Warnings : Boolean := False;
854 -- GNAT
855 -- Set True to activate warnings if front-end inlining (-gnatN) is not able
856 -- to actually inline a particular call (or all calls). Can be controlled
857 -- by use of -gnatwp/-gnatwP. Also set True to activate warnings if
858 -- frontend inlining is not able to inline a subprogram expected to
859 -- be inlined in GNATprove mode.
861 Init_Or_Norm_Scalars : Boolean := False;
862 -- GNAT, GNATBIND
863 -- Set True if a pragma Initialize_Scalars applies to the current unit.
864 -- Also set True if a pragma Restriction (Normalize_Scalars) applies.
866 Initialize_Scalars : Boolean := False;
867 -- GNAT
868 -- Set True if a pragma Initialize_Scalars applies to the current unit.
869 -- Note that Init_Or_Norm_Scalars is also set to True if this is True.
871 Initialize_Scalars_Mode1 : Character := 'I';
872 Initialize_Scalars_Mode2 : Character := 'N';
873 -- GNATBIND
874 -- Set to two characters from -S switch (IN/LO/HI/EV/xx). The default
875 -- is IN (invalid values), used if no -S switch is used.
877 Inline_Active : Boolean := False;
878 -- GNAT
879 -- Set True to activate pragma Inline processing across modules. Default
880 -- for now is not to inline across module boundaries.
882 Inline_Level : Nat := 0;
883 -- GNAT
884 -- Set to indicate the inlining level: 0 means that an appropriate value is
885 -- to be computed by the compiler based on the optimization level (-gnatn),
886 -- 1 is for moderate inlining across modules (-gnatn1) and 2 for full
887 -- inlining across modules (-gnatn2).
889 Interface_Library_Unit : Boolean := False;
890 -- GNATBIND
891 -- Set to True to indicate that at least one ALI file is an interface ALI:
892 -- then elaboration flag checks are to be generated in the binder
893 -- generated file.
895 Invalid_Value_Used : Boolean := False;
896 -- GNAT
897 -- Set True if a valid Invalid_Value attribute is encountered
899 Inline_Processing_Required : Boolean := False;
900 -- GNAT
901 -- Set True if inline processing is required. Inline processing is required
902 -- if an active Inline pragma is processed. The flag is set for a pragma
903 -- Inline or Inline_Always that is actually active.
905 In_Place_Mode : Boolean := False;
906 -- GNATMAKE
907 -- Set True to store ALI and object files in place i.e. in the object
908 -- directory if these files already exist or in the source directory
909 -- if not.
911 JSON_Output : Boolean := False;
912 -- GNAT
913 -- Output error and warning messages in JSON format. Set to true when the
914 -- backend option "-fdiagnostics-format=json" is found on the command line.
916 Keep_Going : Boolean := False;
917 -- GNATMAKE, GPRBUILD
918 -- When True signals to ignore compilation errors and keep processing
919 -- sources until there is no more work.
921 Keep_Temporary_Files : Boolean := False;
922 -- GNATCMD, GNATMAKE, GPRBUILD
923 -- When True the temporary files are not deleted. Set by switches -dn or
924 -- --keep-temp-files.
926 Leap_Seconds_Support : Boolean := False;
927 -- GNATBIND
928 -- Set to True to enable leap seconds support in Ada.Calendar and its
929 -- children. Set by -y.
931 Legacy_Elaboration_Checks : Boolean := False;
932 -- GNAT
933 -- Set to True when the pre-18.x access-before-elaboration model is to be
934 -- used. Modified by use of -gnatH.
936 Legacy_Elaboration_Order : Boolean := False;
937 -- GNATBIND
938 -- Set to True when the pre-20.x elaboration-order model is to be used.
939 -- Modified by use of -H.
941 Link_Only : Boolean := False;
942 -- GNATMAKE, GPRBUILD
943 -- Set to True to skip compile and bind steps (except when Bind_Only is
944 -- set to True).
946 List_Body_Required_Info : Boolean := False;
947 -- GNATMAKE
948 -- List info messages about why a package requires a body. Modified by use
949 -- of -gnatw.y/.Y.
951 List_Inherited_Aspects : Boolean := False;
952 -- GNAT
953 -- List inherited invariants, preconditions, and postconditions from
954 -- Invariant'Class, Pre'Class, and Post'Class aspects. Also list inherited
955 -- subtype predicates. Modified by use of -gnatw.l/.L.
957 List_Restrictions : Boolean := False;
958 -- GNATBIND
959 -- Set to True to list restrictions pragmas that could apply to partition
961 List_Units : Boolean := False;
962 -- GNAT
963 -- List units in the active library for a compilation (-gnatu switch)
965 List_Closure : Boolean := False;
966 -- GNATBIND
967 -- List all sources in the closure of a main (-R or -Ra gnatbind switch)
969 List_Closure_All : Boolean := False;
970 -- GNATBIND
971 -- List all sources in closure of main including run-time units (-Ra
972 -- gnatbind switch).
974 List_Dependencies : Boolean := False;
975 -- GNATMAKE
976 -- When True gnatmake verifies that the objects are up to date and outputs
977 -- the list of object dependencies (-M switch). Output depends if -a switch
978 -- is used or not. This list can be used directly in a Makefile.
980 List_Representation_Info : Int range 0 .. 4 := 0;
981 -- GNAT
982 -- Set non-zero by -gnatR switch to list representation information.
983 -- The settings are as follows:
985 -- 0 = no listing of representation information (default as above)
986 -- 1 = list rep info for user-defined record and array types
987 -- 2 = list rep info for all user-defined types and objects
988 -- 3 = like 2, but variable fields are decoded symbolically
989 -- 4 = like 3, but list rep info for relevant compiler-generated types
991 -- WARNING: There is a matching C declaration of this variable in fe.h
993 List_Representation_Info_To_File : Boolean := False;
994 -- GNAT
995 -- Set true by -gnatRs switch. Causes information from -gnatR[1-4]m to be
996 -- written to file.rep (where file is the name of the source file) instead
997 -- of stdout. For example, if file x.adb is compiled using -gnatR2s then
998 -- representation info is written to x.adb.ref.
1000 List_Representation_Info_To_JSON : Boolean := False;
1001 -- GNAT
1002 -- Set true by -gnatRj switch. Causes information from -gnatR[1-4]m to be
1003 -- output in the JSON data interchange format.
1005 List_Representation_Info_Mechanisms : Boolean := False;
1006 -- GNAT
1007 -- Set true by -gnatRm switch. Causes information on mechanisms to be
1008 -- included in the representation output information.
1010 List_Representation_Info_Extended : Boolean := False;
1011 -- GNAT
1012 -- Set true by -gnatRe switch. Causes extended information for record types
1013 -- to be included in the representation output information.
1015 List_Preprocessing_Symbols : Boolean := False;
1016 -- GNAT, GNATPREP
1017 -- Set to True if symbols for preprocessing a source are to be listed
1018 -- before preprocessing occurs. Set to True by switch -s of gnatprep or
1019 -- -s in preprocessing data file for the compiler.
1021 XDR_Stream : Boolean := False;
1022 -- GNATBIND
1023 -- Set to True to enable XDR in s-stratt.adb. Set by -xdr.
1025 type Create_List_File_Proc is access procedure (S : String);
1026 type Write_List_Info_Proc is access procedure (S : String);
1027 type Close_List_File_Proc is access procedure;
1028 -- Types used for procedure addresses below
1030 Create_List_File_Access : Create_List_File_Proc := null;
1031 Write_List_Info_Access : Write_List_Info_Proc := null;
1032 Close_List_File_Access : Close_List_File_Proc := null;
1033 -- GNAT
1034 -- These three locations are left null when operating in non-compiler
1035 -- (e.g. from the binder), but when operating in compiler mode, they are
1036 -- set to point to the three corresponding procedures in Osint-C. The
1037 -- reason for this slightly strange interface is to prevent Repinfo
1038 -- from dragging in Osint-C in the binder, which would include unwanted
1039 -- units in the binder.
1041 Locking_Policy : Character := ' ';
1042 -- GNAT, GNATBIND
1044 -- Set to ' ' for the default case (no locking policy specified). Otherwise
1045 -- set based on the pragma Locking_Policy:
1046 -- Ceiling_Locking: 'C'
1047 -- Concurrent_Readers_Locking: 'R'
1048 -- Inheritance_Locking: 'I'
1050 Locking_Policy_Sloc : Source_Ptr := No_Location;
1051 -- GNAT, GNATBIND
1052 -- Remember location of previous Locking_Policy pragma. This is used for
1053 -- inconsistency error messages. A value of System_Location is used if the
1054 -- policy is set in package System.
1056 Look_In_Primary_Dir : Boolean := True;
1057 -- GNAT, GNATBIND, GNATMAKE, GNATCLEAN
1058 -- Set to False if a -I- was present on the command line. When True we are
1059 -- allowed to look in the primary directory to locate other source or
1060 -- library files.
1062 Make_Steps : Boolean := False;
1063 -- GNATMAKE
1064 -- Set to True when either Compile_Only, Bind_Only or Link_Only is
1065 -- set to True.
1067 Main_Index : Int := 0;
1068 -- GNATMAKE
1069 -- This is set to non-zero by gnatmake switch -eInnn to indicate that
1070 -- the main program is the nnn unit in a multi-unit source file.
1072 Mapping_File_Name : String_Ptr := null;
1073 -- GNAT
1074 -- File name of mapping between unit names, file names and path names.
1075 -- (given by switch -gnatem)
1077 Maximum_Messages : Int := 9999;
1078 -- GNAT, GNATBIND
1079 -- Maximum default number of errors before compilation is terminated, or in
1080 -- the case of GNAT, maximum number of warnings before further warnings are
1081 -- suppressed. Can be overridden by -gnatm (GNAT) or -m (GNATBIND) switch.
1083 Maximum_File_Name_Length : Int;
1084 -- GNAT, GNATBIND
1085 -- Maximum number of characters allowed in a file name, not counting the
1086 -- extension, as set by the appropriate switch. If no switch is given,
1087 -- then this value is initialized by Osint to the appropriate value.
1089 Maximum_Instantiations : Int := 8000;
1090 -- GNAT
1091 -- Maximum number of instantiations permitted (to stop runaway cases
1092 -- of nested instantiations). These situations probably only occur in
1093 -- specially concocted test cases. Can be modified by -gnateinn switch.
1095 Maximum_Processes : Positive := 1;
1096 -- GNATMAKE, GPRBUILD
1097 -- Maximum number of processes that should be spawned to carry out
1098 -- compilations.
1100 Minimal_Binder : Boolean := False;
1101 -- GNATBIND
1102 -- Set to True to suppress the generation of objects by the binder that
1103 -- are not strictly required for a program to run. Intended for ZFP
1104 -- applications that have tight memory constraints.
1106 Minimal_Recompilation : Boolean := False;
1107 -- GNATMAKE
1108 -- Set to True if minimal recompilation mode requested
1110 Minimize_Expression_With_Actions : Boolean := False;
1111 -- GNAT
1112 -- If True, minimize the use of N_Expression_With_Actions node.
1113 -- This can be used in particular on some back-ends where this node is
1114 -- difficult to support.
1116 Modify_Tree_For_C : Boolean := False;
1117 -- GNAT
1118 -- If this switch is set True (currently it is set only by -gnatd.V), then
1119 -- certain meaning-preserving transformations are applied to the tree to
1120 -- make it easier to interface with back ends that implement C semantics.
1121 -- There is a section in Sinfo which describes the transformations made.
1123 Multiple_Unit_Index : Nat := 0;
1124 -- GNAT
1125 -- This is set non-zero if the current unit is being compiled in multiple
1126 -- unit per file mode, meaning that the current unit is selected from the
1127 -- sequence of units in the current source file, using the value stored
1128 -- in this variable (e.g. 2 = select second unit in file). A value of
1129 -- zero indicates that we are in normal (one unit per file) mode.
1131 No_Backup : Boolean := False;
1132 -- GNATNAME
1133 -- Do not create backup copies of project files. Set by switch --no-backup.
1135 No_Component_Reordering : Boolean := False;
1136 -- GNAT
1137 -- Set True if pragma No_Component_Reordering with no parameter encountered
1139 No_Deletion : Boolean := False;
1140 -- GNATPREP
1141 -- Set by preprocessor switch -a. Do not eliminate any source text. Implies
1142 -- Undefined_Symbols_Are_False. Useful to perform a syntax check on all
1143 -- branches of #if constructs.
1145 No_Elab_Code_All_Pragma : Node_Id := Empty;
1146 -- Set to point to a No_Elaboration_Code_All pragma or aspect encountered
1147 -- in the spec of the extended main unit. Used to determine if we need to
1148 -- do special tests for violation of this aspect.
1150 No_Heap_Finalization_Pragma : Node_Id := Empty;
1151 -- GNAT
1152 -- Set to point to a No_Heap_Finalization pragma defined in a configuration
1153 -- file.
1155 No_Main_Subprogram : Boolean := False;
1156 -- GNATMAKE, GNATBIND
1157 -- Set to True if compilation/binding of a program without main
1158 -- subprogram requested.
1160 No_Run_Time_Mode : Boolean := False;
1161 -- GNAT, GNATBIND
1162 -- This flag is set True if a No_Run_Time pragma is encountered. See spec
1163 -- of Rtsfind for a full description of handling of this pragma.
1165 No_Split_Units : Boolean := False;
1166 -- GPRBUILD
1167 -- Set to True with switch --no-split-units. When True, unit sources, spec,
1168 -- body and subunits, must all be in the same project. This is checked
1169 -- after each compilation.
1171 No_Stdinc : Boolean := False;
1172 -- GNAT, GNATBIND, GNATMAKE, GNATFIND, GNATXREF
1173 -- Set to True if no default source search dirs added to search list.
1175 No_Stdlib : Boolean := False;
1176 -- GNATMAKE, GNATBIND, GNATFIND, GNATXREF
1177 -- Set to True if no default library search dirs added to search list.
1179 No_Strict_Aliasing : Boolean := False;
1180 -- GNAT
1181 -- Set True if pragma No_Strict_Aliasing with no parameters encountered.
1183 -- WARNING: There is a matching C declaration of this variable in fe.h
1185 No_Tagged_Streams : Node_Id := Empty;
1186 -- GNAT
1187 -- If a pragma No_Tagged_Streams is active for the current scope, this
1188 -- points to the corresponding pragma.
1190 Nodes_Size_In_Meg : Nat := 0;
1191 -- GNAT
1192 -- Amount of memory to allocate for all nodes, in units of 2**20 bytes.
1193 -- Set by the -gnaten switch; 0 means -gnaten was not given, and a default
1194 -- value should be used.
1196 Normalize_Scalars : Boolean := False;
1197 -- GNAT, GNATBIND
1198 -- Set True if a pragma Normalize_Scalars applies to the current unit.
1199 -- Note that Init_Or_Norm_Scalars is also set to True if this is True.
1201 Object_Directory_Present : Boolean := False;
1202 -- GNATMAKE
1203 -- Set to True when an object directory is specified with option -D
1205 Object_Path_File_Name : String_Ptr := null;
1206 -- GNAT2WHY
1207 -- Path of the temporary file that contains a list of object directories
1208 -- passed by -gnateO=<obj_path_file>.
1210 One_Compilation_Per_Obj_Dir : Boolean := False;
1211 -- GNATMAKE, GPRBUILD
1212 -- Set to True with switch --single-compile-per-obj-dir. When True, there
1213 -- cannot be simultaneous compilations with the object files in the same
1214 -- object directory, if project files are used.
1216 type Operating_Mode_Type is (Check_Syntax, Check_Semantics, Generate_Code);
1217 pragma Ordered (Operating_Mode_Type);
1218 Operating_Mode : Operating_Mode_Type := Generate_Code;
1219 -- GNAT
1220 -- Indicates the operating mode of the compiler. The default is generate
1221 -- code, which runs the parser, semantics and backend. Switches can be
1222 -- used to set syntax checking only mode, or syntax and semantics checking
1223 -- only mode. Operating_Mode can also be modified as a result of detecting
1224 -- errors during the compilation process. In particular if any serious
1225 -- error is detected then this flag is reset from Generate_Code to
1226 -- Check_Semantics after generating an error message. This is an ordered
1227 -- type with the semantics that each value does more than the previous one.
1229 Optimize_Alignment : Character := 'O';
1230 -- GNAT
1231 -- Setting of Optimize_Alignment, set to T/S/O for time/space/off. Can
1232 -- be modified by use of pragma Optimize_Alignment.
1234 Optimize_Alignment_Local : Boolean := False;
1235 -- GNAT
1236 -- Set True if Optimize_Alignment mode is set by a local configuration
1237 -- pragma that overrides the gnat.adc (or other configuration file) default
1238 -- so that the unit is not dependent on the default setting. Also always
1239 -- set True for internal units, since these always have a default setting
1240 -- of Optimize_Alignment (Off) that is enforced (essentially equivalent to
1241 -- them all having such an explicit pragma in each unit).
1243 Original_Operating_Mode : Operating_Mode_Type := Generate_Code;
1244 -- GNAT
1245 -- Indicates the original operating mode of the compiler as set by compiler
1246 -- options. This is identical to Operating_Mode except that this is not
1247 -- affected by errors.
1249 Optimization_Level : Int;
1250 pragma Import (C, Optimization_Level, "optimize");
1251 -- GNAT
1252 -- Constant reflecting the optimization level (0,1,2,3 for -O0,-O1,-O2,-O3)
1254 Optimize_Size : Int;
1255 pragma Import (C, Optimize_Size, "optimize_size");
1256 -- GNAT
1257 -- Constant reflecting setting of -Os (optimize for size). Set to nonzero
1258 -- in -Os mode and set to zero otherwise.
1260 Output_File_Name_Present : Boolean := False;
1261 -- GNATBIND, GNAT, GNATMAKE
1262 -- Set to True when the output C file name is given with option -o for
1263 -- GNATBIND, when the object file name is given with option -gnatO for GNAT
1264 -- or when the executable is given with option -o for GNATMAKE.
1266 Output_Linker_Option_List : Boolean := False;
1267 -- GNATBIND
1268 -- True if output of list of linker options is requested (-K switch set)
1270 Output_ALI_List : Boolean := False;
1271 ALI_List_Filename : String_Ptr;
1272 -- GNATBIND
1273 -- True if output of list of ALIs is requested (-A switch set). List is
1274 -- output under the given filename, or standard output if not specified.
1276 Output_Object_List : Boolean := False;
1277 Object_List_Filename : String_Ptr;
1278 -- GNATBIND
1279 -- True if output of list of objects is requested (-O switch set). List is
1280 -- output under the given filename, or standard output if not specified.
1282 Partition_Elaboration_Policy : Character := ' ';
1283 -- GNAT, GNATBIND
1284 -- Set to ' ' for the default case (no elaboration policy specified). Reset
1285 -- to first character (uppercase) of locking policy name if a valid pragma
1286 -- Partition_Elaboration_Policy is encountered.
1288 Partition_Elaboration_Policy_Sloc : Source_Ptr := No_Location;
1289 -- GNAT, GNATBIND
1290 -- Remember location of previous Partition_Elaboration_Policy pragma. This
1291 -- is used for inconsistency error messages. A value of System_Location is
1292 -- used if the policy is set in package System.
1294 Persistent_BSS_Mode : Boolean := False;
1295 -- GNAT
1296 -- True if a Persistent_BSS configuration pragma is in effect, causing
1297 -- potentially persistent data to be placed in the persistent_bss section.
1299 Pessimistic_Elab_Order : Boolean := False;
1300 -- GNATBIND
1301 -- True if pessimistic elaboration order is to be chosen (-p switch set)
1303 Prefix_Exception_Messages : Boolean := False;
1304 -- GNAT
1305 -- Set True to prefix exception messages with entity-name:
1307 Preprocessing_Data_File : String_Ptr := null;
1308 -- GNAT
1309 -- Set by switch -gnatep=. The file name of the preprocessing data file.
1311 Preprocessing_Symbol_Defs : String_List_Access := new String_List (1 .. 4);
1312 -- An extensible array to temporarily stores symbol definitions specified
1313 -- on the command line with -gnateD switches. The value 4 is an arbitrary
1314 -- starting point, if more space is needed it is allocated as required.
1316 Preprocessing_Symbol_Last : Natural := 0;
1317 -- Index of last symbol definition in array Symbol_Definitions
1319 Print_Generated_Code : Boolean := False;
1320 -- GNAT
1321 -- Set to True to enable output of generated code in source form. This
1322 -- flag is set by the -gnatG switch.
1324 Print_Standard : Boolean := False;
1325 -- GNAT
1326 -- Set to true to enable printing of package standard in source form.
1327 -- This flag is set by the -gnatS switch
1329 type Usage is (Unknown, Not_In_Use, In_Use);
1330 Project_File_In_Use : Usage := Unknown;
1331 -- GNAT
1332 -- Indicates if a project file is used or not. Set to In_Use by the first
1333 -- SFNP pragma.
1335 Quantity_Of_Default_Size_Sec_Stacks : Int := -1;
1336 -- GNATBIND
1337 -- The number of default sized secondary stacks that the binder should
1338 -- generate. Allows ZFP users to have the binder generate extra stacks if
1339 -- needed to support multithreaded applications. A value of -1 indicates
1340 -- that no size was set by the binder.
1342 Queuing_Policy : Character := ' ';
1343 -- GNAT, GNATBIND
1344 -- Set to ' ' for the default case (no queuing policy specified). Reset to
1345 -- first character (uppercase) of locking policy name if a valid
1346 -- Queuing_Policy pragma is encountered.
1348 Queuing_Policy_Sloc : Source_Ptr := No_Location;
1349 -- GNAT, GNATBIND
1350 -- Remember location of previous Queuing_Policy pragma. This is used for
1351 -- inconsistency error messages. A value of System_Location is used if the
1352 -- policy is set in package System.
1354 Quiet_Output : Boolean := False;
1355 -- GNATMAKE, GNATCLEAN, GPRBUILD, GPRCLEAN
1356 -- Set to True if the tool should not have any output if there are no
1357 -- errors or warnings.
1359 Overriding_Renamings : Boolean := False;
1360 -- GNAT
1361 -- Set to True to enable compatibility mode with Rational compiler, and
1362 -- to accept renamings of implicit operations in their own scope.
1364 Relaxed_Elaboration_Checks : Boolean := False;
1365 -- GNAT
1366 -- Set to True to ignore certain elaboration scenarios, thus making the
1367 -- current ABE mechanism more permissive. This behavior is applicable to
1368 -- both the default and the legacy ABE models. Modified by use of -gnatJ.
1370 Relaxed_RM_Semantics : Boolean := False;
1371 -- GNAT
1372 -- Set to True to ignore some Ada semantic error to help parse legacy Ada
1373 -- code for use in e.g. static analysis (such as CodePeer). This deals
1374 -- with cases where other compilers allow illegal constructs. Tools such as
1375 -- CodePeer are interested in analyzing code rather than enforcing legality
1376 -- rules, so as long as these illegal constructs end up with code that can
1377 -- be handled by the tool in question, there is no reason to reject the
1378 -- code that is considered correct by the other compiler.
1380 Replace_In_Comments : Boolean := False;
1381 -- GNATPREP
1382 -- Set to True if -C switch used.
1384 RTS_Lib_Path_Name : String_Ptr := null;
1385 RTS_Src_Path_Name : String_Ptr := null;
1386 -- GNAT
1387 -- Set to the "adalib" and "adainclude" directories of the run time
1388 -- specified by --RTS=.
1390 RTS_Switch : Boolean := False;
1391 -- GNAT, GNATMAKE, GNATBIND, GNATLS, GNATFIND, GNATXREF
1392 -- Set to True when the --RTS switch is set
1394 Run_Path_Option : Boolean := True;
1395 -- GNATMAKE, GNATLINK
1396 -- Set to False when no run_path_option should be issued to the linker
1398 Search_Directory_Present : Boolean := False;
1399 -- GNAT
1400 -- Set to True when argument is -I. Reset to False when next argument, a
1401 -- search directory path is taken into account. Note that this is quite
1402 -- different from other switches in this section in that it is only set in
1403 -- a transitory manner as a result of scanning a -I switch with no file
1404 -- name, and if set, is an indication that the next argument is to be
1405 -- treated as a file name.
1407 Sec_Stack_Used : Boolean := False;
1408 -- GNAT, GBATBIND
1409 -- Set True if generated code uses the System.Secondary_Stack package. For
1410 -- the binder, set if any unit uses the secondary stack package.
1412 Setup_Projects : Boolean := False;
1413 -- GNAT DRIVER
1414 -- Set to True for GNAT SETUP: the Project Manager creates nonexistent
1415 -- object, library, and exec directories.
1417 Shared_Libgnat : Boolean;
1418 -- GNATBIND
1419 -- Set to True if a shared libgnat is requested by using the -shared option
1420 -- for GNATBIND and to False when using the -static option. The value of
1421 -- this flag is set by Gnatbind.Scan_Bind_Arg.
1423 Short_Circuit_And_Or : Boolean := False;
1424 -- GNAT
1425 -- Set True if a pragma Short_Circuit_And_Or applies to the current unit.
1427 type SPARK_Mode_Type is (None, Off, On);
1428 -- Possible legal modes that can be set by aspect/pragma SPARK_Mode, as
1429 -- well as the value None, which indicates no such pragma/aspect applies.
1431 SPARK_Mode : SPARK_Mode_Type := None;
1432 -- GNAT
1433 -- Current SPARK mode setting.
1435 SPARK_Mode_Pragma : Node_Id := Empty;
1436 -- GNAT
1437 -- If the current SPARK_Mode (above) was set by a pragma, this records
1438 -- the pragma that set this mode.
1440 SPARK_Switches_File_Name : String_Ptr := null;
1441 -- GNAT
1442 -- Set to non-null file name by use of the -gnates switch to specify
1443 -- SPARK (gnat2why) specific switches in the given file name.
1445 Special_Exception_Package_Used : Boolean := False;
1446 -- GNAT
1447 -- Set to True if either of the unit GNAT.Most_Recent_Exception or
1448 -- GNAT.Exception_Traces is with'ed. Used to inhibit transformation of
1449 -- local raise statements into gotos in the presence of either package.
1451 Sprint_Line_Limit : Nat := 72;
1452 -- GNAT
1453 -- Limit values for chopping long lines in Cprint/Sprint output, can be
1454 -- reset by use of NNN parameter with -gnatG or -gnatD switches.
1456 Stack_Checking_Enabled : Boolean := False;
1457 -- GNAT
1458 -- Set to indicate if stack checking is enabled for the compilation. This
1459 -- is set directly from the value in the gcc back end in the body of the
1460 -- gcc version of back_end.adb.
1462 Style_Check : Boolean := False;
1463 -- GNAT
1464 -- Set True to perform style checks. Activates checks carried out in
1465 -- package Style (see body of this package for details of checks). This
1466 -- flag is set True by use of either the -gnatg or -gnaty switches, or
1467 -- by the Style_Check pragma.
1469 Style_Check_Main : Boolean := False;
1470 -- GNAT
1471 -- Set True if Style_Check was set for the main unit. This is used to
1472 -- enable style checks for units in the main extended source that get
1473 -- with'ed indirectly. It is set True by use of either the -gnatg or
1474 -- -gnaty switches, but not by use of the Style_Checks pragma.
1476 Suppress_Control_Flow_Optimizations : Boolean := False;
1477 -- GNAT
1478 -- Set by -fpreserve-control-flow. Suppresses control flow optimizations
1479 -- that interfere with coverage analysis based on the object code.
1481 System_Extend_Pragma_Arg : Node_Id := Empty;
1482 -- GNAT
1483 -- Set non-empty if and only if a correct Extend_System pragma was present
1484 -- in which case it points to the argument of the pragma, and the name can
1485 -- be located as Chars (Expression (System_Extend_Pragma_Arg)).
1487 System_Extend_Unit : Node_Id := Empty;
1488 -- GNAT
1489 -- This is set to Empty if GNAT_Mode is set, since pragma Extend_System
1490 -- is never appropriate in GNAT_Mode (and causes troubles, including
1491 -- bogus circularities, if we try to compile the run-time library with
1492 -- a System extension). If GNAT_Mode is not set, then System_Extend_Unit
1493 -- is a copy of the value set in System_Extend_Pragma_Arg.
1495 Subunits_Missing : Boolean := False;
1496 -- GNAT
1497 -- This flag is set true if missing subunits are detected with code
1498 -- generation active. This causes code generation to be skipped.
1500 Suppress_Checks : Boolean := False;
1501 -- GNAT
1502 -- Set to True if -gnatp (suppress all checks) switch present.
1504 -- WARNING: There is a matching C declaration of this variable in fe.h
1506 Suppress_Options : Suppress_Record;
1507 -- GNAT
1508 -- Indicates outer level setting of check suppression. This initializes
1509 -- the settings of the outer scope level in any unit compiled. This is
1510 -- initialized by Osint.Initialize, and further initialized by the
1511 -- Adjust_Global_Switches flag in Gnat1drv.
1513 Table_Factor : Int := 1;
1514 -- GNAT
1515 -- Factor by which all initial table sizes set in Alloc are multiplied.
1516 -- Used in Table to calculate initial table sizes. The initial table size
1517 -- is the value in Alloc, used as the Table_Initial parameter value,
1518 -- multiplied by the factor given here. The default value is used if no
1519 -- -gnatT switch appears.
1521 Tagged_Type_Expansion : Boolean := True;
1522 -- GNAT
1523 -- Set True if tagged types and interfaces should be expanded by the
1524 -- front-end. If False, the original tree is left unexpanded for tagged
1525 -- types and dispatching calls, assuming the underlying target supports it.
1527 Target_Dependent_Info_Read_Name : String_Ptr := null;
1528 -- GNAT
1529 -- Set non-null to override the normal processing in Get_Targ and set the
1530 -- necessary information by reading the target dependent information file
1531 -- whose name is given here (see packages Get_Targ and Set_Targ for full
1532 -- details). Set to non-null file name by use of the -gnateT switch.
1534 Target_Dependent_Info_Write_Name : String_Ptr := null;
1535 -- GNAT
1536 -- Set non-null to enable a call to Set_Targ.Write_Target_Dependent_Info
1537 -- which writes a target independent information file (see packages
1538 -- Get_Targ and Set_Targ for full details) using the name given by
1539 -- this switch. Set to non-null file name by use of the -gnatet switch.
1541 type Origin_Of_Target is (Unknown, Default, Specified);
1543 Target_Origin : Origin_Of_Target := Unknown;
1544 -- GPRBUILD
1545 -- Indicates the origin of attribute Target in project files
1547 Target_Value : String_Access := null;
1548 -- GPRBUILD
1549 -- Indicates the value of attribute Target in project files
1551 Task_Dispatching_Policy : Character := ' ';
1552 -- GNAT, GNATBIND
1553 -- Set to ' ' for the default case (no task dispatching policy specified).
1554 -- Reset to first character (uppercase) of task dispatching policy name
1555 -- if a valid Task_Dispatching_Policy pragma is encountered.
1557 Task_Dispatching_Policy_Sloc : Source_Ptr := No_Location;
1558 -- GNAT, GNATBIND
1559 -- Remember location of previous Task_Dispatching_Policy pragma. This is
1560 -- used for inconsistency error messages. A value of System_Location is
1561 -- used if the policy is set in package System.
1563 Tasking_Used : Boolean := False;
1564 -- Set True if any tasking construct is encountered. Used to activate the
1565 -- output of the Q, L and T lines in ALI files.
1567 Time_Slice_Set : Boolean := False;
1568 -- GNATBIND
1569 -- Set True if a pragma Time_Slice is processed in the main unit, or
1570 -- if the -gnatTnn switch is present to set a time slice value.
1572 Time_Slice_Value : Nat;
1573 -- GNATBIND
1574 -- Time slice value. Valid only if Time_Slice_Set is True, i.e. if
1575 -- Time_Slice pragma has been processed. Set to the time slice value in
1576 -- microseconds. Negative values are stored as zero, and the value is not
1577 -- larger than 1_000_000_000 (1000 seconds). Values larger than this are
1578 -- reset to this maximum. This can also be set with the -gnatTnn switch.
1580 Tolerate_Consistency_Errors : Boolean := False;
1581 -- GNATBIND
1582 -- Tolerate time stamp and other consistency errors. If this flag is set to
1583 -- True (-t), then inconsistencies result in warnings rather than errors.
1585 Transform_Function_Array : Boolean := False;
1586 -- GNAT
1587 -- If this switch is set True, then functions returning constrained arrays
1588 -- are transformed into a procedure with an out parameter, and all calls
1589 -- are updated accordingly.
1591 Treat_Categorization_Errors_As_Warnings : Boolean := False;
1592 -- Normally categorization errors are true illegalities. If this switch
1593 -- is set, then such errors result in warning messages rather than error
1594 -- messages. Set True by -gnateP (P for Pure/Preelaborate). Also set in
1595 -- Relaxed_RM_Semantics mode since some old Ada 83 compilers treated
1596 -- pragma Preelaborate differently.
1598 Treat_Restrictions_As_Warnings : Boolean := False;
1599 -- GNAT
1600 -- Set True to treat pragma Restrictions as Restriction_Warnings. Set by
1601 -- -gnatr switch.
1603 Try_Semantics : Boolean := False;
1604 -- GNAT
1605 -- Flag set to force attempt at semantic analysis, even if parser errors
1606 -- occur. This will probably cause blowups at this stage in the game. On
1607 -- the other hand, most such blowups will be caught cleanly and simply
1608 -- say compilation abandoned. This flag is set True by -gnatq or -gnatQ.
1610 Unchecked_Shared_Lib_Imports : Boolean := False;
1611 -- GPRBUILD
1612 -- Set to True when shared library projects are allowed to import projects
1613 -- that are not shared library projects. Set on by use of the switch
1614 -- --unchecked-shared-lib-imports.
1616 Undefined_Symbols_Are_False : Boolean := False;
1617 -- GNAT, GNATPREP
1618 -- Set to True by switch -u of gnatprep or -u in the preprocessing data
1619 -- file for the compiler. Indicates that while preprocessing sources,
1620 -- symbols that are not defined have the value FALSE.
1622 Uneval_Old : Character := 'E';
1623 -- GNAT
1624 -- Set to 'E'/'W'/'A' for use of Error/Warn/Allow in a valid pragma
1625 -- Unevaluated_Use_Of_Old. Default in the absence of the pragma is 'E'
1626 -- for the RM default behavior of giving an error.
1628 Unique_Error_Tag : Boolean := Tag_Errors;
1629 -- GNAT
1630 -- Indicates if error messages are to be prefixed by the string error:
1631 -- Initialized from Tag_Errors, can be forced on with the -gnatU switch and
1632 -- disabled with -gnatd_U.
1634 Unnest_Subprogram_Mode : Boolean := False;
1635 -- If true, activates the circuitry for unnesting subprograms (see the spec
1636 -- of Exp_Unst for full details). Currently set only by use of -gnatd.1.
1638 Unreserve_All_Interrupts : Boolean := False;
1639 -- GNAT, GNATBIND
1640 -- Normally set False, set True if a valid Unreserve_All_Interrupts pragma
1641 -- appears anywhere in the main unit for GNAT, or if any ALI file has the
1642 -- corresponding attribute set in GNATBIND.
1644 Upper_Half_Encoding : Boolean := False;
1645 -- GNAT, GNATBIND
1646 -- Normally set False, indicating that upper half ISO 8859-1 characters are
1647 -- used in the normal way to represent themselves. If the wide character
1648 -- encoding method uses the upper bit for this encoding, then this flag is
1649 -- set True, and upper half characters in the source indicate the start of
1650 -- a wide character sequence. Set by -gnatW or -W switches.
1652 Use_Include_Path_File : Boolean := False;
1653 -- GNATMAKE, GPRBUILD
1654 -- When True, create a source search path file, even when a mapping file
1655 -- is used.
1657 Usage_Requested : Boolean := False;
1658 -- GNAT, GNATBIND, GNATMAKE
1659 -- Set to True if -h (-gnath for the compiler) switch encountered
1660 -- requesting usage information
1662 Use_Pragma_Linker_Constructor : Boolean := False;
1663 -- GNATBIND
1664 -- True if pragma Linker_Constructor applies to adainit
1666 Use_VADS_Size : Boolean := False;
1667 -- GNAT
1668 -- Set to True if a valid pragma Use_VADS_Size is processed
1670 Validity_Checks_On : Boolean := True;
1671 -- GNAT
1672 -- This flag determines if validity checking is on or off. The initial
1673 -- state is on, and the required default validity checks are active. The
1674 -- actual set of checks that is performed if Validity_Checks_On is set is
1675 -- defined by the switches in package Validsw. The Validity_Checks_On flag
1676 -- is controlled by pragma Validity_Checks (On | Off), and also some
1677 -- generated compiler code (typically code that has to do with validity
1678 -- check generation) is compiled with this flag set to False. This flag is
1679 -- set to False by the -gnatp switch.
1681 Verbose_Mode : Boolean := False;
1682 -- GNAT, GNATBIND, GNATMAKE, GNATLINK, GNATLS, GNATNAME, GNATCLEAN,
1683 -- GPRBUILD, GPRCLEAN
1684 -- Set to True to get verbose mode (full error message text and location
1685 -- information sent to standard output, also header, copyright and summary)
1687 type Verbosity_Level_Type is (None, Low, Medium, High);
1688 pragma Ordered (Verbosity_Level_Type);
1689 Verbosity_Level : Verbosity_Level_Type := High;
1690 -- GNATMAKE
1691 -- Modified by gnatmake switches -v, -vl, -vm, -vh. Indicates
1692 -- the level of verbosity of informational messages:
1694 -- In Low Verbosity, the reasons why a source is recompiled, the name
1695 -- of the executable and the reason it must be rebuilt is output.
1697 -- In Medium Verbosity, additional lines are output for each ALI file
1698 -- that is checked.
1700 -- In High Verbosity, additional lines are output when the ALI file
1701 -- is part of an Ada library, is read-only or is part of the runtime.
1703 Warn_On_Ada_2005_Compatibility : Boolean := True;
1704 -- GNAT
1705 -- Set to True to generate all warnings on Ada 2005 compatibility issues,
1706 -- including warnings on Ada 2005 obsolescent features used in Ada 2005
1707 -- mode. Set by default, modified by use of -gnatwy/Y.
1709 Warn_On_Ada_2012_Compatibility : Boolean := True;
1710 -- GNAT
1711 -- Set to True to generate all warnings on Ada 2012 compatibility issues,
1712 -- including warnings on Ada 2012 obsolescent features used in Ada 2012
1713 -- mode. Modified by use of -gnatwy/Y.
1715 Warn_On_Ada_2022_Compatibility : Boolean := True;
1716 -- GNAT
1717 -- Set to True to generate all warnings on Ada 2022 compatibility issues,
1718 -- including warnings on Ada 2022 obsolescent features used in Ada 2022
1719 -- mode.
1721 Warn_On_All_Unread_Out_Parameters : Boolean := False;
1722 -- GNAT
1723 -- Set to True to generate warnings in all cases where a variable is
1724 -- modified by being passed as to an OUT formal, but the resulting value is
1725 -- never read. The default is that this warning is suppressed. Modified
1726 -- by use of gnatw.o/.O.
1728 Warn_On_Assertion_Failure : Boolean := True;
1729 -- GNAT
1730 -- Set to True to activate warnings on assertions that can be determined
1731 -- at compile time will always fail. Modified by use of -gnatw.a/.A.
1733 Warn_On_Assumed_Low_Bound : Boolean := True;
1734 -- GNAT
1735 -- Set to True to activate warnings for string parameters that are indexed
1736 -- with literals or S'Length, presumably assuming a lower bound of one.
1737 -- Modified by use of -gnatww/W.
1739 Warn_On_Atomic_Synchronization : Boolean := False;
1740 -- GNAT
1741 -- Set to True to generate information messages for atomic synchronization.
1742 -- Modified by use of -gnatw.n/.N.
1744 Warn_On_Bad_Fixed_Value : Boolean := False;
1745 -- GNAT
1746 -- Set to True to generate warnings for static fixed-point expression
1747 -- values that are not an exact multiple of the small value of the type.
1748 -- Odd by default, modified by use of -gnatwb/B.
1750 Warn_On_Biased_Representation : Boolean := True;
1751 -- GNAT
1752 -- Set to True to generate warnings for size clauses, component clauses
1753 -- and component_size clauses that force biased representation. Modified
1754 -- by use of -gnatw.b/.B.
1756 Warn_On_Constant : Boolean := False;
1757 -- GNAT
1758 -- Set to True to generate warnings for variables that could be declared
1759 -- as constants. Modified by use of -gnatwk/K.
1761 Warn_On_Deleted_Code : Boolean := False;
1762 -- GNAT
1763 -- Set to True to generate warnings for code deleted by the front end
1764 -- for conditional statements whose outcome is known at compile time.
1765 -- Modified by use of -gnatwt/T.
1767 Warn_On_Dereference : Boolean := False;
1768 -- GNAT
1769 -- Set to True to generate warnings for implicit dereferences for array
1770 -- indexing and record component access. Modified by use of -gnatwd/D.
1772 Warn_On_Export_Import : Boolean := True;
1773 -- GNAT
1774 -- Set to True to generate warnings for suspicious use of export or
1775 -- import pragmas. Modified by use of -gnatwx/X.
1777 Warn_On_Elab_Access : Boolean := False;
1778 -- GNAT
1779 -- Set to True to generate warnings for P'Access in the case where
1780 -- subprogram P is in the same package as the P'Access, and the P'Access is
1781 -- evaluated at package elaboration time, and occurs before the body of P
1782 -- has been elaborated.
1784 Warn_On_Hiding : Boolean := False;
1785 -- GNAT
1786 -- Set to True to generate warnings if a declared entity hides another
1787 -- entity. The default is that this warning is suppressed. Modified by
1788 -- use of -gnatwh/H.
1790 Warn_On_Modified_Unread : Boolean := False;
1791 -- GNAT
1792 -- Set to True to generate warnings if a variable is assigned but is never
1793 -- read. Also controls warnings for similar cases involving out parameters,
1794 -- but only if there is only one out parameter for the procedure involved.
1795 -- The default is that this warning is suppressed, modified by use of
1796 -- -gnatwm/M.
1798 Warn_On_No_Value_Assigned : Boolean := True;
1799 -- GNAT
1800 -- Set to True to generate warnings if no value is ever assigned to a
1801 -- variable that is at least partially uninitialized. Set to false to
1802 -- suppress such warnings. The default is that such warnings are enabled.
1803 -- Modified by use of -gnatwv/V.
1805 Warn_On_Non_Local_Exception : Boolean := False;
1806 -- GNAT
1807 -- Set to True to generate warnings for non-local exception raises and also
1808 -- handlers that can never handle a local raise. This warning is only ever
1809 -- generated if pragma Restrictions (No_Exception_Propagation) is set. The
1810 -- default is not to generate the warnings except that if the source has
1811 -- at least one exception handler, and this restriction is set, and the
1812 -- warning was not explicitly turned off, then it is turned on by default.
1813 -- Modified by use of -gnatw.x/.X.
1815 No_Warn_On_Non_Local_Exception : Boolean := False;
1816 -- GNAT
1817 -- This is set to True if the above warning is explicitly suppressed. We
1818 -- use this to avoid turning it on by default when No_Exception_Propagation
1819 -- restriction is set and an exception handler is present.
1821 Warn_On_Object_Renames_Function : Boolean := False;
1822 -- GNAT
1823 -- Set to True to generate warnings when a function result is renamed as
1824 -- an object. The default is that this warning is disabled. Modified by
1825 -- use of -gnatw.r/.R.
1827 Warn_On_Obsolescent_Feature : Boolean := False;
1828 -- GNAT
1829 -- Set to True to generate warnings on use of any feature in Annex or if a
1830 -- subprogram is called for which a pragma Obsolescent applies. Modified
1831 -- by use of -gnatwj/J.
1833 Warn_On_Overlap : Boolean := False;
1834 -- GNAT
1835 -- Set to True to generate warnings when a writable actual overlaps with
1836 -- another actual in a subprogram call. This applies only in modes before
1837 -- Ada 2012. Starting with Ada 2012, such overlaps are illegal.
1838 -- Modified by use of -gnatw.i/.I.
1840 Warn_On_Questionable_Missing_Parens : Boolean := True;
1841 -- GNAT
1842 -- Set to True to generate warnings for cases where parentheses are missing
1843 -- and the usage is questionable, because the intent is unclear. On by
1844 -- default, modified by use of -gnatwq/Q.
1846 Warn_On_Parameter_Order : Boolean := False;
1847 -- GNAT
1848 -- Set to True to generate warnings for cases where the argument list for
1849 -- a call is a sequence of identifiers that match the formal identifiers,
1850 -- but are in the wrong order.
1852 Warn_On_Redundant_Constructs : Boolean := False;
1853 -- GNAT
1854 -- Set to True to generate warnings for redundant constructs (e.g. useless
1855 -- assignments/conversions). The default is that this warning is disabled.
1856 -- Modified by use of -gnatwr/R.
1858 Warn_On_Reverse_Bit_Order : Boolean := True;
1859 -- GNAT
1860 -- Set to True to generate warning (informational) messages for component
1861 -- clauses that are affected by non-standard bit-order. The default is
1862 -- that this warning is enabled. Modified by -gnatw.v/.V.
1864 Warn_On_Suspicious_Contract : Boolean := True;
1865 -- GNAT
1866 -- Set to True to generate warnings for suspicious contracts expressed as
1867 -- pragmas or aspects precondition and postcondition, as well as other
1868 -- suspicious cases of expressions typically found in contracts like
1869 -- quantified expressions and uses of Update attribute. The default is that
1870 -- this warning is enabled. Modified by use of -gnatw.t/.T.
1872 Warn_On_Suspicious_Modulus_Value : Boolean := True;
1873 -- GNAT
1874 -- Set to True to generate warnings for suspicious modulus values, as well
1875 -- as negative literals of a modular type. The default is that this warning
1876 -- is enabled. Modified by -gnatw.m/.M.
1878 Warn_On_Unchecked_Conversion : Boolean := True;
1879 -- GNAT
1880 -- Set to True to generate warnings for unchecked conversions that may have
1881 -- non-portable semantics (e.g. because sizes of types differ). Modified
1882 -- by use of -gnatwz/Z.
1884 Warn_On_Unordered_Enumeration_Type : Boolean := False;
1885 -- GNAT
1886 -- Set to True to generate warnings for inappropriate uses (comparisons
1887 -- and explicit ranges) on unordered enumeration types (which includes
1888 -- all enumeration types for which pragma Ordered is not given). The
1889 -- default is that this warning is disabled. Modified by -gnat.u/.U.
1891 Warn_On_Unrecognized_Pragma : Boolean := True;
1892 -- GNAT
1893 -- Set to True to generate warnings for unrecognized pragmas. The default
1894 -- is that this warning is enabled. Modified by use of -gnatwg/G.
1896 Warn_On_Unrepped_Components : Boolean := False;
1897 -- GNAT
1898 -- Set to True to generate warnings for the case of components of record
1899 -- which have a record representation clause but this component does not
1900 -- have a component clause. Modified by use of -gnatw.c/.C.
1902 Warn_On_Warnings_Off : Boolean := False;
1903 -- GNAT
1904 -- Set to True to generate warnings for use of Pragma Warnings (Off, ent),
1905 -- where either the pragma is never used, or it could be replaced by a
1906 -- pragma Unmodified or Unreferenced. Also generates warnings for pragma
1907 -- Warning (Off, string) which either has no matching pragma Warning On,
1908 -- or where no warning has been suppressed by the use of the pragma.
1909 -- Modified by use of -gnatw.w/.W.
1911 type Warning_Mode_Type is
1912 (Suppress, Normal, Treat_As_Error, Treat_Run_Time_Warnings_As_Errors);
1913 Warning_Mode : Warning_Mode_Type := Normal;
1914 -- GNAT, GNATBIND
1915 -- Controls treatment of warning messages. If set to Suppress, warning
1916 -- messages are not generated at all. In Normal mode, they are generated
1917 -- but do not count as errors. In Treat_As_Error mode, warning messages are
1918 -- generated and treated as errors, except for warnings emitted by the
1919 -- Compile_Time_Warning pragma. In Treat_Run_Time_Warnings_As_Errors,
1920 -- warning messages regarding errors raised at run time are treated as
1921 -- errors. Note that Warning_Mode = Suppress causes pragma Warnings to be
1922 -- ignored (except for legality checks), unless we are in GNATprove_Mode,
1923 -- which requires pragma Warnings to be stored for the formal verification
1924 -- backend.
1926 Wide_Character_Encoding_Method : WC_Encoding_Method := WCEM_Brackets;
1927 -- GNAT, GNATBIND
1928 -- Method used for encoding wide characters in the source program. See
1929 -- description of type in unit System.WCh_Con for a list of the methods
1930 -- that are currently supported. Note that brackets notation is always
1931 -- recognized in source programs regardless of the setting of this
1932 -- variable. The default setting causes only the brackets notation to be
1933 -- recognized. If this is the main unit, this setting also controls the
1934 -- output of the W=? parameter in the ALI file, which is used to provide
1935 -- the default for encoding [Wide_[Wide_]]Text_IO files. For the binder,
1936 -- the value set here overrides this main unit default.
1938 Wide_Character_Encoding_Method_Specified : Boolean := False;
1939 -- GNAT, GNATBIND
1940 -- Set True if the value in Wide_Character_Encoding_Method was set as
1941 -- a result of an explicit -gnatW? or -W? switch. False otherwise.
1943 Xref_Active : Boolean := True;
1944 -- GNAT
1945 -- Set if cross-referencing is enabled (i.e. xref info in ALI files)
1947 Zero_Formatting : Boolean := False;
1948 -- GNATBIND
1949 -- Do no formatting (no title, no leading spaces, no empty lines) in
1950 -- auxiliary outputs (-e, -K, -l, -R).
1952 ----------------------------
1953 -- Configuration Settings --
1954 ----------------------------
1956 -- These are settings that are used to establish the mode at the start of
1957 -- each unit. The values defined below can be affected either by command
1958 -- line switches, or by the use of appropriate configuration pragmas in a
1959 -- configuration pragma file (but NOT by a local use of a configuration
1960 -- pragma in a single file).
1962 Ada_Version_Config : Ada_Version_Type;
1963 -- GNAT
1964 -- This is the value of the configuration switch for the Ada 83 mode, as
1965 -- set by the command line switches -gnat83/95/2005/2012, and possibly
1966 -- modified by the use of configuration pragmas Ada_*. This switch is used
1967 -- to set the initial value for Ada_Version mode at the start of analysis
1968 -- of a unit. Note however that the setting of this flag is ignored for
1969 -- internal and predefined units (which are always compiled in the most up
1970 -- to date version of Ada).
1972 Ada_Version_Pragma_Config : Node_Id;
1973 -- This will be set nonempty if it is set by a configuration pragma
1975 Ada_Version_Explicit_Config : Ada_Version_Type;
1976 -- GNAT
1977 -- This is set in the same manner as Ada_Version_Config. The difference is
1978 -- that the setting of this flag is not ignored for internal and predefined
1979 -- units, which for some purposes do indeed access this value, regardless
1980 -- of the fact that they are compiled the most up to date ada version).
1982 Assertions_Enabled_Config : Boolean;
1983 -- GNAT
1984 -- This is the value of the configuration switch for assertions enabled
1985 -- mode, as possibly set by the command line switch -gnata, and possibly
1986 -- modified by the use of the configuration pragma Assertion_Policy.
1988 Assume_No_Invalid_Values_Config : Boolean;
1989 -- GNAT
1990 -- This is the value of the configuration switch for assuming "no invalid
1991 -- values enabled" mode, as possibly set by the command line switch
1992 -- -gnatB, and possibly modified by the use of the configuration pragma
1993 -- Assume_No_Invalid_Values.
1995 Check_Float_Overflow_Config : Boolean;
1996 -- GNAT
1997 -- Set to True to check that operations on predefined unconstrained float
1998 -- types (e.g. Float, Long_Float) do not overflow and generate infinities
1999 -- or invalid values. Set by the Check_Float_Overflow pragma, or by use
2000 -- of the -gnateF switch.
2002 Check_Policy_List_Config : Node_Id;
2003 -- GNAT
2004 -- This points to the list of N_Pragma nodes for Check_Policy pragmas
2005 -- that are linked through the Next_Pragma fields, with the list being
2006 -- terminated by Empty. The order is most recently processed first. This
2007 -- list includes only those pragmas in configuration pragma files.
2009 Default_Pool_Config : Node_Id := Empty;
2010 -- GNAT
2011 -- Same as Default_Pool above, except this is only for Default_Storage_Pool
2012 -- pragmas that are configuration pragmas.
2014 Default_SSO_Config : Character := ' ';
2015 -- GNAT
2016 -- Set if a pragma Default_Scalar_Storage_Order appears as a configuration
2017 -- pragma. A value of ' ' means that no pragma was given, otherwise the
2018 -- value is 'H' for High_Order_First or 'L' for Low_Order_First.
2020 Dynamic_Elaboration_Checks_Config : Boolean := False;
2021 -- GNAT
2022 -- Set True for dynamic elaboration checking mode, as set by the -gnatE
2023 -- switch or by the use of pragma Elaboration_Checking (Dynamic).
2025 Exception_Locations_Suppressed_Config : Boolean := False;
2026 -- GNAT
2027 -- Set True by use of the configuration pragma Suppress_Exception_Messages
2029 External_Name_Exp_Casing_Config : External_Casing_Type;
2030 -- GNAT
2031 -- This is the value of the configuration switch that controls casing of
2032 -- external symbols for which an explicit external name is given. It can be
2033 -- set to Uppercase by the command line switch -gnatF, and further modified
2034 -- by the use of the configuration pragma External_Name_Casing in the
2035 -- gnat.adc file. This flag is used to set the initial value for
2036 -- External_Name_Exp_Casing at the start of analyzing each unit. Note
2037 -- however that the setting of this flag is ignored for internal and
2038 -- predefined units (which are always compiled with As_Is mode).
2040 External_Name_Imp_Casing_Config : External_Casing_Type;
2041 -- GNAT
2042 -- This is the value of the configuration switch that controls casing of
2043 -- external symbols where the external name is implicitly given. It can be
2044 -- set to Uppercase by the command line switch -gnatF, and further modified
2045 -- by the use of the configuration pragma External_Name_Casing in the
2046 -- gnat.adc file. This flag is used to set the initial value for
2047 -- External_Name_Imp_Casing at the start of analyzing each unit. Note
2048 -- however that the setting of this flag is ignored for internal and
2049 -- predefined units (which are always compiled with Lowercase mode).
2051 Fast_Math_Config : Boolean;
2052 -- GNAT
2053 -- This is the value of the configuration switch that controls Fast_Math
2054 -- mode, as set by a Fast_Math pragma in configuration pragmas. It is
2055 -- used to set the initial value of Fast_Math at the start of each new
2056 -- compilation unit.
2058 Initialize_Scalars_Config : Boolean;
2059 -- GNAT
2060 -- This is the value of the configuration switch that is set by the
2061 -- pragma Initialize_Scalars when it appears in the gnat.adc file.
2062 -- This switch is not set when the pragma appears ahead of a given
2063 -- unit, so it does not affect the compilation of other units.
2065 No_Component_Reordering_Config : Boolean;
2066 -- GNAT
2067 -- This is the value of the configuration switch that is set by the
2068 -- pragma No_Component_Reordering when it appears in the gnat.adc file.
2069 -- This flag is used to set the initial value of No_Component_Reordering
2070 -- at the start of each compilation unit, except that it is always set
2071 -- False for predefined units.
2073 No_Exit_Message : Boolean := False;
2074 -- GNATMAKE, GPRBUILD
2075 -- Set with switch --no-exit-message. When True, if there are compilation
2076 -- failures, the builder does not issue an exit error message.
2078 Optimize_Alignment_Config : Character;
2079 -- GNAT
2080 -- This is the value of the configuration switch that controls the
2081 -- alignment optimization mode, as set by an Optimize_Alignment pragma.
2082 -- It is used to set the initial value of Optimize_Alignment at the start
2083 -- of each new compilation unit, except that it is always set to 'O' (off)
2084 -- for internal units.
2086 Persistent_BSS_Mode_Config : Boolean;
2087 -- GNAT
2088 -- This is the value of the configuration switch that controls whether
2089 -- potentially persistent data is to be placed in the persistent_bss
2090 -- section. It can be set True by use of the pragma Persistent_BSS.
2091 -- This flag is used to set the initial value of Persistent_BSS_Mode
2092 -- at the start of each compilation unit, except that it is always
2093 -- set False for predefined units.
2095 Prefix_Exception_Messages_Config : Boolean;
2096 -- The setting of Prefix_Exception_Messages from configuration pragmas
2098 SPARK_Mode_Config : SPARK_Mode_Type := None;
2099 -- GNAT
2100 -- The setting of SPARK_Mode from configuration pragmas
2102 SPARK_Mode_Pragma_Config : Node_Id := Empty;
2103 -- If a SPARK_Mode pragma appeared in the configuration pragmas (setting
2104 -- SPARK_Mode_Config appropriately), then this points to the N_Pragma node.
2106 Uneval_Old_Config : Character;
2107 -- GNAT
2108 -- The setting of Uneval_Old from configuration pragmas
2110 Use_VADS_Size_Config : Boolean;
2111 -- GNAT
2112 -- This is the value of the configuration switch that controls the use of
2113 -- VADS_Size instead of Size wherever the attribute Size is used. It can
2114 -- be set True by the use of the pragma Use_VADS_Size in the gnat.adc file.
2115 -- This flag is used to set the initial value for Use_VADS_Size at the
2116 -- start of analyzing each unit. Note however that the setting of this flag
2117 -- is ignored for internal and predefined units (which are always compiled
2118 -- with the standard Size semantics).
2120 type Config_Switches_Type is private;
2121 -- Type used to save values of the switches set from Config values
2123 procedure Register_Config_Switches;
2124 -- This procedure is called after processing the gnat.adc file and other
2125 -- configuration pragma files to record the values of the Config switches,
2126 -- as possibly modified by the use of command line switches and pragmas
2127 -- appearing in these files.
2129 procedure Restore_Config_Switches (Save : Config_Switches_Type);
2130 -- This procedure restores a set of switch values previously saved by a
2131 -- call to Save_Config_Switches.
2133 function Save_Config_Switches return Config_Switches_Type;
2134 -- Return the current state of all configuration-related attributes
2136 procedure Set_Config_Switches
2137 (Internal_Unit : Boolean;
2138 Main_Unit : Boolean);
2139 -- This procedure sets the switches to the appropriate initial values. The
2140 -- parameter Internal_Unit is True for an internal or predefined unit, and
2141 -- affects the way the switches are set (see above). Main_Unit is true if
2142 -- switches are being set for the main unit or for the spec of the main
2143 -- unit. This affects setting of the assert/debug pragma switches, which
2144 -- are normally set false by default for an internal unit, except when the
2145 -- internal unit is the main unit, in which case we use the command line
2146 -- settings.
2148 ------------------------
2149 -- Other Global Flags --
2150 ------------------------
2152 Building_Static_Dispatch_Tables : Boolean := True;
2153 -- This flag indicates if the backend supports generation of statically
2154 -- allocated dispatch tables. If it is True, then the front end will
2155 -- generate static aggregates for dispatch tables that contain forward
2156 -- references to addresses of subprograms not seen yet, and the back end
2157 -- must be prepared to handle this case. If it is False, then the front end
2158 -- generates assignments to initialize the dispatch table, and there are
2159 -- no such forward references. By default we build statically allocated
2160 -- dispatch tables for all library-level tagged types in all platforms.
2161 -- This behavior can be disabled using switch -gnatd.t which will set
2162 -- this flag to False and revert to the previous dynamic behavior.
2164 Expander_Active : Boolean := False;
2165 -- A flag that indicates if expansion is active (True) or deactivated
2166 -- (False). When expansion is deactivated all calls to expander routines
2167 -- have no effect. Note that the initial setting of False is merely to
2168 -- prevent saving of an undefined value for an initial call to the
2169 -- Expander_Mode_Save_And_Set procedure. For more information on the use of
2170 -- this flag, see package Expander. Indeed this flag might more logically
2171 -- be in the spec of Expander, but it is referenced by Errout, and it
2172 -- really seems wrong for Errout to depend on Expander.
2174 Tagged_Seen : Boolean := False;
2175 -- Set True by the parser if the "tagged" reserved word is seen. This is
2176 -- needed in Exp_Put_Image (see that package for documentation).
2178 -----------------------------------
2179 -- Modes for Formal Verification --
2180 -----------------------------------
2182 GNATprove_Mode : Boolean := False;
2183 -- Specific compiling mode targeting formal verification for those parts
2184 -- of the input code that belong to the SPARK 2014 subset of Ada. Set True
2185 -- by the gnat2why executable or by use of the -gnatd.F debug switch. Note
2186 -- that this is completely separate from the SPARK restriction defined in
2187 -- GNAT to detect violations of a subset of SPARK 2005 rules.
2189 ---------------------------
2190 -- Error/Warning Control --
2191 ---------------------------
2193 -- The following array would more reasonably be located in Err_Vars or
2194 -- Errout, but we put them here to deal with licensing issues (we need
2195 -- this to have the GPL exception licensing, since these variables and
2196 -- subprograms are accessed from units with this licensing).
2198 Warnings_As_Errors : array (1 .. 10_000) of String_Ptr;
2199 -- Table for recording Warning_As_Error pragmas as they are processed. It
2200 -- would be nicer to use Table, but there are circular elaboration problems
2201 -- if we try to do this, and an attempt to find some other appropriately
2202 -- licensed unit to declare this as a Table failed with various elaboration
2203 -- circularities.
2205 Warnings_As_Errors_Count : Natural;
2206 -- GNAT
2207 -- Number of entries stored in Warnings_As_Errors table
2209 Warnings_As_Errors_Count_Config : Natural;
2210 -- GNAT
2211 -- Count of pattern strings stored from Warning_As_Error pragmas
2213 ---------------
2214 -- GNAT_Mode --
2215 ---------------
2217 GNAT_Mode : Boolean := False;
2218 -- GNAT
2219 -- True if compiling in GNAT system mode (-gnatg switch)
2221 -- WARNING: There is a matching C declaration of this variable in fe.h
2223 GNAT_Mode_Config : Boolean := False;
2224 -- GNAT
2225 -- True if -gnatg switch is present. GNAT_Mode may be temporary set to
2226 -- True during the analysis of a system unit, but GNAT_Mode_Config must
2227 -- not change once scanned and set.
2229 -- Setting GNAT mode has the following effects on the language that is
2230 -- accepted. Note that several of the following have the effect of changing
2231 -- an error to a warning. But warnings are usually treated as fatal errors
2232 -- in -gnatg mode, so to actually take advantage of such a change, it is
2233 -- necessary to add an explicit pragma Warnings (Off) in the source and
2234 -- this requires clear documentation of why this is necessary.
2236 -- The identifier character set is set to 'n' (7-bit ASCII)
2238 -- Pragma Extend_System is ignored
2240 -- Warning_Mode is set to Treat_As_Error (-gnatwe)
2242 -- Standard style checks are set (See Set_GNAT_Style_Check_Options)
2244 -- Standard warnings are turned on (see Set_GNAT_Mode_Warnings)
2246 -- The Ada version is set to Ada 2012
2248 -- Task priorities are always allowed to be in the range Any_Priority
2250 -- Overflow checks are suppressed, overflow checking set to strict mode
2252 -- ALI files are always generated for predefined generic packages
2254 -- Obsolescent feature warnings are suppressed
2256 -- Recompilation of children of GNAT, System, Ada, Interfaces is allowed
2258 -- The Scalar_Storage_Order attribute applies to generic types
2260 -- Categorization errors are treated as warnings rather than errors
2262 -- Statements in preelaborated units give warnings rather than errors
2264 -- Private objects are allowed in preelaborated units
2266 -- Non-static constants in preelaborated units give warnings not errors
2268 -- The warning about component size being ignored is suppressed
2270 -- The warning about size clauses being ignored is suppressed
2272 -- Initializing limited types gives a warning rather than an error
2274 -- Copying of limited objects is allowed
2276 -- Returning objects of limited types is allowed
2278 -- Non-static call in preelaborated unit give a warning, not an error
2280 -- Warnings on possible elaboration errors are suppressed
2282 -- Warnings about packing being ignored are suppressed
2284 -- Warnings in internal units are not suppressed (they normally are)
2286 -- The only special comment sequence allowed is --!
2288 --------------------------
2289 -- Private Declarations --
2290 --------------------------
2292 private
2293 -- The following type is used to save and restore settings of switches in
2294 -- Opt that represent the configuration (i.e. result of config pragmas).
2296 -- Note that Ada_Version_Explicit is not included, since this is a sticky
2297 -- flag that once set does not get reset, since the whole idea of this flag
2298 -- is to record the setting for the main unit.
2300 type Config_Switches_Type is record
2301 Ada_Version : Ada_Version_Type;
2302 Ada_Version_Explicit : Ada_Version_Type;
2303 Ada_Version_Pragma : Node_Id;
2304 Assertions_Enabled : Boolean;
2305 Assume_No_Invalid_Values : Boolean;
2306 Check_Float_Overflow : Boolean;
2307 Check_Policy_List : Node_Id;
2308 Default_Pool : Node_Id;
2309 Default_SSO : Character;
2310 Dynamic_Elaboration_Checks : Boolean;
2311 Exception_Locations_Suppressed : Boolean;
2312 External_Name_Exp_Casing : External_Casing_Type;
2313 External_Name_Imp_Casing : External_Casing_Type;
2314 Fast_Math : Boolean;
2315 Initialize_Scalars : Boolean;
2316 No_Component_Reordering : Boolean;
2317 Normalize_Scalars : Boolean;
2318 Optimize_Alignment : Character;
2319 Optimize_Alignment_Local : Boolean;
2320 Persistent_BSS_Mode : Boolean;
2321 Prefix_Exception_Messages : Boolean;
2322 SPARK_Mode : SPARK_Mode_Type;
2323 SPARK_Mode_Pragma : Node_Id;
2324 Uneval_Old : Character;
2325 Use_VADS_Size : Boolean;
2326 Warnings_As_Errors_Count : Natural;
2327 end record;
2329 -- The following declarations are for GCC version dependent flags. We do
2330 -- not let client code in the compiler test GCC_Version directly, but
2331 -- instead use deferred constants for relevant feature tags.
2333 -- Note: there currently are no such constants defined in this section,
2334 -- since the compiler front end is currently entirely independent of the
2335 -- GCC version, which is a desirable state of affairs.
2337 function get_gcc_version return Int;
2338 pragma Import (C, get_gcc_version, "get_gcc_version");
2340 GCC_Version : constant Nat := get_gcc_version;
2341 -- GNATMAKE
2342 -- Indicates which version of gcc is in use (3 = 3.x, 4 = 4.x). Note that
2343 -- gcc 2.8.1 (which used to be a value of 2) is no longer supported.
2345 end Opt;