1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2014, Free Software Foundation, Inc. --
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. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Atree
; use Atree
;
27 with Csets
; use Csets
;
28 with Hostparm
; use Hostparm
;
29 with Namet
; use Namet
;
31 with Restrict
; use Restrict
;
32 with Rident
; use Rident
;
33 with Scans
; use Scans
;
34 with Sinput
; use Sinput
;
35 with Snames
; use Snames
;
36 with Stringt
; use Stringt
;
37 with Stylesw
; use Stylesw
;
38 with Uintp
; use Uintp
;
39 with Urealp
; use Urealp
;
40 with Widechar
; use Widechar
;
42 pragma Warnings
(Off
);
43 -- This package is used also by gnatcoll
45 with System
.UTF_32
; use System
.UTF_32
;
46 with System
.WCh_Con
; use System
.WCh_Con
;
52 -- Make control characters visible
54 Special_Characters
: array (Character) of Boolean := (others => False);
55 -- For characters that are Special token, the value is True
57 Comment_Is_Token
: Boolean := False;
58 -- True if comments are tokens
60 End_Of_Line_Is_Token
: Boolean := False;
61 -- True if End_Of_Line is a token
63 -----------------------
64 -- Local Subprograms --
65 -----------------------
67 procedure Accumulate_Token_Checksum
;
68 pragma Inline
(Accumulate_Token_Checksum
);
69 -- Called after each numeric literal and identifier/keyword. For keywords,
70 -- the token used is Tok_Identifier. This allows detection of additional
71 -- spaces added in sources when using the builder switch -m.
73 procedure Accumulate_Token_Checksum_GNAT_6_3
;
74 -- Used in place of Accumulate_Token_Checksum for GNAT versions 5.04 to
75 -- 6.3, when Tok_Some was not included in Token_Type and the actual
76 -- Token_Type was used for keywords. This procedure is never used in the
77 -- compiler or gnatmake, only in gprbuild.
79 procedure Accumulate_Token_Checksum_GNAT_5_03
;
80 -- Used in place of Accumulate_Token_Checksum for GNAT version 5.03, when
81 -- Tok_Interface, Tok_Some, Tok_Synchronized and Tok_Overriding were not
82 -- included in Token_Type and the actual Token_Type was used for keywords.
83 -- This procedure is never used in the compiler or gnatmake, only in
86 procedure Accumulate_Checksum
(C
: Character);
87 pragma Inline
(Accumulate_Checksum
);
88 -- This routine accumulates the checksum given character C. During the
89 -- scanning of a source file, this routine is called with every character
90 -- in the source, excluding blanks, and all control characters (except
91 -- that ESC is included in the checksum). Upper case letters not in string
92 -- literals are folded by the caller. See Sinput spec for the documentation
93 -- of the checksum algorithm. Note: checksum values are only used if we
94 -- generate code, so it is not necessary to worry about making the right
95 -- sequence of calls in any error situation.
97 procedure Accumulate_Checksum
(C
: Char_Code
);
98 pragma Inline
(Accumulate_Checksum
);
99 -- This version is identical, except that the argument, C, is a character
100 -- code value instead of a character. This is used when wide characters
101 -- are scanned. We use the character code rather than the ASCII characters
102 -- so that the checksum is independent of wide character encoding method.
104 procedure Initialize_Checksum
;
105 pragma Inline
(Initialize_Checksum
);
106 -- Initialize checksum value
108 -------------------------
109 -- Accumulate_Checksum --
110 -------------------------
112 procedure Accumulate_Checksum
(C
: Character) is
114 System
.CRC32
.Update
(System
.CRC32
.CRC32
(Checksum
), C
);
115 end Accumulate_Checksum
;
117 procedure Accumulate_Checksum
(C
: Char_Code
) is
120 Accumulate_Checksum
(Character'Val (C
/ 2 ** 24));
121 Accumulate_Checksum
(Character'Val ((C
/ 2 ** 16) mod 256));
122 Accumulate_Checksum
(Character'Val ((C
/ 256) mod 256));
124 Accumulate_Checksum
(Character'Val (C
/ 256));
127 Accumulate_Checksum
(Character'Val (C
mod 256));
128 end Accumulate_Checksum
;
130 -------------------------------
131 -- Accumulate_Token_Checksum --
132 -------------------------------
134 procedure Accumulate_Token_Checksum
is
137 (System
.CRC32
.CRC32
(Checksum
),
138 Character'Val (Token_Type
'Pos (Token
)));
139 end Accumulate_Token_Checksum
;
141 ----------------------------------------
142 -- Accumulate_Token_Checksum_GNAT_6_3 --
143 ----------------------------------------
145 procedure Accumulate_Token_Checksum_GNAT_6_3
is
147 -- Individual values of Token_Type are used, instead of subranges, so
148 -- that additions or suppressions of enumerated values in type
149 -- Token_Type are detected by the compiler.
152 when Tok_Integer_Literal | Tok_Real_Literal | Tok_String_Literal |
153 Tok_Char_Literal | Tok_Operator_Symbol | Tok_Identifier |
154 Tok_Double_Asterisk | Tok_Ampersand | Tok_Minus | Tok_Plus |
155 Tok_Asterisk | Tok_Mod | Tok_Rem | Tok_Slash | Tok_New |
156 Tok_Abs | Tok_Others | Tok_Null | Tok_Dot | Tok_Apostrophe |
157 Tok_Left_Paren | Tok_Delta | Tok_Digits | Tok_Range |
158 Tok_Right_Paren | Tok_Comma | Tok_And | Tok_Or | Tok_Xor |
159 Tok_Less | Tok_Equal | Tok_Greater | Tok_Not_Equal |
160 Tok_Greater_Equal | Tok_Less_Equal | Tok_In | Tok_Not |
161 Tok_Box | Tok_Colon_Equal | Tok_Colon | Tok_Greater_Greater |
162 Tok_Abstract | Tok_Access | Tok_Aliased | Tok_All | Tok_Array |
163 Tok_At | Tok_Body | Tok_Constant | Tok_Do | Tok_Is |
164 Tok_Interface | Tok_Limited | Tok_Of | Tok_Out | Tok_Record |
165 Tok_Renames | Tok_Reverse
=>
168 (System
.CRC32
.CRC32
(Checksum
),
169 Character'Val (Token_Type
'Pos (Token
)));
174 (System
.CRC32
.CRC32
(Checksum
),
175 Character'Val (Token_Type
'Pos (Tok_Identifier
)));
177 when Tok_Tagged | Tok_Then | Tok_Less_Less | Tok_Abort | Tok_Accept |
178 Tok_Case | Tok_Delay | Tok_Else | Tok_Elsif | Tok_End |
179 Tok_Exception | Tok_Exit | Tok_Goto | Tok_If | Tok_Pragma |
180 Tok_Raise | Tok_Requeue | Tok_Return | Tok_Select |
181 Tok_Terminate | Tok_Until | Tok_When | Tok_Begin | Tok_Declare |
182 Tok_For | Tok_Loop | Tok_While | Tok_Entry | Tok_Protected |
183 Tok_Task | Tok_Type | Tok_Subtype | Tok_Overriding |
184 Tok_Synchronized | Tok_Use | Tok_Function | Tok_Generic |
185 Tok_Package | Tok_Procedure | Tok_Private | Tok_With |
186 Tok_Separate | Tok_EOF | Tok_Semicolon | Tok_Arrow |
187 Tok_Vertical_Bar | Tok_Dot_Dot | Tok_Project | Tok_Extends |
188 Tok_External | Tok_External_As_List | Tok_Comment |
189 Tok_End_Of_Line | Tok_Special | Tok_SPARK_Hide | No_Token
=>
192 (System
.CRC32
.CRC32
(Checksum
),
193 Character'Val (Token_Type
'Pos (Token_Type
'Pred (Token
))));
195 end Accumulate_Token_Checksum_GNAT_6_3
;
197 -----------------------------------------
198 -- Accumulate_Token_Checksum_GNAT_5_03 --
199 -----------------------------------------
201 procedure Accumulate_Token_Checksum_GNAT_5_03
is
203 -- Individual values of Token_Type are used, instead of subranges, so
204 -- that additions or suppressions of enumerated values in type
205 -- Token_Type are detected by the compiler.
208 when Tok_Integer_Literal | Tok_Real_Literal | Tok_String_Literal |
209 Tok_Char_Literal | Tok_Operator_Symbol | Tok_Identifier |
210 Tok_Double_Asterisk | Tok_Ampersand | Tok_Minus | Tok_Plus |
211 Tok_Asterisk | Tok_Mod | Tok_Rem | Tok_Slash | Tok_New |
212 Tok_Abs | Tok_Others | Tok_Null | Tok_Dot | Tok_Apostrophe |
213 Tok_Left_Paren | Tok_Delta | Tok_Digits | Tok_Range |
214 Tok_Right_Paren | Tok_Comma | Tok_And | Tok_Or | Tok_Xor |
215 Tok_Less | Tok_Equal | Tok_Greater | Tok_Not_Equal |
216 Tok_Greater_Equal | Tok_Less_Equal | Tok_In | Tok_Not |
217 Tok_Box | Tok_Colon_Equal | Tok_Colon | Tok_Greater_Greater |
218 Tok_Abstract | Tok_Access | Tok_Aliased | Tok_All | Tok_Array |
219 Tok_At | Tok_Body | Tok_Constant | Tok_Do | Tok_Is
=>
222 (System
.CRC32
.CRC32
(Checksum
),
223 Character'Val (Token_Type
'Pos (Token
)));
225 when Tok_Interface | Tok_Some | Tok_Overriding | Tok_Synchronized
=>
227 (System
.CRC32
.CRC32
(Checksum
),
228 Character'Val (Token_Type
'Pos (Tok_Identifier
)));
230 when Tok_Limited | Tok_Of | Tok_Out | Tok_Record |
231 Tok_Renames | Tok_Reverse
=>
234 (System
.CRC32
.CRC32
(Checksum
),
235 Character'Val (Token_Type
'Pos (Token
) - 1));
237 when Tok_Tagged | Tok_Then | Tok_Less_Less | Tok_Abort | Tok_Accept |
238 Tok_Case | Tok_Delay | Tok_Else | Tok_Elsif | Tok_End |
239 Tok_Exception | Tok_Exit | Tok_Goto | Tok_If | Tok_Pragma |
240 Tok_Raise | Tok_Requeue | Tok_Return | Tok_Select |
241 Tok_Terminate | Tok_Until | Tok_When | Tok_Begin | Tok_Declare |
242 Tok_For | Tok_Loop | Tok_While | Tok_Entry | Tok_Protected |
243 Tok_Task | Tok_Type | Tok_Subtype
=>
246 (System
.CRC32
.CRC32
(Checksum
),
247 Character'Val (Token_Type
'Pos (Token
) - 2));
249 when Tok_Use | Tok_Function | Tok_Generic |
250 Tok_Package | Tok_Procedure | Tok_Private | Tok_With |
251 Tok_Separate | Tok_EOF | Tok_Semicolon | Tok_Arrow |
252 Tok_Vertical_Bar | Tok_Dot_Dot | Tok_Project | Tok_Extends |
253 Tok_External | Tok_External_As_List | Tok_Comment |
254 Tok_End_Of_Line | Tok_Special | Tok_SPARK_Hide | No_Token
=>
257 (System
.CRC32
.CRC32
(Checksum
),
258 Character'Val (Token_Type
'Pos (Token
) - 4));
260 end Accumulate_Token_Checksum_GNAT_5_03
;
262 -----------------------
263 -- Check_End_Of_Line --
264 -----------------------
266 procedure Check_End_Of_Line
is
267 Len
: constant Int
:=
269 Int
(Current_Line_Start
) -
270 Wide_Char_Byte_Count
;
272 -- Start of processing for Check_End_Of_Line
276 Style
.Check_Line_Terminator
(Len
);
279 -- Deal with checking maximum line length
281 if Style_Check
and Style_Check_Max_Line_Length
then
282 Style
.Check_Line_Max_Length
(Len
);
284 -- If style checking is inactive, check maximum line length against
287 elsif Len
> Max_Line_Length
then
289 ("this line is too long",
290 Current_Line_Start
+ Source_Ptr
(Max_Line_Length
));
293 -- Now one more checking circuit. Normally we are only enforcing a limit
294 -- of physical characters, with tabs counting as one character. But if
295 -- after tab expansion we would have a total line length that exceeded
296 -- 32766, that would really cause trouble, because column positions
297 -- would exceed the maximum we allow for a column count. Note: the limit
298 -- is 32766 rather than 32767, since we use a value of 32767 for special
299 -- purposes (see Sinput). Now we really do not want to go messing with
300 -- tabs in the normal case, so what we do is to check for a line that
301 -- has more than 4096 physical characters. Any shorter line could not
302 -- be a problem, even if it was all tabs.
311 Ptr
:= Current_Line_Start
;
313 exit when Ptr
= Scan_Ptr
;
315 if Source
(Ptr
) = ASCII
.HT
then
316 Col
:= (Col
- 1 + 8) / 8 * 8 + 1;
323 ("this line is longer than 32766 characters",
325 raise Unrecoverable_Error
;
333 -- Reset wide character byte count for next line
335 Wide_Char_Byte_Count
:= 0;
336 end Check_End_Of_Line
;
338 ----------------------------
339 -- Determine_Token_Casing --
340 ----------------------------
342 function Determine_Token_Casing
return Casing_Type
is
344 return Determine_Casing
(Source
(Token_Ptr
.. Scan_Ptr
- 1));
345 end Determine_Token_Casing
;
347 -------------------------
348 -- Initialize_Checksum --
349 -------------------------
351 procedure Initialize_Checksum
is
353 System
.CRC32
.Initialize
(System
.CRC32
.CRC32
(Checksum
));
354 end Initialize_Checksum
;
356 ------------------------
357 -- Initialize_Scanner --
358 ------------------------
360 procedure Initialize_Scanner
(Index
: Source_File_Index
) is
362 -- Establish reserved words
364 Scans
.Initialize_Ada_Keywords
;
366 -- Initialize scan control variables
368 Current_Source_File
:= Index
;
369 Source
:= Source_Text
(Current_Source_File
);
370 Scan_Ptr
:= Source_First
(Current_Source_File
);
372 Token_Ptr
:= Scan_Ptr
;
373 Current_Line_Start
:= Scan_Ptr
;
375 Token_Name
:= No_Name
;
376 Start_Column
:= Set_Start_Column
;
377 First_Non_Blank_Location
:= Scan_Ptr
;
380 Wide_Char_Byte_Count
:= 0;
382 -- Do not call Scan, otherwise the License stuff does not work in Scn
384 end Initialize_Scanner
;
386 ------------------------------
387 -- Reset_Special_Characters --
388 ------------------------------
390 procedure Reset_Special_Characters
is
392 Special_Characters
:= (others => False);
393 end Reset_Special_Characters
;
401 Start_Of_Comment
: Source_Ptr
;
402 -- Record start of comment position
404 Underline_Found
: Boolean;
405 -- During scanning of an identifier, set to True if last character
406 -- scanned was an underline or other punctuation character. This
407 -- is used to flag the error of two underlines/punctuations in a
408 -- row or ending an identifier with a underline/punctuation. Here
409 -- punctuation means any UTF_32 character in the Unicode category
410 -- Punctuation,Connector.
413 -- Used to remember start of last wide character scanned
415 function Double_Char_Token
(C
: Character) return Boolean;
416 -- This function is used for double character tokens like := or <>. It
417 -- checks if the character following Source (Scan_Ptr) is C, and if so
418 -- bumps Scan_Ptr past the pair of characters and returns True. A space
419 -- between the two characters is also recognized with an appropriate
420 -- error message being issued. If C is not present, False is returned.
421 -- Note that Double_Char_Token can only be used for tokens defined in
422 -- the Ada syntax (it's use for error cases like && is not appropriate
423 -- since we do not want a junk message for a case like &-space-&).
425 procedure Error_Illegal_Character
;
426 -- Give illegal character error, Scan_Ptr points to character. On
427 -- return, Scan_Ptr is bumped past the illegal character.
429 procedure Error_Illegal_Wide_Character
;
430 -- Give illegal wide character message. On return, Scan_Ptr is bumped
431 -- past the illegal character, which may still leave us pointing to
432 -- junk, not much we can do if the escape sequence is messed up.
434 procedure Error_No_Double_Underline
;
435 -- Signal error of two underline or punctuation characters in a row.
436 -- Called with Scan_Ptr pointing to second underline/punctuation char.
439 -- This is the procedure for scanning out numeric literals. On entry,
440 -- Scan_Ptr points to the digit that starts the numeric literal (the
441 -- checksum for this character has not been accumulated yet). On return
442 -- Scan_Ptr points past the last character of the numeric literal, Token
443 -- and Token_Node are set appropriately, and the checksum is updated.
446 -- This is the procedure for scanning out string literals. On entry,
447 -- Scan_Ptr points to the opening string quote (the checksum for this
448 -- character has not been accumulated yet). On return Scan_Ptr points
449 -- past the closing quote of the string literal, Token and Token_Node
450 -- are set appropriately, and the checksum is updated.
452 procedure Skip_Other_Format_Characters
;
453 -- Skips past any "other format" category characters at the current
454 -- cursor location (does not skip past spaces or any other characters).
456 function Start_Of_Wide_Character
return Boolean;
457 -- Returns True if the scan pointer is pointing to the start of a wide
458 -- character sequence, does not modify the scan pointer in any case.
460 -----------------------
461 -- Double_Char_Token --
462 -----------------------
464 function Double_Char_Token
(C
: Character) return Boolean is
466 if Source
(Scan_Ptr
+ 1) = C
then
467 Accumulate_Checksum
(C
);
468 Scan_Ptr
:= Scan_Ptr
+ 2;
471 elsif Source
(Scan_Ptr
+ 1) = ' '
472 and then Source
(Scan_Ptr
+ 2) = C
474 Scan_Ptr
:= Scan_Ptr
+ 1;
475 Error_Msg_S
-- CODEFIX
476 ("no space allowed here");
477 Scan_Ptr
:= Scan_Ptr
+ 2;
483 end Double_Char_Token
;
485 -----------------------------
486 -- Error_Illegal_Character --
487 -----------------------------
489 procedure Error_Illegal_Character
is
491 Error_Msg_S
("illegal character");
492 Scan_Ptr
:= Scan_Ptr
+ 1;
493 end Error_Illegal_Character
;
495 ----------------------------------
496 -- Error_Illegal_Wide_Character --
497 ----------------------------------
499 procedure Error_Illegal_Wide_Character
is
501 Scan_Ptr
:= Scan_Ptr
+ 1;
502 Error_Msg
("illegal wide character", Wptr
);
503 end Error_Illegal_Wide_Character
;
505 -------------------------------
506 -- Error_No_Double_Underline --
507 -------------------------------
509 procedure Error_No_Double_Underline
is
511 Underline_Found
:= False;
513 -- There are four cases, and we special case the messages
515 if Source
(Scan_Ptr
) = '_' then
516 if Source
(Scan_Ptr
- 1) = '_' then
517 Error_Msg_S
-- CODEFIX
518 ("two consecutive underlines not permitted");
520 Error_Msg_S
("underline cannot follow punctuation character");
524 if Source
(Scan_Ptr
- 1) = '_' then
525 Error_Msg_S
("punctuation character cannot follow underline");
528 ("two consecutive punctuation characters not permitted");
531 end Error_No_Double_Underline
;
540 -- Current source program character
542 Base_Char
: Character;
543 -- Either # or : (character at start of based number)
549 -- Value of base in Uint format
552 -- Value of integer scanned by Scan_Integer in Uint format
555 -- Value of integer in numeric value being scanned
558 -- Scale value for real literal
561 -- Scale in Uint format
563 Exponent_Is_Negative
: Boolean;
564 -- Set true for negative exponent
566 Extended_Digit_Value
: Int
;
567 -- Extended digit value
569 Point_Scanned
: Boolean;
570 -- Flag for decimal point scanned in numeric literal
572 -----------------------
573 -- Local Subprograms --
574 -----------------------
576 procedure Error_Digit_Expected
;
577 -- Signal error of bad digit, Scan_Ptr points to the location at
578 -- which the digit was expected on input, and is unchanged on return.
580 procedure Scan_Integer
;
581 -- Scan integer literal. On entry, Scan_Ptr points to a digit, on
582 -- exit Scan_Ptr points past the last character of the integer.
584 -- For each digit encountered, UI_Int_Value is multiplied by 10, and
585 -- the value of the digit added to the result. In addition, the value
586 -- in Scale is decremented by one for each actual digit scanned.
588 --------------------------
589 -- Error_Digit_Expected --
590 --------------------------
592 procedure Error_Digit_Expected
is
594 Error_Msg_S
("digit expected");
595 end Error_Digit_Expected
;
601 procedure Scan_Integer
is
603 -- Next character scanned
606 C
:= Source
(Scan_Ptr
);
608 -- Loop through digits (allowing underlines)
611 Accumulate_Checksum
(C
);
613 UI_Int_Value
* 10 + (Character'Pos (C
) - Character'Pos ('0'));
614 Scan_Ptr
:= Scan_Ptr
+ 1;
616 C
:= Source
(Scan_Ptr
);
618 -- Case of underline encountered
622 -- We do not accumulate the '_' in the checksum, so that
623 -- 1_234 is equivalent to 1234, and does not trigger
624 -- compilation for "minimal recompilation" (gnatmake -m).
627 Scan_Ptr
:= Scan_Ptr
+ 1;
628 C
:= Source
(Scan_Ptr
);
630 Error_No_Double_Underline
;
633 if C
not in '0' .. '9' then
634 Error_Digit_Expected
;
639 exit when C
not in '0' .. '9';
644 -- Start of Processing for Nlit
649 UI_Int_Value
:= Uint_0
;
650 Based_Literal_Uses_Colon
:= False;
653 Point_Scanned
:= False;
654 UI_Num_Value
:= UI_Int_Value
;
656 -- Various possibilities now for continuing the literal are period,
657 -- E/e (for exponent), or :/# (for based literal).
660 C
:= Source
(Scan_Ptr
);
664 -- Scan out point, but do not scan past .. which is a range
665 -- sequence, and must not be eaten up scanning a numeric literal.
667 while C
= '.' and then Source
(Scan_Ptr
+ 1) /= '.' loop
668 Accumulate_Checksum
('.');
670 if Point_Scanned
then
671 Error_Msg_S
("duplicate point ignored");
674 Point_Scanned
:= True;
675 Scan_Ptr
:= Scan_Ptr
+ 1;
676 C
:= Source
(Scan_Ptr
);
678 if C
not in '0' .. '9' then
680 ("real literal cannot end with point", Scan_Ptr
- 1);
683 UI_Num_Value
:= UI_Int_Value
;
687 -- Based literal case. The base is the value we already scanned.
688 -- In the case of colon, we insist that the following character
689 -- is indeed an extended digit or a period. This catches a number
690 -- of common errors, as well as catching the well known tricky
691 -- bug otherwise arising from "x : integer range 1 .. 10:= 6;"
694 or else (C
= ':' and then
695 (Source
(Scan_Ptr
+ 1) = '.'
697 Source
(Scan_Ptr
+ 1) in '0' .. '9'
699 Source
(Scan_Ptr
+ 1) in 'A' .. 'Z'
701 Source
(Scan_Ptr
+ 1) in 'a' .. 'z'))
703 Accumulate_Checksum
(C
);
705 UI_Base
:= UI_Int_Value
;
707 if Base_Char
= ':' then
708 Based_Literal_Uses_Colon
:= True;
711 if UI_Base
< 2 or else UI_Base
> 16 then
712 Error_Msg_SC
("base not 2-16");
716 Base
:= UI_To_Int
(UI_Base
);
717 Scan_Ptr
:= Scan_Ptr
+ 1;
719 -- Scan out extended integer [. integer]
721 C
:= Source
(Scan_Ptr
);
722 UI_Int_Value
:= Uint_0
;
726 if C
in '0' .. '9' then
727 Accumulate_Checksum
(C
);
728 Extended_Digit_Value
:=
729 Int
'(Character'Pos (C)) - Int'(Character'Pos ('0'));
731 elsif C
in 'A' .. 'F' then
732 Accumulate_Checksum
(Character'Val (Character'Pos (C
) + 32));
733 Extended_Digit_Value
:=
734 Int
'(Character'Pos (C)) - Int'(Character'Pos ('A')) + 10;
736 elsif C
in 'a' .. 'f' then
737 Accumulate_Checksum
(C
);
738 Extended_Digit_Value
:=
739 Int
'(Character'Pos (C)) - Int'(Character'Pos ('a')) + 10;
742 Error_Msg_S
("extended digit expected");
746 if Extended_Digit_Value
>= Base
then
747 Error_Msg_S
("digit '>= base");
750 UI_Int_Value
:= UI_Int_Value
* UI_Base
+ Extended_Digit_Value
;
752 Scan_Ptr
:= Scan_Ptr
+ 1;
753 C
:= Source
(Scan_Ptr
);
757 Accumulate_Checksum
('_');
758 Scan_Ptr
:= Scan_Ptr
+ 1;
759 C
:= Source
(Scan_Ptr
);
761 Error_No_Double_Underline
;
765 Accumulate_Checksum
('.');
767 if Point_Scanned
then
768 Error_Msg_S
("duplicate point ignored");
771 Scan_Ptr
:= Scan_Ptr
+ 1;
772 C
:= Source
(Scan_Ptr
);
773 Point_Scanned
:= True;
776 elsif C
= Base_Char
then
777 Accumulate_Checksum
(C
);
778 Scan_Ptr
:= Scan_Ptr
+ 1;
781 elsif C
= '#' or else C
= ':' then
782 Error_Msg_S
("based number delimiters must match");
783 Scan_Ptr
:= Scan_Ptr
+ 1;
786 elsif not Identifier_Char
(C
) then
787 if Base_Char
= '#' then
788 Error_Msg_S
-- CODEFIX
791 Error_Msg_S
-- CODEFIX
800 UI_Num_Value
:= UI_Int_Value
;
805 if not Point_Scanned
then
809 UI_Scale
:= UI_From_Int
(Scale
);
812 if Source
(Scan_Ptr
) = 'e' or else Source
(Scan_Ptr
) = 'E' then
813 Accumulate_Checksum
('e');
814 Scan_Ptr
:= Scan_Ptr
+ 1;
815 Exponent_Is_Negative
:= False;
817 if Source
(Scan_Ptr
) = '+' then
818 Accumulate_Checksum
('+');
819 Scan_Ptr
:= Scan_Ptr
+ 1;
821 elsif Source
(Scan_Ptr
) = '-' then
822 Accumulate_Checksum
('-');
824 if not Point_Scanned
then
826 ("negative exponent not allowed for integer literal");
828 Exponent_Is_Negative
:= True;
831 Scan_Ptr
:= Scan_Ptr
+ 1;
834 UI_Int_Value
:= Uint_0
;
836 if Source
(Scan_Ptr
) in '0' .. '9' then
839 Error_Digit_Expected
;
842 if Exponent_Is_Negative
then
843 UI_Scale
:= UI_Scale
- UI_Int_Value
;
845 UI_Scale
:= UI_Scale
+ UI_Int_Value
;
849 -- Case of real literal to be returned
851 if Point_Scanned
then
852 Token
:= Tok_Real_Literal
;
853 Real_Literal_Value
:=
859 -- Case of integer literal to be returned
862 Token
:= Tok_Integer_Literal
;
865 Int_Literal_Value
:= UI_Num_Value
;
867 -- Avoid doing possibly expensive calculations in cases like
868 -- parsing 163E800_000# when semantics will not be done anyway.
869 -- This is especially useful when parsing garbled input.
871 elsif Operating_Mode
/= Check_Syntax
872 and then (Serious_Errors_Detected
= 0 or else Try_Semantics
)
874 Int_Literal_Value
:= UI_Num_Value
* UI_Base
** UI_Scale
;
877 Int_Literal_Value
:= No_Uint
;
881 if Checksum_Accumulate_Token_Checksum
then
882 Accumulate_Token_Checksum
;
894 Delimiter
: Character;
895 -- Delimiter (first character of string)
898 -- Current source program character
901 -- Current character code value
904 -- Error flag for Scan_Wide call
906 String_Start
: Source_Ptr
;
907 -- Point to first character of string
909 procedure Error_Bad_String_Char
;
910 -- Signal bad character in string/character literal. On entry
911 -- Scan_Ptr points to the improper character encountered during the
912 -- scan. Scan_Ptr is not modified, so it still points to the bad
913 -- character on return.
915 procedure Error_Unterminated_String
;
916 -- Procedure called if a line terminator character is encountered
917 -- during scanning a string, meaning that the string is not properly
920 procedure Set_String
;
921 -- Procedure used to distinguish between string and operator symbol.
922 -- On entry the string has been scanned out, and its characters start
923 -- at Token_Ptr and end one character before Scan_Ptr. On exit Token
924 -- is set to Tok_String_Literal/Tok_Operator_Symbol as appropriate,
925 -- and Token_Node is appropriately initialized. In addition, in the
926 -- operator symbol case, Token_Name is appropriately set, and the
927 -- flags [Wide_]Wide_Character_Found are set appropriately.
929 ---------------------------
930 -- Error_Bad_String_Char --
931 ---------------------------
933 procedure Error_Bad_String_Char
is
934 C
: constant Character := Source
(Scan_Ptr
);
938 Error_Msg_S
("horizontal tab not allowed in string");
940 elsif C
= VT
or else C
= FF
then
941 Error_Msg_S
("format effector not allowed in string");
943 elsif C
in Upper_Half_Character
then
944 Error_Msg_S
("(Ada 83) upper half character not allowed");
947 Error_Msg_S
("control character not allowed in string");
949 end Error_Bad_String_Char
;
951 -------------------------------
952 -- Error_Unterminated_String --
953 -------------------------------
955 procedure Error_Unterminated_String
is
959 -- An interesting little refinement. Consider the following
962 -- A := "this is an unterminated string;
963 -- A := "this is an unterminated string &
964 -- P(A, "this is a parameter that didn't get terminated);
965 -- P("this is a parameter that didn't get terminated, A);
967 -- We fiddle a little to do slightly better placement in these
968 -- cases also if there is white space at the end of the line we
969 -- place the flag at the start of this white space, not at the
970 -- end. Note that we only have to test for blanks, since tabs
971 -- aren't allowed in strings in the first place and would have
972 -- caused an error message.
974 -- Two more cases that we treat specially are:
976 -- A := "this string uses the wrong terminator'
977 -- A := "this string uses the wrong terminator' &
979 -- In these cases we give a different error message as well
981 -- We actually reposition the scan pointer to the point where we
982 -- place the flag in these cases, since it seems a better bet on
983 -- the original intention.
985 while Source
(Scan_Ptr
- 1) = ' '
986 or else Source
(Scan_Ptr
- 1) = '&'
988 Scan_Ptr
:= Scan_Ptr
- 1;
992 -- Check for case of incorrect string terminator, but single quote
993 -- is not considered incorrect if the opening terminator misused
994 -- a single quote (error message already given).
997 and then Source
(Scan_Ptr
- 1) = '''
1001 ("incorrect string terminator character", Scan_Ptr
- 1);
1005 -- Backup over semicolon or right-paren/semicolon sequence
1007 if Source
(Scan_Ptr
- 1) = ';' then
1008 Scan_Ptr
:= Scan_Ptr
- 1;
1009 Unstore_String_Char
;
1011 if Source
(Scan_Ptr
- 1) = ')' then
1012 Scan_Ptr
:= Scan_Ptr
- 1;
1013 Unstore_String_Char
;
1017 -- See if there is a comma in the string, if so, guess that
1018 -- the first comma terminates the string.
1021 while S
< Scan_Ptr
loop
1022 if Source
(S
) = ',' then
1023 while Scan_Ptr
> S
loop
1024 Scan_Ptr
:= Scan_Ptr
- 1;
1025 Unstore_String_Char
;
1034 -- Now we have adjusted the scan pointer, give message
1036 Error_Msg_S
-- CODEFIX
1037 ("missing string quote");
1038 end Error_Unterminated_String
;
1044 procedure Set_String
is
1045 Slen
: constant Int
:= Int
(Scan_Ptr
- Token_Ptr
- 2);
1051 -- Token_Name is currently set to Error_Name. The following
1052 -- section of code resets Token_Name to the proper Name_Op_xx
1053 -- value if the string is a valid operator symbol, otherwise it is
1054 -- left set to Error_Name.
1057 C1
:= Source
(Token_Ptr
+ 1);
1061 Token_Name
:= Name_Op_Eq
;
1064 Token_Name
:= Name_Op_Gt
;
1067 Token_Name
:= Name_Op_Lt
;
1070 Token_Name
:= Name_Op_Add
;
1073 Token_Name
:= Name_Op_Subtract
;
1076 Token_Name
:= Name_Op_Concat
;
1079 Token_Name
:= Name_Op_Multiply
;
1082 Token_Name
:= Name_Op_Divide
;
1089 C1
:= Source
(Token_Ptr
+ 1);
1090 C2
:= Source
(Token_Ptr
+ 2);
1092 if C1
= '*' and then C2
= '*' then
1093 Token_Name
:= Name_Op_Expon
;
1098 Token_Name
:= Name_Op_Ne
;
1100 Token_Name
:= Name_Op_Le
;
1102 Token_Name
:= Name_Op_Ge
;
1105 elsif (C1
= 'O' or else C1
= 'o') and then -- OR
1106 (C2
= 'R' or else C2
= 'r')
1108 Token_Name
:= Name_Op_Or
;
1112 C1
:= Source
(Token_Ptr
+ 1);
1113 C2
:= Source
(Token_Ptr
+ 2);
1114 C3
:= Source
(Token_Ptr
+ 3);
1116 if (C1
= 'A' or else C1
= 'a') and then -- AND
1117 (C2
= 'N' or else C2
= 'n') and then
1118 (C3
= 'D' or else C3
= 'd')
1120 Token_Name
:= Name_Op_And
;
1122 elsif (C1
= 'A' or else C1
= 'a') and then -- ABS
1123 (C2
= 'B' or else C2
= 'b') and then
1124 (C3
= 'S' or else C3
= 's')
1126 Token_Name
:= Name_Op_Abs
;
1128 elsif (C1
= 'M' or else C1
= 'm') and then -- MOD
1129 (C2
= 'O' or else C2
= 'o') and then
1130 (C3
= 'D' or else C3
= 'd')
1132 Token_Name
:= Name_Op_Mod
;
1134 elsif (C1
= 'N' or else C1
= 'n') and then -- NOT
1135 (C2
= 'O' or else C2
= 'o') and then
1136 (C3
= 'T' or else C3
= 't')
1138 Token_Name
:= Name_Op_Not
;
1140 elsif (C1
= 'R' or else C1
= 'r') and then -- REM
1141 (C2
= 'E' or else C2
= 'e') and then
1142 (C3
= 'M' or else C3
= 'm')
1144 Token_Name
:= Name_Op_Rem
;
1146 elsif (C1
= 'X' or else C1
= 'x') and then -- XOR
1147 (C2
= 'O' or else C2
= 'o') and then
1148 (C3
= 'R' or else C3
= 'r')
1150 Token_Name
:= Name_Op_Xor
;
1155 -- If it is an operator symbol, then Token_Name is set. If it is
1156 -- some other string value, then Token_Name still contains
1159 if Token_Name
= Error_Name
then
1160 Token
:= Tok_String_Literal
;
1163 Token
:= Tok_Operator_Symbol
;
1167 -- Start of processing for Slit
1170 -- On entry, Scan_Ptr points to the opening character of the string
1171 -- which is either a percent, double quote, or apostrophe (single
1172 -- quote). The latter case is an error detected by the character
1175 String_Start
:= Scan_Ptr
;
1177 Delimiter
:= Source
(Scan_Ptr
);
1178 Accumulate_Checksum
(Delimiter
);
1181 Wide_Character_Found
:= False;
1182 Wide_Wide_Character_Found
:= False;
1183 Scan_Ptr
:= Scan_Ptr
+ 1;
1185 -- Loop to scan out characters of string literal
1188 C
:= Source
(Scan_Ptr
);
1190 if C
= Delimiter
then
1191 Accumulate_Checksum
(C
);
1192 Scan_Ptr
:= Scan_Ptr
+ 1;
1193 exit when Source
(Scan_Ptr
) /= Delimiter
;
1194 Code
:= Get_Char_Code
(C
);
1195 Accumulate_Checksum
(C
);
1196 Scan_Ptr
:= Scan_Ptr
+ 1;
1199 if C
= '"' and then Delimiter
= '%' then
1201 ("quote not allowed in percent delimited string");
1202 Code
:= Get_Char_Code
(C
);
1203 Scan_Ptr
:= Scan_Ptr
+ 1;
1205 elsif Start_Of_Wide_Character
then
1207 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
1210 Error_Illegal_Wide_Character
;
1211 Code
:= Get_Char_Code
(' ');
1214 Accumulate_Checksum
(Code
);
1216 -- In Ada 95 mode we allow any wide characters in a string
1217 -- but in Ada 2005, the set of characters allowed has been
1218 -- restricted to graphic characters.
1220 if Ada_Version
>= Ada_2005
1221 and then Is_UTF_32_Non_Graphic
(UTF_32
(Code
))
1224 ("(Ada 2005) non-graphic character not permitted " &
1225 "in string literal", Wptr
);
1229 Accumulate_Checksum
(C
);
1231 if C
not in Graphic_Character
then
1232 if C
in Line_Terminator
then
1233 Error_Unterminated_String
;
1236 elsif C
in Upper_Half_Character
then
1237 if Ada_Version
= Ada_83
then
1238 Error_Bad_String_Char
;
1242 Error_Bad_String_Char
;
1246 Code
:= Get_Char_Code
(C
);
1247 Scan_Ptr
:= Scan_Ptr
+ 1;
1251 Store_String_Char
(Code
);
1253 if not In_Character_Range
(Code
) then
1254 if In_Wide_Character_Range
(Code
) then
1255 Wide_Character_Found
:= True;
1257 Wide_Wide_Character_Found
:= True;
1262 String_Literal_Id
:= End_String
;
1267 ----------------------------------
1268 -- Skip_Other_Format_Characters --
1269 ----------------------------------
1271 procedure Skip_Other_Format_Characters
is
1277 while Start_Of_Wide_Character
loop
1279 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
1281 if not Is_UTF_32_Other
(UTF_32
(Code
)) then
1286 end Skip_Other_Format_Characters
;
1288 -----------------------------
1289 -- Start_Of_Wide_Character --
1290 -----------------------------
1292 function Start_Of_Wide_Character
return Boolean is
1293 C
: constant Character := Source
(Scan_Ptr
);
1296 -- ESC encoding method with ESC present
1299 and then Wide_Character_Encoding_Method
in WC_ESC_Encoding_Method
1303 -- Upper half character with upper half encoding
1305 elsif C
in Upper_Half_Character
and then Upper_Half_Encoding
then
1308 -- Brackets encoding
1311 and then Source
(Scan_Ptr
+ 1) = '"'
1312 and then Identifier_Char
(Source
(Scan_Ptr
+ 2))
1316 -- Not the start of a wide character
1321 end Start_Of_Wide_Character
;
1323 -- Start of processing for Scan
1326 Prev_Token
:= Token
;
1327 Prev_Token_Ptr
:= Token_Ptr
;
1328 Token_Name
:= Error_Name
;
1330 -- The following loop runs more than once only if a format effector
1331 -- (tab, vertical tab, form feed, line feed, carriage return) is
1332 -- encountered and skipped, or some error situation, such as an
1333 -- illegal character, is encountered.
1335 <<Scan_Next_Character
>>
1338 -- Skip past blanks, loop is opened up for speed
1340 while Source
(Scan_Ptr
) = ' ' loop
1341 if Source
(Scan_Ptr
+ 1) /= ' ' then
1342 Scan_Ptr
:= Scan_Ptr
+ 1;
1346 if Source
(Scan_Ptr
+ 2) /= ' ' then
1347 Scan_Ptr
:= Scan_Ptr
+ 2;
1351 if Source
(Scan_Ptr
+ 3) /= ' ' then
1352 Scan_Ptr
:= Scan_Ptr
+ 3;
1356 if Source
(Scan_Ptr
+ 4) /= ' ' then
1357 Scan_Ptr
:= Scan_Ptr
+ 4;
1361 if Source
(Scan_Ptr
+ 5) /= ' ' then
1362 Scan_Ptr
:= Scan_Ptr
+ 5;
1366 if Source
(Scan_Ptr
+ 6) /= ' ' then
1367 Scan_Ptr
:= Scan_Ptr
+ 6;
1371 if Source
(Scan_Ptr
+ 7) /= ' ' then
1372 Scan_Ptr
:= Scan_Ptr
+ 7;
1376 Scan_Ptr
:= Scan_Ptr
+ 8;
1379 -- We are now at a non-blank character, which is the first character
1380 -- of the token we will scan, and hence the value of Token_Ptr.
1382 Token_Ptr
:= Scan_Ptr
;
1384 -- Here begins the main case statement which transfers control on the
1385 -- basis of the non-blank character we have encountered.
1387 case Source
(Scan_Ptr
) is
1389 -- Line terminator characters
1391 when CR | LF | FF | VT
=>
1392 goto Scan_Line_Terminator
;
1394 -- Horizontal tab, just skip past it
1401 Scan_Ptr
:= Scan_Ptr
+ 1;
1403 -- End of file character, treated as an end of file only if it is
1404 -- the last character in the buffer, otherwise it is ignored.
1407 if Scan_Ptr
= Source_Last
(Current_Source_File
) then
1417 Scan_Ptr
:= Scan_Ptr
+ 1;
1423 Accumulate_Checksum
('&');
1425 if Source
(Scan_Ptr
+ 1) = '&' then
1426 Error_Msg_S
-- CODEFIX
1427 ("'&'& should be `AND THEN`");
1428 Scan_Ptr
:= Scan_Ptr
+ 2;
1433 Scan_Ptr
:= Scan_Ptr
+ 1;
1434 Token
:= Tok_Ampersand
;
1438 -- Asterisk (can be multiplication operator or double asterisk which
1439 -- is the exponentiation compound delimiter).
1442 Accumulate_Checksum
('*');
1444 if Source
(Scan_Ptr
+ 1) = '*' then
1445 Accumulate_Checksum
('*');
1446 Scan_Ptr
:= Scan_Ptr
+ 2;
1447 Token
:= Tok_Double_Asterisk
;
1451 Scan_Ptr
:= Scan_Ptr
+ 1;
1452 Token
:= Tok_Asterisk
;
1456 -- Colon, which can either be an isolated colon, or part of an
1457 -- assignment compound delimiter.
1460 Accumulate_Checksum
(':');
1462 if Double_Char_Token
('=') then
1463 Token
:= Tok_Colon_Equal
;
1466 Style
.Check_Colon_Equal
;
1471 elsif Source
(Scan_Ptr
+ 1) = '-'
1472 and then Source
(Scan_Ptr
+ 2) /= '-'
1474 Token
:= Tok_Colon_Equal
;
1475 Error_Msg
-- CODEFIX
1476 (":- should be :=", Scan_Ptr
);
1477 Scan_Ptr
:= Scan_Ptr
+ 2;
1481 Scan_Ptr
:= Scan_Ptr
+ 1;
1494 Accumulate_Checksum
('(');
1495 Scan_Ptr
:= Scan_Ptr
+ 1;
1496 Token
:= Tok_Left_Paren
;
1499 Style
.Check_Left_Paren
;
1507 if Source
(Scan_Ptr
+ 1) = '"' then
1508 goto Scan_Wide_Character
;
1511 Error_Msg_S
("illegal character, replaced by ""(""");
1512 Scan_Ptr
:= Scan_Ptr
+ 1;
1513 Token
:= Tok_Left_Paren
;
1520 Error_Msg_S
("illegal character, replaced by ""(""");
1521 Scan_Ptr
:= Scan_Ptr
+ 1;
1522 Token
:= Tok_Left_Paren
;
1528 Accumulate_Checksum
(',');
1529 Scan_Ptr
:= Scan_Ptr
+ 1;
1538 -- Dot, which is either an isolated period, or part of a double dot
1539 -- compound delimiter sequence. We also check for the case of a
1540 -- digit following the period, to give a better error message.
1543 Accumulate_Checksum
('.');
1545 if Double_Char_Token
('.') then
1546 Token
:= Tok_Dot_Dot
;
1549 Style
.Check_Dot_Dot
;
1554 elsif Source
(Scan_Ptr
+ 1) in '0' .. '9' then
1555 Error_Msg_S
("numeric literal cannot start with point");
1556 Scan_Ptr
:= Scan_Ptr
+ 1;
1559 Scan_Ptr
:= Scan_Ptr
+ 1;
1564 -- Equal, which can either be an equality operator, or part of the
1565 -- arrow (=>) compound delimiter.
1568 Accumulate_Checksum
('=');
1570 if Double_Char_Token
('>') then
1574 Style
.Check_Arrow
(Inside_Depends
);
1579 elsif Source
(Scan_Ptr
+ 1) = '=' then
1580 Error_Msg_S
-- CODEFIX
1582 Scan_Ptr
:= Scan_Ptr
+ 1;
1585 Scan_Ptr
:= Scan_Ptr
+ 1;
1589 -- Greater than, which can be a greater than operator, greater than
1590 -- or equal operator, or first character of a right label bracket.
1593 Accumulate_Checksum
('>');
1595 if Double_Char_Token
('=') then
1596 Token
:= Tok_Greater_Equal
;
1599 elsif Double_Char_Token
('>') then
1600 Token
:= Tok_Greater_Greater
;
1604 Scan_Ptr
:= Scan_Ptr
+ 1;
1605 Token
:= Tok_Greater
;
1609 -- Less than, which can be a less than operator, less than or equal
1610 -- operator, or the first character of a left label bracket, or the
1611 -- first character of a box (<>) compound delimiter.
1614 Accumulate_Checksum
('<');
1616 if Double_Char_Token
('=') then
1617 Token
:= Tok_Less_Equal
;
1620 elsif Double_Char_Token
('>') then
1629 elsif Double_Char_Token
('<') then
1630 Token
:= Tok_Less_Less
;
1634 Scan_Ptr
:= Scan_Ptr
+ 1;
1639 -- Minus, which is either a subtraction operator, or the first
1640 -- character of double minus starting a comment
1642 when '-' => Minus_Case
: begin
1643 if Source
(Scan_Ptr
+ 1) = '>' then
1644 Error_Msg_S
("invalid token");
1645 Scan_Ptr
:= Scan_Ptr
+ 2;
1649 elsif Source
(Scan_Ptr
+ 1) /= '-' then
1650 Accumulate_Checksum
('-');
1651 Scan_Ptr
:= Scan_Ptr
+ 1;
1657 else -- Source (Scan_Ptr + 1) = '-' then
1659 Style
.Check_Comment
;
1662 Scan_Ptr
:= Scan_Ptr
+ 2;
1664 -- If we are in preprocessor mode with Replace_In_Comments set,
1665 -- then we return the "--" as a token on its own.
1667 if Replace_In_Comments
then
1668 Token
:= Tok_Comment
;
1672 -- Otherwise scan out the comment
1674 Start_Of_Comment
:= Scan_Ptr
;
1676 -- Loop to scan comment (this loop runs more than once only if
1677 -- a horizontal tab or other non-graphic character is scanned)
1680 -- Scan to non graphic character (opened up for speed)
1682 -- Note that we just eat left brackets, which means that
1683 -- bracket notation cannot be used for end of line
1684 -- characters in comments. This seems a reasonable choice,
1685 -- since no one would ever use brackets notation in a real
1686 -- program in this situation, and if we allow brackets
1687 -- notation, we forbid some valid comments which contain a
1688 -- brackets sequence that happens to match an end of line
1692 exit when Source
(Scan_Ptr
) not in Graphic_Character
;
1693 Scan_Ptr
:= Scan_Ptr
+ 1;
1694 exit when Source
(Scan_Ptr
) not in Graphic_Character
;
1695 Scan_Ptr
:= Scan_Ptr
+ 1;
1696 exit when Source
(Scan_Ptr
) not in Graphic_Character
;
1697 Scan_Ptr
:= Scan_Ptr
+ 1;
1698 exit when Source
(Scan_Ptr
) not in Graphic_Character
;
1699 Scan_Ptr
:= Scan_Ptr
+ 1;
1700 exit when Source
(Scan_Ptr
) not in Graphic_Character
;
1701 Scan_Ptr
:= Scan_Ptr
+ 1;
1704 -- Keep going if horizontal tab
1706 if Source
(Scan_Ptr
) = HT
then
1711 Scan_Ptr
:= Scan_Ptr
+ 1;
1713 -- Terminate scan of comment if line terminator
1715 elsif Source
(Scan_Ptr
) in Line_Terminator
then
1718 -- Terminate scan of comment if end of file encountered
1719 -- (embedded EOF character or real last character in file)
1721 elsif Source
(Scan_Ptr
) = EOF
then
1724 -- If we have a wide character, we have to scan it out,
1725 -- because it might be a legitimate line terminator
1727 elsif Start_Of_Wide_Character
then
1729 Wptr
: constant Source_Ptr
:= Scan_Ptr
;
1734 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
1736 -- If not well formed wide character, then just skip
1737 -- past it and ignore it.
1740 Scan_Ptr
:= Wptr
+ 1;
1742 -- If UTF_32 terminator, terminate comment scan
1744 elsif Is_UTF_32_Line_Terminator
(UTF_32
(Code
)) then
1750 -- Keep going if character in 80-FF range, or is ESC. These
1751 -- characters are allowed in comments by RM-2.1(1), 2.7(2).
1752 -- They are allowed even in Ada 83 mode according to the
1753 -- approved AI. ESC was added to the AI in June 93.
1755 elsif Source
(Scan_Ptr
) in Upper_Half_Character
1756 or else Source
(Scan_Ptr
) = ESC
1758 Scan_Ptr
:= Scan_Ptr
+ 1;
1760 -- Otherwise we have an illegal comment character
1763 Error_Illegal_Character
;
1767 -- Note that, except when comments are tokens, we do NOT
1768 -- execute a return here, instead we fall through to reexecute
1769 -- the scan loop to look for a token.
1771 if Comment_Is_Token
then
1772 Name_Len
:= Integer (Scan_Ptr
- Start_Of_Comment
);
1773 Name_Buffer
(1 .. Name_Len
) :=
1774 String (Source
(Start_Of_Comment
.. Scan_Ptr
- 1));
1775 Comment_Id
:= Name_Find
;
1776 Token
:= Tok_Comment
;
1780 -- If the SPARK restriction is set for this unit, then generate
1781 -- a token Tok_SPARK_Hide for a SPARK HIDE directive.
1783 if Restriction_Check_Required
(SPARK_05
)
1784 and then Source
(Start_Of_Comment
) = '#'
1787 Scan_SPARK_Ptr
: Source_Ptr
;
1790 Scan_SPARK_Ptr
:= Start_Of_Comment
+ 1;
1794 while Source
(Scan_SPARK_Ptr
) = ' '
1795 or else Source
(Scan_SPARK_Ptr
) = HT
1797 Scan_SPARK_Ptr
:= Scan_SPARK_Ptr
+ 1;
1800 -- Recognize HIDE directive. SPARK input cannot be
1801 -- encoded as wide characters, so only deal with
1802 -- lower/upper case.
1804 if (Source
(Scan_SPARK_Ptr
) = 'h'
1805 or else Source
(Scan_SPARK_Ptr
) = 'H')
1806 and then (Source
(Scan_SPARK_Ptr
+ 1) = 'i'
1807 or else Source
(Scan_SPARK_Ptr
+ 1) = 'I')
1808 and then (Source
(Scan_SPARK_Ptr
+ 2) = 'd'
1809 or else Source
(Scan_SPARK_Ptr
+ 2) = 'D')
1810 and then (Source
(Scan_SPARK_Ptr
+ 3) = 'e'
1811 or else Source
(Scan_SPARK_Ptr
+ 3) = 'E')
1812 and then (Source
(Scan_SPARK_Ptr
+ 4) = ' '
1813 or else Source
(Scan_SPARK_Ptr
+ 4) = HT
)
1815 Token
:= Tok_SPARK_Hide
;
1823 -- Double quote or percent starting a string literal
1830 -- Apostrophe. This can either be the start of a character literal,
1831 -- or an isolated apostrophe used in a qualified expression or an
1832 -- attribute. We treat it as a character literal if it does not
1833 -- follow a right parenthesis, identifier, the keyword ALL or
1834 -- a literal. This means that we correctly treat constructs like:
1836 -- A := CHARACTER'('A');
1838 -- Note that RM-2.2(7) does not require a separator between
1839 -- "CHARACTER" and "'" in the above.
1841 when ''' => Char_Literal_Case
: declare
1846 Accumulate_Checksum
(''');
1847 Scan_Ptr
:= Scan_Ptr
+ 1;
1849 -- Here is where we make the test to distinguish the cases. Treat
1850 -- as apostrophe if previous token is an identifier, right paren
1851 -- or the reserved word "all" (latter case as in A.all'Address)
1852 -- (or the reserved word "project" in project files). Also treat
1853 -- it as apostrophe after a literal (this catches some legitimate
1854 -- cases, like A."abs"'Address, and also gives better error
1855 -- behavior for impossible cases like 123'xxx).
1857 if Prev_Token
= Tok_Identifier
1858 or else Prev_Token
= Tok_Right_Paren
1859 or else Prev_Token
= Tok_All
1860 or else Prev_Token
= Tok_Project
1861 or else Prev_Token
in Token_Class_Literal
1863 Token
:= Tok_Apostrophe
;
1866 Style
.Check_Apostrophe
;
1871 -- Otherwise the apostrophe starts a character literal
1874 -- Case of wide character literal
1876 if Start_Of_Wide_Character
then
1878 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
1879 Accumulate_Checksum
(Code
);
1882 Error_Illegal_Wide_Character
;
1883 Code
:= Character'Pos (' ');
1885 -- In Ada 95 mode we allow any wide character in a character
1886 -- literal, but in Ada 2005, the set of characters allowed
1887 -- is restricted to graphic characters.
1889 elsif Ada_Version
>= Ada_2005
1890 and then Is_UTF_32_Non_Graphic
(UTF_32
(Code
))
1892 Error_Msg
-- CODEFIX????
1893 ("(Ada 2005) non-graphic character not permitted " &
1894 "in character literal", Wptr
);
1897 if Source
(Scan_Ptr
) /= ''' then
1898 Error_Msg_S
("missing apostrophe");
1900 Scan_Ptr
:= Scan_Ptr
+ 1;
1903 -- If we do not find a closing quote in the expected place then
1904 -- assume that we have a misguided attempt at a string literal.
1906 -- However, if previous token is RANGE, then we return an
1907 -- apostrophe instead since this gives better error recovery
1909 elsif Source
(Scan_Ptr
+ 1) /= ''' then
1910 if Prev_Token
= Tok_Range
then
1911 Token
:= Tok_Apostrophe
;
1915 Scan_Ptr
:= Scan_Ptr
- 1;
1917 ("strings are delimited by double quote character");
1923 -- Otherwise we have a (non-wide) character literal
1926 Accumulate_Checksum
(Source
(Scan_Ptr
));
1928 if Source
(Scan_Ptr
) not in Graphic_Character
then
1929 if Source
(Scan_Ptr
) in Upper_Half_Character
then
1930 if Ada_Version
= Ada_83
then
1931 Error_Illegal_Character
;
1935 Error_Illegal_Character
;
1939 Code
:= Get_Char_Code
(Source
(Scan_Ptr
));
1940 Scan_Ptr
:= Scan_Ptr
+ 2;
1943 -- Fall through here with Scan_Ptr updated past the closing
1944 -- quote, and Code set to the Char_Code value for the literal
1946 Accumulate_Checksum
(''');
1947 Token
:= Tok_Char_Literal
;
1948 Set_Character_Literal_Name
(Code
);
1949 Token_Name
:= Name_Find
;
1950 Character_Code
:= Code
;
1954 end Char_Literal_Case
;
1956 -- Right parenthesis
1959 Accumulate_Checksum
(')');
1960 Scan_Ptr
:= Scan_Ptr
+ 1;
1961 Token
:= Tok_Right_Paren
;
1964 Style
.Check_Right_Paren
;
1969 -- Right bracket or right brace, treated as right paren
1972 Error_Msg_S
("illegal character, replaced by "")""");
1973 Scan_Ptr
:= Scan_Ptr
+ 1;
1974 Token
:= Tok_Right_Paren
;
1977 -- Slash (can be division operator or first character of not equal)
1980 Accumulate_Checksum
('/');
1982 if Double_Char_Token
('=') then
1983 Token
:= Tok_Not_Equal
;
1986 Scan_Ptr
:= Scan_Ptr
+ 1;
1994 Accumulate_Checksum
(';');
1995 Scan_Ptr
:= Scan_Ptr
+ 1;
1996 Token
:= Tok_Semicolon
;
1999 Style
.Check_Semicolon
;
2006 when '|' => Vertical_Bar_Case
: begin
2007 Accumulate_Checksum
('|');
2009 -- Special check for || to give nice message
2011 if Source
(Scan_Ptr
+ 1) = '|' then
2012 Error_Msg_S
-- CODEFIX
2013 ("""'|'|"" should be `OR ELSE`");
2014 Scan_Ptr
:= Scan_Ptr
+ 2;
2019 Scan_Ptr
:= Scan_Ptr
+ 1;
2020 Token
:= Tok_Vertical_Bar
;
2023 Style
.Check_Vertical_Bar
;
2029 end Vertical_Bar_Case
;
2031 -- Exclamation, replacement character for vertical bar
2033 when '!' => Exclamation_Case
: begin
2034 Accumulate_Checksum
('!');
2036 if Source
(Scan_Ptr
+ 1) = '=' then
2037 Error_Msg_S
-- CODEFIX
2038 ("'!= should be /=");
2039 Scan_Ptr
:= Scan_Ptr
+ 2;
2040 Token
:= Tok_Not_Equal
;
2044 Scan_Ptr
:= Scan_Ptr
+ 1;
2045 Token
:= Tok_Vertical_Bar
;
2049 end Exclamation_Case
;
2053 when '+' => Plus_Case
: begin
2054 Accumulate_Checksum
('+');
2055 Scan_Ptr
:= Scan_Ptr
+ 1;
2060 -- Digits starting a numeric literal
2064 -- First a bit of a scan ahead to see if we have a case of an
2065 -- identifier starting with a digit (remembering exponent case).
2068 C
: constant Character := Source
(Scan_Ptr
+ 1);
2071 -- OK literal if digit followed by digit or underscore
2073 if C
in '0' .. '9' or else C
= '_' then
2076 -- OK literal if digit not followed by identifier char
2078 elsif not Identifier_Char
(C
) then
2081 -- OK literal if digit followed by e/E followed by digit/sign.
2082 -- We also allow underscore after the E, which is an error, but
2083 -- better handled by Nlit than deciding this is an identifier.
2085 elsif (C
= 'e' or else C
= 'E')
2086 and then (Source
(Scan_Ptr
+ 2) in '0' .. '9'
2087 or else Source
(Scan_Ptr
+ 2) = '+'
2088 or else Source
(Scan_Ptr
+ 2) = '-'
2089 or else Source
(Scan_Ptr
+ 2) = '_')
2093 -- Here we have what really looks like an identifier that
2094 -- starts with a digit, so give error msg.
2097 Error_Msg_S
("identifier may not start with digit");
2099 Underline_Found
:= False;
2100 Name_Buffer
(1) := Source
(Scan_Ptr
);
2101 Accumulate_Checksum
(Name_Buffer
(1));
2102 Scan_Ptr
:= Scan_Ptr
+ 1;
2103 goto Scan_Identifier
;
2107 -- Here we have an OK integer literal
2111 -- Check for proper delimiter, ignoring other format characters
2113 Skip_Other_Format_Characters
;
2115 if Identifier_Char
(Source
(Scan_Ptr
)) then
2117 ("delimiter required between literal and identifier");
2123 -- Lower case letters
2127 Underline_Found
:= False;
2128 Name_Buffer
(1) := Source
(Scan_Ptr
);
2129 Accumulate_Checksum
(Name_Buffer
(1));
2130 Scan_Ptr
:= Scan_Ptr
+ 1;
2131 goto Scan_Identifier
;
2133 -- Upper case letters
2137 Underline_Found
:= False;
2139 Character'Val (Character'Pos (Source
(Scan_Ptr
)) + 32);
2140 Accumulate_Checksum
(Name_Buffer
(1));
2141 Scan_Ptr
:= Scan_Ptr
+ 1;
2142 goto Scan_Identifier
;
2144 -- Underline character
2147 if Special_Characters
('_') then
2148 Token_Ptr
:= Scan_Ptr
;
2149 Scan_Ptr
:= Scan_Ptr
+ 1;
2150 Token
:= Tok_Special
;
2151 Special_Character
:= '_';
2155 Error_Msg_S
("identifier cannot start with underline");
2157 Name_Buffer
(1) := '_';
2158 Scan_Ptr
:= Scan_Ptr
+ 1;
2159 Underline_Found
:= False;
2160 goto Scan_Identifier
;
2162 -- Space (not possible, because we scanned past blanks)
2165 raise Program_Error
;
2167 -- Characters in top half of ASCII 8-bit chart
2169 when Upper_Half_Character
=>
2171 -- Wide character case
2173 if Upper_Half_Encoding
then
2174 goto Scan_Wide_Character
;
2176 -- Otherwise we have OK Latin-1 character
2179 -- Upper half characters may possibly be identifier letters
2180 -- but can never be digits, so Identifier_Char can be used to
2181 -- test for a valid start of identifier character.
2183 if Identifier_Char
(Source
(Scan_Ptr
)) then
2185 Underline_Found
:= False;
2186 goto Scan_Identifier
;
2188 Error_Illegal_Character
;
2194 -- ESC character, possible start of identifier if wide characters
2195 -- using ESC encoding are allowed in identifiers, which we can
2196 -- tell by looking at the Identifier_Char flag for ESC, which is
2197 -- only true if these conditions are met. In Ada 2005 mode, may
2198 -- also be valid UTF_32 space or line terminator character.
2200 if Identifier_Char
(ESC
) then
2202 goto Scan_Wide_Character
;
2204 Error_Illegal_Character
;
2207 -- Invalid control characters
2209 when NUL | SOH | STX | ETX | EOT | ENQ | ACK | BEL | BS | ASCII
.SO |
2210 SI | DLE | DC1 | DC2 | DC3 | DC4 | NAK | SYN | ETB | CAN |
2211 EM | FS | GS | RS | US | DEL
2213 Error_Illegal_Character
;
2215 -- Invalid graphic characters
2217 when '#' |
'$' |
'?' |
'@' |
'`' |
'\' |
'^' |
'~' =>
2219 -- If Set_Special_Character has been called for this character,
2220 -- set Scans.Special_Character and return a Special token.
2222 if Special_Characters
(Source
(Scan_Ptr
)) then
2223 Token_Ptr
:= Scan_Ptr
;
2224 Token
:= Tok_Special
;
2225 Special_Character
:= Source
(Scan_Ptr
);
2226 Scan_Ptr
:= Scan_Ptr
+ 1;
2229 -- Check for something looking like a preprocessor directive
2231 elsif Source
(Scan_Ptr
) = '#'
2232 and then (Source
(Scan_Ptr
+ 1 .. Scan_Ptr
+ 2) = "if"
2234 Source
(Scan_Ptr
+ 1 .. Scan_Ptr
+ 5) = "elsif"
2236 Source
(Scan_Ptr
+ 1 .. Scan_Ptr
+ 4) = "else"
2238 Source
(Scan_Ptr
+ 1 .. Scan_Ptr
+ 3) = "end")
2241 ("preprocessor directive ignored, preprocessor not active");
2243 -- Skip to end of line
2246 if Source
(Scan_Ptr
) in Graphic_Character
2248 Source
(Scan_Ptr
) = HT
2250 Scan_Ptr
:= Scan_Ptr
+ 1;
2252 -- Done if line terminator or EOF
2254 elsif Source
(Scan_Ptr
) in Line_Terminator
2256 Source
(Scan_Ptr
) = EOF
2260 -- If we have a wide character, we have to scan it out,
2261 -- because it might be a legitimate line terminator
2263 elsif Start_Of_Wide_Character
then
2265 Wptr
: constant Source_Ptr
:= Scan_Ptr
;
2270 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
2272 -- If not well formed wide character, then just skip
2273 -- past it and ignore it.
2276 Scan_Ptr
:= Wptr
+ 1;
2278 -- If UTF_32 terminator, terminate comment scan
2280 elsif Is_UTF_32_Line_Terminator
(UTF_32
(Code
)) then
2286 -- Else keep going (don't worry about bad comment chars
2287 -- in this context, we just want to find the end of line.
2290 Scan_Ptr
:= Scan_Ptr
+ 1;
2294 -- Otherwise, this is an illegal character
2297 Error_Illegal_Character
;
2300 -- End switch on non-blank character
2304 -- End loop past format effectors. The exit from this loop is by
2305 -- executing a return statement following completion of token scan
2306 -- (control never falls out of this loop to the code which follows)
2310 -- Wide_Character scanning routine. On entry we have encountered the
2311 -- initial character of a wide character sequence.
2313 <<Scan_Wide_Character
>>
2322 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
2324 -- If bad wide character, signal error and continue scan
2327 Error_Illegal_Wide_Character
;
2328 goto Scan_Next_Character
;
2331 Cat
:= Get_Category
(UTF_32
(Code
));
2333 -- If OK letter, reset scan ptr and go scan identifier
2335 if Is_UTF_32_Letter
(Cat
) then
2338 Underline_Found
:= False;
2339 goto Scan_Identifier
;
2341 -- If OK wide space, ignore and keep scanning (we do not include
2342 -- any ignored spaces in checksum)
2344 elsif Is_UTF_32_Space
(Cat
) then
2345 goto Scan_Next_Character
;
2347 -- If other format character, ignore and keep scanning (again we
2348 -- do not include in the checksum) (this is for AI-0079).
2350 elsif Is_UTF_32_Other
(Cat
) then
2351 goto Scan_Next_Character
;
2353 -- If OK wide line terminator, terminate current line
2355 elsif Is_UTF_32_Line_Terminator
(UTF_32
(Code
)) then
2357 goto Scan_Line_Terminator
;
2359 -- Punctuation is an error (at start of identifier)
2361 elsif Is_UTF_32_Punctuation
(Cat
) then
2362 Error_Msg
("identifier cannot start with punctuation", Wptr
);
2365 Underline_Found
:= False;
2366 goto Scan_Identifier
;
2368 -- Mark character is an error (at start of identifier)
2370 elsif Is_UTF_32_Mark
(Cat
) then
2371 Error_Msg
("identifier cannot start with mark character", Wptr
);
2374 Underline_Found
:= False;
2375 goto Scan_Identifier
;
2377 -- Extended digit character is an error. Could be bad start of
2378 -- identifier or bad literal. Not worth doing too much to try to
2379 -- distinguish these cases, but we will do a little bit.
2381 elsif Is_UTF_32_Digit
(Cat
) then
2383 ("identifier cannot start with digit character", Wptr
);
2386 Underline_Found
:= False;
2387 goto Scan_Identifier
;
2389 -- All other wide characters are illegal here
2392 Error_Illegal_Wide_Character
;
2393 goto Scan_Next_Character
;
2397 -- Routine to scan line terminator. On entry Scan_Ptr points to a
2398 -- character which is one of FF,LR,CR,VT, or one of the wide characters
2399 -- that is treated as a line terminator.
2401 <<Scan_Line_Terminator
>>
2403 -- Check line too long
2407 -- Set Token_Ptr, if End_Of_Line is a token, for the case when it is
2410 if End_Of_Line_Is_Token
then
2411 Token_Ptr
:= Scan_Ptr
;
2418 Skip_Line_Terminators
(Scan_Ptr
, Physical
);
2420 -- If we are at start of physical line, update scan pointers to
2421 -- reflect the start of the new line.
2424 Current_Line_Start
:= Scan_Ptr
;
2425 Start_Column
:= Set_Start_Column
;
2426 First_Non_Blank_Location
:= Scan_Ptr
;
2428 -- If End_Of_Line is a token, we return it as it is a
2431 if End_Of_Line_Is_Token
then
2432 Token
:= Tok_End_Of_Line
;
2438 goto Scan_Next_Character
;
2440 -- Identifier scanning routine. On entry, some initial characters of
2441 -- the identifier may have already been stored in Name_Buffer. If so,
2442 -- Name_Len has the number of characters stored, otherwise Name_Len is
2443 -- set to zero on entry. Underline_Found is also set False on entry.
2447 -- This loop scans as fast as possible past lower half letters and
2448 -- digits, which we expect to be the most common characters.
2451 if Source
(Scan_Ptr
) in 'a' .. 'z'
2452 or else Source
(Scan_Ptr
) in '0' .. '9'
2454 Name_Buffer
(Name_Len
+ 1) := Source
(Scan_Ptr
);
2455 Accumulate_Checksum
(Source
(Scan_Ptr
));
2457 elsif Source
(Scan_Ptr
) in 'A' .. 'Z' then
2458 Name_Buffer
(Name_Len
+ 1) :=
2459 Character'Val (Character'Pos (Source
(Scan_Ptr
)) + 32);
2460 Accumulate_Checksum
(Name_Buffer
(Name_Len
+ 1));
2466 Underline_Found
:= False;
2467 Scan_Ptr
:= Scan_Ptr
+ 1;
2468 Name_Len
:= Name_Len
+ 1;
2471 -- If we fall through, then we have encountered either an underline
2472 -- character, or an extended identifier character (i.e. one from the
2473 -- upper half), or a wide character, or an identifier terminator. The
2474 -- initial test speeds us up in the most common case where we have
2475 -- an identifier terminator. Note that ESC is an identifier character
2476 -- only if a wide character encoding method that uses ESC encoding
2477 -- is active, so if we find an ESC character we know that we have a
2480 if Identifier_Char
(Source
(Scan_Ptr
))
2481 or else (Source
(Scan_Ptr
) in Upper_Half_Character
2482 and then Upper_Half_Encoding
)
2484 -- Case of underline
2486 if Source
(Scan_Ptr
) = '_' then
2487 Accumulate_Checksum
('_');
2489 if Underline_Found
then
2490 Error_No_Double_Underline
;
2492 Underline_Found
:= True;
2493 Name_Len
:= Name_Len
+ 1;
2494 Name_Buffer
(Name_Len
) := '_';
2497 Scan_Ptr
:= Scan_Ptr
+ 1;
2498 goto Scan_Identifier
;
2500 -- Upper half character
2502 elsif Source
(Scan_Ptr
) in Upper_Half_Character
2503 and then not Upper_Half_Encoding
2505 Accumulate_Checksum
(Source
(Scan_Ptr
));
2506 Store_Encoded_Character
2507 (Get_Char_Code
(Fold_Lower
(Source
(Scan_Ptr
))));
2508 Scan_Ptr
:= Scan_Ptr
+ 1;
2509 Underline_Found
:= False;
2510 goto Scan_Identifier
;
2512 -- Left bracket not followed by a quote terminates an identifier.
2513 -- This is an error, but we don't want to give a junk error msg
2514 -- about wide characters in this case.
2516 elsif Source
(Scan_Ptr
) = '['
2517 and then Source
(Scan_Ptr
+ 1) /= '"'
2521 -- We know we have a wide character encoding here (the current
2522 -- character is either ESC, left bracket, or an upper half
2523 -- character depending on the encoding method).
2526 -- Scan out the wide character and insert the appropriate
2527 -- encoding into the name table entry for the identifier.
2537 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
2539 -- If error, signal error
2542 Error_Illegal_Wide_Character
;
2544 -- If the character scanned is a normal identifier
2545 -- character, then we treat it that way.
2547 elsif In_Character_Range
(Code
)
2548 and then Identifier_Char
(Get_Character
(Code
))
2550 Chr
:= Get_Character
(Code
);
2551 Accumulate_Checksum
(Chr
);
2552 Store_Encoded_Character
2553 (Get_Char_Code
(Fold_Lower
(Chr
)));
2554 Underline_Found
:= False;
2556 -- Here if not a normal identifier character
2559 Cat
:= Get_Category
(UTF_32
(Code
));
2561 -- Wide character in Unicode category "Other, Format"
2562 -- is not accepted in an identifier. This is because it
2563 -- it is considered a security risk (AI-0091).
2565 -- However, it is OK for such a character to appear at
2566 -- the end of an identifier.
2568 if Is_UTF_32_Other
(Cat
) then
2569 if not Identifier_Char
(Source
(Scan_Ptr
)) then
2570 goto Scan_Identifier_Complete
;
2573 ("identifier cannot contain other_format "
2574 & "character", Wptr
);
2575 goto Scan_Identifier
;
2578 -- Wide character in category Separator,Space terminates
2580 elsif Is_UTF_32_Space
(Cat
) then
2581 goto Scan_Identifier_Complete
;
2584 -- Here if wide character is part of the identifier
2586 -- Make sure we are allowing wide characters in
2587 -- identifiers. Note that we allow wide character
2588 -- notation for an OK identifier character. This in
2589 -- particular allows bracket or other notation to be
2590 -- used for upper half letters.
2592 -- Wide characters are always allowed in Ada 2005
2594 if Identifier_Character_Set
/= 'w'
2595 and then Ada_Version
< Ada_2005
2598 ("wide character not allowed in identifier", Wptr
);
2601 -- If OK letter, store it folding to upper case. Note
2602 -- that we include the folded letter in the checksum.
2604 if Is_UTF_32_Letter
(Cat
) then
2606 Char_Code
(UTF_32_To_Upper_Case
(UTF_32
(Code
)));
2607 Accumulate_Checksum
(Code
);
2608 Store_Encoded_Character
(Code
);
2609 Underline_Found
:= False;
2611 -- If OK extended digit or mark, then store it
2613 elsif Is_UTF_32_Digit
(Cat
)
2614 or else Is_UTF_32_Mark
(Cat
)
2616 Accumulate_Checksum
(Code
);
2617 Store_Encoded_Character
(Code
);
2618 Underline_Found
:= False;
2620 -- Wide punctuation is also stored, but counts as an
2621 -- underline character for error checking purposes.
2623 elsif Is_UTF_32_Punctuation
(Cat
) then
2624 Accumulate_Checksum
(Code
);
2626 if Underline_Found
then
2628 Cend
: constant Source_Ptr
:= Scan_Ptr
;
2631 Error_No_Double_Underline
;
2636 Store_Encoded_Character
(Code
);
2637 Underline_Found
:= True;
2640 -- Any other wide character is not acceptable
2644 ("invalid wide character in identifier", Wptr
);
2648 goto Scan_Identifier
;
2653 -- Scan of identifier is complete. The identifier is stored in
2654 -- Name_Buffer, and Scan_Ptr points past the last character.
2656 <<Scan_Identifier_Complete
>>
2657 Token_Name
:= Name_Find
;
2659 -- Check for identifier ending with underline or punctuation char
2661 if Underline_Found
then
2662 Underline_Found
:= False;
2664 if Source
(Scan_Ptr
- 1) = '_' then
2666 ("identifier cannot end with underline", Scan_Ptr
- 1);
2669 ("identifier cannot end with punctuation character", Wptr
);
2673 -- We will assume it is an identifier, not a keyword, so that the
2674 -- checksum is independent of the Ada version.
2676 Token
:= Tok_Identifier
;
2678 -- Here is where we check if it was a keyword
2680 if Is_Keyword_Name
(Token_Name
) then
2681 if Opt
.Checksum_GNAT_6_3
then
2682 Token
:= Token_Type
'Val (Get_Name_Table_Byte
(Token_Name
));
2684 if Checksum_Accumulate_Token_Checksum
then
2685 if Checksum_GNAT_5_03
then
2686 Accumulate_Token_Checksum_GNAT_5_03
;
2688 Accumulate_Token_Checksum_GNAT_6_3
;
2693 Accumulate_Token_Checksum
;
2694 Token
:= Token_Type
'Val (Get_Name_Table_Byte
(Token_Name
));
2697 -- Keyword style checks
2701 -- Deal with possible style check for non-lower case keyword,
2702 -- but we don't treat ACCESS, DELTA, DIGITS, RANGE as keywords
2703 -- for this purpose if they appear as attribute designators.
2704 -- Actually we only check the first character for speed.
2706 -- Ada 2005 (AI-284): Do not apply the style check in case of
2707 -- "pragma Interface"
2709 -- Ada 2005 (AI-340): Do not apply the style check in case of
2712 if Source
(Token_Ptr
) <= 'Z'
2713 and then (Prev_Token
/= Tok_Apostrophe
2715 (Token
/= Tok_Access
and then
2716 Token
/= Tok_Delta
and then
2717 Token
/= Tok_Digits
and then
2718 Token
/= Tok_Mod
and then
2719 Token
/= Tok_Range
))
2720 and then (Token
/= Tok_Interface
2722 (Token
= Tok_Interface
2723 and then Prev_Token
/= Tok_Pragma
))
2725 Style
.Non_Lower_Case_Keyword
;
2728 -- Check THEN/ELSE style rules. These do not apply to AND THEN
2729 -- or OR ELSE, and do not apply in if expressions.
2731 if (Token
= Tok_Then
and then Prev_Token
/= Tok_And
)
2733 (Token
= Tok_Else
and then Prev_Token
/= Tok_Or
)
2735 if Inside_If_Expression
= 0 then
2736 Style
.Check_Separate_Stmt_Lines
;
2741 -- We must reset Token_Name since this is not an identifier and
2742 -- if we leave Token_Name set, the parser gets confused because
2743 -- it thinks it is dealing with an identifier instead of the
2744 -- corresponding keyword.
2746 Token_Name
:= No_Name
;
2749 -- It is an identifier after all
2752 if Checksum_Accumulate_Token_Checksum
then
2753 Accumulate_Token_Checksum
;
2761 --------------------------
2762 -- Set_Comment_As_Token --
2763 --------------------------
2765 procedure Set_Comment_As_Token
(Value
: Boolean) is
2767 Comment_Is_Token
:= Value
;
2768 end Set_Comment_As_Token
;
2770 ------------------------------
2771 -- Set_End_Of_Line_As_Token --
2772 ------------------------------
2774 procedure Set_End_Of_Line_As_Token
(Value
: Boolean) is
2776 End_Of_Line_Is_Token
:= Value
;
2777 end Set_End_Of_Line_As_Token
;
2779 ---------------------------
2780 -- Set_Special_Character --
2781 ---------------------------
2783 procedure Set_Special_Character
(C
: Character) is
2786 when '#' |
'$' |
'_' |
'?' |
'@' |
'`' |
'\' |
'^' |
'~' =>
2787 Special_Characters
(C
) := True;
2792 end Set_Special_Character
;
2794 ----------------------
2795 -- Set_Start_Column --
2796 ----------------------
2798 -- Note: it seems at first glance a little expensive to compute this value
2799 -- for every source line (since it is certainly not used for all source
2800 -- lines). On the other hand, it doesn't take much more work to skip past
2801 -- the initial white space on the line counting the columns than it would
2802 -- to scan past the white space using the standard scanning circuits.
2804 function Set_Start_Column
return Column_Number
is
2805 Start_Column
: Column_Number
:= 0;
2808 -- Outer loop scans past horizontal tab characters
2812 -- Inner loop scans past blanks as fast as possible, bumping Scan_Ptr
2813 -- past the blanks and adjusting Start_Column to account for them.
2816 if Source
(Scan_Ptr
) = ' ' then
2817 if Source
(Scan_Ptr
+ 1) = ' ' then
2818 if Source
(Scan_Ptr
+ 2) = ' ' then
2819 if Source
(Scan_Ptr
+ 3) = ' ' then
2820 if Source
(Scan_Ptr
+ 4) = ' ' then
2821 if Source
(Scan_Ptr
+ 5) = ' ' then
2822 if Source
(Scan_Ptr
+ 6) = ' ' then
2823 Scan_Ptr
:= Scan_Ptr
+ 7;
2824 Start_Column
:= Start_Column
+ 7;
2826 Scan_Ptr
:= Scan_Ptr
+ 6;
2827 Start_Column
:= Start_Column
+ 6;
2831 Scan_Ptr
:= Scan_Ptr
+ 5;
2832 Start_Column
:= Start_Column
+ 5;
2836 Scan_Ptr
:= Scan_Ptr
+ 4;
2837 Start_Column
:= Start_Column
+ 4;
2841 Scan_Ptr
:= Scan_Ptr
+ 3;
2842 Start_Column
:= Start_Column
+ 3;
2846 Scan_Ptr
:= Scan_Ptr
+ 2;
2847 Start_Column
:= Start_Column
+ 2;
2851 Scan_Ptr
:= Scan_Ptr
+ 1;
2852 Start_Column
:= Start_Column
+ 1;
2858 end loop Blanks_Loop
;
2860 -- Outer loop keeps going only if a horizontal tab follows
2862 if Source
(Scan_Ptr
) = HT
then
2867 Scan_Ptr
:= Scan_Ptr
+ 1;
2868 Start_Column
:= (Start_Column
/ 8) * 8 + 8;
2874 return Start_Column
;
2876 -- A constraint error can happen only if we have a compiler with checks on
2877 -- and a line with a ludicrous number of tabs or spaces at the start. In
2878 -- such a case, we really don't care if Start_Column is right or not.
2881 when Constraint_Error
=>
2882 return Start_Column
;
2883 end Set_Start_Column
;