1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2001-2018, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 -- This package is for switch processing and should not depend on higher level
27 -- packages such as those for the scanner, parser, etc. Doing so may cause
28 -- circularities, especially for back ends using Adabkend.
30 with Debug
; use Debug
;
31 with Errout
; use Errout
;
33 with Osint
; use Osint
;
35 with Stylesw
; use Stylesw
;
36 with Targparm
; use Targparm
;
37 with Ttypes
; use Ttypes
;
38 with Validsw
; use Validsw
;
39 with Warnsw
; use Warnsw
;
41 with Ada
.Unchecked_Deallocation
;
43 with System
.WCh_Con
; use System
.WCh_Con
;
46 package body Switch
.C
is
48 RTS_Specified
: String_Access
:= null;
49 -- Used to detect multiple use of --RTS= flag
51 procedure Add_Symbol_Definition
(Def
: String);
52 -- Add a symbol definition from the command line
55 new Ada
.Unchecked_Deallocation
(String_List
, String_List_Access
);
56 -- Avoid using System.Strings.Free, which also frees the designated strings
58 function Get_Overflow_Mode
(C
: Character) return Overflow_Mode_Type
;
59 -- Given a digit in the range 0 .. 3, returns the corresponding value of
60 -- Overflow_Mode_Type. Raises Program_Error if C is outside this range.
62 function Switch_Subsequently_Cancelled
65 Arg_Rank
: Positive) return Boolean;
66 -- This function is called from Scan_Front_End_Switches. It determines if
67 -- the switch currently being scanned is followed by a switch of the form
68 -- "-gnat-" & C, where C is the argument. If so, then True is returned,
69 -- and Scan_Front_End_Switches will cancel the effect of the switch. If
70 -- no such switch is found, False is returned.
72 ---------------------------
73 -- Add_Symbol_Definition --
74 ---------------------------
76 procedure Add_Symbol_Definition
(Def
: String) is
78 -- If Preprocessor_Symbol_Defs is not large enough, double its size
80 if Preprocessing_Symbol_Last
= Preprocessing_Symbol_Defs
'Last then
82 New_Symbol_Definitions
: constant String_List_Access
:=
83 new String_List
(1 .. 2 * Preprocessing_Symbol_Last
);
85 New_Symbol_Definitions
(Preprocessing_Symbol_Defs
'Range) :=
86 Preprocessing_Symbol_Defs
.all;
87 Free
(Preprocessing_Symbol_Defs
);
88 Preprocessing_Symbol_Defs
:= New_Symbol_Definitions
;
92 Preprocessing_Symbol_Last
:= Preprocessing_Symbol_Last
+ 1;
93 Preprocessing_Symbol_Defs
(Preprocessing_Symbol_Last
) :=
95 end Add_Symbol_Definition;
97 -----------------------
98 -- Get_Overflow_Mode --
99 -----------------------
101 function Get_Overflow_Mode (C : Character) return Overflow_Mode_Type is
110 -- Eliminated allowed only if Long_Long_Integer is 64 bits (since
111 -- the current implementation of System.Bignums assumes this).
114 if Standard_Long_Long_Integer_Size /= 64 then
115 Bad_Switch ("-gnato3 not implemented for this configuration");
123 end Get_Overflow_Mode;
125 -----------------------------
126 -- Scan_Front_End_Switches --
127 -----------------------------
129 procedure Scan_Front_End_Switches
130 (Switch_Chars : String;
134 Max : constant Natural := Switch_Chars'Last;
135 C : Character := ' ';
139 -- This flag is set upon encountering a dot in a debug switch
141 First_Char : Positive;
142 -- Marks start of switch to be stored
144 First_Ptr : Positive;
145 -- Save position of first character after -gnatd (for checking that
146 -- debug flags that must come first are first, in particular -gnatd.b).
148 First_Switch : Boolean := True;
149 -- False for all but first switch
151 Store_Switch : Boolean;
152 -- For -gnatxx switches, the normal processing, signalled by this flag
153 -- being set to True, is to store the switch on exit from the case
154 -- statement, the switch stored is -gnat followed by the characters
155 -- from First_Char to Ptr-1. For cases like -gnaty, where the switch
156 -- is stored in separate pieces, this flag is set to False, and the
157 -- appropriate calls to Store_Compilation_Switch are made from within
160 Underscore : Boolean;
161 -- This flag is set upon encountering an underscode in a debug switch
164 Ptr := Switch_Chars'First;
166 -- Skip past the initial character (must be the switch character)
174 -- Handle switches that do not start with -gnat
176 if Ptr + 3 > Max or else Switch_Chars (Ptr .. Ptr + 3) /= "gnat" then
178 -- There are two front-end switches that do not start with -gnat:
181 if Switch_Chars (Ptr) = 'I
' then
183 -- Set flag Search_Directory_Present if switch is "-I" only:
184 -- the directory will be the next argument.
187 Search_Directory_Present := True;
193 -- Find out whether this is a -I- or regular -Ixxx switch
195 -- Note: -I switches are not recorded in the ALI file, since the
196 -- meaning of the program depends on the source files compiled,
197 -- not where they came from.
199 if Ptr = Max and then Switch_Chars (Ptr) = '-' then
200 Look_In_Primary_Dir := False;
202 Add_Src_Search_Dir (Switch_Chars (Ptr .. Max));
205 -- Processing of the --RTS switch. --RTS may have been modified by
206 -- gcc into -fRTS (for GCC targets).
209 and then (Switch_Chars (Ptr .. Ptr + 3) = "fRTS"
211 Switch_Chars (Ptr .. Ptr + 3) = "-RTS")
216 or else Switch_Chars (Ptr + 3) /= '='
218 Osint.Fail ("missing path for --RTS");
222 Runtime_Dir : String_Access;
224 if System.OS_Lib.Is_Absolute_Path
225 (Switch_Chars (Ptr + 4 .. Max))
228 new String'(System
.OS_Lib
.Normalize_Pathname
229 (Switch_Chars
(Ptr
+ 4 .. Max
)));
232 new String'(Switch_Chars (Ptr + 4 .. Max));
235 -- Valid --RTS switch
237 Opt.No_Stdinc := True;
238 Opt.RTS_Switch := True;
241 Get_RTS_Search_Dir (Runtime_Dir.all, Include);
244 Get_RTS_Search_Dir (Runtime_Dir.all, Objects);
246 if RTS_Specified /= null then
247 if RTS_Src_Path_Name = null
248 or else RTS_Lib_Path_Name = null
250 System.OS_Lib.Normalize_Pathname
251 (RTS_Specified.all) /=
252 System.OS_Lib.Normalize_Pathname
253 (RTS_Lib_Path_Name.all)
256 ("--RTS cannot be specified multiple times");
259 elsif RTS_Src_Path_Name /= null
260 and then RTS_Lib_Path_Name /= null
262 -- Store the -fRTS switch (Note: Store_Compilation_Switch
263 -- changes -fRTS back into --RTS for the actual output).
265 Store_Compilation_Switch (Switch_Chars);
266 RTS_Specified := new String'(RTS_Lib_Path_Name
.all);
268 elsif RTS_Src_Path_Name
= null
269 and then RTS_Lib_Path_Name
= null
271 Osint
.Fail
("RTS path not valid: missing "
272 & "adainclude and adalib directories");
274 elsif RTS_Src_Path_Name
= null then
275 Osint
.Fail
("RTS path not valid: missing "
276 & "adainclude directory");
278 elsif RTS_Lib_Path_Name
= null then
279 Osint
.Fail
("RTS path not valid: missing "
280 & "adalib directory");
285 -- There are no other switches not starting with -gnat
288 Bad_Switch
(Switch_Chars
);
291 -- Case of switch starting with -gnat
296 -- Loop to scan through switches given in switch string
298 while Ptr
<= Max
loop
300 Store_Switch
:= True;
302 C
:= Switch_Chars
(Ptr
);
306 -- -gnata (assertions enabled)
310 Assertions_Enabled
:= True;
312 -- -gnatA (disregard gnat.adc)
316 Config_File
:= False;
318 -- -gnatb (brief messages to stderr)
322 Brief_Output
:= True;
324 -- -gnatB (assume no invalid values)
328 Assume_No_Invalid_Values
:= True;
330 -- -gnatc (check syntax and semantics only)
333 if not First_Switch
then
335 ("-gnatc must be first if combined with other switches");
339 Operating_Mode
:= Check_Semantics
;
341 -- -gnatC (Generate CodePeer information)
345 CodePeer_Mode
:= True;
347 -- -gnatd (compiler debug options)
351 Store_Switch
:= False;
354 First_Ptr
:= Ptr
+ 1;
356 -- Note: for the debug switch, the remaining characters in this
357 -- switch field must all be debug flags, since all valid switch
358 -- characters are also valid debug characters.
360 -- Loop to scan out debug flags
364 C
:= Switch_Chars
(Ptr
);
365 exit when C
= ASCII
.NUL
or else C
= '/' or else C
= '-';
367 if C
in '1' .. '9' or else
368 C
in 'a' .. 'z' or else
371 -- Case of dotted flag
374 Set_Dotted_Debug_Flag
(C
);
375 Store_Compilation_Switch
("-gnatd." & C
);
377 -- Special check, -gnatd.b must come first
380 and then (Ptr
/= First_Ptr
+ 1
381 or else not First_Switch
)
384 ("-gnatd.b must be first if combined with other "
388 -- Case of an underscored flag
390 elsif Underscore
then
391 Set_Underscored_Debug_Flag
(C
);
392 Store_Compilation_Switch
("-gnatd_" & C
);
398 Store_Compilation_Switch
("-gnatd" & C
);
408 Bad_Switch
("-gnatd." & Switch_Chars
(Ptr
.. Max
));
410 elsif Underscore
then
411 Bad_Switch
("-gnatd_" & Switch_Chars
(Ptr
.. Max
));
414 Bad_Switch
("-gnatd" & Switch_Chars
(Ptr
.. Max
));
420 -- -gnatD (debug expanded code)
425 -- Not allowed if previous -gnatR given
427 -- The reason for this prohibition is that the rewriting of
428 -- Sloc values causes strange malfunctions in the tests of
429 -- whether units belong to the main source. This is really a
430 -- bug, but too hard to fix for a marginal capability ???
432 -- The proper fix is to completely redo -gnatD processing so
433 -- that the tree is not messed with, and instead a separate
434 -- table is built on the side for debug information generation.
436 if List_Representation_Info
/= 0 then
438 ("-gnatD not permitted since -gnatR given previously");
441 -- Scan optional integer line limit value
443 if Nat_Present
(Switch_Chars
, Max
, Ptr
) then
444 Scan_Nat
(Switch_Chars
, Max
, Ptr
, Sprint_Line_Limit
, 'D');
445 Sprint_Line_Limit
:= Nat
'Max (Sprint_Line_Limit
, 40);
448 -- Note: -gnatD also sets -gnatx (to turn off cross-reference
449 -- generation in the ali file) since otherwise this generation
450 -- gets confused by the "wrong" Sloc values put in the tree.
452 Debug_Generated_Code
:= True;
453 Xref_Active
:= False;
454 Set_Debug_Flag
('g');
456 -- -gnate? (extended switches)
461 -- The -gnate? switches are all double character switches
462 -- so we must always have a character after the e.
465 Bad_Switch
("-gnate");
468 case Switch_Chars
(Ptr
) is
470 -- -gnatea (initial delimiter of explicit switches)
472 -- This is an internal switch
474 -- All switches that come before -gnatea have been added by
475 -- the GCC driver and are not stored in the ALI file.
476 -- See also -gnatez below.
479 Store_Switch
:= False;
480 Enable_Switch_Storing
;
483 -- -gnateA (aliasing checks on parameters)
487 Check_Aliasing_Of_Parameters
:= True;
489 -- -gnatec (configuration pragmas)
492 Store_Switch
:= False;
495 -- There may be an equal sign between -gnatec and
496 -- the path name of the config file.
498 if Ptr
<= Max
and then Switch_Chars
(Ptr
) = '=' then
503 Bad_Switch
("-gnatec");
507 Config_File_Name
: constant String_Access
:=
509 (Switch_Chars (Ptr .. Max));
512 if Config_File_Names = null then
514 new String_List'(1 => Config_File_Name
);
518 New_Names
: constant String_List_Access
:=
521 Config_File_Names
'Length + 1);
524 for Index
in Config_File_Names
'Range loop
526 Config_File_Names
(Index
);
527 Config_File_Names
(Index
) := null;
530 New_Names
(New_Names
'Last) := Config_File_Name
;
531 Free
(Config_File_Names
);
532 Config_File_Names
:= New_Names
;
539 -- -gnateC switch (generate CodePeer messages)
544 if not Generate_CodePeer_Messages
then
545 Generate_CodePeer_Messages
:= True;
546 CodePeer_Mode
:= True;
547 Warning_Mode
:= Normal
;
548 Warning_Doc_Switch
:= True; -- -gnatw.d
550 -- Enable warnings potentially useful for non GNAT
553 Constant_Condition_Warnings
:= True; -- -gnatwc
554 Warn_On_Assertion_Failure
:= True; -- -gnatw.a
555 Warn_On_Assumed_Low_Bound
:= True; -- -gnatww
556 Warn_On_Bad_Fixed_Value
:= True; -- -gnatwb
557 Warn_On_Biased_Representation
:= True; -- -gnatw.b
558 Warn_On_Export_Import
:= True; -- -gnatwx
559 Warn_On_No_Value_Assigned
:= True; -- -gnatwv
560 Warn_On_Object_Renames_Function
:= True; -- -gnatw.r
561 Warn_On_Overlap
:= True; -- -gnatw.i
562 Warn_On_Parameter_Order
:= True; -- -gnatw.p
563 Warn_On_Questionable_Missing_Parens
:= True; -- -gnatwq
564 Warn_On_Redundant_Constructs
:= True; -- -gnatwr
565 Warn_On_Suspicious_Modulus_Value
:= True; -- -gnatw.m
568 -- -gnated switch (disable atomic synchronization)
571 Suppress_Options
.Suppress
(Atomic_Synchronization
) :=
574 -- -gnateD switch (preprocessing symbol definition)
577 Store_Switch
:= False;
581 Bad_Switch
("-gnateD");
584 Add_Symbol_Definition
(Switch_Chars
(Ptr
.. Max
));
588 Store_Compilation_Switch
589 ("-gnateD" & Switch_Chars
(Ptr
.. Max
));
592 -- -gnateE (extra exception information)
595 Exception_Extra_Info
:= True;
598 -- -gnatef (full source path for brief error messages)
601 Store_Switch
:= False;
603 Full_Path_Name_For_Brief_Errors
:= True;
605 -- -gnateF (Check_Float_Overflow)
609 Check_Float_Overflow
:= not Machine_Overflows_On_Target
;
611 -- -gnateg (generate C code)
614 -- Special check, -gnateg must occur after -gnatc
616 if Operating_Mode
/= Check_Semantics
then
618 ("gnateg requires previous occurrence of -gnatc");
621 Generate_C_Code
:= True;
624 -- -gnateG (save preprocessor output)
627 Generate_Processed_File
:= True;
630 -- -gnatei (max number of instantiations)
635 (Switch_Chars
, Max
, Ptr
, Maximum_Instantiations
, C
);
637 -- -gnateI (index of unit in multi-unit source)
641 Scan_Pos
(Switch_Chars
, Max
, Ptr
, Multiple_Unit_Index
, C
);
647 Elab_Info_Messages
:= True;
653 Elab_Info_Messages
:= False;
655 -- -gnatem (mapping file)
658 Store_Switch
:= False;
661 -- There may be an equal sign between -gnatem and
662 -- the path name of the mapping file.
664 if Ptr
<= Max
and then Switch_Chars
(Ptr
) = '=' then
669 Bad_Switch
("-gnatem");
673 new String'(Switch_Chars (Ptr .. Max));
676 -- -gnateO= (object path file)
678 -- This is an internal switch
681 Store_Switch := False;
686 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
687 Bad_Switch ("-gnateO");
689 Object_Path_File_Name :=
690 new String'(Switch_Chars
(Ptr
+ 1 .. Max
));
695 -- -gnatep (preprocessing data file)
698 Store_Switch
:= False;
701 -- There may be an equal sign between -gnatep and
702 -- the path name of the mapping file.
704 if Ptr
<= Max
and then Switch_Chars
(Ptr
) = '=' then
709 Bad_Switch
("-gnatep");
712 Preprocessing_Data_File
:=
713 new String'(Switch_Chars (Ptr .. Max));
715 -- Store the switch, normalizing to -gnatep=
717 Store_Compilation_Switch
718 ("-gnatep=" & Preprocessing_Data_File.all);
722 -- -gnateP (Treat pragma Pure/Preelaborate errs as warnings)
725 Treat_Categorization_Errors_As_Warnings := True;
727 -- -gnates=file (specify extra file switches for gnat2why)
729 -- This is an internal switch
732 if not First_Switch then
734 ("-gnates must not be combined with other switches");
741 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
742 Bad_Switch ("-gnates");
744 SPARK_Switches_File_Name :=
745 new String'(Switch_Chars
(Ptr
+ 1 .. Max
));
750 -- -gnateS (generate SCO information)
752 -- Include Source Coverage Obligation information in ALI
753 -- files for use by source coverage analysis tools
754 -- (gnatcov) (equivalent to -fdump-scos, provided for
755 -- backwards compatibility).
758 Generate_SCO
:= True;
759 Generate_SCO_Instance_Table
:= True;
762 -- -gnatet (write target dependent information)
765 if not First_Switch
then
767 ("-gnatet must not be combined with other switches");
774 if Ptr
>= Max
or else Switch_Chars
(Ptr
) /= '=' then
775 Bad_Switch
("-gnatet");
777 Target_Dependent_Info_Write_Name
:=
778 new String'(Switch_Chars (Ptr + 1 .. Max));
783 -- -gnateT (read target dependent information)
786 if not First_Switch then
788 ("-gnateT must not be combined with other switches");
795 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
796 Bad_Switch ("-gnateT");
798 -- This parameter was stored by Set_Targ earlier
801 (Target_Dependent_Info_Read_Name.all =
802 Switch_Chars (Ptr + 1 .. Max));
808 -- -gnateu (unrecognized y,V,w switches)
812 Ignore_Unrecognized_VWY_Switches := True;
814 -- -gnateV (validity checks on parameters)
818 Check_Validity_Of_Parameters := True;
820 -- -gnateY (ignore Style_Checks pragmas)
823 Ignore_Style_Checks_Pragmas := True;
826 -- -gnatez (final delimiter of explicit switches)
828 -- This is an internal switch
830 -- All switches that come after -gnatez have been added by
831 -- the GCC driver and are not stored in the ALI file. See
832 -- also -gnatea above.
835 Store_Switch := False;
836 Disable_Switch_Storing;
839 -- All other -gnate? switches are unassigned
842 Bad_Switch ("-gnate" & Switch_Chars (Ptr .. Max));
845 -- -gnatE (dynamic elaboration checks)
849 Dynamic_Elaboration_Checks := True;
851 -- -gnatf (full error messages)
855 All_Errors_Mode := True;
857 -- -gnatF (overflow of predefined float types)
861 External_Name_Exp_Casing := Uppercase;
862 External_Name_Imp_Casing := Uppercase;
864 -- -gnatg (GNAT implementation mode)
869 GNAT_Mode_Config := True;
870 Identifier_Character_Set := 'n
';
871 System_Extend_Unit := Empty;
872 Warning_Mode := Treat_As_Error;
873 Style_Check_Main := True;
874 Ada_Version := Ada_2012;
875 Ada_Version_Explicit := Ada_2012;
876 Ada_Version_Pragma := Empty;
878 -- Set default warnings and style checks for -gnatg
880 Set_GNAT_Mode_Warnings;
881 Set_GNAT_Style_Check_Options;
883 -- -gnatG (output generated code)
887 Print_Generated_Code := True;
889 -- Scan optional integer line limit value
891 if Nat_Present (Switch_Chars, Max, Ptr) then
892 Scan_Nat (Switch_Chars, Max, Ptr, Sprint_Line_Limit, 'G
');
893 Sprint_Line_Limit := Nat'Max (Sprint_Line_Limit, 40);
896 -- -gnath (help information)
900 Usage_Requested := True;
902 -- -gnatH (legacy static elaboration checking mode enabled)
906 Legacy_Elaboration_Checks := True;
908 -- -gnati (character set)
912 Bad_Switch ("-gnati");
916 C := Switch_Chars (Ptr);
926 Identifier_Character_Set := C;
930 Bad_Switch ("-gnati" & Switch_Chars (Ptr .. Max));
933 -- -gnatI (ignore representation clauses)
937 Ignore_Rep_Clauses := True;
939 -- -gnatj (messages in limited length lines)
943 Scan_Nat (Switch_Chars, Max, Ptr, Error_Msg_Line_Length, C);
945 -- -gnatJ (relaxed elaboration checking mode enabled)
949 Relaxed_Elaboration_Checks := True;
951 -- Common relaxations for both ABE mechanisms
953 -- -gnatd.G (ignore calls through generic formal parameters
955 -- -gnatd.U (ignore indirect calls for static elaboration)
956 -- -gnatd.y (disable implicit pragma Elaborate_All on task
959 Debug_Flag_Dot_GG := True;
960 Debug_Flag_Dot_UU := True;
961 Debug_Flag_Dot_Y := True;
963 -- Relaxatons to the legacy ABE mechanism
965 if Legacy_Elaboration_Checks then
968 -- Relaxations to the default ABE mechanism
970 -- -gnatd_a (stop elaboration checks on accept or select
972 -- -gnatd_e (ignore entry calls and requeue statements for
974 -- -gnatd_i (ignore activations and calls to instances for
976 -- -gnatd_p (ignore assertion pragmas for elaboration)
977 -- -gnatdL (ignore external calls from instances for
981 Debug_Flag_Underscore_A := True;
982 Debug_Flag_Underscore_E := True;
983 Debug_Flag_Underscore_I := True;
984 Debug_Flag_Underscore_P := True;
985 Debug_Flag_LL := True;
988 -- -gnatk (limit file name length)
993 (Switch_Chars, Max, Ptr, Maximum_File_Name_Length, C);
995 -- -gnatl (output full source)
1001 -- There may be an equal sign between -gnatl and a file name
1003 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
1005 Osint.Fail ("file name for -gnatl= is null");
1007 Opt.Full_List_File_Name :=
1008 new String'(Switch_Chars
(Ptr
+ 1 .. Max
));
1013 -- -gnatL (corresponding source text)
1017 Dump_Source_Text
:= True;
1019 -- -gnatm (max number or errors/warnings)
1023 Scan_Nat
(Switch_Chars
, Max
, Ptr
, Maximum_Messages
, C
);
1025 -- -gnatn (enable pragma Inline)
1029 Inline_Active
:= True;
1031 -- There may be a digit (1 or 2) appended to the switch
1034 C
:= Switch_Chars
(Ptr
);
1036 if C
in '1' .. '2' then
1038 Inline_Level
:= Character'Pos (C
) - Character'Pos ('0');
1042 -- -gnatN (obsolescent)
1046 Inline_Active
:= True;
1047 Front_End_Inlining
:= True;
1049 -- -gnato (overflow checks)
1054 -- Case of -gnato0 (overflow checking turned off)
1056 if Ptr
<= Max
and then Switch_Chars
(Ptr
) = '0' then
1058 Suppress_Options
.Suppress
(Overflow_Check
) := True;
1060 -- We set strict mode in case overflow checking is turned
1061 -- on locally (also records that we had a -gnato switch).
1063 Suppress_Options
.Overflow_Mode_General
:= Strict
;
1064 Suppress_Options
.Overflow_Mode_Assertions
:= Strict
;
1066 -- All cases other than -gnato0 (overflow checking turned on)
1069 Suppress_Options
.Suppress
(Overflow_Check
) := False;
1071 -- Case of no digits after the -gnato
1074 or else Switch_Chars
(Ptr
) not in '1' .. '3'
1076 Suppress_Options
.Overflow_Mode_General
:= Strict
;
1077 Suppress_Options
.Overflow_Mode_Assertions
:= Strict
;
1079 -- At least one digit after the -gnato
1082 -- Handle first digit after -gnato
1084 Suppress_Options
.Overflow_Mode_General
:=
1085 Get_Overflow_Mode
(Switch_Chars
(Ptr
));
1088 -- Only one digit after -gnato, set assertions mode to be
1089 -- the same as general mode.
1092 or else Switch_Chars
(Ptr
) not in '1' .. '3'
1094 Suppress_Options
.Overflow_Mode_Assertions
:=
1095 Suppress_Options
.Overflow_Mode_General
;
1097 -- Process second digit after -gnato
1100 Suppress_Options
.Overflow_Mode_Assertions
:=
1101 Get_Overflow_Mode
(Switch_Chars
(Ptr
));
1107 -- -gnatO (specify name of the object file)
1109 -- This is an internal switch
1112 Store_Switch
:= False;
1114 Output_File_Name_Present
:= True;
1116 -- -gnatp (suppress all checks)
1121 -- Skip processing if cancelled by subsequent -gnat-p
1123 if Switch_Subsequently_Cancelled
("p", Args
, Arg_Rank
) then
1124 Store_Switch
:= False;
1127 -- Set all specific options as well as All_Checks in the
1128 -- Suppress_Options array, excluding Elaboration_Check,
1129 -- since this is treated specially because we do not want
1130 -- -gnatp to disable static elaboration processing. Also
1131 -- exclude Atomic_Synchronization, since this is not a real
1134 for J
in Suppress_Options
.Suppress
'Range loop
1135 if J
/= Elaboration_Check
1137 J
/= Atomic_Synchronization
1139 Suppress_Options
.Suppress
(J
) := True;
1143 Validity_Checks_On
:= False;
1144 Opt
.Suppress_Checks
:= True;
1146 -- Set overflow mode checking to strict in case it gets
1147 -- turned on locally (also signals that overflow checking
1148 -- has been specifically turned off).
1150 Suppress_Options
.Overflow_Mode_General
:= Strict
;
1151 Suppress_Options
.Overflow_Mode_Assertions
:= Strict
;
1154 -- -gnatP (periodic poll)
1158 Polling_Required
:= True;
1160 -- -gnatq (don't quit)
1164 Try_Semantics
:= True;
1166 -- -gnatQ (always write ALI file)
1170 Force_ALI_Tree_File
:= True;
1171 Try_Semantics
:= True;
1173 -- -gnatr (restrictions as warnings)
1177 Treat_Restrictions_As_Warnings
:= True;
1179 -- -gnatR (list rep. info)
1183 -- Not allowed if previous -gnatD given. See more extensive
1184 -- comments in the 'D' section for the inverse test.
1186 if Debug_Generated_Code
then
1188 ("-gnatR not permitted since -gnatD given previously");
1191 -- Set to annotate rep info, and set default -gnatR mode
1193 Back_Annotate_Rep_Info
:= True;
1194 List_Representation_Info
:= 1;
1196 -- Scan possible parameter
1199 while Ptr
<= Max
loop
1200 C
:= Switch_Chars
(Ptr
);
1205 List_Representation_Info
:=
1206 Character'Pos (C
) - Character'Pos ('0');
1209 List_Representation_Info_To_File
:= True;
1212 List_Representation_Info_Mechanisms
:= True;
1215 List_Representation_Info_Extended
:= True;
1218 Bad_Switch
("-gnatR" & Switch_Chars
(Ptr
.. Max
));
1224 -- -gnats (syntax check only)
1227 if not First_Switch
then
1229 ("-gnats must be first if combined with other switches");
1233 Operating_Mode
:= Check_Syntax
;
1235 -- -gnatS (print package Standard)
1238 Print_Standard
:= True;
1241 -- -gnatt (output tree)
1245 Tree_Output
:= True;
1246 Back_Annotate_Rep_Info
:= True;
1248 -- -gnatT (change start of internal table sizes)
1252 Scan_Pos
(Switch_Chars
, Max
, Ptr
, Table_Factor
, C
);
1254 -- -gnatu (list units for compilation)
1260 -- -gnatU (unique tags)
1264 Unique_Error_Tag
:= True;
1266 -- -gnatv (verbose mode)
1270 Verbose_Mode
:= True;
1272 -- -gnatV (validity checks)
1275 Store_Switch
:= False;
1279 Bad_Switch
("-gnatV");
1286 Set_Validity_Check_Options
1287 (Switch_Chars
(Ptr
.. Max
), OK
, Ptr
);
1290 Bad_Switch
("-gnatV" & Switch_Chars
(Ptr
.. Max
));
1293 for Index
in First_Char
+ 1 .. Max
loop
1294 Store_Compilation_Switch
1295 ("-gnatV" & Switch_Chars
(Index
));
1302 -- -gnatw (warning modes)
1305 Store_Switch
:= False;
1309 Bad_Switch
("-gnatw");
1312 while Ptr
<= Max
loop
1313 C
:= Switch_Chars
(Ptr
);
1315 -- Case of dot switch
1317 if C
= '.' and then Ptr
< Max
then
1319 C
:= Switch_Chars
(Ptr
);
1321 if Set_Dot_Warning_Switch
(C
) then
1322 Store_Compilation_Switch
("-gnatw." & C
);
1324 Bad_Switch
("-gnatw." & Switch_Chars
(Ptr
.. Max
));
1327 -- Case of underscore switch
1329 elsif C
= '_' and then Ptr
< Max
then
1331 C
:= Switch_Chars
(Ptr
);
1333 if Set_Underscore_Warning_Switch
(C
) then
1334 Store_Compilation_Switch
("-gnatw_" & C
);
1336 Bad_Switch
("-gnatw_" & Switch_Chars
(Ptr
.. Max
));
1342 if Set_Warning_Switch
(C
) then
1343 Store_Compilation_Switch
("-gnatw" & C
);
1345 Bad_Switch
("-gnatw" & Switch_Chars
(Ptr
.. Max
));
1354 -- -gnatW (wide character encoding method)
1360 Bad_Switch
("-gnatW");
1364 Wide_Character_Encoding_Method
:=
1365 Get_WC_Encoding_Method
(Switch_Chars
(Ptr
));
1367 when Constraint_Error
=>
1368 Bad_Switch
("-gnatW" & Switch_Chars
(Ptr
.. Max
));
1371 Wide_Character_Encoding_Method_Specified
:= True;
1373 Upper_Half_Encoding
:=
1374 Wide_Character_Encoding_Method
in
1375 WC_Upper_Half_Encoding_Method
;
1379 -- -gnatx (suppress cross-ref information)
1383 Xref_Active
:= False;
1385 -- -gnatX (language extensions)
1389 Extensions_Allowed
:= True;
1390 Ada_Version
:= Ada_Version_Type
'Last;
1391 Ada_Version_Explicit
:= Ada_Version_Type
'Last;
1392 Ada_Version_Pragma
:= Empty
;
1394 -- -gnaty (style checks)
1398 Style_Check_Main
:= True;
1401 Set_Default_Style_Check_Options
;
1404 Store_Switch
:= False;
1410 Set_Style_Check_Options
1411 (Switch_Chars
(Ptr
.. Max
), OK
, Ptr
);
1415 ("bad -gnaty switch (" &
1416 Style_Msg_Buf
(1 .. Style_Msg_Len
) & ')');
1419 Ptr
:= First_Char
+ 1;
1420 while Ptr
<= Max
loop
1421 if Switch_Chars
(Ptr
) = 'M' then
1426 or else Switch_Chars
(Ptr
) not in '0' .. '9';
1429 Store_Compilation_Switch
1430 ("-gnaty" & Switch_Chars
(First_Char
.. Ptr
- 1));
1433 Store_Compilation_Switch
1434 ("-gnaty" & Switch_Chars
(Ptr
));
1441 -- -gnatz (stub generation)
1445 -- -gnatz must be the first and only switch in Switch_Chars,
1446 -- and is a two-letter switch.
1448 if Ptr
/= Switch_Chars
'First + 5
1449 or else (Max
- Ptr
+ 1) > 2
1452 ("-gnatz* may not be combined with other switches");
1456 Bad_Switch
("-gnatz");
1461 -- Only one occurrence of -gnat* is permitted
1463 if Distribution_Stub_Mode
= No_Stubs
then
1464 case Switch_Chars
(Ptr
) is
1466 Distribution_Stub_Mode
:= Generate_Receiver_Stub_Body
;
1469 Distribution_Stub_Mode
:= Generate_Caller_Stub_Body
;
1472 Bad_Switch
("-gnatz" & Switch_Chars
(Ptr
.. Max
));
1478 Osint
.Fail
("only one -gnatz* switch allowed");
1481 -- -gnatZ (obsolescent)
1486 ("-gnatZ is no longer supported: consider using --RTS=zcx");
1488 -- Note on language version switches: whenever a new language
1489 -- version switch is added, Switch.M.Normalize_Compiler_Switches
1496 Bad_Switch
("-gnat8");
1501 if Switch_Chars
(Ptr
) /= '3' or else Latest_Ada_Only
then
1502 Bad_Switch
("-gnat8" & Switch_Chars
(Ptr
.. Max
));
1505 Ada_Version
:= Ada_83
;
1506 Ada_Version_Explicit
:= Ada_83
;
1507 Ada_Version_Pragma
:= Empty
;
1514 Bad_Switch
("-gnat9");
1519 if Switch_Chars
(Ptr
) /= '5' or else Latest_Ada_Only
then
1520 Bad_Switch
("-gnat9" & Switch_Chars
(Ptr
.. Max
));
1523 Ada_Version
:= Ada_95
;
1524 Ada_Version_Explicit
:= Ada_95
;
1525 Ada_Version_Pragma
:= Empty
;
1532 Bad_Switch
("-gnat0");
1537 if Switch_Chars
(Ptr
) /= '5' or else Latest_Ada_Only
then
1538 Bad_Switch
("-gnat0" & Switch_Chars
(Ptr
.. Max
));
1541 Ada_Version
:= Ada_2005
;
1542 Ada_Version_Explicit
:= Ada_2005
;
1543 Ada_Version_Pragma
:= Empty
;
1550 Bad_Switch
("-gnat1");
1555 if Switch_Chars
(Ptr
) /= '2' then
1556 Bad_Switch
("-gnat1" & Switch_Chars
(Ptr
.. Max
));
1559 Ada_Version
:= Ada_2012
;
1560 Ada_Version_Explicit
:= Ada_2012
;
1561 Ada_Version_Pragma
:= Empty
;
1564 -- -gnat2005 and -gnat2012
1567 if Ptr
> Max
- 3 then
1568 Bad_Switch
("-gnat" & Switch_Chars
(Ptr
.. Max
));
1570 elsif Switch_Chars
(Ptr
.. Ptr
+ 3) = "2005"
1571 and then not Latest_Ada_Only
1573 Ada_Version
:= Ada_2005
;
1575 elsif Switch_Chars
(Ptr
.. Ptr
+ 3) = "2012" then
1576 Ada_Version
:= Ada_2012
;
1578 elsif Switch_Chars
(Ptr
.. Ptr
+ 3) = "2020" then
1579 Ada_Version
:= Ada_2020
;
1582 Bad_Switch
("-gnat" & Switch_Chars
(Ptr
.. Ptr
+ 3));
1585 Ada_Version_Explicit
:= Ada_Version
;
1586 Ada_Version_Pragma
:= Empty
;
1589 -- Switch cancellation, currently only -gnat-p is allowed.
1590 -- All we do here is the error checking, since the actual
1591 -- processing for switch cancellation is done by calls to
1592 -- Switch_Subsequently_Cancelled at the appropriate point.
1596 -- Simple ignore -gnat-p
1598 if Switch_Chars
= "-gnat-p" then
1601 -- Any other occurrence of minus is ignored. This is for
1602 -- maximum compatibility with previous version which ignored
1603 -- all occurrences of minus.
1606 Store_Switch
:= False;
1610 -- We ignore '/' in switches, this is historical, still needed???
1613 Store_Switch
:= False;
1615 -- Anything else is an error (illegal switch character)
1618 Bad_Switch
("-gnat" & Switch_Chars
(Ptr
.. Max
));
1621 if Store_Switch
then
1622 Store_Compilation_Switch
1623 ("-gnat" & Switch_Chars
(First_Char
.. Ptr
- 1));
1626 First_Switch
:= False;
1629 end Scan_Front_End_Switches
;
1631 -----------------------------------
1632 -- Switch_Subsequently_Cancelled --
1633 -----------------------------------
1635 function Switch_Subsequently_Cancelled
1638 Arg_Rank
: Positive) return Boolean
1641 -- Loop through arguments following the current one
1643 for Arg
in Arg_Rank
+ 1 .. Args
'Last loop
1644 if Args
(Arg
).all = "-gnat-" & C
then
1649 -- No match found, not cancelled
1652 end Switch_Subsequently_Cancelled
;