gnat1drv.adb (Gnat1drv): Test Target_Dependent_Info_Write_Name.
[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 be first if combined with "
656 & "other switches");
657 end if;
658
659 -- Check for '='
660
661 Ptr := Ptr + 1;
662
663 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
664 Bad_Switch ("-gnatet");
665 else
666 Target_Dependent_Info_Write_Name :=
667 new String'(Switch_Chars (Ptr + 1 .. Max));
668 end if;
669
670 return;
671
672 -- -gnateT (read target dependent information)
673
674 when 'T' =>
675 if not First_Switch then
676 Osint.Fail
677 ("-gnateT must be first if combined with "
678 & "other switches");
679 end if;
680
681 -- Check for '='
682
683 Ptr := Ptr + 1;
684
685 if Ptr >= Max or else Switch_Chars (Ptr) /= '=' then
686 Bad_Switch ("-gnateT");
687 else
688 -- This parameter was stored by Set_Targ earlier
689
690 pragma Assert
691 (Target_Dependent_Info_Read_Name.all =
692 Switch_Chars (Ptr + 1 .. Max));
693 null;
694 end if;
695
696 return;
697
698 -- -gnateV (validity checks on parameters)
699
700 when 'V' =>
701 Ptr := Ptr + 1;
702 Check_Validity_Of_Parameters := True;
703
704 -- -gnateY (ignore Style_Checks pragmas)
705
706 when 'Y' =>
707 Ignore_Style_Checks_Pragmas := True;
708 Ptr := Ptr + 1;
709
710 -- -gnatez (final delimiter of explicit switches)
711
712 -- This is an internal switch
713
714 -- All switches that come after -gnatez have been added by
715 -- the GCC driver and are not stored in the ALI file. See
716 -- also -gnatea above.
717
718 when 'z' =>
719 Store_Switch := False;
720 Disable_Switch_Storing;
721 Ptr := Ptr + 1;
722
723 -- All other -gnate? switches are unassigned
724
725 when others =>
726 Bad_Switch ("-gnate" & Switch_Chars (Ptr .. Max));
727 end case;
728
729 -- -gnatE (dynamic elaboration checks)
730
731 when 'E' =>
732 Ptr := Ptr + 1;
733 Dynamic_Elaboration_Checks := True;
734
735 -- -gnatf (full error messages)
736
737 when 'f' =>
738 Ptr := Ptr + 1;
739 All_Errors_Mode := True;
740
741 -- -gnatF (overflow of predefined float types)
742
743 when 'F' =>
744 Ptr := Ptr + 1;
745 External_Name_Exp_Casing := Uppercase;
746 External_Name_Imp_Casing := Uppercase;
747
748 -- -gnatg (GNAT implementation mode)
749
750 when 'g' =>
751 Ptr := Ptr + 1;
752 GNAT_Mode := True;
753 Identifier_Character_Set := 'n';
754 System_Extend_Unit := Empty;
755 Warning_Mode := Treat_As_Error;
756
757 -- Set Ada 2012 mode explicitly. We don't want to rely on the
758 -- implicit setting here, since for example, we want
759 -- Preelaborate_05 treated as Preelaborate
760
761 Ada_Version := Ada_2012;
762 Ada_Version_Explicit := Ada_Version;
763
764 -- Set default warnings and style checks for -gnatg
765
766 Set_GNAT_Mode_Warnings;
767 Set_GNAT_Style_Check_Options;
768
769 -- -gnatG (output generated code)
770
771 when 'G' =>
772 Ptr := Ptr + 1;
773 Print_Generated_Code := True;
774
775 -- Scan optional integer line limit value
776
777 if Nat_Present (Switch_Chars, Max, Ptr) then
778 Scan_Nat (Switch_Chars, Max, Ptr, Sprint_Line_Limit, 'G');
779 Sprint_Line_Limit := Nat'Max (Sprint_Line_Limit, 40);
780 end if;
781
782 -- -gnath (help information)
783
784 when 'h' =>
785 Ptr := Ptr + 1;
786 Usage_Requested := True;
787
788 -- -gnati (character set)
789
790 when 'i' =>
791 if Ptr = Max then
792 Bad_Switch ("-gnati");
793 end if;
794
795 Ptr := Ptr + 1;
796 C := Switch_Chars (Ptr);
797
798 if C in '1' .. '5'
799 or else C = '8'
800 or else C = '9'
801 or else C = 'p'
802 or else C = 'f'
803 or else C = 'n'
804 or else C = 'w'
805 then
806 Identifier_Character_Set := C;
807 Ptr := Ptr + 1;
808
809 else
810 Bad_Switch ("-gnati" & Switch_Chars (Ptr .. Max));
811 end if;
812
813 -- -gnatI (ignore representation clauses)
814
815 when 'I' =>
816 Ptr := Ptr + 1;
817 Ignore_Rep_Clauses := True;
818
819 -- -gnatj (messages in limited length lines)
820
821 when 'j' =>
822 Ptr := Ptr + 1;
823 Scan_Nat (Switch_Chars, Max, Ptr, Error_Msg_Line_Length, C);
824
825 -- -gnatk (limit file name length)
826
827 when 'k' =>
828 Ptr := Ptr + 1;
829 Scan_Pos
830 (Switch_Chars, Max, Ptr, Maximum_File_Name_Length, C);
831
832 -- -gnatl (output full source)
833
834 when 'l' =>
835 Ptr := Ptr + 1;
836 Full_List := True;
837
838 -- There may be an equal sign between -gnatl and a file name
839
840 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
841 if Ptr = Max then
842 Osint.Fail ("file name for -gnatl= is null");
843 else
844 Opt.Full_List_File_Name :=
845 new String'(Switch_Chars (Ptr + 1 .. Max));
846 Ptr := Max + 1;
847 end if;
848 end if;
849
850 -- -gnatL (corresponding source text)
851
852 when 'L' =>
853 Ptr := Ptr + 1;
854 Dump_Source_Text := True;
855
856 -- -gnatm (max number or errors/warnings)
857
858 when 'm' =>
859 Ptr := Ptr + 1;
860 Scan_Nat (Switch_Chars, Max, Ptr, Maximum_Messages, C);
861
862 -- -gnatn (enable pragma Inline)
863
864 when 'n' =>
865 Ptr := Ptr + 1;
866 Inline_Active := True;
867
868 -- There may be a digit (1 or 2) appended to the switch
869
870 if Ptr <= Max then
871 C := Switch_Chars (Ptr);
872
873 if C in '1' .. '2' then
874 Ptr := Ptr + 1;
875 Inline_Level := Character'Pos (C) - Character'Pos ('0');
876 end if;
877 end if;
878
879 -- -gnatN (obsolescent)
880
881 when 'N' =>
882 Ptr := Ptr + 1;
883 Inline_Active := True;
884 Front_End_Inlining := True;
885
886 -- -gnato (overflow checks)
887
888 when 'o' =>
889 Ptr := Ptr + 1;
890 Suppress_Options.Suppress (Overflow_Check) := False;
891
892 -- Case of no digits after the -gnato
893
894 if Ptr > Max or else Switch_Chars (Ptr) not in '1' .. '3' then
895 Suppress_Options.Overflow_Mode_General := Strict;
896 Suppress_Options.Overflow_Mode_Assertions := Strict;
897
898 -- At least one digit after the -gnato
899
900 else
901 -- Handle first digit after -gnato
902
903 Suppress_Options.Overflow_Mode_General :=
904 Get_Overflow_Mode (Switch_Chars (Ptr));
905 Ptr := Ptr + 1;
906
907 -- Only one digit after -gnato, set assertions mode to
908 -- be the same as general mode.
909
910 if Ptr > Max
911 or else Switch_Chars (Ptr) not in '1' .. '3'
912 then
913 Suppress_Options.Overflow_Mode_Assertions :=
914 Suppress_Options.Overflow_Mode_General;
915
916 -- Process second digit after -gnato
917
918 else
919 Suppress_Options.Overflow_Mode_Assertions :=
920 Get_Overflow_Mode (Switch_Chars (Ptr));
921 Ptr := Ptr + 1;
922 end if;
923 end if;
924
925 -- -gnatO (specify name of the object file)
926
927 -- This is an internal switch
928
929 when 'O' =>
930 Store_Switch := False;
931 Ptr := Ptr + 1;
932 Output_File_Name_Present := True;
933
934 -- -gnatp (suppress all checks)
935
936 when 'p' =>
937 Ptr := Ptr + 1;
938
939 -- Skip processing if cancelled by subsequent -gnat-p
940
941 if Switch_Subsequently_Cancelled ("p", Args, Arg_Rank) then
942 Store_Switch := False;
943
944 else
945 -- Set all specific options as well as All_Checks in the
946 -- Suppress_Options array, excluding Elaboration_Check,
947 -- since this is treated specially because we do not want
948 -- -gnatp to disable static elaboration processing. Also
949 -- exclude Atomic_Synchronization, since this is not a real
950 -- check.
951
952 for J in Suppress_Options.Suppress'Range loop
953 if J /= Elaboration_Check
954 and then
955 J /= Atomic_Synchronization
956 then
957 Suppress_Options.Suppress (J) := True;
958 end if;
959 end loop;
960
961 Validity_Checks_On := False;
962 Opt.Suppress_Checks := True;
963 end if;
964
965 -- -gnatP (periodic poll)
966
967 when 'P' =>
968 Ptr := Ptr + 1;
969 Polling_Required := True;
970
971 -- -gnatq (don't quit)
972
973 when 'q' =>
974 Ptr := Ptr + 1;
975 Try_Semantics := True;
976
977 -- -gnatQ (always write ALI file)
978
979 when 'Q' =>
980 Ptr := Ptr + 1;
981 Force_ALI_Tree_File := True;
982 Try_Semantics := True;
983
984 -- -gnatr (restrictions as warnings)
985
986 when 'r' =>
987 Ptr := Ptr + 1;
988 Treat_Restrictions_As_Warnings := True;
989
990 -- -gnatR (list rep. info)
991
992 when 'R' =>
993 Back_Annotate_Rep_Info := True;
994 List_Representation_Info := 1;
995
996 Ptr := Ptr + 1;
997 while Ptr <= Max loop
998 C := Switch_Chars (Ptr);
999
1000 if C in '1' .. '3' then
1001 List_Representation_Info :=
1002 Character'Pos (C) - Character'Pos ('0');
1003
1004 elsif Switch_Chars (Ptr) = 's' then
1005 List_Representation_Info_To_File := True;
1006
1007 elsif Switch_Chars (Ptr) = 'm' then
1008 List_Representation_Info_Mechanisms := True;
1009
1010 else
1011 Bad_Switch ("-gnatR" & Switch_Chars (Ptr .. Max));
1012 end if;
1013
1014 Ptr := Ptr + 1;
1015 end loop;
1016
1017 -- -gnats (syntax check only)
1018
1019 when 's' =>
1020 if not First_Switch then
1021 Osint.Fail
1022 ("-gnats must be first if combined with other switches");
1023 end if;
1024
1025 Ptr := Ptr + 1;
1026 Operating_Mode := Check_Syntax;
1027
1028 -- -gnatS (print package Standard)
1029
1030 when 'S' =>
1031 Print_Standard := True;
1032 Ptr := Ptr + 1;
1033
1034 -- -gnatt (output tree)
1035
1036 when 't' =>
1037 Ptr := Ptr + 1;
1038 Tree_Output := True;
1039 Back_Annotate_Rep_Info := True;
1040
1041 -- -gnatT (change start of internal table sizes)
1042
1043 when 'T' =>
1044 Ptr := Ptr + 1;
1045 Scan_Pos (Switch_Chars, Max, Ptr, Table_Factor, C);
1046
1047 -- -gnatu (list units for compilation)
1048
1049 when 'u' =>
1050 Ptr := Ptr + 1;
1051 List_Units := True;
1052
1053 -- -gnatU (unique tags)
1054
1055 when 'U' =>
1056 Ptr := Ptr + 1;
1057 Unique_Error_Tag := True;
1058
1059 -- -gnatv (verbose mode)
1060
1061 when 'v' =>
1062 Ptr := Ptr + 1;
1063 Verbose_Mode := True;
1064
1065 -- -gnatV (validity checks)
1066
1067 when 'V' =>
1068 Store_Switch := False;
1069 Ptr := Ptr + 1;
1070
1071 if Ptr > Max then
1072 Bad_Switch ("-gnatV");
1073
1074 else
1075 declare
1076 OK : Boolean;
1077
1078 begin
1079 Set_Validity_Check_Options
1080 (Switch_Chars (Ptr .. Max), OK, Ptr);
1081
1082 if not OK then
1083 Bad_Switch ("-gnatV" & Switch_Chars (Ptr .. Max));
1084 end if;
1085
1086 for Index in First_Char + 1 .. Max loop
1087 Store_Compilation_Switch
1088 ("-gnatV" & Switch_Chars (Index));
1089 end loop;
1090 end;
1091 end if;
1092
1093 Ptr := Max + 1;
1094
1095 -- -gnatw (warning modes)
1096
1097 when 'w' =>
1098 Store_Switch := False;
1099 Ptr := Ptr + 1;
1100
1101 if Ptr > Max then
1102 Bad_Switch ("-gnatw");
1103 end if;
1104
1105 while Ptr <= Max loop
1106 C := Switch_Chars (Ptr);
1107
1108 -- Case of dot switch
1109
1110 if C = '.' and then Ptr < Max then
1111 Ptr := Ptr + 1;
1112 C := Switch_Chars (Ptr);
1113
1114 if Set_Dot_Warning_Switch (C) then
1115 Store_Compilation_Switch ("-gnatw." & C);
1116 else
1117 Bad_Switch ("-gnatw." & Switch_Chars (Ptr .. Max));
1118 end if;
1119
1120 -- Normal case, no dot
1121
1122 else
1123 if Set_Warning_Switch (C) then
1124 Store_Compilation_Switch ("-gnatw" & C);
1125 else
1126 Bad_Switch ("-gnatw" & Switch_Chars (Ptr .. Max));
1127 end if;
1128 end if;
1129
1130 Ptr := Ptr + 1;
1131 end loop;
1132
1133 return;
1134
1135 -- -gnatW (wide character encoding method)
1136
1137 when 'W' =>
1138 Ptr := Ptr + 1;
1139
1140 if Ptr > Max then
1141 Bad_Switch ("-gnatW");
1142 end if;
1143
1144 begin
1145 Wide_Character_Encoding_Method :=
1146 Get_WC_Encoding_Method (Switch_Chars (Ptr));
1147 exception
1148 when Constraint_Error =>
1149 Bad_Switch ("-gnatW" & Switch_Chars (Ptr .. Max));
1150 end;
1151
1152 Wide_Character_Encoding_Method_Specified := True;
1153
1154 Upper_Half_Encoding :=
1155 Wide_Character_Encoding_Method in
1156 WC_Upper_Half_Encoding_Method;
1157
1158 Ptr := Ptr + 1;
1159
1160 -- -gnatx (suppress cross-ref information)
1161
1162 when 'x' =>
1163 Ptr := Ptr + 1;
1164 Xref_Active := False;
1165
1166 -- -gnatX (language extensions)
1167
1168 when 'X' =>
1169 Ptr := Ptr + 1;
1170 Extensions_Allowed := True;
1171 Ada_Version := Ada_Version_Type'Last;
1172 Ada_Version_Explicit := Ada_Version_Type'Last;
1173
1174 -- -gnaty (style checks)
1175
1176 when 'y' =>
1177 Ptr := Ptr + 1;
1178
1179 if Ptr > Max then
1180 Set_Default_Style_Check_Options;
1181
1182 else
1183 Store_Switch := False;
1184
1185 declare
1186 OK : Boolean;
1187
1188 begin
1189 Set_Style_Check_Options
1190 (Switch_Chars (Ptr .. Max), OK, Ptr);
1191
1192 if not OK then
1193 Osint.Fail
1194 ("bad -gnaty switch (" &
1195 Style_Msg_Buf (1 .. Style_Msg_Len) & ')');
1196 end if;
1197
1198 Ptr := First_Char + 1;
1199 while Ptr <= Max loop
1200 if Switch_Chars (Ptr) = 'M' then
1201 First_Char := Ptr;
1202 loop
1203 Ptr := Ptr + 1;
1204 exit when Ptr > Max
1205 or else Switch_Chars (Ptr) not in '0' .. '9';
1206 end loop;
1207
1208 Store_Compilation_Switch
1209 ("-gnaty" & Switch_Chars (First_Char .. Ptr - 1));
1210
1211 else
1212 Store_Compilation_Switch
1213 ("-gnaty" & Switch_Chars (Ptr));
1214 Ptr := Ptr + 1;
1215 end if;
1216 end loop;
1217 end;
1218 end if;
1219
1220 -- -gnatz (stub generation)
1221
1222 when 'z' =>
1223
1224 -- -gnatz must be the first and only switch in Switch_Chars,
1225 -- and is a two-letter switch.
1226
1227 if Ptr /= Switch_Chars'First + 5
1228 or else (Max - Ptr + 1) > 2
1229 then
1230 Osint.Fail
1231 ("-gnatz* may not be combined with other switches");
1232 end if;
1233
1234 if Ptr = Max then
1235 Bad_Switch ("-gnatz");
1236 end if;
1237
1238 Ptr := Ptr + 1;
1239
1240 -- Only one occurrence of -gnat* is permitted
1241
1242 if Distribution_Stub_Mode = No_Stubs then
1243 case Switch_Chars (Ptr) is
1244 when 'r' =>
1245 Distribution_Stub_Mode := Generate_Receiver_Stub_Body;
1246
1247 when 'c' =>
1248 Distribution_Stub_Mode := Generate_Caller_Stub_Body;
1249
1250 when others =>
1251 Bad_Switch ("-gnatz" & Switch_Chars (Ptr .. Max));
1252 end case;
1253
1254 Ptr := Ptr + 1;
1255
1256 else
1257 Osint.Fail ("only one -gnatz* switch allowed");
1258 end if;
1259
1260 -- -gnatZ (obsolescent)
1261
1262 when 'Z' =>
1263 Ptr := Ptr + 1;
1264 Osint.Fail
1265 ("-gnatZ is no longer supported: consider using --RTS=zcx");
1266
1267 -- Note on language version switches: whenever a new language
1268 -- version switch is added, Switch.M.Normalize_Compiler_Switches
1269 -- must be updated.
1270
1271 -- -gnat83
1272
1273 when '8' =>
1274 if Ptr = Max then
1275 Bad_Switch ("-gnat8");
1276 end if;
1277
1278 Ptr := Ptr + 1;
1279
1280 if Switch_Chars (Ptr) /= '3' then
1281 Bad_Switch ("-gnat8" & Switch_Chars (Ptr .. Max));
1282 else
1283 Ptr := Ptr + 1;
1284 Ada_Version := Ada_83;
1285 Ada_Version_Explicit := Ada_Version;
1286 end if;
1287
1288 -- -gnat95
1289
1290 when '9' =>
1291 if Ptr = Max then
1292 Bad_Switch ("-gnat9");
1293 end if;
1294
1295 Ptr := Ptr + 1;
1296
1297 if Switch_Chars (Ptr) /= '5' then
1298 Bad_Switch ("-gnat9" & Switch_Chars (Ptr .. Max));
1299 else
1300 Ptr := Ptr + 1;
1301 Ada_Version := Ada_95;
1302 Ada_Version_Explicit := Ada_Version;
1303 end if;
1304
1305 -- -gnat05
1306
1307 when '0' =>
1308 if Ptr = Max then
1309 Bad_Switch ("-gnat0");
1310 end if;
1311
1312 Ptr := Ptr + 1;
1313
1314 if Switch_Chars (Ptr) /= '5' then
1315 Bad_Switch ("-gnat0" & Switch_Chars (Ptr .. Max));
1316 else
1317 Ptr := Ptr + 1;
1318 Ada_Version := Ada_2005;
1319 Ada_Version_Explicit := Ada_Version;
1320 end if;
1321
1322 -- -gnat12
1323
1324 when '1' =>
1325 if Ptr = Max then
1326 Bad_Switch ("-gnat1");
1327 end if;
1328
1329 Ptr := Ptr + 1;
1330
1331 if Switch_Chars (Ptr) /= '2' then
1332 Bad_Switch ("-gnat1" & Switch_Chars (Ptr .. Max));
1333 else
1334 Ptr := Ptr + 1;
1335 Ada_Version := Ada_2012;
1336 Ada_Version_Explicit := Ada_Version;
1337 end if;
1338
1339 -- -gnat2005 and -gnat2012
1340
1341 when '2' =>
1342 if Ptr > Max - 3 then
1343 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Max));
1344
1345 elsif Switch_Chars (Ptr .. Ptr + 3) = "2005" then
1346 Ada_Version := Ada_2005;
1347
1348 elsif Switch_Chars (Ptr .. Ptr + 3) = "2012" then
1349 Ada_Version := Ada_2012;
1350
1351 else
1352 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Ptr + 3));
1353 end if;
1354
1355 Ada_Version_Explicit := Ada_Version;
1356 Ptr := Ptr + 4;
1357
1358 -- Switch cancellation, currently only -gnat-p is allowed.
1359 -- All we do here is the error checking, since the actual
1360 -- processing for switch cancellation is done by calls to
1361 -- Switch_Subsequently_Cancelled at the appropriate point.
1362
1363 when '-' =>
1364
1365 -- Simple ignore -gnat-p
1366
1367 if Switch_Chars = "-gnat-p" then
1368 return;
1369
1370 -- Any other occurrence of minus is ignored. This is for
1371 -- maximum compatibility with previous version which ignored
1372 -- all occurrences of minus.
1373
1374 else
1375 Store_Switch := False;
1376 Ptr := Ptr + 1;
1377 end if;
1378
1379 -- We ignore '/' in switches, this is historical, still needed???
1380
1381 when '/' =>
1382 Store_Switch := False;
1383
1384 -- Anything else is an error (illegal switch character)
1385
1386 when others =>
1387 Bad_Switch ("-gnat" & Switch_Chars (Ptr .. Max));
1388 end case;
1389
1390 if Store_Switch then
1391 Store_Compilation_Switch
1392 ("-gnat" & Switch_Chars (First_Char .. Ptr - 1));
1393 end if;
1394
1395 First_Switch := False;
1396 end loop;
1397 end if;
1398 end Scan_Front_End_Switches;
1399
1400 -----------------------------------
1401 -- Switch_Subsequently_Cancelled --
1402 -----------------------------------
1403
1404 function Switch_Subsequently_Cancelled
1405 (C : String;
1406 Args : String_List;
1407 Arg_Rank : Positive) return Boolean
1408 is
1409 begin
1410 -- Loop through arguments following the current one
1411
1412 for Arg in Arg_Rank + 1 .. Args'Last loop
1413 if Args (Arg).all = "-gnat-" & C then
1414 return True;
1415 end if;
1416 end loop;
1417
1418 -- No match found, not cancelled
1419
1420 return False;
1421 end Switch_Subsequently_Cancelled;
1422
1423 end Switch.C;