1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2001-2014, 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
;
32 with Osint
; use Osint
;
34 with Stylesw
; use Stylesw
;
35 with Targparm
; use Targparm
;
36 with Ttypes
; use Ttypes
;
37 with Validsw
; use Validsw
;
38 with Warnsw
; use Warnsw
;
40 with Ada
.Unchecked_Deallocation
;
42 with System
.WCh_Con
; use System
.WCh_Con
;
45 package body Switch
.C
is
47 RTS_Specified
: String_Access
:= null;
48 -- Used to detect multiple use of --RTS= flag
50 procedure Add_Symbol_Definition
(Def
: String);
51 -- Add a symbol definition from the command line
54 new Ada
.Unchecked_Deallocation
(String_List
, String_List_Access
);
55 -- Avoid using System.Strings.Free, which also frees the designated strings
57 function Get_Overflow_Mode
(C
: Character) return Overflow_Mode_Type
;
58 -- Given a digit in the range 0 .. 3, returns the corresponding value of
59 -- Overflow_Mode_Type. Raises Program_Error if C is outside this range.
61 function Switch_Subsequently_Cancelled
64 Arg_Rank
: Positive) return Boolean;
65 -- This function is called from Scan_Front_End_Switches. It determines if
66 -- the switch currently being scanned is followed by a switch of the form
67 -- "-gnat-" & C, where C is the argument. If so, then True is returned,
68 -- and Scan_Front_End_Switches will cancel the effect of the switch. If
69 -- no such switch is found, False is returned.
71 ---------------------------
72 -- Add_Symbol_Definition --
73 ---------------------------
75 procedure Add_Symbol_Definition
(Def
: String) is
77 -- If Preprocessor_Symbol_Defs is not large enough, double its size
79 if Preprocessing_Symbol_Last
= Preprocessing_Symbol_Defs
'Last then
81 New_Symbol_Definitions
: constant String_List_Access
:=
82 new String_List
(1 .. 2 * Preprocessing_Symbol_Last
);
84 New_Symbol_Definitions
(Preprocessing_Symbol_Defs
'Range) :=
85 Preprocessing_Symbol_Defs
.all;
86 Free
(Preprocessing_Symbol_Defs
);
87 Preprocessing_Symbol_Defs
:= New_Symbol_Definitions
;
91 Preprocessing_Symbol_Last
:= Preprocessing_Symbol_Last
+ 1;
92 Preprocessing_Symbol_Defs
(Preprocessing_Symbol_Last
) :=
94 end Add_Symbol_Definition;
96 -----------------------
97 -- Get_Overflow_Mode --
98 -----------------------
100 function Get_Overflow_Mode (C : Character) return Overflow_Mode_Type is
109 -- Eliminated allowed only if Long_Long_Integer is 64 bits (since
110 -- the current implementation of System.Bignums assumes this).
113 if Standard_Long_Long_Integer_Size /= 64 then
114 Bad_Switch ("-gnato3 not implemented for this configuration");
122 end Get_Overflow_Mode;
124 -----------------------------
125 -- Scan_Front_End_Switches --
126 -----------------------------
128 procedure Scan_Front_End_Switches
129 (Switch_Chars : String;
133 First_Switch : Boolean := True;
134 -- False for all but first switch
136 Max : constant Natural := Switch_Chars'Last;
138 C : Character := ' ';
141 Store_Switch : Boolean;
142 -- For -gnatxx switches, the normal processing, signalled by this flag
143 -- being set to True, is to store the switch on exit from the case
144 -- statement, the switch stored is -gnat followed by the characters
145 -- from First_Char to Ptr-1. For cases like -gnaty, where the switch
146 -- is stored in separate pieces, this flag is set to False, and the
147 -- appropriate calls to Store_Compilation_Switch are made from within
150 First_Char : Positive;
151 -- Marks start of switch to be stored
153 First_Ptr : Positive;
154 -- Save position of first character after -gnatd (for checking that
155 -- debug flags that must come first are first, in particular -gnatd.b),
158 Ptr := Switch_Chars'First;
160 -- Skip past the initial character (must be the switch character)
168 -- Handle switches that do not start with -gnat
170 if Ptr + 3 > Max or else Switch_Chars (Ptr .. Ptr + 3) /= "gnat" then
172 -- There are two front-end switches that do not start with -gnat:
175 if Switch_Chars (Ptr) = 'I
' then
177 -- Set flag Search_Directory_Present if switch is "-I" only:
178 -- the directory will be the next argument.
181 Search_Directory_Present := True;
187 -- Find out whether this is a -I- or regular -Ixxx switch
189 -- Note: -I switches are not recorded in the ALI file, since the
190 -- meaning of the program depends on the source files compiled,
191 -- not where they came from.
193 if Ptr = Max and then Switch_Chars (Ptr) = '-' then
194 Look_In_Primary_Dir := False;
196 Add_Src_Search_Dir (Switch_Chars (Ptr .. Max));
199 -- Processing of the --RTS switch. --RTS may have been modified by
200 -- gcc into -fRTS (for GCC targets).
203 and then (Switch_Chars (Ptr .. Ptr + 3) = "fRTS"
205 Switch_Chars (Ptr .. Ptr + 3) = "-RTS")
210 or else Switch_Chars (Ptr + 3) /= '='
212 Osint.Fail ("missing path for --RTS");
216 Runtime_Dir : String_Access;
219 if System.OS_Lib.Is_Absolute_Path
220 (Switch_Chars (Ptr + 4 .. Max))
224 (System
.OS_Lib
.Normalize_Pathname
225 (Switch_Chars
(Ptr
+ 4 .. Max
)));
229 new String'(Switch_Chars (Ptr + 4 .. Max));
232 -- Check that this is the first time --RTS is specified
233 -- or if it is not the first time, the same path has been
236 if RTS_Specified = null then
237 RTS_Specified := Runtime_Dir;
239 elsif RTS_Specified.all /= Runtime_Dir.all then
240 Osint.Fail ("--RTS cannot be specified multiple times");
243 -- Valid --RTS switch
245 Opt.No_Stdinc := True;
246 Opt.RTS_Switch := True;
249 Get_RTS_Search_Dir (Runtime_Dir.all, Include);
252 Get_RTS_Search_Dir (Runtime_Dir.all, Objects);
254 if RTS_Src_Path_Name /= null
255 and then RTS_Lib_Path_Name /= null
257 -- Store the -fRTS switch (Note: Store_Compilation_Switch
258 -- changes -fRTS back into --RTS for the actual output).
260 Store_Compilation_Switch (Switch_Chars);
262 elsif RTS_Src_Path_Name = null
263 and then RTS_Lib_Path_Name = null
265 Osint.Fail ("RTS path not valid: missing "
266 & "adainclude and adalib directories");
268 elsif RTS_Src_Path_Name = null then
269 Osint.Fail ("RTS path not valid: missing "
270 & "adainclude directory");
272 elsif RTS_Lib_Path_Name = null then
273 Osint.Fail ("RTS path not valid: missing "
274 & "adalib directory");
279 -- There are no other switches not starting with -gnat
282 Bad_Switch (Switch_Chars);
285 -- Case of switch starting with -gnat
290 -- Loop to scan through switches given in switch string
292 while Ptr <= Max loop
294 Store_Switch := True;
296 C := Switch_Chars (Ptr);
300 -- -gnata (assertions enabled)
304 Assertions_Enabled := True;
306 -- -gnatA (disregard gnat.adc)
310 Config_File := False;
312 -- -gnatb (brief messages to stderr)
316 Brief_Output := True;
318 -- -gnatB (assume no invalid values)
322 Assume_No_Invalid_Values := True;
324 -- -gnatc (check syntax and semantics only)
327 if not First_Switch then
329 ("-gnatc must be first if combined with other switches");
333 Operating_Mode := Check_Semantics;
335 -- -gnatC (Generate CodePeer information)
340 if not CodePeer_Mode then
341 CodePeer_Mode := True;
343 -- Suppress compiler warnings by default, since what we are
344 -- interested in here is what CodePeer can find out. Note
345 -- that if -gnatwxxx is specified after -gnatC on the
346 -- command line, we do not want to override this setting in
347 -- Adjust_Global_Switches, and assume that the user wants to
348 -- get both warnings from GNAT and CodePeer messages.
350 Warning_Mode := Suppress;
353 -- -gnatd (compiler debug options)
356 Store_Switch := False;
358 First_Ptr := Ptr + 1;
360 -- Note: for the debug switch, the remaining characters in this
361 -- switch field must all be debug flags, since all valid switch
362 -- characters are also valid debug characters.
364 -- Loop to scan out debug flags
368 C := Switch_Chars (Ptr);
369 exit when C = ASCII.NUL or else C = '/' or else C = '-';
371 if C in '1' .. '9' or else
372 C in 'a
' .. 'z
' or else
375 -- Case of dotted flag
378 Set_Dotted_Debug_Flag (C);
379 Store_Compilation_Switch ("-gnatd." & C);
381 -- Special check, -gnatd.b must come first
384 and then (Ptr /= First_Ptr + 1
385 or else not First_Switch)
388 ("-gnatd.b must be first if combined "
389 & "with other switches");
396 Store_Compilation_Switch ("-gnatd" & C);
403 Bad_Switch ("-gnatd." & Switch_Chars (Ptr .. Max));
405 Bad_Switch ("-gnatd" & Switch_Chars (Ptr .. Max));
411 -- -gnatD (debug expanded code)
416 -- Not allowed if previous -gnatR given
418 -- The reason for this prohibition is that the rewriting of
419 -- Sloc values causes strange malfunctions in the tests of
420 -- whether units belong to the main source. This is really a
421 -- bug, but too hard to fix for a marginal capability ???
423 -- The proper fix is to completely redo -gnatD processing so
424 -- that the tree is not messed with, and instead a separate
425 -- table is built on the side for debug information generation.
427 if List_Representation_Info /= 0 then
429 ("-gnatD not permitted since -gnatR given previously");
432 -- Scan optional integer line limit value
434 if Nat_Present (Switch_Chars, Max, Ptr) then
435 Scan_Nat (Switch_Chars, Max, Ptr, Sprint_Line_Limit, 'D
');
436 Sprint_Line_Limit := Nat'Max (Sprint_Line_Limit, 40);
439 -- Note: -gnatD also sets -gnatx (to turn off cross-reference
440 -- generation in the ali file) since otherwise this generation
441 -- gets confused by the "wrong" Sloc values put in the tree.
443 Debug_Generated_Code := True;
444 Xref_Active := False;
445 Set_Debug_Flag ('g
');
447 -- -gnate? (extended switches)
452 -- The -gnate? switches are all double character switches
453 -- so we must always have a character after the e.
456 Bad_Switch ("-gnate");
459 case Switch_Chars (Ptr) is
461 -- -gnatea (initial delimiter of explicit switches)
463 -- This is an internal switch
465 -- All switches that come before -gnatea have been added by
466 -- the GCC driver and are not stored in the ALI file.
467 -- See also -gnatez below.
470 Store_Switch := False;
471 Enable_Switch_Storing;
474 -- -gnateA (aliasing checks on parameters)
478 Check_Aliasing_Of_Parameters := True;
480 -- -gnatec (configuration pragmas)
483 Store_Switch := False;
486 -- There may be an equal sign between -gnatec and
487 -- the path name of the config file.
489 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
494 Bad_Switch ("-gnatec");
498 Config_File_Name : constant String_Access :=
500 (Switch_Chars
(Ptr
.. Max
));
503 if Config_File_Names
= null then
505 new String_List
'(1 => Config_File_Name);
509 New_Names : constant String_List_Access :=
512 Config_File_Names'Length + 1);
515 for Index in Config_File_Names'Range loop
517 Config_File_Names (Index);
518 Config_File_Names (Index) := null;
521 New_Names (New_Names'Last) := Config_File_Name;
522 Free (Config_File_Names);
523 Config_File_Names := New_Names;
530 -- -gnateC switch (generate CodePeer messages)
534 Generate_CodePeer_Messages := True;
536 -- -gnated switch (disable atomic synchronization)
539 Suppress_Options.Suppress (Atomic_Synchronization) :=
542 -- -gnateD switch (preprocessing symbol definition)
545 Store_Switch := False;
549 Bad_Switch ("-gnateD");
552 Add_Symbol_Definition (Switch_Chars (Ptr .. Max));
556 Store_Compilation_Switch
557 ("-gnateD" & Switch_Chars (Ptr .. Max));
560 -- -gnateE (extra exception information)
563 Exception_Extra_Info := True;
566 -- -gnatef (full source path for brief error messages)
569 Store_Switch := False;
571 Full_Path_Name_For_Brief_Errors := True;
573 -- -gnateF (Check_Float_Overflow)
577 Check_Float_Overflow := not Machine_Overflows_On_Target;
579 -- -gnateG (save preprocessor output)
582 Generate_Processed_File := True;
585 -- -gnatei (max number of instantiations)
590 (Switch_Chars, Max, Ptr, Maximum_Instantiations, C);
592 -- -gnateI (index of unit in multi-unit source)
596 Scan_Pos (Switch_Chars, Max, Ptr, Multiple_Unit_Index, C);
602 Elab_Info_Messages := True;
608 Elab_Info_Messages := False;
610 -- -gnatem (mapping file)
613 Store_Switch := False;
616 -- There may be an equal sign between -gnatem and
617 -- the path name of the mapping file.
619 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
624 Bad_Switch ("-gnatem");
628 new String'(Switch_Chars
(Ptr
.. Max
));
631 -- -gnateO= (object path file)
633 -- This is an internal switch
636 Store_Switch
:= False;
641 if Ptr
>= Max
or else Switch_Chars
(Ptr
) /= '=' then
642 Bad_Switch
("-gnateO");
644 Object_Path_File_Name
:=
645 new String'(Switch_Chars (Ptr + 1 .. Max));
650 -- -gnatep (preprocessing data file)
653 Store_Switch := False;
656 -- There may be an equal sign between -gnatep and
657 -- the path name of the mapping file.
659 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
664 Bad_Switch ("-gnatep");
667 Preprocessing_Data_File :=
668 new String'(Switch_Chars
(Ptr
.. Max
));
670 -- Store the switch, normalizing to -gnatep=
672 Store_Compilation_Switch
673 ("-gnatep=" & Preprocessing_Data_File
.all);
677 -- -gnateP (Treat pragma Pure/Preelaborate errs as warnings)
680 Treat_Categorization_Errors_As_Warnings
:= True;
682 -- -gnates=file (specify extra file switches for gnat2why)
684 -- This is an internal switch
687 if not First_Switch
then
689 ("-gnates must not be combined with other switches");
696 if Ptr
>= Max
or else Switch_Chars
(Ptr
) /= '=' then
697 Bad_Switch
("-gnates");
699 SPARK_Switches_File_Name
:=
700 new String'(Switch_Chars (Ptr + 1 .. Max));
705 -- -gnateS (generate SCO information)
707 -- Include Source Coverage Obligation information in ALI
708 -- files for use by source coverage analysis tools
709 -- (gnatcov) (equivalent to -fdump-scos, provided for
710 -- backwards compatibility).
713 Generate_SCO := True;
714 Generate_SCO_Instance_Table := True;
717 -- -gnatet (write target dependent information)
720 if not First_Switch then
722 ("-gnatet must not be combined with other switches");
729 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
730 Bad_Switch ("-gnatet");
732 Target_Dependent_Info_Write_Name :=
733 new String'(Switch_Chars
(Ptr
+ 1 .. Max
));
738 -- -gnateT (read target dependent information)
741 if not First_Switch
then
743 ("-gnateT must not be combined with other switches");
750 if Ptr
>= Max
or else Switch_Chars
(Ptr
) /= '=' then
751 Bad_Switch
("-gnateT");
753 -- This parameter was stored by Set_Targ earlier
756 (Target_Dependent_Info_Read_Name
.all =
757 Switch_Chars
(Ptr
+ 1 .. Max
));
763 -- -gnateu (unrecognized y,V,w switches)
767 Ignore_Unrecognized_VWY_Switches
:= True;
769 -- -gnateV (validity checks on parameters)
773 Check_Validity_Of_Parameters
:= True;
775 -- -gnateY (ignore Style_Checks pragmas)
778 Ignore_Style_Checks_Pragmas
:= True;
781 -- -gnatez (final delimiter of explicit switches)
783 -- This is an internal switch
785 -- All switches that come after -gnatez have been added by
786 -- the GCC driver and are not stored in the ALI file. See
787 -- also -gnatea above.
790 Store_Switch
:= False;
791 Disable_Switch_Storing
;
794 -- All other -gnate? switches are unassigned
797 Bad_Switch
("-gnate" & Switch_Chars
(Ptr
.. Max
));
800 -- -gnatE (dynamic elaboration checks)
804 Dynamic_Elaboration_Checks
:= True;
806 -- -gnatf (full error messages)
810 All_Errors_Mode
:= True;
812 -- -gnatF (overflow of predefined float types)
816 External_Name_Exp_Casing
:= Uppercase
;
817 External_Name_Imp_Casing
:= Uppercase
;
819 -- -gnatg (GNAT implementation mode)
824 Identifier_Character_Set
:= 'n';
825 System_Extend_Unit
:= Empty
;
826 Warning_Mode
:= Treat_As_Error
;
827 Style_Check_Main
:= True;
828 Ada_Version
:= Ada_2012
;
829 Ada_Version_Explicit
:= Ada_2012
;
830 Ada_Version_Pragma
:= Empty
;
832 -- Set default warnings and style checks for -gnatg
834 Set_GNAT_Mode_Warnings
;
835 Set_GNAT_Style_Check_Options
;
837 -- -gnatG (output generated code)
841 Print_Generated_Code
:= True;
843 -- Scan optional integer line limit value
845 if Nat_Present
(Switch_Chars
, Max
, Ptr
) then
846 Scan_Nat
(Switch_Chars
, Max
, Ptr
, Sprint_Line_Limit
, 'G');
847 Sprint_Line_Limit
:= Nat
'Max (Sprint_Line_Limit
, 40);
850 -- -gnath (help information)
854 Usage_Requested
:= True;
856 -- -gnati (character set)
860 Bad_Switch
("-gnati");
864 C
:= Switch_Chars
(Ptr
);
874 Identifier_Character_Set
:= C
;
878 Bad_Switch
("-gnati" & Switch_Chars
(Ptr
.. Max
));
881 -- -gnatI (ignore representation clauses)
885 Ignore_Rep_Clauses
:= True;
887 -- -gnatj (messages in limited length lines)
891 Scan_Nat
(Switch_Chars
, Max
, Ptr
, Error_Msg_Line_Length
, C
);
893 -- -gnatk (limit file name length)
898 (Switch_Chars
, Max
, Ptr
, Maximum_File_Name_Length
, C
);
900 -- -gnatl (output full source)
906 -- There may be an equal sign between -gnatl and a file name
908 if Ptr
<= Max
and then Switch_Chars
(Ptr
) = '=' then
910 Osint
.Fail
("file name for -gnatl= is null");
912 Opt
.Full_List_File_Name
:=
913 new String'(Switch_Chars (Ptr + 1 .. Max));
918 -- -gnatL (corresponding source text)
922 Dump_Source_Text := True;
924 -- -gnatm (max number or errors/warnings)
928 Scan_Nat (Switch_Chars, Max, Ptr, Maximum_Messages, C);
930 -- -gnatn (enable pragma Inline)
934 Inline_Active := True;
936 -- There may be a digit (1 or 2) appended to the switch
939 C := Switch_Chars (Ptr);
941 if C in '1' .. '2' then
943 Inline_Level := Character'Pos (C) - Character'Pos ('0');
947 -- -gnatN (obsolescent)
951 Inline_Active := True;
952 Front_End_Inlining := True;
954 -- -gnato (overflow checks)
959 -- Case of -gnato0 (overflow checking turned off)
961 if Ptr <= Max and then Switch_Chars (Ptr) = '0' then
963 Suppress_Options.Suppress (Overflow_Check) := True;
965 -- We set strict mode in case overflow checking is turned
966 -- on locally (also records that we had a -gnato switch).
968 Suppress_Options.Overflow_Mode_General := Strict;
969 Suppress_Options.Overflow_Mode_Assertions := Strict;
971 -- All cases other than -gnato0 (overflow checking turned on)
974 Suppress_Options.Suppress (Overflow_Check) := False;
976 -- Case of no digits after the -gnato
979 or else Switch_Chars (Ptr) not in '1' .. '3'
981 Suppress_Options.Overflow_Mode_General := Strict;
982 Suppress_Options.Overflow_Mode_Assertions := Strict;
984 -- At least one digit after the -gnato
987 -- Handle first digit after -gnato
989 Suppress_Options.Overflow_Mode_General :=
990 Get_Overflow_Mode (Switch_Chars (Ptr));
993 -- Only one digit after -gnato, set assertions mode to be
994 -- the same as general mode.
997 or else Switch_Chars (Ptr) not in '1' .. '3'
999 Suppress_Options.Overflow_Mode_Assertions :=
1000 Suppress_Options.Overflow_Mode_General;
1002 -- Process second digit after -gnato
1005 Suppress_Options.Overflow_Mode_Assertions :=
1006 Get_Overflow_Mode (Switch_Chars (Ptr));
1012 -- -gnatO (specify name of the object file)
1014 -- This is an internal switch
1017 Store_Switch := False;
1019 Output_File_Name_Present := True;
1021 -- -gnatp (suppress all checks)
1026 -- Skip processing if cancelled by subsequent -gnat-p
1028 if Switch_Subsequently_Cancelled ("p", Args, Arg_Rank) then
1029 Store_Switch := False;
1032 -- Set all specific options as well as All_Checks in the
1033 -- Suppress_Options array, excluding Elaboration_Check,
1034 -- since this is treated specially because we do not want
1035 -- -gnatp to disable static elaboration processing. Also
1036 -- exclude Atomic_Synchronization, since this is not a real
1039 for J in Suppress_Options.Suppress'Range loop
1040 if J /= Elaboration_Check
1042 J /= Atomic_Synchronization
1044 Suppress_Options.Suppress (J) := True;
1048 Validity_Checks_On := False;
1049 Opt.Suppress_Checks := True;
1051 -- Set overflow mode checking to strict in case it gets
1052 -- turned on locally (also signals that overflow checking
1053 -- has been specifically turned off).
1055 Suppress_Options.Overflow_Mode_General := Strict;
1056 Suppress_Options.Overflow_Mode_Assertions := Strict;
1059 -- -gnatP (periodic poll)
1063 Polling_Required := True;
1065 -- -gnatq (don't quit)
1069 Try_Semantics := True;
1071 -- -gnatQ (always write ALI file)
1075 Force_ALI_Tree_File := True;
1076 Try_Semantics := True;
1078 -- -gnatr (restrictions as warnings)
1082 Treat_Restrictions_As_Warnings := True;
1084 -- -gnatR (list rep. info)
1088 -- Not allowed if previous -gnatD given. See more extensive
1089 -- comments in the 'D
' section for the inverse test.
1091 if Debug_Generated_Code then
1093 ("-gnatR not permitted since -gnatD given previously");
1096 -- Set to annotate rep info, and set default -gnatR mode
1098 Back_Annotate_Rep_Info := True;
1099 List_Representation_Info := 1;
1101 -- Scan possible parameter
1104 while Ptr <= Max loop
1105 C := Switch_Chars (Ptr);
1107 if C in '1' .. '3' then
1108 List_Representation_Info :=
1109 Character'Pos (C) - Character'Pos ('0');
1111 elsif Switch_Chars (Ptr) = 's
' then
1112 List_Representation_Info_To_File := True;
1114 elsif Switch_Chars (Ptr) = 'm
' then
1115 List_Representation_Info_Mechanisms := True;
1118 Bad_Switch ("-gnatR" & Switch_Chars (Ptr .. Max));
1124 -- -gnats (syntax check only)
1127 if not First_Switch then
1129 ("-gnats must be first if combined with other switches");
1133 Operating_Mode := Check_Syntax;
1135 -- -gnatS (print package Standard)
1138 Print_Standard := True;
1141 -- -gnatt (output tree)
1145 Tree_Output := True;
1146 Back_Annotate_Rep_Info := True;
1148 -- -gnatT (change start of internal table sizes)
1152 Scan_Pos (Switch_Chars, Max, Ptr, Table_Factor, C);
1154 -- -gnatu (list units for compilation)
1160 -- -gnatU (unique tags)
1164 Unique_Error_Tag := True;
1166 -- -gnatv (verbose mode)
1170 Verbose_Mode := True;
1172 -- -gnatV (validity checks)
1175 Store_Switch := False;
1179 Bad_Switch ("-gnatV");
1186 Set_Validity_Check_Options
1187 (Switch_Chars (Ptr .. Max), OK, Ptr);
1190 Bad_Switch ("-gnatV" & Switch_Chars (Ptr .. Max));
1193 for Index in First_Char + 1 .. Max loop
1194 Store_Compilation_Switch
1195 ("-gnatV" & Switch_Chars (Index));
1202 -- -gnatw (warning modes)
1205 Store_Switch := False;
1209 Bad_Switch ("-gnatw");
1212 while Ptr <= Max loop
1213 C := Switch_Chars (Ptr);
1215 -- Case of dot switch
1217 if C = '.' and then Ptr < Max then
1219 C := Switch_Chars (Ptr);
1221 if Set_Dot_Warning_Switch (C) then
1222 Store_Compilation_Switch ("-gnatw." & C);
1224 Bad_Switch ("-gnatw." & Switch_Chars (Ptr .. Max));
1227 -- Normal case, no dot
1230 if Set_Warning_Switch (C) then
1231 Store_Compilation_Switch ("-gnatw" & C);
1233 Bad_Switch ("-gnatw" & Switch_Chars (Ptr .. Max));
1242 -- -gnatW (wide character encoding method)
1248 Bad_Switch ("-gnatW");
1252 Wide_Character_Encoding_Method :=
1253 Get_WC_Encoding_Method (Switch_Chars (Ptr));
1255 when Constraint_Error =>
1256 Bad_Switch ("-gnatW" & Switch_Chars (Ptr .. Max));
1259 Wide_Character_Encoding_Method_Specified := True;
1261 Upper_Half_Encoding :=
1262 Wide_Character_Encoding_Method in
1263 WC_Upper_Half_Encoding_Method;
1267 -- -gnatx (suppress cross-ref information)
1271 Xref_Active := False;
1273 -- -gnatX (language extensions)
1277 Extensions_Allowed := True;
1278 Ada_Version := Ada_Version_Type'Last;
1279 Ada_Version_Explicit := Ada_Version_Type'Last;
1280 Ada_Version_Pragma := Empty;
1282 -- -gnaty (style checks)
1286 Style_Check_Main := True;
1289 Set_Default_Style_Check_Options;
1292 Store_Switch := False;
1298 Set_Style_Check_Options
1299 (Switch_Chars (Ptr .. Max), OK, Ptr);
1303 ("bad -gnaty switch (" &
1304 Style_Msg_Buf (1 .. Style_Msg_Len) & ')');
1307 Ptr := First_Char + 1;
1308 while Ptr <= Max loop
1309 if Switch_Chars (Ptr) = 'M
' then
1314 or else Switch_Chars (Ptr) not in '0' .. '9';
1317 Store_Compilation_Switch
1318 ("-gnaty" & Switch_Chars (First_Char .. Ptr - 1));
1321 Store_Compilation_Switch
1322 ("-gnaty" & Switch_Chars (Ptr));
1329 -- -gnatz (stub generation)
1333 -- -gnatz must be the first and only switch in Switch_Chars,
1334 -- and is a two-letter switch.
1336 if Ptr /= Switch_Chars'First + 5
1337 or else (Max - Ptr + 1) > 2
1340 ("-gnatz* may not be combined with other switches");
1344 Bad_Switch ("-gnatz");
1349 -- Only one occurrence of -gnat* is permitted
1351 if Distribution_Stub_Mode = No_Stubs then
1352 case Switch_Chars (Ptr) is
1354 Distribution_Stub_Mode := Generate_Receiver_Stub_Body;
1357 Distribution_Stub_Mode := Generate_Caller_Stub_Body;
1360 Bad_Switch ("-gnatz" & Switch_Chars (Ptr .. Max));
1366 Osint.Fail ("only one -gnatz* switch allowed");
1369 -- -gnatZ (obsolescent)
1374 ("-gnatZ is no longer supported: consider using --RTS=zcx");
1376 -- Note on language version switches: whenever a new language
1377 -- version switch is added, Switch.M.Normalize_Compiler_Switches
1384 Bad_Switch ("-gnat8");
1389 if Switch_Chars (Ptr) /= '3' then
1390 Bad_Switch ("-gnat8" & Switch_Chars (Ptr .. Max));
1393 Ada_Version := Ada_83;
1394 Ada_Version_Explicit := Ada_83;
1395 Ada_Version_Pragma := Empty;
1402 Bad_Switch ("-gnat9");
1407 if Switch_Chars (Ptr) /= '5' then
1408 Bad_Switch ("-gnat9" & Switch_Chars (Ptr .. Max));
1411 Ada_Version := Ada_95;
1412 Ada_Version_Explicit := Ada_95;
1413 Ada_Version_Pragma := Empty;
1420 Bad_Switch ("-gnat0");
1425 if Switch_Chars (Ptr) /= '5' then
1426 Bad_Switch ("-gnat0" & Switch_Chars (Ptr .. Max));
1429 Ada_Version := Ada_2005;
1430 Ada_Version_Explicit := Ada_2005;
1431 Ada_Version_Pragma := Empty;
1438 Bad_Switch ("-gnat1");
1443 if Switch_Chars (Ptr) /= '2' then
1444 Bad_Switch ("-gnat1" & Switch_Chars (Ptr .. Max));
1447 Ada_Version := Ada_2012;
1448 Ada_Version_Explicit := Ada_2012;
1449 Ada_Version_Pragma := Empty;
1452 -- -gnat2005 and -gnat2012
1455 if Ptr > Max - 3 then
1456 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Max));
1458 elsif Switch_Chars (Ptr .. Ptr + 3) = "2005" then
1459 Ada_Version := Ada_2005;
1461 elsif Switch_Chars (Ptr .. Ptr + 3) = "2012" then
1462 Ada_Version := Ada_2012;
1465 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Ptr + 3));
1468 Ada_Version_Explicit := Ada_Version;
1469 Ada_Version_Pragma := Empty;
1472 -- Switch cancellation, currently only -gnat-p is allowed.
1473 -- All we do here is the error checking, since the actual
1474 -- processing for switch cancellation is done by calls to
1475 -- Switch_Subsequently_Cancelled at the appropriate point.
1479 -- Simple ignore -gnat-p
1481 if Switch_Chars = "-gnat-p" then
1484 -- Any other occurrence of minus is ignored. This is for
1485 -- maximum compatibility with previous version which ignored
1486 -- all occurrences of minus.
1489 Store_Switch := False;
1493 -- We ignore '/' in switches, this is historical, still needed???
1496 Store_Switch := False;
1498 -- Anything else is an error (illegal switch character)
1501 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Max));
1504 if Store_Switch then
1505 Store_Compilation_Switch
1506 ("-gnat" & Switch_Chars (First_Char .. Ptr - 1));
1509 First_Switch := False;
1512 end Scan_Front_End_Switches;
1514 -----------------------------------
1515 -- Switch_Subsequently_Cancelled --
1516 -----------------------------------
1518 function Switch_Subsequently_Cancelled
1521 Arg_Rank : Positive) return Boolean
1524 -- Loop through arguments following the current one
1526 for Arg in Arg_Rank + 1 .. Args'Last loop
1527 if Args (Arg).all = "-gnat-" & C then
1532 -- No match found, not cancelled
1535 end Switch_Subsequently_Cancelled;