compiler: don't generate stubs for ambiguous direct interface methods
[official-gcc.git] / gcc / ada / stylesw.adb
blob87d6b7cbc058c062fb466a3d60879c2942473529
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S T Y L E S W --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2022, 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 Hostparm; use Hostparm;
27 with Opt; use Opt;
28 with Output; use Output;
30 package body Stylesw is
32 -- The following constant defines the default style options for -gnaty
34 Default_Style : constant String :=
35 "3" & -- indentation level is 3
36 "a" & -- check attribute casing
37 "A" & -- check array attribute indexes
38 "b" & -- check no blanks at end of lines
39 "c" & -- check comment formats
40 "e" & -- check end/exit labels present
41 "f" & -- check no form/feeds vertical tabs in source
42 "h" & -- check no horizontal tabs in source
43 "i" & -- check if-then layout
44 "k" & -- check casing rules for keywords
45 "l" & -- check reference manual layout
46 "m" & -- check line length <= 79 characters
47 "n" & -- check casing of package Standard idents
48 "p" & -- check pragma casing
49 "r" & -- check casing for identifier references
50 "s" & -- check separate subprogram specs present
51 "t"; -- check token separation rules
53 -- The following constant defines the GNAT style options, showing them
54 -- as additions to the standard default style check options.
56 GNAT_Style : constant String := Default_Style &
57 "d" & -- check no DOS line terminators
58 "I" & -- check mode IN
59 "S" & -- check separate lines after THEN or ELSE
60 "u" & -- check no unnecessary blank lines
61 "x"; -- check extra parentheses around conditionals
63 -- Note: we intend GNAT_Style to also include the following, but we do
64 -- not yet have the whole tool suite clean with respect to this.
66 -- "B" & -- check boolean operators
68 -------------------------------
69 -- Reset_Style_Check_Options --
70 -------------------------------
72 procedure Reset_Style_Check_Options is
73 begin
74 Style_Check_Indentation := 0;
75 Style_Check_Array_Attribute_Index := False;
76 Style_Check_Attribute_Casing := False;
77 Style_Check_Blanks_At_End := False;
78 Style_Check_Blank_Lines := False;
79 Style_Check_Boolean_And_Or := False;
80 Style_Check_Comments := False;
81 Style_Check_DOS_Line_Terminator := False;
82 Style_Check_Mixed_Case_Decls := False;
83 Style_Check_End_Labels := False;
84 Style_Check_Form_Feeds := False;
85 Style_Check_Horizontal_Tabs := False;
86 Style_Check_If_Then_Layout := False;
87 Style_Check_Keyword_Casing := False;
88 Style_Check_Layout := False;
89 Style_Check_Max_Line_Length := False;
90 Style_Check_Max_Nesting_Level := False;
91 Style_Check_Missing_Overriding := False;
92 Style_Check_Mode_In := False;
93 Style_Check_Order_Subprograms := False;
94 Style_Check_Pragma_Casing := False;
95 Style_Check_References := False;
96 Style_Check_Separate_Stmt_Lines := False;
97 Style_Check_Specs := False;
98 Style_Check_Standard := False;
99 Style_Check_Tokens := False;
100 Style_Check_Xtra_Parens := False;
101 end Reset_Style_Check_Options;
103 ---------------------
104 -- RM_Column_Check --
105 ---------------------
107 function RM_Column_Check return Boolean is
108 begin
109 return Style_Check and Style_Check_Layout;
110 end RM_Column_Check;
112 ------------------------------
113 -- Save_Style_Check_Options --
114 ------------------------------
116 procedure Save_Style_Check_Options (Options : out Style_Check_Options) is
117 P : Natural := 0;
119 procedure Add (C : Character; S : Boolean);
120 -- Add given character C to string if switch S is true
122 procedure Add_Nat (N : Nat);
123 -- Add given natural number to string
125 ---------
126 -- Add --
127 ---------
129 procedure Add (C : Character; S : Boolean) is
130 begin
131 if S then
132 P := P + 1;
133 Options (P) := C;
134 end if;
135 end Add;
137 -------------
138 -- Add_Nat --
139 -------------
141 procedure Add_Nat (N : Nat) is
142 begin
143 if N > 9 then
144 Add_Nat (N / 10);
145 end if;
147 P := P + 1;
148 Options (P) := Character'Val (Character'Pos ('0') + N mod 10);
149 end Add_Nat;
151 -- Start of processing for Save_Style_Check_Options
153 begin
154 Add (Character'Val (Style_Check_Indentation + Character'Pos ('0')),
155 Style_Check_Indentation /= 0);
157 Add ('a', Style_Check_Attribute_Casing);
158 Add ('A', Style_Check_Array_Attribute_Index);
159 Add ('b', Style_Check_Blanks_At_End);
160 Add ('B', Style_Check_Boolean_And_Or);
162 if Style_Check_Comments then
163 if Style_Check_Comments_Spacing = 2 then
164 Add ('c', Style_Check_Comments);
165 else
166 pragma Assert (Style_Check_Comments_Spacing = 1);
167 Add ('C', Style_Check_Comments);
168 end if;
169 end if;
171 Add ('d', Style_Check_DOS_Line_Terminator);
172 Add ('D', Style_Check_Mixed_Case_Decls);
173 Add ('e', Style_Check_End_Labels);
174 Add ('f', Style_Check_Form_Feeds);
175 Add ('h', Style_Check_Horizontal_Tabs);
176 Add ('i', Style_Check_If_Then_Layout);
177 Add ('I', Style_Check_Mode_In);
178 Add ('k', Style_Check_Keyword_Casing);
179 Add ('l', Style_Check_Layout);
180 Add ('n', Style_Check_Standard);
181 Add ('o', Style_Check_Order_Subprograms);
182 Add ('O', Style_Check_Missing_Overriding);
183 Add ('p', Style_Check_Pragma_Casing);
184 Add ('r', Style_Check_References);
185 Add ('s', Style_Check_Specs);
186 Add ('S', Style_Check_Separate_Stmt_Lines);
187 Add ('t', Style_Check_Tokens);
188 Add ('u', Style_Check_Blank_Lines);
189 Add ('x', Style_Check_Xtra_Parens);
191 if Style_Check_Max_Line_Length then
192 P := P + 1;
193 Options (P) := 'M';
194 Add_Nat (Style_Max_Line_Length);
195 end if;
197 if Style_Check_Max_Nesting_Level then
198 P := P + 1;
199 Options (P) := 'L';
200 Add_Nat (Style_Max_Nesting_Level);
201 end if;
203 pragma Assert (P <= Options'Last);
205 while P < Options'Last loop
206 P := P + 1;
207 Options (P) := ' ';
208 end loop;
209 end Save_Style_Check_Options;
211 -------------------------------------
212 -- Set_Default_Style_Check_Options --
213 -------------------------------------
215 procedure Set_Default_Style_Check_Options is
216 begin
217 Reset_Style_Check_Options;
218 Set_Style_Check_Options (Default_Style);
219 end Set_Default_Style_Check_Options;
221 ----------------------------------
222 -- Set_GNAT_Style_Check_Options --
223 ----------------------------------
225 procedure Set_GNAT_Style_Check_Options is
226 begin
227 Reset_Style_Check_Options;
228 Set_Style_Check_Options (GNAT_Style);
229 end Set_GNAT_Style_Check_Options;
231 -----------------------------
232 -- Set_Style_Check_Options --
233 -----------------------------
235 -- Version used when no error checking is required
237 procedure Set_Style_Check_Options (Options : String) is
238 OK : Boolean;
239 EC : Natural;
240 pragma Warnings (Off, EC);
241 begin
242 Set_Style_Check_Options (Options, OK, EC);
243 pragma Assert (OK);
244 end Set_Style_Check_Options;
246 -- Normal version with error checking
248 procedure Set_Style_Check_Options
249 (Options : String;
250 OK : out Boolean;
251 Err_Col : out Natural)
253 C : Character;
255 On : Boolean := True;
256 -- Set to False if minus encountered
257 -- Set to True if plus encountered
259 Last_Option : Character := ' ';
260 -- Set to last character encountered
262 procedure Add_Img (N : Natural);
263 -- Concatenates image of N at end of Style_Msg_Buf
265 procedure Bad_Style_Switch (Msg : String);
266 -- Called if bad style switch found. Msg is set in Style_Msg_Buf and
267 -- Style_Msg_Len. OK is set False.
269 -------------
270 -- Add_Img --
271 -------------
273 procedure Add_Img (N : Natural) is
274 begin
275 if N >= 10 then
276 Add_Img (N / 10);
277 end if;
279 Style_Msg_Len := Style_Msg_Len + 1;
280 Style_Msg_Buf (Style_Msg_Len) :=
281 Character'Val (N mod 10 + Character'Pos ('0'));
282 end Add_Img;
284 ----------------------
285 -- Bad_Style_Switch --
286 ----------------------
288 procedure Bad_Style_Switch (Msg : String) is
289 begin
290 OK := False;
291 Style_Msg_Len := Msg'Length;
292 Style_Msg_Buf (1 .. Style_Msg_Len) := Msg;
293 end Bad_Style_Switch;
295 -- Start of processing for Set_Style_Check_Options
297 begin
298 Err_Col := Options'First;
299 while Err_Col <= Options'Last loop
300 C := Options (Err_Col);
301 Last_Option := C;
302 Err_Col := Err_Col + 1;
304 -- Turning switches on
306 if On then
307 case C is
308 when '+' =>
309 null;
311 when '-' =>
312 On := False;
314 when '0' .. '9' =>
315 Style_Check_Indentation :=
316 Character'Pos (C) - Character'Pos ('0');
318 when 'a' =>
319 Style_Check_Attribute_Casing := True;
321 when 'A' =>
322 Style_Check_Array_Attribute_Index := True;
324 when 'b' =>
325 Style_Check_Blanks_At_End := True;
327 when 'B' =>
328 Style_Check_Boolean_And_Or := True;
330 when 'c' =>
331 Style_Check_Comments := True;
332 Style_Check_Comments_Spacing := 2;
334 when 'C' =>
335 Style_Check_Comments := True;
336 Style_Check_Comments_Spacing := 1;
338 when 'd' =>
339 Style_Check_DOS_Line_Terminator := True;
341 when 'D' =>
342 Style_Check_Mixed_Case_Decls := True;
344 when 'e' =>
345 Style_Check_End_Labels := True;
347 when 'f' =>
348 Style_Check_Form_Feeds := True;
350 when 'g' =>
351 Set_GNAT_Style_Check_Options;
353 when 'h' =>
354 Style_Check_Horizontal_Tabs := True;
356 when 'i' =>
357 Style_Check_If_Then_Layout := True;
359 when 'I' =>
360 Style_Check_Mode_In := True;
362 when 'k' =>
363 Style_Check_Keyword_Casing := True;
365 when 'l' =>
366 Style_Check_Layout := True;
368 when 'L' =>
369 Style_Max_Nesting_Level := 0;
371 if Err_Col > Options'Last
372 or else Options (Err_Col) not in '0' .. '9'
373 then
374 Bad_Style_Switch ("invalid nesting level");
375 return;
376 end if;
378 loop
379 Style_Max_Nesting_Level :=
380 Style_Max_Nesting_Level * 10 +
381 Character'Pos (Options (Err_Col)) - Character'Pos ('0');
383 if Style_Max_Nesting_Level > 999 then
384 Bad_Style_Switch
385 ("max nesting level (999) exceeded in style check");
386 return;
387 end if;
389 Err_Col := Err_Col + 1;
390 exit when Err_Col > Options'Last
391 or else Options (Err_Col) not in '0' .. '9';
392 end loop;
394 Style_Check_Max_Nesting_Level := Style_Max_Nesting_Level /= 0;
396 when 'm' =>
397 Style_Check_Max_Line_Length := True;
398 Style_Max_Line_Length := 79;
400 when 'M' =>
401 Style_Max_Line_Length := 0;
403 if Err_Col > Options'Last
404 or else Options (Err_Col) not in '0' .. '9'
405 then
406 Bad_Style_Switch
407 ("invalid line length in style check");
408 return;
409 end if;
411 loop
412 Style_Max_Line_Length :=
413 Style_Max_Line_Length * 10 +
414 Character'Pos (Options (Err_Col)) - Character'Pos ('0');
416 if Style_Max_Line_Length > Int (Max_Line_Length) then
417 OK := False;
418 Style_Msg_Buf (1 .. 27) := "max line length allowed is ";
419 Style_Msg_Len := 27;
420 Add_Img (Natural (Max_Line_Length));
421 return;
422 end if;
424 Err_Col := Err_Col + 1;
425 exit when Err_Col > Options'Last
426 or else Options (Err_Col) not in '0' .. '9';
427 end loop;
429 Style_Check_Max_Line_Length := Style_Max_Line_Length /= 0;
431 when 'n' =>
432 Style_Check_Standard := True;
434 when 'N' =>
435 Reset_Style_Check_Options;
437 when 'o' =>
438 Style_Check_Order_Subprograms := True;
440 when 'O' =>
441 Style_Check_Missing_Overriding := True;
443 when 'p' =>
444 Style_Check_Pragma_Casing := True;
446 when 'r' =>
447 Style_Check_References := True;
449 when 's' =>
450 Style_Check_Specs := True;
452 when 'S' =>
453 Style_Check_Separate_Stmt_Lines := True;
455 when 't' =>
456 Style_Check_Tokens := True;
458 when 'u' =>
459 Style_Check_Blank_Lines := True;
461 when 'x' =>
462 Style_Check_Xtra_Parens := True;
464 when 'y' =>
465 Set_Default_Style_Check_Options;
467 when ' ' =>
468 null;
470 when others =>
471 if Ignore_Unrecognized_VWY_Switches then
472 Write_Line ("unrecognized switch -gnaty" & C & " ignored");
473 else
474 Err_Col := Err_Col - 1;
475 Bad_Style_Switch ("invalid style switch");
476 return;
477 end if;
478 end case;
480 -- Turning switches off
482 else
483 case C is
484 when '+' =>
485 On := True;
487 when '-' =>
488 null;
490 when '0' .. '9' =>
491 Style_Check_Indentation := 0;
493 when 'a' =>
494 Style_Check_Attribute_Casing := False;
496 when 'A' =>
497 Style_Check_Array_Attribute_Index := False;
499 when 'b' =>
500 Style_Check_Blanks_At_End := False;
502 when 'B' =>
503 Style_Check_Boolean_And_Or := False;
505 when 'c' | 'C' =>
506 Style_Check_Comments := False;
508 when 'd' =>
509 Style_Check_DOS_Line_Terminator := False;
511 when 'D' =>
512 Style_Check_Mixed_Case_Decls := False;
514 when 'e' =>
515 Style_Check_End_Labels := False;
517 when 'f' =>
518 Style_Check_Form_Feeds := False;
520 when 'g' =>
521 Reset_Style_Check_Options;
523 when 'h' =>
524 Style_Check_Horizontal_Tabs := False;
526 when 'i' =>
527 Style_Check_If_Then_Layout := False;
529 when 'I' =>
530 Style_Check_Mode_In := False;
532 when 'k' =>
533 Style_Check_Keyword_Casing := False;
535 when 'l' =>
536 Style_Check_Layout := False;
538 when 'L' =>
539 Style_Max_Nesting_Level := 0;
541 when 'm' =>
542 Style_Check_Max_Line_Length := False;
544 when 'M' =>
545 Style_Max_Line_Length := 0;
546 Style_Check_Max_Line_Length := False;
548 when 'n' =>
549 Style_Check_Standard := False;
551 when 'o' =>
552 Style_Check_Order_Subprograms := False;
554 when 'O' =>
555 Style_Check_Missing_Overriding := False;
557 when 'p' =>
558 Style_Check_Pragma_Casing := False;
560 when 'r' =>
561 Style_Check_References := False;
563 when 's' =>
564 Style_Check_Specs := False;
566 when 'S' =>
567 Style_Check_Separate_Stmt_Lines := False;
569 when 't' =>
570 Style_Check_Tokens := False;
572 when 'u' =>
573 Style_Check_Blank_Lines := False;
575 when 'x' =>
576 Style_Check_Xtra_Parens := False;
578 when ' ' =>
579 null;
581 when others =>
582 if Ignore_Unrecognized_VWY_Switches then
583 Write_Line ("unrecognized switch -gnaty-" & C & " ignored");
584 else
585 Err_Col := Err_Col - 1;
586 Bad_Style_Switch ("invalid style switch");
587 return;
588 end if;
589 end case;
590 end if;
591 end loop;
593 -- Turn on style checking if other than N at end of string
595 Style_Check := (Last_Option /= 'N');
596 OK := True;
597 end Set_Style_Check_Options;
598 end Stylesw;