1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2023, 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 -- Generally the parser checks the basic syntax of pragmas, but does not
27 -- do specialized syntax checks for individual pragmas, these are deferred
28 -- to semantic analysis time (see unit Sem_Prag). There are some pragmas
29 -- which require recognition and either partial or complete processing
30 -- during parsing, and this unit performs this required processing.
32 with Fname
.UF
; use Fname
.UF
;
33 with Osint
; use Osint
;
34 with Rident
; use Rident
;
35 with Restrict
; use Restrict
;
36 with Stringt
; use Stringt
;
37 with Stylesw
; use Stylesw
;
38 with Uintp
; use Uintp
;
39 with Uname
; use Uname
;
41 with System
.WCh_Con
; use System
.WCh_Con
;
45 function Prag
(Pragma_Node
: Node_Id
; Semi
: Source_Ptr
) return Node_Id
is
46 Prag_Name
: constant Name_Id
:= Pragma_Name_Unmapped
(Pragma_Node
);
47 Prag_Id
: constant Pragma_Id
:= Get_Pragma_Id
(Prag_Name
);
48 Pragma_Sloc
: constant Source_Ptr
:= Sloc
(Pragma_Node
);
52 -----------------------
53 -- Local Subprograms --
54 -----------------------
56 procedure Add_List_Pragma_Entry
(PT
: List_Pragma_Type
; Loc
: Source_Ptr
);
57 -- Make a new entry in the List_Pragmas table if this entry is not already
58 -- in the table (it will always be the last one if there is a duplication
59 -- resulting from the use of Save/Restore_Scan_State).
61 function Arg1
return Node_Id
;
62 function Arg2
return Node_Id
;
63 function Arg3
return Node_Id
;
64 -- Obtain specified Pragma_Argument_Association. It is allowable to call
65 -- the routine for the argument one past the last present argument, but
66 -- that is the only case in which a non-present argument can be referenced.
68 procedure Check_Arg_Count
(Required
: Nat
);
69 -- Check argument count for pragma = Required. If not give error and raise
72 procedure Check_Arg_Is_String_Literal
(Arg
: Node_Id
);
73 -- Check the expression of the specified argument to make sure that it
74 -- is a string literal. If not give error and raise Error_Resync.
76 procedure Check_Arg_Is_On_Or_Off
77 (Arg
: Node_Id
; All_OK_Too
: Boolean := False);
78 -- Check the expression of the specified argument to make sure that it
79 -- is an identifier which is either ON or OFF, and if not, then issue
80 -- an error message and raise Error_Resync. If All_OK_Too is True,
81 -- then an ALL identifer is also acceptable.
83 procedure Check_No_Identifier
(Arg
: Node_Id
);
84 -- Checks that the given argument does not have an identifier. If
85 -- an identifier is present, then an error message is issued, and
86 -- Error_Resync is raised.
88 procedure Check_Optional_Identifier
(Arg
: Node_Id
; Id
: Name_Id
);
89 -- Checks if the given argument has an identifier, and if so, requires
90 -- it to match the given identifier name. If there is a non-matching
91 -- identifier, then an error message is given and Error_Resync raised.
93 procedure Check_Required_Identifier
(Arg
: Node_Id
; Id
: Name_Id
);
94 -- Same as Check_Optional_Identifier, except that the name is required
95 -- to be present and to match the given Id value.
97 procedure Process_Restrictions_Or_Restriction_Warnings
;
98 -- Common processing for Restrictions and Restriction_Warnings pragmas.
99 -- For the most part, restrictions need not be processed at parse time,
100 -- since they only affect semantic processing. This routine handles the
101 -- exceptions as follows
103 -- No_Obsolescent_Features must be processed at parse time, since there
104 -- are some obsolescent features (e.g. character replacements) which are
105 -- handled at parse time.
107 -- No_Dependence must be processed at parse time, since otherwise it gets
110 -- No_Unrecognized_Aspects must be processed at parse time, since
111 -- unrecognized aspects are ignored by the parser.
113 -- Note that we don't need to do full error checking for badly formed cases
114 -- of restrictions, since these will be caught during semantic analysis.
116 ---------------------------
117 -- Add_List_Pragma_Entry --
118 ---------------------------
120 procedure Add_List_Pragma_Entry
(PT
: List_Pragma_Type
; Loc
: Source_Ptr
) is
122 if List_Pragmas
.Last
< List_Pragmas
.First
123 or else List_Pragmas
.Table
(List_Pragmas
.Last
) /= (PT
, Loc
)
125 List_Pragmas
.Append
((PT
, Loc
));
127 end Add_List_Pragma_Entry
;
133 function Arg1
return Node_Id
is
135 return First
(Pragma_Argument_Associations
(Pragma_Node
));
142 function Arg2
return Node_Id
is
151 function Arg3
return Node_Id
is
156 ---------------------
157 -- Check_Arg_Count --
158 ---------------------
160 procedure Check_Arg_Count
(Required
: Nat
) is
162 if Arg_Count
/= Required
then
163 Error_Msg_N
("wrong number of arguments for pragma%", Pragma_Node
);
168 ----------------------------
169 -- Check_Arg_Is_On_Or_Off --
170 ----------------------------
172 procedure Check_Arg_Is_On_Or_Off
173 (Arg
: Node_Id
; All_OK_Too
: Boolean := False)
175 Argx
: constant Node_Id
:= Expression
(Arg
);
176 Error
: Boolean := Nkind
(Expression
(Arg
)) /= N_Identifier
;
179 Error
:= Chars
(Argx
) not in Name_On | Name_Off
180 and then not (All_OK_Too
and Chars
(Argx
) = Name_All
);
183 Error_Msg_Name_2
:= Name_On
;
184 Error_Msg_Name_3
:= Name_Off
;
187 Error_Msg_Name_4
:= Name_All
;
188 Error_Msg_N
("argument for pragma% must be% or% or%", Argx
);
190 Error_Msg_N
("argument for pragma% must be% or%", Argx
);
194 end Check_Arg_Is_On_Or_Off
;
196 ---------------------------------
197 -- Check_Arg_Is_String_Literal --
198 ---------------------------------
200 procedure Check_Arg_Is_String_Literal
(Arg
: Node_Id
) is
202 if Nkind
(Expression
(Arg
)) /= N_String_Literal
then
204 ("argument for pragma% must be string literal",
208 end Check_Arg_Is_String_Literal
;
210 -------------------------
211 -- Check_No_Identifier --
212 -------------------------
214 procedure Check_No_Identifier
(Arg
: Node_Id
) is
216 if Chars
(Arg
) /= No_Name
then
217 Error_Msg_N
("pragma% does not permit named arguments", Arg
);
220 end Check_No_Identifier
;
222 -------------------------------
223 -- Check_Optional_Identifier --
224 -------------------------------
226 procedure Check_Optional_Identifier
(Arg
: Node_Id
; Id
: Name_Id
) is
228 if Present
(Arg
) and then Chars
(Arg
) /= No_Name
then
229 if Chars
(Arg
) /= Id
then
230 Error_Msg_Name_2
:= Id
;
231 Error_Msg_N
("pragma% argument expects identifier%", Arg
);
234 end Check_Optional_Identifier
;
236 -------------------------------
237 -- Check_Required_Identifier --
238 -------------------------------
240 procedure Check_Required_Identifier
(Arg
: Node_Id
; Id
: Name_Id
) is
242 if Chars
(Arg
) /= Id
then
243 Error_Msg_Name_2
:= Id
;
244 Error_Msg_N
("pragma% argument must have identifier%", Arg
);
246 end Check_Required_Identifier
;
248 --------------------------------------------------
249 -- Process_Restrictions_Or_Restriction_Warnings --
250 --------------------------------------------------
252 procedure Process_Restrictions_Or_Restriction_Warnings
is
259 while Present
(Arg
) loop
261 Expr
:= Expression
(Arg
);
263 if Id
= No_Name
and then Nkind
(Expr
) = N_Identifier
then
265 when Name_No_Obsolescent_Features
=>
266 Set_Restriction
(No_Obsolescent_Features
, Pragma_Node
);
267 Restriction_Warnings
(No_Obsolescent_Features
) :=
268 Prag_Id
= Pragma_Restriction_Warnings
;
270 when Name_SPARK_05
=>
271 Error_Msg_Name_1
:= Chars
(Expr
);
273 ("??% restriction is obsolete and ignored, consider " &
274 "using 'S'P'A'R'K_'Mode and gnatprove instead", Arg
);
276 when Name_No_Unrecognized_Aspects
=>
278 (No_Unrecognized_Aspects
,
280 Prag_Id
= Pragma_Restriction_Warnings
);
286 elsif Id
= Name_No_Dependence
then
287 Set_Restriction_No_Dependence
289 Warn
=> Prag_Id
= Pragma_Restriction_Warnings
290 or else Treat_Restrictions_As_Warnings
);
295 end Process_Restrictions_Or_Restriction_Warnings
;
297 -- Start of processing for Prag
300 Error_Msg_Name_1
:= Prag_Name
;
302 -- Ignore unrecognized pragma. We let Sem post the warning for this, since
303 -- it is a semantic error, not a syntactic one (we have already checked
304 -- the syntax for the unrecognized pragma as required by (RM 2.8(11)).
306 if Prag_Id
= Unknown_Pragma
then
310 -- Ignore pragma if Ignore_Pragma applies. Also ignore pragma
311 -- Default_Scalar_Storage_Order if the -gnatI switch was given.
313 if Should_Ignore_Pragma_Par
(Prag_Name
)
314 or else (Prag_Id
= Pragma_Default_Scalar_Storage_Order
315 and then Ignore_Rep_Clauses
)
320 -- Count number of arguments. This loop also checks if any of the arguments
321 -- are Error, indicating a syntax error as they were parsed. If so, we
322 -- simply return, because we get into trouble with cascaded errors if we
323 -- try to perform our error checks on junk arguments.
327 if Present
(Pragma_Argument_Associations
(Pragma_Node
)) then
329 while Arg_Node
/= Empty
loop
330 Arg_Count
:= Arg_Count
+ 1;
332 if Expression
(Arg_Node
) = Error
then
340 -- Remaining processing is pragma dependent
344 -- Ada version pragmas must be processed at parse time, because we want
345 -- to set the Ada version properly at parse time to recognize the
346 -- appropriate Ada version syntax. However, pragma Ada_2005 and higher
347 -- have an optional argument; it is only the zero argument form that
348 -- must be processed at parse time.
354 when Pragma_Ada_83
=>
355 if not Latest_Ada_Only
then
356 Ada_Version
:= Ada_83
;
357 Ada_Version_Explicit
:= Ada_83
;
358 Ada_Version_Pragma
:= Pragma_Node
;
365 when Pragma_Ada_95
=>
366 if not Latest_Ada_Only
then
367 Ada_Version
:= Ada_95
;
368 Ada_Version_Explicit
:= Ada_95
;
369 Ada_Version_Pragma
:= Pragma_Node
;
372 ---------------------
373 -- Ada_05/Ada_2005 --
374 ---------------------
379 if Arg_Count
= 0 and not Latest_Ada_Only
then
380 Ada_Version
:= Ada_2005
;
381 Ada_Version_Explicit
:= Ada_2005
;
382 Ada_Version_Pragma
:= Pragma_Node
;
385 ---------------------
386 -- Ada_12/Ada_2012 --
387 ---------------------
392 if Arg_Count
= 0 then
393 Ada_Version
:= Ada_2012
;
394 Ada_Version_Explicit
:= Ada_2012
;
395 Ada_Version_Pragma
:= Pragma_Node
;
402 when Pragma_Ada_2022
=>
403 if Arg_Count
= 0 then
404 Ada_Version
:= Ada_2022
;
405 Ada_Version_Explicit
:= Ada_2022
;
406 Ada_Version_Pragma
:= Pragma_Node
;
413 -- pragma Debug ([boolean_EXPRESSION,] PROCEDURE_CALL_STATEMENT);
416 Check_No_Identifier
(Arg1
);
418 if Arg_Count
= 2 then
419 Check_No_Identifier
(Arg2
);
424 -------------------------------
425 -- Extensions_Allowed (GNAT) --
426 -------------------------------
428 -- pragma Extensions_Allowed (Off | On | All)
430 -- The processing for pragma Extensions_Allowed must be done at
431 -- parse time, since extensions mode may affect what is accepted.
433 when Pragma_Extensions_Allowed
=>
435 Check_No_Identifier
(Arg1
);
436 Check_Arg_Is_On_Or_Off
(Arg1
, All_OK_Too
=> True);
438 if Chars
(Expression
(Arg1
)) = Name_On
then
439 Ada_Version
:= Ada_With_Core_Extensions
;
440 elsif Chars
(Expression
(Arg1
)) = Name_All
then
441 Ada_Version
:= Ada_With_All_Extensions
;
443 Ada_Version
:= Ada_Version_Explicit
;
450 -- Processing for this pragma must be done at parse time, since we want
451 -- be able to ignore pragmas that are otherwise processed at parse time.
453 when Pragma_Ignore_Pragma
=> Ignore_Pragma
: declare
458 Check_No_Identifier
(Arg1
);
459 A
:= Expression
(Arg1
);
461 if Nkind
(A
) /= N_Identifier
then
462 Error_Msg_N
("incorrect argument for pragma %", A
);
464 Set_Name_Table_Boolean3
(Chars
(A
), True);
472 -- pragma List (Off | On)
474 -- The processing for pragma List must be done at parse time, since a
475 -- listing can be generated in parse only mode.
479 Check_No_Identifier
(Arg1
);
480 Check_Arg_Is_On_Or_Off
(Arg1
);
482 -- We unconditionally make a List_On entry for the pragma, so that
483 -- in the List (Off) case, the pragma will print even in a region
484 -- of code with listing turned off (this is required).
486 Add_List_Pragma_Entry
(List_On
, Sloc
(Pragma_Node
));
488 -- Now generate the list off entry for pragma List (Off)
490 if Chars
(Expression
(Arg1
)) = Name_Off
then
491 Add_List_Pragma_Entry
(List_Off
, Semi
);
500 -- Processing for this pragma must be done at parse time, since a
501 -- listing can be generated in parse only mode with semantics off.
505 Add_List_Pragma_Entry
(Page
, Semi
);
511 -- pragma Restrictions (RESTRICTION {, RESTRICTION});
514 -- restriction_IDENTIFIER
515 -- | restriction_parameter_IDENTIFIER => EXPRESSION
517 -- We process the case of No_Obsolescent_Features, since this has
518 -- a syntactic effect that we need to detect at parse time (the use
519 -- of replacement characters such as colon for pound sign).
521 when Pragma_Restrictions
=>
522 Process_Restrictions_Or_Restriction_Warnings
;
524 --------------------------
525 -- Restriction_Warnings --
526 --------------------------
528 -- pragma Restriction_Warnings (RESTRICTION {, RESTRICTION});
531 -- restriction_IDENTIFIER
532 -- | restriction_parameter_IDENTIFIER => EXPRESSION
534 -- See above comment for pragma Restrictions
536 when Pragma_Restriction_Warnings
=>
537 Process_Restrictions_Or_Restriction_Warnings
;
539 ----------------------------------------------------------
540 -- Source_File_Name and Source_File_Name_Project (GNAT) --
541 ----------------------------------------------------------
543 -- These two pragmas have the same syntax and semantics.
544 -- There are five forms of these pragmas:
546 -- pragma Source_File_Name[_Project] (
547 -- [UNIT_NAME =>] unit_NAME,
548 -- BODY_FILE_NAME => STRING_LITERAL
549 -- [, [INDEX =>] INTEGER_LITERAL]);
551 -- pragma Source_File_Name[_Project] (
552 -- [UNIT_NAME =>] unit_NAME,
553 -- SPEC_FILE_NAME => STRING_LITERAL
554 -- [, [INDEX =>] INTEGER_LITERAL]);
556 -- pragma Source_File_Name[_Project] (
557 -- BODY_FILE_NAME => STRING_LITERAL
558 -- [, DOT_REPLACEMENT => STRING_LITERAL]
559 -- [, CASING => CASING_SPEC]);
561 -- pragma Source_File_Name[_Project] (
562 -- SPEC_FILE_NAME => STRING_LITERAL
563 -- [, DOT_REPLACEMENT => STRING_LITERAL]
564 -- [, CASING => CASING_SPEC]);
566 -- pragma Source_File_Name[_Project] (
567 -- SUBUNIT_FILE_NAME => STRING_LITERAL
568 -- [, DOT_REPLACEMENT => STRING_LITERAL]
569 -- [, CASING => CASING_SPEC]);
571 -- CASING_SPEC ::= Uppercase | Lowercase | Mixedcase
573 -- Pragma Source_File_Name_Project (SFNP) is equivalent to pragma
574 -- Source_File_Name (SFN), however their usage is exclusive:
575 -- SFN can only be used when no project file is used, while
576 -- SFNP can only be used when a project file is used.
578 -- The Project Manager produces a configuration pragmas file that
579 -- is communicated to the compiler with -gnatec switch. This file
580 -- contains only SFNP pragmas (at least two for the default naming
581 -- scheme. As this configuration pragmas file is always the first
582 -- processed by the compiler, it prevents the use of pragmas SFN in
583 -- other config files when a project file is in use.
585 -- Note: we process this during parsing, since we need to have the
586 -- source file names set well before the semantic analysis starts,
587 -- since we load the spec and with'ed packages before analysis.
589 when Pragma_Source_File_Name
590 | Pragma_Source_File_Name_Project
592 Source_File_Name
: declare
593 Unam
: Unit_Name_Type
;
603 function Get_Fname
(Arg
: Node_Id
) return File_Name_Type
;
604 -- Process file name from unit name form of pragma
606 function Get_String_Argument
(Arg
: Node_Id
) return String_Ptr
;
607 -- Process string literal value from argument
609 procedure Process_Casing
(Arg
: Node_Id
);
610 -- Process Casing argument of pattern form of pragma
612 procedure Process_Dot_Replacement
(Arg
: Node_Id
);
613 -- Process Dot_Replacement argument of pattern form of pragma
619 function Get_Fname
(Arg
: Node_Id
) return File_Name_Type
is
621 String_To_Name_Buffer
(Strval
(Expression
(Arg
)));
623 for J
in 1 .. Name_Len
loop
624 if Is_Directory_Separator
(Name_Buffer
(J
)) then
626 ("directory separator character not allowed",
627 Sloc
(Expression
(Arg
)) + Source_Ptr
(J
));
634 -------------------------
635 -- Get_String_Argument --
636 -------------------------
638 function Get_String_Argument
(Arg
: Node_Id
) return String_Ptr
is
642 if Nkind
(Expression
(Arg
)) /= N_String_Literal
644 Nkind
(Expression
(Arg
)) /= N_Operator_Symbol
647 ("argument for pragma% must be string literal", Arg
);
651 Str
:= Strval
(Expression
(Arg
));
653 -- Check string has no wide chars
655 for J
in 1 .. String_Length
(Str
) loop
656 if Get_String_Char
(Str
, J
) > 255 then
658 ("wide character not allowed in pattern for pragma%",
659 Sloc
(Expression
(Arg2
)) + Text_Ptr
(J
) - 1);
665 String_To_Name_Buffer
(Str
);
666 return new String'(Name_Buffer (1 .. Name_Len));
667 end Get_String_Argument;
673 procedure Process_Casing (Arg : Node_Id) is
674 Expr : constant Node_Id := Expression (Arg);
677 Check_Required_Identifier (Arg, Name_Casing);
679 if Nkind (Expr) = N_Identifier then
680 if Chars (Expr) = Name_Lowercase then
681 Cas := All_Lower_Case;
683 elsif Chars (Expr) = Name_Uppercase then
684 Cas := All_Upper_Case;
686 elsif Chars (Expr) = Name_Mixedcase then
693 ("Casing argument for pragma% must be " &
694 "one of Mixedcase, Lowercase, Uppercase",
698 -----------------------------
699 -- Process_Dot_Replacement --
700 -----------------------------
702 procedure Process_Dot_Replacement (Arg : Node_Id) is
704 Check_Required_Identifier (Arg, Name_Dot_Replacement);
705 Dot := Get_String_Argument (Arg);
706 end Process_Dot_Replacement;
708 -- Start of processing for Source_File_Name and
709 -- Source_File_Name_Project pragmas.
712 if Prag_Id = Pragma_Source_File_Name then
713 if Project_File_In_Use = In_Use then
715 ("pragma Source_File_Name cannot be used " &
716 "with a project file", Pragma_Node);
719 Project_File_In_Use := Not_In_Use;
723 if Project_File_In_Use = Not_In_Use then
725 ("pragma Source_File_Name_Project should only be used " &
726 "with a project file", Pragma_Node);
728 Project_File_In_Use := In_Use;
732 -- We permit from 1 to 3 arguments
734 if Arg_Count not in 1 .. 3 then
738 Expr1 := Expression (Arg1);
740 -- If first argument is identifier or selected component, then
741 -- we have the specific file case of the Source_File_Name pragma,
742 -- and the first argument is a unit name.
744 if Nkind (Expr1) = N_Identifier
746 (Nkind (Expr1) = N_Selected_Component
748 Nkind (Selector_Name (Expr1)) = N_Identifier)
750 if Nkind (Expr1) = N_Identifier
751 and then Chars (Expr1) = Name_System
754 ("pragma Source_File_Name may not be used for System",
759 -- Process index argument if present
761 if Arg_Count = 3 then
762 Expr := Expression (Arg3);
764 if Nkind (Expr) /= N_Integer_Literal
765 or else not UI_Is_In_Int_Range (Intval (Expr))
766 or else Intval (Expr) > 999
767 or else Intval (Expr) <= 0
770 ("pragma% index must be integer literal" &
771 " in range 1 .. 999", Expr);
774 Index := UI_To_Int (Intval (Expr));
777 -- No index argument present
784 Check_Optional_Identifier (Arg1, Name_Unit_Name);
785 Unam := Get_Unit_Name (Expr1);
787 Check_Arg_Is_String_Literal (Arg2);
789 if Chars (Arg2) = Name_Spec_File_Name then
791 (Get_Spec_Name (Unam), Get_Fname (Arg2), Index);
793 elsif Chars (Arg2) = Name_Body_File_Name then
795 (Unam, Get_Fname (Arg2), Index);
799 ("pragma% argument has incorrect identifier", Arg2);
803 -- If the first argument is not an identifier, then we must have
804 -- the pattern form of the pragma, and the first argument must be
805 -- the pattern string with an appropriate name.
808 if Chars (Arg1) = Name_Spec_File_Name then
811 elsif Chars (Arg1) = Name_Body_File_Name then
814 elsif Chars (Arg1) = Name_Subunit_File_Name then
817 elsif Chars (Arg1) = Name_Unit_Name then
819 ("Unit_Name parameter for pragma% must be an identifier",
825 ("pragma% argument has incorrect identifier", Arg1);
829 Pat := Get_String_Argument (Arg1);
831 -- Check pattern has exactly one asterisk
834 for J in Pat'Range loop
835 if Pat (J) = '*' then
842 ("file name pattern must have exactly one * character",
847 -- Set defaults for Casing and Dot_Separator parameters
849 Cas := All_Lower_Case;
850 Dot := new String'(".");
852 -- Process second and third arguments if present
854 if Arg_Count
> 1 then
855 if Chars
(Arg2
) = Name_Casing
then
856 Process_Casing
(Arg2
);
858 if Arg_Count
= 3 then
859 Process_Dot_Replacement
(Arg3
);
863 Process_Dot_Replacement
(Arg2
);
865 if Arg_Count
= 3 then
866 Process_Casing
(Arg3
);
871 Set_File_Name_Pattern
(Pat
, Typ
, Dot
, Cas
);
873 end Source_File_Name
;
875 -----------------------------
876 -- Source_Reference (GNAT) --
877 -----------------------------
879 -- pragma Source_Reference
880 -- (INTEGER_LITERAL [, STRING_LITERAL] );
882 -- Processing for this pragma must be done at parse time, since error
883 -- messages needing the proper line numbers can be generated in parse
884 -- only mode with semantic checking turned off, and indeed we usually
885 -- turn off semantic checking anyway if any parse errors are found.
887 when Pragma_Source_Reference
=> Source_Reference
: declare
888 Fname
: File_Name_Type
;
891 if Arg_Count
/= 1 then
893 Check_No_Identifier
(Arg2
);
896 -- Check that this is first line of file. We skip this test if
897 -- we are in syntax check only mode, since we may be dealing with
898 -- multiple compilation units.
900 if Get_Physical_Line_Number
(Pragma_Sloc
) /= 1
901 and then Num_SRef_Pragmas
(Current_Source_File
) = 0
902 and then Operating_Mode
/= Check_Syntax
904 Error_Msg_N
-- CODEFIX
905 ("first % pragma must be first line of file", Pragma_Node
);
909 Check_No_Identifier
(Arg1
);
911 if Arg_Count
= 1 then
912 if Num_SRef_Pragmas
(Current_Source_File
) = 0 then
914 ("file name required for first % pragma in file",
924 Check_Arg_Is_String_Literal
(Arg2
);
925 String_To_Name_Buffer
(Strval
(Expression
(Arg2
)));
928 if Num_SRef_Pragmas
(Current_Source_File
) > 0 then
929 if Fname
/= Full_Ref_Name
(Current_Source_File
) then
931 ("file name must be same in all % pragmas", Pragma_Node
);
937 if Nkind
(Expression
(Arg1
)) /= N_Integer_Literal
then
939 ("argument for pragma% must be integer literal",
943 -- OK, this source reference pragma is effective, however, we
944 -- ignore it if it is not in the first unit in the multiple unit
945 -- case. This is because the only purpose in this case is to
946 -- provide source pragmas for subsequent use by gnatchop.
949 if Num_Library_Units
= 1 then
950 Register_Source_Ref_Pragma
952 Strip_Directory
(Fname
),
953 UI_To_Int
(Intval
(Expression
(Arg1
))),
954 Get_Physical_Line_Number
(Pragma_Sloc
) + 1);
957 end Source_Reference
;
959 -------------------------
960 -- Style_Checks (GNAT) --
961 -------------------------
963 -- pragma Style_Checks (On | Off | ALL_CHECKS | STRING_LITERAL);
965 -- This is processed by the parser since some of the style
966 -- checks take place during source scanning and parsing.
968 when Pragma_Style_Checks
=> Style_Checks
: declare
972 OK
: Boolean := True;
975 -- Two argument case is only for semantics
977 if Arg_Count
= 2 then
982 Check_No_Identifier
(Arg1
);
983 A
:= Expression
(Arg1
);
985 if Nkind
(A
) = N_String_Literal
then
989 Slen
: constant Natural := Natural (String_Length
(S
));
990 Options
: String (1 .. Slen
);
997 C
:= Get_String_Char
(S
, Pos
(J
));
999 if not In_Character_Range
(C
) then
1005 Options
(J
) := Get_Character
(C
);
1009 if not Ignore_Style_Checks_Pragmas
then
1010 Set_Style_Check_Options
(Options
, OK
, Ptr
);
1022 (Style_Msg_Buf
(1 .. Style_Msg_Len
),
1023 Sloc
(Expression
(Arg1
)) + Source_Ptr
(Ptr
));
1028 elsif Nkind
(A
) /= N_Identifier
then
1031 elsif Chars
(A
) = Name_All_Checks
then
1032 if not Ignore_Style_Checks_Pragmas
then
1034 Stylesw
.Set_GNAT_Style_Check_Options
;
1036 Stylesw
.Set_Default_Style_Check_Options
;
1040 elsif Chars
(A
) = Name_On
then
1041 if not Ignore_Style_Checks_Pragmas
then
1042 Style_Check
:= True;
1045 elsif Chars
(A
) = Name_Off
then
1046 if not Ignore_Style_Checks_Pragmas
then
1047 Style_Check
:= False;
1055 Error_Msg_N
("incorrect argument for pragma%", A
);
1061 -------------------------
1062 -- Suppress_All (GNAT) --
1063 -------------------------
1065 -- pragma Suppress_All
1067 -- This is a rather odd pragma, because other compilers allow it in
1068 -- strange places. DEC allows it at the end of units, and Rational
1069 -- allows it as a program unit pragma, when it would be more natural
1070 -- if it were a configuration pragma.
1072 -- Since the reason we provide this pragma is for compatibility with
1073 -- these other compilers, we want to accommodate these strange placement
1074 -- rules, and the easiest thing is simply to allow it anywhere in a
1075 -- unit. If this pragma appears anywhere within a unit, then the effect
1076 -- is as though a pragma Suppress (All_Checks) had appeared as the first
1077 -- line of the current file, i.e. as the first configuration pragma in
1078 -- the current unit.
1080 -- To get this effect, we set the flag Has_Pragma_Suppress_All in the
1081 -- compilation unit node for the current source file then in the last
1082 -- stage of parsing a file, if this flag is set, we materialize the
1083 -- Suppress (All_Checks) pragma, marked as not coming from Source.
1085 when Pragma_Suppress_All
=>
1086 Set_Has_Pragma_Suppress_All
(Cunit
(Current_Source_Unit
));
1088 ----------------------
1089 -- Warning_As_Error --
1090 ----------------------
1092 -- pragma Warning_As_Error (static_string_EXPRESSION);
1094 -- Further processing is done in Sem_Prag
1096 when Pragma_Warning_As_Error
=>
1097 Check_Arg_Count
(1);
1098 Check_Arg_Is_String_Literal
(Arg1
);
1099 Warnings_As_Errors_Count
:= Warnings_As_Errors_Count
+ 1;
1100 Warnings_As_Errors
(Warnings_As_Errors_Count
) :=
1101 new String'(Acquire_Warning_Match_String (Get_Pragma_Arg (Arg1)));
1103 ---------------------
1104 -- Warnings (GNAT) --
1105 ---------------------
1107 -- pragma Warnings ([TOOL_NAME,] DETAILS [, REASON]);
1109 -- DETAILS ::= On | Off
1110 -- DETAILS ::= On | Off, local_NAME
1111 -- DETAILS ::= static_string_EXPRESSION
1112 -- DETAILS ::= On | Off, static_string_EXPRESSION
1114 -- TOOL_NAME ::= GNAT | GNATprove
1116 -- REASON ::= Reason => STRING_LITERAL {& STRING_LITERAL}
1118 -- Note: If the first argument matches an allowed tool name, it is
1119 -- always considered to be a tool name, even if there is a string
1120 -- variable of that name.
1122 -- The one argument ON/OFF case is processed by the parser, since it may
1123 -- control parser warnings as well as semantic warnings, and in any case
1124 -- we want to be absolutely sure that the range in the warnings table is
1125 -- set well before any semantic analysis is performed. Note that we
1126 -- ignore this pragma if debug flag -gnatd.i is set.
1128 -- Also note that the "one argument" case may have two or three
1129 -- arguments if the first one is a tool name, and/or the last one is a
1132 when Pragma_Warnings => Warnings : declare
1133 function First_Arg_Is_Matching_Tool_Name return Boolean;
1134 -- Returns True if the first argument is a tool name matching the
1135 -- current tool being run.
1137 function Last_Arg return Node_Id;
1138 -- Returns the last argument
1140 function Last_Arg_Is_Reason return Boolean;
1141 -- Returns True if the last argument is a reason argument
1143 function Get_Reason return String_Id;
1144 -- Analyzes Reason argument and returns corresponding String_Id
1145 -- value, or null if there is no Reason argument, or if the
1146 -- argument is not of the required form.
1148 -------------------------------------
1149 -- First_Arg_Is_Matching_Tool_Name --
1150 -------------------------------------
1152 function First_Arg_Is_Matching_Tool_Name return Boolean is
1153 Expr : constant Node_Id := Get_Pragma_Arg (Arg1);
1155 return Nkind (Expr) = N_Identifier
1157 -- Return True if the tool name is GNAT, and we're not in
1158 -- GNATprove or CodePeer mode...
1160 and then ((Chars (Expr) = Name_Gnat
1162 (CodePeer_Mode or GNATprove_Mode))
1164 -- or if the tool name is GNATprove, and we're in GNATprove
1168 (Chars (Expr) = Name_Gnatprove
1169 and then GNATprove_Mode));
1170 end First_Arg_Is_Matching_Tool_Name;
1176 function Get_Reason return String_Id is
1177 Arg : constant Node_Id := Last_Arg;
1179 if Last_Arg_Is_Reason then
1181 Get_Reason_String (Expression (Arg));
1184 return Null_String_Id;
1192 function Last_Arg return Node_Id is
1196 if Arg_Count = 1 then
1198 elsif Arg_Count = 2 then
1200 elsif Arg_Count = 3 then
1202 elsif Arg_Count = 4 then
1203 Last_Arg := Next (Arg3);
1205 -- Illegal case, error issued in semantic analysis
1214 ------------------------
1215 -- Last_Arg_Is_Reason --
1216 ------------------------
1218 function Last_Arg_Is_Reason return Boolean is
1219 Arg : constant Node_Id := Last_Arg;
1221 return Nkind (Arg) in N_Has_Chars
1222 and then Chars (Arg) = Name_Reason;
1223 end Last_Arg_Is_Reason;
1225 The_Arg : Node_Id; -- On/Off argument
1228 -- Start of processing for Warnings
1231 if not Debug_Flag_Dot_I
1232 and then (Arg_Count = 1
1233 or else (Arg_Count = 2
1234 and then (First_Arg_Is_Matching_Tool_Name
1236 Last_Arg_Is_Reason))
1237 or else (Arg_Count = 3
1238 and then First_Arg_Is_Matching_Tool_Name
1239 and then Last_Arg_Is_Reason))
1241 if First_Arg_Is_Matching_Tool_Name then
1247 Check_No_Identifier (The_Arg);
1248 Argx := Expression (The_Arg);
1250 if Nkind (Argx) = N_Identifier then
1251 if Chars (Argx) = Name_On then
1252 Set_Warnings_Mode_On (Pragma_Sloc);
1253 elsif Chars (Argx) = Name_Off then
1254 Set_Warnings_Mode_Off (Pragma_Sloc, Get_Reason);
1260 -----------------------------
1261 -- Wide_Character_Encoding --
1262 -----------------------------
1264 -- pragma Wide_Character_Encoding (IDENTIFIER | CHARACTER_LITERAL);
1266 -- This is processed by the parser, since the scanner is affected
1268 when Pragma_Wide_Character_Encoding => Wide_Character_Encoding : declare
1272 Check_Arg_Count (1);
1273 Check_No_Identifier (Arg1);
1274 A := Expression (Arg1);
1276 if Nkind (A) = N_Identifier then
1277 Get_Name_String (Chars (A));
1278 Wide_Character_Encoding_Method :=
1279 Get_WC_Encoding_Method (Name_Buffer (1 .. Name_Len));
1281 elsif Nkind (A) = N_Character_Literal then
1283 R : constant Char_Code := UI_To_CC (Char_Literal_Value (A));
1285 if In_Character_Range (R) then
1286 Wide_Character_Encoding_Method :=
1287 Get_WC_Encoding_Method (Get_Character (R));
1289 raise Constraint_Error;
1294 raise Constraint_Error;
1297 Upper_Half_Encoding :=
1298 Wide_Character_Encoding_Method in
1299 WC_Upper_Half_Encoding_Method;
1302 when Constraint_Error =>
1303 Error_Msg_N ("invalid argument for pragma%", Arg1);
1304 end Wide_Character_Encoding;
1306 -----------------------
1307 -- All Other Pragmas --
1308 -----------------------
1310 -- For all other pragmas, checking and processing is handled entirely in
1311 -- Sem_Prag, and no further checking is done by Par.
1313 when Pragma_Abort_Defer
1314 | Pragma_Abstract_State
1315 | Pragma_Aggregate_Individually_Assign
1316 | Pragma_All_Calls_Remote
1317 | Pragma_Allow_Integer_Address
1318 | Pragma_Always_Terminates
1321 | Pragma_Assert_And_Cut
1322 | Pragma_Assertion_Policy
1324 | Pragma_Assume_No_Invalid_Values
1325 | Pragma_Async_Readers
1326 | Pragma_Async_Writers
1327 | Pragma_Asynchronous
1329 | Pragma_Atomic_Components
1330 | Pragma_Attach_Handler
1331 | Pragma_Attribute_Definition
1333 | Pragma_CPP_Constructor
1334 | Pragma_CPP_Virtual
1337 | Pragma_CUDA_Device
1338 | Pragma_CUDA_Execute
1339 | Pragma_CUDA_Global
1340 | Pragma_C_Pass_By_Copy
1342 | Pragma_Check_Float_Overflow
1344 | Pragma_Check_Policy
1346 | Pragma_Common_Object
1347 | Pragma_Compile_Time_Error
1348 | Pragma_Compile_Time_Warning
1349 | Pragma_Complete_Representation
1350 | Pragma_Complex_Representation
1351 | Pragma_Component_Alignment
1352 | Pragma_Constant_After_Elaboration
1353 | Pragma_Contract_Cases
1356 | Pragma_Convention_Identifier
1357 | Pragma_Deadline_Floor
1358 | Pragma_Debug_Policy
1359 | Pragma_Default_Initial_Condition
1360 | Pragma_Default_Scalar_Storage_Order
1361 | Pragma_Default_Storage_Pool
1363 | Pragma_Detect_Blocking
1364 | Pragma_Disable_Atomic_Synchronization
1365 | Pragma_Discard_Names
1366 | Pragma_Dispatching_Domain
1367 | Pragma_Effective_Reads
1368 | Pragma_Effective_Writes
1370 | Pragma_Elaborate_All
1371 | Pragma_Elaborate_Body
1372 | Pragma_Elaboration_Checks
1374 | Pragma_Enable_Atomic_Synchronization
1375 | Pragma_Exceptional_Cases
1377 | Pragma_Export_Function
1378 | Pragma_Export_Object
1379 | Pragma_Export_Procedure
1380 | Pragma_Export_Valued_Procedure
1381 | Pragma_Extend_System
1382 | Pragma_Extensions_Visible
1384 | Pragma_External_Name_Casing
1386 | Pragma_Favor_Top_Level
1387 | Pragma_Finalize_Storage_Only
1390 | Pragma_GNAT_Annotate
1392 | Pragma_Implementation_Defined
1393 | Pragma_Implemented
1394 | Pragma_Implicit_Packing
1396 | Pragma_Import_Function
1397 | Pragma_Import_Object
1398 | Pragma_Import_Procedure
1399 | Pragma_Import_Valued_Procedure
1400 | Pragma_Independent
1401 | Pragma_Independent_Components
1402 | Pragma_Initial_Condition
1403 | Pragma_Initialize_Scalars
1404 | Pragma_Initializes
1406 | Pragma_Inline_Always
1407 | Pragma_Inline_Generic
1408 | Pragma_Inspection_Point
1410 | Pragma_Interface_Name
1411 | Pragma_Interrupt_Handler
1412 | Pragma_Interrupt_Priority
1413 | Pragma_Interrupt_State
1418 | Pragma_Linker_Alias
1419 | Pragma_Linker_Constructor
1420 | Pragma_Linker_Destructor
1421 | Pragma_Linker_Options
1422 | Pragma_Linker_Section
1424 | Pragma_Locking_Policy
1425 | Pragma_Loop_Invariant
1426 | Pragma_Loop_Optimize
1427 | Pragma_Loop_Variant
1428 | Pragma_Machine_Attribute
1430 | Pragma_Main_Storage
1431 | Pragma_Max_Entry_Queue_Depth
1432 | Pragma_Max_Entry_Queue_Length
1433 | Pragma_Max_Queue_Length
1434 | Pragma_Memory_Size
1437 | Pragma_No_Component_Reordering
1438 | Pragma_No_Elaboration_Code_All
1439 | Pragma_No_Heap_Finalization
1442 | Pragma_No_Run_Time
1443 | Pragma_No_Strict_Aliasing
1444 | Pragma_No_Tagged_Streams
1445 | Pragma_Normalize_Scalars
1446 | Pragma_Obsolescent
1448 | Pragma_Optimize_Alignment
1450 | Pragma_Overflow_Mode
1451 | Pragma_Overriding_Renamings
1454 | Pragma_Partition_Elaboration_Policy
1456 | Pragma_Persistent_BSS
1459 | Pragma_Postcondition
1462 | Pragma_Precondition
1464 | Pragma_Predicate_Failure
1465 | Pragma_Preelaborable_Initialization
1466 | Pragma_Preelaborate
1467 | Pragma_Prefix_Exception_Messages
1469 | Pragma_Priority_Specific_Dispatching
1471 | Pragma_Profile_Warnings
1472 | Pragma_Propagate_Exceptions
1473 | Pragma_Provide_Shift_Operators
1474 | Pragma_Psect_Object
1476 | Pragma_Pure_Function
1477 | Pragma_Queuing_Policy
1480 | Pragma_Refined_Depends
1481 | Pragma_Refined_Global
1482 | Pragma_Refined_Post
1483 | Pragma_Refined_State
1484 | Pragma_Relative_Deadline
1485 | Pragma_Remote_Access_Type
1486 | Pragma_Remote_Call_Interface
1487 | Pragma_Remote_Types
1488 | Pragma_Rename_Pragma
1489 | Pragma_Restricted_Run_Time
1492 | Pragma_Secondary_Stack_Size
1493 | Pragma_Share_Generic
1495 | Pragma_Shared_Passive
1496 | Pragma_Short_Circuit_And_Or
1497 | Pragma_Short_Descriptors
1498 | Pragma_Simple_Storage_Pool_Type
1499 | Pragma_Static_Elaboration_Desired
1500 | Pragma_Storage_Size
1501 | Pragma_Storage_Unit
1502 | Pragma_Stream_Convert
1504 | Pragma_Subprogram_Variant
1506 | Pragma_Suppress_Debug_Info
1507 | Pragma_Suppress_Exception_Locations
1508 | Pragma_Suppress_Initialization
1509 | Pragma_System_Name
1510 | Pragma_Task_Dispatching_Policy
1513 | Pragma_Task_Storage
1515 | Pragma_Thread_Local_Storage
1518 | Pragma_Type_Invariant
1519 | Pragma_Type_Invariant_Class
1520 | Pragma_Unchecked_Union
1521 | Pragma_Unevaluated_Use_Of_Old
1522 | Pragma_Unimplemented_Unit
1523 | Pragma_Universal_Aliasing
1525 | Pragma_Unreferenced
1526 | Pragma_Unreferenced_Objects
1527 | Pragma_Unreserve_All_Interrupts
1530 | Pragma_Use_VADS_Size
1531 | Pragma_Validity_Checks
1533 | Pragma_Volatile_Components
1534 | Pragma_Volatile_Full_Access
1535 | Pragma_Volatile_Function
1536 | Pragma_Weak_External
1540 --------------------
1541 -- Unknown_Pragma --
1542 --------------------
1544 -- Should be impossible, since we excluded this case earlier on
1546 when Unknown_Pragma =>
1547 raise Program_Error;
1553 --------------------
1554 -- Error Handling --
1555 --------------------
1558 when Error_Resync =>