OSDN Git Service

* gnat1drv.adb, gnatbind.adb, gnatchop.adb, gnatfind.adb, gnatlink.adb,
[pf3gnuchains/gcc-fork.git] / gcc / ada / opt.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                                  O P T                                   --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2004, 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 2,  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 COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- As a special exception,  if other files  instantiate  generics from this --
23 -- unit, or you link  this unit with other files  to produce an executable, --
24 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
25 -- covered  by the  GNU  General  Public  License.  This exception does not --
26 -- however invalidate  any other reasons why  the executable file  might be --
27 -- covered by the  GNU Public License.                                      --
28 --                                                                          --
29 -- GNAT was originally developed  by the GNAT team at  New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
31 --                                                                          --
32 ------------------------------------------------------------------------------
33
34 --  This package contains global flags set by the initialization
35 --  routine from the command line and referenced throughout the compiler,
36 --  the binder, gnatmake or other GNAT tools. The comments indicate which
37 --  options are used by which programs (GNAT, GNATBIND, GNATMAKE, etc).
38
39 with Gnatvsn;  use Gnatvsn;
40 with Hostparm; use Hostparm;
41 with Types;    use Types;
42
43 with System.WCh_Con; use System.WCh_Con;
44 with GNAT.Strings;   use GNAT.Strings;
45
46 package Opt is
47
48    ----------------------------------------------
49    -- Settings of Modes for Current Processing --
50    ----------------------------------------------
51
52    --  The following mode values represent the current state of processing.
53    --  The values set here are the default values. Unless otherwise noted,
54    --  the value may be reset in Switch with an appropropiate switch. In
55    --  some cases, the values can also be modified by pragmas, and in the
56    --  case of some binder variables, Gnatbind.Scan_Bind_Arg may modify
57    --  the default values.
58
59    Ada_Bind_File : Boolean := True;
60    --  GNATBIND, GNATLINK
61    --  Set True if binder file to be generated in Ada rather than C
62
63    type Ada_Version_Type is (Ada_83, Ada_95, Ada_05);
64    --  Versions of Ada for Ada_Version below. Note that these are ordered,
65    --  so that tests like Ada_Version >= Ada_95 are legitimate and useful.
66
67    Ada_Version_Default : Ada_Version_Type := Ada_95;
68    --  GNAT
69    --  Default Ada version if no switch given
70
71    Ada_Version : Ada_Version_Type := Ada_Version_Default;
72    --  GNAT
73    --  Current Ada version for compiler
74
75    Ada_Version_Runtime : Ada_Version_Type := Ada_05;
76    --  GNAT
77    --  Ada version used to compile the runtime
78
79    Ada_Final_Suffix : constant String := "final";
80    Ada_Final_Name : String_Ptr := new String'("ada" & Ada_Final_Suffix);
81    --  GNATBIND
82    --  The name of the procedure that performs the finalization at the end of
83    --  execution. This variable may be modified by Gnatbind.Scan_Bind_Arg.
84
85    Ada_Init_Suffix : constant String := "init";
86    Ada_Init_Name : String_Ptr := new String'("ada" & Ada_Init_Suffix);
87    --  GNATBIND
88    --  The name of the procedure that performs initialization at the start
89    --  of execution. This variable may be modified by Gnatbind.Scan_Bind_Arg.
90
91    Ada_Main_Name_Suffix : constant String := "main";
92    --  GNATBIND
93    --  The suffix for Ada_Main_Name. Defined as a constant here so that it
94    --  can be referenced in a uniform manner to create either the default
95    --  value of Ada_Main_Name (declared below), or the non-default name
96    --  set by Gnatbind.Scan_Bind_Arg.
97
98    Ada_Main_Name : String_Ptr := new String'("ada_" & Ada_Main_Name_Suffix);
99    --  GNATBIND
100    --  The name of the Ada package generated by the binder (when in Ada mode).
101    --  This variable may be modified by Gnatbind.Scan_Bind_Arg.
102
103    Address_Clause_Overlay_Warnings : Boolean := True;
104    --  GNAT
105    --  Set False to disable address clause warnings
106
107    All_Errors_Mode : Boolean := False;
108    --  GNAT
109    --  Flag set to force display of multiple errors on a single line and
110    --  also repeated error messages for references to undefined identifiers
111    --  and certain other repeated error messages.
112
113    All_Sources : Boolean := False;
114    --  GNATBIND
115    --  Set to True to require all source files to be present. This flag is
116    --  directly modified by gnatmake to affect the shared binder routines.
117
118    Alternate_Main_Name : String_Ptr := null;
119    --  GNATBIND
120    --  Set to non null when Bind_Alternate_Main_Name is True. This value
121    --  is modified as needed by Gnatbind.Scan_Bind_Arg.
122
123    Assertions_Enabled : Boolean := False;
124    --  GNAT
125    --  Enable assertions made using pragma Assert.
126
127    ASIS_Mode : Boolean := False;
128    --  GNAT
129    --  Enable semantic checks and tree transformations that are important
130    --  for ASIS but that are usually skipped if Operating_Mode is set to
131    --  Check_Semantics. This flag does not have the corresponding option to set
132    --  it ON. It is set ON when Tree_Output is set ON, it can also be set ON
133    --  from the code of GNSA-based tool (a client may need to set ON the
134    --  Back_Annotate_Rep_Info flag in this case. At the moment this does not
135    --  make very much sense, because GNSA can not do back annotation).
136
137    Back_Annotate_Rep_Info : Boolean := False;
138    --  GNAT
139    --  If set True, enables back annotation of representation information
140    --  by gigi, even in -gnatc mode. This is set True by the use of -gnatR
141    --  (list representation information) or -gnatt (generate tree). It is
142    --  also set true if certain Unchecked_Conversion instantiations require
143    --  checking based on annotated values.
144
145    Bind_Alternate_Main_Name : Boolean := False;
146    --  GNATBIND
147    --  True if main should be called Alternate_Main_Name.all.
148    --  This variable may be set to True by Gnatbind.Scan_Bind_Arg.
149
150    Bind_Main_Program : Boolean := True;
151    --  GNATBIND
152    --  Set to False if not binding main Ada program.
153
154    Bind_For_Library : Boolean := False;
155    --  GNATBIND
156    --  Set to True if the binder needs to generate a file designed for
157    --  building a library. May be set to True by Gnatbind.Scan_Bind_Arg.
158
159    Bind_Only : Boolean := False;
160    --  GNATMAKE
161    --  Set to True to skip compile and link steps
162    --  (except when Compile_Only and/or Link_Only are True).
163
164    Blank_Deleted_Lines : Boolean := False;
165    --  GNAT, GNATPREP
166    --  Output empty lines for each line of preprocessed input that is deleted
167    --  in the output, including preprocessor lines starting with a '#'.
168
169    Brief_Output : Boolean := False;
170    --  GNAT, GNATBIND
171    --  Force brief error messages to standard error, even if verbose mode is
172    --  set (so that main error messages go to standard output).
173
174    Build_Bind_And_Link_Full_Project : Boolean := False;
175    --  GNATMAKE
176    --  Set to True to build, bind and link all the sources of a project file
177    --  (switch -B)
178
179    Check_Object_Consistency : Boolean := False;
180    --  GNATBIND, GNATMAKE
181    --  Set to True to check whether every object file is consistent with
182    --  its corresponding ada library information (ALI) file. An object
183    --  file is inconsistent with the corresponding ALI file if the object
184    --  file does not exist or if it has an older time stamp than the ALI file.
185    --  Default above is for GNATBIND. GNATMAKE overrides this default to
186    --  True (see Make.Initialize) since we normally do need to check source
187    --  consistencies in gnatmake.
188
189    Check_Only : Boolean := False;
190    --  GNATBIND
191    --  Set to True to do checks only, no output of binder file.
192
193    Check_Readonly_Files : Boolean := False;
194    --  GNATMAKE
195    --  Set to True to check readonly files during the make process.
196
197    Check_Source_Files : Boolean := True;
198    --  GNATBIND, GNATMAKE
199    --  Set to True to enable consistency checking for any source files that
200    --  are present (i.e. date must match the date in the library info file).
201    --  Set to False for object file consistency check only. This flag is
202    --  directly modified by gnatmake, to affect the shared binder routines.
203
204    Check_Switches : Boolean := False;
205    --  GNATMAKE
206    --  Set to True to check compiler options during the make process.
207
208    Check_Unreferenced : Boolean := False;
209    --  GNAT
210    --  Set to True to enable checking for unreferenced entities other
211    --  than formal parameters (for which see Check_Unreferenced_Formals)
212
213    Check_Unreferenced_Formals : Boolean := False;
214    --  GNAT
215    --  Set True to check for unreferenced formals. This is turned
216    --  on by -gnatwa/wf/wu and turned off by -gnatwA/wF/wU.
217
218    Check_Withs : Boolean := False;
219    --  GNAT
220    --  Set to True to enable checking for unused withs, and also the case
221    --  of withing a package and using none of the entities in the package.
222
223    Comment_Deleted_Lines : Boolean := False;
224    --  GNATPREP
225    --  True if source lines removed by the preprocessor should be commented
226    --  in the output file.
227
228    Compile_Only : Boolean := False;
229    --  GNATMAKE, GNATCLEAN
230    --  GNATMAKE: set to True to skip bind and link steps (except when
231    --            Bind_Only is True).
232    --  GNATCLEAN: set to True to only the files produced by the compiler are to
233    --             be deleted, but not the library files or executable files.
234
235    Config_File : Boolean := True;
236    --  GNAT
237    --  Set to False to inhibit reading and processing of gnat.adc file
238
239    Config_File_Names : String_List_Access := null;
240    --  GNAT
241    --  Names of configuration pragmas files (given by switches -gnatec)
242
243    Configurable_Run_Time_Mode : Boolean := False;
244    --  GNAT, GNATBIND
245    --  Set True if the compiler is operating in configurable run-time mode.
246    --  This happens if the flag Targparm.Configurable_Run_TimeMode_On_Target
247    --  is set True, or if pragma No_Run_Time is used. See the spec of Rtsfind
248    --  for details on the handling of the latter pragma.
249
250    Constant_Condition_Warnings : Boolean := False;
251    --  GNAT
252    --  Set to True to activate warnings on constant conditions
253
254    Create_Mapping_File : Boolean := False;
255    --  GNATMAKE
256    --  Set to True (-C switch) to indicate that gnatmake will invoke
257    --  the compiler with a mapping file (-gnatem compiler switch).
258
259    subtype Debug_Level_Value is Nat range 0 .. 3;
260    Debugger_Level : Debug_Level_Value := 0;
261    --  GNATBIND
262    --  The value given to the -g parameter. The default value for -g with
263    --  no value is 2. This is usually ignored by GNATBIND, except in the
264    --  VMS version where it is passed as an argument to __gnat_initialize
265    --  to trigger the activation of the remote debugging interface.
266    --  Is this still true ???
267
268    Debug_Generated_Code : Boolean := False;
269    --  GNAT
270    --  Set True (-gnatD switch) to debug generated expanded code instead
271    --  of the original source code. Causes debugging information to be
272    --  written with respect to the generated code file that is written.
273
274    Default_Sec_Stack_Size : Int := -1;
275    --  GNATBIND
276    --  Set to default secondary stack size in units of kilobytes. Set by
277    --  the -Dnnn switch for the binder. A value of -1 indicates that no
278    --  default was set by the binder, and that the default should be the
279    --  initial value of System.Secondary_Stack.Default_Secondary_Stack_Size.
280
281    Detect_Blocking : Boolean := False;
282    --  GNAT
283    --  Set True to force the run time to raise Program_Error if calls to
284    --  potentially blocking operations are detected from protected actions.
285
286    Display_Compilation_Progress : Boolean := False;
287    --  GNATMAKE
288    --  Set True (-d switch) to display information on progress while compiling
289    --  files. Internal flag to be used in conjunction with an IDE (e.g GPS).
290
291    type Distribution_Stub_Mode_Type is
292    --  GNAT
293      (No_Stubs,
294       --  Normal mode, no generation/compilation of distribution stubs
295
296       Generate_Receiver_Stub_Body,
297       --  The unit being compiled is the RCI body, and the compiler will
298       --  generate the body for the receiver stubs and compile it.
299
300       Generate_Caller_Stub_Body);
301       --  The unit being compiled is the RCI spec, and the compiler will
302       --  generate the body for the caller stubs and compile it.
303
304    Distribution_Stub_Mode : Distribution_Stub_Mode_Type := No_Stubs;
305    --  GNAT
306    --  This enumeration variable indicates the five states of distribution
307    --  annex stub generation/compilation.
308
309    Do_Not_Execute : Boolean := False;
310    --  GNATMAKE
311    --  Set to True if no actual compilations should be undertaken.
312
313    Dynamic_Elaboration_Checks : Boolean := False;
314    --  GNAT
315    --  Set True for dynamic elaboration checking mode, as set by the -gnatE
316    --  switch or by the use of pragma Elaboration_Checks (Dynamic).
317
318    Elab_Dependency_Output : Boolean := False;
319    --  GNATBIND
320    --  Set to True to output complete list of elaboration constraints
321
322    Elab_Order_Output : Boolean := False;
323    --  GNATBIND
324    --  Set to True to output chosen elaboration order
325
326    Elab_Warnings : Boolean := False;
327    --  GNAT
328    --  Set to True to generate full elaboration warnings (-gnatwl)
329
330    Enable_Overflow_Checks : Boolean := False;
331    --  GNAT
332    --  Set to True if -gnato (enable overflow checks) switch is set,
333    --  but not -gnatp.
334
335    Exception_Locations_Suppressed : Boolean := False;
336    --  GNAT
337    --  This flag is set True if a Suppress_Exception_Locations configuration
338    --  pragma is currently active.
339
340    type Exception_Mechanism_Type is
341    --  Determines the handling of exceptions. See Exp_Ch11 for details
342    --
343      (Front_End_Setjmp_Longjmp_Exceptions,
344       --  Exceptions use setjmp/longjmp generated explicitly by the
345       --  front end (this includes gigi or other equivalent parts of
346       --  the code generator). AT END handlers are converted into
347       --  exception handlers by the front end in this mode.
348
349       Front_End_ZCX_Exceptions,
350       --  Exceptions use the zero cost table mechanism with explicit
351       --  tables and exception regions generated by the front end.
352       --  AT END handlers are converted into exception handlers by
353       --  the front end in this mode.
354
355       Back_End_ZCX_Exceptions);
356       --  Exceptions are handled by the back end. The front end simply
357       --  generates the handlers as they appear in the source, and AT
358       --  END handlers are left untouched (they are not converted into
359       --  exception handlers when operating in this mode. Note that the
360       --  name includes ZCX, since the expectation is that the back end
361       --  mechanism will in fact be a ZCX approach, but nothing in the
362       --  compiler depends on this, so for example if GNAT is run with
363       --  a version of GCC configured for setjmp/longjmp exception handling,
364       --  then everything will work fine.
365    pragma Convention (C, Exception_Mechanism_Type);
366
367    Exception_Mechanism : Exception_Mechanism_Type :=
368                            Front_End_Setjmp_Longjmp_Exceptions;
369    --  GNAT
370    --  Set to the appropriate value depending on the default as given in
371    --  system.ads (ZCX_By_Default, GCC_ZCX_Support, Front_End_ZCX_Support)
372    --  and the use of -gnatL -gnatZ (and -gnatdX). The C convention is
373    --  there to make this variable accessible to gigi.
374
375    Exception_Tracebacks : Boolean := False;
376    --  GNATBIND
377    --  Set to True to store tracebacks in exception occurrences (-E)
378
379    Extensions_Allowed : Boolean := False;
380    --  GNAT
381    --  Set to True by switch -gnatX if GNAT specific language extensions
382    --  are allowed. For example, "limited with" is a GNAT extension.
383
384    type External_Casing_Type is (
385      As_Is,       -- External names cased as they appear in the Ada source
386      Uppercase,   -- External names forced to all uppercase letters
387      Lowercase);  -- External names forced to all lowercase letters
388
389    External_Name_Imp_Casing : External_Casing_Type := Lowercase;
390    --  GNAT
391    --  The setting of this flag determines the casing of external names
392    --  when the name is implicitly derived from an entity name (i.e. either
393    --  no explicit External_Name or Link_Name argument is used, or, in the
394    --  case of extended DEC pragmas, the external name is given using an
395    --  identifier. The As_Is setting is not permitted here (since this would
396    --  create Ada source programs that were case sensitive).
397
398    External_Name_Exp_Casing : External_Casing_Type := As_Is;
399    --  GNAT
400    --  The setting of this flag determines the casing of an external name
401    --  specified explicitly with a string literal. As_Is means the string
402    --  literal is used as given with no modification to the casing. If
403    --  Lowercase or Uppercase is set, then the string is forced to all
404    --  lowercase or all uppercase letters as appropriate. Note that this
405    --  setting has no effect if the external name is given using an identifier
406    --  in the case of extended DEC import/export pragmas (in this case the
407    --  casing is controlled by External_Name_Imp_Casing), and also has no
408    --  effect if an explicit Link_Name is supplied (a link name is always
409    --  used exactly as given).
410
411    External_Unit_Compilation_Allowed : Boolean := False;
412    --  GNATMAKE
413    --  When True (set by gnatmake switch -x), allow compilation of sources
414    --  that are not part of any project file.
415
416    Float_Format : Character := ' ';
417    --  GNAT
418    --  A non-blank value indicates that a Float_Format pragma has been
419    --  processed, in which case this variable is set to 'I' for IEEE or
420    --  to 'V' for VAX. The setting of 'V' is only possible on OpenVMS
421    --  versions of GNAT.
422
423    Float_Format_Long : Character := ' ';
424    --  GNAT
425    --  A non-blank value indicates that a Long_Float pragma has been
426    --  processed (this pragma is recognized only in OpenVMS versions
427    --  of GNAT), in which case this variable is set to D or G for
428    --  D_Float or G_Float.
429
430    Force_ALI_Tree_File : Boolean := False;
431    --  GNAT
432    --  Force generation of ALI file even if errors are encountered.
433    --  Also forces generation of tree file if -gnatt is also set.
434
435    Force_Checking_Of_Elaboration_Flags : Boolean := False;
436    --  GNATBIND
437    --  True if binding with forced checking of the elaboration flags
438    --  (-F switch set).
439
440    Force_Compilations : Boolean := False;
441    --  GNATMAKE
442    --  Set to force recompilations even when the objects are up-to-date.
443
444    Force_RM_Elaboration_Order : Boolean := False;
445    --  GNATBIND
446    --  True if binding with forced RM elaboration order (-f switch set)
447    --  Note: this is considered an obsolescent option, to be removed in
448    --  some future release. It is no longer documented. The proper way
449    --  to get this effect is to use -gnatE and suppress elab checks.
450
451    Full_Path_Name_For_Brief_Errors : Boolean := False;
452    --  GNAT, GNATMAKE, GNATCLEAN
453    --  When True, in Brief_Output mode, each error message line
454    --  will start with the full path name of the source.
455    --  When False, only the file name without directory information
456    --  is used.
457
458    Full_List : Boolean := False;
459    --  GNAT
460    --  Set True to generate full source listing with embedded errors
461
462    function get_gcc_version return Int;
463    pragma Import (C, get_gcc_version, "get_gcc_version");
464
465    GCC_Version : constant Nat := get_gcc_version;
466    --  GNATMAKE
467    --  Indicates which version of gcc is in use (2 = 2.8.1, 3 = 3.x).
468
469    Global_Discard_Names : Boolean := False;
470    --  GNAT, GNATBIND
471    --  Set true if a pragma Discard_Names applies to the current unit
472
473    GNAT_Mode : Boolean := False;
474    --  GNAT
475    --  True if compiling in GNAT system mode (-gnatg switch)
476
477    HLO_Active : Boolean := False;
478    --  GNAT
479    --  True if High Level Optimizer is activated (-gnatH switch)
480
481    Implementation_Unit_Warnings : Boolean := True;
482    --  GNAT
483    --  Set True to active warnings for use of implementation internal units.
484    --  Can be controlled by use of -gnatwi/-gnatwI.
485
486    Identifier_Character_Set : Character;
487    --  GNAT
488    --  This variable indicates the character set to be used for identifiers.
489    --  The possible settings are:
490    --    '1'  Latin-5 (ISO-8859-1)
491    --    '2'  Latin-5 (ISO-8859-2)
492    --    '3'  Latin-5 (ISO-8859-3)
493    --    '4'  Latin-5 (ISO-8859-4)
494    --    '5'  Latin-5 (ISO-8859-5, Cyrillic)
495    --    '9'  Latin-5 (ISO-8859-9)
496    --    'p'  PC (US, IBM page 437)
497    --    '8'  PC (European, IBM page 850)
498    --    'f'  Full upper set (all distinct)
499    --    'n'  No upper characters (Ada 83 rules)
500    --    'w'  Latin-1 plus wide characters allowed in identifiers
501    --
502    --  The setting affects the set of letters allowed in identifiers and the
503    --  upper/lower case equivalences. It does not affect the interpretation of
504    --  character and string literals, which are always stored using the actual
505    --  coding in the source program. This variable is initialized to the
506    --  default value appropriate to the system (in Osint.Initialize), and then
507    --  reset if a command line switch is used to change the setting.
508
509    Ineffective_Inline_Warnings : Boolean := False;
510    --  GNAT
511    --  Set True to activate warnings if front-end inlining (-gnatN) is not
512    --  able to actually inline a particular call (or all calls). Can be
513    --  controlled by use of -gnatwp/-gnatwP.
514
515    Init_Or_Norm_Scalars : Boolean := False;
516    --  GNAT, GANTBIND
517    --  Set True if a pragma Initialize_Scalars applies to the current unit.
518    --  Also set True if a pragma Normalize_Scalars applies.
519
520    Initialize_Scalars : Boolean := False;
521    --  GNAT
522    --  Set True if a pragma Initialize_Scalars applies to the current unit.
523    --  Note that Init_Or_Norm_Scalars is also set to True if this is True.
524
525    Initialize_Scalars_Mode1 : Character := 'I';
526    Initialize_Scalars_Mode2 : Character := 'N';
527    --  GNATBIND
528    --  Set to two characters from -S switch (IN/LO/HI/EV/xx). The default
529    --  is IN (invalid values), used if no -S switch is used.
530
531    Inline_Active : Boolean := False;
532    --  GNAT
533    --  Set True to activate pragma Inline processing across modules. Default
534    --  for now is not to inline across module boundaries.
535
536    Interface_Library_Unit : Boolean := False;
537    --  GNATBIND
538    --  Set to True to indicate that at least one ALI file is an interface ALI:
539    --  then elaboration flag checks are to be generated in the binder
540    --  generated file.
541
542    Follow_Links : Boolean := False;
543    --  GNATMAKE
544    --  Set to True (-eL) to process the project files in trusted mode
545
546    Front_End_Inlining : Boolean := False;
547    --  GNAT
548    --  Set True to activate inlining by front-end expansion.
549
550    Inline_Processing_Required : Boolean := False;
551    --  GNAT
552    --  Set True if inline processing is required. Inline processing is
553    --  required if an active Inline pragma is processed. The flag is set
554    --  for a pragma Inline or Inline_Always that is actually active.
555
556    In_Place_Mode : Boolean := False;
557    --  GNATMAKE
558    --  Set True to store ALI and object files in place ie in the object
559    --  directory if these files already exist or in the source directory
560    --  if not.
561
562    Keep_Going : Boolean := False;
563    --  GNATMAKE
564    --  When True signals gnatmake to ignore compilation errors and keep
565    --  processing sources until there is no more work.
566
567    Keep_Temporary_Files : Boolean := False;
568    --  GNATCMD
569    --  When True the temporary files created by the GNAT driver are not
570    --  deleted. Set by switch -dn or qualifier /KEEP_TEMPORARY_FILES.
571
572    Link_Only : Boolean := False;
573    --  GNATMAKE
574    --  Set to True to skip compile and bind steps
575    --  (except when Bind_Only is set to True).
576
577    List_Restrictions : Boolean := False;
578    --  GNATBIND
579    --  Set to True to list restrictions pragmas that could apply to partition
580
581    List_Units : Boolean := False;
582    --  GNAT
583    --  List units in the active library for a compilation (-gnatu switch)
584
585    List_Dependencies : Boolean := False;
586    --  GNATMAKE
587    --  When True gnatmake verifies that the objects are up to date and
588    --  outputs the list of object dependencies (-M switch).
589    --  Output depends if -a switch is used or not.
590    --  This list can be used directly in a Makefile.
591
592    List_Representation_Info : Int range 0 .. 3 := 0;
593    --  GNAT
594    --  Set non-zero by -gnatR switch to list representation information.
595    --  The settings are as follows:
596    --
597    --    0 = no listing of representation information (default as above)
598    --    1 = list rep info for user defined record and array types
599    --    2 = list rep info for all user defined types and objects
600    --    3 = like 2, but variable fields are decoded symbolically
601
602    List_Representation_Info_To_File : Boolean := False;
603    --  GNAT
604    --  Set true by -gnatRs switch. Causes information from -gnatR/1/2/3
605    --  to be written to file.rep (where file is the name of the source
606    --  file) instead of stdout. For example, if file x.adb is compiled
607    --  using -gnatR2s then representation info is written to x.adb.ref.
608
609    List_Representation_Info_Mechanisms : Boolean := False;
610    --  GNAT
611    --  Set true by -gnatRm switch. Causes information on mechanisms to
612    --  be included in the representation output information.
613
614    List_Preprocessing_Symbols : Boolean := False;
615    --  GNAT, GNATPREP
616    --  Set to True if symbols for preprocessing a source are to be listed
617    --  before preprocessing occurs. Set to True by switch -s of gnatprep
618    --  or -s in preprocessing data file for the compiler.
619
620    type Creat_Repinfo_File_Proc is access procedure (Src : File_Name_Type);
621    type Write_Repinfo_Line_Proc is access procedure (Info : String);
622    type Close_Repinfo_File_Proc is access procedure;
623    --  Types used for procedure addresses below
624
625    Creat_Repinfo_File_Access : Creat_Repinfo_File_Proc := null;
626    Write_Repinfo_Line_Access : Write_Repinfo_Line_Proc := null;
627    Close_Repinfo_File_Access : Close_Repinfo_File_Proc := null;
628    --  GNAT
629    --  These three locations are left null when operating in non-compiler
630    --  (e.g. ASIS mode), but when operating in compiler mode, they are
631    --  set to point to the three corresponding procedures in Osint. The
632    --  reason for this slightly strange interface is to prevent Repinfo
633    --  from dragging in Osint in ASIS mode, which would include a lot of
634    --  unwanted units in the ASIS build.
635
636    Locking_Policy : Character := ' ';
637    --  GNAT, GNATBIND
638    --  Set to ' ' for the default case (no locking policy specified).
639    --  Reset to first character (uppercase) of locking policy name if a
640    --  valid pragma Locking_Policy is encountered.
641
642    Locking_Policy_Sloc : Source_Ptr := No_Location;
643    --  GNAT, GNATBIND
644    --  Remember location of previous Locking_Policy pragma. This is used
645    --  for inconsistency error messages. A value of System_Location is
646    --  used if the policy is set in package System.
647
648    Look_In_Primary_Dir : Boolean := True;
649    --  GNAT, GNATBIND, GNATMAKE, GNATCLEAN
650    --  Set to False if a -I- was present on the command line.
651    --  When True we are allowed to look in the primary directory to locate
652    --  other source or library files.
653
654    Make_Steps : Boolean := False;
655    --  GNATMAKE
656    --  Set to True when either Compile_Only, Bind_Only or Link_Only is
657    --  set to True.
658
659    Main_Index : Int := 0;
660    --  GNATMAKE
661    --  This is set to non-zero by gnatmake switch -eInnn to indicate that
662    --  the main program is the nnn unit in a multi-unit source file.
663
664    Mapping_File_Name : String_Ptr := null;
665    --  GNAT
666    --  File name of mapping between unit names, file names and path names.
667    --  (given by switch -gnatem)
668
669    Maximum_Errors : Int := 9999;
670    --  GNAT, GNATBIND
671    --  Maximum default number of errors before compilation is terminated.
672    --  Can be overridden using -gnatm (GNAT) or -m (GNATBIND) switch.
673
674    Maximum_File_Name_Length : Int;
675    --  GNAT, GNATBIND
676    --  Maximum number of characters allowed in a file name, not counting the
677    --  extension, as set by the appropriate switch. If no switch is given,
678    --  then this value is initialized by Osint to the appropriate value.
679
680    Max_Line_Length : Int := Hostparm.Max_Line_Length;
681    --  This is a copy of Max_Line_Length used by the scanner. It is usually
682    --  set to be a copy of Hostparm.Max_Line_Length, and is used to check
683    --  the maximum line length in the scanner when style checking is inactive.
684    --  The only time it is set to a different value is during the scanning of
685    --  configuration pragma files, where we want to turn off all checking and
686    --  in particular we want to allow long lines. So we reset this value to
687    --  Column_Number'Last during scanning of configuration pragma files.
688
689    Maximum_Processes : Positive := 1;
690    --  GNATMAKE
691    --  Maximum number of processes that should be spawned to carry out
692    --  compilations.
693
694    Minimal_Recompilation : Boolean := False;
695    --  GNATMAKE
696    --  Set to True if minimal recompilation mode requested.
697
698    Multiple_Unit_Index : Int;
699    --  GNAT
700    --  This is set non-zero if the current unit is being compiled in multiple
701    --  unit per file mode, meaning that the current unit is selected from the
702    --  sequence of units in the current source file, using the value stored
703    --  in this variable (e.g. 2 = select second unit in file). A value of
704    --  zero indicates that we are in normal (one unit per file) mode.
705
706    No_Main_Subprogram : Boolean := False;
707    --  GNATMAKE, GNATBIND
708    --  Set to True if compilation/binding of a program without main
709    --  subprogram requested.
710
711    No_Run_Time_Mode : Boolean := False;
712    --  GNAT, GNATBIND
713    --  This flag is set True if a No_Run_Time pragma is encountered. See
714    --  spec of Rtsfind for a full description of handling of this pragma.
715
716    No_Stdinc : Boolean := False;
717    --  GNAT, GNATBIND, GNATMAKE, GNATFIND, GNATXREF
718    --  Set to True if no default source search dirs added to search list
719
720    No_Stdlib : Boolean := False;
721    --  GNATMAKE, GNATBIND, GNATFIND, GNATXREF
722    --  Set to True if no default library search dirs added to search list
723
724    No_Strict_Aliasing : Boolean := False;
725    --  GNAT
726    --  Set True if pragma No_Strict_Aliasing with no parameters encountered
727
728    Normalize_Scalars : Boolean := False;
729    --  GNAT, GNATBIND
730    --  Set True if a pragma Normalize_Scalars applies to the current unit.
731    --  Note that Init_Or_Norm_Scalars is also set to True if this is True.
732
733    Object_Directory_Present : Boolean := False;
734    --  GNATMAKE
735    --  Set to True when an object directory is specified with option -D
736
737    type Operating_Mode_Type is (Check_Syntax, Check_Semantics, Generate_Code);
738    Operating_Mode : Operating_Mode_Type := Generate_Code;
739    --  GNAT
740    --  Indicates the operating mode of the compiler. The default is generate
741    --  code, which runs the parser, semantics and backend. Switches can be
742    --  used to set syntax checking only mode, or syntax and semantics checking
743    --  only mode. Operating_Mode can also be modified as a result of detecting
744    --  errors during the compilation process. In particular if any serious
745    --  error is detected then this flag is reset from Generate_Code to
746    --  Check_Semantics after generating an error message.
747
748    Original_Operating_Mode : Operating_Mode_Type := Generate_Code;
749    --  GNAT
750    --  Indicates the original operating mode of the compiler as set by
751    --  compiler options. This is identical to Operating_Mode except that
752    --  this is not affected by errors.
753
754    Optimization_Level : Int;
755    pragma Import (C, Optimization_Level, "optimize");
756    --  This constant reflects the optimization level (0,1,2 for -O0,-O1,-O2)
757
758    Output_File_Name_Present : Boolean := False;
759    --  GNATBIND, GNAT, GNATMAKE
760    --  Set to True when the output C file name is given with option -o
761    --  for GNATBIND, when the object file name is given with option
762    --  -gnatO for GNAT or when the executable is given with option -o
763    --  for GNATMAKE.
764
765    Output_Linker_Option_List : Boolean := False;
766    --  GNATBIND
767    --  True if output of list of linker options is requested (-K switch set)
768
769    Output_Object_List : Boolean := False;
770    --  GNATBIND
771    --  True if output of list of objects is requested (-O switch set)
772
773    Pessimistic_Elab_Order : Boolean := False;
774    --  GNATBIND
775    --  True if pessimistic elaboration order is to be chosen (-p switch set)
776
777    Polling_Required : Boolean := False;
778    --  GNAT
779    --  Set to True if polling for asynchronous abort is enabled by using
780    --  the -gnatP option for GNAT.
781
782    Preprocessing_Data_File : String_Ptr := null;
783    --  GNAT
784    --  Set by switch -gnatep=. The file name of the prepocessing data file.
785
786    Print_Generated_Code : Boolean := False;
787    --  GNAT
788    --  Set to True to enable output of generated code in source form. This
789    --  flag is set by the -gnatG switch.
790
791    Print_Standard : Boolean := False;
792    --  GNAT
793    --  Set to true to enable printing of package standard in source form.
794    --  This flag is set by the -gnatS switch
795
796    Propagate_Exceptions : Boolean := False;
797    --  GNAT
798    --  Indicates if subprogram descriptor exception tables should be
799    --  built for imported subprograms. Set True if a Propagate_Exceptions
800    --  pragma applies to the extended main unit.
801
802    type Usage is (Unknown, Not_In_Use, In_Use);
803    Project_File_In_Use : Usage := Unknown;
804    --  GNAT
805    --  Indicates if a project file is used or not.
806    --  Set to In_Use by the first SFNP pragma.
807
808    Queuing_Policy : Character := ' ';
809    --  GNAT, GNATBIND
810    --  Set to ' ' for the default case (no queuing policy specified).
811    --  Reset to first character (uppercase) of locking policy name if a valid
812    --  Queuing_Policy pragma is encountered.
813
814    Queuing_Policy_Sloc : Source_Ptr := No_Location;
815    --  GNAT, GNATBIND
816    --  Remember location of previous Queuing_Policy pragma. This is used
817    --  for inconsistency error messages. A value of System_Location is
818    --  used if the policy is set in package System.
819
820    Quiet_Output : Boolean := False;
821    --  GNATMAKE, GNATCLEAN, GPR2MAKE
822    --  Set to True if the tool should not have any output if there are no
823    --  errors or warnings.
824
825    RTS_Lib_Path_Name : String_Ptr := null;
826    RTS_Src_Path_Name : String_Ptr := null;
827    --  GNAT
828    --  Set to the "adalib" and "adainclude" directories of the run time
829    --  specified by --RTS=.
830
831    RTS_Switch : Boolean := False;
832    --  GNAT, GNATMAKE, GNATBIND, GNATLS, GNATFIND, GNATXREF
833    --  Set to True when the --RTS switch is set
834
835    Run_Path_Option : Boolean := True;
836    --  GNATMAKE, GNATLINK
837    --  Set to False when no run_path_option should be issued to the linker
838
839    Sec_Stack_Used : Boolean := False;
840    --  GNAT, GBATBIND
841    --  Set True if generated code uses the System.Secondary_Stack package.
842    --  For the binder, set if any unit uses the secondary stack package.
843
844    Setup_Projects : Boolean := False;
845    --  GNAT DRIVER
846    --  Set to True for GNAT SETUP: the Project Manager creates non existing
847    --  object, library and exec directories.
848
849    Shared_Libgnat : Boolean;
850    --  GNATBIND
851    --  Set to True if a shared libgnat is requested by using the -shared
852    --  option for GNATBIND and to False when using the -static option. The
853    --  value of this flag is set by Gnatbind.Scan_Bind_Arg.
854
855    Stack_Checking_Enabled : Boolean;
856    --  GNAT
857    --  Set to indicate if -fstack-check switch is set for the compilation.
858    --  True means that the switch is set, so that stack checking is enabled.
859    --  False means that the switch is not set (no stack checking). This
860    --  value is obtained from the external imported value flag_stack_check
861    --  in the gcc backend (see Frontend) and may be referenced throughout
862    --  the compilation phases.
863
864    Style_Check : Boolean := False;
865    --  GNAT
866    --  Set True to perform style checks. Activates checks carried out
867    --  in package Style (see body of this package for details of checks)
868    --  This flag is set True by either the -gnatg or -gnaty switches.
869
870    System_Extend_Pragma_Arg : Node_Id := Empty;
871    --  GNAT
872    --  Set non-empty if and only if a correct Extend_System pragma was present
873    --  in which case it points to the argument of the pragma, and the name can
874    --  be located as Chars (Expression (System_Extend_Pragma_Arg)).
875
876    System_Extend_Unit : Node_Id := Empty;
877    --  GNAT
878    --  This is set to Empty if GNAT_Mode is set, since pragma Extend_System
879    --  is never appropriate in GNAT_Mode (and causes troubles, including
880    --  bogus circularities, if we try to compile the run-time library with
881    --  a System extension). If GNAT_Mode is not set, then System_Extend_Unit
882    --  is a copy of the value set in System_Extend_Pragma_Ary.
883
884    Subunits_Missing : Boolean := False;
885    --  GNAT
886    --  This flag is set true if missing subunits are detected with code
887    --  generation active. This causes code generation to be skipped.
888
889    Suppress_Checks : Boolean := False;
890    --  GNAT
891    --  Set to True if -gnatp (suppress all checks) switch present.
892
893    Suppress_Options : Suppress_Array;
894    --  GNAT
895    --  Flags set True to suppress corresponding check, i.e. add an implicit
896    --  pragma Suppress at the outer level of each unit compiled. Note that
897    --  these suppress actions can be overridden by the use of the Unsuppress
898    --  pragma. This variable is initialized by Osint.Initialize.
899
900    Suppress_Back_Annotation : Boolean := False;
901    --  GNAT
902    --  This flag is set True if back annotation of representation information
903    --  is to be suppressed. This is set if neither -gnatt or -gnatR0-3 is set.
904    --  This avoids unnecessary time being spent on back annotation.
905
906    Table_Factor : Int := 1;
907    --  GNAT
908    --  Factor by which all initial table sizes set in Alloc are multiplied.
909    --  Used in Table to calculate initial table sizes (the initial table
910    --  size is the value in Alloc, used as the Table_Initial parameter
911    --  value, multiplied by the factor given here. The default value is
912    --  used if no -gnatT switch appears.
913
914    Task_Dispatching_Policy : Character := ' ';
915    --  GNAT, GNATBIND
916    --  Set to ' ' for the default case (no task dispatching policy specified).
917    --  Reset to first character (uppercase) of task dispatching policy name
918    --  if a valid Task_Dispatching_Policy pragma is encountered.
919
920    Task_Dispatching_Policy_Sloc : Source_Ptr := No_Location;
921    --  GNAT, GNATBIND
922    --  Remember location of previous Task_Dispatching_Policy pragma. This is
923    --  used for inconsistency error messages. A value of System_Location is
924    --  used if the policy is set in package System.
925
926    Tasking_Used : Boolean := False;
927    --  Set True if any tasking construct is encountered. Used to activate the
928    --  output of the Q, L and T lines in ALI files.
929
930    Time_Slice_Set : Boolean := False;
931    --  GNATBIND
932    --  Set True if a pragma Time_Slice is processed in the main unit, or
933    --  if the -gnatTnn switch is present to set a time slice value.
934
935    Time_Slice_Value : Nat;
936    --  GNATBIND
937    --  Time slice value. Valid only if Time_Slice_Set is True, i.e. if a
938    --  Time_Slice pragma has been processed. Set to the time slice value
939    --  in microseconds. Negative values are stored as zero, and the value
940    --  is not larger than 1_000_000_000 (1000 seconds). Values larger than
941    --  this are reset to this maximum. This can also be set with the -gnatTnn
942    --  switch.
943
944    Tolerate_Consistency_Errors : Boolean := False;
945    --  GNATBIND
946    --  Tolerate time stamp and other consistency errors. If this flag is
947    --  set to True (-t), then inconsistencies result in warnings rather than
948    --  errors.
949
950    Tree_Output : Boolean := False;
951    --  GNAT
952    --  Set to True (-gnatt) to generate output tree file
953
954    Try_Semantics : Boolean := False;
955    --  GNAT
956    --  Flag set to force attempt at semantic analysis, even if parser errors
957    --  occur. This will probably cause blowups at this stage in the game. On
958    --  the other hand, most such blowups will be caught cleanly and simply
959    --  say compilation abandoned. This flag is set to True by -gnatq or -gnatQ.
960
961    Undefined_Symbols_Are_False : Boolean := False;
962    --  GNAT, GNATPREP
963    --  Set to True by switch -u of gnatprep or -u in the preprocessing data
964    --  file for the compiler. Indicates that while preprocessing sources,
965    --  symbols that are not defined have the value FALSE.
966
967    Unique_Error_Tag : Boolean := Tag_Errors;
968    --  GNAT
969    --  Indicates if error messages are to be prefixed by the string error:
970    --  Initialized from Tag_Errors, can be forced on with the -gnatU switch.
971
972    Universal_Addressing_On_AAMP : Boolean := False;
973    --  GNAAMP
974    --  Indicates if library-level objects should be accessed and updated
975    --  using universal addressing instructions on the AAMP architecture.
976    --  This flag is set to True when pragma Universal_Data is given as
977    --  a configuration pragma.
978
979    Unreserve_All_Interrupts : Boolean := False;
980    --  GNAT, GNATBIND
981    --  Normally set False, set True if a valid Unreserve_All_Interrupts
982    --  pragma appears anywhere in the main unit for GNAT, or if any ALI
983    --  file has the corresponding attribute set in GNATBIND.
984
985    Upper_Half_Encoding : Boolean := False;
986    --  GNAT
987    --  Normally set False, indicating that upper half ASCII characters are
988    --  used in the normal way to represent themselves. If the wide character
989    --  encoding method uses the upper bit for this encoding, then this flag
990    --  is set True, and upper half characters in the source indicate the
991    --  start of a wide character sequence.
992
993    Usage_Requested : Boolean := False;
994    --  GNAT, GNATBIND, GNATMAKE
995    --  Set to True if -h (-gnath for the compiler) switch encountered
996    --  requesting usage information
997
998    Use_VADS_Size : Boolean := False;
999    --  GNAT
1000    --  Set to True if a valid pragma Use_VADS_Size is processed
1001
1002    Validity_Checks_On  : Boolean := True;
1003    --  GNAT
1004    --  This flag determines if validity checking is on or off. The initial
1005    --  state is on, and the required default validity checks are active. The
1006    --  actual set of checks that is performed if Validity_Checks_On is set
1007    --  is defined by the switches in package Sem_Val. The Validity_Checks_On
1008    --  flag is controlled by pragma Validity_Checks (On | Off), and also
1009    --  some generated compiler code (typically code that has to do with
1010    --  validity check generation) is compiled with this flag set to False.
1011    --  This flag is set to False by the -gnatp switch.
1012
1013    Verbose_Mode : Boolean := False;
1014    --  GNAT, GNATBIND, GNATMAKE, GNATLINK, GNATLS, GNATCHOP, GNATNAME,
1015    --  GNATCLEAN
1016    --  Set to True to get verbose mode (full error message text and location
1017    --  information sent to standard output, also header, copyright and summary)
1018
1019    Warn_On_Constant : Boolean := False;
1020    --  GNAT
1021    --  Set to True to generate warnings for variables that could be declared
1022    --  as constants. Modified by use of -gnatwk/K.
1023
1024    Warn_On_Dereference : Boolean := False;
1025    --  GNAT
1026    --  Set to True to generate warnings for implicit dereferences for array
1027    --  indexing and record component access. Modified by use of -gnatwd/D.
1028
1029    Warn_On_Export_Import : Boolean := True;
1030    --  GNAT
1031    --  Set to True to generate warnings for suspicious use of export or
1032    --  import pragmas. Modified by use of -gnatwx/X.
1033
1034    Warn_On_Hiding : Boolean := False;
1035    --  GNAT
1036    --  Set to True to generate warnings if a declared entity hides another
1037    --  entity. The default is that this warning is suppressed.
1038
1039    Warn_On_Modified_Unread : Boolean := False;
1040    --  GNAT
1041    --  Set to True to generate warnings if a variable is assigned but is
1042    --  never read. The default is that this warning is suppressed.
1043
1044    Warn_On_No_Value_Assigned : Boolean := True;
1045    --  GNAT
1046    --  Set to True to generate warnings if no value is ever assigned to a
1047    --  variable that is at least partially uninitialized. Set to false to
1048    --  suppress such warnings. The default is that such warnings are enabled.
1049
1050    Warn_On_Obsolescent_Feature : Boolean := False;
1051    --  GNAT
1052    --  Set to True to generate warnings on use of any feature in Annex J
1053    --  or if a subprogram is called for which a pragma Obsolescent applies.
1054
1055    Warn_On_Redundant_Constructs : Boolean := False;
1056    --  GNAT
1057    --  Set to True to generate warnings for redundant constructs (e.g. useless
1058    --  assignments/conversions). The default is that this warning is disabled.
1059
1060    Warn_On_Unchecked_Conversion : Boolean := True;
1061    --  GNAT
1062    --  Set to True to generate warnings for unchecked conversions that may have
1063    --  non-portable semantics (e.g. because sizes of types differ). The default
1064    --  is that this warning is enabled.
1065
1066    Warn_On_Unrecognized_Pragma : Boolean := True;
1067    --  GNAT
1068    --  Set to True to generate warnings for unrecognized pragmas. The default
1069    --  is that this warning is enabled.
1070
1071    type Warning_Mode_Type is (Suppress, Normal, Treat_As_Error);
1072    Warning_Mode : Warning_Mode_Type := Normal;
1073    --  GNAT, GNATBIND
1074    --  Controls treatment of warning messages. If set to Suppress, warning
1075    --  messages are not generated at all. In Normal mode, they are generated
1076    --  but do not count as errors. In Treat_As_Error mode, warning messages
1077    --  are generated and are treated as errors.
1078
1079    Wide_Character_Encoding_Method : WC_Encoding_Method := WCEM_Brackets;
1080    --  GNAT
1081    --  Method used for encoding wide characters in the source program. See
1082    --  description of type in unit System.WCh_Con for a list of the methods
1083    --  that are currently supported. Note that brackets notation is always
1084    --  recognized in source programs regardless of the setting of this
1085    --  variable. The default setting causes only the brackets notation
1086    --  to be recognized. If this is the main unit, this setting also
1087    --  controls the output of the W=? parameter in the ALI file, which
1088    --  is used to provide the default for Wide_Text_IO files.
1089
1090    Xref_Active : Boolean := True;
1091    --  GNAT
1092    --  Set if cross-referencing is enabled (i.e. xref info in ALI files)
1093
1094    Zero_Cost_Exceptions_Val : Boolean;
1095    Zero_Cost_Exceptions_Set : Boolean := False;
1096    --  GNAT
1097    --  These values are to record the setting of the zero cost exception
1098    --  handling mode set by argument switches (-gnatZ/-gnatL). If the
1099    --  value is set by one of these switches, then Zero_Cost_Exceptions_Set
1100    --  is set to True, and Zero_Cost_Exceptions_Val indicates the setting.
1101
1102    ----------------------------
1103    -- Configuration Settings --
1104    ----------------------------
1105
1106    --  These are settings that are used to establish the mode at the start
1107    --  of each unit. The values defined below can be affected either by
1108    --  command line switches, or by the use of appropriate configuration
1109    --  pragmas in the gnat.adc file.
1110
1111    Ada_Version_Config : Ada_Version_Type;
1112    --  GNAT
1113    --  This is the value of the configuration switch for the Ada 83 mode, as
1114    --  set by the command line switches -gnat83/95/05, and possibly modified
1115    --  by the use of configuration pragmas Ada_83/Ada95/Ada05. This switch
1116    --  is used to set the initial value for Ada_Version mode at the start
1117    --  of analysis of a unit. Note however, that the setting of this flag
1118    --  is ignored for internal and predefined units (which are always compiled
1119    --  in the most up to date version of Ada).
1120
1121    Dynamic_Elaboration_Checks_Config : Boolean := False;
1122    --  GNAT
1123    --  Set True for dynamic elaboration checking mode, as set by the -gnatE
1124    --  switch or by the use of pragma Elaboration_Checking (Dynamic).
1125
1126    Exception_Locations_Suppressed_Config : Boolean := False;
1127    --  GNAT
1128    --  Set True by use of the configuration pragma Suppress_Exception_Messages
1129
1130    Extensions_Allowed_Config : Boolean;
1131    --  GNAT
1132    --  This is the flag that indicates whether extensions are allowed.
1133    --  It can be set True either by use of the -gnatX switch, or by use
1134    --  of the configuration pragma Extensions_Allowed (On). It is always
1135    --  set to True for internal GNAT units, since extensions are always
1136    --  permitted in such units.
1137
1138    External_Name_Exp_Casing_Config : External_Casing_Type;
1139    --  GNAT
1140    --  This is the value of the configuration switch that controls casing
1141    --  of external symbols for which an explicit external name is given. It
1142    --  can be set to Uppercase by the command line switch -gnatF, and further
1143    --  modified by the use of the configuration pragma External_Name_Casing
1144    --  in the gnat.adc file. This flag is used to set the initial value
1145    --  for External_Name_Exp_Casing at the start of analyzing each unit.
1146    --  Note however that the setting of this flag is ignored for internal
1147    --  and predefined units (which are always compiled with As_Is mode).
1148
1149    External_Name_Imp_Casing_Config : External_Casing_Type;
1150    --  GNAT
1151    --  This is the value of the configuration switch that controls casing
1152    --  of external symbols where the external name is implicitly given. It
1153    --  can be set to Uppercase by the command line switch -gnatF, and further
1154    --  modified by the use of the configuration pragma External_Name_Casing
1155    --  in the gnat.adc file. This flag is used to set the initial value
1156    --  for External_Name_Imp_Casing at the start of analyzing each unit.
1157    --  Note however that the setting of this flag is ignored for internal
1158    --  and predefined units (which are always compiled with Lowercase mode).
1159
1160    Polling_Required_Config : Boolean;
1161    --  GNAT
1162    --  This is the value of the configuration switch that controls polling
1163    --  mode. It can be set True by the command line switch -gnatP, and then
1164    --  further modified by the use of pragma Polling in the gnat.adc file.
1165    --  This flag is used to set the initial value for Polling_Required
1166    --  at the start of analyzing each unit.
1167
1168    Use_VADS_Size_Config : Boolean;
1169    --  GNAT
1170    --  This is the value of the configuration switch that controls the use
1171    --  of VADS_Size instead of Size whereever the attribute Size is used.
1172    --  It can be set True by the use of the pragma Use_VADS_Size in the
1173    --  gnat.adc file. This flag is used to set the initial value for
1174    --  Use_VADS_Size at the start of analyzing each unit. Note however that
1175    --  the setting of this flag is ignored for internal and predefined
1176    --  units (which are always compiled with the standard Size semantics).
1177
1178    type Config_Switches_Type is private;
1179    --  Type used to save values of the switches set from Config values
1180
1181    procedure Save_Opt_Config_Switches (Save : out Config_Switches_Type);
1182    --  This procedure saves the current values of the switches which are
1183    --  initialized from the above Config values, and then resets these
1184    --  switches according to the Config value settings.
1185
1186    procedure Set_Opt_Config_Switches (Internal_Unit : Boolean);
1187    --  This procedure sets the switches to the appropriate initial values.
1188    --  The parameter Internal_Unit is True for an internal or predefined
1189    --  unit, and affects the way the switches are set (see above).
1190
1191    procedure Restore_Opt_Config_Switches (Save : Config_Switches_Type);
1192    --  This procedure restores a set of switch values previously saved
1193    --  by a call to Save_Opt_Switches.
1194
1195    procedure Register_Opt_Config_Switches;
1196    --  This procedure is called after processing the gnat.adc file to record
1197    --  the values of the Config switches, as possibly modified by the use
1198    --  of command line switches and configuration pragmas.
1199
1200    ------------------------
1201    -- Other Global Flags --
1202    ------------------------
1203
1204    Expander_Active : Boolean := False;
1205    --  A flag that indicates if expansion is active (True) or deactivated
1206    --  (False). When expansion is deactivated all calls to expander routines
1207    --  have no effect. Note that the initial setting of False is merely to
1208    --  prevent saving of an undefined value for an initial call to the
1209    --  Expander_Mode_Save_And_Set procedure. For more information on the
1210    --  use of this flag, see package Expander. Indeed this flag might more
1211    --  logically be in the spec of Expander, but it is referenced by Errout,
1212    --  and it really seems wrong for Errout to depend on Expander.
1213
1214    -----------------------
1215    -- Tree I/O Routines --
1216    -----------------------
1217
1218    procedure Tree_Read;
1219    --  Reads switch settings from current tree file using Tree_Read
1220
1221    procedure Tree_Write;
1222    --  Writes out switch settings to current tree file using Tree_Write
1223
1224    --------------------------
1225    -- ASIS Version Control --
1226    --------------------------
1227
1228    --  These two variables (Tree_Version_String and Tree_ASIS_Version_Number)
1229    --  are supposed to be used in the GNAT/ASIS version check performed in
1230    --  the ASIS code (this package is also a part of the ASIS implementation).
1231    --  They are set by Tree_Read procedure, so they represent the version
1232    --  number (and the version string) of the compiler which has created the
1233    --  tree, and they are supposed to be compared with the corresponding values
1234    --  from the Gnatvsn package which is a part of ASIS implementation.
1235
1236    Tree_Version_String : String (Gnat_Version_String'Range);
1237    --  Used to store the compiler version string read from a tree file to
1238    --  check if it is the same as stored in the version string in Gnatvsn.
1239    --  Therefore its length is taken directly from the version string in
1240    --  Gnatvsn. If the length of the version string stored in the tree is
1241    --  different, then versions are for sure different, and a string containing
1242    --  '?' characters is assigned to this variable as a result of tree read.
1243
1244    Tree_ASIS_Version_Number : Int;
1245    --  Used to store the ASIS version number read from a tree file to check if
1246    --  it is the same as stored in the ASIS version number in Gnatvsn.
1247
1248 private
1249
1250    type Config_Switches_Type is record
1251       Ada_Version                    : Ada_Version_Type;
1252       Dynamic_Elaboration_Checks     : Boolean;
1253       Exception_Locations_Suppressed : Boolean;
1254       Extensions_Allowed             : Boolean;
1255       External_Name_Exp_Casing       : External_Casing_Type;
1256       External_Name_Imp_Casing       : External_Casing_Type;
1257       Polling_Required               : Boolean;
1258       Use_VADS_Size                  : Boolean;
1259    end record;
1260
1261 end Opt;