Daily bump.
[official-gcc.git] / gcc / ada / scng.adb
blob7bf8ea2eacc25885d61586093fa9fbcd980dd5fe
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S C N G --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2015, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
26 with Atree; use Atree;
27 with Csets; use Csets;
28 with Hostparm; use Hostparm;
29 with Namet; use Namet;
30 with Opt; use Opt;
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
44 with System.CRC32;
45 with System.UTF_32; use System.UTF_32;
46 with System.WCh_Con; use System.WCh_Con;
47 pragma Warnings (On);
49 package body Scng is
51 use ASCII;
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
84 -- gprbuild.
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
113 begin
114 System.CRC32.Update (System.CRC32.CRC32 (Checksum), C);
115 end Accumulate_Checksum;
117 procedure Accumulate_Checksum (C : Char_Code) is
118 begin
119 if C > 16#FFFF# then
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));
123 else
124 Accumulate_Checksum (Character'Val (C / 256));
125 end if;
127 Accumulate_Checksum (Character'Val (C mod 256));
128 end Accumulate_Checksum;
130 -------------------------------
131 -- Accumulate_Token_Checksum --
132 -------------------------------
134 procedure Accumulate_Token_Checksum is
135 begin
136 System.CRC32.Update
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
146 begin
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.
151 case Token is
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 =>
167 System.CRC32.Update
168 (System.CRC32.CRC32 (Checksum),
169 Character'Val (Token_Type'Pos (Token)));
171 when Tok_Some =>
173 System.CRC32.Update
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 =>
191 System.CRC32.Update
192 (System.CRC32.CRC32 (Checksum),
193 Character'Val (Token_Type'Pos (Token_Type'Pred (Token))));
194 end case;
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
202 begin
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.
207 case Token is
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 =>
221 System.CRC32.Update
222 (System.CRC32.CRC32 (Checksum),
223 Character'Val (Token_Type'Pos (Token)));
225 when Tok_Interface | Tok_Some | Tok_Overriding | Tok_Synchronized =>
226 System.CRC32.Update
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 =>
233 System.CRC32.Update
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 =>
245 System.CRC32.Update
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 =>
256 System.CRC32.Update
257 (System.CRC32.CRC32 (Checksum),
258 Character'Val (Token_Type'Pos (Token) - 4));
259 end case;
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 :=
268 Int (Scan_Ptr) -
269 Int (Current_Line_Start) -
270 Wide_Char_Byte_Count;
272 -- Start of processing for Check_End_Of_Line
274 begin
275 if Style_Check then
276 Style.Check_Line_Terminator (Len);
277 end if;
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
285 -- standard value.
287 elsif Len > Max_Line_Length then
288 Error_Msg
289 ("this line is too long",
290 Current_Line_Start + Source_Ptr (Max_Line_Length));
291 end if;
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.
304 if Len >= 4096 then
305 declare
306 Col : Natural;
307 Ptr : Source_Ptr;
309 begin
310 Col := 1;
311 Ptr := Current_Line_Start;
312 loop
313 exit when Ptr = Scan_Ptr;
315 if Source (Ptr) = ASCII.HT then
316 Col := (Col - 1 + 8) / 8 * 8 + 1;
317 else
318 Col := Col + 1;
319 end if;
321 if Col > 32766 then
322 Error_Msg
323 ("this line is longer than 32766 characters",
324 Current_Line_Start);
325 raise Unrecoverable_Error;
326 end if;
328 Ptr := Ptr + 1;
329 end loop;
330 end;
331 end if;
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
343 begin
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
352 begin
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
361 begin
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);
371 Token := No_Token;
372 Token_Ptr := Scan_Ptr;
373 Current_Line_Start := Scan_Ptr;
374 Token_Node := Empty;
375 Token_Name := No_Name;
376 Start_Column := Set_Start_Column;
377 First_Non_Blank_Location := Scan_Ptr;
379 Initialize_Checksum;
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
391 begin
392 Special_Characters := (others => False);
393 end Reset_Special_Characters;
395 ----------
396 -- Scan --
397 ----------
399 procedure Scan is
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.
412 Wptr : Source_Ptr;
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.
438 procedure Nlit;
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.
445 procedure Slit;
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
465 begin
466 if Source (Scan_Ptr + 1) = C then
467 Accumulate_Checksum (C);
468 Scan_Ptr := Scan_Ptr + 2;
469 return True;
471 elsif Source (Scan_Ptr + 1) = ' '
472 and then Source (Scan_Ptr + 2) = C
473 then
474 Scan_Ptr := Scan_Ptr + 1;
475 Error_Msg_S -- CODEFIX
476 ("no space allowed here");
477 Scan_Ptr := Scan_Ptr + 2;
478 return True;
480 else
481 return False;
482 end if;
483 end Double_Char_Token;
485 -----------------------------
486 -- Error_Illegal_Character --
487 -----------------------------
489 procedure Error_Illegal_Character is
490 begin
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
500 begin
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
510 begin
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");
519 else
520 Error_Msg_S ("underline cannot follow punctuation character");
521 end if;
523 else
524 if Source (Scan_Ptr - 1) = '_' then
525 Error_Msg_S ("punctuation character cannot follow underline");
526 else
527 Error_Msg_S
528 ("two consecutive punctuation characters not permitted");
529 end if;
530 end if;
531 end Error_No_Double_Underline;
533 ----------
534 -- Nlit --
535 ----------
537 procedure Nlit is
539 C : Character;
540 -- Current source program character
542 Base_Char : Character;
543 -- Either # or : (character at start of based number)
545 Base : Int;
546 -- Value of base
548 UI_Base : Uint;
549 -- Value of base in Uint format
551 UI_Int_Value : Uint;
552 -- Value of integer scanned by Scan_Integer in Uint format
554 UI_Num_Value : Uint;
555 -- Value of integer in numeric value being scanned
557 Scale : Int;
558 -- Scale value for real literal
560 UI_Scale : Uint;
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
593 begin
594 Error_Msg_S ("digit expected");
595 end Error_Digit_Expected;
597 ------------------
598 -- Scan_Integer --
599 ------------------
601 procedure Scan_Integer is
602 C : Character;
603 -- Next character scanned
605 begin
606 C := Source (Scan_Ptr);
608 -- Loop through digits (allowing underlines)
610 loop
611 Accumulate_Checksum (C);
612 UI_Int_Value :=
613 UI_Int_Value * 10 + (Character'Pos (C) - Character'Pos ('0'));
614 Scan_Ptr := Scan_Ptr + 1;
615 Scale := Scale - 1;
616 C := Source (Scan_Ptr);
618 -- Case of underline encountered
620 if C = '_' then
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).
626 loop
627 Scan_Ptr := Scan_Ptr + 1;
628 C := Source (Scan_Ptr);
629 exit when C /= '_';
630 Error_No_Double_Underline;
631 end loop;
633 if C not in '0' .. '9' then
634 Error_Digit_Expected;
635 exit;
636 end if;
638 else
639 exit when C not in '0' .. '9';
640 end if;
641 end loop;
642 end Scan_Integer;
644 -- Start of Processing for Nlit
646 begin
647 Base := 10;
648 UI_Base := Uint_10;
649 UI_Int_Value := Uint_0;
650 Based_Literal_Uses_Colon := False;
651 Scale := 0;
652 Scan_Integer;
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).
659 Scale := 0;
660 C := Source (Scan_Ptr);
662 if C = '.' then
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");
672 end if;
674 Point_Scanned := True;
675 Scan_Ptr := Scan_Ptr + 1;
676 C := Source (Scan_Ptr);
678 if C not in '0' .. '9' then
679 Error_Msg
680 ("real literal cannot end with point", Scan_Ptr - 1);
681 else
682 Scan_Integer;
683 UI_Num_Value := UI_Int_Value;
684 end if;
685 end loop;
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;"
693 elsif C = '#'
694 or else (C = ':' and then
695 (Source (Scan_Ptr + 1) = '.'
696 or else
697 Source (Scan_Ptr + 1) in '0' .. '9'
698 or else
699 Source (Scan_Ptr + 1) in 'A' .. 'Z'
700 or else
701 Source (Scan_Ptr + 1) in 'a' .. 'z'))
702 then
703 Accumulate_Checksum (C);
704 Base_Char := C;
705 UI_Base := UI_Int_Value;
707 if Base_Char = ':' then
708 Based_Literal_Uses_Colon := True;
709 end if;
711 if UI_Base < 2 or else UI_Base > 16 then
712 Error_Msg_SC ("base not 2-16");
713 UI_Base := Uint_16;
714 end if;
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;
723 Scale := 0;
725 loop
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;
741 else
742 Error_Msg_S ("extended digit expected");
743 exit;
744 end if;
746 if Extended_Digit_Value >= Base then
747 Error_Msg_S ("digit '>= base");
748 end if;
750 UI_Int_Value := UI_Int_Value * UI_Base + Extended_Digit_Value;
751 Scale := Scale - 1;
752 Scan_Ptr := Scan_Ptr + 1;
753 C := Source (Scan_Ptr);
755 if C = '_' then
756 loop
757 Accumulate_Checksum ('_');
758 Scan_Ptr := Scan_Ptr + 1;
759 C := Source (Scan_Ptr);
760 exit when C /= '_';
761 Error_No_Double_Underline;
762 end loop;
764 elsif C = '.' then
765 Accumulate_Checksum ('.');
767 if Point_Scanned then
768 Error_Msg_S ("duplicate point ignored");
769 end if;
771 Scan_Ptr := Scan_Ptr + 1;
772 C := Source (Scan_Ptr);
773 Point_Scanned := True;
774 Scale := 0;
776 elsif C = Base_Char then
777 Accumulate_Checksum (C);
778 Scan_Ptr := Scan_Ptr + 1;
779 exit;
781 elsif C = '#' or else C = ':' then
782 Error_Msg_S ("based number delimiters must match");
783 Scan_Ptr := Scan_Ptr + 1;
784 exit;
786 elsif not Identifier_Char (C) then
787 if Base_Char = '#' then
788 Error_Msg_S -- CODEFIX
789 ("missing '#");
790 else
791 Error_Msg_S -- CODEFIX
792 ("missing ':");
793 end if;
795 exit;
796 end if;
798 end loop;
800 UI_Num_Value := UI_Int_Value;
801 end if;
803 -- Scan out exponent
805 if not Point_Scanned then
806 Scale := 0;
807 UI_Scale := Uint_0;
808 else
809 UI_Scale := UI_From_Int (Scale);
810 end if;
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
825 Error_Msg_S
826 ("negative exponent not allowed for integer literal");
827 else
828 Exponent_Is_Negative := True;
829 end if;
831 Scan_Ptr := Scan_Ptr + 1;
832 end if;
834 UI_Int_Value := Uint_0;
836 if Source (Scan_Ptr) in '0' .. '9' then
837 Scan_Integer;
838 else
839 Error_Digit_Expected;
840 end if;
842 if Exponent_Is_Negative then
843 UI_Scale := UI_Scale - UI_Int_Value;
844 else
845 UI_Scale := UI_Scale + UI_Int_Value;
846 end if;
847 end if;
849 -- Case of real literal to be returned
851 if Point_Scanned then
852 Token := Tok_Real_Literal;
853 Real_Literal_Value :=
854 UR_From_Components (
855 Num => UI_Num_Value,
856 Den => -UI_Scale,
857 Rbase => Base);
859 -- Case of integer literal to be returned
861 else
862 Token := Tok_Integer_Literal;
864 if UI_Scale = 0 then
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)
873 then
874 Int_Literal_Value := UI_Num_Value * UI_Base ** UI_Scale;
876 else
877 Int_Literal_Value := No_Uint;
878 end if;
879 end if;
881 if Checksum_Accumulate_Token_Checksum then
882 Accumulate_Token_Checksum;
883 end if;
885 return;
886 end Nlit;
888 ----------
889 -- Slit --
890 ----------
892 procedure Slit is
894 Delimiter : Character;
895 -- Delimiter (first character of string)
897 C : Character;
898 -- Current source program character
900 Code : Char_Code;
901 -- Current character code value
903 Err : Boolean;
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
918 -- terminated.
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);
936 begin
937 if C = HT then
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");
946 else
947 Error_Msg_S ("control character not allowed in string");
948 end if;
949 end Error_Bad_String_Char;
951 -------------------------------
952 -- Error_Unterminated_String --
953 -------------------------------
955 procedure Error_Unterminated_String is
956 S : Source_Ptr;
958 begin
959 -- An interesting little refinement. Consider the following
960 -- examples:
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) = '&'
987 loop
988 Scan_Ptr := Scan_Ptr - 1;
989 Unstore_String_Char;
990 end loop;
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).
996 if Delimiter /= '''
997 and then Source (Scan_Ptr - 1) = '''
998 then
999 Unstore_String_Char;
1000 Error_Msg
1001 ("incorrect string terminator character", Scan_Ptr - 1);
1002 return;
1003 end if;
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;
1014 end if;
1015 end if;
1017 -- See if there is a comma in the string, if so, guess that
1018 -- the first comma terminates the string.
1020 S := String_Start;
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;
1026 end loop;
1028 exit;
1029 end if;
1031 S := S + 1;
1032 end loop;
1034 -- Now we have adjusted the scan pointer, give message
1036 Error_Msg_S -- CODEFIX
1037 ("missing string quote");
1038 end Error_Unterminated_String;
1040 ----------------
1041 -- Set_String --
1042 ----------------
1044 procedure Set_String is
1045 Slen : constant Int := Int (Scan_Ptr - Token_Ptr - 2);
1046 C1 : Character;
1047 C2 : Character;
1048 C3 : Character;
1050 begin
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.
1056 if Slen = 1 then
1057 C1 := Source (Token_Ptr + 1);
1059 case C1 is
1060 when '=' =>
1061 Token_Name := Name_Op_Eq;
1063 when '>' =>
1064 Token_Name := Name_Op_Gt;
1066 when '<' =>
1067 Token_Name := Name_Op_Lt;
1069 when '+' =>
1070 Token_Name := Name_Op_Add;
1072 when '-' =>
1073 Token_Name := Name_Op_Subtract;
1075 when '&' =>
1076 Token_Name := Name_Op_Concat;
1078 when '*' =>
1079 Token_Name := Name_Op_Multiply;
1081 when '/' =>
1082 Token_Name := Name_Op_Divide;
1084 when others =>
1085 null;
1086 end case;
1088 elsif Slen = 2 then
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;
1095 elsif C2 = '=' then
1097 if C1 = '/' then
1098 Token_Name := Name_Op_Ne;
1099 elsif C1 = '<' then
1100 Token_Name := Name_Op_Le;
1101 elsif C1 = '>' then
1102 Token_Name := Name_Op_Ge;
1103 end if;
1105 elsif (C1 = 'O' or else C1 = 'o') and then -- OR
1106 (C2 = 'R' or else C2 = 'r')
1107 then
1108 Token_Name := Name_Op_Or;
1109 end if;
1111 elsif Slen = 3 then
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')
1119 then
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')
1125 then
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')
1131 then
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')
1137 then
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')
1143 then
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')
1149 then
1150 Token_Name := Name_Op_Xor;
1151 end if;
1153 end if;
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
1157 -- Error_Name.
1159 if Token_Name = Error_Name then
1160 Token := Tok_String_Literal;
1162 else
1163 Token := Tok_Operator_Symbol;
1164 end if;
1165 end Set_String;
1167 -- Start of processing for Slit
1169 begin
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
1173 -- literal circuit.
1175 String_Start := Scan_Ptr;
1177 Delimiter := Source (Scan_Ptr);
1178 Accumulate_Checksum (Delimiter);
1180 Start_String;
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
1187 loop
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;
1198 else
1199 if C = '"' and then Delimiter = '%' then
1200 Error_Msg_S
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
1206 Wptr := Scan_Ptr;
1207 Scan_Wide (Source, Scan_Ptr, Code, Err);
1209 if Err then
1210 Error_Illegal_Wide_Character;
1211 Code := Get_Char_Code (' ');
1212 end if;
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))
1222 then
1223 Error_Msg
1224 ("(Ada 2005) non-graphic character not permitted " &
1225 "in string literal", Wptr);
1226 end if;
1228 else
1229 Accumulate_Checksum (C);
1231 if C not in Graphic_Character then
1232 if C in Line_Terminator then
1233 Error_Unterminated_String;
1234 exit;
1236 elsif C in Upper_Half_Character then
1237 if Ada_Version = Ada_83 then
1238 Error_Bad_String_Char;
1239 end if;
1241 else
1242 Error_Bad_String_Char;
1243 end if;
1244 end if;
1246 Code := Get_Char_Code (C);
1247 Scan_Ptr := Scan_Ptr + 1;
1248 end if;
1249 end if;
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;
1256 else
1257 Wide_Wide_Character_Found := True;
1258 end if;
1259 end if;
1260 end loop;
1262 String_Literal_Id := End_String;
1263 Set_String;
1264 return;
1265 end Slit;
1267 ----------------------------------
1268 -- Skip_Other_Format_Characters --
1269 ----------------------------------
1271 procedure Skip_Other_Format_Characters is
1272 P : Source_Ptr;
1273 Code : Char_Code;
1274 Err : Boolean;
1276 begin
1277 while Start_Of_Wide_Character loop
1278 P := Scan_Ptr;
1279 Scan_Wide (Source, Scan_Ptr, Code, Err);
1281 if not Is_UTF_32_Other (UTF_32 (Code)) then
1282 Scan_Ptr := P;
1283 return;
1284 end if;
1285 end loop;
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);
1295 begin
1296 -- ESC encoding method with ESC present
1298 if C = ESC
1299 and then Wide_Character_Encoding_Method in WC_ESC_Encoding_Method
1300 then
1301 return True;
1303 -- Upper half character with upper half encoding
1305 elsif C in Upper_Half_Character and then Upper_Half_Encoding then
1306 return True;
1308 -- Brackets encoding
1310 elsif C = '['
1311 and then Source (Scan_Ptr + 1) = '"'
1312 and then Identifier_Char (Source (Scan_Ptr + 2))
1313 then
1314 return True;
1316 -- Not the start of a wide character
1318 else
1319 return False;
1320 end if;
1321 end Start_Of_Wide_Character;
1323 -- Start of processing for Scan
1325 begin
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>>
1337 loop
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;
1343 exit;
1344 end if;
1346 if Source (Scan_Ptr + 2) /= ' ' then
1347 Scan_Ptr := Scan_Ptr + 2;
1348 exit;
1349 end if;
1351 if Source (Scan_Ptr + 3) /= ' ' then
1352 Scan_Ptr := Scan_Ptr + 3;
1353 exit;
1354 end if;
1356 if Source (Scan_Ptr + 4) /= ' ' then
1357 Scan_Ptr := Scan_Ptr + 4;
1358 exit;
1359 end if;
1361 if Source (Scan_Ptr + 5) /= ' ' then
1362 Scan_Ptr := Scan_Ptr + 5;
1363 exit;
1364 end if;
1366 if Source (Scan_Ptr + 6) /= ' ' then
1367 Scan_Ptr := Scan_Ptr + 6;
1368 exit;
1369 end if;
1371 if Source (Scan_Ptr + 7) /= ' ' then
1372 Scan_Ptr := Scan_Ptr + 7;
1373 exit;
1374 end if;
1376 Scan_Ptr := Scan_Ptr + 8;
1377 end loop;
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
1396 when HT =>
1397 if Style_Check then
1398 Style.Check_HT;
1399 end if;
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.
1406 when EOF =>
1407 if Scan_Ptr = Source_Last (Current_Source_File) then
1408 Check_End_Of_Line;
1410 if Style_Check then
1411 Style.Check_EOF;
1412 end if;
1414 Token := Tok_EOF;
1415 return;
1416 else
1417 Scan_Ptr := Scan_Ptr + 1;
1418 end if;
1420 -- Ampersand
1422 when '&' =>
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;
1429 Token := Tok_And;
1430 return;
1432 else
1433 Scan_Ptr := Scan_Ptr + 1;
1434 Token := Tok_Ampersand;
1435 return;
1436 end if;
1438 -- Asterisk (can be multiplication operator or double asterisk which
1439 -- is the exponentiation compound delimiter).
1441 when '*' =>
1442 Accumulate_Checksum ('*');
1444 if Source (Scan_Ptr + 1) = '*' then
1445 Accumulate_Checksum ('*');
1446 Scan_Ptr := Scan_Ptr + 2;
1447 Token := Tok_Double_Asterisk;
1448 return;
1450 else
1451 Scan_Ptr := Scan_Ptr + 1;
1452 Token := Tok_Asterisk;
1453 return;
1454 end if;
1456 -- Colon, which can either be an isolated colon, or part of an
1457 -- assignment compound delimiter.
1459 when ':' =>
1460 Accumulate_Checksum (':');
1462 if Double_Char_Token ('=') then
1463 Token := Tok_Colon_Equal;
1465 if Style_Check then
1466 Style.Check_Colon_Equal;
1467 end if;
1469 return;
1471 elsif Source (Scan_Ptr + 1) = '-'
1472 and then Source (Scan_Ptr + 2) /= '-'
1473 then
1474 Token := Tok_Colon_Equal;
1475 Error_Msg -- CODEFIX
1476 (":- should be :=", Scan_Ptr);
1477 Scan_Ptr := Scan_Ptr + 2;
1478 return;
1480 else
1481 Scan_Ptr := Scan_Ptr + 1;
1482 Token := Tok_Colon;
1484 if Style_Check then
1485 Style.Check_Colon;
1486 end if;
1488 return;
1489 end if;
1491 -- Left parenthesis
1493 when '(' =>
1494 Accumulate_Checksum ('(');
1495 Scan_Ptr := Scan_Ptr + 1;
1496 Token := Tok_Left_Paren;
1498 if Style_Check then
1499 Style.Check_Left_Paren;
1500 end if;
1502 return;
1504 -- Left bracket
1506 when '[' =>
1507 if Source (Scan_Ptr + 1) = '"' then
1508 goto Scan_Wide_Character;
1510 else
1511 Error_Msg_S ("illegal character, replaced by ""(""");
1512 Scan_Ptr := Scan_Ptr + 1;
1513 Token := Tok_Left_Paren;
1514 return;
1515 end if;
1517 -- Left brace
1519 when '{' =>
1520 Error_Msg_S ("illegal character, replaced by ""(""");
1521 Scan_Ptr := Scan_Ptr + 1;
1522 Token := Tok_Left_Paren;
1523 return;
1525 -- Comma
1527 when ',' =>
1528 Accumulate_Checksum (',');
1529 Scan_Ptr := Scan_Ptr + 1;
1530 Token := Tok_Comma;
1532 if Style_Check then
1533 Style.Check_Comma;
1534 end if;
1536 return;
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.
1542 when '.' =>
1543 Accumulate_Checksum ('.');
1545 if Double_Char_Token ('.') then
1546 Token := Tok_Dot_Dot;
1548 if Style_Check then
1549 Style.Check_Dot_Dot;
1550 end if;
1552 return;
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;
1558 else
1559 Scan_Ptr := Scan_Ptr + 1;
1560 Token := Tok_Dot;
1561 return;
1562 end if;
1564 -- Equal, which can either be an equality operator, or part of the
1565 -- arrow (=>) compound delimiter.
1567 when '=' =>
1568 Accumulate_Checksum ('=');
1570 if Double_Char_Token ('>') then
1571 Token := Tok_Arrow;
1573 if Style_Check then
1574 Style.Check_Arrow (Inside_Depends);
1575 end if;
1577 return;
1579 elsif Source (Scan_Ptr + 1) = '=' then
1580 Error_Msg_S -- CODEFIX
1581 ("== should be =");
1582 Scan_Ptr := Scan_Ptr + 1;
1583 end if;
1585 Scan_Ptr := Scan_Ptr + 1;
1586 Token := Tok_Equal;
1587 return;
1589 -- Greater than, which can be a greater than operator, greater than
1590 -- or equal operator, or first character of a right label bracket.
1592 when '>' =>
1593 Accumulate_Checksum ('>');
1595 if Double_Char_Token ('=') then
1596 Token := Tok_Greater_Equal;
1597 return;
1599 elsif Double_Char_Token ('>') then
1600 Token := Tok_Greater_Greater;
1601 return;
1603 else
1604 Scan_Ptr := Scan_Ptr + 1;
1605 Token := Tok_Greater;
1606 return;
1607 end if;
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.
1613 when '<' =>
1614 Accumulate_Checksum ('<');
1616 if Double_Char_Token ('=') then
1617 Token := Tok_Less_Equal;
1618 return;
1620 elsif Double_Char_Token ('>') then
1621 Token := Tok_Box;
1623 if Style_Check then
1624 Style.Check_Box;
1625 end if;
1627 return;
1629 elsif Double_Char_Token ('<') then
1630 Token := Tok_Less_Less;
1631 return;
1633 else
1634 Scan_Ptr := Scan_Ptr + 1;
1635 Token := Tok_Less;
1636 return;
1637 end if;
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;
1646 Token := Tok_Arrow;
1647 return;
1649 elsif Source (Scan_Ptr + 1) /= '-' then
1650 Accumulate_Checksum ('-');
1651 Scan_Ptr := Scan_Ptr + 1;
1652 Token := Tok_Minus;
1653 return;
1655 -- Comment
1657 else -- Source (Scan_Ptr + 1) = '-' then
1658 if Style_Check then
1659 Style.Check_Comment;
1660 end if;
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;
1669 return;
1670 end if;
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)
1679 loop
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
1689 -- character.
1691 loop
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;
1702 end loop;
1704 -- Keep going if horizontal tab
1706 if Source (Scan_Ptr) = HT then
1707 if Style_Check then
1708 Style.Check_HT;
1709 end if;
1711 Scan_Ptr := Scan_Ptr + 1;
1713 -- Terminate scan of comment if line terminator
1715 elsif Source (Scan_Ptr) in Line_Terminator then
1716 exit;
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
1722 exit;
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
1728 declare
1729 Wptr : constant Source_Ptr := Scan_Ptr;
1730 Code : Char_Code;
1731 Err : Boolean;
1733 begin
1734 Scan_Wide (Source, Scan_Ptr, Code, Err);
1736 -- If not well formed wide character, then just skip
1737 -- past it and ignore it.
1739 if Err then
1740 Scan_Ptr := Wptr + 1;
1742 -- If UTF_32 terminator, terminate comment scan
1744 elsif Is_UTF_32_Line_Terminator (UTF_32 (Code)) then
1745 Scan_Ptr := Wptr;
1746 exit;
1747 end if;
1748 end;
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
1757 then
1758 Scan_Ptr := Scan_Ptr + 1;
1760 -- Otherwise we have an illegal comment character, ignore
1761 -- this error in relaxed semantics mode.
1763 else
1764 if Relaxed_RM_Semantics then
1765 Scan_Ptr := Scan_Ptr + 1;
1766 else
1767 Error_Illegal_Character;
1768 end if;
1769 end if;
1770 end loop;
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;
1782 return;
1783 end if;
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) = '#'
1790 then
1791 declare
1792 Scan_SPARK_Ptr : Source_Ptr;
1794 begin
1795 Scan_SPARK_Ptr := Start_Of_Comment + 1;
1797 -- Scan out blanks
1799 while Source (Scan_SPARK_Ptr) = ' '
1800 or else Source (Scan_SPARK_Ptr) = HT
1801 loop
1802 Scan_SPARK_Ptr := Scan_SPARK_Ptr + 1;
1803 end loop;
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)
1819 then
1820 Token := Tok_SPARK_Hide;
1821 return;
1822 end if;
1823 end;
1824 end if;
1825 end if;
1826 end Minus_Case;
1828 -- Double quote or percent starting a string literal
1830 when '"' | '%' =>
1831 Slit;
1832 Post_Scan;
1833 return;
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. We treat it as a character literal if it does not
1838 -- follow a right parenthesis, identifier, the keyword ALL or
1839 -- a literal. This means that we correctly treat constructs like:
1841 -- A := CHARACTER'('A');
1843 -- Note that RM-2.2(7) does not require a separator between
1844 -- "CHARACTER" and "'" in the above.
1846 when ''' => Char_Literal_Case : declare
1847 Code : Char_Code;
1848 Err : Boolean;
1850 begin
1851 Accumulate_Checksum (''');
1852 Scan_Ptr := Scan_Ptr + 1;
1854 -- Here is where we make the test to distinguish the cases. Treat
1855 -- as apostrophe if previous token is an identifier, right paren
1856 -- or the reserved word "all" (latter case as in A.all'Address)
1857 -- (or the reserved word "project" in project files). Also treat
1858 -- it as apostrophe after a literal (this catches some legitimate
1859 -- cases, like A."abs"'Address, and also gives better error
1860 -- behavior for impossible cases like 123'xxx).
1862 if Prev_Token = Tok_Identifier
1863 or else Prev_Token = Tok_Right_Paren
1864 or else Prev_Token = Tok_All
1865 or else Prev_Token = Tok_Project
1866 or else Prev_Token in Token_Class_Literal
1867 then
1868 Token := Tok_Apostrophe;
1870 if Style_Check then
1871 Style.Check_Apostrophe;
1872 end if;
1874 return;
1876 -- Otherwise the apostrophe starts a character literal
1878 else
1879 -- Case of wide character literal
1881 if Start_Of_Wide_Character then
1882 Wptr := Scan_Ptr;
1883 Scan_Wide (Source, Scan_Ptr, Code, Err);
1884 Accumulate_Checksum (Code);
1886 if Err then
1887 Error_Illegal_Wide_Character;
1888 Code := Character'Pos (' ');
1890 -- In Ada 95 mode we allow any wide character in a character
1891 -- literal, but in Ada 2005, the set of characters allowed
1892 -- is restricted to graphic characters.
1894 elsif Ada_Version >= Ada_2005
1895 and then Is_UTF_32_Non_Graphic (UTF_32 (Code))
1896 then
1897 Error_Msg -- CODEFIX????
1898 ("(Ada 2005) non-graphic character not permitted " &
1899 "in character literal", Wptr);
1900 end if;
1902 if Source (Scan_Ptr) /= ''' then
1903 Error_Msg_S ("missing apostrophe");
1904 else
1905 Scan_Ptr := Scan_Ptr + 1;
1906 end if;
1908 -- If we do not find a closing quote in the expected place then
1909 -- assume that we have a misguided attempt at a string literal.
1911 -- However, if previous token is RANGE, then we return an
1912 -- apostrophe instead since this gives better error recovery
1914 elsif Source (Scan_Ptr + 1) /= ''' then
1915 if Prev_Token = Tok_Range then
1916 Token := Tok_Apostrophe;
1917 return;
1919 else
1920 Scan_Ptr := Scan_Ptr - 1;
1921 Error_Msg_S
1922 ("strings are delimited by double quote character");
1923 Slit;
1924 Post_Scan;
1925 return;
1926 end if;
1928 -- Otherwise we have a (non-wide) character literal
1930 else
1931 Accumulate_Checksum (Source (Scan_Ptr));
1933 if Source (Scan_Ptr) not in Graphic_Character then
1934 if Source (Scan_Ptr) in Upper_Half_Character then
1935 if Ada_Version = Ada_83 then
1936 Error_Illegal_Character;
1937 end if;
1939 else
1940 Error_Illegal_Character;
1941 end if;
1942 end if;
1944 Code := Get_Char_Code (Source (Scan_Ptr));
1945 Scan_Ptr := Scan_Ptr + 2;
1946 end if;
1948 -- Fall through here with Scan_Ptr updated past the closing
1949 -- quote, and Code set to the Char_Code value for the literal
1951 Accumulate_Checksum (''');
1952 Token := Tok_Char_Literal;
1953 Set_Character_Literal_Name (Code);
1954 Token_Name := Name_Find;
1955 Character_Code := Code;
1956 Post_Scan;
1957 return;
1958 end if;
1959 end Char_Literal_Case;
1961 -- Right parenthesis
1963 when ')' =>
1964 Accumulate_Checksum (')');
1965 Scan_Ptr := Scan_Ptr + 1;
1966 Token := Tok_Right_Paren;
1968 if Style_Check then
1969 Style.Check_Right_Paren;
1970 end if;
1972 return;
1974 -- Right bracket or right brace, treated as right paren
1976 when ']' | '}' =>
1977 Error_Msg_S ("illegal character, replaced by "")""");
1978 Scan_Ptr := Scan_Ptr + 1;
1979 Token := Tok_Right_Paren;
1980 return;
1982 -- Slash (can be division operator or first character of not equal)
1984 when '/' =>
1985 Accumulate_Checksum ('/');
1987 if Double_Char_Token ('=') then
1988 Token := Tok_Not_Equal;
1989 return;
1990 else
1991 Scan_Ptr := Scan_Ptr + 1;
1992 Token := Tok_Slash;
1993 return;
1994 end if;
1996 -- Semicolon
1998 when ';' =>
1999 Accumulate_Checksum (';');
2000 Scan_Ptr := Scan_Ptr + 1;
2001 Token := Tok_Semicolon;
2003 if Style_Check then
2004 Style.Check_Semicolon;
2005 end if;
2007 return;
2009 -- Vertical bar
2011 when '|' => Vertical_Bar_Case : begin
2012 Accumulate_Checksum ('|');
2014 -- Special check for || to give nice message
2016 if Source (Scan_Ptr + 1) = '|' then
2017 Error_Msg_S -- CODEFIX
2018 ("""'|'|"" should be `OR ELSE`");
2019 Scan_Ptr := Scan_Ptr + 2;
2020 Token := Tok_Or;
2021 return;
2023 else
2024 Scan_Ptr := Scan_Ptr + 1;
2025 Token := Tok_Vertical_Bar;
2027 if Style_Check then
2028 Style.Check_Vertical_Bar;
2029 end if;
2031 Post_Scan;
2032 return;
2033 end if;
2034 end Vertical_Bar_Case;
2036 -- Exclamation, replacement character for vertical bar
2038 when '!' => Exclamation_Case : begin
2039 Accumulate_Checksum ('!');
2041 if Source (Scan_Ptr + 1) = '=' then
2042 Error_Msg_S -- CODEFIX
2043 ("'!= should be /=");
2044 Scan_Ptr := Scan_Ptr + 2;
2045 Token := Tok_Not_Equal;
2046 return;
2048 else
2049 Scan_Ptr := Scan_Ptr + 1;
2050 Token := Tok_Vertical_Bar;
2051 Post_Scan;
2052 return;
2053 end if;
2054 end Exclamation_Case;
2056 -- Plus
2058 when '+' => Plus_Case : begin
2059 Accumulate_Checksum ('+');
2060 Scan_Ptr := Scan_Ptr + 1;
2061 Token := Tok_Plus;
2062 return;
2063 end Plus_Case;
2065 -- Digits starting a numeric literal
2067 when '0' .. '9' =>
2069 -- First a bit of a scan ahead to see if we have a case of an
2070 -- identifier starting with a digit (remembering exponent case).
2072 declare
2073 C : constant Character := Source (Scan_Ptr + 1);
2075 begin
2076 -- OK literal if digit followed by digit or underscore
2078 if C in '0' .. '9' or else C = '_' then
2079 null;
2081 -- OK literal if digit not followed by identifier char
2083 elsif not Identifier_Char (C) then
2084 null;
2086 -- OK literal if digit followed by e/E followed by digit/sign.
2087 -- We also allow underscore after the E, which is an error, but
2088 -- better handled by Nlit than deciding this is an identifier.
2090 elsif (C = 'e' or else C = 'E')
2091 and then (Source (Scan_Ptr + 2) in '0' .. '9'
2092 or else Source (Scan_Ptr + 2) = '+'
2093 or else Source (Scan_Ptr + 2) = '-'
2094 or else Source (Scan_Ptr + 2) = '_')
2095 then
2096 null;
2098 -- Here we have what really looks like an identifier that
2099 -- starts with a digit, so give error msg.
2101 else
2102 Error_Msg_S ("identifier may not start with digit");
2103 Name_Len := 1;
2104 Underline_Found := False;
2105 Name_Buffer (1) := Source (Scan_Ptr);
2106 Accumulate_Checksum (Name_Buffer (1));
2107 Scan_Ptr := Scan_Ptr + 1;
2108 goto Scan_Identifier;
2109 end if;
2110 end;
2112 -- Here we have an OK integer literal
2114 Nlit;
2116 -- Check for proper delimiter, ignoring other format characters
2118 Skip_Other_Format_Characters;
2120 if Identifier_Char (Source (Scan_Ptr)) then
2121 Error_Msg_S
2122 ("delimiter required between literal and identifier");
2123 end if;
2125 Post_Scan;
2126 return;
2128 -- Lower case letters
2130 when 'a' .. 'z' =>
2131 Name_Len := 1;
2132 Underline_Found := False;
2133 Name_Buffer (1) := Source (Scan_Ptr);
2134 Accumulate_Checksum (Name_Buffer (1));
2135 Scan_Ptr := Scan_Ptr + 1;
2136 goto Scan_Identifier;
2138 -- Upper case letters
2140 when 'A' .. 'Z' =>
2141 Name_Len := 1;
2142 Underline_Found := False;
2143 Name_Buffer (1) :=
2144 Character'Val (Character'Pos (Source (Scan_Ptr)) + 32);
2145 Accumulate_Checksum (Name_Buffer (1));
2146 Scan_Ptr := Scan_Ptr + 1;
2147 goto Scan_Identifier;
2149 -- Underline character
2151 when '_' =>
2152 if Special_Characters ('_') then
2153 Token_Ptr := Scan_Ptr;
2154 Scan_Ptr := Scan_Ptr + 1;
2155 Token := Tok_Special;
2156 Special_Character := '_';
2157 return;
2158 end if;
2160 Error_Msg_S ("identifier cannot start with underline");
2161 Name_Len := 1;
2162 Name_Buffer (1) := '_';
2163 Scan_Ptr := Scan_Ptr + 1;
2164 Underline_Found := False;
2165 goto Scan_Identifier;
2167 -- Space (not possible, because we scanned past blanks)
2169 when ' ' =>
2170 raise Program_Error;
2172 -- Characters in top half of ASCII 8-bit chart
2174 when Upper_Half_Character =>
2176 -- Wide character case
2178 if Upper_Half_Encoding then
2179 goto Scan_Wide_Character;
2181 -- Otherwise we have OK Latin-1 character
2183 else
2184 -- Upper half characters may possibly be identifier letters
2185 -- but can never be digits, so Identifier_Char can be used to
2186 -- test for a valid start of identifier character.
2188 if Identifier_Char (Source (Scan_Ptr)) then
2189 Name_Len := 0;
2190 Underline_Found := False;
2191 goto Scan_Identifier;
2192 else
2193 Error_Illegal_Character;
2194 end if;
2195 end if;
2197 when ESC =>
2199 -- ESC character, possible start of identifier if wide characters
2200 -- using ESC encoding are allowed in identifiers, which we can
2201 -- tell by looking at the Identifier_Char flag for ESC, which is
2202 -- only true if these conditions are met. In Ada 2005 mode, may
2203 -- also be valid UTF_32 space or line terminator character.
2205 if Identifier_Char (ESC) then
2206 Name_Len := 0;
2207 goto Scan_Wide_Character;
2208 else
2209 Error_Illegal_Character;
2210 end if;
2212 -- Invalid control characters
2214 when NUL | SOH | STX | ETX | EOT | ENQ | ACK | BEL | BS | ASCII.SO |
2215 SI | DLE | DC1 | DC2 | DC3 | DC4 | NAK | SYN | ETB | CAN |
2216 EM | FS | GS | RS | US | DEL
2218 Error_Illegal_Character;
2220 -- Invalid graphic characters
2222 when '#' | '$' | '?' | '@' | '`' | '\' | '^' | '~' =>
2224 -- If Set_Special_Character has been called for this character,
2225 -- set Scans.Special_Character and return a Special token.
2227 if Special_Characters (Source (Scan_Ptr)) then
2228 Token_Ptr := Scan_Ptr;
2229 Token := Tok_Special;
2230 Special_Character := Source (Scan_Ptr);
2231 Scan_Ptr := Scan_Ptr + 1;
2232 return;
2234 -- Check for something looking like a preprocessor directive
2236 elsif Source (Scan_Ptr) = '#'
2237 and then (Source (Scan_Ptr + 1 .. Scan_Ptr + 2) = "if"
2238 or else
2239 Source (Scan_Ptr + 1 .. Scan_Ptr + 5) = "elsif"
2240 or else
2241 Source (Scan_Ptr + 1 .. Scan_Ptr + 4) = "else"
2242 or else
2243 Source (Scan_Ptr + 1 .. Scan_Ptr + 3) = "end")
2244 then
2245 Error_Msg_S
2246 ("preprocessor directive ignored, preprocessor not active");
2248 -- Skip to end of line
2250 loop
2251 if Source (Scan_Ptr) in Graphic_Character
2252 or else
2253 Source (Scan_Ptr) = HT
2254 then
2255 Scan_Ptr := Scan_Ptr + 1;
2257 -- Done if line terminator or EOF
2259 elsif Source (Scan_Ptr) in Line_Terminator
2260 or else
2261 Source (Scan_Ptr) = EOF
2262 then
2263 exit;
2265 -- If we have a wide character, we have to scan it out,
2266 -- because it might be a legitimate line terminator
2268 elsif Start_Of_Wide_Character then
2269 declare
2270 Wptr : constant Source_Ptr := Scan_Ptr;
2271 Code : Char_Code;
2272 Err : Boolean;
2274 begin
2275 Scan_Wide (Source, Scan_Ptr, Code, Err);
2277 -- If not well formed wide character, then just skip
2278 -- past it and ignore it.
2280 if Err then
2281 Scan_Ptr := Wptr + 1;
2283 -- If UTF_32 terminator, terminate comment scan
2285 elsif Is_UTF_32_Line_Terminator (UTF_32 (Code)) then
2286 Scan_Ptr := Wptr;
2287 exit;
2288 end if;
2289 end;
2291 -- Else keep going (don't worry about bad comment chars
2292 -- in this context, we just want to find the end of line.
2294 else
2295 Scan_Ptr := Scan_Ptr + 1;
2296 end if;
2297 end loop;
2299 -- Otherwise, this is an illegal character
2301 else
2302 Error_Illegal_Character;
2303 end if;
2305 -- End switch on non-blank character
2307 end case;
2309 -- End loop past format effectors. The exit from this loop is by
2310 -- executing a return statement following completion of token scan
2311 -- (control never falls out of this loop to the code which follows)
2313 end loop;
2315 -- Wide_Character scanning routine. On entry we have encountered the
2316 -- initial character of a wide character sequence.
2318 <<Scan_Wide_Character>>
2320 declare
2321 Code : Char_Code;
2322 Cat : Category;
2323 Err : Boolean;
2325 begin
2326 Wptr := Scan_Ptr;
2327 Scan_Wide (Source, Scan_Ptr, Code, Err);
2329 -- If bad wide character, signal error and continue scan
2331 if Err then
2332 Error_Illegal_Wide_Character;
2333 goto Scan_Next_Character;
2334 end if;
2336 Cat := Get_Category (UTF_32 (Code));
2338 -- If OK letter, reset scan ptr and go scan identifier
2340 if Is_UTF_32_Letter (Cat) then
2341 Scan_Ptr := Wptr;
2342 Name_Len := 0;
2343 Underline_Found := False;
2344 goto Scan_Identifier;
2346 -- If OK wide space, ignore and keep scanning (we do not include
2347 -- any ignored spaces in checksum)
2349 elsif Is_UTF_32_Space (Cat) then
2350 goto Scan_Next_Character;
2352 -- If other format character, ignore and keep scanning (again we
2353 -- do not include in the checksum) (this is for AI-0079).
2355 elsif Is_UTF_32_Other (Cat) then
2356 goto Scan_Next_Character;
2358 -- If OK wide line terminator, terminate current line
2360 elsif Is_UTF_32_Line_Terminator (UTF_32 (Code)) then
2361 Scan_Ptr := Wptr;
2362 goto Scan_Line_Terminator;
2364 -- Punctuation is an error (at start of identifier)
2366 elsif Is_UTF_32_Punctuation (Cat) then
2367 Error_Msg ("identifier cannot start with punctuation", Wptr);
2368 Scan_Ptr := Wptr;
2369 Name_Len := 0;
2370 Underline_Found := False;
2371 goto Scan_Identifier;
2373 -- Mark character is an error (at start of identifier)
2375 elsif Is_UTF_32_Mark (Cat) then
2376 Error_Msg ("identifier cannot start with mark character", Wptr);
2377 Scan_Ptr := Wptr;
2378 Name_Len := 0;
2379 Underline_Found := False;
2380 goto Scan_Identifier;
2382 -- Extended digit character is an error. Could be bad start of
2383 -- identifier or bad literal. Not worth doing too much to try to
2384 -- distinguish these cases, but we will do a little bit.
2386 elsif Is_UTF_32_Digit (Cat) then
2387 Error_Msg
2388 ("identifier cannot start with digit character", Wptr);
2389 Scan_Ptr := Wptr;
2390 Name_Len := 0;
2391 Underline_Found := False;
2392 goto Scan_Identifier;
2394 -- All other wide characters are illegal here
2396 else
2397 Error_Illegal_Wide_Character;
2398 goto Scan_Next_Character;
2399 end if;
2400 end;
2402 -- Routine to scan line terminator. On entry Scan_Ptr points to a
2403 -- character which is one of FF,LR,CR,VT, or one of the wide characters
2404 -- that is treated as a line terminator.
2406 <<Scan_Line_Terminator>>
2408 -- Check line too long
2410 Check_End_Of_Line;
2412 -- Set Token_Ptr, if End_Of_Line is a token, for the case when it is
2413 -- a physical line.
2415 if End_Of_Line_Is_Token then
2416 Token_Ptr := Scan_Ptr;
2417 end if;
2419 declare
2420 Physical : Boolean;
2422 begin
2423 Skip_Line_Terminators (Scan_Ptr, Physical);
2425 -- If we are at start of physical line, update scan pointers to
2426 -- reflect the start of the new line.
2428 if Physical then
2429 Current_Line_Start := Scan_Ptr;
2430 Start_Column := Set_Start_Column;
2431 First_Non_Blank_Location := Scan_Ptr;
2433 -- If End_Of_Line is a token, we return it as it is a
2434 -- physical line.
2436 if End_Of_Line_Is_Token then
2437 Token := Tok_End_Of_Line;
2438 return;
2439 end if;
2440 end if;
2441 end;
2443 goto Scan_Next_Character;
2445 -- Identifier scanning routine. On entry, some initial characters of
2446 -- the identifier may have already been stored in Name_Buffer. If so,
2447 -- Name_Len has the number of characters stored, otherwise Name_Len is
2448 -- set to zero on entry. Underline_Found is also set False on entry.
2450 <<Scan_Identifier>>
2452 -- This loop scans as fast as possible past lower half letters and
2453 -- digits, which we expect to be the most common characters.
2455 loop
2456 if Source (Scan_Ptr) in 'a' .. 'z'
2457 or else Source (Scan_Ptr) in '0' .. '9'
2458 then
2459 Name_Buffer (Name_Len + 1) := Source (Scan_Ptr);
2460 Accumulate_Checksum (Source (Scan_Ptr));
2462 elsif Source (Scan_Ptr) in 'A' .. 'Z' then
2463 Name_Buffer (Name_Len + 1) :=
2464 Character'Val (Character'Pos (Source (Scan_Ptr)) + 32);
2465 Accumulate_Checksum (Name_Buffer (Name_Len + 1));
2467 else
2468 exit;
2469 end if;
2471 Underline_Found := False;
2472 Scan_Ptr := Scan_Ptr + 1;
2473 Name_Len := Name_Len + 1;
2474 end loop;
2476 -- If we fall through, then we have encountered either an underline
2477 -- character, or an extended identifier character (i.e. one from the
2478 -- upper half), or a wide character, or an identifier terminator. The
2479 -- initial test speeds us up in the most common case where we have
2480 -- an identifier terminator. Note that ESC is an identifier character
2481 -- only if a wide character encoding method that uses ESC encoding
2482 -- is active, so if we find an ESC character we know that we have a
2483 -- wide character.
2485 if Identifier_Char (Source (Scan_Ptr))
2486 or else (Source (Scan_Ptr) in Upper_Half_Character
2487 and then Upper_Half_Encoding)
2488 then
2489 -- Case of underline
2491 if Source (Scan_Ptr) = '_' then
2492 Accumulate_Checksum ('_');
2494 if Underline_Found then
2495 Error_No_Double_Underline;
2496 else
2497 Underline_Found := True;
2498 Name_Len := Name_Len + 1;
2499 Name_Buffer (Name_Len) := '_';
2500 end if;
2502 Scan_Ptr := Scan_Ptr + 1;
2503 goto Scan_Identifier;
2505 -- Upper half character
2507 elsif Source (Scan_Ptr) in Upper_Half_Character
2508 and then not Upper_Half_Encoding
2509 then
2510 Accumulate_Checksum (Source (Scan_Ptr));
2511 Store_Encoded_Character
2512 (Get_Char_Code (Fold_Lower (Source (Scan_Ptr))));
2513 Scan_Ptr := Scan_Ptr + 1;
2514 Underline_Found := False;
2515 goto Scan_Identifier;
2517 -- Left bracket not followed by a quote terminates an identifier.
2518 -- This is an error, but we don't want to give a junk error msg
2519 -- about wide characters in this case.
2521 elsif Source (Scan_Ptr) = '['
2522 and then Source (Scan_Ptr + 1) /= '"'
2523 then
2524 null;
2526 -- We know we have a wide character encoding here (the current
2527 -- character is either ESC, left bracket, or an upper half
2528 -- character depending on the encoding method).
2530 else
2531 -- Scan out the wide character and insert the appropriate
2532 -- encoding into the name table entry for the identifier.
2534 declare
2535 Code : Char_Code;
2536 Err : Boolean;
2537 Chr : Character;
2538 Cat : Category;
2540 begin
2541 Wptr := Scan_Ptr;
2542 Scan_Wide (Source, Scan_Ptr, Code, Err);
2544 -- If error, signal error
2546 if Err then
2547 Error_Illegal_Wide_Character;
2549 -- If the character scanned is a normal identifier
2550 -- character, then we treat it that way.
2552 elsif In_Character_Range (Code)
2553 and then Identifier_Char (Get_Character (Code))
2554 then
2555 Chr := Get_Character (Code);
2556 Accumulate_Checksum (Chr);
2557 Store_Encoded_Character
2558 (Get_Char_Code (Fold_Lower (Chr)));
2559 Underline_Found := False;
2561 -- Here if not a normal identifier character
2563 else
2564 Cat := Get_Category (UTF_32 (Code));
2566 -- Wide character in Unicode category "Other, Format"
2567 -- is not accepted in an identifier. This is because it
2568 -- it is considered a security risk (AI-0091).
2570 -- However, it is OK for such a character to appear at
2571 -- the end of an identifier.
2573 if Is_UTF_32_Other (Cat) then
2574 if not Identifier_Char (Source (Scan_Ptr)) then
2575 goto Scan_Identifier_Complete;
2576 else
2577 Error_Msg
2578 ("identifier cannot contain other_format "
2579 & "character", Wptr);
2580 goto Scan_Identifier;
2581 end if;
2583 -- Wide character in category Separator,Space terminates
2585 elsif Is_UTF_32_Space (Cat) then
2586 goto Scan_Identifier_Complete;
2587 end if;
2589 -- Here if wide character is part of the identifier
2591 -- Make sure we are allowing wide characters in
2592 -- identifiers. Note that we allow wide character
2593 -- notation for an OK identifier character. This in
2594 -- particular allows bracket or other notation to be
2595 -- used for upper half letters.
2597 -- Wide characters are always allowed in Ada 2005
2599 if Identifier_Character_Set /= 'w'
2600 and then Ada_Version < Ada_2005
2601 then
2602 Error_Msg
2603 ("wide character not allowed in identifier", Wptr);
2604 end if;
2606 -- If OK letter, store it folding to upper case. Note
2607 -- that we include the folded letter in the checksum.
2609 if Is_UTF_32_Letter (Cat) then
2610 Code :=
2611 Char_Code (UTF_32_To_Upper_Case (UTF_32 (Code)));
2612 Accumulate_Checksum (Code);
2613 Store_Encoded_Character (Code);
2614 Underline_Found := False;
2616 -- If OK extended digit or mark, then store it
2618 elsif Is_UTF_32_Digit (Cat)
2619 or else Is_UTF_32_Mark (Cat)
2620 then
2621 Accumulate_Checksum (Code);
2622 Store_Encoded_Character (Code);
2623 Underline_Found := False;
2625 -- Wide punctuation is also stored, but counts as an
2626 -- underline character for error checking purposes.
2628 elsif Is_UTF_32_Punctuation (Cat) then
2629 Accumulate_Checksum (Code);
2631 if Underline_Found then
2632 declare
2633 Cend : constant Source_Ptr := Scan_Ptr;
2634 begin
2635 Scan_Ptr := Wptr;
2636 Error_No_Double_Underline;
2637 Scan_Ptr := Cend;
2638 end;
2640 else
2641 Store_Encoded_Character (Code);
2642 Underline_Found := True;
2643 end if;
2645 -- Any other wide character is not acceptable
2647 else
2648 Error_Msg
2649 ("invalid wide character in identifier", Wptr);
2650 end if;
2651 end if;
2653 goto Scan_Identifier;
2654 end;
2655 end if;
2656 end if;
2658 -- Scan of identifier is complete. The identifier is stored in
2659 -- Name_Buffer, and Scan_Ptr points past the last character.
2661 <<Scan_Identifier_Complete>>
2662 Token_Name := Name_Find;
2664 -- Check for identifier ending with underline or punctuation char
2666 if Underline_Found then
2667 Underline_Found := False;
2669 if Source (Scan_Ptr - 1) = '_' then
2670 Error_Msg
2671 ("identifier cannot end with underline", Scan_Ptr - 1);
2672 else
2673 Error_Msg
2674 ("identifier cannot end with punctuation character", Wptr);
2675 end if;
2676 end if;
2678 -- We will assume it is an identifier, not a keyword, so that the
2679 -- checksum is independent of the Ada version.
2681 Token := Tok_Identifier;
2683 -- Here is where we check if it was a keyword
2685 if Is_Keyword_Name (Token_Name) then
2686 if Opt.Checksum_GNAT_6_3 then
2687 Token := Token_Type'Val (Get_Name_Table_Byte (Token_Name));
2689 if Checksum_Accumulate_Token_Checksum then
2690 if Checksum_GNAT_5_03 then
2691 Accumulate_Token_Checksum_GNAT_5_03;
2692 else
2693 Accumulate_Token_Checksum_GNAT_6_3;
2694 end if;
2695 end if;
2697 else
2698 Accumulate_Token_Checksum;
2699 Token := Token_Type'Val (Get_Name_Table_Byte (Token_Name));
2700 end if;
2702 -- Keyword style checks
2704 if Style_Check then
2706 -- Deal with possible style check for non-lower case keyword,
2707 -- but we don't treat ACCESS, DELTA, DIGITS, RANGE as keywords
2708 -- for this purpose if they appear as attribute designators.
2709 -- Actually we only check the first character for speed.
2711 -- Ada 2005 (AI-284): Do not apply the style check in case of
2712 -- "pragma Interface"
2714 -- Ada 2005 (AI-340): Do not apply the style check in case of
2715 -- MOD attribute.
2717 if Source (Token_Ptr) <= 'Z'
2718 and then (Prev_Token /= Tok_Apostrophe
2719 or else
2720 (Token /= Tok_Access and then
2721 Token /= Tok_Delta and then
2722 Token /= Tok_Digits and then
2723 Token /= Tok_Mod and then
2724 Token /= Tok_Range))
2725 and then (Token /= Tok_Interface
2726 or else
2727 (Token = Tok_Interface
2728 and then Prev_Token /= Tok_Pragma))
2729 then
2730 Style.Non_Lower_Case_Keyword;
2731 end if;
2733 -- Check THEN/ELSE style rules. These do not apply to AND THEN
2734 -- or OR ELSE, and do not apply in if expressions.
2736 if (Token = Tok_Then and then Prev_Token /= Tok_And)
2737 or else
2738 (Token = Tok_Else and then Prev_Token /= Tok_Or)
2739 then
2740 if Inside_If_Expression = 0 then
2741 Style.Check_Separate_Stmt_Lines;
2742 end if;
2743 end if;
2744 end if;
2746 -- We must reset Token_Name since this is not an identifier and
2747 -- if we leave Token_Name set, the parser gets confused because
2748 -- it thinks it is dealing with an identifier instead of the
2749 -- corresponding keyword.
2751 Token_Name := No_Name;
2752 return;
2754 -- It is an identifier after all
2756 else
2757 if Checksum_Accumulate_Token_Checksum then
2758 Accumulate_Token_Checksum;
2759 end if;
2761 Post_Scan;
2762 return;
2763 end if;
2764 end Scan;
2766 --------------------------
2767 -- Set_Comment_As_Token --
2768 --------------------------
2770 procedure Set_Comment_As_Token (Value : Boolean) is
2771 begin
2772 Comment_Is_Token := Value;
2773 end Set_Comment_As_Token;
2775 ------------------------------
2776 -- Set_End_Of_Line_As_Token --
2777 ------------------------------
2779 procedure Set_End_Of_Line_As_Token (Value : Boolean) is
2780 begin
2781 End_Of_Line_Is_Token := Value;
2782 end Set_End_Of_Line_As_Token;
2784 ---------------------------
2785 -- Set_Special_Character --
2786 ---------------------------
2788 procedure Set_Special_Character (C : Character) is
2789 begin
2790 case C is
2791 when '#' | '$' | '_' | '?' | '@' | '`' | '\' | '^' | '~' =>
2792 Special_Characters (C) := True;
2794 when others =>
2795 null;
2796 end case;
2797 end Set_Special_Character;
2799 ----------------------
2800 -- Set_Start_Column --
2801 ----------------------
2803 -- Note: it seems at first glance a little expensive to compute this value
2804 -- for every source line (since it is certainly not used for all source
2805 -- lines). On the other hand, it doesn't take much more work to skip past
2806 -- the initial white space on the line counting the columns than it would
2807 -- to scan past the white space using the standard scanning circuits.
2809 function Set_Start_Column return Column_Number is
2810 Start_Column : Column_Number := 0;
2812 begin
2813 -- Outer loop scans past horizontal tab characters
2815 Tabs_Loop : loop
2817 -- Inner loop scans past blanks as fast as possible, bumping Scan_Ptr
2818 -- past the blanks and adjusting Start_Column to account for them.
2820 Blanks_Loop : loop
2821 if Source (Scan_Ptr) = ' ' then
2822 if Source (Scan_Ptr + 1) = ' ' then
2823 if Source (Scan_Ptr + 2) = ' ' then
2824 if Source (Scan_Ptr + 3) = ' ' then
2825 if Source (Scan_Ptr + 4) = ' ' then
2826 if Source (Scan_Ptr + 5) = ' ' then
2827 if Source (Scan_Ptr + 6) = ' ' then
2828 Scan_Ptr := Scan_Ptr + 7;
2829 Start_Column := Start_Column + 7;
2830 else
2831 Scan_Ptr := Scan_Ptr + 6;
2832 Start_Column := Start_Column + 6;
2833 exit Blanks_Loop;
2834 end if;
2835 else
2836 Scan_Ptr := Scan_Ptr + 5;
2837 Start_Column := Start_Column + 5;
2838 exit Blanks_Loop;
2839 end if;
2840 else
2841 Scan_Ptr := Scan_Ptr + 4;
2842 Start_Column := Start_Column + 4;
2843 exit Blanks_Loop;
2844 end if;
2845 else
2846 Scan_Ptr := Scan_Ptr + 3;
2847 Start_Column := Start_Column + 3;
2848 exit Blanks_Loop;
2849 end if;
2850 else
2851 Scan_Ptr := Scan_Ptr + 2;
2852 Start_Column := Start_Column + 2;
2853 exit Blanks_Loop;
2854 end if;
2855 else
2856 Scan_Ptr := Scan_Ptr + 1;
2857 Start_Column := Start_Column + 1;
2858 exit Blanks_Loop;
2859 end if;
2860 else
2861 exit Blanks_Loop;
2862 end if;
2863 end loop Blanks_Loop;
2865 -- Outer loop keeps going only if a horizontal tab follows
2867 if Source (Scan_Ptr) = HT then
2868 if Style_Check then
2869 Style.Check_HT;
2870 end if;
2872 Scan_Ptr := Scan_Ptr + 1;
2873 Start_Column := (Start_Column / 8) * 8 + 8;
2874 else
2875 exit Tabs_Loop;
2876 end if;
2877 end loop Tabs_Loop;
2879 return Start_Column;
2881 -- A constraint error can happen only if we have a compiler with checks on
2882 -- and a line with a ludicrous number of tabs or spaces at the start. In
2883 -- such a case, we really don't care if Start_Column is right or not.
2885 exception
2886 when Constraint_Error =>
2887 return Start_Column;
2888 end Set_Start_Column;
2890 end Scng;