gnat_ugn.texi: Document -gnateu switch.
[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 Stylesw; use Stylesw;
35 with Ttypes; use Ttypes;
36 with Validsw; use Validsw;
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
287 -- -gnatA (disregard gnat.adc)
288
289 when 'A' =>
290 Ptr := Ptr + 1;
291 Config_File := False;
292
293 -- -gnatb (brief messages to stderr)
294
295 when 'b' =>
296 Ptr := Ptr + 1;
297 Brief_Output := True;
298
299 -- -gnatB (assume no invalid values)
300
301 when 'B' =>
302 Ptr := Ptr + 1;
303 Assume_No_Invalid_Values := True;
304
305 -- -gnatc (check syntax and semantics only)
306
307 when 'c' =>
308 if not First_Switch then
309 Osint.Fail
310 ("-gnatc must be first if combined with other switches");
311 end if;
312
313 -- Not allowed if previous -gnatR given
314
315 if List_Representation_Info /= 0
316 or else List_Representation_Info_Mechanisms
317 then
318 Osint.Fail
319 ("-gnatc not allowed since -gnatR given previously");
320 end if;
321
322 Ptr := Ptr + 1;
323 Operating_Mode := Check_Semantics;
324
325 -- -gnatC (Generate CodePeer information)
326
327 when 'C' =>
328 Ptr := Ptr + 1;
329
330 if not CodePeer_Mode then
331 CodePeer_Mode := True;
332
333 -- Suppress compiler warnings by default, since what we are
334 -- interested in here is what CodePeer can find out. Note
335 -- that if -gnatwxxx is specified after -gnatC on the
336 -- command line, we do not want to override this setting in
337 -- Adjust_Global_Switches, and assume that the user wants to
338 -- get both warnings from GNAT and CodePeer messages.
339
340 Warning_Mode := Suppress;
341 end if;
342
343 -- -gnatd (compiler debug options)
344
345 when 'd' =>
346 Store_Switch := False;
347 Dot := False;
348 First_Ptr := Ptr + 1;
349
350 -- Note: for the debug switch, the remaining characters in this
351 -- switch field must all be debug flags, since all valid switch
352 -- characters are also valid debug characters.
353
354 -- Loop to scan out debug flags
355
356 while Ptr < Max loop
357 Ptr := Ptr + 1;
358 C := Switch_Chars (Ptr);
359 exit when C = ASCII.NUL or else C = '/' or else C = '-';
360
361 if C in '1' .. '9' or else
362 C in 'a' .. 'z' or else
363 C in 'A' .. 'Z'
364 then
365 -- Case of dotted flag
366
367 if Dot then
368 Set_Dotted_Debug_Flag (C);
369 Store_Compilation_Switch ("-gnatd." & C);
370
371 -- Special check, -gnatd.b must come first
372
373 if C = 'b'
374 and then (Ptr /= First_Ptr + 1
375 or else not First_Switch)
376 then
377 Osint.Fail
378 ("-gnatd.b must be first if combined "
379 & "with other switches");
380 end if;
381
382 -- Not a dotted flag
383
384 else
385 Set_Debug_Flag (C);
386 Store_Compilation_Switch ("-gnatd" & C);
387 end if;
388
389 elsif C = '.' then
390 Dot := True;
391
392 elsif Dot then
393 Bad_Switch ("-gnatd." & Switch_Chars (Ptr .. Max));
394 else
395 Bad_Switch ("-gnatd" & Switch_Chars (Ptr .. Max));
396 end if;
397 end loop;
398
399 return;
400
401 -- -gnatD (debug expanded code)
402
403 when 'D' =>
404 Ptr := Ptr + 1;
405
406 -- Not allowed if previous -gnatR given
407
408 -- The reason for this prohibition is that the rewriting of
409 -- Sloc values causes strange malfunctions in the tests of
410 -- whether units belong to the main source. This is really a
411 -- bug, but too hard to fix for a marginal capability ???
412
413 -- The proper fix is to completely redo -gnatD processing so
414 -- that the tree is not messed with, and instead a separate
415 -- table is built on the side for debug information generation.
416
417 if List_Representation_Info /= 0 then
418 Osint.Fail
419 ("-gnatD not permitted since -gnatR given previously");
420 end if;
421
422 -- Scan optional integer line limit value
423
424 if Nat_Present (Switch_Chars, Max, Ptr) then
425 Scan_Nat (Switch_Chars, Max, Ptr, Sprint_Line_Limit, 'D');
426 Sprint_Line_Limit := Nat'Max (Sprint_Line_Limit, 40);
427 end if;
428
429 -- Note: -gnatD also sets -gnatx (to turn off cross-reference
430 -- generation in the ali file) since otherwise this generation
431 -- gets confused by the "wrong" Sloc values put in the tree.
432
433 Debug_Generated_Code := True;
434 Xref_Active := False;
435 Set_Debug_Flag ('g');
436
437 -- -gnate? (extended switches)
438
439 when 'e' =>
440 Ptr := Ptr + 1;
441
442 -- The -gnate? switches are all double character switches
443 -- so we must always have a character after the e.
444
445 if Ptr > Max then
446 Bad_Switch ("-gnate");
447 end if;
448
449 case Switch_Chars (Ptr) is
450
451 -- -gnatea (initial delimiter of explicit switches)
452
453 -- This is an internal switch
454
455 -- All switches that come before -gnatea have been added by
456 -- the GCC driver and are not stored in the ALI file.
457 -- See also -gnatez below.
458
459 when 'a' =>
460 Store_Switch := False;
461 Enable_Switch_Storing;
462 Ptr := Ptr + 1;
463
464 -- -gnateA (aliasing checks on parameters)
465
466 when 'A' =>
467 Ptr := Ptr + 1;
468 Check_Aliasing_Of_Parameters := True;
469
470 -- -gnatec (configuration pragmas)
471
472 when 'c' =>
473 Store_Switch := False;
474 Ptr := Ptr + 1;
475
476 -- There may be an equal sign between -gnatec and
477 -- the path name of the config file.
478
479 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
480 Ptr := Ptr + 1;
481 end if;
482
483 if Ptr > Max then
484 Bad_Switch ("-gnatec");
485 end if;
486
487 declare
488 Config_File_Name : constant String_Access :=
489 new String'
490 (Switch_Chars (Ptr .. Max));
491
492 begin
493 if Config_File_Names = null then
494 Config_File_Names :=
495 new String_List'(1 => Config_File_Name);
496
497 else
498 declare
499 New_Names : constant String_List_Access :=
500 new String_List
501 (1 ..
502 Config_File_Names'Length + 1);
503
504 begin
505 for Index in Config_File_Names'Range loop
506 New_Names (Index) :=
507 Config_File_Names (Index);
508 Config_File_Names (Index) := null;
509 end loop;
510
511 New_Names (New_Names'Last) := Config_File_Name;
512 Free (Config_File_Names);
513 Config_File_Names := New_Names;
514 end;
515 end if;
516 end;
517
518 return;
519
520 -- -gnateC switch (CodePeer SCIL generation)
521
522 -- Not enabled for now, keep it for later???
523 -- use -gnatd.I only for now
524
525 -- when 'C' =>
526 -- Ptr := Ptr + 1;
527 -- Generate_SCIL := True;
528
529 -- -gnated switch (disable atomic synchronization)
530
531 when 'd' =>
532 Suppress_Options.Suppress (Atomic_Synchronization) :=
533 True;
534
535 -- -gnateD switch (preprocessing symbol definition)
536
537 when 'D' =>
538 Store_Switch := False;
539 Ptr := Ptr + 1;
540
541 if Ptr > Max then
542 Bad_Switch ("-gnateD");
543 end if;
544
545 Add_Symbol_Definition (Switch_Chars (Ptr .. Max));
546
547 -- Store the switch
548
549 Store_Compilation_Switch
550 ("-gnateD" & Switch_Chars (Ptr .. Max));
551 Ptr := Max + 1;
552
553 -- -gnateE (extra exception information)
554
555 when 'E' =>
556 Exception_Extra_Info := True;
557 Ptr := Ptr + 1;
558
559 -- -gnatef (full source path for brief error messages)
560
561 when 'f' =>
562 Store_Switch := False;
563 Ptr := Ptr + 1;
564 Full_Path_Name_For_Brief_Errors := True;
565
566 -- -gnateF (Check_Float_Overflow)
567
568 when 'F' =>
569 Ptr := Ptr + 1;
570 Check_Float_Overflow := True;
571
572 -- -gnateG (save preprocessor output)
573
574 when 'G' =>
575 Generate_Processed_File := True;
576 Ptr := Ptr + 1;
577
578 -- -gnatei (max number of instantiations)
579
580 when 'i' =>
581 Ptr := Ptr + 1;
582 Scan_Pos
583 (Switch_Chars, Max, Ptr, Maximum_Instantiations, C);
584
585 -- -gnateI (index of unit in multi-unit source)
586
587 when 'I' =>
588 Ptr := Ptr + 1;
589 Scan_Pos (Switch_Chars, Max, Ptr, Multiple_Unit_Index, C);
590
591 -- -gnatem (mapping file)
592
593 when 'm' =>
594 Store_Switch := False;
595 Ptr := Ptr + 1;
596
597 -- There may be an equal sign between -gnatem and
598 -- the path name of the mapping file.
599
600 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
601 Ptr := Ptr + 1;
602 end if;
603
604 if Ptr > Max then
605 Bad_Switch ("-gnatem");
606 end if;
607
608 Mapping_File_Name :=
609 new String'(Switch_Chars (Ptr .. Max));
610 return;
611
612 -- -gnateO= (object path file)
613
614 -- This is an internal switch
615
616 when 'O' =>
617 Store_Switch := False;
618 Ptr := Ptr + 1;
619
620 -- Check for '='
621
622 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
623 Bad_Switch ("-gnateO");
624 else
625 Object_Path_File_Name :=
626 new String'(Switch_Chars (Ptr + 1 .. Max));
627 end if;
628
629 return;
630
631 -- -gnatep (preprocessing data file)
632
633 when 'p' =>
634 Store_Switch := False;
635 Ptr := Ptr + 1;
636
637 -- There may be an equal sign between -gnatep and
638 -- the path name of the mapping file.
639
640 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
641 Ptr := Ptr + 1;
642 end if;
643
644 if Ptr > Max then
645 Bad_Switch ("-gnatep");
646 end if;
647
648 Preprocessing_Data_File :=
649 new String'(Switch_Chars (Ptr .. Max));
650
651 -- Store the switch, normalizing to -gnatep=
652
653 Store_Compilation_Switch
654 ("-gnatep=" & Preprocessing_Data_File.all);
655
656 Ptr := Max + 1;
657
658 -- -gnateP (Treat pragma Pure/Preelaborate errs as warnings)
659
660 when 'P' =>
661 Treat_Categorization_Errors_As_Warnings := True;
662
663 -- -gnateS (generate SCO information)
664
665 -- Include Source Coverage Obligation information in ALI
666 -- files for the benefit of source coverage analysis tools
667 -- (xcov).
668
669 when 'S' =>
670 Generate_SCO := True;
671 Generate_SCO_Instance_Table := True;
672 Ptr := Ptr + 1;
673
674 -- -gnatet (write target dependent information)
675
676 when 't' =>
677 if not First_Switch then
678 Osint.Fail
679 ("-gnatet must not be combined with other switches");
680 end if;
681
682 -- Check for '='
683
684 Ptr := Ptr + 1;
685
686 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
687 Bad_Switch ("-gnatet");
688 else
689 Target_Dependent_Info_Write_Name :=
690 new String'(Switch_Chars (Ptr + 1 .. Max));
691 end if;
692
693 return;
694
695 -- -gnateT (read target dependent information)
696
697 when 'T' =>
698 if not First_Switch then
699 Osint.Fail
700 ("-gnateT must not be combined with other switches");
701 end if;
702
703 -- Check for '='
704
705 Ptr := Ptr + 1;
706
707 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
708 Bad_Switch ("-gnateT");
709 else
710 -- This parameter was stored by Set_Targ earlier
711
712 pragma Assert
713 (Target_Dependent_Info_Read_Name.all =
714 Switch_Chars (Ptr + 1 .. Max));
715 null;
716 end if;
717
718 return;
719
720 -- -gnateu (unrecognized y,V,w switches)
721
722 when 'u' =>
723 Ptr := Ptr + 1;
724 Ignore_Unrecognized_VWY_Switches := True;
725
726 -- -gnateV (validity checks on parameters)
727
728 when 'V' =>
729 Ptr := Ptr + 1;
730 Check_Validity_Of_Parameters := True;
731
732 -- -gnateY (ignore Style_Checks pragmas)
733
734 when 'Y' =>
735 Ignore_Style_Checks_Pragmas := True;
736 Ptr := Ptr + 1;
737
738 -- -gnatez (final delimiter of explicit switches)
739
740 -- This is an internal switch
741
742 -- All switches that come after -gnatez have been added by
743 -- the GCC driver and are not stored in the ALI file. See
744 -- also -gnatea above.
745
746 when 'z' =>
747 Store_Switch := False;
748 Disable_Switch_Storing;
749 Ptr := Ptr + 1;
750
751 -- All other -gnate? switches are unassigned
752
753 when others =>
754 Bad_Switch ("-gnate" & Switch_Chars (Ptr .. Max));
755 end case;
756
757 -- -gnatE (dynamic elaboration checks)
758
759 when 'E' =>
760 Ptr := Ptr + 1;
761 Dynamic_Elaboration_Checks := True;
762
763 -- -gnatf (full error messages)
764
765 when 'f' =>
766 Ptr := Ptr + 1;
767 All_Errors_Mode := True;
768
769 -- -gnatF (overflow of predefined float types)
770
771 when 'F' =>
772 Ptr := Ptr + 1;
773 External_Name_Exp_Casing := Uppercase;
774 External_Name_Imp_Casing := Uppercase;
775
776 -- -gnatg (GNAT implementation mode)
777
778 when 'g' =>
779 Ptr := Ptr + 1;
780 GNAT_Mode := True;
781 Identifier_Character_Set := 'n';
782 System_Extend_Unit := Empty;
783 Warning_Mode := Treat_As_Error;
784 Style_Check_Main := True;
785
786 -- Set Ada 2012 mode explicitly. We don't want to rely on the
787 -- implicit setting here, since for example, we want
788 -- Preelaborate_05 treated as Preelaborate
789
790 Ada_Version := Ada_2012;
791 Ada_Version_Explicit := Ada_2012;
792 Ada_Version_Pragma := Empty;
793
794 -- Set default warnings and style checks for -gnatg
795
796 Set_GNAT_Mode_Warnings;
797 Set_GNAT_Style_Check_Options;
798
799 -- -gnatG (output generated code)
800
801 when 'G' =>
802 Ptr := Ptr + 1;
803 Print_Generated_Code := True;
804
805 -- Scan optional integer line limit value
806
807 if Nat_Present (Switch_Chars, Max, Ptr) then
808 Scan_Nat (Switch_Chars, Max, Ptr, Sprint_Line_Limit, 'G');
809 Sprint_Line_Limit := Nat'Max (Sprint_Line_Limit, 40);
810 end if;
811
812 -- -gnath (help information)
813
814 when 'h' =>
815 Ptr := Ptr + 1;
816 Usage_Requested := True;
817
818 -- -gnati (character set)
819
820 when 'i' =>
821 if Ptr = Max then
822 Bad_Switch ("-gnati");
823 end if;
824
825 Ptr := Ptr + 1;
826 C := Switch_Chars (Ptr);
827
828 if C in '1' .. '5'
829 or else C = '8'
830 or else C = '9'
831 or else C = 'p'
832 or else C = 'f'
833 or else C = 'n'
834 or else C = 'w'
835 then
836 Identifier_Character_Set := C;
837 Ptr := Ptr + 1;
838
839 else
840 Bad_Switch ("-gnati" & Switch_Chars (Ptr .. Max));
841 end if;
842
843 -- -gnatI (ignore representation clauses)
844
845 when 'I' =>
846 Ptr := Ptr + 1;
847 Ignore_Rep_Clauses := True;
848
849 -- -gnatj (messages in limited length lines)
850
851 when 'j' =>
852 Ptr := Ptr + 1;
853 Scan_Nat (Switch_Chars, Max, Ptr, Error_Msg_Line_Length, C);
854
855 -- -gnatk (limit file name length)
856
857 when 'k' =>
858 Ptr := Ptr + 1;
859 Scan_Pos
860 (Switch_Chars, Max, Ptr, Maximum_File_Name_Length, C);
861
862 -- -gnatl (output full source)
863
864 when 'l' =>
865 Ptr := Ptr + 1;
866 Full_List := True;
867
868 -- There may be an equal sign between -gnatl and a file name
869
870 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
871 if Ptr = Max then
872 Osint.Fail ("file name for -gnatl= is null");
873 else
874 Opt.Full_List_File_Name :=
875 new String'(Switch_Chars (Ptr + 1 .. Max));
876 Ptr := Max + 1;
877 end if;
878 end if;
879
880 -- -gnatL (corresponding source text)
881
882 when 'L' =>
883 Ptr := Ptr + 1;
884 Dump_Source_Text := True;
885
886 -- -gnatm (max number or errors/warnings)
887
888 when 'm' =>
889 Ptr := Ptr + 1;
890 Scan_Nat (Switch_Chars, Max, Ptr, Maximum_Messages, C);
891
892 -- -gnatn (enable pragma Inline)
893
894 when 'n' =>
895 Ptr := Ptr + 1;
896 Inline_Active := True;
897
898 -- There may be a digit (1 or 2) appended to the switch
899
900 if Ptr <= Max then
901 C := Switch_Chars (Ptr);
902
903 if C in '1' .. '2' then
904 Ptr := Ptr + 1;
905 Inline_Level := Character'Pos (C) - Character'Pos ('0');
906 end if;
907 end if;
908
909 -- -gnatN (obsolescent)
910
911 when 'N' =>
912 Ptr := Ptr + 1;
913 Inline_Active := True;
914 Front_End_Inlining := True;
915
916 -- -gnato (overflow checks)
917
918 when 'o' =>
919 Ptr := Ptr + 1;
920 Suppress_Options.Suppress (Overflow_Check) := False;
921
922 -- Case of no digits after the -gnato
923
924 if Ptr > Max or else Switch_Chars (Ptr) not in '1' .. '3' then
925 Suppress_Options.Overflow_Mode_General := Strict;
926 Suppress_Options.Overflow_Mode_Assertions := Strict;
927
928 -- At least one digit after the -gnato
929
930 else
931 -- Handle first digit after -gnato
932
933 Suppress_Options.Overflow_Mode_General :=
934 Get_Overflow_Mode (Switch_Chars (Ptr));
935 Ptr := Ptr + 1;
936
937 -- Only one digit after -gnato, set assertions mode to
938 -- be the same as general mode.
939
940 if Ptr > Max
941 or else Switch_Chars (Ptr) not in '1' .. '3'
942 then
943 Suppress_Options.Overflow_Mode_Assertions :=
944 Suppress_Options.Overflow_Mode_General;
945
946 -- Process second digit after -gnato
947
948 else
949 Suppress_Options.Overflow_Mode_Assertions :=
950 Get_Overflow_Mode (Switch_Chars (Ptr));
951 Ptr := Ptr + 1;
952 end if;
953 end if;
954
955 -- -gnatO (specify name of the object file)
956
957 -- This is an internal switch
958
959 when 'O' =>
960 Store_Switch := False;
961 Ptr := Ptr + 1;
962 Output_File_Name_Present := True;
963
964 -- -gnatp (suppress all checks)
965
966 when 'p' =>
967 Ptr := Ptr + 1;
968
969 -- Skip processing if cancelled by subsequent -gnat-p
970
971 if Switch_Subsequently_Cancelled ("p", Args, Arg_Rank) then
972 Store_Switch := False;
973
974 else
975 -- Set all specific options as well as All_Checks in the
976 -- Suppress_Options array, excluding Elaboration_Check,
977 -- since this is treated specially because we do not want
978 -- -gnatp to disable static elaboration processing. Also
979 -- exclude Atomic_Synchronization, since this is not a real
980 -- check.
981
982 for J in Suppress_Options.Suppress'Range loop
983 if J /= Elaboration_Check
984 and then
985 J /= Atomic_Synchronization
986 then
987 Suppress_Options.Suppress (J) := True;
988 end if;
989 end loop;
990
991 Validity_Checks_On := False;
992 Opt.Suppress_Checks := True;
993 end if;
994
995 -- -gnatP (periodic poll)
996
997 when 'P' =>
998 Ptr := Ptr + 1;
999 Polling_Required := True;
1000
1001 -- -gnatq (don't quit)
1002
1003 when 'q' =>
1004 Ptr := Ptr + 1;
1005 Try_Semantics := True;
1006
1007 -- -gnatQ (always write ALI file)
1008
1009 when 'Q' =>
1010 Ptr := Ptr + 1;
1011 Force_ALI_Tree_File := True;
1012 Try_Semantics := True;
1013
1014 -- -gnatr (restrictions as warnings)
1015
1016 when 'r' =>
1017 Ptr := Ptr + 1;
1018 Treat_Restrictions_As_Warnings := True;
1019
1020 -- -gnatR (list rep. info)
1021
1022 when 'R' =>
1023
1024 -- Not allowed if previous -gnatD given. See more extensive
1025 -- comments in the 'D' section for the inverse test.
1026
1027 if Debug_Generated_Code then
1028 Osint.Fail
1029 ("-gnatR not permitted since -gnatD given previously");
1030 end if;
1031
1032 -- Not allowed if previous -gnatc was given, since we must
1033 -- call the code generator to determine rep information.
1034
1035 if Operating_Mode = Check_Semantics then
1036 Osint.Fail
1037 ("-gnatR not permitted since -gnatc given previously");
1038 end if;
1039
1040 -- Set to annotate rep info, and set default -gnatR mode
1041
1042 Back_Annotate_Rep_Info := True;
1043 List_Representation_Info := 1;
1044
1045 -- Scan possible parameter
1046
1047 Ptr := Ptr + 1;
1048 while Ptr <= Max loop
1049 C := Switch_Chars (Ptr);
1050
1051 if C in '1' .. '3' then
1052 List_Representation_Info :=
1053 Character'Pos (C) - Character'Pos ('0');
1054
1055 elsif Switch_Chars (Ptr) = 's' then
1056 List_Representation_Info_To_File := True;
1057
1058 elsif Switch_Chars (Ptr) = 'm' then
1059 List_Representation_Info_Mechanisms := True;
1060
1061 else
1062 Bad_Switch ("-gnatR" & Switch_Chars (Ptr .. Max));
1063 end if;
1064
1065 Ptr := Ptr + 1;
1066 end loop;
1067
1068 -- -gnats (syntax check only)
1069
1070 when 's' =>
1071 if not First_Switch then
1072 Osint.Fail
1073 ("-gnats must be first if combined with other switches");
1074 end if;
1075
1076 Ptr := Ptr + 1;
1077 Operating_Mode := Check_Syntax;
1078
1079 -- -gnatS (print package Standard)
1080
1081 when 'S' =>
1082 Print_Standard := True;
1083 Ptr := Ptr + 1;
1084
1085 -- -gnatt (output tree)
1086
1087 when 't' =>
1088 Ptr := Ptr + 1;
1089 Tree_Output := True;
1090 Back_Annotate_Rep_Info := True;
1091
1092 -- -gnatT (change start of internal table sizes)
1093
1094 when 'T' =>
1095 Ptr := Ptr + 1;
1096 Scan_Pos (Switch_Chars, Max, Ptr, Table_Factor, C);
1097
1098 -- -gnatu (list units for compilation)
1099
1100 when 'u' =>
1101 Ptr := Ptr + 1;
1102 List_Units := True;
1103
1104 -- -gnatU (unique tags)
1105
1106 when 'U' =>
1107 Ptr := Ptr + 1;
1108 Unique_Error_Tag := True;
1109
1110 -- -gnatv (verbose mode)
1111
1112 when 'v' =>
1113 Ptr := Ptr + 1;
1114 Verbose_Mode := True;
1115
1116 -- -gnatV (validity checks)
1117
1118 when 'V' =>
1119 Store_Switch := False;
1120 Ptr := Ptr + 1;
1121
1122 if Ptr > Max then
1123 Bad_Switch ("-gnatV");
1124
1125 else
1126 declare
1127 OK : Boolean;
1128
1129 begin
1130 Set_Validity_Check_Options
1131 (Switch_Chars (Ptr .. Max), OK, Ptr);
1132
1133 if not OK then
1134 Bad_Switch ("-gnatV" & Switch_Chars (Ptr .. Max));
1135 end if;
1136
1137 for Index in First_Char + 1 .. Max loop
1138 Store_Compilation_Switch
1139 ("-gnatV" & Switch_Chars (Index));
1140 end loop;
1141 end;
1142 end if;
1143
1144 Ptr := Max + 1;
1145
1146 -- -gnatw (warning modes)
1147
1148 when 'w' =>
1149 Store_Switch := False;
1150 Ptr := Ptr + 1;
1151
1152 if Ptr > Max then
1153 Bad_Switch ("-gnatw");
1154 end if;
1155
1156 while Ptr <= Max loop
1157 C := Switch_Chars (Ptr);
1158
1159 -- Case of dot switch
1160
1161 if C = '.' and then Ptr < Max then
1162 Ptr := Ptr + 1;
1163 C := Switch_Chars (Ptr);
1164
1165 if Set_Dot_Warning_Switch (C) then
1166 Store_Compilation_Switch ("-gnatw." & C);
1167 else
1168 Bad_Switch ("-gnatw." & Switch_Chars (Ptr .. Max));
1169 end if;
1170
1171 -- Normal case, no dot
1172
1173 else
1174 if Set_Warning_Switch (C) then
1175 Store_Compilation_Switch ("-gnatw" & C);
1176 else
1177 Bad_Switch ("-gnatw" & Switch_Chars (Ptr .. Max));
1178 end if;
1179 end if;
1180
1181 Ptr := Ptr + 1;
1182 end loop;
1183
1184 return;
1185
1186 -- -gnatW (wide character encoding method)
1187
1188 when 'W' =>
1189 Ptr := Ptr + 1;
1190
1191 if Ptr > Max then
1192 Bad_Switch ("-gnatW");
1193 end if;
1194
1195 begin
1196 Wide_Character_Encoding_Method :=
1197 Get_WC_Encoding_Method (Switch_Chars (Ptr));
1198 exception
1199 when Constraint_Error =>
1200 Bad_Switch ("-gnatW" & Switch_Chars (Ptr .. Max));
1201 end;
1202
1203 Wide_Character_Encoding_Method_Specified := True;
1204
1205 Upper_Half_Encoding :=
1206 Wide_Character_Encoding_Method in
1207 WC_Upper_Half_Encoding_Method;
1208
1209 Ptr := Ptr + 1;
1210
1211 -- -gnatx (suppress cross-ref information)
1212
1213 when 'x' =>
1214 Ptr := Ptr + 1;
1215 Xref_Active := False;
1216
1217 -- -gnatX (language extensions)
1218
1219 when 'X' =>
1220 Ptr := Ptr + 1;
1221 Extensions_Allowed := True;
1222 Ada_Version := Ada_Version_Type'Last;
1223 Ada_Version_Explicit := Ada_Version_Type'Last;
1224 Ada_Version_Pragma := Empty;
1225
1226 -- -gnaty (style checks)
1227
1228 when 'y' =>
1229 Ptr := Ptr + 1;
1230 Style_Check_Main := True;
1231
1232 if Ptr > Max then
1233 Set_Default_Style_Check_Options;
1234
1235 else
1236 Store_Switch := False;
1237
1238 declare
1239 OK : Boolean;
1240
1241 begin
1242 Set_Style_Check_Options
1243 (Switch_Chars (Ptr .. Max), OK, Ptr);
1244
1245 if not OK then
1246 Osint.Fail
1247 ("bad -gnaty switch (" &
1248 Style_Msg_Buf (1 .. Style_Msg_Len) & ')');
1249 end if;
1250
1251 Ptr := First_Char + 1;
1252 while Ptr <= Max loop
1253 if Switch_Chars (Ptr) = 'M' then
1254 First_Char := Ptr;
1255 loop
1256 Ptr := Ptr + 1;
1257 exit when Ptr > Max
1258 or else Switch_Chars (Ptr) not in '0' .. '9';
1259 end loop;
1260
1261 Store_Compilation_Switch
1262 ("-gnaty" & Switch_Chars (First_Char .. Ptr - 1));
1263
1264 else
1265 Store_Compilation_Switch
1266 ("-gnaty" & Switch_Chars (Ptr));
1267 Ptr := Ptr + 1;
1268 end if;
1269 end loop;
1270 end;
1271 end if;
1272
1273 -- -gnatz (stub generation)
1274
1275 when 'z' =>
1276
1277 -- -gnatz must be the first and only switch in Switch_Chars,
1278 -- and is a two-letter switch.
1279
1280 if Ptr /= Switch_Chars'First + 5
1281 or else (Max - Ptr + 1) > 2
1282 then
1283 Osint.Fail
1284 ("-gnatz* may not be combined with other switches");
1285 end if;
1286
1287 if Ptr = Max then
1288 Bad_Switch ("-gnatz");
1289 end if;
1290
1291 Ptr := Ptr + 1;
1292
1293 -- Only one occurrence of -gnat* is permitted
1294
1295 if Distribution_Stub_Mode = No_Stubs then
1296 case Switch_Chars (Ptr) is
1297 when 'r' =>
1298 Distribution_Stub_Mode := Generate_Receiver_Stub_Body;
1299
1300 when 'c' =>
1301 Distribution_Stub_Mode := Generate_Caller_Stub_Body;
1302
1303 when others =>
1304 Bad_Switch ("-gnatz" & Switch_Chars (Ptr .. Max));
1305 end case;
1306
1307 Ptr := Ptr + 1;
1308
1309 else
1310 Osint.Fail ("only one -gnatz* switch allowed");
1311 end if;
1312
1313 -- -gnatZ (obsolescent)
1314
1315 when 'Z' =>
1316 Ptr := Ptr + 1;
1317 Osint.Fail
1318 ("-gnatZ is no longer supported: consider using --RTS=zcx");
1319
1320 -- Note on language version switches: whenever a new language
1321 -- version switch is added, Switch.M.Normalize_Compiler_Switches
1322 -- must be updated.
1323
1324 -- -gnat83
1325
1326 when '8' =>
1327 if Ptr = Max then
1328 Bad_Switch ("-gnat8");
1329 end if;
1330
1331 Ptr := Ptr + 1;
1332
1333 if Switch_Chars (Ptr) /= '3' then
1334 Bad_Switch ("-gnat8" & Switch_Chars (Ptr .. Max));
1335 else
1336 Ptr := Ptr + 1;
1337 Ada_Version := Ada_83;
1338 Ada_Version_Explicit := Ada_83;
1339 Ada_Version_Pragma := Empty;
1340 end if;
1341
1342 -- -gnat95
1343
1344 when '9' =>
1345 if Ptr = Max then
1346 Bad_Switch ("-gnat9");
1347 end if;
1348
1349 Ptr := Ptr + 1;
1350
1351 if Switch_Chars (Ptr) /= '5' then
1352 Bad_Switch ("-gnat9" & Switch_Chars (Ptr .. Max));
1353 else
1354 Ptr := Ptr + 1;
1355 Ada_Version := Ada_95;
1356 Ada_Version_Explicit := Ada_95;
1357 Ada_Version_Pragma := Empty;
1358 end if;
1359
1360 -- -gnat05
1361
1362 when '0' =>
1363 if Ptr = Max then
1364 Bad_Switch ("-gnat0");
1365 end if;
1366
1367 Ptr := Ptr + 1;
1368
1369 if Switch_Chars (Ptr) /= '5' then
1370 Bad_Switch ("-gnat0" & Switch_Chars (Ptr .. Max));
1371 else
1372 Ptr := Ptr + 1;
1373 Ada_Version := Ada_2005;
1374 Ada_Version_Explicit := Ada_2005;
1375 Ada_Version_Pragma := Empty;
1376 end if;
1377
1378 -- -gnat12
1379
1380 when '1' =>
1381 if Ptr = Max then
1382 Bad_Switch ("-gnat1");
1383 end if;
1384
1385 Ptr := Ptr + 1;
1386
1387 if Switch_Chars (Ptr) /= '2' then
1388 Bad_Switch ("-gnat1" & Switch_Chars (Ptr .. Max));
1389 else
1390 Ptr := Ptr + 1;
1391 Ada_Version := Ada_2012;
1392 Ada_Version_Explicit := Ada_2012;
1393 Ada_Version_Pragma := Empty;
1394 end if;
1395
1396 -- -gnat2005 and -gnat2012
1397
1398 when '2' =>
1399 if Ptr > Max - 3 then
1400 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Max));
1401
1402 elsif Switch_Chars (Ptr .. Ptr + 3) = "2005" then
1403 Ada_Version := Ada_2005;
1404
1405 elsif Switch_Chars (Ptr .. Ptr + 3) = "2012" then
1406 Ada_Version := Ada_2012;
1407
1408 else
1409 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Ptr + 3));
1410 end if;
1411
1412 Ada_Version_Explicit := Ada_Version;
1413 Ada_Version_Pragma := Empty;
1414 Ptr := Ptr + 4;
1415
1416 -- Switch cancellation, currently only -gnat-p is allowed.
1417 -- All we do here is the error checking, since the actual
1418 -- processing for switch cancellation is done by calls to
1419 -- Switch_Subsequently_Cancelled at the appropriate point.
1420
1421 when '-' =>
1422
1423 -- Simple ignore -gnat-p
1424
1425 if Switch_Chars = "-gnat-p" then
1426 return;
1427
1428 -- Any other occurrence of minus is ignored. This is for
1429 -- maximum compatibility with previous version which ignored
1430 -- all occurrences of minus.
1431
1432 else
1433 Store_Switch := False;
1434 Ptr := Ptr + 1;
1435 end if;
1436
1437 -- We ignore '/' in switches, this is historical, still needed???
1438
1439 when '/' =>
1440 Store_Switch := False;
1441
1442 -- Anything else is an error (illegal switch character)
1443
1444 when others =>
1445 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Max));
1446 end case;
1447
1448 if Store_Switch then
1449 Store_Compilation_Switch
1450 ("-gnat" & Switch_Chars (First_Char .. Ptr - 1));
1451 end if;
1452
1453 First_Switch := False;
1454 end loop;
1455 end if;
1456 end Scan_Front_End_Switches;
1457
1458 -----------------------------------
1459 -- Switch_Subsequently_Cancelled --
1460 -----------------------------------
1461
1462 function Switch_Subsequently_Cancelled
1463 (C : String;
1464 Args : String_List;
1465 Arg_Rank : Positive) return Boolean
1466 is
1467 begin
1468 -- Loop through arguments following the current one
1469
1470 for Arg in Arg_Rank + 1 .. Args'Last loop
1471 if Args (Arg).all = "-gnat-" & C then
1472 return True;
1473 end if;
1474 end loop;
1475
1476 -- No match found, not cancelled
1477
1478 return False;
1479 end Switch_Subsequently_Cancelled;
1480
1481 end Switch.C;