Implement -mmemcpy-strategy= and -mmemset-strategy= options
[official-gcc.git] / gcc / ada / styleg.adb
blob6e4a44207e60648913bf83227d174820e4d5394b
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S T Y L E G --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-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 ------------------------------------------------------------------------------
26 -- This version of the Style package implements the standard GNAT style
27 -- checking rules. For documentation of these rules, see comments on the
28 -- individual procedures.
30 with Atree; use Atree;
31 with Casing; use Casing;
32 with Csets; use Csets;
33 with Einfo; use Einfo;
34 with Err_Vars; use Err_Vars;
35 with Opt; use Opt;
36 with Scans; use Scans;
37 with Sinfo; use Sinfo;
38 with Sinput; use Sinput;
39 with Stylesw; use Stylesw;
41 package body Styleg is
43 use ASCII;
45 Blank_Lines : Nat := 0;
46 -- Counts number of empty lines seen. Reset to zero if a non-empty line
47 -- is encountered. Used to check for trailing blank lines in Check_EOF,
48 -- and for multiple blank lines.
50 Blank_Line_Location : Source_Ptr;
51 -- Remembers location of first blank line in a series. Used to issue an
52 -- appropriate diagnostic if subsequent blank lines or the end of file
53 -- is encountered.
55 -----------------------
56 -- Local Subprograms --
57 -----------------------
59 procedure Check_No_Space_After;
60 -- Checks that there is a non-white space character after the current
61 -- token, or white space followed by a comment, or the end of line.
62 -- Issue error message if not.
64 procedure Check_No_Space_Before;
65 -- Check that token is first token on line, or else is not preceded
66 -- by white space. Signal error of space not allowed if not.
68 procedure Check_Separate_Stmt_Lines_Cont;
69 -- Non-inlined continuation of Check_Separate_Stmt_Lines
71 function Determine_Token_Casing return Casing_Type;
72 -- Determine casing of current token
74 procedure Error_Space_Not_Allowed (S : Source_Ptr);
75 -- Posts an error message indicating that a space is not allowed
76 -- at the given source location.
78 procedure Error_Space_Required (S : Source_Ptr);
79 -- Posts an error message indicating that a space is required at
80 -- the given source location.
82 function Is_White_Space (C : Character) return Boolean;
83 pragma Inline (Is_White_Space);
84 -- Returns True for space or HT, False otherwise
85 -- What about VT and FF, should they return True ???
87 procedure Require_Following_Space;
88 pragma Inline (Require_Following_Space);
89 -- Require token to be followed by white space. Used only if in GNAT
90 -- style checking mode.
92 procedure Require_Preceding_Space;
93 pragma Inline (Require_Preceding_Space);
94 -- Require token to be preceded by white space. Used only if in GNAT
95 -- style checking mode.
97 ----------------------
98 -- Check_Abs_Or_Not --
99 ----------------------
101 -- In check token mode (-gnatyt), ABS/NOT must be followed by a space
103 procedure Check_Abs_Not is
104 begin
105 if Style_Check_Tokens then
106 if Source (Scan_Ptr) > ' ' then -- ???
107 Error_Space_Required (Scan_Ptr);
108 end if;
109 end if;
110 end Check_Abs_Not;
112 ----------------------
113 -- Check_Apostrophe --
114 ----------------------
116 -- Do not allow space before or after apostrophe -- OR AFTER???
118 procedure Check_Apostrophe is
119 begin
120 if Style_Check_Tokens then
121 Check_No_Space_After;
122 end if;
123 end Check_Apostrophe;
125 -----------------
126 -- Check_Arrow --
127 -----------------
129 -- In check tokens mode (-gnatys), arrow must be surrounded by spaces
131 procedure Check_Arrow is
132 begin
133 if Style_Check_Tokens then
134 Require_Preceding_Space;
135 Require_Following_Space;
136 end if;
137 end Check_Arrow;
139 --------------------------
140 -- Check_Attribute_Name --
141 --------------------------
143 -- In check attribute casing mode (-gnatya), attribute names must be
144 -- mixed case, i.e. start with an upper case letter, and otherwise
145 -- lower case, except after an underline character.
147 procedure Check_Attribute_Name (Reserved : Boolean) is
148 pragma Warnings (Off, Reserved);
149 begin
150 if Style_Check_Attribute_Casing then
151 if Determine_Token_Casing /= Mixed_Case then
152 Error_Msg_SC -- CODEFIX
153 ("(style) bad capitalization, mixed case required");
154 end if;
155 end if;
156 end Check_Attribute_Name;
158 ---------------------------
159 -- Check_Binary_Operator --
160 ---------------------------
162 -- In check token mode (-gnatyt), binary operators other than the special
163 -- case of exponentiation require surrounding space characters.
165 procedure Check_Binary_Operator is
166 begin
167 if Style_Check_Tokens then
168 Require_Preceding_Space;
169 Require_Following_Space;
170 end if;
171 end Check_Binary_Operator;
173 ----------------------------
174 -- Check_Boolean_Operator --
175 ----------------------------
177 procedure Check_Boolean_Operator (Node : Node_Id) is
179 function OK_Boolean_Operand (N : Node_Id) return Boolean;
180 -- Returns True for simple variable, or "not X1" or "X1 and X2" or
181 -- "X1 or X2" where X1, X2 are recursively OK_Boolean_Operand's.
183 ------------------------
184 -- OK_Boolean_Operand --
185 ------------------------
187 function OK_Boolean_Operand (N : Node_Id) return Boolean is
188 begin
189 if Nkind_In (N, N_Identifier, N_Expanded_Name) then
190 return True;
192 elsif Nkind (N) = N_Op_Not then
193 return OK_Boolean_Operand (Original_Node (Right_Opnd (N)));
195 elsif Nkind_In (N, N_Op_And, N_Op_Or) then
196 return OK_Boolean_Operand (Original_Node (Left_Opnd (N)))
197 and then
198 OK_Boolean_Operand (Original_Node (Right_Opnd (N)));
200 else
201 return False;
202 end if;
203 end OK_Boolean_Operand;
205 -- Start of processing for Check_Boolean_Operator
207 begin
208 if Style_Check_Boolean_And_Or
209 and then Comes_From_Source (Node)
210 then
211 declare
212 Orig : constant Node_Id := Original_Node (Node);
214 begin
215 if Nkind_In (Orig, N_Op_And, N_Op_Or) then
216 declare
217 L : constant Node_Id := Original_Node (Left_Opnd (Orig));
218 R : constant Node_Id := Original_Node (Right_Opnd (Orig));
220 begin
221 -- First OK case, simple boolean constants/identifiers
223 if OK_Boolean_Operand (L)
224 and then
225 OK_Boolean_Operand (R)
226 then
227 return;
229 -- Second OK case, modular types
231 elsif Is_Modular_Integer_Type (Etype (Node)) then
232 return;
234 -- Third OK case, array types
236 elsif Is_Array_Type (Etype (Node)) then
237 return;
239 -- Otherwise we have an error
241 elsif Nkind (Orig) = N_Op_And then
242 Error_Msg -- CODEFIX
243 ("(style) `AND THEN` required", Sloc (Orig));
244 else
245 Error_Msg -- CODEFIX
246 ("(style) `OR ELSE` required", Sloc (Orig));
247 end if;
248 end;
249 end if;
250 end;
251 end if;
252 end Check_Boolean_Operator;
254 ---------------
255 -- Check_Box --
256 ---------------
258 -- In check token mode (-gnatyt), box must be preceded by a space or by
259 -- a left parenthesis. Spacing checking on the surrounding tokens takes
260 -- care of the remaining checks.
262 procedure Check_Box is
263 begin
264 if Style_Check_Tokens then
265 if Prev_Token /= Tok_Left_Paren then
266 Require_Preceding_Space;
267 end if;
268 end if;
269 end Check_Box;
271 -----------------
272 -- Check_Colon --
273 -----------------
275 -- In check token mode (-gnatyt), colon must be surrounded by spaces
277 procedure Check_Colon is
278 begin
279 if Style_Check_Tokens then
280 Require_Preceding_Space;
281 Require_Following_Space;
282 end if;
283 end Check_Colon;
285 -----------------------
286 -- Check_Colon_Equal --
287 -----------------------
289 -- In check token mode (-gnatyt), := must be surrounded by spaces
291 procedure Check_Colon_Equal is
292 begin
293 if Style_Check_Tokens then
294 Require_Preceding_Space;
295 Require_Following_Space;
296 end if;
297 end Check_Colon_Equal;
299 -----------------
300 -- Check_Comma --
301 -----------------
303 -- In check token mode (-gnatyt), comma must be either the first
304 -- token on a line, or be preceded by a non-blank character.
305 -- It must also always be followed by a blank.
307 procedure Check_Comma is
308 begin
309 if Style_Check_Tokens then
310 Check_No_Space_Before;
312 if Source (Scan_Ptr) > ' ' then
313 Error_Space_Required (Scan_Ptr);
314 end if;
315 end if;
316 end Check_Comma;
318 -------------------
319 -- Check_Comment --
320 -------------------
322 -- In check comment mode (-gnatyc) there are several requirements on the
323 -- format of comments. The following are permissible comment formats:
325 -- 1. Any comment that is not at the start of a line, i.e. where the
326 -- initial minuses are not the first non-blank characters on the
327 -- line must have at least one blank after the second minus or a
328 -- special character as defined in rule 5.
330 -- 2. A row of all minuses of any length is permitted (see procedure
331 -- box above in the source of this routine).
333 -- 3. A comment line starting with two minuses and a space, and ending
334 -- with a space and two minuses. Again see the procedure title box
335 -- immediately above in the source.
337 -- 4. A full line comment where two spaces follow the two minus signs.
338 -- This is the normal comment format in GNAT style, as typified by
339 -- the comments you are reading now.
341 -- 5. A full line comment where the first character after the second
342 -- minus is a special character, i.e. a character in the ASCII
343 -- range 16#21#..16#2F# or 16#3A#..16#3F#. This allows special
344 -- comments, such as those generated by gnatprep, or those that
345 -- appear in the SPARK annotation language to be accepted.
347 -- Note: for GNAT internal files (-gnatg switch set on for the
348 -- compilation), the only special sequence recognized and allowed
349 -- is --! as generated by gnatprep.
351 -- 6. In addition, the comment must be properly indented if comment
352 -- indentation checking is active (Style_Check_Indentation non-zero).
353 -- Either the start column must be a multiple of this indentation,
354 -- or the indentation must match that of the next non-blank line,
355 -- or must match the indentation of the immediately preciding line
356 -- if it is non-blank.
358 procedure Check_Comment is
359 S : Source_Ptr;
360 C : Character;
362 function Is_Box_Comment return Boolean;
363 -- Returns True if the last two characters on the line are -- which
364 -- characterizes a box comment (as for example follows this spec).
366 function Is_Special_Character (C : Character) return Boolean;
367 -- Determines if C is a special character (see rule 5 above)
369 function Same_Column_As_Next_Non_Blank_Line return Boolean;
370 -- Called for a full line comment. If the indentation of this comment
371 -- matches that of the next non-blank line in the source, then True is
372 -- returned, otherwise False.
374 function Same_Column_As_Previous_Line return Boolean;
375 -- Called for a full line comment. If the previous line is blank, then
376 -- returns False. Otherwise, if the indentation of this comment matches
377 -- that of the previous line in the source, then True is returned,
378 -- otherwise False.
380 --------------------
381 -- Is_Box_Comment --
382 --------------------
384 function Is_Box_Comment return Boolean is
385 S : Source_Ptr;
387 begin
388 -- Do we need to worry about UTF_32 line terminators here ???
390 S := Scan_Ptr + 3;
391 while Source (S) not in Line_Terminator loop
392 S := S + 1;
393 end loop;
395 return Source (S - 1) = '-' and then Source (S - 2) = '-';
396 end Is_Box_Comment;
398 --------------------------
399 -- Is_Special_Character --
400 --------------------------
402 function Is_Special_Character (C : Character) return Boolean is
403 begin
404 if GNAT_Mode then
405 return C = '!';
406 else
407 return
408 Character'Pos (C) in 16#21# .. 16#2F#
409 or else
410 Character'Pos (C) in 16#3A# .. 16#3F#;
411 end if;
412 end Is_Special_Character;
414 ----------------------------------------
415 -- Same_Column_As_Next_Non_Blank_Line --
416 ----------------------------------------
418 function Same_Column_As_Next_Non_Blank_Line return Boolean is
419 P : Source_Ptr;
421 begin
422 -- Step to end of line
424 P := Scan_Ptr + 2;
425 while Source (P) not in Line_Terminator loop
426 P := P + 1;
427 end loop;
429 -- Step past blanks, and line terminators (UTF_32 case???)
431 while Source (P) <= ' ' and then Source (P) /= EOF loop
432 P := P + 1;
433 end loop;
435 -- Compare columns
437 return Get_Column_Number (Scan_Ptr) = Get_Column_Number (P);
438 end Same_Column_As_Next_Non_Blank_Line;
440 ----------------------------------
441 -- Same_Column_As_Previous_Line --
442 ----------------------------------
444 function Same_Column_As_Previous_Line return Boolean is
445 S, P : Source_Ptr;
447 begin
448 -- Point S to start of this line, and P to start of previous line
450 S := Line_Start (Scan_Ptr);
451 P := S;
452 Backup_Line (P);
454 -- Step P to first non-blank character on line
456 loop
457 -- If we get back to start of current line, then the previous line
458 -- was blank, and we always return False in that situation.
460 if P = S then
461 return False;
462 end if;
464 exit when Source (P) /= ' ' and then Source (P) /= ASCII.HT;
465 P := P + 1;
466 end loop;
468 -- Compare columns
470 return Get_Column_Number (Scan_Ptr) = Get_Column_Number (P);
471 end Same_Column_As_Previous_Line;
473 -- Start of processing for Check_Comment
475 begin
476 -- Can never have a non-blank character preceding the first minus
478 if Style_Check_Comments then
479 if Scan_Ptr > Source_First (Current_Source_File)
480 and then Source (Scan_Ptr - 1) > ' '
481 then
482 Error_Msg_S -- CODEFIX
483 ("(style) space required");
484 end if;
485 end if;
487 -- For a comment that is not at the start of the line, the only
488 -- requirement is that we cannot have a non-blank character after
489 -- the second minus sign or a special character.
491 if Scan_Ptr /= First_Non_Blank_Location then
492 if Style_Check_Comments then
493 if Source (Scan_Ptr + 2) > ' '
494 and then not Is_Special_Character (Source (Scan_Ptr + 2))
495 then
496 Error_Msg -- CODEFIX
497 ("(style) space required", Scan_Ptr + 2);
498 end if;
499 end if;
501 return;
503 -- Case of a comment that is at the start of a line
505 else
506 -- First check, must be in appropriately indented column
508 if Style_Check_Indentation /= 0 then
509 if Start_Column rem Style_Check_Indentation /= 0 then
510 if not Same_Column_As_Next_Non_Blank_Line
511 and then not Same_Column_As_Previous_Line
512 then
513 Error_Msg_S -- CODEFIX
514 ("(style) bad column");
515 end if;
517 return;
518 end if;
519 end if;
521 -- If we are not checking comments, nothing more to do
523 if not Style_Check_Comments then
524 return;
525 end if;
527 -- Case of not followed by a blank. Usually wrong, but there are
528 -- some exceptions that we permit.
530 if Source (Scan_Ptr + 2) /= ' ' then
531 C := Source (Scan_Ptr + 2);
533 -- Case of -- all on its own on a line is OK
535 if C < ' ' then
536 return;
537 end if;
539 -- Case of --x, x special character is OK (gnatprep/SPARK/etc.)
540 -- This is not permitted in internal GNAT implementation units
541 -- except for the case of --! as used by gnatprep output.
543 if Is_Special_Character (C) then
544 return;
545 end if;
547 -- The only other case in which we allow a character after
548 -- the -- other than a space is when we have a row of minus
549 -- signs (case of header lines for a box comment for example).
551 S := Scan_Ptr + 2;
552 while Source (S) >= ' ' loop
553 if Source (S) /= '-' then
554 if Is_Box_Comment
555 or else Style_Check_Comments_Spacing = 1
556 then
557 Error_Space_Required (Scan_Ptr + 2);
558 else
559 Error_Msg -- CODEFIX
560 ("(style) two spaces required", Scan_Ptr + 2);
561 end if;
563 return;
564 end if;
566 S := S + 1;
567 end loop;
569 -- If we are followed by a blank, then the comment is OK if the
570 -- character following this blank is another blank or a format
571 -- effector, or if the required comment spacing is 1.
573 elsif Source (Scan_Ptr + 3) <= ' '
574 or else Style_Check_Comments_Spacing = 1
575 then
576 return;
578 -- Here is the case where we only have one blank after the two minus
579 -- signs, with Style_Check_Comments_Spacing set to 2, which is an
580 -- error unless the line ends with two minus signs, the case of a
581 -- box comment.
583 elsif not Is_Box_Comment then
584 Error_Space_Required (Scan_Ptr + 3);
585 end if;
586 end if;
587 end Check_Comment;
589 -------------------
590 -- Check_Dot_Dot --
591 -------------------
593 -- In check token mode (-gnatyt), ".." must be surrounded by spaces
595 procedure Check_Dot_Dot is
596 begin
597 if Style_Check_Tokens then
598 Require_Preceding_Space;
599 Require_Following_Space;
600 end if;
601 end Check_Dot_Dot;
603 ---------------
604 -- Check_EOF --
605 ---------------
607 -- In check blanks at end mode, check no blank lines precede the EOF
609 procedure Check_EOF is
610 begin
611 if Style_Check_Blank_Lines then
613 -- We expect one blank line, from the EOF, but no more than one
615 if Blank_Lines = 2 then
616 Error_Msg -- CODEFIX
617 ("(style) blank line not allowed at end of file",
618 Blank_Line_Location);
620 elsif Blank_Lines >= 3 then
621 Error_Msg -- CODEFIX
622 ("(style) blank lines not allowed at end of file",
623 Blank_Line_Location);
624 end if;
625 end if;
626 end Check_EOF;
628 -----------------------------------
629 -- Check_Exponentiation_Operator --
630 -----------------------------------
632 -- No spaces are required for the ** operator in GNAT style check mode
634 procedure Check_Exponentiation_Operator is
635 begin
636 null;
637 end Check_Exponentiation_Operator;
639 --------------
640 -- Check_HT --
641 --------------
643 -- In check horizontal tab mode (-gnatyh), tab characters are not allowed
645 procedure Check_HT is
646 begin
647 if Style_Check_Horizontal_Tabs then
648 Error_Msg_S -- CODEFIX
649 ("(style) horizontal tab not allowed");
650 end if;
651 end Check_HT;
653 -----------------------
654 -- Check_Indentation --
655 -----------------------
657 -- In check indentation mode (-gnaty? for ? a digit), a new statement or
658 -- declaration is required to start in a column that is a multiple of the
659 -- indentation amount.
661 procedure Check_Indentation is
662 begin
663 if Style_Check_Indentation /= 0 then
664 if Token_Ptr = First_Non_Blank_Location
665 and then Start_Column rem Style_Check_Indentation /= 0
666 then
667 Error_Msg_SC -- CODEFIX
668 ("(style) bad indentation");
669 end if;
670 end if;
671 end Check_Indentation;
673 ----------------------
674 -- Check_Left_Paren --
675 ----------------------
677 -- In check token mode (-gnatyt), left paren must not be preceded by an
678 -- identifier character or digit (a separating space is required) and may
679 -- never be followed by a space.
681 procedure Check_Left_Paren is
682 begin
683 if Style_Check_Tokens then
684 if Token_Ptr > Source_First (Current_Source_File)
685 and then Identifier_Char (Source (Token_Ptr - 1))
686 then
687 Error_Space_Required (Token_Ptr);
688 end if;
690 Check_No_Space_After;
691 end if;
692 end Check_Left_Paren;
694 ---------------------------
695 -- Check_Line_Max_Length --
696 ---------------------------
698 -- In check max line length mode (-gnatym), the line length must
699 -- not exceed the permitted maximum value.
701 procedure Check_Line_Max_Length (Len : Int) is
702 begin
703 if Style_Check_Max_Line_Length then
704 if Len > Style_Max_Line_Length then
705 Error_Msg
706 ("(style) this line is too long",
707 Current_Line_Start + Source_Ptr (Style_Max_Line_Length));
708 end if;
709 end if;
710 end Check_Line_Max_Length;
712 ---------------------------
713 -- Check_Line_Terminator --
714 ---------------------------
716 -- In check blanks at end mode (-gnatyb), lines may not end with a
717 -- trailing space.
719 -- In check form feeds mode (-gnatyf), the line terminator may not
720 -- be either of the characters FF or VT.
722 -- In check DOS line terminators node (-gnatyd), the line terminator
723 -- must be a single LF, without a following CR.
725 procedure Check_Line_Terminator (Len : Int) is
726 S : Source_Ptr;
728 L : Int := Len;
729 -- Length of line (adjusted down for blanks at end of line)
731 begin
732 -- Reset count of blank lines if first line
734 if Get_Logical_Line_Number (Scan_Ptr) = 1 then
735 Blank_Lines := 0;
736 end if;
738 -- Check FF/VT terminators
740 if Style_Check_Form_Feeds then
741 if Source (Scan_Ptr) = ASCII.FF then
742 Error_Msg_S -- CODEFIX
743 ("(style) form feed not allowed");
744 elsif Source (Scan_Ptr) = ASCII.VT then
745 Error_Msg_S -- CODEFIX
746 ("(style) vertical tab not allowed");
747 end if;
748 end if;
750 -- Check DOS line terminator
752 if Style_Check_DOS_Line_Terminator then
754 -- Ignore EOF, since we only get called with an EOF if it is the last
755 -- character in the buffer (and was therefore not in the source
756 -- file), since the terminating EOF is added to stop the scan.
758 if Source (Scan_Ptr) = EOF then
759 null;
761 -- Bad terminator if we don't have an LF
763 elsif Source (Scan_Ptr) /= LF then
764 Error_Msg_S ("(style) incorrect line terminator");
765 end if;
766 end if;
768 -- Remove trailing spaces
770 S := Scan_Ptr;
771 while L > 0 and then Is_White_Space (Source (S - 1)) loop
772 S := S - 1;
773 L := L - 1;
774 end loop;
776 -- Issue message for blanks at end of line if option enabled
778 if Style_Check_Blanks_At_End and then L < Len then
779 Error_Msg -- CODEFIX
780 ("(style) trailing spaces not permitted", S);
781 end if;
783 -- Deal with empty (blank) line
785 if L = 0 then
787 -- Increment blank line count
789 Blank_Lines := Blank_Lines + 1;
791 -- If first blank line, record location for later error message
793 if Blank_Lines = 1 then
794 Blank_Line_Location := Scan_Ptr;
795 end if;
797 -- Non-blank line, check for previous multiple blank lines
799 else
800 if Style_Check_Blank_Lines and then Blank_Lines > 1 then
801 Error_Msg -- CODEFIX
802 ("(style) multiple blank lines", Blank_Line_Location);
803 end if;
805 -- And reset blank line count
807 Blank_Lines := 0;
808 end if;
809 end Check_Line_Terminator;
811 ------------------
812 -- Check_Not_In --
813 ------------------
815 -- In check tokens mode, only one space between NOT and IN
817 procedure Check_Not_In is
818 begin
819 if Style_Check_Tokens then
820 if Source (Token_Ptr - 1) /= ' '
821 or else Token_Ptr - Prev_Token_Ptr /= 4
822 then -- CODEFIX?
823 Error_Msg
824 ("(style) single space must separate NOT and IN", Token_Ptr - 1);
825 end if;
826 end if;
827 end Check_Not_In;
829 --------------------------
830 -- Check_No_Space_After --
831 --------------------------
833 procedure Check_No_Space_After is
834 S : Source_Ptr;
836 begin
837 if Is_White_Space (Source (Scan_Ptr)) then
839 -- Allow one or more spaces if followed by comment
841 S := Scan_Ptr + 1;
842 loop
843 if Source (S) = '-' and then Source (S + 1) = '-' then
844 return;
846 elsif Is_White_Space (Source (S)) then
847 S := S + 1;
849 else
850 exit;
851 end if;
852 end loop;
854 Error_Space_Not_Allowed (Scan_Ptr);
855 end if;
856 end Check_No_Space_After;
858 ---------------------------
859 -- Check_No_Space_Before --
860 ---------------------------
862 procedure Check_No_Space_Before is
863 begin
864 if Token_Ptr > First_Non_Blank_Location
865 and then Source (Token_Ptr - 1) <= ' '
866 then
867 Error_Space_Not_Allowed (Token_Ptr - 1);
868 end if;
869 end Check_No_Space_Before;
871 -----------------------
872 -- Check_Pragma_Name --
873 -----------------------
875 -- In check pragma casing mode (-gnatyp), pragma names must be mixed
876 -- case, i.e. start with an upper case letter, and otherwise lower case,
877 -- except after an underline character.
879 procedure Check_Pragma_Name is
880 begin
881 if Style_Check_Pragma_Casing then
882 if Determine_Token_Casing /= Mixed_Case then
883 Error_Msg_SC -- CODEFIX
884 ("(style) bad capitalization, mixed case required");
885 end if;
886 end if;
887 end Check_Pragma_Name;
889 -----------------------
890 -- Check_Right_Paren --
891 -----------------------
893 -- In check token mode (-gnatyt), right paren must not be immediately
894 -- followed by an identifier character, and must never be preceded by
895 -- a space unless it is the initial non-blank character on the line.
897 procedure Check_Right_Paren is
898 begin
899 if Style_Check_Tokens then
900 if Identifier_Char (Source (Token_Ptr + 1)) then
901 Error_Space_Required (Token_Ptr + 1);
902 end if;
904 Check_No_Space_Before;
905 end if;
906 end Check_Right_Paren;
908 ---------------------
909 -- Check_Semicolon --
910 ---------------------
912 -- In check token mode (-gnatyt), semicolon does not permit a preceding
913 -- space and a following space is required.
915 procedure Check_Semicolon is
916 begin
917 if Style_Check_Tokens then
918 Check_No_Space_Before;
920 if Source (Scan_Ptr) > ' ' then
921 Error_Space_Required (Scan_Ptr);
922 end if;
923 end if;
924 end Check_Semicolon;
926 -------------------------------
927 -- Check_Separate_Stmt_Lines --
928 -------------------------------
930 procedure Check_Separate_Stmt_Lines is
931 begin
932 if Style_Check_Separate_Stmt_Lines then
933 Check_Separate_Stmt_Lines_Cont;
934 end if;
935 end Check_Separate_Stmt_Lines;
937 ------------------------------------
938 -- Check_Separate_Stmt_Lines_Cont --
939 ------------------------------------
941 procedure Check_Separate_Stmt_Lines_Cont is
942 S : Source_Ptr;
944 begin
945 -- Skip past white space
947 S := Scan_Ptr;
948 while Is_White_Space (Source (S)) loop
949 S := S + 1;
950 end loop;
952 -- Line terminator is OK
954 if Source (S) in Line_Terminator then
955 return;
957 -- Comment is OK
959 elsif Source (S) = '-' and then Source (S + 1) = '-' then
960 return;
962 -- ABORT keyword is OK after THEN (THEN ABORT case)
964 elsif Token = Tok_Then
965 and then (Source (S + 0) = 'a' or else Source (S + 0) = 'A')
966 and then (Source (S + 1) = 'b' or else Source (S + 1) = 'B')
967 and then (Source (S + 2) = 'o' or else Source (S + 2) = 'O')
968 and then (Source (S + 3) = 'r' or else Source (S + 3) = 'R')
969 and then (Source (S + 4) = 't' or else Source (S + 4) = 'T')
970 and then (Source (S + 5) in Line_Terminator
971 or else Is_White_Space (Source (S + 5)))
972 then
973 return;
975 -- PRAGMA keyword is OK after ELSE
977 elsif Token = Tok_Else
978 and then (Source (S + 0) = 'p' or else Source (S + 0) = 'P')
979 and then (Source (S + 1) = 'r' or else Source (S + 1) = 'R')
980 and then (Source (S + 2) = 'a' or else Source (S + 2) = 'A')
981 and then (Source (S + 3) = 'g' or else Source (S + 3) = 'G')
982 and then (Source (S + 4) = 'm' or else Source (S + 4) = 'M')
983 and then (Source (S + 5) = 'a' or else Source (S + 5) = 'A')
984 and then (Source (S + 6) in Line_Terminator
985 or else Is_White_Space (Source (S + 6)))
986 then
987 return;
989 -- Otherwise we have the style violation we are looking for
991 else
992 if Token = Tok_Then then
993 Error_Msg -- CODEFIX
994 ("(style) no statements may follow THEN on same line", S);
995 else
996 Error_Msg
997 ("(style) no statements may follow ELSE on same line", S);
998 end if;
999 end if;
1000 end Check_Separate_Stmt_Lines_Cont;
1002 ----------------
1003 -- Check_Then --
1004 ----------------
1006 -- In check if then layout mode (-gnatyi), we expect a THEN keyword
1007 -- to appear either on the same line as the IF, or on a separate line
1008 -- after multiple conditions. In any case, it may not appear on the
1009 -- line immediately following the line with the IF.
1011 procedure Check_Then (If_Loc : Source_Ptr) is
1012 begin
1013 if Style_Check_If_Then_Layout then
1014 if Get_Physical_Line_Number (Token_Ptr) =
1015 Get_Physical_Line_Number (If_Loc) + 1
1016 then
1017 Error_Msg_SC ("(style) misplaced THEN");
1018 end if;
1019 end if;
1020 end Check_Then;
1022 -------------------------------
1023 -- Check_Unary_Plus_Or_Minus --
1024 -------------------------------
1026 -- In check token mode (-gnatyt), unary plus or minus must not be
1027 -- followed by a space.
1029 procedure Check_Unary_Plus_Or_Minus is
1030 begin
1031 if Style_Check_Tokens then
1032 Check_No_Space_After;
1033 end if;
1034 end Check_Unary_Plus_Or_Minus;
1036 ------------------------
1037 -- Check_Vertical_Bar --
1038 ------------------------
1040 -- In check token mode (-gnatyt), vertical bar must be surrounded by spaces
1042 procedure Check_Vertical_Bar is
1043 begin
1044 if Style_Check_Tokens then
1045 Require_Preceding_Space;
1046 Require_Following_Space;
1047 end if;
1048 end Check_Vertical_Bar;
1050 -----------------------
1051 -- Check_Xtra_Parens --
1052 -----------------------
1054 procedure Check_Xtra_Parens (Loc : Source_Ptr) is
1055 begin
1056 if Style_Check_Xtra_Parens then
1057 Error_Msg -- CODEFIX
1058 ("redundant parentheses?", Loc);
1059 end if;
1060 end Check_Xtra_Parens;
1062 ----------------------------
1063 -- Determine_Token_Casing --
1064 ----------------------------
1066 function Determine_Token_Casing return Casing_Type is
1067 begin
1068 return Determine_Casing (Source (Token_Ptr .. Scan_Ptr - 1));
1069 end Determine_Token_Casing;
1071 -----------------------------
1072 -- Error_Space_Not_Allowed --
1073 -----------------------------
1075 procedure Error_Space_Not_Allowed (S : Source_Ptr) is
1076 begin
1077 Error_Msg -- CODEFIX
1078 ("(style) space not allowed", S);
1079 end Error_Space_Not_Allowed;
1081 --------------------------
1082 -- Error_Space_Required --
1083 --------------------------
1085 procedure Error_Space_Required (S : Source_Ptr) is
1086 begin
1087 Error_Msg -- CODEFIX
1088 ("(style) space required", S);
1089 end Error_Space_Required;
1091 --------------------
1092 -- Is_White_Space --
1093 --------------------
1095 function Is_White_Space (C : Character) return Boolean is
1096 begin
1097 return C = ' ' or else C = HT;
1098 end Is_White_Space;
1100 -------------------
1101 -- Mode_In_Check --
1102 -------------------
1104 function Mode_In_Check return Boolean is
1105 begin
1106 return Style_Check and Style_Check_Mode_In;
1107 end Mode_In_Check;
1109 -----------------
1110 -- No_End_Name --
1111 -----------------
1113 -- In check end/exit labels mode (-gnatye), always require the name of
1114 -- a subprogram or package to be present on the END, so this is an error.
1116 procedure No_End_Name (Name : Node_Id) is
1117 begin
1118 if Style_Check_End_Labels then
1119 Error_Msg_Node_1 := Name;
1120 Error_Msg_SP -- CODEFIX
1121 ("(style) `END &` required");
1122 end if;
1123 end No_End_Name;
1125 ------------------
1126 -- No_Exit_Name --
1127 ------------------
1129 -- In check end/exit labels mode (-gnatye), always require the name of
1130 -- the loop to be present on the EXIT when exiting a named loop.
1132 procedure No_Exit_Name (Name : Node_Id) is
1133 begin
1134 if Style_Check_End_Labels then
1135 Error_Msg_Node_1 := Name;
1136 Error_Msg_SP -- CODEFIX
1137 ("(style) `EXIT &` required");
1138 end if;
1139 end No_Exit_Name;
1141 ----------------------------
1142 -- Non_Lower_Case_Keyword --
1143 ----------------------------
1145 -- In check casing mode (-gnatyk), reserved keywords must be spelled
1146 -- in all lower case (excluding keywords range, access, delta and digits
1147 -- used as attribute designators).
1149 procedure Non_Lower_Case_Keyword is
1150 begin
1151 if Style_Check_Keyword_Casing then
1152 Error_Msg_SC -- CODEFIX
1153 ("(style) reserved words must be all lower case");
1154 end if;
1155 end Non_Lower_Case_Keyword;
1157 -----------------------------
1158 -- Require_Following_Space --
1159 -----------------------------
1161 procedure Require_Following_Space is
1162 begin
1163 if Source (Scan_Ptr) > ' ' then
1164 Error_Space_Required (Scan_Ptr);
1165 end if;
1166 end Require_Following_Space;
1168 -----------------------------
1169 -- Require_Preceding_Space --
1170 -----------------------------
1172 procedure Require_Preceding_Space is
1173 begin
1174 if Token_Ptr > Source_First (Current_Source_File)
1175 and then Source (Token_Ptr - 1) > ' '
1176 then
1177 Error_Space_Required (Token_Ptr);
1178 end if;
1179 end Require_Preceding_Space;
1181 end Styleg;