1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2001-2007, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Debug
; use Debug
;
28 with Osint
; use Osint
;
30 with Prepcomp
; use Prepcomp
;
31 with Validsw
; use Validsw
;
32 with Sem_Warn
; use Sem_Warn
;
33 with Stylesw
; use Stylesw
;
35 with System
.OS_Lib
; use System
.OS_Lib
;
37 with System
.WCh_Con
; use System
.WCh_Con
;
39 package body Switch
.C
is
41 RTS_Specified
: String_Access
:= null;
42 -- Used to detect multiple use of --RTS= flag
44 -----------------------------
45 -- Scan_Front_End_Switches --
46 -----------------------------
48 procedure Scan_Front_End_Switches
(Switch_Chars
: String) is
49 First_Switch
: Boolean := True;
50 -- False for all but first switch
52 Max
: constant Natural := Switch_Chars
'Last;
57 Store_Switch
: Boolean;
58 -- For -gnatxx switches, the normal processing, signalled by this flag
59 -- being set to True, is to store the switch on exit from the case
60 -- statement, the switch stored is -gnat followed by the characters
61 -- from First_Char to Ptr-1. For cases like -gnaty, where the switch
62 -- is stored in separate pieces, this flag is set to False, and the
63 -- appropriate calls to Store_Compilation_Switch are made from within
66 First_Char
: Positive;
67 -- Marks start of switch to be stored
70 Ptr
:= Switch_Chars
'First;
72 -- Skip past the initial character (must be the switch character)
80 -- Handle switches that do not start with -gnat
83 or else Switch_Chars
(Ptr
.. Ptr
+ 3) /= "gnat"
85 -- There are two front-end switches that do not start with -gnat:
88 if Switch_Chars
(Ptr
) = 'I' then
90 -- Set flag Search_Directory_Present if switch is "-I" only:
91 -- the directory will be the next argument.
94 Search_Directory_Present
:= True;
100 -- Find out whether this is a -I- or regular -Ixxx switch
102 -- Note: -I switches are not recorded in the ALI file, since the
103 -- meaning of the program depends on the source files compiled,
104 -- not where they came from.
106 if Ptr
= Max
and then Switch_Chars
(Ptr
) = '-' then
107 Look_In_Primary_Dir
:= False;
109 Add_Src_Search_Dir
(Switch_Chars
(Ptr
.. Max
));
112 -- Processing of the --RTS switch. --RTS may have been modified by
113 -- gcc into -fRTS (for GCC targets).
116 and then (Switch_Chars
(Ptr
.. Ptr
+ 3) = "fRTS"
118 Switch_Chars
(Ptr
.. Ptr
+ 3) = "-RTS")
123 or else Switch_Chars
(Ptr
+ 3) /= '='
125 Osint
.Fail
("missing path for --RTS");
127 -- Check that this is the first time --RTS is specified or if
128 -- it is not the first time, the same path has been specified.
130 if RTS_Specified
= null then
131 RTS_Specified
:= new String'(Switch_Chars (Ptr + 4 .. Max));
134 RTS_Specified.all /= Switch_Chars (Ptr + 4 .. Max)
137 ("--RTS cannot be specified multiple times");
140 -- Valid --RTS switch
142 Opt.No_Stdinc := True;
143 Opt.RTS_Switch := True;
147 (Switch_Chars (Ptr + 4 .. Max), Include);
151 (Switch_Chars (Ptr + 4 .. Max), Objects);
153 if RTS_Src_Path_Name /= null
154 and then RTS_Lib_Path_Name /= null
156 -- Store the -fRTS switch (Note: Store_Compilation_Switch
157 -- changes -fRTS back into --RTS for the actual output).
159 Store_Compilation_Switch (Switch_Chars);
161 elsif RTS_Src_Path_Name = null
162 and then RTS_Lib_Path_Name = null
164 Osint.Fail ("RTS path not valid: missing " &
165 "adainclude and adalib directories");
167 elsif RTS_Src_Path_Name = null then
168 Osint.Fail ("RTS path not valid: missing " &
169 "adainclude directory");
171 elsif RTS_Lib_Path_Name = null then
172 Osint.Fail ("RTS path not valid: missing " &
177 -- There are no other switches not starting with -gnat
180 Bad_Switch (Switch_Chars);
183 -- Case of switch starting with -gnat
188 -- Loop to scan through switches given in switch string
190 while Ptr <= Max loop
192 Store_Switch := True;
194 C := Switch_Chars (Ptr);
200 Assertions_Enabled := True;
201 Debug_Pragmas_Enabled := True;
203 -- Processing for A switch
207 Config_File := False;
209 -- Processing for b switch
213 Brief_Output := True;
215 -- Processing for c switch
218 if not First_Switch then
220 ("-gnatc must be first if combined with other switches");
224 Operating_Mode := Check_Semantics;
230 -- Processing for d switch
233 Store_Switch := False;
236 -- Note: for the debug switch, the remaining characters in this
237 -- switch field must all be debug flags, since all valid switch
238 -- characters are also valid debug characters.
240 -- Loop to scan out debug flags
244 C := Switch_Chars (Ptr);
245 exit when C = ASCII.NUL or else C = '/' or else C = '-';
247 if C in '1' .. '9' or else
248 C in 'a
' .. 'z
' or else
252 Set_Dotted_Debug_Flag (C);
253 Store_Compilation_Switch ("-gnatd." & C);
256 Store_Compilation_Switch ("-gnatd" & C);
263 Bad_Switch ("-gnatd." & Switch_Chars (Ptr .. Max));
265 Bad_Switch ("-gnatd" & Switch_Chars (Ptr .. Max));
271 -- Processing for D switch
276 -- Note: -gnatD also sets -gnatx (to turn off cross-reference
277 -- generation in the ali file) since otherwise this generation
278 -- gets confused by the "wrong" Sloc values put in the tree.
280 Debug_Generated_Code := True;
281 Xref_Active := False;
282 Set_Debug_Flag ('g
');
284 -- -gnate? (extended switches)
289 -- The -gnate? switches are all double character switches
290 -- so we must always have a character after the e.
293 Bad_Switch ("-gnate");
296 case Switch_Chars (Ptr) is
298 -- -gnatec (configuration pragmas)
301 Store_Switch := False;
304 -- There may be an equal sign between -gnatec and
305 -- the path name of the config file.
307 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
312 Bad_Switch ("-gnatec");
316 Config_File_Name : constant String_Access :=
318 (Switch_Chars
(Ptr
.. Max
));
321 if Config_File_Names
= null then
323 new String_List
'(1 => Config_File_Name);
327 New_Names : constant String_List_Access :=
330 Config_File_Names'Length + 1);
333 for Index in Config_File_Names'Range loop
335 Config_File_Names (Index);
336 Config_File_Names (Index) := null;
339 New_Names (New_Names'Last) := Config_File_Name;
340 Free (Config_File_Names);
341 Config_File_Names := New_Names;
348 -- -gnateD switch (preprocessing symbol definition)
351 Store_Switch := False;
355 Bad_Switch ("-gnateD");
358 Add_Symbol_Definition (Switch_Chars (Ptr .. Max));
362 Store_Compilation_Switch
363 ("-gnateD" & Switch_Chars (Ptr .. Max));
366 -- -gnatef (full source path for brief error messages)
369 Store_Switch := False;
371 Full_Path_Name_For_Brief_Errors := True;
374 -- -gnateI (index of unit in multi-unit source)
378 Scan_Pos (Switch_Chars, Max, Ptr, Multiple_Unit_Index, C);
380 -- -gnatem (mapping file)
383 Store_Switch := False;
386 -- There may be an equal sign between -gnatem and
387 -- the path name of the mapping file.
389 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
394 Bad_Switch ("-gnatem");
398 new String'(Switch_Chars
(Ptr
.. Max
));
401 -- -gnatep (preprocessing data file)
404 Store_Switch
:= False;
407 -- There may be an equal sign between -gnatep and
408 -- the path name of the mapping file.
410 if Ptr
<= Max
and then Switch_Chars
(Ptr
) = '=' then
415 Bad_Switch
("-gnatep");
418 Preprocessing_Data_File
:=
419 new String'(Switch_Chars (Ptr .. Max));
421 -- Store the switch, normalizing to -gnatep=
423 Store_Compilation_Switch
424 ("-gnatep=" & Preprocessing_Data_File.all);
429 Store_Switch := False;
430 Disable_Switch_Storing;
433 -- All other -gnate? switches are unassigned
436 Bad_Switch ("-gnate" & Switch_Chars (Ptr .. Max));
439 -- -gnatE (dynamic elaboration checks)
443 Dynamic_Elaboration_Checks := True;
445 -- -gnatf (full error messages)
449 All_Errors_Mode := True;
451 -- Processing for F switch
455 External_Name_Exp_Casing := Uppercase;
456 External_Name_Imp_Casing := Uppercase;
458 -- Processing for g switch
463 Identifier_Character_Set := 'n
';
464 System_Extend_Unit := Empty;
465 Warning_Mode := Treat_As_Error;
467 -- Set Ada 2005 mode explicitly. We don't want to rely on the
468 -- implicit setting here, since for example, we want
469 -- Preelaborate_05 treated as Preelaborate
471 Ada_Version := Ada_05;
472 Ada_Version_Explicit := Ada_Version;
474 -- Set default warnings for -gnatg
476 Check_Unreferenced := True;
477 Check_Unreferenced_Formals := True;
479 Constant_Condition_Warnings := True;
480 Implementation_Unit_Warnings := True;
481 Ineffective_Inline_Warnings := True;
482 Warn_On_Assertion_Failure := True;
483 Warn_On_Assumed_Low_Bound := True;
484 Warn_On_Bad_Fixed_Value := True;
485 Warn_On_Constant := True;
486 Warn_On_Export_Import := True;
487 Warn_On_Modified_Unread := True;
488 Warn_On_No_Value_Assigned := True;
489 Warn_On_Non_Local_Exception := False;
490 Warn_On_Obsolescent_Feature := True;
491 Warn_On_Redundant_Constructs := True;
492 Warn_On_Object_Renames_Function := True;
493 Warn_On_Unchecked_Conversion := True;
494 Warn_On_Unrecognized_Pragma := True;
496 Set_GNAT_Style_Check_Options;
498 -- Processing for G switch
502 Print_Generated_Code := True;
504 -- Processing for h switch
508 Usage_Requested := True;
510 -- Processing for H switch
516 -- Processing for i switch
520 Bad_Switch ("-gnati");
524 C := Switch_Chars (Ptr);
534 Identifier_Character_Set := C;
538 Bad_Switch ("-gnati" & Switch_Chars (Ptr .. Max));
541 -- Processing for I switch
545 Ignore_Rep_Clauses := True;
547 -- Processing for j switch
552 -- There may be an equal sign between -gnatj and the value
554 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
558 Scan_Nat (Switch_Chars, Max, Ptr, Error_Msg_Line_Length, C);
560 -- Processing for k switch
565 (Switch_Chars, Max, Ptr, Maximum_File_Name_Length, C);
567 -- Processing for l switch
573 -- There may be an equal sign between -gnatl and a file name
575 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
577 Osint.Fail ("file name for -gnatl= is null");
579 Opt.Full_List_File_Name :=
580 new String'(Switch_Chars
(Ptr
+ 1 .. Max
));
585 -- Processing for L switch
589 Dump_Source_Text
:= True;
591 -- Processing for m switch
596 -- There may be an equal sign between -gnatm and the value
598 if Ptr
<= Max
and then Switch_Chars
(Ptr
) = '=' then
602 Scan_Nat
(Switch_Chars
, Max
, Ptr
, Maximum_Errors
, C
);
604 -- Processing for n switch
608 Inline_Active
:= True;
610 -- Processing for N switch
614 Inline_Active
:= True;
615 Front_End_Inlining
:= True;
617 -- Processing for o switch
621 Suppress_Options
(Overflow_Check
) := False;
622 Opt
.Enable_Overflow_Checks
:= True;
624 -- Processing for O switch
627 Store_Switch
:= False;
629 Output_File_Name_Present
:= True;
631 -- Processing for p switch
636 -- Set all specific options as well as All_Checks in the
637 -- Suppress_Options array, excluding Elaboration_Check, since
638 -- this is treated specially because we do not want -gnatp to
639 -- disable static elaboration processing.
641 for J
in Suppress_Options
'Range loop
642 if J
/= Elaboration_Check
then
643 Suppress_Options
(J
) := True;
647 Validity_Checks_On
:= False;
648 Opt
.Suppress_Checks
:= True;
649 Opt
.Enable_Overflow_Checks
:= False;
651 -- Processing for P switch
655 Polling_Required
:= True;
657 -- Processing for q switch
661 Try_Semantics
:= True;
663 -- Processing for q switch
667 Force_ALI_Tree_File
:= True;
668 Try_Semantics
:= True;
670 -- Processing for R switch
673 Back_Annotate_Rep_Info
:= True;
674 List_Representation_Info
:= 1;
677 while Ptr
<= Max
loop
678 C
:= Switch_Chars
(Ptr
);
680 if C
in '1' .. '3' then
681 List_Representation_Info
:=
682 Character'Pos (C
) - Character'Pos ('0');
684 elsif Switch_Chars
(Ptr
) = 's' then
685 List_Representation_Info_To_File
:= True;
687 elsif Switch_Chars
(Ptr
) = 'm' then
688 List_Representation_Info_Mechanisms
:= True;
691 Bad_Switch
("-gnatR" & Switch_Chars
(Ptr
.. Max
));
697 -- Processing for s switch
700 if not First_Switch
then
702 ("-gnats must be first if combined with other switches");
706 Operating_Mode
:= Check_Syntax
;
708 -- Processing for S switch
711 Print_Standard
:= True;
714 -- Processing for t switch
720 if Operating_Mode
= Check_Semantics
then
724 Back_Annotate_Rep_Info
:= True;
726 -- Processing for T switch
730 Scan_Pos
(Switch_Chars
, Max
, Ptr
, Table_Factor
, C
);
732 -- Processing for u switch
738 -- Processing for U switch
742 Unique_Error_Tag
:= True;
744 -- Processing for v switch
748 Verbose_Mode
:= True;
750 -- Processing for V switch
753 Store_Switch
:= False;
757 Bad_Switch
("-gnatV");
764 Set_Validity_Check_Options
765 (Switch_Chars
(Ptr
.. Max
), OK
, Ptr
);
768 Bad_Switch
("-gnatV" & Switch_Chars
(Ptr
.. Max
));
771 for Index
in First_Char
+ 1 .. Max
loop
772 Store_Compilation_Switch
773 ("-gnatV" & Switch_Chars
(Index
));
780 -- Processing for w switch
783 Store_Switch
:= False;
787 Bad_Switch
("-gnatw");
790 while Ptr
<= Max
loop
791 C
:= Switch_Chars
(Ptr
);
793 -- Case of dot switch
795 if C
= '.' and then Ptr
< Max
then
797 C
:= Switch_Chars
(Ptr
);
799 if Set_Dot_Warning_Switch
(C
) then
800 Store_Compilation_Switch
("-gnatw." & C
);
802 Bad_Switch
("-gnatw." & Switch_Chars
(Ptr
.. Max
));
805 -- Normal case, no dot
808 if Set_Warning_Switch
(C
) then
809 Store_Compilation_Switch
("-gnatw" & C
);
811 Bad_Switch
("-gnatw" & Switch_Chars
(Ptr
.. Max
));
820 -- Processing for W switch
826 Bad_Switch
("-gnatW");
830 Wide_Character_Encoding_Method
:=
831 Get_WC_Encoding_Method
(Switch_Chars
(Ptr
));
833 when Constraint_Error
=>
834 Bad_Switch
("-gnatW" & Switch_Chars
(Ptr
.. Max
));
837 Wide_Character_Encoding_Method_Specified
:= True;
839 Upper_Half_Encoding
:=
840 Wide_Character_Encoding_Method
in
841 WC_Upper_Half_Encoding_Method
;
845 -- Processing for x switch
849 Xref_Active
:= False;
851 -- Processing for X switch
855 Extensions_Allowed
:= True;
857 -- Processing for y switch
863 Set_Default_Style_Check_Options
;
866 Store_Switch
:= False;
872 Set_Style_Check_Options
873 (Switch_Chars
(Ptr
.. Max
), OK
, Ptr
);
877 ("bad -gnaty switch (" &
878 Style_Msg_Buf
(1 .. Style_Msg_Len
) & ')');
881 Ptr
:= First_Char
+ 1;
882 while Ptr
<= Max
loop
883 if Switch_Chars
(Ptr
) = 'M' then
888 or else Switch_Chars
(Ptr
) not in '0' .. '9';
891 Store_Compilation_Switch
892 ("-gnaty" & Switch_Chars
(First_Char
.. Ptr
- 1));
895 Store_Compilation_Switch
896 ("-gnaty" & Switch_Chars
(Ptr
));
903 -- Processing for z switch
908 -- Allowed for compiler only if this is the only
909 -- -z switch, we do not allow multiple occurrences
911 if Distribution_Stub_Mode
= No_Stubs
then
912 case Switch_Chars
(Ptr
) is
914 Distribution_Stub_Mode
:= Generate_Receiver_Stub_Body
;
917 Distribution_Stub_Mode
:= Generate_Caller_Stub_Body
;
920 Bad_Switch
("-gnatz" & Switch_Chars
(Ptr
.. Max
));
926 -- Processing for Z switch
931 ("-gnatZ is no longer supported: consider using --RTS=zcx");
933 -- Processing for 83 switch
937 Bad_Switch
("-gnat8");
942 if Switch_Chars
(Ptr
) /= '3' then
943 Bad_Switch
("-gnat8" & Switch_Chars
(Ptr
.. Max
));
946 Ada_Version
:= Ada_83
;
947 Ada_Version_Explicit
:= Ada_Version
;
950 -- Processing for 95 switch
954 Bad_Switch
("-gnat9");
959 if Switch_Chars
(Ptr
) /= '5' then
960 Bad_Switch
("-gnat9" & Switch_Chars
(Ptr
.. Max
));
963 Ada_Version
:= Ada_95
;
964 Ada_Version_Explicit
:= Ada_Version
;
967 -- Processing for 05 switch
971 Bad_Switch
("-gnat0");
976 if Switch_Chars
(Ptr
) /= '5' then
977 Bad_Switch
("-gnat0" & Switch_Chars
(Ptr
.. Max
));
980 Ada_Version
:= Ada_05
;
981 Ada_Version_Explicit
:= Ada_Version
;
984 -- Ignore extra switch character
989 -- Anything else is an error (illegal switch character)
992 Bad_Switch
("-gnat" & Switch_Chars
(Ptr
.. Max
));
996 Store_Compilation_Switch
997 ("-gnat" & Switch_Chars
(First_Char
.. Ptr
- 1));
1000 First_Switch
:= False;
1003 end Scan_Front_End_Switches
;