1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2015, 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, ignore
1761 -- this error in relaxed semantics mode.
1764 if Relaxed_RM_Semantics
then
1765 Scan_Ptr
:= Scan_Ptr
+ 1;
1767 Error_Illegal_Character
;
1772 -- Note that, except when comments are tokens, we do NOT
1773 -- execute a return here, instead we fall through to reexecute
1774 -- the scan loop to look for a token.
1776 if Comment_Is_Token
then
1777 Name_Len
:= Integer (Scan_Ptr
- Start_Of_Comment
);
1778 Name_Buffer
(1 .. Name_Len
) :=
1779 String (Source
(Start_Of_Comment
.. Scan_Ptr
- 1));
1780 Comment_Id
:= Name_Find
;
1781 Token
:= Tok_Comment
;
1785 -- If the SPARK restriction is set for this unit, then generate
1786 -- a token Tok_SPARK_Hide for a SPARK HIDE directive.
1788 if Restriction_Check_Required
(SPARK_05
)
1789 and then Source
(Start_Of_Comment
) = '#'
1792 Scan_SPARK_Ptr
: Source_Ptr
;
1795 Scan_SPARK_Ptr
:= Start_Of_Comment
+ 1;
1799 while Source
(Scan_SPARK_Ptr
) = ' '
1800 or else Source
(Scan_SPARK_Ptr
) = HT
1802 Scan_SPARK_Ptr
:= Scan_SPARK_Ptr
+ 1;
1805 -- Recognize HIDE directive. SPARK input cannot be
1806 -- encoded as wide characters, so only deal with
1807 -- lower/upper case.
1809 if (Source
(Scan_SPARK_Ptr
) = 'h'
1810 or else Source
(Scan_SPARK_Ptr
) = 'H')
1811 and then (Source
(Scan_SPARK_Ptr
+ 1) = 'i'
1812 or else Source
(Scan_SPARK_Ptr
+ 1) = 'I')
1813 and then (Source
(Scan_SPARK_Ptr
+ 2) = 'd'
1814 or else Source
(Scan_SPARK_Ptr
+ 2) = 'D')
1815 and then (Source
(Scan_SPARK_Ptr
+ 3) = 'e'
1816 or else Source
(Scan_SPARK_Ptr
+ 3) = 'E')
1817 and then (Source
(Scan_SPARK_Ptr
+ 4) = ' '
1818 or else Source
(Scan_SPARK_Ptr
+ 4) = HT
)
1820 Token
:= Tok_SPARK_Hide
;
1828 -- Double quote or percent starting a string literal
1835 -- Apostrophe. This can either be the start of a character literal,
1836 -- or an isolated apostrophe used in a qualified expression or an
1837 -- attribute. In the following:
1839 -- A := CHARACTER'('A');
1841 -- the first apostrophe is treated as an isolated apostrophe, and the
1842 -- second one is treated as the start of the character literal 'A'.
1843 -- Note that RM-2.2(7) does not require a separator between "'" and
1844 -- "(" in the above, so we cannot use lookahead to distinguish the
1845 -- cases; we use look-back instead. Analysis of the grammar shows
1846 -- that some tokens can be followed by an apostrophe, and some by a
1847 -- character literal, but none by both. Some cannot be followed by
1848 -- either, so it doesn't matter what we do in those cases, except to
1849 -- get good error behavior.
1851 when ''' => Char_Literal_Case
: declare
1856 Accumulate_Checksum
(''');
1857 Scan_Ptr
:= Scan_Ptr
+ 1;
1859 -- Distinguish between apostrophe and character literal. It's an
1860 -- apostrophe if the previous token is one of the following.
1861 -- Reserved words are included for things like A.all'Address and
1862 -- T'Digits'Img. Strings literals are included for things like
1863 -- "abs"'Address. Other literals are included to give better error
1864 -- behavior for illegal cases like 123'Img.
1866 if Prev_Token
= Tok_Identifier
1867 or else Prev_Token
= Tok_Right_Paren
1868 or else Prev_Token
= Tok_All
1869 or else Prev_Token
= Tok_Delta
1870 or else Prev_Token
= Tok_Digits
1871 or else Prev_Token
= Tok_Project
1872 or else Prev_Token
in Token_Class_Literal
1874 Token
:= Tok_Apostrophe
;
1877 Style
.Check_Apostrophe
;
1882 -- Otherwise the apostrophe starts a character literal
1885 -- Case of wide character literal
1887 if Start_Of_Wide_Character
then
1889 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
1890 Accumulate_Checksum
(Code
);
1893 Error_Illegal_Wide_Character
;
1894 Code
:= Character'Pos (' ');
1896 -- In Ada 95 mode we allow any wide character in a character
1897 -- literal, but in Ada 2005, the set of characters allowed
1898 -- is restricted to graphic characters.
1900 elsif Ada_Version
>= Ada_2005
1901 and then Is_UTF_32_Non_Graphic
(UTF_32
(Code
))
1903 Error_Msg
-- CODEFIX????
1904 ("(Ada 2005) non-graphic character not permitted " &
1905 "in character literal", Wptr
);
1908 if Source
(Scan_Ptr
) /= ''' then
1909 Error_Msg_S
("missing apostrophe");
1911 Scan_Ptr
:= Scan_Ptr
+ 1;
1914 -- If we do not find a closing quote in the expected place then
1915 -- assume that we have a misguided attempt at a string literal.
1917 -- However, if previous token is RANGE, then we return an
1918 -- apostrophe instead since this gives better error recovery
1920 elsif Source
(Scan_Ptr
+ 1) /= ''' then
1921 if Prev_Token
= Tok_Range
then
1922 Token
:= Tok_Apostrophe
;
1926 Scan_Ptr
:= Scan_Ptr
- 1;
1928 ("strings are delimited by double quote character");
1934 -- Otherwise we have a (non-wide) character literal
1937 Accumulate_Checksum
(Source
(Scan_Ptr
));
1939 if Source
(Scan_Ptr
) not in Graphic_Character
then
1940 if Source
(Scan_Ptr
) in Upper_Half_Character
then
1941 if Ada_Version
= Ada_83
then
1942 Error_Illegal_Character
;
1946 Error_Illegal_Character
;
1950 Code
:= Get_Char_Code
(Source
(Scan_Ptr
));
1951 Scan_Ptr
:= Scan_Ptr
+ 2;
1954 -- Fall through here with Scan_Ptr updated past the closing
1955 -- quote, and Code set to the Char_Code value for the literal
1957 Accumulate_Checksum
(''');
1958 Token
:= Tok_Char_Literal
;
1959 Set_Character_Literal_Name
(Code
);
1960 Token_Name
:= Name_Find
;
1961 Character_Code
:= Code
;
1965 end Char_Literal_Case
;
1967 -- Right parenthesis
1970 Accumulate_Checksum
(')');
1971 Scan_Ptr
:= Scan_Ptr
+ 1;
1972 Token
:= Tok_Right_Paren
;
1975 Style
.Check_Right_Paren
;
1980 -- Right bracket or right brace, treated as right paren
1983 Error_Msg_S
("illegal character, replaced by "")""");
1984 Scan_Ptr
:= Scan_Ptr
+ 1;
1985 Token
:= Tok_Right_Paren
;
1988 -- Slash (can be division operator or first character of not equal)
1991 Accumulate_Checksum
('/');
1993 if Double_Char_Token
('=') then
1994 Token
:= Tok_Not_Equal
;
1997 Scan_Ptr
:= Scan_Ptr
+ 1;
2005 Accumulate_Checksum
(';');
2006 Scan_Ptr
:= Scan_Ptr
+ 1;
2007 Token
:= Tok_Semicolon
;
2010 Style
.Check_Semicolon
;
2017 when '|' => Vertical_Bar_Case
: begin
2018 Accumulate_Checksum
('|');
2020 -- Special check for || to give nice message
2022 if Source
(Scan_Ptr
+ 1) = '|' then
2023 Error_Msg_S
-- CODEFIX
2024 ("""'|'|"" should be `OR ELSE`");
2025 Scan_Ptr
:= Scan_Ptr
+ 2;
2030 Scan_Ptr
:= Scan_Ptr
+ 1;
2031 Token
:= Tok_Vertical_Bar
;
2034 Style
.Check_Vertical_Bar
;
2040 end Vertical_Bar_Case
;
2042 -- Exclamation, replacement character for vertical bar
2044 when '!' => Exclamation_Case
: begin
2045 Accumulate_Checksum
('!');
2047 if Source
(Scan_Ptr
+ 1) = '=' then
2048 Error_Msg_S
-- CODEFIX
2049 ("'!= should be /=");
2050 Scan_Ptr
:= Scan_Ptr
+ 2;
2051 Token
:= Tok_Not_Equal
;
2055 Scan_Ptr
:= Scan_Ptr
+ 1;
2056 Token
:= Tok_Vertical_Bar
;
2060 end Exclamation_Case
;
2064 when '+' => Plus_Case
: begin
2065 Accumulate_Checksum
('+');
2066 Scan_Ptr
:= Scan_Ptr
+ 1;
2071 -- Digits starting a numeric literal
2075 -- First a bit of a scan ahead to see if we have a case of an
2076 -- identifier starting with a digit (remembering exponent case).
2079 C
: constant Character := Source
(Scan_Ptr
+ 1);
2082 -- OK literal if digit followed by digit or underscore
2084 if C
in '0' .. '9' or else C
= '_' then
2087 -- OK literal if digit not followed by identifier char
2089 elsif not Identifier_Char
(C
) then
2092 -- OK literal if digit followed by e/E followed by digit/sign.
2093 -- We also allow underscore after the E, which is an error, but
2094 -- better handled by Nlit than deciding this is an identifier.
2096 elsif (C
= 'e' or else C
= 'E')
2097 and then (Source
(Scan_Ptr
+ 2) in '0' .. '9'
2098 or else Source
(Scan_Ptr
+ 2) = '+'
2099 or else Source
(Scan_Ptr
+ 2) = '-'
2100 or else Source
(Scan_Ptr
+ 2) = '_')
2104 -- Here we have what really looks like an identifier that
2105 -- starts with a digit, so give error msg.
2108 Error_Msg_S
("identifier may not start with digit");
2110 Underline_Found
:= False;
2111 Name_Buffer
(1) := Source
(Scan_Ptr
);
2112 Accumulate_Checksum
(Name_Buffer
(1));
2113 Scan_Ptr
:= Scan_Ptr
+ 1;
2114 goto Scan_Identifier
;
2118 -- Here we have an OK integer literal
2122 -- Check for proper delimiter, ignoring other format characters
2124 Skip_Other_Format_Characters
;
2126 if Identifier_Char
(Source
(Scan_Ptr
)) then
2128 ("delimiter required between literal and identifier");
2134 -- Lower case letters
2138 Underline_Found
:= False;
2139 Name_Buffer
(1) := Source
(Scan_Ptr
);
2140 Accumulate_Checksum
(Name_Buffer
(1));
2141 Scan_Ptr
:= Scan_Ptr
+ 1;
2142 goto Scan_Identifier
;
2144 -- Upper case letters
2148 Underline_Found
:= False;
2150 Character'Val (Character'Pos (Source
(Scan_Ptr
)) + 32);
2151 Accumulate_Checksum
(Name_Buffer
(1));
2152 Scan_Ptr
:= Scan_Ptr
+ 1;
2153 goto Scan_Identifier
;
2155 -- Underline character
2158 if Special_Characters
('_') then
2159 Token_Ptr
:= Scan_Ptr
;
2160 Scan_Ptr
:= Scan_Ptr
+ 1;
2161 Token
:= Tok_Special
;
2162 Special_Character
:= '_';
2166 Error_Msg_S
("identifier cannot start with underline");
2168 Name_Buffer
(1) := '_';
2169 Scan_Ptr
:= Scan_Ptr
+ 1;
2170 Underline_Found
:= False;
2171 goto Scan_Identifier
;
2173 -- Space (not possible, because we scanned past blanks)
2176 raise Program_Error
;
2178 -- Characters in top half of ASCII 8-bit chart
2180 when Upper_Half_Character
=>
2182 -- Wide character case
2184 if Upper_Half_Encoding
then
2185 goto Scan_Wide_Character
;
2187 -- Otherwise we have OK Latin-1 character
2190 -- Upper half characters may possibly be identifier letters
2191 -- but can never be digits, so Identifier_Char can be used to
2192 -- test for a valid start of identifier character.
2194 if Identifier_Char
(Source
(Scan_Ptr
)) then
2196 Underline_Found
:= False;
2197 goto Scan_Identifier
;
2199 Error_Illegal_Character
;
2205 -- ESC character, possible start of identifier if wide characters
2206 -- using ESC encoding are allowed in identifiers, which we can
2207 -- tell by looking at the Identifier_Char flag for ESC, which is
2208 -- only true if these conditions are met. In Ada 2005 mode, may
2209 -- also be valid UTF_32 space or line terminator character.
2211 if Identifier_Char
(ESC
) then
2213 goto Scan_Wide_Character
;
2215 Error_Illegal_Character
;
2218 -- Invalid control characters
2220 when NUL | SOH | STX | ETX | EOT | ENQ | ACK | BEL | BS | ASCII
.SO |
2221 SI | DLE | DC1 | DC2 | DC3 | DC4 | NAK | SYN | ETB | CAN |
2222 EM | FS | GS | RS | US | DEL
2224 Error_Illegal_Character
;
2226 -- Invalid graphic characters
2228 when '#' |
'$' |
'?' |
'@' |
'`' |
'\' |
'^' |
'~' =>
2230 -- If Set_Special_Character has been called for this character,
2231 -- set Scans.Special_Character and return a Special token.
2233 if Special_Characters
(Source
(Scan_Ptr
)) then
2234 Token_Ptr
:= Scan_Ptr
;
2235 Token
:= Tok_Special
;
2236 Special_Character
:= Source
(Scan_Ptr
);
2237 Scan_Ptr
:= Scan_Ptr
+ 1;
2240 -- Check for something looking like a preprocessor directive
2242 elsif Source
(Scan_Ptr
) = '#'
2243 and then (Source
(Scan_Ptr
+ 1 .. Scan_Ptr
+ 2) = "if"
2245 Source
(Scan_Ptr
+ 1 .. Scan_Ptr
+ 5) = "elsif"
2247 Source
(Scan_Ptr
+ 1 .. Scan_Ptr
+ 4) = "else"
2249 Source
(Scan_Ptr
+ 1 .. Scan_Ptr
+ 3) = "end")
2252 ("preprocessor directive ignored, preprocessor not active");
2254 -- Skip to end of line
2257 if Source
(Scan_Ptr
) in Graphic_Character
2259 Source
(Scan_Ptr
) = HT
2261 Scan_Ptr
:= Scan_Ptr
+ 1;
2263 -- Done if line terminator or EOF
2265 elsif Source
(Scan_Ptr
) in Line_Terminator
2267 Source
(Scan_Ptr
) = EOF
2271 -- If we have a wide character, we have to scan it out,
2272 -- because it might be a legitimate line terminator
2274 elsif Start_Of_Wide_Character
then
2276 Wptr
: constant Source_Ptr
:= Scan_Ptr
;
2281 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
2283 -- If not well formed wide character, then just skip
2284 -- past it and ignore it.
2287 Scan_Ptr
:= Wptr
+ 1;
2289 -- If UTF_32 terminator, terminate comment scan
2291 elsif Is_UTF_32_Line_Terminator
(UTF_32
(Code
)) then
2297 -- Else keep going (don't worry about bad comment chars
2298 -- in this context, we just want to find the end of line.
2301 Scan_Ptr
:= Scan_Ptr
+ 1;
2305 -- Otherwise, this is an illegal character
2308 Error_Illegal_Character
;
2311 -- End switch on non-blank character
2315 -- End loop past format effectors. The exit from this loop is by
2316 -- executing a return statement following completion of token scan
2317 -- (control never falls out of this loop to the code which follows)
2321 -- Wide_Character scanning routine. On entry we have encountered the
2322 -- initial character of a wide character sequence.
2324 <<Scan_Wide_Character
>>
2333 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
2335 -- If bad wide character, signal error and continue scan
2338 Error_Illegal_Wide_Character
;
2339 goto Scan_Next_Character
;
2342 Cat
:= Get_Category
(UTF_32
(Code
));
2344 -- If OK letter, reset scan ptr and go scan identifier
2346 if Is_UTF_32_Letter
(Cat
) then
2349 Underline_Found
:= False;
2350 goto Scan_Identifier
;
2352 -- If OK wide space, ignore and keep scanning (we do not include
2353 -- any ignored spaces in checksum)
2355 elsif Is_UTF_32_Space
(Cat
) then
2356 goto Scan_Next_Character
;
2358 -- If other format character, ignore and keep scanning (again we
2359 -- do not include in the checksum) (this is for AI-0079).
2361 elsif Is_UTF_32_Other
(Cat
) then
2362 goto Scan_Next_Character
;
2364 -- If OK wide line terminator, terminate current line
2366 elsif Is_UTF_32_Line_Terminator
(UTF_32
(Code
)) then
2368 goto Scan_Line_Terminator
;
2370 -- Punctuation is an error (at start of identifier)
2372 elsif Is_UTF_32_Punctuation
(Cat
) then
2373 Error_Msg
("identifier cannot start with punctuation", Wptr
);
2376 Underline_Found
:= False;
2377 goto Scan_Identifier
;
2379 -- Mark character is an error (at start of identifier)
2381 elsif Is_UTF_32_Mark
(Cat
) then
2382 Error_Msg
("identifier cannot start with mark character", Wptr
);
2385 Underline_Found
:= False;
2386 goto Scan_Identifier
;
2388 -- Extended digit character is an error. Could be bad start of
2389 -- identifier or bad literal. Not worth doing too much to try to
2390 -- distinguish these cases, but we will do a little bit.
2392 elsif Is_UTF_32_Digit
(Cat
) then
2394 ("identifier cannot start with digit character", Wptr
);
2397 Underline_Found
:= False;
2398 goto Scan_Identifier
;
2400 -- All other wide characters are illegal here
2403 Error_Illegal_Wide_Character
;
2404 goto Scan_Next_Character
;
2408 -- Routine to scan line terminator. On entry Scan_Ptr points to a
2409 -- character which is one of FF,LR,CR,VT, or one of the wide characters
2410 -- that is treated as a line terminator.
2412 <<Scan_Line_Terminator
>>
2414 -- Check line too long
2418 -- Set Token_Ptr, if End_Of_Line is a token, for the case when it is
2421 if End_Of_Line_Is_Token
then
2422 Token_Ptr
:= Scan_Ptr
;
2429 Skip_Line_Terminators
(Scan_Ptr
, Physical
);
2431 -- If we are at start of physical line, update scan pointers to
2432 -- reflect the start of the new line.
2435 Current_Line_Start
:= Scan_Ptr
;
2436 Start_Column
:= Set_Start_Column
;
2437 First_Non_Blank_Location
:= Scan_Ptr
;
2439 -- If End_Of_Line is a token, we return it as it is a
2442 if End_Of_Line_Is_Token
then
2443 Token
:= Tok_End_Of_Line
;
2449 goto Scan_Next_Character
;
2451 -- Identifier scanning routine. On entry, some initial characters of
2452 -- the identifier may have already been stored in Name_Buffer. If so,
2453 -- Name_Len has the number of characters stored, otherwise Name_Len is
2454 -- set to zero on entry. Underline_Found is also set False on entry.
2458 -- This loop scans as fast as possible past lower half letters and
2459 -- digits, which we expect to be the most common characters.
2462 if Source
(Scan_Ptr
) in 'a' .. 'z'
2463 or else Source
(Scan_Ptr
) in '0' .. '9'
2465 Name_Buffer
(Name_Len
+ 1) := Source
(Scan_Ptr
);
2466 Accumulate_Checksum
(Source
(Scan_Ptr
));
2468 elsif Source
(Scan_Ptr
) in 'A' .. 'Z' then
2469 Name_Buffer
(Name_Len
+ 1) :=
2470 Character'Val (Character'Pos (Source
(Scan_Ptr
)) + 32);
2471 Accumulate_Checksum
(Name_Buffer
(Name_Len
+ 1));
2477 Underline_Found
:= False;
2478 Scan_Ptr
:= Scan_Ptr
+ 1;
2479 Name_Len
:= Name_Len
+ 1;
2482 -- If we fall through, then we have encountered either an underline
2483 -- character, or an extended identifier character (i.e. one from the
2484 -- upper half), or a wide character, or an identifier terminator. The
2485 -- initial test speeds us up in the most common case where we have
2486 -- an identifier terminator. Note that ESC is an identifier character
2487 -- only if a wide character encoding method that uses ESC encoding
2488 -- is active, so if we find an ESC character we know that we have a
2491 if Identifier_Char
(Source
(Scan_Ptr
))
2492 or else (Source
(Scan_Ptr
) in Upper_Half_Character
2493 and then Upper_Half_Encoding
)
2495 -- Case of underline
2497 if Source
(Scan_Ptr
) = '_' then
2498 Accumulate_Checksum
('_');
2500 if Underline_Found
then
2501 Error_No_Double_Underline
;
2503 Underline_Found
:= True;
2504 Name_Len
:= Name_Len
+ 1;
2505 Name_Buffer
(Name_Len
) := '_';
2508 Scan_Ptr
:= Scan_Ptr
+ 1;
2509 goto Scan_Identifier
;
2511 -- Upper half character
2513 elsif Source
(Scan_Ptr
) in Upper_Half_Character
2514 and then not Upper_Half_Encoding
2516 Accumulate_Checksum
(Source
(Scan_Ptr
));
2517 Store_Encoded_Character
2518 (Get_Char_Code
(Fold_Lower
(Source
(Scan_Ptr
))));
2519 Scan_Ptr
:= Scan_Ptr
+ 1;
2520 Underline_Found
:= False;
2521 goto Scan_Identifier
;
2523 -- Left bracket not followed by a quote terminates an identifier.
2524 -- This is an error, but we don't want to give a junk error msg
2525 -- about wide characters in this case.
2527 elsif Source
(Scan_Ptr
) = '['
2528 and then Source
(Scan_Ptr
+ 1) /= '"'
2532 -- We know we have a wide character encoding here (the current
2533 -- character is either ESC, left bracket, or an upper half
2534 -- character depending on the encoding method).
2537 -- Scan out the wide character and insert the appropriate
2538 -- encoding into the name table entry for the identifier.
2548 Scan_Wide
(Source
, Scan_Ptr
, Code
, Err
);
2550 -- If error, signal error
2553 Error_Illegal_Wide_Character
;
2555 -- If the character scanned is a normal identifier
2556 -- character, then we treat it that way.
2558 elsif In_Character_Range
(Code
)
2559 and then Identifier_Char
(Get_Character
(Code
))
2561 Chr
:= Get_Character
(Code
);
2562 Accumulate_Checksum
(Chr
);
2563 Store_Encoded_Character
2564 (Get_Char_Code
(Fold_Lower
(Chr
)));
2565 Underline_Found
:= False;
2567 -- Here if not a normal identifier character
2570 Cat
:= Get_Category
(UTF_32
(Code
));
2572 -- Wide character in Unicode category "Other, Format"
2573 -- is not accepted in an identifier. This is because it
2574 -- it is considered a security risk (AI-0091).
2576 -- However, it is OK for such a character to appear at
2577 -- the end of an identifier.
2579 if Is_UTF_32_Other
(Cat
) then
2580 if not Identifier_Char
(Source
(Scan_Ptr
)) then
2581 goto Scan_Identifier_Complete
;
2584 ("identifier cannot contain other_format "
2585 & "character", Wptr
);
2586 goto Scan_Identifier
;
2589 -- Wide character in category Separator,Space terminates
2591 elsif Is_UTF_32_Space
(Cat
) then
2592 goto Scan_Identifier_Complete
;
2595 -- Here if wide character is part of the identifier
2597 -- Make sure we are allowing wide characters in
2598 -- identifiers. Note that we allow wide character
2599 -- notation for an OK identifier character. This in
2600 -- particular allows bracket or other notation to be
2601 -- used for upper half letters.
2603 -- Wide characters are always allowed in Ada 2005
2605 if Identifier_Character_Set
/= 'w'
2606 and then Ada_Version
< Ada_2005
2609 ("wide character not allowed in identifier", Wptr
);
2612 -- If OK letter, store it folding to upper case. Note
2613 -- that we include the folded letter in the checksum.
2615 if Is_UTF_32_Letter
(Cat
) then
2617 Char_Code
(UTF_32_To_Upper_Case
(UTF_32
(Code
)));
2618 Accumulate_Checksum
(Code
);
2619 Store_Encoded_Character
(Code
);
2620 Underline_Found
:= False;
2622 -- If OK extended digit or mark, then store it
2624 elsif Is_UTF_32_Digit
(Cat
)
2625 or else Is_UTF_32_Mark
(Cat
)
2627 Accumulate_Checksum
(Code
);
2628 Store_Encoded_Character
(Code
);
2629 Underline_Found
:= False;
2631 -- Wide punctuation is also stored, but counts as an
2632 -- underline character for error checking purposes.
2634 elsif Is_UTF_32_Punctuation
(Cat
) then
2635 Accumulate_Checksum
(Code
);
2637 if Underline_Found
then
2639 Cend
: constant Source_Ptr
:= Scan_Ptr
;
2642 Error_No_Double_Underline
;
2647 Store_Encoded_Character
(Code
);
2648 Underline_Found
:= True;
2651 -- Any other wide character is not acceptable
2655 ("invalid wide character in identifier", Wptr
);
2659 goto Scan_Identifier
;
2664 -- Scan of identifier is complete. The identifier is stored in
2665 -- Name_Buffer, and Scan_Ptr points past the last character.
2667 <<Scan_Identifier_Complete
>>
2668 Token_Name
:= Name_Find
;
2670 -- Check for identifier ending with underline or punctuation char
2672 if Underline_Found
then
2673 Underline_Found
:= False;
2675 if Source
(Scan_Ptr
- 1) = '_' then
2677 ("identifier cannot end with underline", Scan_Ptr
- 1);
2680 ("identifier cannot end with punctuation character", Wptr
);
2684 -- We will assume it is an identifier, not a keyword, so that the
2685 -- checksum is independent of the Ada version.
2687 Token
:= Tok_Identifier
;
2689 -- Here is where we check if it was a keyword
2691 if Is_Keyword_Name
(Token_Name
) then
2692 if Opt
.Checksum_GNAT_6_3
then
2693 Token
:= Token_Type
'Val (Get_Name_Table_Byte
(Token_Name
));
2695 if Checksum_Accumulate_Token_Checksum
then
2696 if Checksum_GNAT_5_03
then
2697 Accumulate_Token_Checksum_GNAT_5_03
;
2699 Accumulate_Token_Checksum_GNAT_6_3
;
2704 Accumulate_Token_Checksum
;
2705 Token
:= Token_Type
'Val (Get_Name_Table_Byte
(Token_Name
));
2708 -- Keyword style checks
2712 -- Deal with possible style check for non-lower case keyword,
2713 -- but we don't treat ACCESS, DELTA, DIGITS, RANGE as keywords
2714 -- for this purpose if they appear as attribute designators.
2715 -- Actually we only check the first character for speed.
2717 -- Ada 2005 (AI-284): Do not apply the style check in case of
2718 -- "pragma Interface"
2720 -- Ada 2005 (AI-340): Do not apply the style check in case of
2723 if Source
(Token_Ptr
) <= 'Z'
2724 and then (Prev_Token
/= Tok_Apostrophe
2726 (Token
/= Tok_Access
and then
2727 Token
/= Tok_Delta
and then
2728 Token
/= Tok_Digits
and then
2729 Token
/= Tok_Mod
and then
2730 Token
/= Tok_Range
))
2731 and then (Token
/= Tok_Interface
2733 (Token
= Tok_Interface
2734 and then Prev_Token
/= Tok_Pragma
))
2736 Style
.Non_Lower_Case_Keyword
;
2739 -- Check THEN/ELSE style rules. These do not apply to AND THEN
2740 -- or OR ELSE, and do not apply in if expressions.
2742 if (Token
= Tok_Then
and then Prev_Token
/= Tok_And
)
2744 (Token
= Tok_Else
and then Prev_Token
/= Tok_Or
)
2746 if Inside_If_Expression
= 0 then
2747 Style
.Check_Separate_Stmt_Lines
;
2752 -- We must reset Token_Name since this is not an identifier and
2753 -- if we leave Token_Name set, the parser gets confused because
2754 -- it thinks it is dealing with an identifier instead of the
2755 -- corresponding keyword.
2757 Token_Name
:= No_Name
;
2760 -- It is an identifier after all
2763 if Checksum_Accumulate_Token_Checksum
then
2764 Accumulate_Token_Checksum
;
2772 --------------------------
2773 -- Set_Comment_As_Token --
2774 --------------------------
2776 procedure Set_Comment_As_Token
(Value
: Boolean) is
2778 Comment_Is_Token
:= Value
;
2779 end Set_Comment_As_Token
;
2781 ------------------------------
2782 -- Set_End_Of_Line_As_Token --
2783 ------------------------------
2785 procedure Set_End_Of_Line_As_Token
(Value
: Boolean) is
2787 End_Of_Line_Is_Token
:= Value
;
2788 end Set_End_Of_Line_As_Token
;
2790 ---------------------------
2791 -- Set_Special_Character --
2792 ---------------------------
2794 procedure Set_Special_Character
(C
: Character) is
2797 when '#' |
'$' |
'_' |
'?' |
'@' |
'`' |
'\' |
'^' |
'~' =>
2798 Special_Characters
(C
) := True;
2803 end Set_Special_Character
;
2805 ----------------------
2806 -- Set_Start_Column --
2807 ----------------------
2809 -- Note: it seems at first glance a little expensive to compute this value
2810 -- for every source line (since it is certainly not used for all source
2811 -- lines). On the other hand, it doesn't take much more work to skip past
2812 -- the initial white space on the line counting the columns than it would
2813 -- to scan past the white space using the standard scanning circuits.
2815 function Set_Start_Column
return Column_Number
is
2816 Start_Column
: Column_Number
:= 0;
2819 -- Outer loop scans past horizontal tab characters
2823 -- Inner loop scans past blanks as fast as possible, bumping Scan_Ptr
2824 -- past the blanks and adjusting Start_Column to account for them.
2827 if Source
(Scan_Ptr
) = ' ' then
2828 if Source
(Scan_Ptr
+ 1) = ' ' then
2829 if Source
(Scan_Ptr
+ 2) = ' ' then
2830 if Source
(Scan_Ptr
+ 3) = ' ' then
2831 if Source
(Scan_Ptr
+ 4) = ' ' then
2832 if Source
(Scan_Ptr
+ 5) = ' ' then
2833 if Source
(Scan_Ptr
+ 6) = ' ' then
2834 Scan_Ptr
:= Scan_Ptr
+ 7;
2835 Start_Column
:= Start_Column
+ 7;
2837 Scan_Ptr
:= Scan_Ptr
+ 6;
2838 Start_Column
:= Start_Column
+ 6;
2842 Scan_Ptr
:= Scan_Ptr
+ 5;
2843 Start_Column
:= Start_Column
+ 5;
2847 Scan_Ptr
:= Scan_Ptr
+ 4;
2848 Start_Column
:= Start_Column
+ 4;
2852 Scan_Ptr
:= Scan_Ptr
+ 3;
2853 Start_Column
:= Start_Column
+ 3;
2857 Scan_Ptr
:= Scan_Ptr
+ 2;
2858 Start_Column
:= Start_Column
+ 2;
2862 Scan_Ptr
:= Scan_Ptr
+ 1;
2863 Start_Column
:= Start_Column
+ 1;
2869 end loop Blanks_Loop
;
2871 -- Outer loop keeps going only if a horizontal tab follows
2873 if Source
(Scan_Ptr
) = HT
then
2878 Scan_Ptr
:= Scan_Ptr
+ 1;
2879 Start_Column
:= (Start_Column
/ 8) * 8 + 8;
2885 return Start_Column
;
2887 -- A constraint error can happen only if we have a compiler with checks on
2888 -- and a line with a ludicrous number of tabs or spaces at the start. In
2889 -- such a case, we really don't care if Start_Column is right or not.
2892 when Constraint_Error
=>
2893 return Start_Column
;
2894 end Set_Start_Column
;