Improve max_insns_skipped logic
[official-gcc.git] / gcc / ada / switch-b.adb
blob52a72e4de403176c8221c3f12a2d096e91f186f1
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S W I T C H - B --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 2001-2017, 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 ------------------------------------------------------------------------------
26 with Bindgen;
27 with Debug; use Debug;
28 with Osint; use Osint;
29 with Opt; use Opt;
31 with System.OS_Lib; use System.OS_Lib;
32 with System.WCh_Con; use System.WCh_Con;
34 package body Switch.B is
36 --------------------------
37 -- Scan_Binder_Switches --
38 --------------------------
40 procedure Scan_Binder_Switches (Switch_Chars : String) is
41 Max : constant Integer := Switch_Chars'Last;
42 Ptr : Integer := Switch_Chars'First;
43 C : Character := ' ';
45 function Get_Optional_Filename return String_Ptr;
46 -- If current character is '=', return a newly allocated string that
47 -- contains the remainder of the current switch (after the '='), else
48 -- return null.
50 function Get_Stack_Size (S : Character) return Int;
51 -- Used for -d and -D to scan stack size including handling k/m. S is
52 -- set to 'd' or 'D' to indicate the switch being scanned.
54 ---------------------------
55 -- Get_Optional_Filename --
56 ---------------------------
58 function Get_Optional_Filename return String_Ptr is
59 Result : String_Ptr;
61 begin
62 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
63 if Ptr = Max then
64 Bad_Switch (Switch_Chars);
65 else
66 Result := new String'(Switch_Chars (Ptr + 1 .. Max));
67 Ptr := Max + 1;
68 return Result;
69 end if;
70 end if;
72 return null;
73 end Get_Optional_Filename;
75 --------------------
76 -- Get_Stack_Size --
77 --------------------
79 function Get_Stack_Size (S : Character) return Int is
80 Result : Int;
82 begin
83 Scan_Pos (Switch_Chars, Max, Ptr, Result, S);
85 -- In the following code, we enable overflow checking since the
86 -- multiplication by K or M may cause overflow, which is an error.
88 declare
89 pragma Unsuppress (Overflow_Check);
91 begin
92 -- Check for additional character 'k' (for kilobytes) or 'm' (for
93 -- Megabytes), but only if we have not reached the end of the
94 -- switch string. Note that if this appears before the end of the
95 -- string we will get an error when we test to make sure that the
96 -- string is exhausted (at the end of the case).
98 if Ptr <= Max then
99 if Switch_Chars (Ptr) = 'k' then
100 Result := Result * 1024;
101 Ptr := Ptr + 1;
103 elsif Switch_Chars (Ptr) = 'm' then
104 Result := Result * (1024 * 1024);
105 Ptr := Ptr + 1;
106 end if;
107 end if;
109 exception
110 when Constraint_Error =>
111 Osint.Fail ("numeric value out of range for switch: " & S);
112 end;
114 return Result;
115 end Get_Stack_Size;
117 -- Start of processing for Scan_Binder_Switches
119 begin
120 -- Skip past the initial character (must be the switch character)
122 if Ptr = Max then
123 Bad_Switch (Switch_Chars);
124 else
125 Ptr := Ptr + 1;
126 end if;
128 -- A little check, "gnat" at the start of a switch is not allowed except
129 -- for the compiler
131 if Max >= Ptr + 3
132 and then Switch_Chars (Ptr .. Ptr + 3) = "gnat"
133 then
134 Osint.Fail ("invalid switch: """ & Switch_Chars & """"
135 & " (gnat not needed here)");
136 end if;
138 -- Loop to scan through switches given in switch string
140 Check_Switch : begin
141 C := Switch_Chars (Ptr);
143 case C is
145 -- Processing for a switch
147 when 'a' =>
148 Ptr := Ptr + 1;
149 Use_Pragma_Linker_Constructor := True;
151 -- Processing for A switch
153 when 'A' =>
154 Ptr := Ptr + 1;
155 Output_ALI_List := True;
156 ALI_List_Filename := Get_Optional_Filename;
158 -- Processing for b switch
160 when 'b' =>
161 Ptr := Ptr + 1;
162 Brief_Output := True;
164 -- Processing for c switch
166 when 'c' =>
167 Ptr := Ptr + 1;
168 Check_Only := True;
170 -- Processing for d switch
172 when 'd' =>
174 if Ptr = Max then
175 Bad_Switch (Switch_Chars);
176 end if;
178 Ptr := Ptr + 1;
179 C := Switch_Chars (Ptr);
181 -- Case where character after -d is a digit (default stack size)
183 if C in '0' .. '9' then
185 -- In this case, we process the default primary stack size
187 Default_Stack_Size := Get_Stack_Size ('d');
189 -- Case where character after -d is not digit (debug flags)
191 else
192 -- Note: for the debug switch, the remaining characters in this
193 -- switch field must all be debug flags, since all valid switch
194 -- characters are also valid debug characters. This switch is
195 -- not documented on purpose because it is only used by the
196 -- implementors.
198 -- Loop to scan out debug flags
200 loop
201 C := Switch_Chars (Ptr);
203 if C in 'a' .. 'z' or else C in 'A' .. 'Z' then
204 Set_Debug_Flag (C);
205 else
206 Bad_Switch (Switch_Chars);
207 end if;
209 Ptr := Ptr + 1;
210 exit when Ptr > Max;
211 end loop;
212 end if;
214 -- Processing for D switch
216 when 'D' =>
217 if Ptr = Max then
218 Bad_Switch (Switch_Chars);
219 end if;
221 Ptr := Ptr + 1;
222 Default_Sec_Stack_Size := Get_Stack_Size ('D');
224 -- Processing for e switch
226 when 'e' =>
227 Ptr := Ptr + 1;
228 Elab_Dependency_Output := True;
230 -- Processing for E switch
232 when 'E' =>
234 -- -E is equivalent to -Ea (see below)
236 Exception_Tracebacks := True;
237 Ptr := Ptr + 1;
239 if Ptr <= Max then
240 case Switch_Chars (Ptr) is
242 -- -Ea sets Exception_Tracebacks
244 when 'a' => null;
246 -- -Es sets both Exception_Tracebacks and
247 -- Exception_Tracebacks_Symbolic.
249 when 's' => Exception_Tracebacks_Symbolic := True;
250 when others => Bad_Switch (Switch_Chars);
251 end case;
253 Ptr := Ptr + 1;
254 end if;
256 -- Processing for f switch
258 when 'f' =>
259 if Ptr = Max then
260 Bad_Switch (Switch_Chars);
261 end if;
263 Force_Elab_Order_File :=
264 new String'(Switch_Chars (Ptr + 1 .. Max));
266 Ptr := Max + 1;
268 if not Is_Read_Accessible_File (Force_Elab_Order_File.all) then
269 Osint.Fail (Force_Elab_Order_File.all & ": file not found");
270 end if;
272 -- Processing for F switch
274 when 'F' =>
275 Ptr := Ptr + 1;
276 Force_Checking_Of_Elaboration_Flags := True;
278 -- Processing for g switch
280 when 'g' =>
281 Ptr := Ptr + 1;
283 if Ptr <= Max then
284 C := Switch_Chars (Ptr);
286 if C in '0' .. '3' then
287 Debugger_Level :=
288 Character'Pos
289 (Switch_Chars (Ptr)) - Character'Pos ('0');
290 Ptr := Ptr + 1;
291 end if;
293 else
294 Debugger_Level := 2;
295 end if;
297 -- Processing for h switch
299 when 'h' =>
300 Ptr := Ptr + 1;
301 Usage_Requested := True;
303 -- Processing for i switch
305 when 'i' =>
306 if Ptr = Max then
307 Bad_Switch (Switch_Chars);
308 end if;
310 Ptr := Ptr + 1;
311 C := Switch_Chars (Ptr);
313 if C in '1' .. '5'
314 or else C = '8'
315 or else C = 'p'
316 or else C = 'f'
317 or else C = 'n'
318 or else C = 'w'
319 then
320 Identifier_Character_Set := C;
321 Ptr := Ptr + 1;
322 else
323 Bad_Switch (Switch_Chars);
324 end if;
326 -- Processing for K switch
328 when 'K' =>
329 Ptr := Ptr + 1;
330 Output_Linker_Option_List := True;
332 -- Processing for l switch
334 when 'l' =>
335 Ptr := Ptr + 1;
336 Elab_Order_Output := True;
338 -- Processing for m switch
340 when 'm' =>
341 if Ptr = Max then
342 Bad_Switch (Switch_Chars);
343 end if;
345 Ptr := Ptr + 1;
346 Scan_Pos (Switch_Chars, Max, Ptr, Maximum_Messages, C);
348 -- Processing for n switch
350 when 'n' =>
351 Ptr := Ptr + 1;
352 Bind_Main_Program := False;
354 -- Note: The -L option of the binder also implies -n, so
355 -- any change here must also be reflected in the processing
356 -- for -L that is found in Gnatbind.Scan_Bind_Arg.
358 -- Processing for o switch
360 when 'o' =>
361 Ptr := Ptr + 1;
363 if Output_File_Name_Present then
364 Osint.Fail ("duplicate -o switch");
365 else
366 Output_File_Name_Present := True;
367 end if;
369 -- Processing for O switch
371 when 'O' =>
372 Ptr := Ptr + 1;
373 Output_Object_List := True;
374 Object_List_Filename := Get_Optional_Filename;
376 -- Processing for p switch
378 when 'p' =>
379 Ptr := Ptr + 1;
380 Pessimistic_Elab_Order := True;
382 -- Processing for P switch
384 when 'P' =>
385 Ptr := Ptr + 1;
386 CodePeer_Mode := True;
388 -- Processing for q switch
390 when 'q' =>
391 Ptr := Ptr + 1;
392 Quiet_Output := True;
394 -- Processing for r switch
396 when 'r' =>
397 Ptr := Ptr + 1;
398 List_Restrictions := True;
400 -- Processing for R switch
402 when 'R' =>
403 Ptr := Ptr + 1;
404 List_Closure := True;
406 if Ptr <= Max and then Switch_Chars (Ptr) = 'a' then
407 Ptr := Ptr + 1;
408 List_Closure_All := True;
409 end if;
411 -- Processing for s switch
413 when 's' =>
414 Ptr := Ptr + 1;
415 All_Sources := True;
416 Check_Source_Files := True;
418 -- Processing for t switch
420 when 't' =>
421 Ptr := Ptr + 1;
422 Tolerate_Consistency_Errors := True;
424 -- Processing for T switch
426 when 'T' =>
427 if Ptr = Max then
428 Bad_Switch (Switch_Chars);
429 end if;
431 Ptr := Ptr + 1;
432 Time_Slice_Set := True;
433 Scan_Nat (Switch_Chars, Max, Ptr, Time_Slice_Value, C);
434 Time_Slice_Value := Time_Slice_Value * 1_000;
436 -- Processing for u switch
438 when 'u' =>
439 if Ptr = Max then
440 Bad_Switch (Switch_Chars);
441 end if;
443 Ptr := Ptr + 1;
444 Dynamic_Stack_Measurement := True;
445 Scan_Nat
446 (Switch_Chars,
447 Max,
448 Ptr,
449 Dynamic_Stack_Measurement_Array_Size,
452 -- Processing for v switch
454 when 'v' =>
455 Ptr := Ptr + 1;
456 Verbose_Mode := True;
458 -- Processing for V switch
460 when 'V' =>
461 declare
462 Eq : Integer;
463 begin
464 Ptr := Ptr + 1;
465 Eq := Ptr;
466 while Eq <= Max and then Switch_Chars (Eq) /= '=' loop
467 Eq := Eq + 1;
468 end loop;
469 if Eq = Ptr or else Eq = Max then
470 Bad_Switch (Switch_Chars);
471 end if;
472 Bindgen.Set_Bind_Env
473 (Key => Switch_Chars (Ptr .. Eq - 1),
474 Value => Switch_Chars (Eq + 1 .. Max));
475 Ptr := Max + 1;
476 end;
478 -- Processing for w switch
480 when 'w' =>
481 if Ptr = Max then
482 Bad_Switch (Switch_Chars);
483 end if;
485 -- For the binder we only allow suppress/error cases
487 Ptr := Ptr + 1;
489 case Switch_Chars (Ptr) is
490 when 'e' =>
491 Warning_Mode := Treat_As_Error;
493 when 'E' =>
494 Warning_Mode := Treat_Run_Time_Warnings_As_Errors;
496 when 's' =>
497 Warning_Mode := Suppress;
499 when others =>
500 Bad_Switch (Switch_Chars);
501 end case;
503 Ptr := Ptr + 1;
505 -- Processing for W switch
507 when 'W' =>
508 Ptr := Ptr + 1;
510 if Ptr > Max then
511 Bad_Switch (Switch_Chars);
512 end if;
514 begin
515 Wide_Character_Encoding_Method :=
516 Get_WC_Encoding_Method (Switch_Chars (Ptr));
517 exception
518 when Constraint_Error =>
519 Bad_Switch (Switch_Chars);
520 end;
522 Wide_Character_Encoding_Method_Specified := True;
524 Upper_Half_Encoding :=
525 Wide_Character_Encoding_Method in WC_Upper_Half_Encoding_Method;
527 Ptr := Ptr + 1;
529 -- Processing for x switch
531 when 'x' =>
532 Ptr := Ptr + 1;
533 All_Sources := False;
534 Check_Source_Files := False;
536 -- Processing for X switch
538 when 'X' =>
539 if Ptr = Max then
540 Bad_Switch (Switch_Chars);
541 end if;
543 Ptr := Ptr + 1;
544 Scan_Pos (Switch_Chars, Max, Ptr, Default_Exit_Status, C);
546 -- Processing for y switch
548 when 'y' =>
549 Ptr := Ptr + 1;
550 Leap_Seconds_Support := True;
552 -- Processing for z switch
554 when 'z' =>
555 Ptr := Ptr + 1;
556 No_Main_Subprogram := True;
558 -- Processing for Z switch
560 when 'Z' =>
561 Ptr := Ptr + 1;
562 Zero_Formatting := True;
564 -- Processing for --RTS
566 when '-' =>
568 if Ptr + 4 <= Max and then
569 Switch_Chars (Ptr + 1 .. Ptr + 3) = "RTS"
570 then
571 Ptr := Ptr + 4;
573 if Switch_Chars (Ptr) /= '=' or else Ptr = Max then
574 Osint.Fail ("missing path for --RTS");
576 else
577 -- Valid --RTS switch
579 Opt.No_Stdinc := True;
580 Opt.RTS_Switch := True;
582 declare
583 Src_Path_Name : constant String_Ptr :=
584 Get_RTS_Search_Dir
585 (Switch_Chars (Ptr + 1 .. Max),
586 Include);
587 Lib_Path_Name : constant String_Ptr :=
588 Get_RTS_Search_Dir
589 (Switch_Chars (Ptr + 1 .. Max),
590 Objects);
592 begin
593 if Src_Path_Name /= null and then
594 Lib_Path_Name /= null
595 then
596 -- Set the RTS_*_Path_Name variables, so that the
597 -- correct directories will be set when a subsequent
598 -- call Osint.Add_Default_Search_Dirs is made.
600 RTS_Src_Path_Name := Src_Path_Name;
601 RTS_Lib_Path_Name := Lib_Path_Name;
603 Ptr := Max + 1;
605 elsif Src_Path_Name = null
606 and then Lib_Path_Name = null
607 then
608 Osint.Fail
609 ("RTS path not valid: missing adainclude and "
610 & "adalib directories");
611 elsif Src_Path_Name = null then
612 Osint.Fail
613 ("RTS path not valid: missing adainclude directory");
614 elsif Lib_Path_Name = null then
615 Osint.Fail
616 ("RTS path not valid: missing adalib directory");
617 end if;
618 end;
619 end if;
621 else
622 Bad_Switch (Switch_Chars);
623 end if;
625 -- Anything else is an error (illegal switch character)
627 when others =>
628 Bad_Switch (Switch_Chars);
629 end case;
631 if Ptr <= Max then
632 Bad_Switch (Switch_Chars);
633 end if;
634 end Check_Switch;
635 end Scan_Binder_Switches;
637 end Switch.B;