9ab79c77e6419cef8b186caf86166372a9f0da43
[gcc.git] / gcc / ada / switch-c.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S W I T C H - C --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 2001-2013, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
25
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.
29
30 with Debug; use Debug;
31 with Lib; use Lib;
32 with Osint; use Osint;
33 with Opt; use Opt;
34 with Validsw; use Validsw;
35 with Stylesw; use Stylesw;
36 with Ttypes; use Ttypes;
37 with Warnsw; use Warnsw;
38
39 with Ada.Unchecked_Deallocation;
40 with System.WCh_Con; use System.WCh_Con;
41
42 package body Switch.C is
43
44 RTS_Specified : String_Access := null;
45 -- Used to detect multiple use of --RTS= flag
46
47 procedure Add_Symbol_Definition (Def : String);
48 -- Add a symbol definition from the command line
49
50 procedure Free is
51 new Ada.Unchecked_Deallocation (String_List, String_List_Access);
52 -- Avoid using System.Strings.Free, which also frees the designated strings
53
54 function Get_Overflow_Mode (C : Character) return Overflow_Mode_Type;
55 -- Given a digit in the range 0 .. 3, returns the corresponding value of
56 -- Overflow_Mode_Type. Raises Program_Error if C is outside this range.
57
58 function Switch_Subsequently_Cancelled
59 (C : String;
60 Args : String_List;
61 Arg_Rank : Positive) return Boolean;
62 -- This function is called from Scan_Front_End_Switches. It determines if
63 -- the switch currently being scanned is followed by a switch of the form
64 -- "-gnat-" & C, where C is the argument. If so, then True is returned,
65 -- and Scan_Front_End_Switches will cancel the effect of the switch. If
66 -- no such switch is found, False is returned.
67
68 ---------------------------
69 -- Add_Symbol_Definition --
70 ---------------------------
71
72 procedure Add_Symbol_Definition (Def : String) is
73 begin
74 -- If Preprocessor_Symbol_Defs is not large enough, double its size
75
76 if Preprocessing_Symbol_Last = Preprocessing_Symbol_Defs'Last then
77 declare
78 New_Symbol_Definitions : constant String_List_Access :=
79 new String_List (1 .. 2 * Preprocessing_Symbol_Last);
80 begin
81 New_Symbol_Definitions (Preprocessing_Symbol_Defs'Range) :=
82 Preprocessing_Symbol_Defs.all;
83 Free (Preprocessing_Symbol_Defs);
84 Preprocessing_Symbol_Defs := New_Symbol_Definitions;
85 end;
86 end if;
87
88 Preprocessing_Symbol_Last := Preprocessing_Symbol_Last + 1;
89 Preprocessing_Symbol_Defs (Preprocessing_Symbol_Last) :=
90 new String'(Def);
91 end Add_Symbol_Definition;
92
93 -----------------------
94 -- Get_Overflow_Mode --
95 -----------------------
96
97 function Get_Overflow_Mode (C : Character) return Overflow_Mode_Type is
98 begin
99 case C is
100 when '1' =>
101 return Strict;
102
103 when '2' =>
104 return Minimized;
105
106 -- Eliminated allowed only if Long_Long_Integer is 64 bits (since
107 -- the current implementation of System.Bignums assumes this).
108
109 when '3' =>
110 if Standard_Long_Long_Integer_Size /= 64 then
111 Bad_Switch ("-gnato3 not implemented for this configuration");
112 else
113 return Eliminated;
114 end if;
115
116 when others =>
117 raise Program_Error;
118 end case;
119 end Get_Overflow_Mode;
120
121 -----------------------------
122 -- Scan_Front_End_Switches --
123 -----------------------------
124
125 procedure Scan_Front_End_Switches
126 (Switch_Chars : String;
127 Args : String_List;
128 Arg_Rank : Positive)
129 is
130 First_Switch : Boolean := True;
131 -- False for all but first switch
132
133 Max : constant Natural := Switch_Chars'Last;
134 Ptr : Natural;
135 C : Character := ' ';
136 Dot : Boolean;
137
138 Store_Switch : Boolean;
139 -- For -gnatxx switches, the normal processing, signalled by this flag
140 -- being set to True, is to store the switch on exit from the case
141 -- statement, the switch stored is -gnat followed by the characters
142 -- from First_Char to Ptr-1. For cases like -gnaty, where the switch
143 -- is stored in separate pieces, this flag is set to False, and the
144 -- appropriate calls to Store_Compilation_Switch are made from within
145 -- the case branch.
146
147 First_Char : Positive;
148 -- Marks start of switch to be stored
149
150 First_Ptr : Positive;
151 -- Save position of first character after -gnatd (for checking that
152 -- debug flags that must come first are first, in particular -gnatd.b),
153
154 begin
155 Ptr := Switch_Chars'First;
156
157 -- Skip past the initial character (must be the switch character)
158
159 if Ptr = Max then
160 Bad_Switch (C);
161 else
162 Ptr := Ptr + 1;
163 end if;
164
165 -- Handle switches that do not start with -gnat
166
167 if Ptr + 3 > Max or else Switch_Chars (Ptr .. Ptr + 3) /= "gnat" then
168
169 -- There are two front-end switches that do not start with -gnat:
170 -- -I, --RTS
171
172 if Switch_Chars (Ptr) = 'I' then
173
174 -- Set flag Search_Directory_Present if switch is "-I" only:
175 -- the directory will be the next argument.
176
177 if Ptr = Max then
178 Search_Directory_Present := True;
179 return;
180 end if;
181
182 Ptr := Ptr + 1;
183
184 -- Find out whether this is a -I- or regular -Ixxx switch
185
186 -- Note: -I switches are not recorded in the ALI file, since the
187 -- meaning of the program depends on the source files compiled,
188 -- not where they came from.
189
190 if Ptr = Max and then Switch_Chars (Ptr) = '-' then
191 Look_In_Primary_Dir := False;
192 else
193 Add_Src_Search_Dir (Switch_Chars (Ptr .. Max));
194 end if;
195
196 -- Processing of the --RTS switch. --RTS may have been modified by
197 -- gcc into -fRTS (for GCC targets).
198
199 elsif Ptr + 3 <= Max
200 and then (Switch_Chars (Ptr .. Ptr + 3) = "fRTS"
201 or else
202 Switch_Chars (Ptr .. Ptr + 3) = "-RTS")
203 then
204 Ptr := Ptr + 1;
205
206 if Ptr + 4 > Max
207 or else Switch_Chars (Ptr + 3) /= '='
208 then
209 Osint.Fail ("missing path for --RTS");
210 else
211 -- Check that this is the first time --RTS is specified or if
212 -- it is not the first time, the same path has been specified.
213
214 if RTS_Specified = null then
215 RTS_Specified := new String'(Switch_Chars (Ptr + 4 .. Max));
216
217 elsif
218 RTS_Specified.all /= Switch_Chars (Ptr + 4 .. Max)
219 then
220 Osint.Fail ("--RTS cannot be specified multiple times");
221 end if;
222
223 -- Valid --RTS switch
224
225 Opt.No_Stdinc := True;
226 Opt.RTS_Switch := True;
227
228 RTS_Src_Path_Name :=
229 Get_RTS_Search_Dir
230 (Switch_Chars (Ptr + 4 .. Max), Include);
231
232 RTS_Lib_Path_Name :=
233 Get_RTS_Search_Dir
234 (Switch_Chars (Ptr + 4 .. Max), Objects);
235
236 if RTS_Src_Path_Name /= null
237 and then RTS_Lib_Path_Name /= null
238 then
239 -- Store the -fRTS switch (Note: Store_Compilation_Switch
240 -- changes -fRTS back into --RTS for the actual output).
241
242 Store_Compilation_Switch (Switch_Chars);
243
244 elsif RTS_Src_Path_Name = null
245 and then RTS_Lib_Path_Name = null
246 then
247 Osint.Fail ("RTS path not valid: missing " &
248 "adainclude and adalib directories");
249
250 elsif RTS_Src_Path_Name = null then
251 Osint.Fail ("RTS path not valid: missing " &
252 "adainclude directory");
253
254 elsif RTS_Lib_Path_Name = null then
255 Osint.Fail ("RTS path not valid: missing " &
256 "adalib directory");
257 end if;
258 end if;
259
260 -- There are no other switches not starting with -gnat
261
262 else
263 Bad_Switch (Switch_Chars);
264 end if;
265
266 -- Case of switch starting with -gnat
267
268 else
269 Ptr := Ptr + 4;
270
271 -- Loop to scan through switches given in switch string
272
273 while Ptr <= Max loop
274 First_Char := Ptr;
275 Store_Switch := True;
276
277 C := Switch_Chars (Ptr);
278
279 case C is
280
281 -- -gnata (assertions enabled)
282
283 when 'a' =>
284 Ptr := Ptr + 1;
285 Assertions_Enabled := True;
286 Debug_Pragmas_Enabled := True;
287
288 -- -gnatA (disregard gnat.adc)
289
290 when 'A' =>
291 Ptr := Ptr + 1;
292 Config_File := False;
293
294 -- -gnatb (brief messages to stderr)
295
296 when 'b' =>
297 Ptr := Ptr + 1;
298 Brief_Output := True;
299
300 -- -gnatB (assume no invalid values)
301
302 when 'B' =>
303 Ptr := Ptr + 1;
304 Assume_No_Invalid_Values := True;
305
306 -- -gnatc (check syntax and semantics only)
307
308 when 'c' =>
309 if not First_Switch then
310 Osint.Fail
311 ("-gnatc must be first if combined with other switches");
312 end if;
313
314 Ptr := Ptr + 1;
315 Operating_Mode := Check_Semantics;
316
317 -- -gnatC (Generate CodePeer information)
318
319 when 'C' =>
320 Ptr := Ptr + 1;
321
322 if not CodePeer_Mode then
323 CodePeer_Mode := True;
324
325 -- Suppress compiler warnings by default, since what we are
326 -- interested in here is what CodePeer can find out. Note
327 -- that if -gnatwxxx is specified after -gnatC on the
328 -- command line, we do not want to override this setting in
329 -- Adjust_Global_Switches, and assume that the user wants to
330 -- get both warnings from GNAT and CodePeer messages.
331
332 Warning_Mode := Suppress;
333 end if;
334
335 -- -gnatd (compiler debug options)
336
337 when 'd' =>
338 Store_Switch := False;
339 Dot := False;
340 First_Ptr := Ptr + 1;
341
342 -- Note: for the debug switch, the remaining characters in this
343 -- switch field must all be debug flags, since all valid switch
344 -- characters are also valid debug characters.
345
346 -- Loop to scan out debug flags
347
348 while Ptr < Max loop
349 Ptr := Ptr + 1;
350 C := Switch_Chars (Ptr);
351 exit when C = ASCII.NUL or else C = '/' or else C = '-';
352
353 if C in '1' .. '9' or else
354 C in 'a' .. 'z' or else
355 C in 'A' .. 'Z'
356 then
357 -- Case of dotted flag
358
359 if Dot then
360 Set_Dotted_Debug_Flag (C);
361 Store_Compilation_Switch ("-gnatd." & C);
362
363 -- Special check, -gnatd.b must come first
364
365 if C = 'b'
366 and then (Ptr /= First_Ptr + 1
367 or else not First_Switch)
368 then
369 Osint.Fail
370 ("-gnatd.b must be first if combined "
371 & "with other switches");
372 end if;
373
374 -- Not a dotted flag
375
376 else
377 Set_Debug_Flag (C);
378 Store_Compilation_Switch ("-gnatd" & C);
379 end if;
380
381 elsif C = '.' then
382 Dot := True;
383
384 elsif Dot then
385 Bad_Switch ("-gnatd." & Switch_Chars (Ptr .. Max));
386 else
387 Bad_Switch ("-gnatd" & Switch_Chars (Ptr .. Max));
388 end if;
389 end loop;
390
391 return;
392
393 -- -gnatD (debug expanded code)
394
395 when 'D' =>
396 Ptr := Ptr + 1;
397
398 -- Scan optional integer line limit value
399
400 if Nat_Present (Switch_Chars, Max, Ptr) then
401 Scan_Nat (Switch_Chars, Max, Ptr, Sprint_Line_Limit, 'D');
402 Sprint_Line_Limit := Nat'Max (Sprint_Line_Limit, 40);
403 end if;
404
405 -- Note: -gnatD also sets -gnatx (to turn off cross-reference
406 -- generation in the ali file) since otherwise this generation
407 -- gets confused by the "wrong" Sloc values put in the tree.
408
409 Debug_Generated_Code := True;
410 Xref_Active := False;
411 Set_Debug_Flag ('g');
412
413 -- -gnate? (extended switches)
414
415 when 'e' =>
416 Ptr := Ptr + 1;
417
418 -- The -gnate? switches are all double character switches
419 -- so we must always have a character after the e.
420
421 if Ptr > Max then
422 Bad_Switch ("-gnate");
423 end if;
424
425 case Switch_Chars (Ptr) is
426
427 -- -gnatea (initial delimiter of explicit switches)
428
429 -- This is an internal switch
430
431 -- All switches that come before -gnatea have been added by
432 -- the GCC driver and are not stored in the ALI file.
433 -- See also -gnatez below.
434
435 when 'a' =>
436 Store_Switch := False;
437 Enable_Switch_Storing;
438 Ptr := Ptr + 1;
439
440 -- -gnateA (aliasing checks on parameters)
441
442 when 'A' =>
443 Ptr := Ptr + 1;
444 Check_Aliasing_Of_Parameters := True;
445
446 -- -gnatec (configuration pragmas)
447
448 when 'c' =>
449 Store_Switch := False;
450 Ptr := Ptr + 1;
451
452 -- There may be an equal sign between -gnatec and
453 -- the path name of the config file.
454
455 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
456 Ptr := Ptr + 1;
457 end if;
458
459 if Ptr > Max then
460 Bad_Switch ("-gnatec");
461 end if;
462
463 declare
464 Config_File_Name : constant String_Access :=
465 new String'
466 (Switch_Chars (Ptr .. Max));
467
468 begin
469 if Config_File_Names = null then
470 Config_File_Names :=
471 new String_List'(1 => Config_File_Name);
472
473 else
474 declare
475 New_Names : constant String_List_Access :=
476 new String_List
477 (1 ..
478 Config_File_Names'Length + 1);
479
480 begin
481 for Index in Config_File_Names'Range loop
482 New_Names (Index) :=
483 Config_File_Names (Index);
484 Config_File_Names (Index) := null;
485 end loop;
486
487 New_Names (New_Names'Last) := Config_File_Name;
488 Free (Config_File_Names);
489 Config_File_Names := New_Names;
490 end;
491 end if;
492 end;
493
494 return;
495
496 -- -gnateC switch (CodePeer SCIL generation)
497
498 -- Not enabled for now, keep it for later???
499 -- use -gnatd.I only for now
500
501 -- when 'C' =>
502 -- Ptr := Ptr + 1;
503 -- Generate_SCIL := True;
504
505 -- -gnated switch (disable atomic synchronization)
506
507 when 'd' =>
508 Suppress_Options.Suppress (Atomic_Synchronization) :=
509 True;
510
511 -- -gnateD switch (preprocessing symbol definition)
512
513 when 'D' =>
514 Store_Switch := False;
515 Ptr := Ptr + 1;
516
517 if Ptr > Max then
518 Bad_Switch ("-gnateD");
519 end if;
520
521 Add_Symbol_Definition (Switch_Chars (Ptr .. Max));
522
523 -- Store the switch
524
525 Store_Compilation_Switch
526 ("-gnateD" & Switch_Chars (Ptr .. Max));
527 Ptr := Max + 1;
528
529 -- -gnateE (extra exception information)
530
531 when 'E' =>
532 Exception_Extra_Info := True;
533 Ptr := Ptr + 1;
534
535 -- -gnatef (full source path for brief error messages)
536
537 when 'f' =>
538 Store_Switch := False;
539 Ptr := Ptr + 1;
540 Full_Path_Name_For_Brief_Errors := True;
541
542 -- -gnateF (Check_Float_Overflow)
543
544 when 'F' =>
545 Ptr := Ptr + 1;
546 Check_Float_Overflow := True;
547
548 -- -gnateG (save preprocessor output)
549
550 when 'G' =>
551 Generate_Processed_File := True;
552 Ptr := Ptr + 1;
553
554 -- -gnatei (max number of instantiations)
555
556 when 'i' =>
557 Ptr := Ptr + 1;
558 Scan_Pos
559 (Switch_Chars, Max, Ptr, Maximum_Instantiations, C);
560
561 -- -gnateI (index of unit in multi-unit source)
562
563 when 'I' =>
564 Ptr := Ptr + 1;
565 Scan_Pos (Switch_Chars, Max, Ptr, Multiple_Unit_Index, C);
566
567 -- -gnatem (mapping file)
568
569 when 'm' =>
570 Store_Switch := False;
571 Ptr := Ptr + 1;
572
573 -- There may be an equal sign between -gnatem and
574 -- the path name of the mapping file.
575
576 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
577 Ptr := Ptr + 1;
578 end if;
579
580 if Ptr > Max then
581 Bad_Switch ("-gnatem");
582 end if;
583
584 Mapping_File_Name :=
585 new String'(Switch_Chars (Ptr .. Max));
586 return;
587
588 -- -gnateO= (object path file)
589
590 -- This is an internal switch
591
592 when 'O' =>
593 Store_Switch := False;
594 Ptr := Ptr + 1;
595
596 -- Check for '='
597
598 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
599 Bad_Switch ("-gnateO");
600 else
601 Object_Path_File_Name :=
602 new String'(Switch_Chars (Ptr + 1 .. Max));
603 end if;
604
605 return;
606
607 -- -gnatep (preprocessing data file)
608
609 when 'p' =>
610 Store_Switch := False;
611 Ptr := Ptr + 1;
612
613 -- There may be an equal sign between -gnatep and
614 -- the path name of the mapping file.
615
616 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
617 Ptr := Ptr + 1;
618 end if;
619
620 if Ptr > Max then
621 Bad_Switch ("-gnatep");
622 end if;
623
624 Preprocessing_Data_File :=
625 new String'(Switch_Chars (Ptr .. Max));
626
627 -- Store the switch, normalizing to -gnatep=
628
629 Store_Compilation_Switch
630 ("-gnatep=" & Preprocessing_Data_File.all);
631
632 Ptr := Max + 1;
633
634 -- -gnateP (Treat pragma Pure/Preelaborate errs as warnings)
635
636 when 'P' =>
637 Treat_Categorization_Errors_As_Warnings := True;
638
639 -- -gnateS (generate SCO information)
640
641 -- Include Source Coverage Obligation information in ALI
642 -- files for the benefit of source coverage analysis tools
643 -- (xcov).
644
645 when 'S' =>
646 Generate_SCO := True;
647 Generate_SCO_Instance_Table := True;
648 Ptr := Ptr + 1;
649
650 -- -gnatet (write target dependent information)
651
652 when 't' =>
653 if not First_Switch then
654 Osint.Fail
655 ("-gnatet must not be combined with other switches");
656 end if;
657
658 -- Check for '='
659
660 Ptr := Ptr + 1;
661
662 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
663 Bad_Switch ("-gnatet");
664 else
665 Target_Dependent_Info_Write_Name :=
666 new String'(Switch_Chars (Ptr + 1 .. Max));
667 end if;
668
669 return;
670
671 -- -gnateT (read target dependent information)
672
673 when 'T' =>
674 if not First_Switch then
675 Osint.Fail
676 ("-gnateT must not be combined with other switches");
677 end if;
678
679 -- Check for '='
680
681 Ptr := Ptr + 1;
682
683 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
684 Bad_Switch ("-gnateT");
685 else
686 -- This parameter was stored by Set_Targ earlier
687
688 pragma Assert
689 (Target_Dependent_Info_Read_Name.all =
690 Switch_Chars (Ptr + 1 .. Max));
691 null;
692 end if;
693
694 return;
695
696 -- -gnateV (validity checks on parameters)
697
698 when 'V' =>
699 Ptr := Ptr + 1;
700 Check_Validity_Of_Parameters := True;
701
702 -- -gnateY (ignore Style_Checks pragmas)
703
704 when 'Y' =>
705 Ignore_Style_Checks_Pragmas := True;
706 Ptr := Ptr + 1;
707
708 -- -gnatez (final delimiter of explicit switches)
709
710 -- This is an internal switch
711
712 -- All switches that come after -gnatez have been added by
713 -- the GCC driver and are not stored in the ALI file. See
714 -- also -gnatea above.
715
716 when 'z' =>
717 Store_Switch := False;
718 Disable_Switch_Storing;
719 Ptr := Ptr + 1;
720
721 -- All other -gnate? switches are unassigned
722
723 when others =>
724 Bad_Switch ("-gnate" & Switch_Chars (Ptr .. Max));
725 end case;
726
727 -- -gnatE (dynamic elaboration checks)
728
729 when 'E' =>
730 Ptr := Ptr + 1;
731 Dynamic_Elaboration_Checks := True;
732
733 -- -gnatf (full error messages)
734
735 when 'f' =>
736 Ptr := Ptr + 1;
737 All_Errors_Mode := True;
738
739 -- -gnatF (overflow of predefined float types)
740
741 when 'F' =>
742 Ptr := Ptr + 1;
743 External_Name_Exp_Casing := Uppercase;
744 External_Name_Imp_Casing := Uppercase;
745
746 -- -gnatg (GNAT implementation mode)
747
748 when 'g' =>
749 Ptr := Ptr + 1;
750 GNAT_Mode := True;
751 Identifier_Character_Set := 'n';
752 System_Extend_Unit := Empty;
753 Warning_Mode := Treat_As_Error;
754
755 -- Set Ada 2012 mode explicitly. We don't want to rely on the
756 -- implicit setting here, since for example, we want
757 -- Preelaborate_05 treated as Preelaborate
758
759 Ada_Version := Ada_2012;
760 Ada_Version_Explicit := Ada_Version;
761
762 -- Set default warnings and style checks for -gnatg
763
764 Set_GNAT_Mode_Warnings;
765 Set_GNAT_Style_Check_Options;
766
767 -- -gnatG (output generated code)
768
769 when 'G' =>
770 Ptr := Ptr + 1;
771 Print_Generated_Code := True;
772
773 -- Scan optional integer line limit value
774
775 if Nat_Present (Switch_Chars, Max, Ptr) then
776 Scan_Nat (Switch_Chars, Max, Ptr, Sprint_Line_Limit, 'G');
777 Sprint_Line_Limit := Nat'Max (Sprint_Line_Limit, 40);
778 end if;
779
780 -- -gnath (help information)
781
782 when 'h' =>
783 Ptr := Ptr + 1;
784 Usage_Requested := True;
785
786 -- -gnati (character set)
787
788 when 'i' =>
789 if Ptr = Max then
790 Bad_Switch ("-gnati");
791 end if;
792
793 Ptr := Ptr + 1;
794 C := Switch_Chars (Ptr);
795
796 if C in '1' .. '5'
797 or else C = '8'
798 or else C = '9'
799 or else C = 'p'
800 or else C = 'f'
801 or else C = 'n'
802 or else C = 'w'
803 then
804 Identifier_Character_Set := C;
805 Ptr := Ptr + 1;
806
807 else
808 Bad_Switch ("-gnati" & Switch_Chars (Ptr .. Max));
809 end if;
810
811 -- -gnatI (ignore representation clauses)
812
813 when 'I' =>
814 Ptr := Ptr + 1;
815 Ignore_Rep_Clauses := True;
816
817 -- -gnatj (messages in limited length lines)
818
819 when 'j' =>
820 Ptr := Ptr + 1;
821 Scan_Nat (Switch_Chars, Max, Ptr, Error_Msg_Line_Length, C);
822
823 -- -gnatk (limit file name length)
824
825 when 'k' =>
826 Ptr := Ptr + 1;
827 Scan_Pos
828 (Switch_Chars, Max, Ptr, Maximum_File_Name_Length, C);
829
830 -- -gnatl (output full source)
831
832 when 'l' =>
833 Ptr := Ptr + 1;
834 Full_List := True;
835
836 -- There may be an equal sign between -gnatl and a file name
837
838 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
839 if Ptr = Max then
840 Osint.Fail ("file name for -gnatl= is null");
841 else
842 Opt.Full_List_File_Name :=
843 new String'(Switch_Chars (Ptr + 1 .. Max));
844 Ptr := Max + 1;
845 end if;
846 end if;
847
848 -- -gnatL (corresponding source text)
849
850 when 'L' =>
851 Ptr := Ptr + 1;
852 Dump_Source_Text := True;
853
854 -- -gnatm (max number or errors/warnings)
855
856 when 'm' =>
857 Ptr := Ptr + 1;
858 Scan_Nat (Switch_Chars, Max, Ptr, Maximum_Messages, C);
859
860 -- -gnatn (enable pragma Inline)
861
862 when 'n' =>
863 Ptr := Ptr + 1;
864 Inline_Active := True;
865
866 -- There may be a digit (1 or 2) appended to the switch
867
868 if Ptr <= Max then
869 C := Switch_Chars (Ptr);
870
871 if C in '1' .. '2' then
872 Ptr := Ptr + 1;
873 Inline_Level := Character'Pos (C) - Character'Pos ('0');
874 end if;
875 end if;
876
877 -- -gnatN (obsolescent)
878
879 when 'N' =>
880 Ptr := Ptr + 1;
881 Inline_Active := True;
882 Front_End_Inlining := True;
883
884 -- -gnato (overflow checks)
885
886 when 'o' =>
887 Ptr := Ptr + 1;
888 Suppress_Options.Suppress (Overflow_Check) := False;
889
890 -- Case of no digits after the -gnato
891
892 if Ptr > Max or else Switch_Chars (Ptr) not in '1' .. '3' then
893 Suppress_Options.Overflow_Mode_General := Strict;
894 Suppress_Options.Overflow_Mode_Assertions := Strict;
895
896 -- At least one digit after the -gnato
897
898 else
899 -- Handle first digit after -gnato
900
901 Suppress_Options.Overflow_Mode_General :=
902 Get_Overflow_Mode (Switch_Chars (Ptr));
903 Ptr := Ptr + 1;
904
905 -- Only one digit after -gnato, set assertions mode to
906 -- be the same as general mode.
907
908 if Ptr > Max
909 or else Switch_Chars (Ptr) not in '1' .. '3'
910 then
911 Suppress_Options.Overflow_Mode_Assertions :=
912 Suppress_Options.Overflow_Mode_General;
913
914 -- Process second digit after -gnato
915
916 else
917 Suppress_Options.Overflow_Mode_Assertions :=
918 Get_Overflow_Mode (Switch_Chars (Ptr));
919 Ptr := Ptr + 1;
920 end if;
921 end if;
922
923 -- -gnatO (specify name of the object file)
924
925 -- This is an internal switch
926
927 when 'O' =>
928 Store_Switch := False;
929 Ptr := Ptr + 1;
930 Output_File_Name_Present := True;
931
932 -- -gnatp (suppress all checks)
933
934 when 'p' =>
935 Ptr := Ptr + 1;
936
937 -- Skip processing if cancelled by subsequent -gnat-p
938
939 if Switch_Subsequently_Cancelled ("p", Args, Arg_Rank) then
940 Store_Switch := False;
941
942 else
943 -- Set all specific options as well as All_Checks in the
944 -- Suppress_Options array, excluding Elaboration_Check,
945 -- since this is treated specially because we do not want
946 -- -gnatp to disable static elaboration processing. Also
947 -- exclude Atomic_Synchronization, since this is not a real
948 -- check.
949
950 for J in Suppress_Options.Suppress'Range loop
951 if J /= Elaboration_Check
952 and then
953 J /= Atomic_Synchronization
954 then
955 Suppress_Options.Suppress (J) := True;
956 end if;
957 end loop;
958
959 Validity_Checks_On := False;
960 Opt.Suppress_Checks := True;
961 end if;
962
963 -- -gnatP (periodic poll)
964
965 when 'P' =>
966 Ptr := Ptr + 1;
967 Polling_Required := True;
968
969 -- -gnatq (don't quit)
970
971 when 'q' =>
972 Ptr := Ptr + 1;
973 Try_Semantics := True;
974
975 -- -gnatQ (always write ALI file)
976
977 when 'Q' =>
978 Ptr := Ptr + 1;
979 Force_ALI_Tree_File := True;
980 Try_Semantics := True;
981
982 -- -gnatr (restrictions as warnings)
983
984 when 'r' =>
985 Ptr := Ptr + 1;
986 Treat_Restrictions_As_Warnings := True;
987
988 -- -gnatR (list rep. info)
989
990 when 'R' =>
991 Back_Annotate_Rep_Info := True;
992 List_Representation_Info := 1;
993
994 Ptr := Ptr + 1;
995 while Ptr <= Max loop
996 C := Switch_Chars (Ptr);
997
998 if C in '1' .. '3' then
999 List_Representation_Info :=
1000 Character'Pos (C) - Character'Pos ('0');
1001
1002 elsif Switch_Chars (Ptr) = 's' then
1003 List_Representation_Info_To_File := True;
1004
1005 elsif Switch_Chars (Ptr) = 'm' then
1006 List_Representation_Info_Mechanisms := True;
1007
1008 else
1009 Bad_Switch ("-gnatR" & Switch_Chars (Ptr .. Max));
1010 end if;
1011
1012 Ptr := Ptr + 1;
1013 end loop;
1014
1015 -- -gnats (syntax check only)
1016
1017 when 's' =>
1018 if not First_Switch then
1019 Osint.Fail
1020 ("-gnats must be first if combined with other switches");
1021 end if;
1022
1023 Ptr := Ptr + 1;
1024 Operating_Mode := Check_Syntax;
1025
1026 -- -gnatS (print package Standard)
1027
1028 when 'S' =>
1029 Print_Standard := True;
1030 Ptr := Ptr + 1;
1031
1032 -- -gnatt (output tree)
1033
1034 when 't' =>
1035 Ptr := Ptr + 1;
1036 Tree_Output := True;
1037 Back_Annotate_Rep_Info := True;
1038
1039 -- -gnatT (change start of internal table sizes)
1040
1041 when 'T' =>
1042 Ptr := Ptr + 1;
1043 Scan_Pos (Switch_Chars, Max, Ptr, Table_Factor, C);
1044
1045 -- -gnatu (list units for compilation)
1046
1047 when 'u' =>
1048 Ptr := Ptr + 1;
1049 List_Units := True;
1050
1051 -- -gnatU (unique tags)
1052
1053 when 'U' =>
1054 Ptr := Ptr + 1;
1055 Unique_Error_Tag := True;
1056
1057 -- -gnatv (verbose mode)
1058
1059 when 'v' =>
1060 Ptr := Ptr + 1;
1061 Verbose_Mode := True;
1062
1063 -- -gnatV (validity checks)
1064
1065 when 'V' =>
1066 Store_Switch := False;
1067 Ptr := Ptr + 1;
1068
1069 if Ptr > Max then
1070 Bad_Switch ("-gnatV");
1071
1072 else
1073 declare
1074 OK : Boolean;
1075
1076 begin
1077 Set_Validity_Check_Options
1078 (Switch_Chars (Ptr .. Max), OK, Ptr);
1079
1080 if not OK then
1081 Bad_Switch ("-gnatV" & Switch_Chars (Ptr .. Max));
1082 end if;
1083
1084 for Index in First_Char + 1 .. Max loop
1085 Store_Compilation_Switch
1086 ("-gnatV" & Switch_Chars (Index));
1087 end loop;
1088 end;
1089 end if;
1090
1091 Ptr := Max + 1;
1092
1093 -- -gnatw (warning modes)
1094
1095 when 'w' =>
1096 Store_Switch := False;
1097 Ptr := Ptr + 1;
1098
1099 if Ptr > Max then
1100 Bad_Switch ("-gnatw");
1101 end if;
1102
1103 while Ptr <= Max loop
1104 C := Switch_Chars (Ptr);
1105
1106 -- Case of dot switch
1107
1108 if C = '.' and then Ptr < Max then
1109 Ptr := Ptr + 1;
1110 C := Switch_Chars (Ptr);
1111
1112 if Set_Dot_Warning_Switch (C) then
1113 Store_Compilation_Switch ("-gnatw." & C);
1114 else
1115 Bad_Switch ("-gnatw." & Switch_Chars (Ptr .. Max));
1116 end if;
1117
1118 -- Normal case, no dot
1119
1120 else
1121 if Set_Warning_Switch (C) then
1122 Store_Compilation_Switch ("-gnatw" & C);
1123 else
1124 Bad_Switch ("-gnatw" & Switch_Chars (Ptr .. Max));
1125 end if;
1126 end if;
1127
1128 Ptr := Ptr + 1;
1129 end loop;
1130
1131 return;
1132
1133 -- -gnatW (wide character encoding method)
1134
1135 when 'W' =>
1136 Ptr := Ptr + 1;
1137
1138 if Ptr > Max then
1139 Bad_Switch ("-gnatW");
1140 end if;
1141
1142 begin
1143 Wide_Character_Encoding_Method :=
1144 Get_WC_Encoding_Method (Switch_Chars (Ptr));
1145 exception
1146 when Constraint_Error =>
1147 Bad_Switch ("-gnatW" & Switch_Chars (Ptr .. Max));
1148 end;
1149
1150 Wide_Character_Encoding_Method_Specified := True;
1151
1152 Upper_Half_Encoding :=
1153 Wide_Character_Encoding_Method in
1154 WC_Upper_Half_Encoding_Method;
1155
1156 Ptr := Ptr + 1;
1157
1158 -- -gnatx (suppress cross-ref information)
1159
1160 when 'x' =>
1161 Ptr := Ptr + 1;
1162 Xref_Active := False;
1163
1164 -- -gnatX (language extensions)
1165
1166 when 'X' =>
1167 Ptr := Ptr + 1;
1168 Extensions_Allowed := True;
1169 Ada_Version := Ada_Version_Type'Last;
1170 Ada_Version_Explicit := Ada_Version_Type'Last;
1171
1172 -- -gnaty (style checks)
1173
1174 when 'y' =>
1175 Ptr := Ptr + 1;
1176
1177 if Ptr > Max then
1178 Set_Default_Style_Check_Options;
1179
1180 else
1181 Store_Switch := False;
1182
1183 declare
1184 OK : Boolean;
1185
1186 begin
1187 Set_Style_Check_Options
1188 (Switch_Chars (Ptr .. Max), OK, Ptr);
1189
1190 if not OK then
1191 Osint.Fail
1192 ("bad -gnaty switch (" &
1193 Style_Msg_Buf (1 .. Style_Msg_Len) & ')');
1194 end if;
1195
1196 Ptr := First_Char + 1;
1197 while Ptr <= Max loop
1198 if Switch_Chars (Ptr) = 'M' then
1199 First_Char := Ptr;
1200 loop
1201 Ptr := Ptr + 1;
1202 exit when Ptr > Max
1203 or else Switch_Chars (Ptr) not in '0' .. '9';
1204 end loop;
1205
1206 Store_Compilation_Switch
1207 ("-gnaty" & Switch_Chars (First_Char .. Ptr - 1));
1208
1209 else
1210 Store_Compilation_Switch
1211 ("-gnaty" & Switch_Chars (Ptr));
1212 Ptr := Ptr + 1;
1213 end if;
1214 end loop;
1215 end;
1216 end if;
1217
1218 -- -gnatz (stub generation)
1219
1220 when 'z' =>
1221
1222 -- -gnatz must be the first and only switch in Switch_Chars,
1223 -- and is a two-letter switch.
1224
1225 if Ptr /= Switch_Chars'First + 5
1226 or else (Max - Ptr + 1) > 2
1227 then
1228 Osint.Fail
1229 ("-gnatz* may not be combined with other switches");
1230 end if;
1231
1232 if Ptr = Max then
1233 Bad_Switch ("-gnatz");
1234 end if;
1235
1236 Ptr := Ptr + 1;
1237
1238 -- Only one occurrence of -gnat* is permitted
1239
1240 if Distribution_Stub_Mode = No_Stubs then
1241 case Switch_Chars (Ptr) is
1242 when 'r' =>
1243 Distribution_Stub_Mode := Generate_Receiver_Stub_Body;
1244
1245 when 'c' =>
1246 Distribution_Stub_Mode := Generate_Caller_Stub_Body;
1247
1248 when others =>
1249 Bad_Switch ("-gnatz" & Switch_Chars (Ptr .. Max));
1250 end case;
1251
1252 Ptr := Ptr + 1;
1253
1254 else
1255 Osint.Fail ("only one -gnatz* switch allowed");
1256 end if;
1257
1258 -- -gnatZ (obsolescent)
1259
1260 when 'Z' =>
1261 Ptr := Ptr + 1;
1262 Osint.Fail
1263 ("-gnatZ is no longer supported: consider using --RTS=zcx");
1264
1265 -- Note on language version switches: whenever a new language
1266 -- version switch is added, Switch.M.Normalize_Compiler_Switches
1267 -- must be updated.
1268
1269 -- -gnat83
1270
1271 when '8' =>
1272 if Ptr = Max then
1273 Bad_Switch ("-gnat8");
1274 end if;
1275
1276 Ptr := Ptr + 1;
1277
1278 if Switch_Chars (Ptr) /= '3' then
1279 Bad_Switch ("-gnat8" & Switch_Chars (Ptr .. Max));
1280 else
1281 Ptr := Ptr + 1;
1282 Ada_Version := Ada_83;
1283 Ada_Version_Explicit := Ada_Version;
1284 end if;
1285
1286 -- -gnat95
1287
1288 when '9' =>
1289 if Ptr = Max then
1290 Bad_Switch ("-gnat9");
1291 end if;
1292
1293 Ptr := Ptr + 1;
1294
1295 if Switch_Chars (Ptr) /= '5' then
1296 Bad_Switch ("-gnat9" & Switch_Chars (Ptr .. Max));
1297 else
1298 Ptr := Ptr + 1;
1299 Ada_Version := Ada_95;
1300 Ada_Version_Explicit := Ada_Version;
1301 end if;
1302
1303 -- -gnat05
1304
1305 when '0' =>
1306 if Ptr = Max then
1307 Bad_Switch ("-gnat0");
1308 end if;
1309
1310 Ptr := Ptr + 1;
1311
1312 if Switch_Chars (Ptr) /= '5' then
1313 Bad_Switch ("-gnat0" & Switch_Chars (Ptr .. Max));
1314 else
1315 Ptr := Ptr + 1;
1316 Ada_Version := Ada_2005;
1317 Ada_Version_Explicit := Ada_Version;
1318 end if;
1319
1320 -- -gnat12
1321
1322 when '1' =>
1323 if Ptr = Max then
1324 Bad_Switch ("-gnat1");
1325 end if;
1326
1327 Ptr := Ptr + 1;
1328
1329 if Switch_Chars (Ptr) /= '2' then
1330 Bad_Switch ("-gnat1" & Switch_Chars (Ptr .. Max));
1331 else
1332 Ptr := Ptr + 1;
1333 Ada_Version := Ada_2012;
1334 Ada_Version_Explicit := Ada_Version;
1335 end if;
1336
1337 -- -gnat2005 and -gnat2012
1338
1339 when '2' =>
1340 if Ptr > Max - 3 then
1341 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Max));
1342
1343 elsif Switch_Chars (Ptr .. Ptr + 3) = "2005" then
1344 Ada_Version := Ada_2005;
1345
1346 elsif Switch_Chars (Ptr .. Ptr + 3) = "2012" then
1347 Ada_Version := Ada_2012;
1348
1349 else
1350 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Ptr + 3));
1351 end if;
1352
1353 Ada_Version_Explicit := Ada_Version;
1354 Ptr := Ptr + 4;
1355
1356 -- Switch cancellation, currently only -gnat-p is allowed.
1357 -- All we do here is the error checking, since the actual
1358 -- processing for switch cancellation is done by calls to
1359 -- Switch_Subsequently_Cancelled at the appropriate point.
1360
1361 when '-' =>
1362
1363 -- Simple ignore -gnat-p
1364
1365 if Switch_Chars = "-gnat-p" then
1366 return;
1367
1368 -- Any other occurrence of minus is ignored. This is for
1369 -- maximum compatibility with previous version which ignored
1370 -- all occurrences of minus.
1371
1372 else
1373 Store_Switch := False;
1374 Ptr := Ptr + 1;
1375 end if;
1376
1377 -- We ignore '/' in switches, this is historical, still needed???
1378
1379 when '/' =>
1380 Store_Switch := False;
1381
1382 -- Anything else is an error (illegal switch character)
1383
1384 when others =>
1385 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Max));
1386 end case;
1387
1388 if Store_Switch then
1389 Store_Compilation_Switch
1390 ("-gnat" & Switch_Chars (First_Char .. Ptr - 1));
1391 end if;
1392
1393 First_Switch := False;
1394 end loop;
1395 end if;
1396 end Scan_Front_End_Switches;
1397
1398 -----------------------------------
1399 -- Switch_Subsequently_Cancelled --
1400 -----------------------------------
1401
1402 function Switch_Subsequently_Cancelled
1403 (C : String;
1404 Args : String_List;
1405 Arg_Rank : Positive) return Boolean
1406 is
1407 begin
1408 -- Loop through arguments following the current one
1409
1410 for Arg in Arg_Rank + 1 .. Args'Last loop
1411 if Args (Arg).all = "-gnat-" & C then
1412 return True;
1413 end if;
1414 end loop;
1415
1416 -- No match found, not cancelled
1417
1418 return False;
1419 end Switch_Subsequently_Cancelled;
1420
1421 end Switch.C;